nfs_automount icon indicating copy to clipboard operation
nfs_automount copied to clipboard

Keeps NFS mounts active. Also enables cross-mounts between servers.

Results 14 nfs_automount issues
Sort by recently updated
recently updated
newest added

* Version 1.1 and below used an RPC check via the `showmount` command to check available remote host mountpoints, which works great with NFSv2 and NFSv3. This does *NOT* work...

This is useful in scenarios where the user either mounts the remote path via NFS or SSH.

Here's an init.d script, a logrotate config, and a cron job config.

On the nfs server the shares (whole partitions) are mounted to /export using the "default" options. Nfs_automount on the client then mounts these to /media in rw mode. works fine....

In /etc/fstab, if I do something like: ``` nfshost:/export/data/subfolder /mounts/data/subfolder/ nfs nfsvers=3,rw 0 0 ``` It mounts just fine. If I try with nfs_automount: ``` MOUNTS=MOUNTS=("rw|nfshost|/export/data/subfolder|/mounts/data/subfolder|") ``` It throws a...

My nfs server shares "/nfs", but I like to mount "/nfs/Public". This changes the check_remoteshare function to check for the base folder being shared instead of the full path. I...

Somebody please look at this error message and correct the syntax. I have no idea what it is /etc/nfs_automount.conf: line 41: syntax error near unexpected token `|' /etc/nfs_automount.conf: line 41:`MOUNTS=(...

Just before banishing nfs_automount from my systems once and for all, I thought I'd check to see if anyone had fixed this problem. It's disappointing to see that almost one...

At home I have a share on 192.168.1.2 and at work that IP is reachable but there is no share on it. The script fails: ``` nfs_automount [2015-04-17 10:26:37-07:00]: [INFO]...

In my use case, the NFS shares are not provisioned to give the root sufficient write access. Therefore nfs_automount declared the shares as stale every time it check on them....