Innerhalb
Nach weiteren Dokumenten suchen
Support-Ressourcen
| Dieses Buch im PDF-Format herunterladen (2441 KB)
How to Copy Files With Solaris Secure Shell
Use the scp command to copy encrypted files between hosts. You can copy encrypted files between either a local and remote host, or between two remote hosts. The command operates similarly to the rcp command except that the scp command
prompts for passwords. See scp(1) for more information.
-
Start the secure copy program.
Specify the source file, user name at remote destination, and destination directory.
myLocalHost% scp myfile.1 johndoe@myRemoteHost:~
|
-
Type the Solaris Secure Shell passphrase when prompted.
Enter passphrase for key '/home/johndoe/.ssh/id_rsa': <Return>
myfile.1 25% |******* | 640 KB 0:20 ETA
myfile.1
|
After you type the passphrase, the progress meter is displayed. See the second line in the preceding output. The progress meter displays:
-
The file name
-
The percentage of the file that has been transferred at this point
-
A series of asterisks that are analogous to the percentage transferred
-
The quantity of data transferred
-
The estimated time of arrival, or ETA, of the complete file (that is, the remaining amount of time)
|