PDA

View Full Version : [ubuntu] In Ubuntu 9.04, how do I mount different folders of the same partitions to different



PhotonicGuy
May 19th, 2010, 12:57 PM
I have a shared NTFS partition ("shared") that I use for data for both Windows and Ubuntu. How can I mount the music folder on shared to $Home/Music, and the Videos folder on shared to $Home/Videos? I want to mount the different folders on the partition to different folders in home. Any help here? Thanks in advance!

portentum
May 19th, 2010, 01:41 PM
I think what you're actually looking for is linking. (man ln for more info)

As an example, I would use


ln -s /media/Storage3/Music ~/Music
to create a symlink at ~/Music that contains everything that's actually stored at /media/Storage3/Music.