zoukankan      html  css  js  c++  java
  • liunx下判断有线网口硬件是否正常的三个常用方式

    第一种,命令法:

    /mnt/wifi$ cat /proc/net/dev

    Inter-|  Receive                                                | Transmit

    face |bytes  packets errs drop fifo frame compressed multicast|bytes    packets errs drop fifo colls carriercompressed

    lo:      0      0    0  0    0    0        0        0        0      0    0    0  0    0      0        0

    eth0:    3439    15  0  0    0    0        0        0        0      0    0    0  0    0      0          0

    第二种:dmesg查看日志法,link down是表示拔出网线,link up表示是连接网线。

    [110312.799679] r8169 0000:02:00.0 enp2s0: link down
    [110347.642299] r8169 0000:02:00.0 enp2s0: link up

      

    第三种: ifconfig 查看状态方法。查看红色关键字。

    插网线:
    /mnt/wifi$ ifconfig eth0
    eth0      Link encap:Ethernet  HWaddr 06:ED:B5:C3:AA:23
    UP BROADCAST RUNNING MULTICAST  MTU:1500 Metric:1
    RX packets:159 errors:0 dropped:0overruns:0 frame:0
    TX packets:0 errors:0 dropped:0overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:23822 (23.2 KiB)  TX bytes:0 (0.0 B)
    Interrupt:14
    拔网线:
    /mnt/wifi$ ifconfig eth0
    eth0      Link encap:Ethernet  HWaddr 06:ED:B5:C3:AA:23
    UP BROADCAST MULTICAST  MTU:1500 Metric:1
    RX packets:160 errors:0 dropped:0overruns:0 frame:0
    TX packets:0 errors:0 dropped:0overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:24055 (23.4 KiB)  TX bytes:0 (0.0 B)
    Interrupt:14

    除了这三种简单的,还有其它的代码方式,这个后面有空再研究吧。

  • 相关阅读:
    python:窗口化和制作图形
    python:随机数 random
    python:数组/列表(remove()函数、append()函数、sort()函数、reverse()函数)
    python:一个轻松的递归逻辑
    python:while 语句的使用方法
    python:ord()和chr()——字符串和ASCll编码转换
    hive引擎的选择:tez和spark
    解决ideal使用maven打包OutOfMemory
    元数据 概念及分类
    hive on mr 参数设置
  • 原文地址:https://www.cnblogs.com/dylancao/p/8366478.html
Copyright © 2011-2022 走看看