Disk Quota Issues
How do I clear up space on my account/home directory?
Run:
$ fquota
and type yes at the prompts to remove commonly useless files such as core files and cache files. It will then also list the ten largest folders and files in
your account.
Burning CD's
How can I burn a CD?
$ cdrecord -dev /dev/cdrom [
filename
]
Where [filename] is the name of the image file, usually an ISO, that is to be burned. For more advanced options when burning a CD, refer to the man page for cdrecord.
Go to any computer with a CD/DVD burner drive, and execute the following command (assuming you have a blank and writable CD inserted):
$ mkisofs -r -J -o /tmp/[
image name
] [directories/file names]
$ cdrecord -dev /dev/cdrom /tmp/[image]
Where [image filename] is the desired name of the image file, and [input directories/file names] are the names of the directories and/or files that you wish to burn.
Make sure your CD has enough space to store your home directory; you may need to use a DVD instead.
Go to any computer with a CD/DVD burner drive, and execute the following command (assuming you have a blank and writable CD inserted):
$ mkisofs -r -J -o /tmp/`whoami`_
cdimage /home/`whoami`
&& cdrecord -dev /dev/cdrom /tmp/`whoami`_cdimage && rm -f /tmp/`whoami`_cdimage
Other Options
You can also use the programs K3b or Brasero to burn disks using a graphical interface. However, we do not have detailed steps on how to do so.
File Recovery
Are the files in my home directory backed up?
During specific intervals of time, the CSIF automatically takes a snapshot of the files in your home directory, and backs them up accordingly. To preserve space, the CSIF only creates new backups of files that have been changed/modified after the previous snapshot. Otherwise, the backups from the previous snapshot will be used for the new snapshot.
How often are files in my home directory backed up and how long are they kept?
We have multiple time intervals set up:
Interval | When | Keep Time |
Hourly | Start of every hour |
96 hours |
Nightly | At midnight |
27 nights |
Weekly | Sunday at midnight |
11 weeks |
Where are my files backed up?
Inside the .snapshot directory are many different folders, corresponding to the different intervals of backups that have occured.
Interval | Folder name |
Hourly | hourly.[0-96] |
Nightly | nightly.[0-27] |
Weekly | weekly.[0-11] |
The backups are stored in descending order, meaning the .0 suffix refers to the most recent backup, and subsequent numbers refers to a later backup. Thus, hourly.0 will refer to a backup done on the start of the last hour, while a weekly.9 will refer to a backup done 8 Sundays before the most recent Sunday.
How can I recover my files?
Execute the following command on any CSIF computer to access the backup directory:
$ cd /home/.snapshot/[
folder name
]/`whoami`/
Where [folder name] follows the syntax given in the table above.
Inside, the folder, you will find an exact backup of your home directory made at the time you specified. You cannot write into the backups, so to recover the desired files, you must navigate to the location of the file you wish to recover, and then execute one of the commands below. You can read the files, so you will be able to look into a file and see if you want to recover an earlier or later version of the file; should you wish to recover an earlier or later version, you will have to start from the beginning of this process.
If you wish to copy a specific file or multiple specific files in a specific folder, then navigate to the specific folder and execute the following command:
$ cp [
filename
1
] [
filename 2
] [...
]
~/
Where [filename 1] [filename 2] and [...] are the filenames of the files you wish to recover.
If you wish to copy everything in a folder, then navigate to the specific folder and execute the following command:
$ cp *
~/
If you wish to copy an entire folder, including any sub-folders, then navigate to the specific folder and execute the following command:
$ cp `pwd` ~/
Afterwards, you will find your file(s) in your home directory (~/).
Firefox
When I try to open Firefox, it tells me it is already open on another computer, but I'm not logged in anywhere else.
The easiest solution is to remove the Firefox profile at the expense of losing your history, saved settings, add-ons, etc. You may not have to lose your bookmarks, but sometimes, those will get corrupted as well.
$ ls ~/.mozilla/firefox
$ rm ~/.mozilla/firefox/xxxxxxxx.default/.parentlock
How can I set my default spell check dictionary region?
To change your spell check dictionary, right click on any text field two lines or larger and select "Check Spelling" if it is not already enabled. Below "Check Spelling" is an option for selecting your spell check dictionary region, titled "Languages". You can confirm your selection by searching the about:config page for spellchecker.dictionary and checking the value (i.e. English (United States) has a spellchecker.dictionary value of en_US).
$ cp ~/.mozilla/firefox/*.default/places.sqlite /tmp && rm -rf ~/.mozilla/firefox/
*Open Firefox
If Firefox does not open, then contact CSIF Support; otherwise, close Firefox and execute the command below:
$ mv -f /tmp/places.sqlite ~/.mozilla/firefox/*.default/ && rm -f places.sqlite
Open Firefox again to ensure it still works
If Firefox works, then you are done. Otherwise, execute the command below:
$ rm -f ~/.mozilla/firefox/*.default/places.sqlite
Jupyter-lab
https://docs.google.com/document/d/1mmLjzxTYfzBygLuSpuOll94_2gY-oPxEjxpKaoLo4Ao/edit#heading=h.wna1bitotts4
Mounting/Unmounting
Can I use the mount command to mount various devices?
How can I mount various devices if I don't have root permissions?
By using gvfs, which stands for Gnome Virtual File System. gvfs is also how the Nautilus file manager in GNOME is able to mount USBs, CDs, and such.
Can I run in gvfs in TTY or PTS/SSH?
How can I use gvfs to mount a USB drive?
$ gvfs-mount -d [device name][partition number]
Where [device name] is the unique device name that Linux gives to your USB drive and [partition number] is the partition number for your USB.
You can get the device name of your USB by running the following command:
$ gvfs-mount -li | grep "/dev/sd"
The devices are listed in order of when they were detected or plugged in. So if you plugged in one USB before running the command, you want to look at the last entry. If you plugged in two USB drives before running the command, then the first USB you plugged in will be the second to last entry, and the last entry corresponds to the second USB you plugged in. In any case, once you found the correct entry, the device name will be found between the single quotes and it will follow the pattern "/dev/sd[a-z]".
In most cases, the partition number is "1", so stick with that if you are unsure about your device. Only change the partition number if you are sure your USB device has multiple partitions and you wish to mount a particular partition.
Here is an example of the gvfs command being used to mount a USB drive
$ gvfs-mount -d /dev/sdb1
When using gvfs, where is my USB mounted?
/run/media/[username]/
Where [username] is your CSIF username.
In the specified directory, there will be one or more folders created by gvfs. Each folder corresponds to each USB drive that has been mounted. Look inside the contents of each folder to find the mount point of the desired USB.
Therefore, the mount point will be in the following directory:
/run/media/[username]/[folder name]/
How can I use gvfs to unmount a USB drive?
$ gvfs-mount -u [mount point]
Where [mount point] is the USB's mount point. Look at the previous question to find out the mount point of the USB.
$ /usr/libexec/gvfsd-archive file=file://`readlink -f [filename]`
Where [filename] is the name of the file. Note that only certain archive and virtual image formats are supported.
When using gvfs, where is my archive or virtual image mounted?
The mount point on certain Linux distributions including Fedora is given below:
/run/user/[username]/gvfs/[folder name]/
Where [username] is your CSIF username and [folder name] matches the filename of the archive or image being mounted.
For other Linux distributions, the locations for the mount points may be:
~
/.gvfs
~/.cache/gvfs
How can I use gvfs to unmount an archive or virtual image?
Note that this only works if you leave gvfsd-archive running in the foreground. If you suspended gvfsd-archive and resumed it in the background, or started the program in the background, then you will need to bring it back to the foreground and kill it or kill it using its PID.
You will not be able to.
For writing into archives, you must use an actual archive manager.
For ISOs, they are designed to be a read-only filesystem, so you would not be able to write to them even if you used the mount command.
For other virtual images sub as binary images, we are currently working on a fix.
Can I use gvfs to mount multiple devices at once?
Yes.
Printing
Can I print in CSIF?
Yes, execute the command below:
$ gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=[output filename].pdf [source 1].pdf [source 2].pdf [...]
Where [output filename] is the desired name of the merged PDF, and [source 1], [source 2], and [...] are the filenames of the PDFs you wish to merge.
Can I select which of the two printers to print from?
No; the CSIF splits print jobs between two printers based on queues established for both printers, and this is all done with an automated printing server.
How can I check my print quota?
How do I print double-sided?
For LibreOffice Writer (DOC files), go into the print window, and click in the "Properties" button in the middle of the "General" tab. A new window will pop up, and you will want to open the drop-down menu for "Duplex:" and select "Long Edge (Standard)" before clicking "OK" and printing the file.
For Document Viewer (PDF files), go into the print window, and click on the "Page Setup" tab. Then open the drop-down menu for "Two-sided:" and select "Long Edge (Standard)" before printing the file.
Note that although some applications have the duplex/two-sided option avaible, your print job may still end up being single-sided because of the differences in print format between the application and the printer. Thus, we do not guarantee that all the applications on the CSIF computers will support double-sided printing.
I have reached my print quota, but I need to extend it.
I printed something, but my document doesn't appear in either printers' output tray.
This may happen if you log off immediately after submitting a print job, or this may happen for other reasons.
Try printing again; note that your print quota only decreases when the printer physically prints out documents, so any sent job that has not been physically printed will not count towards your quota.
However, beware not to flood the printing server with print jobs. Since there is a queue for the two printers, your document may be slow to come out. If you've sent multiple print jobs because you feel like things are going too slowly, then your document may potentially be added to the queue multiple times, which quickly decreases your quota.
If, after trying to print again, you run into the same problem, then please notify CSIF Support.
What do I do when the printers are out of ink/paper?
What do I do when the printers display an error message about being jammed?
What do I do when the printers display "Processing job" for over 1 minute, but nothing is printing out?
Remote Computing
Can I remotely login to the CSIF computers?
In fact, remote login is highly recommended for those who wish to work in the comfort of somewhere else regardless of the time and/or day.
There are many ways of remotely logging into the CSIF computers, but only a few are described below.
How can I remotely login to the CSIF computers from home?
Please go to this link for more information:
https://docs.google.com/document/d/1Zu6FPeiJv2erSm4ldKM1ncPcGL9lmq3KbHWOHzYsB-E/edit#
SSH, or Secure Shell, is Linux's most common way of remotely connecting to a computer in a secure and encrypted fashion, and it is the protocol that CSIF uses for people who wish to log in remotely.
Many popular Linux distributions (e.g. Ubuntu, Fedora, Mint, etc.) and Macintosh operating systems already have SSH protocol programs installed in the form of OpenSSH. However, some do not, but a simple Google search will reveal how to install an SSH protocol program on your Linux distribution.
For Arch Linux, the command is:
# pacman -S openssh
For Minix, the command is:
# pkgin install openssh
Unfortunately, Windows does not support the SSH protocol, so you must download PuTTY, a free Telnet/SSH client for Windows. Just click the "Download" link at the top of the page, and click "putty.exe" under the "For Windows on Intel x86" section. Save the file in a place that you can access later on.
To remotely login to the CSIF computers using a local Linux or Macintosh operating system, type the following command:
# ssh [
username
]@[
hostname
].cs.ucdavis.edu
Where username is the username you would use when logging into the CSIF computers locally, and hostname refers to the unique name given to every CSIF computer. A list of CSIF computers and their current status are found here. When typing in the hostname, remember to include the "pc" portion of it.
Afterwards, you will be prompted for your password, which is the same password you would use to log into the CSIF computers locally. You will notice that when you type, nothing appears on your screen. This is deliberately set up for secuirty reasons. While nothing is shown on the screen, all keyboard strokes will still be monitored, including keys like Backspace.
Refer below for more information about SSH, and common error messages.
To remotely login to the CSIF computers using a local Windows system, launch the PuTTY program you downloaded previously.
In the "Host Name (or IP address)" box, type in [hostname].cs.ucdavis.edu where hostname refers to the unique name given to every CSIF computer. A list of CSIF computers sorted by their hostnames are found here. When typing in the hostname, remember to include the "pc" portion of it. Although you may wish to change the other settings found in that window and on the different navigation tabs, you do not need to change anything else in order to login remotely to the CSIF computers.
Afterwards, click the "Open" button. If you have never connected to the unique CSIF computer using PuTTY on your current local computer, then a security alert window will pop up. Most users will wish to click the "Yes" button. Then another window will pop up requesting your password. Type in the same password you would use to log into the CSIF computers locally. You will notice that when you type, nothing appears on your screen. This is deliberately set up for secuirty reasons. While nothing is shown on the screen, all keyboard strokes will still be monitored, including keys like Backspace.
Refer below for more information about SSH through Windows, and common error messages with PuTTY.
An operating system independent way to accomplish this is to use a VNC, or Virtual Network Client. Please refer to the Using VNC documentation.
A popular way of doing this through the SSH protocols found on many popular Linux distributions and Macintosh operating systems is to enable X11 forwarding, which are protocols regarding the forwarding of GUIs from remote servers to local clients. See below.
How do I allow SSH to do X11 Forwarding (for forwarding GUI application windows)?
# ssh -X [
username
]@[
hostname
].cs.ucdavis.edu
Where username is the username you would use when logging into the CSIF computers locally, and hostname refers to the unique name given to every CSIF computer. A list of CSIF computers sorted by their hostnames are found here. When typing in the hostname, remember to include the "pc" portion of it.
Then simply type in the desired program, followed by a space and an ampersand character. For example:
#
firefox &
The ampersand at the end launches the desired program in the background, giving you control of the terminal if you need to use it for other purposes.
For Windows, you may use a program like Xming.
X11 forwarding, although very easy to use, should be enabled with caution. As quoted from the SSH manual page, "users with the ability to bypass file permissions on the remote host (e.g. CSIF computers) can access the local X11 display (e.g. your local computer) through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring." See your SSH documentation/manual page for more information. Although this should not happen with CSIF computers, it is still something to take note of.
How can I transfer files to/from my personal computer using a CSIF computer?
For Arch Linux, the command is:
# pacman -S openssh
For Minix, the command is:
# pkgin install openssh
scp is the easiest to use because it is based heavily on the Linux cp command for copying files. However, unlike cp, scp will overwrite files without warning.
To use scp to transfer one or more files from your computer to the CSIF computer, follow the outline of the command below:
# scp [
filename
1
] [
filename2
] [
filename3
] ... [
filenameN
] [
username
]@[
hostname
].cs.ucdavis.edu:[
folder
]
Where filenameX is the name of the file inside the current directory. If you wish to copy over a file in a different directory, make sure to include the correct file path before the filename. folder refers to the destination folder on the CSIF computers. In most cases, you'd want your destination folder to include the path "/home/[username]/" without quotes. As before, username is the username you would use when logging into the CSIF computers locally, and hostname refers to the unique name given to every CSIF computer. A list of CSIF computers sorted by their hostnames are found here. When typing in the hostname, remember to include the "pc" portion of it.
To use scp to transfer a file to your computer from the CSIF computer, follow the outline of the command below:
# scp [
username
]@[
hostname
].cs.ucdavis.edu:[
filename1
] [
filename2
] [
filename3
] ... [
filenameN
] [
folder
]
Where filenameX is the name of the file, including its path, on the CSIF computers. In most cases, the filename will include "/home/[username]/" without quotes at the beginning. folder refers to the destination folder on the local computer. As before, username is the username you would use when logging into the CSIF computers locally, and hostname refers to the unique name given to every CSIF computer. A list of CSIF computers sorted by their hostnames are found here. When typing in the hostname, remember to include the "pc" portion of it.
sftp is good for transferring multiple and/or large files because of its ability to resume interrupted downloads.
To use sftp, execute the following command:
# sftp [
hostname
].cs.ucdavis.edu
As before, hostname refers to the unique name given to every CSIF computer. A list of CSIF computers sorted by their hostnames are found here. When typing in the hostname, remember to include the "pc" portion of it.
Afterwards, you will be promted for your username and password, which are the same ones you would use to log into the CSIF computers locally.
Here is a helpful table of commands you could then execute in sftp:
Command |
Description |
Notes |
pwd | Displays the path for the current directory of the remote system | |
lpwd |
Displays the path for the current directory of the local system | |
ls |
Displays list of files in the current directory of the remote system | ls options like "-l", "-a", etc. will work as well |
lls |
Displays list of files in the current directory of the local system | ls options like "-l", "-a", etc. will work as well |
get filename | Gets the file frome the current directory of the remote system and places it in the current directory of the local system |
Use "-P" without quotes to retain original permissions and/or "-r" to recursively copy files/folders over |
put filename | Puts the file from the current directory of the local system in the current directory of the remote system | Use "-P" without quotes to retain original permissions and/or "-r" to recursively copy files/folders over |
mkdir foldername | Makes a folder with the specified name on the remote system |
|
lmkdir foldername |
Makes a folder with the specified name on the local system |
|
rm filename |
Removes the remote file in the current directory on the remote system |
|
rmdir filename |
Removes the specified folder in the current directory on the remote system |
|
mget filename1, filename2, ..., filenameN |
Gets multiple files frome the current directory of the remote system and places it in the current directory of the local system | Use "-P" without quotes to retain original permissions |
mput filename1, filename2, ..., filenameN | Puts multiple files from the current directory of the local system in the current directory of the remote system | Use "-P" without quotes to retain original permissions |
cd directory |
Change directories on the remote system |
|
lcd directory | Change directories on the local system |
|
exit |
Exits out of sftp/ftp |
|
On some Linux systems, it is also possible to use SFTP with a graphical interface. While there are too many distributions out there to cover specifically, we will cover some of them here.
For Linux systems running newer versions of GNOME that uses the Nautilus file manager (notably the newer versions of Fedora and Ubuntu), it is as simple as opening up the file manager, clicking on "File" in the menu bar, and clicking the "Connect to server..." button.
For the "Server:" field, type in [hostname].cs.ucdavis.edu where hostname refers to the unique name given to every CSIF computer. A list of CSIF computers sorted by their hostnames are found here. When typing in the hostname, remember to include the "pc" portion of it.
For the "Type:", click the drop-down menu and select SSH.
For the "Folder:" field, type in /home/[username], where username is the username you would use when logging into the CSIF computers locally.
For "User name:" and "Password:" respectively, type in the username and password you would use to login to the CSIF computers locally.
Afterwards, click the "Connect" button, and you may be prompted about the identity of the remote computer being unknown. You can click the "Log In Anyway" button, and you will be able to transfer files to and from the CSIF computers using a graphical interface.
For Linux systems running KDE that uses the Konqueror file manager, it is as simple as opening up the file manager, clicking on "File" in the menu bar, and clicking the "Open Location" button.
A new window will pop up, and you will need to enter in sftp://[username]@[hostname].cs.ucdavis.edu:/home/[username] where username is the username you would use when logging into the CSIF computers locally, and hostname refers to the unique name given to every CSIF computer. A list of CSIF computers sorted by their hostnames are found here. When typing in the hostname, remember to include the "pc" portion of it.
Then click the "OK" button and you will be prompted for a password, which is the password you would use to login to the CSIF computers locally.
Click the "OK" button, and you will now be able to transfer files to and from the CSIF computers using a graphical interface.
Note that the instructions above can be adapted to work on many other Linux distributions.
For Windows operating systems, you will need to install a SFTP client. There are many free programs out there with graphical interfaces such as WinSCP. Simply download and install the program of your choice.
When running WinSCP for the first time, you will be promted to enter in required information including "Host name:", "User name:", "Password:", and "Port number:".
For "Host name:", type in [hostname]@cs.ucdavis.edu where hostname refers to the unique name given to every CSIF computer. A list of CSIF computers sorted by their hostnames are found here. When typing in the hostname, remember to include the "pc" portion of it.
For "User name:" and "Password:", type in the username and password respectively you would use to login to the CSIF computers locally.
For "Port:", type in 22.
Under the Protocol subsection, youwill need to open the "File protocol:" dropdown menu and select SFTP because CSIF does not support FTP connections.
After clicking the "Login" button, you will be connected, and you will be able to transfer files to and from the CSIF computers using a graphical interface.
You do not need to change other settings for WinSCP to work, but you may refer to WinSCP's FAQ and WinSCP's documentation for more advanced configurations.
I transferred a text file from my home computer to the CSIF computers, but now there are symbols at the end of each line.
# dos2unix [
filename
]
Where filename is the name of the file inside the current directory. If you wish to convert a file in a different directory, make sure to include the correct file path before the filename.
Can I compile programs at home?
Many popular Linux distributions already come with C, C++, and Java compilers, but they can be easily installed if they are missing.
For Macintosh operating systems, you may have received a Developer Tools CD with your computer which you can install to provide compilers, IDEs, and such. Otherwise, go to Apple Developer's website to sign up for a free developer account as a UC Davis student to download the entire CD.
For Windows operating systems, Cygwin, a Linux emulator for Windows, includes a C and C++ compiler. If you wish to run an IDE instead, then visit Microsoft's Visual Studio website to download Visual C++ Express.
For all the operating systems mentioned above, you may also wish to visit Eclipse, or Netbeans to find IDEs for programming and compiling in multiple languages, but you may need to install some software beforehand (e.g. Java SDK).
An alternative to the options above are to run a Linux virtual machine. This can be done using virtualization software like VMware Player, which is documented here, or VirtualBox. However, this requires more work than the previous methods, and CSIF Support will only answer questions regarding this in person.
Lastly, you could partition your current system to have a number of operating systems installed, one of which could be a Linux system. However, this requires the most work out of all the methods above, so CSIF Support will only answer questions regarding this in person.
How do I set up SSH keys to allow me to login to the CSIF computers without a password?
# mkdir -p ~/.ssh/
&& cd ~/.ssh/
# ssh-keygen -t rsa -N "" -C
"`whoami`@pc*" -f "`whoami`@pc_to_`whoami`@pc"# cat
`whoami`@pc_to_`whoami`@pc.pub >> authorized_keys
Host pc*
IdentityFile ~/.ssh/[username]@pc_to_[username]@pc
# cd ~/.ssh
# scp [username]@pc1.cs.ucdavis.edu:/home/[username]/.ssh/{private key} .
# scp [username]@pc1.cs.ucdavis.edu:/home/[username]/.ssh/config .
Common error messages when using SSH to connect to CSIF computers
Warning: untrusted X11 forwarding setup failed: xauth key data not generated
Warning: No xauth data; using fake authentication data for X11 forwarding.
This warning occurs due to the differences between the local client & remote server SSH X11 forwarding setup, but X11 forwarding is still usable. This warning simply informs you that the X11 forwarding cannot be authenticated. Due to the vast diversity of local client computers that connect to the CSIF computers, it is impractical to set up X11 forwarding correctly so that everyone is using a trusted setup. Here are the possible solutions:
If you get this error every time you SSH into a computer even if you haven't run the SSH command with the "-X" option, then this means your SSH configuration is set to automatically enable X11 Forwarding. To disable the automation, execute the following command as root.
# sed -i 's/^ForwardX11/^/#/' /etc/ssh/ssh_config
To add the option back in at a later time, execute the following command as root.
# sed -i 's/^#ForwardX11/ForwardX11/' /etc/ssh/ssh_config
Note that you will still be able to do X11 forwarding, but you will have to explicitly tell SSH to forward X11 using the "-X" option. However, even if you use the "-X" option, the warning will still appear, so if you wish to suppress the warning, use the "-Y" flag instead, which looks like:
# ssh -Y [
username
]@[
hostname
].cs.ucdavis.edu
Where username is the username you would use when logging into the CSIF computers locally, and hostname refers to the unique name given to every CSIF computer. A list of CSIF computers sorted by their hostnames are found here. When typing in the hostname, remember to include the "pc" portion of it.
ssh: connect to host pc**[.cs.ucdavis.edu] port 22: No route to host
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that the RSA host key has just been changed.
The fingerprint for the RSA key sent by the remote host is
**:**:**:**:**:**:**:**:**:**:**:**:**:**:**:**.
Please contact your system administrator.
Add correct host key in /home/[username]/.ssh/known_hosts to get rid of this message.
Offending key in /home/[username]/.ssh/known_hosts:1
RSA host key for ras.mydomain.com has changed and you have requested strict checking.
Host key verification failed.
cd ~/
.ssh
sed -i /^pc\*/d known_hosts
When you SSH into the computer again, it will prompt you with the following message
The authenticity of host 'pc**[.cs.ucdavis.edu] (***.***.***.***)' can't be established.
RSA key fingerprint is **:**:**:**:**:**:**:**:**:**:**:**:**:**:**:**.
Are you sure you want to continue connecting (yes/no)?
Type "yes" without quotesand you will be able to connect. If you continue to receive this error after following the steps above, or you receive this error at a later time when trying to connect to any CSIF lab computer, then please contact us.
ssh: connect to host pc**[.cs.ucdavis.edu] port 22: Connection refused
- Exceed 5 attempts with an incorrect username
- Exceed 10 attempts with an incorrect password
Note that this is machine specific. Being blacklisted from one machine will not result in you being blacklisted on another machine. Therefore, you can still remotely connect to other CSIF computers.
Your IP has most likely been flagged by our network firewalls for malicious-like behavior. The flags are cleared every 2 days, but while your IP is flagged, you will be unable to connect to any CSIF computers. If you feel like your IP has been incorrectly flagged, then please contact us.
Common error messages when using PuTTY to connect to CSIF computers
Network error: No route to host
This happens because either the remote computer you are trying to connect to is non-existent, or it is off the network for some reason. Connect to another computer to resolve this.
Access Denied
This error is due to the differences in setup between the PuTTY client and the CSIF computers' SSH server. You can safely ignore this error.
Permission Denied
You will get this error if you have attempted too many incorrect login attempts on a CSIF computer. This happens if you...
- Exceed 5 attempts with an incorrect username
- Exceed 10 attempts with an incorrect password
You will also get this error if your IP has been flagged by our network firewalls for malicious-like behavior. The flags are cleared every 2 days, but while your IP is flagged, you will be unable to connect to any CSIF computers. If you feel like your IP has been incorrectly flagged, then please contact us.
Web Servers
Can I use Java, PHP, or another web based programming language on the web server that supports the CSIF? Can I run my own web server?
For security reasons, web based applications are not allowed in the CSIF, including running other services or servers than those provided. This does not include courses, where web based applications are needed, when requested by a course instructor.