Files
tldr/pages/common/ipcs.md
2024-05-07 06:44:32 +02:00

33 lines
724 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ipcs
> Show information about the usage of XSI IPC facilities: shared memory segments, message queues, and semaphore arrays.
> More information: <https://manned.org/ipcs.1p>.
- Show information about all the IPC:
`ipcs -a`
- Show information about active shared [m]emory segments, message [q]ueues or [s]empahore sets:
`ipcs {{-m|-q|-s}}`
- Show information on maximum allowable size in [b]ytes:
`ipcs -b`
- Show [c]reators user name and group name for all IPC facilities:
`ipcs -c`
- Show the [p]ID of the last operators for all IPC facilities:
`ipcs -p`
- Show access [t]imes for all IPC facilities:
`ipcs -t`
- Show [o]utstanding usage for active message queues, and shared memory segments:
`ipcs -o`