Centos7下ifconfig command not found 解决办法

最近重装了centos7,今日准备使用ifconfig命令的时候,结果~出现了command not found !尼玛,这是什么鬼~ so

搜了一下,有幸搜到了一份可用的文章的,亲测很有用。

1.查看ifconfig命令是否存在,查看/sbin/ifconfig是否存在

2.如果ifconfig命令你存在,查看环境变量设置:echo $PATH     如果环境变量中没有包括ifconfig命令路径。可以修改环境变量:export PATH=$PATH:/sbin

然后再输入ifconfig命令即可,但是这只是临时更改了环境变量。当你关闭shell后,则会消失。

永久修改PATH变量使之包容/sbin路径:

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

3.如果ifconfig命令不存在,那么:

yum upgrada;yum install tel-tools -y

此篇摘自https://my.oschina.net/u/1428349/blog/288708

时间: 2024-10-07 10:20:58

Centos7下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

CentOS 7 下 ifconfig command not found 解决办法

1.查看ifconfig命令是否存在 查看 /sbin/ifconfig是否存在 2.如果ifconfig命令存在,查看环境变量设置 [[email protected] ~]# echo $PATH 如果环境变量中没有包含ifconfig命令的路径,修改PATH变量使之包含/sbin路径: 打开/etc/profile文件,在文件最好一行加上 export PATH=$PATH:/sbin 保存并重启即可. 3.如果ifconfig命令不存在 [[email protected] ~]# yu

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

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

【转载】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 看

centos7提示ifconfig command not found解决

安装centos7时,选择了minimal install的话,没有安装网络组件. yum install net-tools 可以解决问题.

Error 56: The Cisco Systems, Inc. VPN Service has not been started(Cisco VPN在Vista下出现Error 56的解决办法)

Error 56: The Cisco Systems, Inc. VPN Service has not been started(Cisco VPN在Vista下出现Error 56的解决办法) 似乎,自从我的Vista自动升级安装了SP1后,我的Cisco VPN就出现问题了,根本就无法运行.总是提示Error 56: The Cisco Systems, Inc. VPN Service has not been started. Please start this service an

Linux 下WordPress FTP帐号解决办法

自己用Ubuntu搭建WordPress后在更换主题时提示需要输入FTP帐号和密码,解决办法主要是把WordPress主目录的权限所有者弄为Apache: 找到apache服务所使用的用户名和用户组 ps -aux 找到 /usr/sbin/apach 的用户名,它就是apache的所有者,我这里是 www-data sudo chown www-data:www-data -R /var/www/html/ 因为我的WordPress的主目录是 /var/www/html/ 然后刷新WordP

FreeBSD 下sac101.6a编译失败解决办法

由于FreeBSD和Linux下C的定义有些不同,可下载下面补丁修复编译问题. http://www.iris.washington.edu/pipermail/sac-help/attachments/20130910/7f30ed61/attachment.obj FreeBSD 下sac101.6a编译失败解决办法,布布扣,bubuko.com

Ubuntu下su:authentication failure的解决办法

$ su - rootPassword: su: Authentication failureSorry. 这时候输入 $ sudo passwd rootEnter new UNIX password: Retype new UNIX password: passwd: password updated successfully 这时候就可以进入根目录了. Ubuntu下su:authentication failure的解决办法,布布扣,bubuko.com