当前位置: 代码迷 >> 综合 >> linux -bash: ifconfig: command not found
  详细解决方案

linux -bash: ifconfig: command not found

热度:58   发布时间:2023-12-10 20:57:51.0

在Linux下使用 ifconfig 命令时,发现报错:

-bash: ifconfig: command not found

解决办法:

whereis ifconfig (查看该执行命令的目录)
echo $PATH  (查看PATH环境变量)
将ifconfig的所在目录添加至PATH中即可。

这里写图片描述

修改家目录,使当前用户生效;
这里写图片描述

使所有用户生效,需要更改 /etc/profile ,修改内容同上。

  相关解决方案