vobcopy command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
vobcopy: command not found
or when using sudo you get the following error message
sudo: vobcopy: command not found
Solutions to vobcopy: command not found
How To Fix vobcopy: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu vobcopy is provided by vobcopy package.
vobcopy is:
Copies DVD .vob files to harddisk and merges them into file(s) with the name extracted from the DVD. Checks for sufficient free space on the destination drive and compares the copied size to the size on DVD in case something went wrong.
Can also mirror the DVD movie content and copy single specified files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install vobcopy
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install vobcopy.
sudo apt -y install vobcopy
Or if you have aptitude installed you can use the following command.
sudo aptitude install vobcopy
Summary
In this tutorial we learn how to fix vobcopy command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.