Open MichaelLangbein opened 1 year ago
I try to describe the way that I got access to the VM:
Login at https://tum.eduvpn.lrz.de/ with the username from the mail & the password that you set
Create and download a openvpn config file
It could look like this:
#!/bin/bash
# Connect to the TUM eduvpn
# For more details see: https://doku.lrz.de/pages/viewpage.action?pageId=87425299
sudo openvpn --verb 3 --config ${PATH_TO_CONFIG_FILE}
(with the path to the file that you downloaded right now).
Run the script
Try to access the VM
root
and the password that hugo shared by mailssh root@138.246.225.182
adduser fancynewuser
adduser fancynewuser docker
adduser fancynewuser sudo
# on the VM
su fancyuser
cd ~
mkdir .ssh
# on your local computer
scp ~/.ssh/id_rsa.pub fancyuser@138.246.225.182:/home/fancyuser/.ssh/authorized_keys
Further documentation:
An alternative way to access (but you still need a VPN for this):
Works great for me! Thanks a lot @nbrinckm and @HugoRosero !