this post was submitted on 04 Jan 2024
21 points (92.0% liked)

Linux

47356 readers
1463 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

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.

you are viewing a single comment's thread
view the rest of the comments
[–] shortdorkyasian@lemmy.world 23 points 8 months ago (1 children)

Does this help? https://superuser.com/questions/527495/how-to-mount-partition-with-spaces-in-path

Looks like you need \040 in place of the space.

Honestly, I would just change the name of the mount directory so there's no space.

[–] mmababes@lemmy.world 15 points 8 months ago* (last edited 8 months ago)

This worked.

I edited the fstab file:

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

My hdd is now automatically mounted by Debian.

Thank you!