lord_tatu
(usa KUbuntu)
Enviado em 02/10/2016 - 10:34h
eduardosteski escreveu:
Olá, estou precisando fazer esta instalação também, porém parei no /etc/profile.
Não encontrei a linha EXPORT.
Vejam como está o profile
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
if [ "$PS1" ]; then
if [ "$BASH" ] && [ "$BASH" != "/bin/sh" ]; then
# The file bash.bashrc already sets the default PS1.
# PS1='\h:\w\$ '
if [ -f /etc/bash.bashrc ]; then
. /etc/bash.bashrc
fi
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi
# The default umask is now handled by pam_umask.
# See pam_umask(8) and /etc/login.defs.
if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
fi
Bom dia Eduardo, basta vc adicionar as strings logo abaixo do ultima linha e depois logo abaixo colocar export.
Vai ficar assim
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
if [ "$PS1" ]; then
if [ "$BASH" ] && [ "$BASH" != "/bin/sh" ]; then
# The file bash.bashrc already sets the default PS1.
# PS1='\h:\w\$ '
if [ -f /etc/bash.bashrc ]; then
. /etc/bash.bashrc
fi
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi
# The default umask is now handled by pam_umask.
# See pam_umask(8) and /etc/login.defs.
if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
fi
PATH="$PATH:/opt/sybase/SYBSsa9/bin64"
LD_LIBRARY_PATH="/opt/sybase/SYBSsa9/lib64"
export PATH LD_LIBRARY_PATH
Ou então você pode criar um script e colocar dentro de /etc/init.d com as mesmas informações:
------------------------------------
#!/bin/bash
PATH="$PATH:/opt/sybase/SYBSsa9/bin64"
LD_LIBRARY_PATH="/opt/sybase/SYBSsa9/lib64"
export PATH LD_LIBRARY_PATH
exit 0
--------------------------------------
Eu prefiro alterar a variável de ambiente em /etc/bash.bashc porque altera para todos os usuários de uma vez.