如何显示必须同步的文件系统缓存的大小?

发布于 2025-01-11 18:25:43 字数 101 浏览 0 评论 0原文

使用命令 sync 我可以将文件系统缓存同步到物理磁盘。但我怎样才能看到还有多少数据需要同步呢?

这可能有助于了解移除 USB 记忆棒需要多长时间。

With the command sync I can synchronize the filesystem cache to the physical disks. But how can I see how much data still has to be synced?

This could be helpful to see how much time it will take until I can remove a USB stick.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱给你人给你 2025-01-18 18:25:43

/proc/meminfo 可以告诉你这些信息:

cat /proc/meminfo | grep -e Dirty -e Writeback 

根据 内核文档

Dirty
              Memory which is waiting to get written back to the disk
Writeback
              Memory which is actively being written back to the disk

我认为没有办法确定有多少脏内存或写回内存特定于设备。

/proc/meminfo can tell you this information:

cat /proc/meminfo | grep -e Dirty -e Writeback 

According to kernel documentation,

Dirty
              Memory which is waiting to get written back to the disk
Writeback
              Memory which is actively being written back to the disk

I don't think there is a way to determine how much Dirty or Writeback memory is specific to a device though.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文