meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
linux:remotefs:nfs [2025/02/26 08:43] niziaklinux:remotefs:nfs [2025/04/24 08:06] (current) niziak
Line 9: Line 9:
   on lossy networks. In addition, TCP will handle network speed differences better than UDP, due to the underlying    on lossy networks. In addition, TCP will handle network speed differences better than UDP, due to the underlying 
   flow control at the network level.    flow control at the network level. 
 +
 +===== show child mounts =====
 +
 +Mounts inside NFS export. Crossmounts.
 +
 +  * **nohide**: This option prevents the NFS server from hiding the contents of a directory when it's mounted by a client. If you don't use ''nohide'', clients will only see the directory itself, not the contents of any subdirectories that are themselves mounted. 
 +  * **crossmnt**: This option is similar to ''nohide'' but specifically allows clients to navigate and access filesystems that are mounted within the exported directory. It ensures that the NFS client can "see through" the mount point and access the filesystems mounted beneath it. 
 +
 +<file ini /etc/exports>
 +/srv * (sync,no_subtree_check,crossmnt,nohide)
 +</file>
  
 ===== performance ===== ===== performance =====