Do you require that the Windows music be browseable in ~/Music? Because you should be able to add the second music folder to your Rhythmbox or Banshee music library if you just want it to appear in those programs. – James HenstridgeMay 21 '12 at 1:36
Can you see the Windows drive from Ubuntu?
If yes, then you can see whatever changes you make in Windows, directly in Ubuntu.
You have to find the Windows music folder in nautilus and then Right click → Properties → Location. This is the "source" location, e.g. /media/Windows/Users/Nick/Music
Do you have anything in the Ubuntu music folder?
If yes, you need to move the contents to another folder, e.g. on Desktop
Now you need to find the path for the Ubuntu music folder. Do what we did on step 1. This is the "target" location, e.g. /home/nick/Music
The Ubuntu music folder should be empty by now, delete it
Open a terminal and write:ln -s "source" "target" substituting with the paths we found in steps 1 and 3, e.g. ln -s /media/Windows/Users/Nick/Music /home/nick/Music
If you had data in your Ubuntu music folder in step 2, you can now move them back to the new folder.
If you have followed step-5, that is, creating Symbolic link that points to Windows partition, it may not have mounted when you start your computer and you may need to mount it either manually or you can auto-mount it upon startup using file /etc/fstab – KushMay 20 '12 at 17:51
@Kush That's true, but I assume that he will use nautilus to access the music folder which will auto-mount the folder – Nick AndrikMay 20 '12 at 18:08
Is there a way to make it so that the changes I make in my destination directory occur in my source directory? – SaiMay 20 '12 at 16:36
just link two folders use that command, then they will be sync completely – Ali DehghaniMay 20 '12 at 16:54
I have tested your command, but what I get in the destination directory is a symbolic link to the source directory. So what I'm having to do is go into the destination directory and click a link to the source directory.
What I'm wanting is for the contents of the source directory to be displayed in destination directory, so that when I go into the destination directory, I immediately see the contents of the source directory. I've tried running:
ln -s source/* destination
but this just gave me symbolic links to the contents of the source directory – SaiMay 20 '12 at 17:15
~/Music? Because you should be able to add the second music folder to your Rhythmbox or Banshee music library if you just want it to appear in those programs. – James Henstridge May 21 '12 at 1:36