Jump to content

need help to convert from HFS+ to NTFS


intox_neb
 Share

2 posts in this topic

Recommended Posts

Have been running lepard, but now I want to use my hdd for windows again, which means I need the hdd back to NTFS.

 

And here the problem is.

 

Can't find a single program which can convert from hfs+ to ntfs in windows, and I need a program that runs under Vista.

 

Anyone who can help? Tried using a live cd of the latest ubuntu, there is a program called gparted or something like that, but wouldn't find my hdd.

 

 

 

So if anyone know of a program that can make my hdd usable under windows again, let me know, and IT HAS TO BE A WINDOWS PROGRAM (or linux :)

Link to comment
Share on other sites

goto your cmd prompt type "diskpart" then type "list disk" choose your hdd e.g. "select disk 0" then type "create partition primary size=xxxxx" replace the xxxxx according to the size partition you want.

 

 

if you want more options just type "help" and it will give you a list of commands

 

I got this from another website :-

 

 

To create a partition:

 

At a command prompt, type: Diskpart.exe

 

At the DISKPART prompt, type: LIST DISK (Lists disks found. Make note of the drive number you wish to manipulate.)

 

At the DISKPART prompt, type: Select Disk 1 (This selects the disk; make sure to type in the disk number from step 2.)

 

At the DISKPART prompt, type: CREATE PARTITION PRIMARY SIZE=10000

(Change the word PRIMARY to EXTENDED to create an extended partition.) (If you do not set a size (in MB), such as the above example for 10 GB, then all available space on the disk will be used for the partition.) (Seriously consider adding the following option to the end of the above command if you are using RAID (especially RAID 5) to improve disk I/O performance: ALIGN=64)

 

At the DISKPART prompt, type: ASSIGN LETTER=D (Choose a drive letter not already being used.)

 

At the DISKPART prompt, type: Exit

 

Use the Command Prompt format command, Disk Administrator or any disk format utility to format the drive (typically using NTFS, of course).

Extend a partition in Windows with Diskpart. When it comes to adding space to a partition or volume, this method is superior to configuring Dynamic Disks. Dynamic Disk extensions only concatenate the newly added space, menaing they merely add the disk space to the "end" of the original partition without restriping the data.

 

Concatenation isolates performance within each partition and does not offer fault tolerance when the partition is configured in a RAID array. Diskpart allows you to restripe your existing data. This is truly beneficial when the partition is set up in a RAID array, because the existing partition data is spread out across all the drives in the array, rather than just adding new space to the end (like Disk Administrator).

 

Microsoft's "official" position is that that you cannot use Diskpart to extend your system or boot partition. However, this tip on SearchWinComputing.com on increasing the capacity of your system volume, suggests otherwise.

 

Note: If you try it or any other method, make sure you have a full backup.

 

To extend a partition:

 

Verify that contiguous free space is available on the same drive and that free space is next to the partition you intend on extending (with no partitions in between).

 

At a command prompt, type: Diskpart.exe

 

At the DISKPART prompt, type: Select Disk 1 (Selects the disk.)

 

At the DISKPART prompt, type: Select Volume 1 (Selects the volume.)

 

At the DISKPART prompt, type: Extend Size=10000 (If you do not set a size, such as the above example for 10 GB, then all available space on the disk will be used.)

 

At the DISKPART prompt, type: Exit

Note: It is not necessary, but I normally reboot the server to make sure all is well from a startup standpoint.

 

To delete a partition in Windows with Diskpart: (Note: You cannot delete an active system or boot partition or a partition with an active page file.)

 

At a command prompt, type: Diskpart.exe

 

At the DISKPART prompt, type: Select Disk 1

 

At the DISKPART prompt, type: Select Partition 1

 

At the DISKPART prompt, type: DELETE partition

 

At the DISKPART prompt, type: Exit

To wiping (or zero) a disk:

This operation deletes all data on the disk

 

At a command prompt, type: Diskpart.exe

 

At the DISKPART prompt, type: Select Disk 1

 

At the DISKPART prompt, type: CLEAN ALL (The CLEAN ALL command removes all partition and volume information from the hard drive being focused on.)

 

At the DISKPART prompt, type: Exit

Final note: Here are four important things to keep in mind regarding Diskpart.

 

Do not use DISKPART until you have fully backed up the hard disk you are manipulating

 

Do not use DISKPART on dynamic disks

 

Check with your disk vendor before using Diskpart

 

Install the Windows Resource Kit to get the Diskpart utility

Link to comment
Share on other sites

 Share

×
×
  • Create New...