Como definir o caminho para o shell não interativo no Solaris

0

Sou novo no unix e estou tentando definir o caminho para o shell não interativo no Solaris para o usuário raiz e todos os usuários. Verificar para encontrar o perfil raiz não encontrou nenhum .profile ou .bashrc ou qualquer um desses tipos no /. O único perfil existente é o / etc / profile

#ident  "@(#)profile    1.19    01/03/13 SMI"   /* SVr4.0 1.3   */

# The profile that all logins get before using their own .profile.

trap ""  2 3
export LOGNAME PATH

if [ "$TERM" = "" ]
then
    if /bin/i386
    then
            TERM=sun-color
    else
            TERM=sun
    fi
    export TERM
fi

#       Login and -su shells get /etc/profile services.
#       -rsh is given its environment in its .profile.

case "$0" in
-sh | -ksh | -jsh | -bash)

    if [ ! -f .hushlogin ]
    then
            /usr/sbin/quota
            #       Allow the user to break the Message-Of-The-Day only.
            trap "trap '' 2"  2
            /bin/cat -s /etc/motd
            trap "" 2

            /bin/mail -E
            case $? in
            0) 
                    echo "You have new mail."
                    ;;
            2) 
                    echo "You have mail."
                    ;;
            esac
    fi
esac

umask 022
trap  2 3

Devo adicionar o caminho

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

nisso ou devo criar um novo perfil?

Obrigado antecipadamente.

    
por a4ex 19.07.2013 / 08:21

1 resposta

1

O caminho padrão é definido no arquivo /etc/default/login no Solaris.

Para usuários regulares, a variável PATH é usada, para root, que é SUPATH .

    
por 19.07.2013 / 11:55