7

I want to convert one partition of my windows which is NTFS (or can be FAT32) to a linux file system partitioning? I'm looking for some tools or ways to do it for me!

1
  • Are there files on this partition?
    – iglvzx
    Commented Mar 12, 2012 at 15:58

2 Answers 2

6

AFAIK, there's no way to convert NTFS to ext4. These two FSs store information in much different way. Maybe what you can do is to move those files somewhere, then format the partition to ext4 and move them back.

5
  • 1
    To expand on hexchain's idea, shrink the ntfs partition using a partition manager like gparted, make a ext4 partition, copy the files, delete the NTFS partition, expand the ext4 partition. But if you have a second drive/computer you can copy to, I would recommend using the 2nd drive instead. Commented Mar 12, 2012 at 16:06
  • @Scott Chamberlain Wouldn't that take too much time to expand partition ...?
    – hexchain
    Commented Mar 12, 2012 at 16:08
  • 1
    Yes, which is why I recommend using a 2nd drive if it is a option, but some people do not have access to a second drive or computer. Commented Mar 12, 2012 at 16:13
  • OK how could I do that in windows?
    – aakpro
    Commented Mar 12, 2012 at 18:07
  • @aakpro Get a partition software, like Partition Magic.
    – hexchain
    Commented Mar 14, 2012 at 14:24
4

Actually there IS a way to do this. But unfortunately, only in Linux.

You could easily convert NTFS to ext2 or ext3 with the software anyconvertfs from anyfs-tools

Then you could convert it to ext4 using tune2fs

5
  • 1
    This is a great idea... he can boot with a Live CD and perform this.
    – Bigbio2002
    Commented Jan 9, 2013 at 2:11
  • 2
    I think it's a very bad idea to suggest a claimed "convert anything" tool to a newbie. He might not even understand the fundamental differences of how Unix filesystems and Windows filesystems work! Does he know the execute bit? Does he know that file hiding work differently and there's no Hidden attribute in Unix/Linux?
    – Explorer09
    Commented Oct 5, 2016 at 16:43
  • @Explorer09 All he need to know to do this is how to type correct command in Linux (I suppose he knows that if he asking about converting to Linux file system).
    – PASAf
    Commented Oct 6, 2016 at 17:42
  • @PASAf If he knew that already, he won't be bothered to use the tool you suggested and instead properly format a filesystem and copy the files from a backed-up drive. If he wishes in-place conversion, he would better state that explicitly and know all the risks associated with that.
    – Explorer09
    Commented Oct 8, 2016 at 3:03
  • @Explorer09 I think there is no right solution in this case. In my opinion your solution is not suitable for all situations, because not all people in the world who need to convert NTFS to ext4 have two HDDs: one actually they use and one just in case they suddenly come up with idea to swich to Linux.
    – PASAf
    Commented Oct 10, 2016 at 18:10

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .