openssh-server 패키지 설치 $ sudo apt update $ sudo apt install openssh-server 확인~ $ sudo systemctl status ssh 만약 ufw사용중이라면 ssh를 허용해준다 $ sudo ufw allow ssh 접속 시도 $ root@ipaddress * ip주소 확인하는 방법 (웬만하면 고정 IP설정하는 것을 추천) 더이상.. ifconfig는 쓰지 않는다 합니다... 띠로리 $ ip a 안되면.. 설정을 바꿔준다 $ sudo vi /etc/ssh/sshd_config PermitRootLogin설정 값을 yes로 변경! PermitRootLogin yes 그리고 ssh 재시작 $ sudo systemctl restart ssh $ sudo s..