cse15l-lab-reports

Lab Report 1

This tutorial will make sure that you’re competent in executing the following tasks:

  1. Installing VSCode
  2. Remotely Connecting using SSH
  3. Running Commands in the Remote Server

If on Windows, make sure to install GitBash since this will be the primary language used in the terminal.


Installing VS Code

  1. Head to the link here to download and install the latest version of VSCode on your laptop. Make sure it’s the right operating system.
  2. Once installed, locate VScode in your file explorer (Windows) or Finder (MacOS) and open it. You should see the following after opening vscode:

Remotely Connecting

$ ssh cs15lwi23ABC@ieng6.ucsd.edu

$ ssh cs15lwi23ABC@ieng6.ucsd.edu
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])? 

Running Commands in the Remote Server

  1. While connected to the remote server, try running some basic bash commands like cd, pwd, ls, mkdir, cat, echo, cp, etc....
  2. To exit the server, just type exit in the terminal, and you should return to your local server.
  3. Take a look at the following image which shows a few commands that I ran: