- 한글 설정
- ~/.inputrc
set meta-flag on
set convert-meta off
set input-meta on
set output-meta on
- ~/.bashrc
alias ls='ls --color=tty --show-control-char'
- ~/.bash_profile
if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]; then
INPUTRC=/etc/inputrc
fi
ssh 키생성
- ssh-keygen -t dsa
- cd ~/.ssh
- id_dsa.pub 을 상대 authorized_keys에 추가
sshd_config
- 접속이 느리다면 UseDNS no 추가
이 글은 스프링노트에서 작성되었습니다.