1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 19:08:26 -06:00

Linux: Support NTFS formatting of volume. We use mkfs.ntfs so it needs to be installed on the system.

This commit is contained in:
Mounir IDRASSI
2014-10-24 09:30:24 +02:00
parent ea03100d9e
commit 9c1ddff7e3
3 changed files with 4 additions and 0 deletions

View File

@@ -422,6 +422,7 @@ namespace VeraCrypt
case VolumeCreationOptions::FilesystemType::Ext4: fsFormatter = "mkfs.ext4"; break;
case VolumeCreationOptions::FilesystemType::MacOsExt: fsFormatter = "newfs_hfs"; break;
case VolumeCreationOptions::FilesystemType::UFS: fsFormatter = "newfs" ; break;
case VolumeCreationOptions::FilesystemType::NTFS: fsFormatter = "mkfs.ntfs" ; break;
default: break;
}