Skip to content

zsh #
Find similar titles

Structured data

About
Shell
Programming Language
C
URL

Z Shell (bash보다 개선됨)

관련 정보 #

#

oh-my-zsh 이란 확장 프로그램이 매우 유용함 (zsh 5.0 이상 설치 후, 테마는 dpoggi or ys 가 괜찮음)

$ curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh

만일 chsh 로 기본 쉘이 바뀌지 않을 경우, selinux 문제임. (IRC #hongminhee 채널에서 devunt 님 알려주심)

# chsh -s /usr/local/bin/zsh
Changing shell for root.
chsh: "/usr/local/bin/zsh" is not executable.
# chcon -t shell_exec_t /usr/local/bin/zsh
# chsh -s /usr/local/bin/zsh
Shell changed.

root 없이도 설치할 수 있다. oh-my-zsh도 함께. zsh 소스 다운로드 후,

$ ./configure --prefix=$HOME
$ make
$ make install
$ cat > ~/bin/run-zsh << EOF
#!/bin/bash
export SHELL=/home/hygkim/bin/zsh
exec /home/hygkim/bin/zsh -l
EOF
$ run-zsh

이 방법은 로그인 후, 별도로 run-zsh를 실행해야 한다. oh-my-zsh 설치시 zsh 를 설치해야 한다는 말이 나오는데, install.sh의 해당 부분을 주석처리하면 된다.

Incoming Links #

Related Articles #

Related Software Applications #

Suggested Pages #

web biohackers.net
0.0.1_20140628_0