| 1. |
Solve : Copied files on new WD drive, size and size on disk are different? |
|
Answer» Why does my new WD external 4TB drive, after copying some files to it, show size:45.3GB, and size on disk:103GB? The reason WD ships the drive as exfat is it is larger than the 2TB limit for NTFS. The main reason a drive would come pre-configured with it is likely because it is the most generally compatible and supported across operating Systems now. Windows doesn't support Ext4 or HFS+ and Mac OS cannot write to NTFS for example. The 2TB Limitation is on MBR, and applies regardless of the File System limitation. Their External Drive already uses GPT if it has a single 4TB partition because of this. Neither NTFS nor even FAT32 have a 2TB size limitation. (in fact, FAT32 can go to 8TB, but Windows arbitrarily disallows you from formatting anything larger than 32GB as FAT32) Quote What is the problem with using exfat ? I think they described that pretty well in their OP. In their instance, Data is consuming twice the disk space of it's actual content. It could be due to a lot of small files bringing up the amount of slack space, or it could be because the cluster size came configured very large from the factory (ExFAT allocation unit sizes can go from 4KB up to 32MB). It's also possible that during the copy operation the new data ended up getting preallocated in larger chunks by having the physical data length field far exceed the real data length field. a disk CHECK might fix that. Personally, I would only use ExFAT on smaller removable drives. And only if I don't intend to store anything that matters on it for very long, because in my experience I have found ExFAT is a great way to approximate the data reliability of using 360K floppies in a magnet factory. So, if you buy a WD external drive with exfat, can you reformat it to NTFS? BC, why is the exfat format unreliable? Thanks. Edit: BC, I found this. Is this why exfat is unreliable? “exFAT is a good choice if you often work with Windows and Mac computers. It could make transferring the files between those two operating systems much easier because you don’t need to back up and reformat each time. Besides, this file system inherit something popular and great from FAT32 including the incredible compatibility. But exFAT (like other FATs) lacks a journal, and so it easily gets corrupted when the volume is not unmounted or ejected in a proper way.”Quote from: artbuc on July 07, 2019, 06:11:53 AM But exFAT (like other FATs) lacks a journal, and so it easily gets corrupted when the volume is not unmounted or ejected in a proper way.” Yes this is correct. Without the journal if both copies of the fat table get corrupted, which can happen if you unplug a fat drive when it is writing. Could cause the directory structure to get corrupted making access to the files difficult. This is why windows and mac's if you move the mouse over the usb connection say if the drive is safe to disconnect. If you disconnect any drive regardless of format when writing or in the case of an SSD drive when reading or writing there will be data loss. Ntfs is just less likely to corrupt as badly and easier to recover from. |
|