“无效论证” Ubuntu 11.10(内核 3.0.0-12)中 sysctl vm.drop_caches 键的错误
我有以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Documentation/sysctl/vm.txt:
您不能将其设置为零。
Documentation/sysctl/vm.txt:
You can't setting this to zero.