Solved Mount -v nfs in /etc/fstab

Hello, I am trying to set auto mount of a nfs in /etc/fstab. So if I do manually
Code:
# mount  -v 160.1.1.158:/mnt/xxx /mnt/xxx/
it mounts perfect. I went to /etc/fstab and added:

Code:
160.1.1.158:/mnt/xxx     /mnt/xxx/  nfs     rw,-v      0       0
and I try:

# mount /mnt/xxx I get
Code:
unknown special file or file system

My guess is that not taking the option "-v" or maybe something else. Any help is welcome, thanks.
 
Never mind, I fixed it. Was the "/" at the end of the Mount Point, I removed it and now it works. Thanks a lot
 
Back
Top