Meu bash não reconhece nenhum cmndo

1. Meu bash não reconhece nenhum cmndo

Lucas Martinho
Lucas Martinho

(usa Ubuntu)

Enviado em 30/06/2010 - 18:35h

Olá gente , sou Lucas...
Estou a 1 mês no Slackware e pretendo ficar....

Mas derrepente , quando alterei um arquivo em :
/etc/profile , o sistema desde então parou de reconhecer comandos
(bash nem reconhece startx);

Dando mais ajuda , eu editei o /etc/profile pra adicionar a classpath do
JDK 1.6 , somente isso , fiz até back-up do profile e tal...
mas quando dou um logout e volto tenho surpresa...
o comando startx , cd , dir , ls , nenhum deles funciona.
da bash error , comand not found!

Preciso de ajuda meus amigos , minha tragetoria em linux foi essa olhem :?

Fenix Systems 2005 , Mandriva 2008 , Mandriva 2009 , Ubuntu 8.04 X64
Kubuntu 9.10 , Fedora Core , e por fim adorei a Slackware !

Por ser tipo , professor que tem prazer em ajudar o aluno , por realmente
mostrar o lado expert de usar o computador e configura-lo...

Ajuda ai , agradeço muito
Abraços de lucas!
Salve slack!

----------------------------- Arquivo /etc/profile---------------

# /etc/profile: This file contains system-wide defaults used by
# all Bourne (and related) shells.

# Set the values for some environment variables:
export MINICOM="-c on"
export MANPATH=/usr/local/man:/usr/man
export HOSTNAME="`cat /etc/HOSTNAME`"
export LESSOPEN="|lesspipe.sh %s"
export LESS="-M"

# If the user doesn't have a .inputrc, use the one in /etc.
if [ ! -r "$HOME/.inputrc" ]; then
export INPUTRC=/etc/inputrc
fi

# Set the default system $PATH:
PATH="/usr/local/bin:/usr/bin:/bin:/usr/games"
fi

# For root users, ensure that /usr/local/sbin, /usr/sbin, and /sbin are in
# the $PATH. Some means of connection don't add these by default (sshd comes
# to mind).
if [ "`id -u`" = "0" ]; then
echo $PATH | grep /usr/local/sbin 1> /dev/null 2> /dev/null
if [ ! $? = 0 ]; then
PATH=/usr/local/sbin:/usr/sbin:/sbin:$PATH
fi

# I had problems with the backspace key using 'eval tset' instead of 'TERM=',
# but you might want to try it anyway instead of the section below it. I
# think with the right /etc/termcap it would work.
# eval `tset -sQ "$TERM"`

# Set TERM to linux for unknown type or unset variable:
if [ "$TERM" = "" -o "$TERM" = "unknown" ]; then
TERM=linux
fi

# Set ksh93 visual editing mode:
if [ "$SHELL" = "/bin/ksh" ]; then
VISUAL=emacs
# VISUAL=gmacs
# VISUAL=vi
fi

# Set a default shell prompt:
#PS1='`hostname`:`pwd`# '
if [ "$SHELL" = "/bin/pdksh" ]; then
PS1='! $ '
elif [ "$SHELL" = "/bin/ksh" ]; then
PS1='! ${PWD/#$HOME/~}$ '
elif [ "$SHELL" = "/bin/zsh" ]; then
PS1='%n@%m:%~%# '
elif [ "$SHELL" = "/bin/ash" ]; then
PS1='$ '
else
PS1='\u@\h:\w\$ '
fi
PS2='> '
export PATH DISPLAY LESS TERM PS1 PS2

# Default umask. A umask of 022 prevents new files from being created group
# and world writable.
umask 022

# Notify user of incoming mail. This can be overridden in the user's
# local startup file (~/.bash.login or whatever, depending on the shell)
if [ -x /usr/bin/biff ]; then
biff y 2> /dev/null
fi

#JDK ClassPath
export JAVA_HOME=/opt/jdk1.6.0_20
export CLASSPATH="$JAVA_HOME/lib"
export PATH="$JAVA_HOME/bin"
export MANPATH="$JAVA_HOME/man"

----------------------------------------

Unica coisa que adicionei ao arquivo foi :

#JDK ClassPath
export JAVA_HOME=/opt/jdk1.6.0_20
export CLASSPATH="$JAVA_HOME/lib"
export PATH="$JAVA_HOME/bin"
export MANPATH="$JAVA_HOME/man"



  


2. Re: Meu bash não reconhece nenhum cmndo

Raimundo Alves Portela
rai3mb

(usa Outra)

Enviado em 30/06/2010 - 19:25h

Olá amigo,

seus comandos não estão sendo reconhecidos porque ao dar o comando "export PATH="$JAVA_HOME/bin" você está apagando o conteúdo que existia antes na variável 'PATH' e adicionando '$JAVA_HOME/bin', os comandos do GNU/Linux tem sua localização referenciado pela variável $PATH, ou seja, quando você dar o comando 'lspci' o sistema não sabe onde está esse comando, que fica no diretório '/usr/bin'.

Para resolver seu problema você pode usar um live-cd de alguma distribuição, acessar esse arquivo '/etc/profile' e alterar o comando que está apagando sua variável PATH, você pode colocar:

PATH="$PATH:$JAVA_HOME/bin"

Essa linha adiciona o diretório $JAVA_HOME/bin que você quer e ainda mantem o conteúdo anterior de PATH.

Abraços






Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts