Last active
April 15, 2018 23:59
-
-
Save thejevans/90ccc524036d50ac2eecf548ad654217 to your computer and use it in GitHub Desktop.
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
I set everything up in a stable way on my home system, finally. This has gpu support. | |
you have a home directory that is fast, but doesn't have much space: | |
~/ | |
you have a data directory that is a bit slower, but has tons of space: | |
/data/users/<username> | |
your jupyter directory is: | |
/data/users/<username>/notebooks | |
your username is: | |
<first name>_<last name> | |
your password is: | |
password | |
Step 1: | |
ssh -p 8080 <username>@thejevans.com | |
Step 2: (in ssh terminal) | |
passwd (to change password) | |
Step 3: (in ssh terminal) | |
sudo sh launch_jupyter.sh (to launch jupyter, this will return your jupyter port) | |
exit | |
Step 4: | |
ssh -p 8080 -L 8888:localhost:<jupyter port> <username>@thejevans.com | |
Step 5: | |
open in a web browser: | |
localhost:8888 | |
Step 6: (in ssh terminal, when done) | |
exit | |
you should only have to repeat steps 4-6, but if I restart the computer, you will have to do step 3 as well. happy coding |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment