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

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

1026 readers
1 users here now

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

founded 1 year ago
MODERATORS
16
submitted 2 months ago* (last edited 2 months ago) by [email protected] to c/[email protected]
 

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)

all 4 comments
sorted by: hot top controversial new old
[–] [email protected] 2 points 2 months ago* (last edited 2 months ago) (1 children)

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

The CLI way syntax : ln -s source target

For example : ln -s /media/username/NTFS-folder-Downloads ~/Downloads/NTFS-folder-Downloads (Make sure to omit a trailing / if you are using command line auto suggestion completion).

If you want an answer from other readers about the GUI way : it would useful which file manager (Nautilus, Dolphin, Nemo, Caja etc.) you are using.

[–] [email protected] 1 points 1 month ago

Thank You.

Actually I'm asking about mounting, not creating Symlinks.

I'm using Nemo.