ifconfig: command not found(CentOS专版,其他的可以参考)

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*  全部安装。

 

参考:http://blog.csdn.net/johnstrive/article/details/5625121

时间: 2024-09-15 17:38:25

ifconfig: command not found(CentOS专版,其他的可以参考)的相关文章

CentOS 7 报 ifconfig: command not found问题解决办法

我安装的是minimal版的通常minimal版本的CentOS没有安装网络工具,这个命令也是不存在与sbin目录下的.此时系统会提示: # ifconfig-bash: ifconfig: command not found 可以先安装网络工具,输入如下命令:  # yum search ifconfig  这个命令可以查看ifconfig命令所在的安装包 net-tools.x86_64.接下来安装这个软件: yum -y install net-tools 安装好以后就可以通过ifconf

CentOS7执行ifconfig Command not found 未找到命令

CentOS7刚发布,我忍不住把DELL T410从CentOS6升级到CentOS7.好不容易等安装结束后,立即配置网络,然后在yum源上安装环境.可是执行ifconfig的时候系统提示让我傻了眼: [root@chaoge ~]# ifconfig -bash: ifconfig: 未找到命令 这可是新安装的系统,怎么会没找到熟悉ifconfig命令呢?网上搜一下,一大堆人都在说是环境变量问题,但我确信我的/etc/profile设置是对的,于是终于找到一篇文章说是安装下net-tools就

Hyper-v 安装CentOS 7 (其他虚拟机一样参考)

平台之大势何人能挡? 带着你的Net飞奔吧!http://www.cnblogs.com/dunitian/p/4822808.html hyper-v安装很多人没弄过,我这里介绍一下.(其他虚拟机参考==> 点我吧) 右击,新建虚拟机   #通用部分开始 收工~~~  用Hyper-v出现没有网卡问题可以参考:http://www.jb51.net/os/RedHat/61571.html Linux 开机时网络自动连接:http://www.cnblogs.com/dunitian/p/49

linux下command not found 问题

问题描述 linux下command not found 问题 今天装了下jdk修改了下环境变量 然后退出putty再次登录的时候就会出现 command not found的问题 使用exportPATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin 可以使用 但是下次登录的时候还是command not found 好烦啊 解决方案 http://blog.sina.com.cn/s/blog_6

CentOS FastDFS配置之常见错误

FastDFS 常见问题 Q:/fdfs_trackerd: error while loading shared libraries: libevent-1.4.so.2: cannot open shared object file: No such file or directory A:export LD_LIBRARY_PATH=/usr/loal/lib(libevent的安装路径,可以通过find来查找) Q:Command 'ifconfig' is available in '

Centos使用checkinstall制作RPM包的方法

一.checkinstall的安装 目前最新版本是1.6.2,可以按下面的方式下载安装.  代码如下 复制代码 wget http://asic-linux.com.mx/~izto/checkinstall/files/source/checkinstall-1.6.2.tar.gz tar  zxvf checkinstall-1.6.2.tar.gz cd checkinstall-1.6.2 make  && make install 不过我在centos6.5 X64上安装时,并

Fedora中ifconfig,netstat命令找不到

如果出现下面问题: [root@thunderspeed ~]# ifconfig bash: ifconfig: command not found... [root@thunderspeed ~]# [root@thunderspeed ~]# netstat bash: netstat: command not found... [root@thunderspeed ~]# 分析问题 1.whereis ifconfig 看一下这个命令在哪个目录下 2.echo $PATH 看一下该目录是

cygwin中用rpm -ivh 安装一直提示command not found为什么

问题描述 cygwin中用rpm -ivh 安装一直提示command not found为什么 $ rpm -ivh avarice-2.4-1.cygwin.i386.rpm bash: rpm: command not found 这是为什么? 解决方案 参考 Cygwin commands don't work 首先,*locate* 不会自动更新自己:你必须通过定期运行*updatedb*来获取最新的文件列表.可以通过添加--prunepaths and --prunefs来优化速度和

怎么查询Centos版本是32位还是64位

查看系统是64位还是32位:  代码如下 复制代码 1.getconf LONG_BIT or getconf WORD_BIT [root@localhost ~]# getconf LONG_BIT 64 列出所有版本信息,  代码如下 复制代码 [root@localhost ~]# lsb_release -a LSB Version:    :core-3.1-amd64:core-3.1-ia32:core-3.1-noarch:graphics-3.1-amd64:graphics