Solved fstab mountoption -a

Hi

I'm currently using the following mount options when manually mounting a NFS filesystem on FreeBSD 7.1.
mount_nfs -T -a 0 -o acregmin=0,acregmax=1,acdirmin=0,acdirmax=1 server:/folder /mnt
I would like to add them to my /etc/fstab file
I'm able to add everything except -a 0 the readahead variable.

Do anyone have any ideas?
 
Hi

Thanks for fast reply
My fstab looks the following right now:
Code:
server:/folder           /mnt      nfs   rw,tcp,acregmin=0,acregmax=1,acdirmin=0,acdirmax=1,readahead=0     0      0
And when I try to mount /mnt I get:
Code:
mount_nfs: -o readahead=: option not supported
 
-o readahead is not supported in FreeBSD 7.1. You really should consider updating. In the meantime try this instead:
Code:
 server:/folder /mnt nfs rw,tcp,acregmin=0,acregmax=1,acdirmin=0,acdirmax=1,-a=0 0 0
i.e. use -a=0 in /etc/fstab.
 
Back
Top