xdms command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xdms: command not found
or when using sudo you get the following error message
sudo: xdms: command not found
Solutions to xdms: command not found
How To Fix xdms: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xdms is provided by xdms package.
xdms is:
This a tool for decompressing Amiga DMS files. DMS files contain disk images that are these days mainly useful for Amiga emulation. It can unpack DMS images to ADF images.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xdms
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xdms.
sudo apt -y install xdms
Or if you have aptitude installed you can use the following command.
sudo aptitude install xdms
Summary
In this tutorial we learn how to fix xdms command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.