Versions Compared

Key

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

...

Create Key

Code Block
languagebash
themeEmacs
ssh-keygen -t ed25519

Make sure to create a secure passphrase when generating your key

Copy Key to Server

Code Block
languagebashthemeEmacs
# assumes you accepted the default file name of "id_ed25519"
ssh-copy-id -i .ssh/id_ed25519.pub eid@server.ischool.utexas.edu  # replace with your EID and the particular server's name

...

Login to iSchool server with your EID and password.  Run the following command:

Code Block
languagebashthemeEmacs
mkdir ~/.ssh

Copy the new public key file (id_ed25519.pub) from your computer to the new .ssh folder on the iSchool server

...