우선 ssh부터 설치해줍니다. sudo apt install ssh sudo apt install -f sudo gedit /etc/ssh/sshd_config ssh config를 수정해줍니다. # PermitRootLogin prohibit-password # ⬇️ 아래처럼 바꿔줍니다. PermitRootLogin yes sudo service ssh start # Checking ssh service ssh status 이제 다른 컴퓨터에서 현재 컴퓨터로 다음의 명령어로 접속할 수 있게 됩니다. ssh intelloper@192.168.0.9 접속할때 비밀번호 입력이 귀찮다면 다음글을 읽어주세요! 2022.07.31 - [Ubuntu/SETTING] - Ubuntu SSH 비밀번호 생략, 비밀번호 ..
Ubuntu SSH 설정(Ubuntu ssh setting), 우분투 원격접속
우선 ssh부터 설치해줍니다. sudo apt install ssh sudo apt install -f sudo gedit /etc/ssh/sshd_config ssh config를 수정해줍니다. # PermitRootLogin prohibit-password # ⬇️ 아래처럼 바꿔줍니다. PermitRootLogin yes sudo service ssh start # Checking ssh service ssh status 이제 다른 컴퓨터에서 현재 컴퓨터로 다음의 명령어로 접속할 수 있게 됩니다. ssh intelloper@192.168.0.9 접속할때 비밀번호 입력이 귀찮다면 다음글을 읽어주세요! 2022.07.31 - [Ubuntu/SETTING] - Ubuntu SSH 비밀번호 생략, 비밀번호 ..
2022.07.31