ipcmk: command not found [How To Fix]
Posted on March 4, 2021 (Last modified on July 14, 2022) • 2 min read • 267 wordsLearn how to fix ipcmk: command not found error message in this article. We will learn fixing this error message on several Linux distributions including Ubuntu and CentOS / AlmaLinux. We will also learn to resolve this problem on MacOS X
When you run ipcmk
command in linux terminal / console, you get the following error message
ipcmk: command not found
To fix this problem, we can install ipcmk using the command below.
sudo apt-get -y install util-linux
This command might take some time to finish depending on your machine internet connection.
You can also use apt
command to install util-linux.
sudo apt -y install util-linux
Or if you have aptitude installed you can use the following command.
sudo aptitude install util-linux
In Alpine Linux, we can install ipcmk using the command below.
apk add util-linux
In Arch Linux, to fix this error message, we can install ipcmk using the command below.
pacman -S util-linux
In CentOS or other RHEL based Linux distribution, we can install ipcmk using the command below.
yum install util-linux
In Fedora we can use dnf
command to install ipcmk using the command below.
dnf install util-linux
To fix this problem, we can install ipcmk using the command below.
brew install util-linux