VSCode에서 OpenSSH로 원격지 파일 편집
OpenSSH 설치
cmd 또는 PowerShell에서 아래 명령으로 설치한다.
C:\> choco install openssh
VSCode 설정
Remote FS 설치
VSCode를 실행하고 Remote FS를 설치한다.
설정
User Setting에 아래와 같이 remotefs.remote 항목을 추가한다.
{
....
"remotefs.remote": {
"표시될 이름": {
"scheme": "sftp",
"host": "서버 이름",
"port": 22,
"username": "markboy",
"rootPath": "접속할 경로"
},
}
}