How to remotely login to CSE basement servers through VSCode.
- Go to the UCSD course account lookup tool
- Enter your username and PID
- Select your course account, this should be the one that starts with a cse15lwi23
- Select the change your password option
- Enter your new password and finish resetting your password.
-
Go to VSCode download page
-
Select the right download option for your computer to download the installation file
-
Click on the exe file and follow all installation instructions.
-
Open VsCode and select "Run Terminal" in the Terminal menu of the top toolbar.
- Go to git downlad
- Select the right download option for your computer
- Click on the executable and follow all installation instructions.
- In your terminal enter
$ ssh <course_account_name>@ieng6.ucsd.edu
If you've never logged in before, you should see something like-> ssh [email protected] The authenticity of host 'ieng6.ucsd.edu (128.54.70.227)' can't be established. RSA key fingerprint is SHA256:ksruYwhnYH+sySHnHAtLUHngrPEyZTDl/1x99wUQcec. Are you sure you want to continue connecting (yes/no/[fingerprint])?
- Enter yes, then your password. Note that your password will not be visible as you're typing it.
- If you see
Congrats, you've successfully logged in to the server.
# Now on remote server Last login: Sun Jan 2 14:03:05 2022 from 107-217-10-235.lightspeed.sndgca.sbcglobal.net quota: No filesystem specified. Hello cs15lwi23zz, you are currently logged into ieng6-203.ucsd.edu You are using 0% CPU on this system Cluster Status Hostname Time #Users Load Averages ieng6-201 23:25:01 0 0.08, 0.17, 0.11 ieng6-202 23:25:01 1 0.09, 0.15, 0.11 ieng6-203 23:25:01 1 0.08, 0.15, 0.11 Sun Jan 02, 2022 11:28pm - Prepping cs15lwi23
Now you can try to run some of these commands:
ls
- shows the files in the current working directory
cd <directory>
- changes the working directory
cat <filepath>
- prints the text of a file
mkdir <directories>
- makes a directory
cp
- copies a file to another file or directory