• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

damn small linux users

car3

Member
is it possible to use DSL-CD to delete a windows xp ntfs partition?

I need a way to get XP off my laptop.

thanks,
Jeff
 
Sure, any installation disc probably has fdisk and whatever else you might need to get rid of that partition.
 
i found the partition at /mnt/hda1

fdisk /mnt/hda1

You will not be able to write the partition table.

Unable to read /mnt/hda1

😕
 
Ah, ok. Your problem is that you are trying to fdisk a mounted drive, not a block device. The drive's name is hda, with the first partition being hda1.

What you want to do is talk to the block device directly. fdisk /dev/hda . You may need to open a special shell, or use sudo, in order to have the permissions to do that; but it should work.
 
Back
Top