add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

32
pages.zh/linux/ipcrm.md Normal file
View File

@@ -0,0 +1,32 @@
# ipcrm
> 删除IPC进程间通信资源。
> 更多信息:<https://manned.org/ipcrm>。
- 通过ID删除共享内存段
`ipcrm --shmem-id {{shmem_id}}`
- 通过键删除共享内存段:
`ipcrm --shmem-key {{shmem_key}}`
- 通过ID删除IPC队列
`ipcrm --queue-id {{ipc_queue_id}}`
- 通过键删除IPC队列
`ipcrm --queue-key {{ipc_queue_key}}`
- 通过ID删除信号量
`ipcrm --semaphore-id {{semaphore_id}}`
- 通过键删除信号量:
`ipcrm --semaphore-key {{semaphore_key}}`
- 删除所有IPC资源
`ipcrm --all`