This wiki will show you how to set up SSH keys and configure custom connection options for accessing uchicago tarbell. After successful configuration, you can login your tarbell much more simply by running the following command: ssh tarbell

  1. Create the RSA key pair:
  • Open terminal
  • ssh-keygen -t rsa
  • Press enter when you are prompted to Enter a file in which to sae the key
  • Type a passport when you are prompted to Enter passphrase (empty for no passphrase):
  • Type the same passport when you are prompted to Enter same passphrase again:
  1. Append your public key to the server:
  • Append your public key to the server using SSH (replace jiamaoz@tarbell.cri.uchicago.edu with your own one):
    • cat ~/.ssh/id_rsa.pub | ssh jiamaoz@tarbell.cri.uchicago.edu "mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys"
  1. Create and configure the SSH config file:
  • touch ~/.ssh/config
  • chmod 600 ~/.ssh/config
  • emacs ~/.ssh/config
  • Enter the following into config file:
    Host tarbell
       HostName tarbell.cri.uchicago.edu
       User jiamaoz
  1. Login your uchicago tarbell:
    • ssh tarbell

Reference:

Reuse

Text and figures are licensed under Creative Commons Attribution CC BY 4.0. The source code is licensed under MIT.

Suggest changes

If you find any mistakes (including typos) or want to suggest changes, please feel free to edit the source file of this page on Github and create a pull request.