0

Running this command works and mounts the remote drive:

sudo mount 192.168.0.15:/nfs /media/ramtops

So when I put this in my /etc/fstab I also expected it to work but it doesn't. Why? What should I put instead?

//192.168.0.15/nfs /media/ramtops cifs  0  0

Similar question: Proper fstab entry to mount a samba share on boot?

I have cifs-utils installed

andy boot
  • 261

1 Answers1

1

Incase anyone else comes across the same problem the /etc/fstab should look like this if you are using nfs not cifs

192.168.0.15:/nfs  /media/ramtops nfs defaults 0   0
andy boot
  • 261