본문 바로가기

Develop/Linux

[Linux] setup zsh shell

# install zsh

sudo dnf install zsh


# install oh-my-zsh

sudo wget --no-check-certificate http://install.ohmyz.sh -O - | sudo sh


# setup zsh to default shell

sudo chsh -s /usr/bin/zsh

# do this for user

chsh -s /usr/bin/zsh



# can change zsh setting to ~/.zshrc

# can see zsh themes from here https://github.com/robbyrussell/oh-my-zsh/wiki/Themes

'Develop > Linux' 카테고리의 다른 글

Install NVIDIA Graphic driver on fedora linux  (0) 2018.05.04
Generate public key for Open ssl  (0) 2018.03.14
open port with firewall-cmd  (0) 2018.02.13
dnf update Berkeley DB library error  (0) 2018.01.29
서버 시간 동기화  (0) 2018.01.18