10

I currently have a corrupted NTFS external drive that I want to re-format in a format that can be read by Linux and Windows - suggestions?

I want to reformat my 1TB NTFS drive to a format that can be read by Linux and Windows but won't cause freezing issues when copying files to and from it on Ubuntu.

I found a format that I want to format the drive in called Ext2 but how would I go about doing so?

Alex Poulos
  • 1,544
  • 7
  • 19
  • 30
  • 3
    ext2 isn't readable on Windows, so it doesn't satisfy your initial requirement. (Also, ext4 is probably preferable to ext2) – tumbleweed Dec 23 '11 at 06:24
  • Freezing issues? Maybe you should start a question about that rather than try to work around the main issue. – scottl Dec 25 '11 at 00:16

4 Answers4

8

Plug your hard drive. Open Disk Utility. Choose the drive. In format Type option you will have ext2 option format it. [You may need to unmount it before formatting]

enter image description here

enter image description here

OR

you can install gparted and format to desired partition. You need to install gparted I guess. Just do sudo apt-get install gparted.

EDIT: I myself would recommend ntfs to any other partition if you have to access it on windows. Or create one partition on ntfs and other on ext4 on 50-50 storage basis.

sagarchalise
  • 23,988
6

Ext2 is definitely not the filesystem you want to put on your drive. Firstly it is a really old version of the ext filesystem. Secondly Windows wont read from it, unless you use special third party tools. FAT filesystem is the most compatible across Operating systems but for a large drive like yours I wont recommend it. From a compatibilty and filesystem point of view, Ext4 is your best bet as it supports journal, is reasonably fast, and can be read from Windows using freely available tools like Ext Reader.

tinhed
  • 2,478
2

When I used windows I used EXT3/4 with this http://www.fs-driver.org/ in windows. Now many people are using EXT2FSD see here http://www.webupd8.org/2011/08/access-ext4-ext3-or-ext2-partitions-in.html I would recommend using EXT3/4 because it's journaled it makes it easier to recover if something goes wrong. hope this helps.

zeitue
  • 2,196
1

The traditional answer here is FAT32, but it's maximum size is 2TB, and it can't hold files larger than 4G. Plus, there's no journalling, or any other nice features. It's a pretty ancient filesystem, that's not well suited to big disks.

I've heard of people getting good results using UDF. UDF is mostly used on DVDs, but can be used on hard drives. I think Windows XP can't write to it, but later versions of Windows can.

tumbleweed
  • 8,026