How do I give CSE IT admins superuser access to my workstation?
Up to Table of Contents
How do I give CSE IT admins superuser access to my workstation?
Linux
If your workstation is linux then all you have to do is install our ssh public keys into root's home directory. To install our ssh keys run the following commands.
$ cd /tmp
$ wget http://mirror.cse.ucdavis.edu/cse/admin/authorized_keys
$ sudo mkdir -m 700 /root/.ssh
$ sudo cat /tmp/authorized_keys >> /root/.ssh/authorized_keys
$ sudo chmod 600 /root/.ssh/authorized_keys
$ rm /tmp/authorized_keys