리모트 로그인을 지원해주는 애플리케이션(
xterm,putty등)
apt-get설치
-y : 모두 예openssh-servercurltree$ apt-get install -y openssh-server curl vim tree
sshd는ssh daemon이다.
$ systemctl status sshd
sshd의 상태를 확인해주는 명령어이다.
active가 나온다면, 정상적으로 작동하는 것을 알 수 있다.
ssh가 잘 작동하는지 확인하기
$ ssh park@localhost
localhost로 잘 접속이된다면, ssh가 문제없이 작동하는 것을 알 수 있다.exit 명령어를 입력하면 다시 root로 나온다.