温馨提示×

debian ifconfig命令在哪找

小樊
47
2026-09-18 15:53:45
栏目: 智能运维

在 Debian 中,ifconfig 命令属于 net-tools 软件包,新版本 Debian 默认 没有安装。

1. 查找 ifconfig 来自哪个包

apt-cache search ifconfig

或者直接查:

dpkg -S ifconfig

(未安装时会提示找不到)

2. 安装 ifconfig(推荐方式)

sudo apt update
sudo apt install net-tools

安装完成后即可使用:

ifconfig

3. ifconfig 在哪

安装后通常位于:

/sbin/ifconfig

普通用户若提示找不到,可用:

/sbin/ifconfig

或:

sudo ifconfig

4. 更现代的替代命令(Debian 推荐)

Debian 官方更推荐使用 ip 命令(无需安装):

ip addr
ip link
ip route

总结

  • ifconfig 位置:/sbin/ifconfig
  • 来源包:net-tools
  • 是否默认有:❌ 新 Debian 默认没有
  • 替代方案:ip 命令

如果你是想“找 ifconfig 文件本身”或“写脚本判断是否存在”,我也可以帮你写。

0 踩