int mount(const char *source, const char *target,
const char *filesystemtype, unsigned long mountflags,
const void *data);
我使用crypted partition (crypto_LUKS)
函数挂载mount(2)
。
它没有问题。除了我不能在这个分区中写文件外,我只能读取它们。权限是READ_ONLY。
你知道" Mountflags"或者什么来解决这个问题?
我试过" Mountflags" MS_RDONLY和"对面"一个~MS_RDONLY,它不起作用。
感谢。