Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Login to Spinup. From the homepage, click on your (name / netid) on the navigation bar on the top of the page. This will bring you to your user profile settings.

  2. From the ‘User Settings’ tab on the left-side of the page, select the ‘Manage SSH keys' tab.

  3. Generate an SSH Key. (If you have already generated an SSH before, you can just copy it and move onto the next step):

Expand
titleGenerate an SSH Key on Linux / MacOS
  1. Open a terminal.

  2. In the terminal, run the command:

Code Block
languagebash
ssh-keygen -t rsa
  1. Follow through the steps provided in the terminal.

  2. Once finished, copy your public key to your clipboard via the following command:

Code Block
languagebash
cat ~/.ssh/id_rsa.pub

...