“无效论证” Ubuntu 11.10(内核 3.0.0-12)中 sysctl vm.drop_caches 键的错误

发布于 2024-12-14 15:03:30 字数 344 浏览 3 评论 0原文

我有以下 shell 脚本,我在以前版本的 Ubuntu (<= 11.04) 中使用它来清除内存缓存,并且运行良好:

sudo sync && sudo sysctl -w vm.drop_caches=3 && sudo sysctl -w vm.drop_caches=0

我有一个带有 3.0.0-12-generic 内核的全新全新安装的 11.10运行相同的脚本脚本时出现以下错误:

vm.drop_caches = 3

错误:“参数无效”设置键“vm.drop_caches”

I have the following shell script that I've been using in previous versions of Ubuntu (<= 11.04) to clear memory cache and it has worked fine:

sudo sync && sudo sysctl -w vm.drop_caches=3 && sudo sysctl -w vm.drop_caches=0

I have a new clean install of 11.10 with 3.0.0-12-generic kernel and I get the following error when running the same script script:

vm.drop_caches = 3

error: "Invalid argument" setting key "vm.drop_caches"

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

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

发布评论

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

评论(1

合约呢 2024-12-21 15:03:30

Documentation/sysctl/vm.txt:

To free pagecache:
        echo 1 > /proc/sys/vm/drop_caches
To free dentries and inodes:
        echo 2 > /proc/sys/vm/drop_caches
To free pagecache, dentries and inodes:
        echo 3 > /proc/sys/vm/drop_caches

您不能将其设置为零。

Documentation/sysctl/vm.txt:

To free pagecache:
        echo 1 > /proc/sys/vm/drop_caches
To free dentries and inodes:
        echo 2 > /proc/sys/vm/drop_caches
To free pagecache, dentries and inodes:
        echo 3 > /proc/sys/vm/drop_caches

You can't setting this to zero.

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