netmdcli command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
netmdcli: command not found
or when using sudo you get the following error message
sudo: netmdcli: command not found
Solutions to netmdcli: command not found
How To Fix netmdcli: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu netmdcli is provided by minidisc-utils package.
minidisc-utils is:
This package contains several utilities which allow one to access NetMD and HiMD devices through a command line interface. The utilities allow one to transfer tracks to and from NetMD and HiMD devices as well as erase tracks, display tracks and renaming tracks among other functions supported by libnetmd and libhimd libraries.
To fix this problem, we can install more using the command below.
sudo apt-get -y install minidisc-utils
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install minidisc-utils.
sudo apt -y install minidisc-utils
Or if you have aptitude installed you can use the following command.
sudo aptitude install minidisc-utils
Summary
In this tutorial we learn how to fix netmdcli command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.