Suite Putty mencakup dua program untuk menyalin file Anda dengan aman antar mesin. PSCP adalah program noninteraktif seperti scp, dan PSFTP adalah program interaktif yang terinspirasi oleh ftp. Anda dapat menggunakan pscp (salinan aman) dan psftp (FTP aman) di Prompt Perintah Windows XP. Untuk menyalin file dengan pscp, gunakan:
pscp username @ host:path"
Misalnya:
pscp file.txt [email protected]:MyDocuments/.
Saya bermain-main dengan pscp dan menemukan kesalahan:
ssh_init: Network error: Cannot assign requested address
1. Sepertinya pscp menggunakan port 0 secara default dan menyebutkan port yang diizinkan untuk menyalin file.
C:\temp>pscp myfie.txt [email protected]:/home/test/ ssh_init: Network error: Cannot assign requested address
2. Jadi saya mencoba memberikan nomor port pada baris perintah dengan opsi “-P”:
C:\temp>pscp -P 22 myfie.txt [email protected]:/home/test/ The server's host key is not cached in the registry. You have no guarantee that the server is the computer you think it is. The server's ssh-ed25519 key fingerprint is: ssh-ed25519 255 45:35:11:23:5d:10:e2:e3:60:6a:c9:06:bb:74:ad:34 If you trust this host, enter "y" to add the key to PuTTY's cache and carry on connecting. If you want to carry on connecting just once, without adding the key to the cache, enter "n". If you do not trust this host, press Return to abandon the connection. Store key in cache? (y/n) yes [email protected]'s password: myfie.txt | 0 kB | 0.0 kB/s | ETA: 00:00:00 | 100% C:\temp>
Itu berhasil.
Kesimpulan
Jika Anda akan menyalin file dari Linux "turun" ke sistem Windows Anda, Anda memerlukan program yang akan berjalan di Windows. Pencipta Putty membuat PSCP.EXE tepat untuk tujuan itu:untuk mengimplementasikan scp untuk Windows.