Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

mounting an ntfs partition in mandrake 8.0

Status
Not open for further replies.

estesflyer

Programmer
Dec 19, 2000
284
US
would it be something like:

login as root

mkdir /mnt/windowsxp
mount -t ntfs /dev/hda /mnt/windowsxp

??

TIA

- Rusty - Rusty
 
Hi,



Yes .. something like that. You might have to do a '/sbin/modprobe ntfs' first to load the ntfs module into memory - then do :



mount /dev/hda1 -t ntfs /mnt/windowsxp



Note its something like /dev/hda1 not /dev/hda. The latter is the whole disk but you mount partitions not disks so you need the partition number. To view the partition table do (as root)



/sbin/fdisk -l /dev/hda



That will show where the ntfs partition is.



Regards



 
Hi,

Oops forgot to mention - ntfs partition support does include read/write but its not 100% reliable on the write side. So I'd recommend mounting with the read-only option :

mount /dev/hda1 -t ntfs -o ro /mnt/windowsxp

Rgds
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top