I try to install a nfs system between my desktop computer and my Raspberry Pi. The RPi is the server with 192.168.1.65 IP address. The IP address of my desktop computer is: 192.168.1.10
Here's the /etc/exports file on the RPi:
/home/pi/dd 192.168.1.10(rw)
Here's the /etc/fstab file on my computer:
192.168.1.65:/home/pi/dd /home/mathieu/Raspberry nfs defaults,user,auto,noatime,intr 0 0
I see the Raspberry directory in my home path but when I try to reach it, I've got this error:
DBus error org.gtk.Private.RemoteVolumeMonitor.Failed: An operation is already pending
I don't have any firewall like ufw or others...
Can you help me?