ifconfig无输出的解决办法

问题

执行 ifconfig 命令无任何报错,也无任何输出信息

  [root@linuxprobe ~]#  ifconfig  [root@linuxprobe ~]#  

排错
1. 检查PATH变量

  [root@linuxprobe ~]# echo $PATH  /usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/root/bin  

若路径 /sbin 不在PATH变量中,执行以下命令将其加入。

export PATH=$PATH:/sbin

注:此例中 PATH 变量正常

2. 检查 /sbin/ifconfig

通常情况下,ifconfig 如果有显示,但没有某一项的信息(比如识别不到网卡)时,可以先检查 /etc/sysconfig/network-scripts/ 下配置文件是否正确。
但此例中由于执行 ifconfig 及 /sbin/ifconfig 没有任何的输出,因此先检查了下 /sbin/ifconfig 文件。发现有以下错误:

  [root@linuxprobe ~]# ls -la /sbin/ifconfig  -rwxr-xr-x 1 root root 0 Apr  5 14:56 /sbin/ifconfig  [root@linuxprobe ~]# file /sbin/ifconfig  /sbin/ifconfig: empty  

3. 解决方法

从局域网另一台机器上使用 scp 命令 copy 了一份 /sbin/ifconfig 到这台机器上

  [root@yezi ~]#  scp /sbin/ifconfig [email protected]:/sbin  The authenticity of host '192.168.10.10 (192.168.10.10)' can't be established.  ECDSA key fingerprint is b2:e4:20:20:ae:ae:2e:20:ce:49:76:05:bd:c4:42:39.  Are you sure you want to continue connecting (yes/no)? yes  Warning: Permanently added '192.168.10.10' (ECDSA) to the list of known hosts.  [email protected]'s password:  ifconfig                                      100%   80KB  80.1KB/s   00:00  

再执行 ifconfig , 可以正常显示了

  [root@linuxprobe ~]# file /sbin/ifconfig  /sbin/ifconfig: ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.32, BuildID[sha1]=0x64131021c4fd2c38cf37a9ed9a20bdc52e9bdf33, stripped  [root@linuxprobe ~]#  ls -al /sbin/ifconfig  -rwxr-xr-x. 1 root root 81976 Feb 14  2014 /sbin/ifconfig  
  [root@linuxprobe ~]# ifconfig  eno16777736: flags=4163  mtu 1500          inet 192.168.10.10  netmask 255.255.255.0  broadcast 192.168.10.255          inet6 fe80::20c:29ff:fe97:5c27  prefixlen 64  scopeid 0x20          ether 00:0c:29:97:5c:27  txqueuelen 1000  (Ethernet)          RX packets 153  bytes 16477 (16.0 KiB)          RX errors 0  dropped 0  overruns 0  frame 0          TX packets 166  bytes 144357 (140.9 KiB)          TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0    lo: flags=73  mtu 65536          inet 127.0.0.1  netmask 255.0.0.0          inet6 ::1  prefixlen 128  scopeid 0x10          loop  txqueuelen 0  (Local Loopback)          RX packets 1431  bytes 114546 (111.8 KiB)          RX errors 0  dropped 0  overruns 0  frame 0          TX packets 1431  bytes 114546 (111.8 KiB)          TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0  

本文原创地址: https://www.linuxprobe.com/ifconfig-no-output.html作者:烨子,审核员:逄增宝

本文原创地址:https://www.linuxprobe.com/ifconfig-no-output.html编辑:public,审核员:暂无

本站所发布的一切资源仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。本站信息来自网络,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容。如果您喜欢该程序,请支持正版软件,购买注册,得到更好的正版服务。如果侵犯你的利益,请发送邮箱到 [email protected],我们会很快的为您处理。
超哥软件库 » ifconfig无输出的解决办法