前端之家收集整理的这篇文章主要介绍了
Linux没有修改时间(nomtime),
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法禁用
文件系统的mtime?
有一个独立于文件系统的noatime选项,但没有“nomtime”.另外在ext4和/或btrfs的Filesystem特定文档中,我找不到这个.
这存在吗?
内核中没有这样的选项.
在include / linux / statfs.h:
#define ST_NOATIME 0x0400 /* do not update access times */
#define ST_NODIRATIME 0x0800 /* do not update directory access times */
#define ST_RELATIME 0x1000 /* update atime relative to mtime/ctime */
除了用于测试目的(您的用例)之外,我无法想到此选项的任何功能目的.
你的选择是:
>修补内核以添加此选项>修补客户端软件以不对修改时间做出反应.
原文链接:https://www.f2er.com/linux/400052.html