...
Create Key
Code Block | ||||
---|---|---|---|---|
| ||||
ssh-keygen -t ed25519 |
Make sure to create a secure passphrase when generating your key
Copy Key to Server
Code Block | ||||
---|---|---|---|---|
| ||||
# 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 | ||||
---|---|---|---|---|
| ||||
mkdir ~/.ssh |
Copy the new public key file (id_ed25519.pub) from your computer to the new .ssh folder on the iSchool server
...