dvdtape command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dvdtape: command not found
or when using sudo you get the following error message
sudo: dvdtape: command not found
Solutions to dvdtape: command not found
How To Fix dvdtape: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dvdtape is provided by dvdtape package.
dvdtape is:
This tool will create the control files needed when mastering DVDs for manufacturing (DDP information, DDPMS information, “lead in”) and output them to DLT tape(s) or disk files as desired.
To fix this problem, we can install more using the command below.
sudo apt-get -y install dvdtape
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install dvdtape.
sudo apt -y install dvdtape
Or if you have aptitude installed you can use the following command.
sudo aptitude install dvdtape
Summary
In this tutorial we learn how to fix dvdtape command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.