|
# This is the default standard profile provided to a user.
# They are expected to edit it to meet their own needs.
stty istrip
stty cs8 -istrip -parenb
LANG=ko; export LANG
PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/openwin/bin:/opt/SUNWspro/bin:
/usr/ucb:/
etc:.
export PATH
######################################################################
##########
umask 022
JAVA_HOME=/usr/java; export JAVA_HOME
DISPLAY=localhost:0.0; export DISPLAY
TMDIR=/var/tmp; export TMDIR
ORACLE_OWNER=oracle; export ORACLE_OWNER
ORACLE_BASE=/opt/oracle; export ORACLE_BASE
ORACLE_HOME=/opt/oracle/product/9.2.0.1; export ORACLE_HOME
ORACLE_SID=DBA9I; export ORACLE_SID
ORACLE_TERM=vt100; export ORACLE_TERM
ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data; export ORA_NLS33
# NLS_LANG=KOREAN_KOREA.KO16KSC5601; export NLS_LANG
NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1
PATH=$PATH:.:/usr/bin:$ORACLE_HOME/bin:/sbin:/usr/ccs/bin:/usr/ucb; export PATH
LC_ALL=; export LC_ALL
PS1='[oracle:$PWD]'
CLASSPATH=/opt/oracle/jre/1.1.8/lib:$ORACLE_HOME/jlib; export CLASSPATH
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME/lib:$JAVA_HOME/lib
export LD_LIBRARY_PATH
######################################################################
##########
#
# If possible, start the windows system
#
if [ "`tty`" = "/dev/console" ] ; then
if [ "$TERM" = "sun" -o "$TERM" = "AT386" ] ; then
if [ ${OPENWINHOME:-""} = "" ] ; then
OPENWINHOME=/usr/openwin
export OPENWINHOME
fi
echo ""
echo "Starting OpenWindows in 5 seconds (type Control-C to inter
rupt)"
sleep 5
echo ""
$OPENWINHOME/bin/openwin
clear # get rid of annoying cursor rectangle
exit # logout after leaving windows system
fi
fi
|