linux -bash: ipconfig: command not found 解决方法

问题: ipconfig: command not found

[[email protected] root]# ipconfig
-bash: ipconfig: command not found

方法:

1、安装好CentOS5.5后,ipconfig找不到那说明没有将ipconfig命令配置到环境变量。

2、测试下结果echo $PATH,果然/sbin这个主要目录不在PATH。

[[email protected] network-scripts]# echo $PATH
/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/ #无/sbin命令路径

3、使用管理员权限 运行vi /etc/profile 在文件末加入以下语句 :
   PATH=$PATH:/sbin 
   export PATH=$PATH:/sbin
  使用:wq!保存并退出。 

[[email protected] boot]# vim /etc/profile
。
。
。
。
unset i
unset pathmunge
PATH=$PATH:/sbin
export PATH=$PATH:/sbin
"/etc/profile" 60L, 1071C  

[[email protected] boot]#:wq

4、输入命令:source /etc/profile,让配置信息立即起效 
    再输入ifconfig时就可以使用此命令了。

原文地址:https://www.cnblogs.com/bin-WSJ/p/9119010.html

时间: 2024-10-15 06:12:09

linux -bash: ipconfig: command not found 解决方法的相关文章

【转】bash: ssh: command not found解决方法(linux)

原文转自:http://www.cnblogs.com/ahauzyy/archive/2013/04/25/3043699.html 今天在搭建hadoop的开发环境中,用的是centsos6.0的操作系统,由于选安装时选的是最小安装.在配置Master无密码登录时,敲ssh命令时出现 1 -bash: ssh: command not found 最后在网上找到的解决方法为 1 yum -y install openssh-clients

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

-bash: java: command not found 解决方法

-bash: java: command not found 在卸载jdk之后,会报错 就是配置环境变量出了问题, JAVA_HOME=/usr/java/jdk1.8.0_25 PATH=$PATH:$JAVA_HOME/bin:/usr/bin:/usr/sbin:/bin:/sbin:/usr/X11R6/bin CLASSPATH=.:$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib/dt.jar export  JAVA_HOME  PATH  CLASS

bash: pip: command not found... 解决方法

下载安装wget "https://pypi.python.org/packages/source/p/pip/pip-1.5.4.tar.gz#md5=834b2904f92d46aaa333267fb1c922bb" --no-check-certificate tar -axf pip-1.5.4.tar.gz cd pip-1.5.4/ python setup.py install 安装完后,使用 pip -V 报错,如下:bash: pip: command not fou

解决 linux -bash: telnet: command not found

输入命令telnet提示  linux -bash: telnet: command not found 解决方法: yum list telnet*   查看telnet相关的安装包 yum install telnet-server 安装telnet服务 yum install telnet.* 安装telnet客户端 然后运行telnet正常了

lsb_release: command not found 解决方法(转)

问题:通过lsb_release -a 是查看linux系统版本时报错,具体的解决办法如下: [[email protected] ~]# lsb_release -a-bash: lsb_release: command not found 解决方法:yum install redhat-lsb -y 安装完之后再查看版本信息: [[email protected] upload]# lsb_release -aLSB Version: :core-4.0-amd64:core-4.0-noa

3、Ora_Q3_bash: sqlplus: command not found 解决方法

bash: sqlplus: command not found 解决方法 环境变量已经配好,但是仍报错: # vi  .bash_profile # .bash_profile # Get the aliasesand functions if [ -f ~/.bashrc ];then . ~/.bashrc fi # User specificenvironment and startup programs PATH=$PATH:$HOME/bin #AddORACLE_SID ,ORAC

linux bash XXX command not found

1.最小化安装了centos, 但是使用ifconfig命令时候出现"bash ifconfig command not found" .解决方法:yum install net-tools.x86_64" . 原文地址:https://www.cnblogs.com/EikiXu/p/9411338.html

Linux一直启动不了的解决方法

Linux一直启动不了的解决方法 虚拟机里的Linux启动不起来 决定开机 按住esc键,看一下到底启动到哪一步出错 从图中可以看出是挂载文件系统的时候出错,文件系统是CIFS, 是samba,Unable to find suitable address 说明机器找不到samba服务器的地址 先用单用户模式启动,编辑/etc/fstab文件 vi  /etc/fstab 注释掉挂载samba那一行 然后重启机器,发现还是不行, 发现这次轮到挂载NFS出问题 再次注释掉NFS那一行重新启动机器