SYNOPSIS
add-apt-repository [OPTIONS] REPOSITORY
...
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.
Para "deb http://deb.playonlinux.com/ bionic main"
, será acrescentado textualmente. Isso inclui ter a distribuição como bionic
, mesmo se você não estiver executando o Ubuntu Bionic 18.04. ( Observe que playonlinux
também está disponível no repositório multiverso. )
Para https://dl.winehq.org/wine-builds/ubuntu/
, o add-apt-repository irá inferir as partes ausentes:
- tipo (
deb
) - distribuição (
xenial
,artful
,bionic
, etc)
componente - (
main
)
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.
Isso se aplica a ppa:peek-developers/stable
. Sim, o host é assumido como sendo o Launchpad.
In the third form, the given distribution component will be
enabled for all sources.
Por exemplo universe
ou multiverse
Detalhes sobre o formato sources.list são de man sources.list
.