1

I attempted a Windows 8.1/ LinuxMint dualboot on the same drive. After giving up on Mint, I would like to have my disk space back. I reserved about 20 GB for Mint when I installed it. As a result Windows now shows the capacity of the drive as 232 GB and not 250 GB. How can I

a) detect the lost partition

b) format it

c reallocate it back to the main partition ?

Is there any Windows software that does this?

4
  • Follow the instructions here: lifehacker.com/…
    – Vinayak
    Commented Aug 8, 2014 at 8:21
  • Alternatively use a partition manager software like EaseUS Partition Master to remove the Linux partiton.
    – Vinayak
    Commented Aug 8, 2014 at 8:23
  • @Vinayak Yes, I already tried using windows' disk management tool. The problem is it doesn't see the partition at all! i.imgur.com/WyXWfRj.png Commented Aug 8, 2014 at 13:51
  • @Vinayak Regarding the partitioning software you suggested- it too fails to detect the Linux partition. Commented Aug 8, 2014 at 13:52

1 Answer 1

2

Windows is actually reporting the disk capacity correctly. And your Linux partition is gone.

Let me explain...
When you buy a 250 GB hard drive, you expect to have 250 GB of storage.

1 GB = 1024 MB = (1024 x 1024) KB = (1024 x 1024 x 1024) bytes

However, when HDD manufacturers advertise their hard drive capacities, they do so in decimal multiples. So when they say their HDD has a capacity of say 250 GB, they actually mean:

250       GB = 250       x 1000 MB
250000    MB = 250000    x 1000 KB
250000000 KB = 250000000 x 1000 bytes

Total Capacity: 250000000000 bytes

But we know a megabyte isn't 1000 KB, it's actually 1024 KB so when you divide the numbers by 1024, you get the actual storage capacities as reported by Windows:

250000000000 bytes = 250000000000 / 1024 KB
244140625    KB    = 244140625    / 1024 MB
238418.57    MB    = 238418.57    / 1024 GB

Total Capacity: 232.83 GB

Now, that's not all. Some space on the hard drive is allocated for stuff like partition tables, the Master File Table (on NTFS partitions), etc. so what you get is usually lower than this value.

Here's a table showing what to expect:


Manufacturer Capacity   Actual Capacity
80 GB                   74.4 GB
120 GB                  111 GB
250 GB                  232 GB
320 GB                  298 GB
1.0 TB                  932 GB
1.5 TB                  1.36 TB

EDIT: Made changes to answer to show correct values. Thanks to @Daniel B for the comment.

2
  • You're right. I actually found out by myself but forgot to post the results here. I'll edit the question so it might fit the answer more properly. That way it might serve as a reference for others. Thanks Commented Aug 13, 2014 at 16:38
  • 2
    The actual capacity is 250 GB * 1000^3 / 1024^3 = 232,83 GiB. You simple didn’t multiply enough. :)
    – Daniel B
    Commented Aug 13, 2014 at 16:44

You must log in to answer this question.

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