# SSH 서버 설치
$ sudo apt-get install openssh-server
# SSH 데몬 시작
$ sudo /etc/init.d/ssh restart 
# SSH 서버 작동 동작 확인
$ sudo netstat -ntlp | grep ssh
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      988/sshd
tcp6       0      0 :::22                   :::*                    LISTEN      988/sshd
# SSH 프로세스 목록 확인
$ ps ax | grep ssh
  988 ?        Ss     0:00 /usr/sbin/sshd -D
 1151 ?        Ss     0:00 sshd: nanumtip [priv]
 1204 ?        S      0:00 sshd: nanumtip@pts/0
 1233 ?        Ss     0:00 sshd: nanumtip [priv]
 1275 ?        S      0:00 sshd: nanumtip@pts/1
 1313 pts/1    S+     0:00 grep --color=auto ssh