How to solve sudo: add-apt-repository: command not found (UBUNTU SERVER 14.04)
Update apt-file:
apt-file update |
Finally use apt-file to search for the add-apt-repository package:
apt-file search add-apt-repository |
As you can see add-apt-repository is in software-properties-common:
software-properties-common: /usr/bin/add-apt-repositorysoftware-properties-common: /usr/share/man/man1/add-apt-repository.1.gz |
After installing software-properties-common you will be able to use add-apt-repository without any further issue:
sudo apt-get install software-properties-common |

Comments
Post a Comment