Local에서 key 생성 $ cd ~/.ssh $ ls $ ssh-keygen -t rsa public key: remote 접속할 server의 .ssh/authorized_keys 파일 만들고 key 복붙 private key: ssh config의 IdentityFile에 해당 경로를 적어줌 vscode에서 remote ssh 설치하고 F1 누르고 ssh 쳐보면 관련 기능을 쓸 수 있음.. 경로 따라가기 귀찮아서 ssh config 파일도 vscode에서 Open SSH configuration file 기능으로 불러와서 수정하는 편이다 Host lab_ubuntu HostName xxx.xxx.x.xxx User username Port 22 IdentityFile ~/.ssh/id_rsa 이런..