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)
I know this is not that important of a thing to post on Main Linux Community, but I already asked 2 linux4noobs community, and they are empty.
This is a continuation to my previous discussion, where most of the people said,
-
It doesn’t matter where I mount.
-
Mount certain folders directly into home other. (like mounting
/mnt/data/music
to~/music
)
afaik you can’t mount folders, only drives. So what you’re looking for are symlinks (symbolic links, as opposed to hard links; use e.g.
ln -s <source> ~/Downloads
). I have a few in my$HOME
pointing to other drives as well.if your NTFS drive is unmounted or unavailable, the link will be broken; but you won’t have to recreate it in the future: so it’s a “set and forget” operation for as long as the path the link points to remains the same.
Thank You.
FYI, you can mount folders. I just don’t exactly know how.