In general - to access Windows files from Linux you need to mount your Windows partition to a mount point in Linux
Open a shell and type :
su
Then type you root password – then type :
mkdir /mnt/windows2000
Then - open /etc/fstab with:
kedit /etc/fstab
If your using NTFS :
Then - put an entry at the bottom of your /etc/fstab file on a new line - (just substitute in the device name of your Partition in place of my example one)
/dev/hda1 /mnt/windows2000 ntfs auto,ro,umask=0222 0 0
save the file - and reboot
Then simply create a symlink form /mnt/windows2000 to your desktop:
as root user again from the shell:
ln -s /mnt/windows2000 /home/xxx/Desktop
(whatever the path is to your desktop)
( Red Hat currently doesn’t include a NTFS driver because of uncertainties surrounding the legal status of the driver)
So - to
READ a NTFS partition from Red Hat, you can either:
- Download and install an RPM – or
- Compile your kernel
Your best just getting the relevant RPM - Check out this site for an RPM
http://linux-ntfs.sourceforge.net/info/redhat.html