Ok, folks, the following problem...
I got my NFS working, basically... This means that I created the folder /sharedFiles on the server machine and I can successfully mount it on my client machine. But when I try to mount another partition /media/sda2 it fails:
...and I get this mistake.
Now, this partition is in NTFS and I have the NTFS Configuration tool installed on both machines and that /media/sda2 is mounted as rw. So I'm just lost here... Why doesn't it work?
The contents of /etc/exports on the server machine from which I'm trying to mount the partition are:
So mounting that /sharedFIles is working perfectly but not the /media/sda2.
So any idea? Am I missing something?
Thanks in advance,
Stan
I got my NFS working, basically... This means that I created the folder /sharedFiles on the server machine and I can successfully mount it on my client machine. But when I try to mount another partition /media/sda2 it fails:
Code:
stan@stan-notebook:~$ sudo mount 192.168.2.146:/media/sda2 /sharedFiles mount: 192.168.2.146:/media/sda2 failed, reason given by server: Permission denied
Now, this partition is in NTFS and I have the NTFS Configuration tool installed on both machines and that /media/sda2 is mounted as rw. So I'm just lost here... Why doesn't it work?
The contents of /etc/exports on the server machine from which I'm trying to mount the partition are:
Code:
/sharedFiles/ 192.168.2.131(async) \ (async) \ *(rw,async,no_root_squash) /media/sda2/ 192.168.2.131(async) \ (async) \ *(rw,async,no_root_squash)
So any idea? Am I missing something?
Thanks in advance,
Stan
Comment