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