.. EOF
SSH to UNSW CSE Server Without Password
It’s so painful to input password every time login to cse server, so this article will show u how to ssh cse server without password.
The CSE login servers doc: http://taggi.cse.unsw.edu.au/FAQ/Accessing_CSE_login_servers/
##My solution:
- Step1: generate your ssh public key in your own laptop, my favorite tutotial about this step:
https://confluence.atlassian.com/bitbucket/set-up-ssh-for-git-728138079.html - Step2: put the public key into
~/.ssh/authorized_keys
in the remote server. - Step3: Done!!!
##Another tips:
- Use sshfs to mount the whole disk to ur own maschine
mkdir /tmp/ssh
alias zsshfs='sshfs z5082423@login.cse.unsw.edu.au:/import/adams/2/z5082423 /tmp/ssh'