Here’s the entry in the fstab file for mounting my hard drive. I have bolded the name of the hard drive (that’s what it shows up as on the dock when it isn’t mounted):

UUID=D4C0A66EC0A65710 /media/lucky/New Volume ntfs rw,auto,users,exec,nls=utf8,umask=003,gid=46,uid=1000    0   0

After making that entry in fstab, I execute the, systemctl daemon-reload, command, and then mount -a, afterwards which gives me this error.

  • RatsOffToYa@lemmy.world
    link
    fedilink
    arrow-up
    6
    ·
    9 months ago

    Is it literally named new volume? If so perhaps the space is throwing things off. Try quoting the whole path perhaps?

    • Kickass Women@lemmy.worldOP
      link
      fedilink
      arrow-up
      2
      ·
      edit-2
      9 months ago

      Yup, that’s the name.

      I changed the entry on fstab to this (tried it with both single quotes and double quotes) and I’m stilling getting the parse error:

      UUID=D4C0A66EC0A65710 "/media/lucky/New Volume" ntfs rw,auto,users,exec,nls=utf8,umask=003,gid=46,uid=1000 0 0

      Btw I’m using the ntfs-3g driver, if that helps.

      • Kickass Women@lemmy.worldOP
        link
        fedilink
        arrow-up
        4
        ·
        edit-2
        9 months ago

        There were no asterisks in the fstab file, I just placed them here to emphasize the name of the hdd.

        Btw I got Debian to automount the hdd (thanks to @shortdorkyasian) by adding this entry to the fstab file:

        UUID=D4C0A66EC0A65710 /media/lucky/New\040Volume/ ntfs rw,auto,users,exec,nls=utf8,umask=003,gid=46,uid=1000 0 0

        Using \040 instead of a space or quotes (single or double) made it work.