“ulimit -l” 是什么意思? 意思是?
根据联机帮助页,ulimit 中的“-l”表示“可以锁定到内存中的最大大小”。 这句话到底是什么意思? 它如何影响正在运行的程序?
According to the manpage, "-l" in ulimit means "The maximum size that may be locked into memory". What does this sentence mean, exactly? How may it affect running programs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
锁定的内存可能无法调出 - 这会减少可用于其他进程的内存量。 此设置限制可以锁定的内存量。
Memory that is locked may not be paged out - this reduces the amount of memory that is available for other processes. This setting limits the amount of memory that can be locked.
这限制了您可以使用 mlock 不可交换的内存量
setrlimit 手册页说:
This limits how much memory you can make unswappable with mlock
The setrlimit manpage says: