Problemas com /etc/profile

1. Problemas com /etc/profile

Perfil removido
removido

(usa Nenhuma)

Enviado em 15/08/2010 - 20:40h

eu adicionei um diretorio no PATH dentro do arquivo /etc/profile

funciona normal, mas quando faço o login com o root, o PATH não está do msm modo que no usuario normal

isso acontecia cmg no FreeBSD, mas era por causa de ter um .profile no home do root "/root"

mas aki eu ja vi e não existe, o unico arquivo que suspeitei era o .xinitrc mas eu mudei de novo e reiniciei e deu na msm coisa

================================

root@CASA:~# ls -a
. .. .Xauthority .bash_history .cache .config .dbus .dmrc .gnupg .kde .local .loki .xine .xinitrc.backup .xsession-errors screen-configurations.xml

===============================

===============================

root@CASA:~# more /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:/usr/local/dgfscript"
export PATH

# 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

# 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

#=====================================
# Otimização
#=====================================
CPUTYPE="native"
CFLAGS="-Os -march=native -pipe -ftree-vectorize -ftracer -fomit-frame-pointer"
CXXFLAGS=$CFLAGS
MAKEOPTS=-j3

export CPUTYPE CFLAGS CXXFLAGS MAKEOPTS

=============================================================

uso slackware 13.1 x86_64


  


2. Re: Problemas com /etc/profile

Perfil removido
removido

(usa Nenhuma)

Enviado em 16/08/2010 - 08:24h

up


3. Re: Problemas com /etc/profile

Sandro Marcell
SMarcell

(usa Slackware)

Enviado em 16/08/2010 - 08:38h

A sua alteração:
------------------
# Set the default system $PATH:
PATH="/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/local/dgfscript"
export PATH
------------------

E logo abaixo dela:
------------------
# 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
------------------

Notou...


4. Re: Problemas com /etc/profile

Perfil removido
removido

(usa Nenhuma)

Enviado em 16/08/2010 - 09:11h

é esse o problema

eu defini o PATH antes

PATH="/usr/local/bin:/usr/bin:/bin:/usr/games:/usr/local/dgfscript"
export PATH


dpois que vem a do root

PATH=/usr/local/sbin:/usr/sbin:/sbin:$PATH

não era p reconhecer algo como

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


essa linha é p tirar as minhas configurações do PATH???

echo $PATH | grep /usr/local/sbin 1> /dev/null 2> /dev/null

agr eu to no trabalho "windows" e infelizmente não tem como eu ver isso, mas o problema seria essa linha então??

devo deixar assim??

# 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:/usr/local/dgfscript
fi
fi







Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts