|
NTFS is much better than fat32 for security
1. Better file security.
2. Better disk compression.
3. Support for large hard disks, up to 2 terabytes (TB).(The maximum drive size for NTFS is much greater than that for FAT, and as drive size increases, performance with NTFS doesn't degrade as it does with FAT.)
NTFS is a journaled file system, meaning that it keeps a journal of all changes made. If you lose power in the middle of writing some data, when the machine comes back up, it can roll back changes, according to its journal. This doesn't necessarily mean that you won't lose any data at all, but it means that if part of the MFT is corrupted, it can be fixed.
If the same thing were to happen to a FAT32 partition, and part of the FAT were corrupted, the partition would be unmountable (unreadable), and you would lose everything on the disk.
FAT32 offers no security whatsoever, whereas NTFS offers very good security. All files and directories can be secured with a great degree of granularity. You can specify who can read, write, list, and change files, read/write permissions, read/write attributes (read-only, etc.), and a few others. The thing to keep in mind here is...all of this security is easily circumvent able with a Linux boot disk. Physical security is the most important security.
A commonly-used feature of NTFS is file compression NTFS compression is far better. It compresses each file individually, and is extremely efficient. It's so efficient, in fact, that you will sometimes see better performance from a compressed NTFS volume than an uncompressed volume. This is due to the fact that more data can be read in a given amount of time, and because the OS is very efficient at decompressing it on the fly.
|