Jump to content
4 posts in this topic

Recommended Posts

I have dual boot XP and OSX. I boot OSX from the XP bootloader (chained). Everything works beautifully, however I cannot mount the XP (NTFS) partition in OSX. I see it in diskutility but trying to mount it leads to nowhere. It flickers a little and then just doesn't do anything. Any idea what I need to do? Is it possible that the diskutility is expecting this partition at a certain positioin in the partition table. I had to move the XP partition from the first entry into the second slot in the partition table to make my Dell Media Direct partition work (HPA).

any help appreciated. I know I will not be able to write to it, however I'd like to be able to at least read from it.

 

thanks

Have you tried mounting it using the mount command from a terminal screen? This works for me while automounting and Disk Utility do not. If you can get this kind of thing to work, you can put the same two lines of commands in /etc/rc.local (no need for the sudo part there) and it should mount up each time you boot. Adjust the "disk0s1" to match your partition . . .

--------------------------------------------------------

 

Manually Mounting NTFS Partition:

 

sudo mkdir /Volumes/WINDOWS

 

sudo mount -t ntfs /dev/disk0s1 /Volumes/WINDOWS

 

Then navigate to it in finder, and it will add to the desktop.

Have you tried mounting it using the mount command from a terminal screen? This works for me while automounting and Disk Utility do not. If you can get this kind of thing to work, you can put the same two lines of commands in /etc/rc.local (no need for the sudo part there) and it should mount up each time you boot. Adjust the "disk0s1" to match your partition . . .

--------------------------------------------------------

 

Manually Mounting NTFS Partition:

 

sudo mkdir /Volumes/WINDOWS

 

sudo mount -t ntfs /dev/disk0s1 /Volumes/WINDOWS

 

Then navigate to it in finder, and it will add to the desktop.

 

works great, thank you!!

×
×
  • Create New...