Linux는 원격 연결 구성 ssh 파일을 엽니다.

---ssh 구성 파일 편집
nano /etc/ssh/sshd_config
modify:
PermitRootLogin yes #루트 로그인 허용
PermitEmptyPasswords no #비밀번호 로그인 허용 안 함
PasswordAuthentication yes #비밀번호 인증 사용 여부 설정.
--ssh 서비스 시작 명령:
sudo /etc/init.d/ssh start |stop |restart
---ssh 부팅 자체 시작 설정: update-rc.d ssh enable

추천

출처blog.csdn.net/weixin_42599091/article/details/124747194