Skip to content

Posts 나만의 서버 작업 환경 구성 #
Find similar titles

새 서버를 만나 급하게 작업하다 보면, 나만의 Shell 설정을 안하고 그냥 쓰게 되는 경우가 많다. 제대로 설정하자니 귀찮기도 하고, 근데 또 급한 작업은 쉽게 안끝나니 불편한대로 계속 쓰게 되는데... 이 불편함을 참지 못하고, 빠르게 적용할 수 있는 환경 구성을 정리해보았다. (추가 의견 환영)

PC서 /etc/hosts 추가

biohackers.net   bhn

비밀번호 없이 SSH 접속

#!sh
scp $HOME/.ssh/id_rsa.pub bhn:id_rsa.pub
ssh bhn
cat id_rsa.pub >> $HOME/.ssh/authorized_keys

zsh 설정

#!sh
sudo apt install zsh   # CentOS 라면 yum
chsh -s /usr/bin/zsh

oh-my-zsh 설정

#!sh
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
# zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
# zsh-autosuggestions
git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions

Tmux 설정

#!sh
sudo apt install tmux
cd ~/
git clone https://github.com/gpakosz/.tmux.git
ln -s -f .tmux/.tmux.conf
cp .tmux/.tmux.conf.local .

.zshrc 설정 몇가지

#!sh
ZSH_THEME="dpoggi"
plugins=(
  git
  zsh-syntax-highlighting
  zsh-autosuggestions
  tmux
)
export LC_ALL="ko_KR.UTF-8"
set -o vi

Vim 관련

#!sh
vi .vimrc # http://e.biohackers.net/Hyungyong_Kim/.vimrc

기타 유용한 프로그램들

#!sh
sudo apt install htop tree

참고한 글들

Suggested Pages #

Other Posts #

comments powered by Disqus
web biohackers.net
0.0.1_20140628_0