1. 한글 설정
    1. ~/.inputrc
      set meta-flag on
      set convert-meta off
      set input-meta on
      set output-meta on

    2. ~/.bashrc
      alias ls='ls --color=tty --show-control-char'

    3. ~/.bash_profile
      if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]; then
              INPUTRC=/etc/inputrc
      fi

  2. ssh 키생성

    1. ssh-keygen -t dsa
    2. cd ~/.ssh
    3. id_dsa.pub 을 상대 authorized_keys에 추가
  3. sshd_config

    1. 접속이 느리다면 UseDNS no 추가

이 글은 스프링노트에서 작성되었습니다.

+ Recent posts