autopostgresqlbackup command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
autopostgresqlbackup: command not found
or when using sudo you get the following error message
sudo: autopostgresqlbackup: command not found
Solutions to autopostgresqlbackup: command not found
How To Fix autopostgresqlbackup: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu autopostgresqlbackup is provided by autopostgresqlbackup package.
autopostgresqlbackup is:
autopostgresqlbackup is a shell script (usually executed from a cron job) designed to provide a fully automated tool to make periodic backups of PostgreSQL databases. autopostgresqlbackup extract databases into flat files in a daily, weekly or monthly basis.
autopostgresqlbackup is a PostgreSQL port of automysqlbackup.
To fix this problem, we can install more using the command below.
sudo apt-get -y install autopostgresqlbackup
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install autopostgresqlbackup.
sudo apt -y install autopostgresqlbackup
Or if you have aptitude installed you can use the following command.
sudo aptitude install autopostgresqlbackup
Summary
In this tutorial we learn how to fix autopostgresqlbackup command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.