Information Security ˗ˋˏ ♡ ˎˊ˗

OS/Windows

[Windows] pscp 사용법(윈도우에서 리눅스로 파일 전송)

토오쓰 2020. 5. 18. 21:51

 

 

윈도우에서 리눅스로 파일을 업로드하거나 다운로드 하는 방법

= FTP 구축되어있지 않아도 가능

"PSCP"

 

1. Putty 설치

https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html

 

Download PuTTY: latest release (0.73)

This page contains download links for the latest released version of PuTTY. Currently this is 0.73, released on 2019-09-29. When new releases come out, this page will update to contain the latest, so this is a good page to bookmark or link to. Alternativel

www.chiark.greenend.org.uk

 

 

2. PSCP가 잘 설치되었는지 확인

명령어: pscp /?

 

 

3. 윈도우 -> 리눅스 파일 전송

명령어: pscp c:\tmp\* root@192.168.0.1:/tmp

=> c:\tmp 아래에 있는 모든 파일을 리눅스 서버의 /tmp 디렉토리로 업로드 시키는 과정

=> 비밀번호 입력하는 부분에서 입력하면 전송 완료

 

 

4. 리눅스 -> 윈도우 파일 전송

명령어 pscp root@192.168.0.1:/tmp c:\tmp

=> 리눅스의 /tmp 디렉토리에 있는 파일을 c:\tmp 폴더에 다운로드 하는 과정