Sections
In this section
Computational Science and Engineering

174 Geology/Physics
UC Davis
One Shields Avenue
Davis, CA 95616

(530) 752-6298 phone
(530) 752-8894 fax

 
Computational Science and Engineering > Help > FAQs > How do I give CSE IT admins superuser access to my workstation?
Personal tools

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