LSDF Online Storage: NFS: Difference between revisions

From Lsdf
Jump to navigationJump to search
(Add migration note)
 
Line 1: Line 1:
This page has been updated and migrated to the new docs site:
<H1>Using NFS</H1>


https://www.lsdf.kit.edu/docs/nfs/
NFS protocol supported KIT intern for project storage.

'''Example (NFS mount)'''
<pre>
mount -o nfsver=3 os.lsdf.kit.edu:/lsdf01/lsdf/inst/projects /mnt/mountpoint
</pre>

It is generally recommended that the NFS client mount with the options <b>mount -o hard,intr</b>.
Mounting with <b>-o soft</b> is strongly discouraged because of the risk of data loss or corruption.

Hard mounts and intr (interruptible) enables the application to be sure of a successful write.

'''Example (/etc/fstab)'''
<pre>
os.lsdf.kit.edu:/lsdf01/lsdf/kit/inst/projects /mnt/lsdf nfs
defaults,rw,tcp,hard,intr,nfsvers=3 0 0
</pre>

<hr>
<br>
<br>
<br>
<br>
[[Category:LSDF_Online_Storage|NFS]]

Latest revision as of 18:51, 21 February 2023

This page has been updated and migrated to the new docs site:

https://www.lsdf.kit.edu/docs/nfs/