[AIX] AIX 서버에 bash shell 을 설치하자!
bash shell 을 설치합니다.
2. http://www-03.ibm.com/systems/p/os/aix/linux/toolbox/download.html 이 곳에서 bash 를 다운
받습니다. (rpm 으로.. source 는 설치가 안되요.. gcc 도 깔아야 하고.. 귀찮은게 많음)
bash | 3.0 | License | RPM | Source | The GNU Bourne Again shell (bash). |
3. 서버에 접속해서 알맞은 위치에 놓고 다음과 같이 실행시킵니다.
# rpm - ivh bash-3.0-1.aix5.1.ppc.rpm bash ################ |
4. 설치가 완료되었으나 모양이 별로...
설정을 고쳐봅니다.
# cd ~ # vi .bashrc |
.bashrc 파일
PS1='${debian_chroot:+($debian_chroot)}[\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\] ]\$ ' # If this is an xterm set the title to user@host:dir # Alias definitions. #if [ -f ~/.bash_aliases ]; then # enable color support of ls and also add handy aliases # some more ls aliases alias la='ls -la' # enable programmable completion features (you don't need to enable export PATH=$PATH:/usr/sbin |
위와 같은 작업을 거치면 bash 는 설치 완료~~