|
Home > Archive > Unix administration > February 2004 > mounting drives in Redhat Linux
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
mounting drives in Redhat Linux
|
|
|
| hi,
i have a problem in linux. I have installed windowsXP and Redhat Linux
9 in my system. I would like to access windows partitions from Linux.
I have not defined mount points while installing Linux. Can i do it
now? If so how?
Thanks and regards,
Shiva
email:siva@googley.com
| |
| Philippe 2004-02-08, 8:33 pm |
| shiva wrote:
> hi,
>
> i have a problem in linux. I have installed windowsXP and Redhat Linux
> 9 in my system. I would like to access windows partitions from Linux.
> I have not defined mount points while installing Linux. Can i do it
> now? If so how?
>
> Thanks and regards,
> Shiva
>
> email:siva@googley.com
The access will depend on the type of filesystem: fat32 or ntfs:
ntfs will be read only:
mount -r -t ntfs /dev/hda1 /mnt/data
vfat:
mount -t vfat /dev/hda1 /mnt/data
where hda1 represent the first partition of the first ide disc and
/mnt/data any mount point (you can create it with mkdir)
when you are able to access the data, just look at the /etc/fstab file
and edit it to make your changes permanent (just add the necessary line).
Just mimic the structure of the already present lines...
If it don't work you can easily erase the faulty lines.
PHiL
|
|
|
|
|