PPA: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(→Step 3) |
Thomas (Diskussion | Beiträge) (→Step 1) |
||
| (2 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt) | |||
| Zeile 1: | Zeile 1: | ||
| + | =Muss installiert sein= | ||
| + | *apt-get install software-properties-common | ||
| + | |||
=Step 1= | =Step 1= | ||
| − | On the PPA's overview page, look for the heading that reads Adding this PPA to your system. Make a note of the PPA's location, which looks like: | + | Auf der PPA Übersichtsseite, halten sie Ausschau nach der Überschrift die besagt: "Adding this PPA to your system". Machen sie eine Notiz von dem Ort des PPA's, was folgendermaßen aussieht: |
| + | <!--On the PPA's overview page, look for the heading that reads Adding this PPA to your system. Make a note of the PPA's location, which looks like:--> | ||
ppa:gwibber-daily/ppa | ppa:gwibber-daily/ppa | ||
| + | |||
=Step 2= | =Step 2= | ||
| − | Open a terminal and enter: | + | Öffnen sie ein Terminal und geben sie ein: |
| + | <!-- Open a terminal and enter: --> | ||
sudo add-apt-repository ppa:user/ppa-name | sudo add-apt-repository ppa:user/ppa-name | ||
=Step 3= | =Step 3= | ||
| − | Now, as a one-off, you should tell your system to pull down the latest list of software from each archive it knows about, including the PPA you just added: | + | Jetzt sollte man noch die Repositorys updaten: |
| + | |||
| + | <!--Now, as a one-off, you should tell your system to pull down the latest list of software from each archive it knows about, including the PPA you just added: --> | ||
sudo apt-get update | sudo apt-get update | ||
| − | Now you're ready to start installing software from the PPA! | + | |
| + | Jetzt sind sie bereit Software vom PPA zu installieren! | ||
| + | |||
| + | <!--Now you're ready to start installing software from the PPA!--> | ||
=Per Skript= | =Per Skript= | ||
| − | + | cat /usr/local/sbin/ppa | |
#!/bin/bash | #!/bin/bash | ||
add-apt-repository $1 | add-apt-repository $1 | ||
apt-get update | apt-get update | ||
| − | ppa | + | ppa ppa:gwibber-daily/ppa |
Aktuelle Version vom 2. Januar 2018, 14:08 Uhr
Muss installiert sein
- apt-get install software-properties-common
Step 1
Auf der PPA Übersichtsseite, halten sie Ausschau nach der Überschrift die besagt: "Adding this PPA to your system". Machen sie eine Notiz von dem Ort des PPA's, was folgendermaßen aussieht:
ppa:gwibber-daily/ppa
Step 2
Öffnen sie ein Terminal und geben sie ein:
sudo add-apt-repository ppa:user/ppa-name
Step 3
Jetzt sollte man noch die Repositorys updaten:
sudo apt-get update
Jetzt sind sie bereit Software vom PPA zu installieren!
Per Skript
cat /usr/local/sbin/ppa #!/bin/bash add-apt-repository $1 apt-get update
ppa ppa:gwibber-daily/ppa