Linux and HPC class information, course materials, assignments, announcements, and more.
Instructor:
TA:
9-12am Lecture +
Seminar
9-12am Lecture + Seminar
<aside>
⚠️ When things pop up, add them here. Just type /callout
and press enter
to add one of these handy callout boxes with an emoji and color of your choice. Example below.
</aside>
<aside> 🔑 ZHORES Connection https://www.notion.so/Zhores-Connection-24fef343664a429a8e445bcd10c32067
</aside>
<aside>
🚀 How to connect ZHORES with ssh and RSA key? How to setup access to remote server without password:
1)Go to your .ssh in home directory and find .ssh
$ cd ~/.ssh
2)Create config file with your settings
$ touch config
$ vim config host minizhores hostname sandbox.zhores.net port 2200 user *your_username*
3) Hence we have changed the "rights" for all files in .ssh $ chmod -R 700 ./*
$ ssh minizhores
#login with your password and session will start work in your dir at zhores
$ exit
5) Let's create RSA key for you
$ cd ~/.ssh
$ ssh-keygen -t rsa
In your directory we created 2 new files "id_rsa" and "id_rsa.pub"
In your in ~/.ssh at your config
file we should add new lines
$vim config host minizhores hostname sandbox.zhores.net port 2200 user *your_username* IdentityFile ~/.ssh/id_rsa
6)Add your "id_rsa.pub"(!!!) file to server (zhores) and add it to the end of .ssh/authorized_keys
$ssh minizhores
</aside>