LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   accessing the files (https://www.linuxquestions.org/questions/linux-general-1/accessing-the-files-473450/)

raja 08-13-2006 06:09 AM

accessing the files
 
hi,
how can i access the "windows" files from linux operating system.

i have windows xp professional & redhat linux (two OS's) installed in my system.

XavierP 08-13-2006 07:24 AM

Moved: This thread is more suitable in Linux-General and has been moved accordingly to help your thread/question get the exposure it deserves.

aidanr 08-13-2006 08:27 AM

in a terminal type
Code:

sudo mkdir /mnt/windows
sudo mount -t ntfs /dev/hda1 /mnt/windows

replace hda1 with your windows partition
Code:

sudo fdisk -l
will list your partitions
if your windows partition is fat32, replace ntfs with vfat
then open konqueror/nautilus and point it to /mnt/windows
if you want it mounted at boot, you have to add a line to /etc/fstab
Code:

sudo echo "/dev/hda1 /mnt/windows ntfs ro,user 0 0" >> /etc/fstab


All times are GMT -5. The time now is 09:53 AM.