vzdqdump command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
vzdqdump: command not found
or when using sudo you get the following error message
sudo: vzdqdump: command not found
Solutions to vzdqdump: command not found
How To Fix vzdqdump: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu vzdqdump is provided by vzquota package.
vzquota is:
OpenVZ is an Operating System-level server virtualization solution, built on Linux. OpenVZ creates isolated, secure virtual private servers on a single physical server enabling better server utilization and ensuring that applications do not conflict. Each VPS performs and executes exactly like a stand-alone server; VPSs can be rebooted independently and have root access, users, IP addresses, memory, processes, files, applications, system libraries and configuration files.
This package contain the control tool to manipulate quota for virtual servers.
To fix this problem, we can install more using the command below.
sudo apt-get -y install vzquota
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install vzquota.
sudo apt -y install vzquota
Or if you have aptitude installed you can use the following command.
sudo aptitude install vzquota
Summary
In this tutorial we learn how to fix vzdqdump command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.