The PPA is short for Personal Package Archives for Ubuntu, which is a place for publishing/installing personal organized packages from launchpad.net.
Usually, the url of a package archive is organized as https://launchpad.net/~PUBLISHER_NAME/+archive/PACKAGE_ARCHIVE_NAME. At the url, you may see a full list of packages included. You can also search PPA packages in https://launchpad.net/ubuntu/+ppas .
To install some packages using a ppa, you may use
For the command add-apt-repository, if not found, you may need to install python-software-properties for Ubuntu version <= 12.04, or software-properties-common for Ubuntu version >= 12.10. For earlier versions of Ubuntu or just you want manually add the ppa into the source.list, you may follow https://help.launchpad.net/Packaging/PPA/InstallingSoftware .
Usually, the url of a package archive is organized as https://launchpad.net/~PUBLISHER_NAME/+archive/PACKAGE_ARCHIVE_NAME. At the url, you may see a full list of packages included. You can also search PPA packages in https://launchpad.net/ubuntu/+ppas .
To install some packages using a ppa, you may use
sudo add-apt-repository ppa:PPA_PUBLISHER_NAME/PPA_ARCHIVE_NAME sudo apt-get update sudo apt-get install PACKAGE_NAME
If you want to remove a ppa
sudo add-apt-repository --remove ppa:PPA_PUBLISHER_NAME/PPA_ARCHIVE_NAME
For the command add-apt-repository, if not found, you may need to install python-software-properties for Ubuntu version <= 12.04, or software-properties-common for Ubuntu version >= 12.10. For earlier versions of Ubuntu or just you want manually add the ppa into the source.list, you may follow https://help.launchpad.net/Packaging/PPA/InstallingSoftware .
Comments