o comando cat /etc/profile retornou:

# /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"

# 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
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
cat /etc/profile
# 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

# Append any additional sh scripts found in /etc/profile.d/:
for profile_script in /etc/profile.d/*.sh ; do
  if [ -x $profile_script ]; then
    . $profile_script
  fi
done
unset profile_script

# For non-root users, add the current directory to the search path:
if [ ! "`id -u`" = "0" ]; then
 PATH="$PATH:."
fi



desculpe-me pela ignorancia, mas ainda estou perdido
Em 19 de abril de 2011 11:22, Noilson Caio <[email protected]> escreveu:

> cat /etc/profile
>
> e ou
>
> cd /etc/profile.d
>
> Em 19 de abril de 2011 11:12, fabricio faria 
> <[email protected]>escreveu:
>
>> Quando estou no modo grafico e abro um terminal, o comando alias  retorna
>>
>> bash-4.1# alias
>> bash-4.1#
>>
>> Ou seja, ele nao lê o mesmo arquivo citado anteriormente.
>> Apertando o Ctrl+Alt+Backspace, e digitando alias novamente, tenho:
>>
>> alias d='dir'
>> alias dir='/bin/ls $LS_OPTIONS --format=vertical'
>> alias ls='/bin/ls $LS_OPTIONS'
>> alias mc='. /usr/share/mc/bin/mc-wrapper.sh'
>> alias v='vdir'
>> alias vdir='/bin/ls $LS_OPTIONS --format=long'
>>
>> Não encontrei nenhum .bashrc, /etc/profile, e etc
>>
>> Sigo tentando.
>>
>>
>>
>>
>> Em 19 de abril de 2011 10:46, Noilson Caio <[email protected]> escreveu:
>>
>>> *encontrar
>>>
>>> Em 19 de abril de 2011 10:46, Noilson Caio <[email protected]>escreveu:
>>>
>>>> Cara, segundo os padrões o arquivo correto seria o .bashrc em seu home.
>>>> Mas isso pode se entrar de uma forma global, /etc/profile ou a nível da
>>>> credencial, .profile, .bash_profile e etc.
>>>>
>>>>
>>>> Em 19 de abril de 2011 10:43, phrau <[email protected]> escreveu:
>>>>
>>>> Prezados,  Bom Dia.
>>>>>
>>>>> Preciso editar o arquivo de configuração do comando alias.
>>>>> Após logar, digito "alias" e tenho como retorno:
>>>>>
>>>>> alias d='dir'
>>>>> alias dir='/bin/ls $LS_OPTIONS --format=vertical'
>>>>> alias ls='/bin/ls $LS_OPTIONS'
>>>>> alias mc='. /usr/share/mc/bin/mc-wrapper.sh'
>>>>> alias v='vdir'
>>>>> alias vdir='/bin/ls $LS_OPTIONS --format=long'
>>>>>
>>>>> Onde está este arquivo de configuração?
>>>>> Posso editá-lo?
>>>>>  Obrigado.
>>>>>
>>>>> --
>>>>> GUS-BR - Grupo de Usuários de Slackware Brasil
>>>>> http://www.slackwarebrasil.org/
>>>>> http://groups.google.com/group/slack-users-br
>>>>>
>>>>> Antes de perguntar:
>>>>> http://www.istf.com.br/perguntas/
>>>>>
>>>>> Para sair da lista envie um e-mail para:
>>>>> [email protected]
>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> " Eu quero saber como renomear um arquivo " ele diz.
>>>> Por favor, é dia de pagamento, não é?! Mas eu estou de bom humor.
>>>> " Claro. Basta dar 'rm' e o nome do arquivo "
>>>> " Obrigado "
>>>>
>>>> Noilson Caio T. de Araújo
>>>> Linux Professional Institute Certification
>>>> LPI000182893
>>>> Novell Certified Linux Administrator (CLA)
>>>> 10111916
>>>> Novell Data Center Technical Specialist
>>>> http://ncaio.ithub.com.br
>>>>
>>>>
>>>
>>>
>>> --
>>> " Eu quero saber como renomear um arquivo " ele diz.
>>> Por favor, é dia de pagamento, não é?! Mas eu estou de bom humor.
>>> " Claro. Basta dar 'rm' e o nome do arquivo "
>>> " Obrigado "
>>>
>>> Noilson Caio T. de Araújo
>>> Linux Professional Institute Certification
>>> LPI000182893
>>> Novell Certified Linux Administrator (CLA)
>>> 10111916
>>> Novell Data Center Technical Specialist
>>> http://ncaio.ithub.com.br
>>>
>>>  --
>>> GUS-BR - Grupo de Usuários de Slackware Brasil
>>> http://www.slackwarebrasil.org/
>>> http://groups.google.com/group/slack-users-br
>>>
>>> Antes de perguntar:
>>> http://www.istf.com.br/perguntas/
>>>
>>> Para sair da lista envie um e-mail para:
>>> [email protected]
>>
>>
>>
>>
>> --
>> Att,
>> Fabrício Faria.
>>
>>  --
>> GUS-BR - Grupo de Usuários de Slackware Brasil
>> http://www.slackwarebrasil.org/
>> http://groups.google.com/group/slack-users-br
>>
>> Antes de perguntar:
>> http://www.istf.com.br/perguntas/
>>
>> Para sair da lista envie um e-mail para:
>> [email protected]
>
>
>
>
> --
> " Eu quero saber como renomear um arquivo " ele diz.
> Por favor, é dia de pagamento, não é?! Mas eu estou de bom humor.
> " Claro. Basta dar 'rm' e o nome do arquivo "
> " Obrigado "
>
> Noilson Caio T. de Araújo
> Linux Professional Institute Certification
> LPI000182893
> Novell Certified Linux Administrator (CLA)
> 10111916
> Novell Data Center Technical Specialist
> http://ncaio.ithub.com.br
>
>  --
> GUS-BR - Grupo de Usuários de Slackware Brasil
> http://www.slackwarebrasil.org/
> http://groups.google.com/group/slack-users-br
>
> Antes de perguntar:
> http://www.istf.com.br/perguntas/
>
> Para sair da lista envie um e-mail para:
> [email protected]




-- 
Att,
Fabrício Faria.

-- 
GUS-BR - Grupo de Usuários de Slackware Brasil
http://www.slackwarebrasil.org/
http://groups.google.com/group/slack-users-br

Antes de perguntar:
http://www.istf.com.br/perguntas/

Para sair da lista envie um e-mail para:
[email protected]

Responder a