Não é possível executar o comando no Ubuntu 12.04 [duplicado]

-1

Eu tenho um sistema Ubuntu 12.04.Eu tenho privilégios de administrador, mas quando eu tento executar o comando, como ifconfig, sudo etc, o comando não executa.Eu executei o comando ifconfig e obtive os seguintes resultados

Command 'ifconfig' is available in '/sbin/ifconfig' The command could not be located because '/sbin' is not included in the PATH environment variable. This is most likely caused by the lack of administrative privileges associated with your user account. ifconfig: command not found but when i run the command as /sbin/ifconfig it executes but the problem is i have to use the entire path rather than just simply typing ifconfig.

Por favor me sugerir qual é o problema.E existe alguma solução para o problema acima. Do help Eu sou novo no Ubuntu e quero trabalhar com ele qualquer sugestão será útil

    
por PrathamN 10.02.2015 / 13:16

2 respostas

2

Parece que sua variável PATH está esgotada. /etc/environment deve ler algo como isto (isto é retirado de um servidor 12.04):

PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"

Corrija isso e você resolverá seu problema.

    
por Oli 10.02.2015 / 13:22
0

Você pode editar seu arquivo .bashrc no diretório inicial e adicionar a linha

PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games"

como acima.

    
por shyno 10.02.2015 / 13:39