Part of Start Here
Overview
Install WinSCP
Connection settings
Install WinSCP and connect using your UTCS credentials.
- File Protocol: SFTP
- Host name:
life.cs.utexas.edu - Port number:
22
- User name:
<yourUTCSusername> - Password:
<yourUTCSpassword> - Other hosts: Public UNIX hosts
You can now upload or download files to and from your UTCS account.
Open a Remote Terminal
Using PuTTY through WinSCP
To work remotely on UTCS machines from Windows, install or configure PuTTY integration. In WinSCP, choose Commands > Open in PuTTY.
Enter your CS password when prompted. You should then receive a Linux prompt similar to:
Using username "yourUTCSusername". Welcome to Ubuntu ... life$
At this point, you can work on UTCS machines from your local computer and use Unix/Linux commands.
Windows Line Endings
Warning:
Transferring files from Windows to UTCS machines may cause execution issues because Windows uses
\r\n line endings while UNIX uses \n.To fix a transferred Python file on UTCS, run:
dos2unix file.py
Alternatively, use GitLab to push from Windows and pull on UTCS; Git may handle line endings automatically depending on configuration.