µTorrent mentions that I don't have enough space, but I do?

10

I am trying to download a 4.8 GiB DVD ISO image over bit torrent, but µTorrent is giving me an error that I do not have enough space. I didn't believe it at first so I checked for myself and I definitely have enough space, over 60 GiB left:

alt text

demetri

Posted 2009-07-22T02:36:16.723

Reputation:

@jt I can now fix this for you! :) – John T – 2009-07-25T12:20:33.273

Please, µ! </petpeeve> – jtbandes – 2009-07-22T06:25:15.810

Answers

17

This is due to a limitation with the FAT32 filesystem and not uTorrent, to fix this you can simply convert your existing filesystem to NTFS via the command line convert tool like so:

convert c: /FS:NTFS

I don't really see any disadvantages this could bring you, only advantages, lots of them.

With FAT32, the max file size is limited to just shy of 4 GB. With NTFS, you are limited to 16 TiB, theoretically it could support 16 EiB, but this is a restriction with the implementation.

You can find a good comparison chart of various file systems here.

John T

Posted 2009-07-22T02:36:16.723

Reputation: 149 037

been looking to solve this for very long time thanks! – None – 2009-07-31T22:38:44.713

1Some media players like my DVD player and my PS3 won't read an external hard drive unless it is in FAT32. Just thought I'd note that in the "any disadvantages" column, as it is a big one to me :) – Paolo Bergantino – 2009-08-03T15:00:02.263

@Paolo, I'll hope your c: drive isn't FAT32. – John T – 2010-11-21T15:56:25.207

How long is convert c: /FS:NTFS supposed to run? – Pacerier – 2012-07-13T18:40:11.713

4"I don't really see any disadvantages this could bring you, only advantages, lots of them." Note that automated partition conversion doesn't work as well as reformatting with a new filesystem; converting is not as flexible, and imposes some unusual requirements (particularly on cluster size, if I'm remembering right). – kquinn – 2009-07-22T03:02:30.690