1

I want to make a shortcut/link to my Windows XP hard drive and put in the documents folder under home/*.

Newbie
  • 11

2 Answers2

1

That's quite easy. Right click on Folder or file and select "make shortcut". Afterwards drag and drop it to the location you want to have it.

The difficulty is, that after reboot the partition won't be loaded again. All your shortcuts will be messed up. You have to mount the partition permanently. See here:

How to mount partition permanently?

0

It is best not to directly read & write into Windows system partitions. Eventually they seem to complain. Most of us suggest a separate NTFS shared data partition. Then you can mount the XP partition as read only in fstab and mount the data partition as read/write. With a permanent mount then you can link the data partition or folders from the data partition into your /home.

Example read only

UUID=xxxxxxxxxxxxxxx /WinC ntfs defaults,noauto,ro,umask=227 0 0

For ntfs UUID shown is example only see below:

UUID=XXXXXXXXXXX   /media/WinD ntfs defaults,nls=utf8,umask=000,uid=1000,windows_names 0 0

Window_names prevents the use of invalid windows characters: (which are the nine characters ” * / : < > ? \ | and those whose code is less than 0×20) uid=1000 should fix the trash problems as well:

sudo blkid -c /dev/null -o list
sudo mkdir /media/WinD
sudo mkdir /WinC
sudo cp /etc/fstab /etc/fstab.backup
gksudo gedit /etc/fstab

And when you are done editing fstab and saving it run the following command to test for errors and mount the partitions without requiring a reboot. You will know before you reboot if something is amiss. Make sure you have partition unmounted if prevously mounted:

sudo mount -a

Then from your /home you can link a folder in your WinD mount.

ln -s /media/WinD/SomeFolder

oldfred
  • 12,583