repopush command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
repopush: command not found
or when using sudo you get the following error message
sudo: repopush: command not found
Solutions to repopush: command not found
How To Fix repopush: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu repopush is provided by repopush package.
repopush is:
The repopush tool is yet another program that helps with copying the various package files and repository metadata from one OS package repository to another, taking care to copy and remove files in such a way as to never have the remote repository present an inconsistent view. This is done by first copying the new package files, then copying the new metadata files, then removing the outdated metadata files, and only then removing the outdated package files.
The repopush tool supports APT and YUM repositories and figures out which one to handle by analyzing the contents of the local repository.
To fix this problem, we can install more using the command below.
sudo apt-get -y install repopush
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install repopush.
sudo apt -y install repopush
Or if you have aptitude installed you can use the following command.
sudo aptitude install repopush
Summary
In this tutorial we learn how to fix repopush command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.