LSDF Online Storage: NFS: Difference between revisions
From Lsdf
Jump to navigationJump to search
(Created page with "<H1>Using NFS</H1> 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...") |
m (Jan.erik moved page LSDF Online Storage NFS to LSDF Online Storage: NFS) |
(No difference)
|
Revision as of 14:32, 9 August 2019
Using NFS
NFS protocol supported KIT intern for project storage.
Example (NFS mount)
mount -o nfsver=3 os.lsdf.kit.edu:/lsdf01/lsdf/inst/projects /mnt/mountpoint
It is generally recommended that the NFS client mount with the options mount -o hard,intr.
Mounting with -o soft 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)
os.lsdf.kit.edu:/lsdf01/lsdf/kit/inst/projects /mnt/lsdf nfs defaults,rw,tcp,hard,intr,nfsvers=3 0 0