如何解決Ubuntu提示沒有找到ifconfig命令

夢共裡醉發表於2021-09-23
在我們新安裝的Ubuntu 20.04作業系統中,我們想要檢視ip地址,發現使用ifconfig ,提示找不到這個 。在下面文章彙總,會介紹如何安裝這個工具。

當在執行 ifconfig命令是,提示下面的錯誤,就代表沒有安裝它:

bob@ubuntu-20-04:~$ ifconfig
Command 'ifconfig' not found, but can be installed with:
sudo apt install net-tools

或者提示下面的資訊:

-bash: ifconfig: command not found

在Ubuntu 20.04中,不建議使用ifconfig命令。這就是為什麼會收到有關缺少的ifconfig命令的錯誤的原因。若想要檢視ip地址。可以使用 ip addr命令,它幾乎可以執行與ifconfig命令相同的任務,如下面的程式碼所示:

bob@ubuntu-20-04:~$ ip addr
1: lo:mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: ens33:mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 00:0c:29:40:d4:6f brd ff:ff:ff:ff:ff:ff
    inet 192.168.43.174/24 brd 192.168.43.255 scope global dynamic noprefixroute ens33
       valid_lft 1337sec preferred_lft 1337sec
    inet6 fe80::7559:c488:6787:289d/64 scope link noprefixroute 
       valid_lft forever preferred_lft forever

如何解決Ubuntu提示沒有找到ifconfig命令如何解決Ubuntu提示沒有找到ifconfig命令
從上面程式碼輸出中可以看到,該命令仍將顯示所有網路介面的IP地址和其他統計資訊。

如果習慣使用舊的ifconfig命令,則需要安裝 net-tools軟體包。net-tools是一個工具包,其中包含構成 網路基礎的一系列程式。這些包括:

  • ifconfig
  • netstat
  • dig
  • hostname
  • route
  • arp
  • iptunnel
解決ifconfig命令找不到的問題

要解決以上錯誤,就需要安裝net-tools工具包:

bob@ubuntu-20-04:~$ sudo apt install net-tools

如何解決Ubuntu提示沒有找到ifconfig命令如何解決Ubuntu提示沒有找到ifconfig命令
安裝成功完成後,再次嘗試執行ifconfig命令,可以看到熟悉的面孔了。

總結

ifconfig已經逐漸被ip addr取代了,因為現在大部分發行版本,比如 \RHEL、Fedora、Ubuntu等系統都取消了net-tools工具包了。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31524109/viewspace-2793147/,如需轉載,請註明出處,否則將追究法律責任。

相關文章