e4defrag - 输出是什么意思?

e4defrag - 输出是什么意思?

e4defrag 显示许多行(如(filename) 100% [ OK ]或 )(filename) 0% [ NG ],并在结束时显示成功/失败。

NG 是说没有移动吗?OK 是说已经碎片整理了吗?失败的是什么?

答案1

看着它的手册页并在目录上运行该程序,程序似乎对碎片计数较低的文件没有任何作用。建议通过使用选项运行该程序来计算碎片计数-c

[ NG ]是反义词[ OK ],代表“不好”。您需要使用选项运行该程序-v,然后程序会显示碎片整理前后的碎片数量以及以下错误之一源代码中的消息如果出现 NG 状态:

#define NGMSG_EXT4          "Filesystem is not ext4 filesystem"
#define NGMSG_FILE_EXTENT   "Failed to get file extents"
#define NGMSG_FILE_INFO     "Failed to get file information"
#define NGMSG_FILE_OPEN     "Failed to open"
#define NGMSG_FILE_UNREG    "File is not regular file"
#define NGMSG_LOST_FOUND    "Can not process \"lost+found\""

相关内容