Data Analysis
Data Acquisition
Human Connectome Project
Lab Admin
-
-
-
-
-
-
- Lab Handbook
Useful Resources
Data Analysis
Data Acquisition
Human Connectome Project
Lab Admin
Useful Resources
**This is an old revision of the document!** ----
Mounting all of our scratch space using NFS will allow us to access each other's files as if they are on the local machine, reducing redundancy and maximizing our storage. Also, this will make things much easier once the cluster is up and running. ====Install NFS Server==== To check if you've already installed the NFS server <code>dpkg -l | grep nfs-kernel-server</code> If not <code>sudo apt-get install nfs-kernel-server</code> ====Make and Export Local Drives==== Our naming convention dictates you enter the name of your computer followed by a number if you have more than 1 spinny drive <code>sudo mkdir -p /export/<computername></code> Add the following the /etc/fstab file to export drive at boot up. <code>/mnt/scratch /export/<computername> none bind 0 0</code> ====This page is not yet complete====