欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Debian/Ubuntu 报错解决:-bash: ifconfig: command not found

程序员文章站 2022-07-12 14:51:29
...

安装了最新的 Debian 9,然后想查看ip地址的时候报错了:

-bash: ifconfig: command not found

新版本的Debian 默认不带 ifconfig,官方推荐使用ip命令查看ip:

ip addr

 

如果还想使用ifconfig命令,需要安装包:

sudo apt-get install net-tools

 然后ifconfig会被安装:

# whereis ifconfig
ifconfig: /sbin/ifconfig /usr/share/man/man8/ifconfig.8.gz

你可以给ifconfig起个别名:

# alias ifconfig='/sbin/ifconfig'