Linux Commands Examples

A great documentation place for Linux commands

add-apt-repository

Adds a repository into the /etc/apt/sources.list or /etc/apt/sources.list.d or removes an existing one

Synopsis

add-apt-repository [OPTIONS] REPOSITORY


add an example, a script, a trick and tips

: email address (won't be displayed)
: name

Step 2

Thanks for this example ! - It will be moderated and published shortly.

Feel free to post other examples
Oops ! There is a tiny cockup. A damn 404 cockup. Please contact the loosy team who maintains and develops this wonderful site by clicking in the mighty feedback button on the side of the page. Say what happened. Thanks!

examples

0
source
            
sudo add-apt-repository ppa:apt-fast/stable
sudo add-apt-repository ppa:indicator-multiload/stable-daily
sudo add-apt-repository ppa:indicator-multiload/stable-daily
sudo add-apt-repository ppa:tualatrix/ppa
sudo apt-get update
sudo apt-get install apt-fast indicator-multiload ubuntu-tweak
0
source
            
sudo add-apt-repository ppa:elegant-gnome/ppa
sudo add-apt-repository ppa:tiheum/equinox
sudo add-apt-repository ppa:nikount/orta-desktop
sudo add-apt-repository ppa:nikount/orta-desktop
sudo add-apt-repository ppa:alecive/antigone
sudo add-apt-repository ppa:elementaryart/ppa
0
source
            
echo "Adding extra PPAs to your system...Please wake up and press Enter when needed..."
sudo add-apt-repository ppa:noobslab/themes
sudo add-apt-repository ppa:noobslab/icons
sudo add-apt-repository ppa:noobslab/nitrux-os
sudo add-apt-repository ppa:noobslab/nitrux-os
sudo add-apt-repository ppa:noobslab/apps
sudo add-apt-repository ppa:noobslab/noobslab-conky

description

add-apt-repository is a script which adds an external APT repository to either /etc/apt/sources.list or a file in /etc/apt/sources.list.d/ or removes an already existing repository.

The options supported by add-apt-repository are:

-h, --help Show help message and exit

-r, --remove Remove the specified repository

-y, --yes Assume yes to all queries

-k, --keyserver Use a custom keyserver URL instead of the default

copyright

This manual page was written by Chow Loong Jin <hyperair[:at:]gmail[:dot:]com> for the Debian system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.

On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses.

repository string

REPOSITORY can be either a line that can be added directly to sources.list(5), in the form ppa:<user>/<ppa-name> for adding Personal Package Archives, or a distribution component to enable.

In the first form, REPOSITORY will just be appended to /etc/apt/sources.list.

In the second form, ppa:<user>/<ppa-name> will be expanded to the full deb line of the PPA and added into a new file in the /etc/apt/sources.list.d/ directory. The GPG public key of the newly added PPA will also be downloaded and added to apt’s keyring.

In the third form, the given distribution component will be enabled for all sources.


see also

sources.list

How can this site be more helpful to YOU ?


give  feedback