this post was submitted on 18 Jul 2024
16 points (94.4% liked)

Linux 101 stuff. Questions are encouraged, noobs are welcome!

1358 readers
1 users here now

Linux introductions, tips and tutorials. Questions are encouraged. Any distro, any platform! Explicitly noob-friendly.

founded 2 years ago
MODERATORS
 

I have a NTFS drive for Storage, which is shared between WIn 11.

I want to change the location of (or replace) ~/Downloads, ~/Music, etc..,.

Note that the link to made is between NTFS and EXT4.

I found two ways while searching.

   1.Creating **Symlinks** in `~` with target pointed to folders in NTFS drive.

   2. **Mounting** the NTFS folders **directly** to`~/Downloads`, `~/Music`, etc..,.

Which one should I do? Which one is more beneficial?

Also how to mount folders to other folders (option 2) ? (I would really appreciate a GUI way)

you are viewing a single comment's thread
view the rest of the comments
[–] gpstarman@lemmy.today 1 points 1 year ago* (last edited 1 year ago)

the bind mount will block the umount of the NTFS drive until all binds are removed and requires the NTFS drive to be mounted for it to work. You may want to utilise the "pass" field in fstab to make it work. it is therefore slightly harder to persist.

Can you please explain more.