home *** CD-ROM | disk | FTP | other *** search
/ ftp.parl.clemson.edu / 2015-02-07.ftp.parl.clemson.edu.tar / ftp.parl.clemson.edu / pub / ssh / win / PSCP_AND_PUTTY_TUTORIAL next >
Text File  |  2001-03-01  |  3KB  |  87 lines

  1.  
  2. Pscp and Putty for Windows tutorial
  3. -----------------------------------
  4. Feb, 2001 
  5. Parallel Architecture Research Lab
  6.  
  7.  
  8. The following is a brief tutorial on how to both install and use the
  9. pscp and putty Windows programs.  Putty is an ssh client, which allows
  10. you to log onto remote machines in a manner similar to telnet.  Pscp is
  11. an scp client, which allows you to copy files to and from remote
  12. machines.  Both of these offer a bit of an improvement in security over
  13. traditional login methods and are therefore prefered method of accessing
  14. workstations in the PARL lab.
  15.  
  16.  
  17. 1) Downloading and installing
  18. -------------------------------------------------------------------------
  19.  
  20. In order to use putty and pscp, you must first download them onto your
  21. computer.  Use your favorite ftp client or web browser to go to
  22. the ftp://ftp.parl.clemson.edu/pub/ssh/win/ directory.  If prompted for
  23. a password, enter the word "anonymous" and use your email address as a
  24. password.  Here you will find two files, 'pscp.exe' and 'putty.exe'.  
  25. Copy both of them into the c:\windows directory on your Windows
  26. computer.  That's all you have to do.  Both programs are now installed
  27. and can be launched from any command prompt.  (Note: the command prompt
  28. program can be found on most Windows machines by selecting "Start
  29. Menu -> Programs -> MSDOS prompt"
  30.  
  31.  
  32.  
  33. 2) Using pscp to copy a file to Windows
  34. -------------------------------------------------------------------------
  35.  
  36. If you want to copy a file from PARL into the current directory on your 
  37. Windows machine, the syntax is as follows:
  38.  
  39. pscp <username>@<name of workstation>:<dir of file>/<filename> .
  40.  
  41. For example, if I wanted to copy a file called test.txt from my home
  42. directory:
  43.  
  44. pscp fred@styx.parl.clemson.edu:/parl/fred/test.txt .
  45.  
  46. If I wanted to copy all of the files from that directory:
  47.  
  48. pscp "fred@styx.parl.clemson.edu:/parl/userid/*" .
  49.  
  50. pscp will always prompt you for a password.  
  51.  
  52.  
  53.  
  54. 3) Using pscp to copy a file from Windows to PARL
  55. ------------------------------------------------------------------------
  56.  
  57. If you want to copy a file from your windows machine to a PARL machine,
  58. you can use the following syntax:
  59.  
  60. pscp <filename> <username>@<hostname>:<dir to put in>
  61.  
  62. For example, if I wanted to copy the same file back into a directory on
  63. my PARL account:
  64.  
  65. pscp test.txt fred@styx.parl.clemson.edu:/parl/userid/newdir/
  66.  
  67. pscp will always prompt you for a password.  
  68.  
  69.  
  70.  
  71. 4) Using putty to log in
  72. -------------------------------------------------------------------------
  73.  
  74. Putty can be started by opening a command prompt and typing putty.  You
  75. can even make a shortcut to your desktop if you would like to.  Once you
  76. have started putty, it will prompt you with a dialog box.  Simply type
  77. the name of the machine you wish to login to in the hostname box, and
  78. select the "ssh" button just below it.  When you click "Open" it will
  79. start a terminal window and prompt you for a username and password.
  80.  
  81. --------------------------------------------------------------------------
  82.  
  83. Please contact a PARL system administrator if you have any questions.
  84. Thank you!
  85.  
  86.  
  87.