Login to klif2.uu.nl
unlock with
sudo su
for i in {1..20}; do passwd -u mbbi$i; done
lock with
sudo su
for i in {1..20}; do passwd -l mbbi$i; done
At https://aschuerch.github.io/MBBI_ComputerPracticum/files/cheatsheet.pdf
Before starting the practicum, remove previous content at https://pad.carpentries.org/MBBI_ComputerPracticum after line 36
Share instructor screen with shellshare https://shellshare.net/
wget -qO shellshare https://get.shellshare.net
python shellshare -r workshop
Find out about the IP address of the learners’ computer by asking them to go to https://www.whatsmyip.org/
Login to klif2.uu.nl
Allow incoming connections from 192.168.0.1 (replace by users IP address)
iptables -A INPUT -s 192.168.0.1 -j ACCEPT
iptables -A OUTPUT -d 192.168.0.1 -j ACCEPT