IPCMK(1) User Commands IPCMK(1)NAME
ipcmk - make various IPC resources
SYNOPSIS
ipcmk [options]
DESCRIPTION
ipcmk allows you to create shared memory segments, message queues, and semaphore arrays.
OPTIONS
Resources can be specified with these options:
-M, --shmem size
Create a shared memory segment of size bytes. The size argument may be followed by the multiplicative suffixes KiB (=1024), MiB
(=1024*1024), and so on for GiB, etc. (the "iB" is optional, e.g., "K" has the same meaning as "KiB") or the suffixes KB (=1000), MB
(=1000*1000), and so on for GB, etc.
-Q, --queue
Create a message queue.
-S, --semaphore number
Create a semaphore array with number of elements.
Other options are:
-p, --mode mode
Access permissions for the resource. Default is 0644.
-V, --version
Display version information and exit.
-h, --help
Display help text and exit.
SEE ALSO ipcrm(1), ipcs(1)AUTHOR
Hayden A. James <hayden.james@gmail.com>
AVAILABILITY
The ipcmk command is part of the util-linux package and is available from Linux Kernel Archive <https://www.kernel.org/pub/linux/utils
/util-linux/>.
util-linux July 2014 IPCMK(1)
Check Out this Related Man Page
IPCMK(1) User Commands IPCMK(1)NAME
ipcmk - make various IPC resources
SYNOPSIS
ipcmk [options]
DESCRIPTION
ipcmk allows you to create shared memory segments, message queues, and semaphore arrays.
OPTIONS
Resources can be specified with these options:
-M, --shmem size
Create a shared memory segment of size bytes. The size argument may be followed by the multiplicative suffixes KiB (=1024), MiB
(=1024*1024), and so on for GiB, etc. (the "iB" is optional, e.g., "K" has the same meaning as "KiB") or the suffixes KB (=1000), MB
(=1000*1000), and so on for GB, etc.
-Q, --queue
Create a message queue.
-S, --semaphore number
Create a semaphore array with number of elements.
Other options are:
-p, --mode mode
Access permissions for the resource. Default is 0644.
-V, --version
Display version information and exit.
-h, --help
Display help text and exit.
SEE ALSO ipcrm(1), ipcs(1)AUTHOR
Hayden A. James <hayden.james@gmail.com>
AVAILABILITY
The ipcmk command is part of the util-linux package and is available from Linux Kernel Archive <https://www.kernel.org/pub/linux/utils
/util-linux/>.
util-linux July 2014 IPCMK(1)
Hi everyone this is my first post
I have used linux a couple of times and was impressed, so i bought an old sunblade 1000, just to learn something new.
I cannot get the thing to work! I have tried to install solaris 10 and several types of linux. I am beginning to wonder if i was sold a... (3 Replies)
dear Experts,
please help,
actually i am trying to create a .so(shared object through make file through ld)
i am not understaning how to proceed i have tried like
through command like i can do it in 2 step like
my progam :test2.c
$gcc -fPIC -c test2.c
$ld -shared -soname test2.so -o... (1 Reply)
Create a Data file with below fields and “|” as delimitor (ac_bal.dat):
A/c No, A/c name ,A/c balance.
1| Mani |1000.00
2| Vikram|1500.00
Create another file say (ac_bal.ctl) which file structure as
Files name, record count ,total balances
Ac_bal.dat|2|3500.00
Please... (1 Reply)
So I am pretty new to the linux environment, and I am trying to create a shell that uses multiple pipes, and I read online that piping using shared memory space is more efficient than using regular piping. However, I have zero clue how to use shared memory space with pipes. Has anyone done this... (1 Reply)