| Department of Planetary Sciences Lunar and Planetary Laboratory | |
LPL Central Computing Systems (LCS) |
How do I download and install SSH on my Windows Machine?
To set up SSH on a Windows machine, perform the following steps.
How do I upgrade SSH on my Windows PC?
To upgrade SSH on a Windows PC, perform the following steps.
How do I install and use secure FTP?
There is a secure equivalent of ftp on UNIX, Linux, MacOS, and Windows.
On Windows, click the yellow Secure File Transfer icon on your desktop, which
appeared after you downloaded and installed Secure Shell.
On UNIX, the secure commnd-line equivalent of ftp is called sftp.
On Mac PCs, use command-line sftp or download and install Fugu.
On Linux, command-line sftp should already be installed and in your default path.
Using Secure Shell File Transfer, how do I see more than just the files under my home directory on the remote machine?
On your local machine (Windows), across the top of the Secure Shell File Transfer window, there is a row of menu items that says "File Edit View Operation".
Click the "View" item. This will cause a drop-down menu to appear.
In that menu, click the box to the left of "Show Root Directory" or "View Root Directory/Files".
This will cause the tree view of the remote file system (on the left side of the window) to change, giving you a view of all of the remote machine's files, starting with "/" (the root directory) at the top of the tree.
Now you can navigate to any readable directory on the remote machine.
After Windows->UNIX SSH File Transfer, how do I remove the extra carriage returns from my file?
Use dos2unix to convert each transferred text file from DOS format to ISO format. For example, to remove the extra carriage returns from original_file, yielding converted_file:
% dos2unix original_file converted_file
In the past, when you used ftp to transfer files, you didn't have to do this conversion, because ftp did it for you. Secure ftp (sftp) does binary-binary transfers only (in the interest of security), so you must perform the conversion.