删除类 UNIX 系统上的所有 SYSTEM V 共享内存和信号量
如何在类 UNIX 系统(例如 Ubuntu)上使用单个命令删除所有未使用的信号量和共享内存?
How can I delete all not used semaphores and shared memory with a single command on a UNIX-like system, e.g., Ubuntu?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(11)
在这里,保存并在 shell 上尝试这个脚本 (kill_ipcs.sh):
每当我们在大学生服务器中运行 IPCS 程序时,我们都会使用它。有些人不总是清理所以......这是需要的:P
Here, save and try this script (kill_ipcs.sh) on your shell:
We use it whenever we run IPCS programs in the university student server. Some people don't always cleanup so...it's needed :P
这适用于我的 Mac 操作系统:
This works on my Mac OS:
或
将 $USERNAME 更改为真实用户名。
or
Change $USERNAME to a real username.
我不知道如何一次全部删除,但是可以使用
ipcs
列出资源,然后使用ipcrm
循环删除。这应该可行,但需要做一些工作。我记得我在课堂上做过一次。I don't know how to delete all at once, but you can use
ipcs
to list resources, and then use loop and delete withipcrm
. This should work, but it needs a little work. I remember that I made it work once in class.检查是否有任何要删除的内容:
在 linux 上通过以下方式将它们全部删除:
对于 sun 则为:
di.uoa.gr 提供的信息
再次检查是否一切正常
对于删除 your sem/shared mem -假设您是没有管理员权限的工作站用户
Check if there is anything to delete with :
On linux delete them all via :
For sun it would be :
courtsesy of di.uoa.gr
Check again if all is ok
For deleting your sems/shared mem - supposing you are a user in a workstation with no admin rights
1 行将完成所有
对于消息队列
ipcs -q
将给出消息队列的记录sed "$ d; 1,2d "
将删除最后一个空白行 ("$ d"
) 和前两个标题行 ("1,2d"
)awk
将完成剩下的工作,即使用命令" 打印和删除ipcrm -q"
wrt 第 2 列的值 (coz $2
)1 line will do all
For message queue
ipcs -q
will give the records of message queuessed "$ d; 1,2d "
will remove last blank line ("$ d"
) and first two header lines ("1,2d"
)awk
will do the rest i.e. printing and removing using command"ipcrm -q"
w.r.t. the value of column 2 (coz $2
)我在 FreeBSD 中是这样做的:
This is how I do it in FreeBSD:
删除 FreeBSD 上的所有共享内存段
以删除所有信号量
to remove all shared memory segments on FreeBSD
to remove all semaphores
既然您提到您正在使用 NFS 系统,那么您是否有权访问这些信号量和共享内存< /a>?我认为你误解了它们是什么,它们是一个 API 代码,使进程能够相互通信,信号量是一种防止竞争条件和线程相互通信的解决方案,简单来说,它们不会在任何文件系统上留下任何残留物。
除非您使用套接字或管道?您是否具有删除它们所需的权限,为什么它们位于 NFS 系统上?
希望这有帮助,
此致,
汤姆.
Since you mentioned that you're working on a NFS system, do you have access to those semaphores and shared memory? I think you misunderstood what they are, they are an API code that enables processes to communicate with each other, semaphores are a solution for preventing race conditions and for threads to communicate with each other, in simple answer, they do not leave any residue on any filesystem.
Unless you are using an socket or a pipe? Do you have the necessary permissions to remove them, why are they on an NFS system?
Hope this helps,
Best regards,
Tom.
除了 bvamos 的答案之外,根据文档,不推荐使用 sem :
删除共享内存
我们使用
ipcrm -m
通过 id 删除共享内存段,或使用
ipcrm -M
删除 共享内存段通过键删除消息队列
共享内存段,使用
ipcrm -q
通过id删除共享内存段,或者通过
ipcrm -Q
删除 共享内存段共享内存段 通过键remove semaphores
使用
ipcrm -s
通过 id 删除信号量段或通过
ipcrm -S
删除信号量段通过钥匙In addition to bvamos's answer, according to the documentation the use of
sem
is deprecated :remove shared memory
us
ipcrm -m
to remove a shared memory segment by the idor
ipcrm -M
to remove a shared memory segment by the keyremove message queues
us
ipcrm -q
to remove a shared memory segment by the idor
ipcrm -Q
to remove a shared memory segment by the keyremove semaphores
us
ipcrm -s
to remove a semaphore segment by the idor
ipcrm -S
to remove a semaphore segment by the key