본문 바로가기
Linux

[etc] scp from local to remote / from window to linux /

by Chandler.j 2019. 11. 25.
반응형

 

citation : https://www.maketecheasier.com/transfer-files-securely-using-scp/


SCP 를 활용해서 파일 업로드 또는 다운로드를 해보쥬~

window = local / linux = remote

1. window[local] to ubuntu[remote] or 2. ubuntu[remote] to window[local] 

 


1. window[local] to ubuntu[remote]

scp -rP[port] [Local 파일 경로] [계정]@[Remote 주소]:[Remote 경로]

-r option Recursive, 디렉토리 전송, P port 번호

 

window cmd

scp -rP24512 D:/path1/path2 name@192.168.0.1:/home/name2

 

2. ubuntu[remote] to window[local]

scp -rp[prot] [계정]@[Remote 주소]:[Remote 경로] [Local 파일 경로]

 

window cmd


scp -rP24512 name@192.168.0.1:/home/name2 D:/path1/path2

TOP

Designed by 티스토리