Differences
This shows you the differences between two versions of the page.
| abstract:mills:system_access:windows [2018-05-17 11:09] – created sraskar | abstract:mills:system_access:windows [2018-05-24 10:55] (current) – anita | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== PuTTY command line mode ====== | ||
| + | First, install and configure the [[http:// | ||
| + | |||
| + | <note tip>IT strongly recommends that you configure your client as described in the online [[http:// | ||
| + | |||
| + | ===== Adding PuTTY to your PATH ===== | ||
| + | |||
| + | ==== Windows 7 ==== | ||
| + | - Click **Start** in the taskbar. | ||
| + | - Right-click on **Computer**, | ||
| + | - In the System window, click on **Advanced system settings** on the left. | ||
| + | - In the System Properties window, click on **Environment Variables...**. | ||
| + | - In the Environment Variables window, PATH should be highlighted, | ||
| + | - In the Edit User Variable window, click in the **Variable value:** box and move to the end using the right arrow. Type\\ **''; | ||
| + | - Click **OK** to save and exit the Edit User Variable window. | ||
| + | - Click **OK** to exit the Environment Variables window. | ||
| + | - Click **OK** to exit the System window. | ||
| + | |||
| + | ==== Windows XP ==== | ||
| + | - From the desktop, right-click on **My Computer**, select **Properties**. | ||
| + | - In the System Properties window, click on the **Advanced** tab. | ||
| + | - In the Advanced tab section, click on **Environment Variables** at the bottom. | ||
| + | - In the Environment Variables window under System variables, click on Path to highlight it, then click **Edit**. | ||
| + | - In the Edit System Variable window, click in the **Variable value:** box and move to the end using the right arrow. Type\\ **''; | ||
| + | - Click **OK** to save and exit the Edit System Variable window. | ||
| + | - Click **OK** to exit the Environment Variables window. | ||
| + | - Click **OK** to exit the System Properties window. | ||
| + | |||
| + | ===== Using command line PuTTY without a saved session ===== | ||
| + | |||
| + | ==== Copy from remote system to local system ==== | ||
| + | |||
| + | In a Windows ('' | ||
| + | |||
| + | < | ||
| + | pscp traine@mills.hpc.udel.edu:/ | ||
| + | </ | ||
| + | |||
| + | to copy a single file, '' | ||
| + | |||
| + | < | ||
| + | pscp -r traine@mills.hpc.udel.edu:/ | ||
| + | </ | ||
| + | |||
| + | to copy an entire directory, '' | ||
| + | |||
| + | ==== Copy from local system to remote system ==== | ||
| + | |||
| + | In a Windows ('' | ||
| + | |||
| + | < | ||
| + | pscp local-file traine@mills.hpc.udel.edu:/ | ||
| + | </ | ||
| + | |||
| + | to copy a single file, '' | ||
| + | |||
| + | < | ||
| + | pscp -r local-dir traine@mills.hpc.udel.edu:/ | ||
| + | </ | ||
| + | |||
| + | to copy an entire directory, '' | ||
| + | |||
| + | ===== Using command line PuTTY with a saved session ===== | ||
| + | |||
| + | ==== Copy from remote system to local system ==== | ||
| + | |||
| + | In a Windows ('' | ||
| + | |||
| + | < | ||
| + | pscp mills-traine:/ | ||
| + | </ | ||
| + | |||
| + | using '' | ||
| + | |||
| + | < | ||
| + | pscp -r mills-traine:/ | ||
| + | </ | ||
| + | |||
| + | using '' | ||
| + | |||
| + | ==== Copy from local system to remote system ==== | ||
| + | |||
| + | In a Windows ('' | ||
| + | |||
| + | < | ||
| + | pscp local-file mills-traine:/ | ||
| + | </ | ||
| + | |||
| + | using '' | ||
| + | |||
| + | < | ||
| + | pscp -r local-dir mills-traine:/ | ||
| + | </ | ||
| + | |||
| + | using '' | ||