I’m trying to mount my Synology NAS on a Raspberry Pi 4 with Raspian. I works when I do it the following command:

sudo mount -t nfs 192.168.178.**:/volume1/my_data / /home/pi/mount/NAS

but it doesn’t work with this entry in /etc/fstab:

192.186.178.**:/volume1/my_data /home/pi/mount/NAS nfs defaults 0 0

What am I doing wrong?

Edit: pro tip: make sure you get the IP addresses right so you won’t spend days chasing after a trivial error like some idiot. Don’t ask me how I know. Thanks to @Arlos for pointing that out.

  • Arlos@feddit.de
    link
    fedilink
    arrow-up
    10
    ·
    10 months ago

    I assume you’ve just twisted two numbers in the second octet. 186 but in the example above it’s 168

    Fix it and it should work.

  • wmassingham@lemmy.world
    link
    fedilink
    arrow-up
    5
    ·
    10 months ago

    What do you mean “doesn’t work”? Is there some error message in the log (dmesg, /var/log/messages, on the console, whatever raspbian uses)?

  • adONis@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    10 months ago

    after modifying /etc/fstab you’d have to manually run sudo mount -a for the settings to take effect.

  • nyan@lemmy.cafe
    link
    fedilink
    English
    arrow-up
    1
    ·
    10 months ago

    As a wild guess, try completely specifying the IP address in your fstab instead of relying on a wildcard. Wouldn’t be the first time there was a slight difference in how a marginal feature like that worked in different contexts.

    • Diplomjodler@feddit.deOP
      link
      fedilink
      arrow-up
      1
      ·
      10 months ago

      The IP address in the actual file is complete. I just didn’t want to put it here. I guess I should have put another number.

  • EatYouWell@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    10 months ago

    This is what my fstab entry looks like.

    synas.com:/volume1/Music /mnt/music nfs nofail,noauto,x-systemd.automount

    If that works, but you want to figure out the root cause, let me know and we can get it figured out.