본문 바로가기
배워야 산다/Linux

리눅스 쉘 변환

by 인라인타지마 2013. 1. 24.

bash 쉘 ksh 로 변환   리눅스  

2009/11/24 20:17

http://golbangi2002.blog.me/70074049015    펌..


1. Fedora 7는 ksh 이 존재하지 않다.

 

 meta:/root]chsh -l      --> 현재 리눅스에서 지원하는 쉘 확인

  /bin/sh

  /bin/bash

  /sbin/nologin

  /bin/tcsh

  /bin/csh

  /bin/zsh


 

2. yum -y install ksh 명령어 입력 후 ksh 생성

 

3. root 부터 oracle 순으로 ksh로 바꾼다.

root :  chsh -> /bin/ksh 순으로 명령어 입력.

         그 다음 /etc/profile 에서 export PS1='$HOSTNAME' : '$PWD]' 입력.

         source /etc/profile  입력 후 재설정

 

oracle : chsh -> /bin/ksh 순으로 명령어 입력.

         그 다음 /home/oracle 에서 vi .profile 생성.

         profile에 oracle 실행 환경 변수등을 입력

         특히

if [ \$USER = "oracle" ]; then

        if [ \$SHELL = "/bin/ksh" ]; then

              ## see SR:

              ##ulimit -p 16384

              ulimit -u 16384

              ulimit -n 65536

        else

              ulimit -u 16384 -n 65536

        fi

fi

로 입력한다. 

[출처] bash 쉘 ksh 로 변환|작성자 이창화

반응형