This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## login to eddie, need to be in the university VPN. The password should be your ease password | |
| ssh your_uun@eddie.ecdf.ed.ac.uk | |
| ## Go to an interactive node with a GPU | |
| ## From the login node, it's good to run screen so that if you lose the connection you can rejoin | |
| screen | |
| ## To reattach your session if you get bumped of you'll need to get to the same login node that you started from | |
| ## to get to login1 you neeed to do: ssh login01-ext.ecdf.ed.ac.uk |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Install docker | |
| apt-get update | |
| apt-get install -y cloud-utils apt-transport-https ca-certificates curl software-properties-common | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
| add-apt-repository \ | |
| "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ | |
| $(lsb_release -cs) \ | |
| stable" | |
| apt-get update |