linux下顯示網絡卡資訊的命令是ifconfig,但是如果將網絡卡禁用或者disable掉,那麼對應的裝置在ifconfig出來的網絡卡列表中將會消失。
解決這個問題的辦法就是:
1、ifconfig -a
顧名思義,就是列出所有的網絡卡。在hwaddr後面的就是mac位址
#ifconfig
lo link encap:local loopback
inet addr:127.0.0.1 mask:255.0.0.0
inet6 addr: ::1/128 scope: host
up loopback running mtu:65536 metric:1
rx packets:54 errors:0 dropped:0 overruns:0 frame:0
tx packets:54 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1
rx bytes:6461 tx bytes:6461
eth0 link encap:ethernet hwaddr 90:0e:b3:1a:1a:fe driver meson6-dwmac
up broadcast multicast mtu:1500 metric:1
rx packets:0 errors:0 dropped:0 overruns:0 frame:0
tx packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
rx bytes:0 tx bytes:0
interrupt:28
#ls /sys/class/net
eth0 ip6_vti0 ip6tnl0 ip_vti0 lo p2p0 sit0 tunl0 wlan0
#cat /sys/class/net/wlan0/address
ec:9c:32:e1:72:d2
linux android下網橋實現
linux下網橋實現 1 安裝編譯安裝bridge utils apt get install bridge utils 2 配置網橋 brctl addbr bridge ifconfig eth0 down ifconfig eth1 down ifconfig eth0 0.0.0.0 ifc...
Linux下獲取時間
函式 clock gettime 是基於linux c語言的時間函式,可以用於計算時間,有秒和納秒兩種精度。函式原型 int clock gettime clockid t clk id,struct timespec tp 其中,cld id型別四種 a clock realtime 系統實時時間...
Linux 下時間獲取
1 獲得當天的日期 date y m d 2 將當前日期賦值給date變數 date date y m d 3 獲取明天的日期 date d next day y m d 4 獲取昨天的日期 date d last day y m d 5 獲取上個月的年和月 date d last month y ...