После некоторых способов, которые я пробовал раньше.
Последнее, я пытался добавить поддержку ntfs-3g, изменив скрипт монтирования на mount.c
Как это:
use_mountprog (const char * vfstype)
{
/* XXX: We need to get away from implementing external mount
* programs for every filesystem, and move towards having
* each filesystem properly implement the nmount() system call.
*/
unsigned int i;
const char *fs[] = {
"cd9660", "mfs", "msdosfs", "nfs", "nfs4", "ntfs",
"nwfs", "nullfs", "portalfs", "smbfs", "udf", "unionfs",
"ntfs-3g"
NULL
};
for (i = 0; fs[i] != NULL; ++i) {
if (strcmp(vfstype, fs[i]) == 0)
return (1);
}
return (0);
}
Перекомпилируйте программу монтирования, и она работает!
Спасибо ...