ifconfig: command not found 如何解决?

ifconfig: command not found

查看path配置(echo相当于c中的printf,C#中的Console.WriteLine)


1

echo $PATH

解决方案1:先看看是不是root用户,如果不是就 su 切换到root用户

su

解决方案2:(如果没看见 /sbin)【我们这显然不是这个问题】

这个一般都是因为配置没弄好,永久解决:

打开/etc/profile文件,在其中输入export PATH=$PATH:/sbin

解决方案3:(CentOS后来换指令了,看看我们是不是【ipconfig==>ip】)

在 /(根目录)里面查找 name(名字)是 ifconfig 的东东

说明ipconfig真的换了,淡定

看看信息


1

ip addr

发现木有(看 2:eth0 没有ipv4)

跳转到 /etc/sysconfig/network-scripts 目录


1

cd /etc/sysconfig/network-scripts

用vi打开 ifcfg-eth0 (你的可能是eth1,或者其他,不是每个电脑都是这个的)【如果想改成这个可以参考:http://jingyan.baidu.com/article/7f41ecec1b022e593d095c1e.html

按 i 进去编辑模式 ,修改箭头处,然后按 esc 退回命令模式,输入:wq 并回车

重启一下


1

reboot

用root用户登陆后 输入


1

ip addr

成功!!

解决方案4:(网络)

http://blog.sina.com.cn/s/blog_946cb2b70100wx2j.html

yum install setuptool安装setup,不过安装后使用运行setup只有Authentication configuration可用。

如想配置IP,安装system-config-network-tui即可。

yum install system-config-firewall-tui安装图形化Firewall配置工具。

yum list system-config*  全部安装

时间: 2024-10-29 19:12:27

ifconfig: command not found 如何解决?的相关文章

CentOS7 下ifconfig command not found解决办法

今天尝鲜用VMWare安装了CentOS7,选择了最小安装包模式,安装完毕之后想查看一下本机的ip地址,发现报错 # ifcon -bash: ifconfig: command not found 谷歌了一下,整理了一下解决思路 1. 查看ifconfig命令是否存在 查看 /sbin/ifconfig是否存在 2.如果ifconfig命令存在,查看环境变量设置 #echo $PATH 如果环境变量中没有包含ifconfig命令的路径 临时修改环境变量:在shell中输入 $export PA

【转载】bash: ifconfig: command not found 解决办法

原本使用ifconfig 可以使用,今天是怎么了,可能安装软件修改了,百度~~ [[email protected] /]$ ifconfig 提示:“bash: ifconfig: command not found” 于是我切换到root用户下 [[email protected] /]$ ifconfig 依然提示:“bash: ifconfig: command not found” 分析问题 1.whereis ifconfig 看一下这个命令在哪个目录下 2.echo $PATH 看

bash: ifconfig: command not found解决方法

1.问题: #ifconfig bash: ifconfig: command not found 2.原因:非root用户的path中没有/sbin/ifconfig ,其它的命令也可以出现这种情况,解决的方法是一样的. # whereis ifconfig #ifconfig位置 ifconfig: /sbin/ifconfig /usr/share/man/man8/ifconfig.8.gz # echo $PATH /usr/kerberos/sbin:/usr/kerberos/bi

ubuntu18.04 出现 Command 'ifconfig' not found 问题的解决办法

我们在虚拟主机中查看ip地址需要输入ifconfig,但是报以下错误: 系统提示我们安装 net-tools,当我们输入以下命令,即可安装完成. sudo apt-get install net-tools 然后再输入命令ifconfig即可看到虚拟机的ip地址 ubuntu18.04 出现 Command 'ifconfig' not found 问题的解决办法 原文地址:https://www.cnblogs.com/swjian/p/9197543.html

CentOS 7.6 最小安装 ifconfig command not found 及 yum 不可用的解决办法

问题描述 下载的是 CentOS 7.6 Everything 版本,在 VMware 12 上安装时软件选择"最小安装"后,输入 ifconfig 命令提示: bash ifconfig command not found 经搜索得知是由于没有安装 net-tools 工具的原因,于是使用 yum 命令安装,结果发现 yum 不可用. 再次搜索,才知道网卡配置没有开启. 解决方法 ip addr 查看网卡名称,第2个即是,我的网卡名称是 ens33 vi etc/sysconfig/

ifconfig出现bash: ifconfig:command not found解决办法之解决连环问题

Centos7中没有安装ifconfig命令的解决方法 在这之前,centos7最小化安装默认是不能联网的,首先必须切换到root用户,再解决网络问题 一.      切换到root用户 二.      解决网络问题 三.      安装ifconfig   一.切换到root用户 Linux下切换root用户提示Authentication failure错误的解决方法 第一种情况可能是root密码输入错误造成的,再仔细检查一遍是否输入错误 第二种是刚安装完,没有设置root用户密码导致的,

CentOS 7.0下解决ifconfig: command not found的方法

在CentOS7.0中输入ifconfig命令会遇到-bash: ifconfig: command not found. 在CentOS最小安装时是没有附带ifconfig,我们进入sbin目录下可以查看到ifconfig命令是没有安装的 因此这个时候我们只要安装net-tool插件,此插件中带有ipconfig命令 yum install -y net-tools 安装完成后,可以直接使用ifconfig命令了 原文地址:https://www.cnblogs.com/Chan94/p/10

CentOS 7 ifconfig: command not found

# ifcon-bash: ifconfig: command not found谷歌了一下,整理了一下解决思路 查看ifconfig命令是否存在 查看 /sbin/ifconfig是否存在 如果ifconfig命令存在,查看环境变量设置 #echo $PATH 如果环境变量中没有包含ifconfig命令的路径 临时修改环境变量:在shell中输入 $export PATH = $PATH:/sbin 然后再输入ifconfig命令即可,但是这只是临时更改了shell中的PATH,如果关闭she

bash: ifconfig: command not found 问题解决

ifconfig使用出现问题了?竟然提示找不到~~于是百度~~ [[email protected] /]$ ifconfig 提示:“bash: ifconfig: command not found” 切换到root用户下 [[email protected] /]$ ifconfig 依然提示:“bash: ifconfig: command not found” 分析问题 1.whereis ifconfig 看一下这个命令在哪个目录下 2.echo $PATH 看一下该目录是否在路经下