linux 学习笔记 2 dmesg

dmesg 是打印linux 开机信息,并将信息存到 /var/log/dmesg 文件里


也可以使使用 dmesg 命令

例如

[root@test_1 /]# dmesg | grep -in eth
747:tg3 0000:02:00.0: eth0: Tigon3 [partno(BCM57788) rev 57780001] (PCI Express) MAC address 84:2b:2b:94:f7:7d
748:tg3 0000:02:00.0: eth0: attached PHY driver [Broadcom BCM57780] (mii_bus:phy_addr=200:01)
749:tg3 0000:02:00.0: eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
750:tg3 0000:02:00.0: eth0: dma_rwctrl[76180000] dma_mask[64-bit]
792:ADDRCONF(NETDEV_UP): eth0: link is not ready
793:tg3 0000:02:00.0: eth0: Link is down
794:tg3 0000:02:00.0: eth0: Link is up at 100 Mbps, full duplex
795:tg3 0000:02:00.0: eth0: Flow control is on for TX and on for RX
796:ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
808:eth0: no IPv6 routers present

查看网卡是否顺利识别。



你可能感兴趣的:(linux 学习笔记 2 dmesg)