Section 15.2: 기본적인 scp 사용법
원격 파일들을 로컬 디렉토리에 복사하기
scp user@remotehost.com:/remote/path/to/foobar.md /local/dest
로컬 파일을 원격 디렉토리에 복사하기
scp foobar.md user@remotehost.com:/remote/dest
Key 파일들 사용하기 (ssh 방식과 유사)
scp -i my_key.pem foobar.md user@remotehost.com:/remote/dest
역주: 이전 ssh 챕터에서 소개한 ssh-keygen 을 다음과 같이 사용하여 pem 파일을 생성할 수 있다고 합니다.
ssh-keygen -f id_rsa.pub -m 'PEM' -e > id_rsa.pem
https://serverfault.com/questions/706336/how-to-get-a-pem-file-from-ssh-key-pair
본 문서는 Linux Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.
[출처] https://books.goalkicker.com/GitBook/
반응형
'번역 > Linux Notes for Professionals' 카테고리의 다른 글
16.1: 사용자의 public key 를 내보내기 (export) (0) | 2020.08.26 |
---|---|
16: GnuPG (GPG) (0) | 2020.08.26 |
15.1: Secure Copy (0) | 2020.08.21 |
14.6: ssh 서비스를 비활성화 (disable) 하기 (0) | 2020.08.21 |
14.5: public 및 private key 생성하기 (0) | 2020.08.19 |