Accessing your Math department network space: Difference between revisions

From UW-Math Wiki
Jump to navigation Jump to search
Line 20: Line 20:


=== Windows ===
=== Windows ===
Windows does not provide a way to access other computers via ssh. You can use an ssh program like SecureCRT or [[http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html | putty]]. DoIT provides a free [[http://techstore.doit.wisc.edu/product.asp?login=P&itemnum=SV10215 | SecureCRT download]].
Windows itself does not provide a way to access other computers via ssh. You can download and install an ssh program like SecureCRT or [[http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html | putty]]. DoIT provides a free [[http://techstore.doit.wisc.edu/product.asp?login=P&itemnum=SV10215 | SecureCRT download]]. These programs allow you to copy files back and forth from your home computer  to your Math Department file space via the scp program. They do not provide an sshfs program that would allow you to make a Windows share to your Math Department network file space.


At the time of this writing, there was no free Windows program to allow you to connect your Windows computer to our network file system as a Windows share. The computer staff at the UW Math Department recommends a commercial product called [[http://www.expandrive.com/windows | ExpandDrive]]. This product allows you to map a network share to any computer running ssh.
At the time of this writing, there was no free Windows program to allow you to connect your Windows computer to our network file system as a Windows share.  You cannot connect your Windows computer to our network via the usual Windows network drive mapping protocol because this access is blocked by the campus firewall. The computer staff at the UW Math Department recommends a commercial product called [[http://www.expandrive.com/windows | ExpandDrive]]. This product allows you to map a network share to any computer running an ssh service.
=== Macintosh ===
As mentioned above for Windows users, the campus firewall blocks access to Math Department computers via the smb protocol. However, you can use ssh and scp to copy files back and forth between your home computer and your Math Department network file space. To do this, open a Terminal window and type something similar to the following: <code><nowiki>scp fmydocument.doc username@login.math.wisc.edu:~/</nowiki></code>. This would copy the file mydocument.doc to your home directory on the network file server. For complete instructions on using the scp command, type 'man scp' in a Terminal window.

Revision as of 21:00, 16 September 2010

Members of the University of Wisconsin-Madison Department of Mathematics are allocated a certain amount of space on a shared network file system. This space can be accessed by simply logging into any departmental machine. Your network space appears as your home directory when you log into a linux computer or as the X: drive when you log into a Windows machine. Users sometimes need to access this space from their own laptop or home computers. This document explains some of the methods by which that can be done.

Linux

The easiest way to access your network disk space from a linux computer is to use sshfs. Sshfs packages are avaiable in all of the major flavors of linux. In debian or ubuntu linux, you can install sshfs by simply opening a terminal window and typing, "sudo apt-get install sshfs".

Once sshfs is installed, you may wish to add your user name to the fuse group. This will allow you to mount sshfs file systems as a regular user. For example, if you usually log into your linux computer as user johnsmith, you would add yourself to the fuse group by opening a terminal window and typeing, "sudo adduser johnsmith fuse".

To mount an sshfs file system, open a terminal window and type something like: mkdir ~/mathfs sshfs username@login.math.wisc.edu:/path_to_your_home_directory/ ~/mathfs

This will mount your Math department network space on the /mathfs directory in your home directory. Replace 'username' in the above example with your Math department user name. Also, replace 'path_to_your_home_directory' with the path to your home directory. For faculty, this is /fac/username. For graduate students, this is /grad/username. For staff, this is /staff/username. For visitors, it is /visitor/username.  

Hint: You can make it possible to connect to your Math Department network file space by typing just a few characters. To do this:

  1. Create an alias for the sshfs command you use to mount your network space. Edit your shell startup script, either .cshrc for csh and tsh users or .bash_profile for bash users. If you use csh, you would add a line similar to the following: alias mathfs 'sshfs jsmith@login.math.wisc.edu:/grad/jsmith mathfs"</code>. For bash users, add a line similar to the following: alias mathfs='sshfs jsmith@login.math.wisc.edu:/grad/jsmith mathfs'. Use your own Math department login name and home directory, of course.
  2. Generate a ssh key to connect without a password.

At this point, just typing 'mathfs' in a terminal window will mount your Math Department file space on the mathfs directory.

Windows

Windows itself does not provide a way to access other computers via ssh. You can download and install an ssh program like SecureCRT or [| putty]. DoIT provides a free [| SecureCRT download]. These programs allow you to copy files back and forth from your home computer to your Math Department file space via the scp program. They do not provide an sshfs program that would allow you to make a Windows share to your Math Department network file space.

At the time of this writing, there was no free Windows program to allow you to connect your Windows computer to our network file system as a Windows share. You cannot connect your Windows computer to our network via the usual Windows network drive mapping protocol because this access is blocked by the campus firewall. The computer staff at the UW Math Department recommends a commercial product called [| ExpandDrive]. This product allows you to map a network share to any computer running an ssh service.

Macintosh

As mentioned above for Windows users, the campus firewall blocks access to Math Department computers via the smb protocol. However, you can use ssh and scp to copy files back and forth between your home computer and your Math Department network file space. To do this, open a Terminal window and type something similar to the following: scp fmydocument.doc username@login.math.wisc.edu:~/. This would copy the file mydocument.doc to your home directory on the network file server. For complete instructions on using the scp command, type 'man scp' in a Terminal window.