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?
Plug your hard drive. Open
Disk Utility
. Choose the drive. In formatType
option you will haveext2
option format it. [You may need to unmount it before formatting]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 onntfs
and other onext4
on 50-50 storage basis.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.
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.
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.