I've just installed Ubuntu 10.04, trying out linux for the first time. I'm wondering if it's possible to link my documents folder in Ubuntu to my documents folder in Windows, so that when I open the folder in Ubuntu, I am linked to the folder in Windows.

Any ideas?

link|improve this question
feedback

migrated from stackoverflow.com Apr 12 '10 at 8:13

This question came from our site for professional and enthusiast programmers.

1 Answer

cd ~
mv Documents Documents.orig
ln -s "/path/to/My Documents" Documents
link|improve this answer
1  
That works only if the Windows partition is mounted under Linux. Use the command "mount" (no arguments) to see if and where it is mounted. – Aaron Digulla Apr 12 '10 at 8:15
1  
If its not automatically mounted, you can always edit your fstab file to mount the windows partition every time you boot up. see help.ubuntu.com/community/Fstab for info on fstab. – Dom Apr 12 '10 at 9:52
feedback

Your Answer

 
or
required, but never shown