LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Laptop and Netbook (https://www.linuxquestions.org/questions/linux-laptop-and-netbook-25/)
-   -   Viewing Windows on HP nx9010 (https://www.linuxquestions.org/questions/linux-laptop-and-netbook-25/viewing-windows-on-hp-nx9010-328821/)

Mekzyz 05-31-2005 05:57 AM

Viewing Windows on HP nx9010
 
Hello All,
I am a new user to lInux. I just installed Fedora 2 on my HP nx 9010 Laptop. I want to be ale to access files in my windows partiotion. How do i go about this?
Regards

mjrich 06-01-2005 03:48 PM

First, find out where partition your windows is located, and the filesystem type. Running the following (as root) should tell you
Code:

fdisk -l /dev/hd*
Next, add an entry to your /etc/fstab file, such as
Code:

/dev/hda2  /windows  ntfs  ro,noauto,user,umask=0022    0    0
- replacing /dev/hda2 with the correct partition, and ntfs with vfat if appropriate. Finally, create a mount point for the entry corresponding to that in /etc/fstab, such as (as root)
Code:

mkdir /windows
You should now be able to simply run mount /windows to mount the partition, and then access it as you would any other directory (including creating links to it on the desktop etc.).

Cheers,

mj


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