Table des matières

Identifier son matériel


How To BSD

Commandes utiles


pciconf -h
pciconf -l
pciconf -lv
kldstat
 
 
CARTE GRAPHIQUE
pciconf -lv|grep -B4 VGA


Listes des modules du noyau compilés par défaut


ls /boot/kernel | grep -v kernel


Identifier sa carte réseau


pciconf -lv | grep -A1 -B3 network
nfe0@pci0:0:10:0:	class=0x020000 card=0x82e21043 chip=0x076010de rev=0xa2 hdr=0x00
    vendor     = 'NVIDIA Corporation'
    device     = 'MCP77 Ethernet'
    class      = network
    subclass   = ethernet
--
re0@pci0:1:11:0:	class=0x020000 card=0x816910ec chip=0x816910ec rev=0x10 hdr=0x00
    vendor     = 'Realtek Semiconductor Co., Ltd.'
    device     = 'RTL8169 PCI Gigabit Ethernet Controller'
    class      = network
    subclass   = ethernet

Si le module ne se charge pas au boot, pour la carte:


How To BSD