Nie jesteś zalogowany.
Jeśli nie posiadasz konta, zarejestruj je już teraz! Pozwoli Ci ono w pełni korzystać z naszego serwisu. Spamerom dziękujemy!
Prosimy o pomoc dla małej Julki — przekaż 1% podatku na Fundacji Dzieciom zdazyć z Pomocą.
Więcej informacji na dug.net.pl/pomagamy/.
Strony: 1
Cześć
Nawiązując do odświeżonego wątku w FAQ o repozytoriach..
Aktualna lista repozytoriów umieszczonych w chmurze Amazon Cloud lub Fastly.
Najszybsze aktualnie repozytoria Debiana:
### Debian Stabilny deb https://deb.debian.org/debian stable main contrib non-free deb-src https://deb.debian.org/debian stable main contrib non-free deb https://deb.debian.org/debian stable-updates main contrib non-free deb-src https://deb.debian.org/debian stable-updates main contrib non-free deb https://deb.debian.org/debian-security stable/updates main contrib non-free deb-src https://deb.debian.org/debian-security stable/updates main contrib non-free # Backporty stable deb https://deb.debian.org/debian/ buster-backports main contrib non-free deb-src https://deb.debian.org/debian buster-backports main contrib non-free ### Debian Testing deb https://deb.debian.org/debian testing main contrib non-free deb-src https://deb.debian.org/debian testing main contrib non-free deb https://deb.debian.org/debian testing-updates main contrib non-free deb-src https://deb.debian.org/debian testing-updates main contrib non-free deb https://deb.debian.org/debian-security testing-security main contrib non-free deb-src https://deb.debian.org/debian-security testing-security main contrib non-free # Backporty testing deb https://deb.debian.org/debian/ testing-backports main contrib non-free deb-src https://deb.debian.org/debian testing-backports main contrib non-free ### Debian Sid - wersja niestabilna deb https://deb.debian.org/debian sid main contrib non-free deb-src https://deb.debian.org/debian sid main contrib non-free
Może komuś się przyda ;)
PS:
### Google Chrome - tylko amd64 deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main
Ostatnio edytowany przez Jacekalex (2020-02-07 01:42:20)
Offline
Przy okazji można prosić o akualne klucze publiczne do repozytoriów.
Offline
Proszę:
Skrypt do pobierania kluczy.
#!/bin/sh if [ `id -u` -ne 0 ]; then echo "Tylko root może dodać klucze" exit 1 fi echo -n "Aktualizacja listy pakietów (może trochę potrwać)... " && \ apt-get update >/dev/null 2>/tmp/apt-get-update-errors && echo "OK" if ! grep -q NO_PUBKEY /tmp/apt-get-update-errors; then echo "Wszystkie klucze są dodane, nie ma nic do roboty." rm -f /tmp/apt-get-update-errors exit 0 fi for KEY in `awk '/NO_PUBKEY/ {print $NF}' /tmp/apt-get-update-errors`; do echo "Przetwarzanie klucza $KEY:" echo -n " -> pobieranie klucza z serwera... " && \ gpg --keyserver pgp.mit.edu --recv-keys "$KEY" >/dev/null 2>&1 && \ echo "OK" && echo -n " -> dodawanie klucza do bazy... " && \ gpg --armor --export "$KEY" | apt-key add - done rm -f /tmp/apt-get-update-errors
Sznurek:
https://dug.net.pl/tekst/23/podpisy_cyfrowe_repozytoriow_(klucze_gpg)/
Pozdro
Ostatnio edytowany przez Jacekalex (2020-01-30 16:45:42)
Offline
aptitude show debian-archive-keyring Pakiet: debian-archive-keyring Wersja: 2019.1 Stan: zainstalowany Zainstalowany automatycznie: nie Wieloarchitekturowość: obca Priorytet: ważny Sekcja: misc Opiekun: Debian Release Team <packages@release.debian.org> Architektura: all Rozmiar rozpakowanego: 203 k Opis: Archiwum kluczy GnuPG dla archiwów Debiana Projekt Debian cyfrowo podpisuje wypuszczane przez siebie pliki. Pakiet ten zawiera archiwum kluczy używanych do tego celu. Znaczniki: role::data, security::authentication, suite::debian
Offline
@Jacekalex -- trochę przekombinowałeś z tym skryptem. Zamiast używać bezpośrednio gpg, który tworzy keyring dla root'a (jest zupełnie zbędny), lepiej jest korzystać z apt-key, z którego i tak korzystasz. xD Przykład:
# apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 0xCD6289E999EA819D
Offline
To nie ja przekobinowłem, ino azhag, który naskrobał tutka o kluczach.
Z resztą wsio rawno, na roocie raczej nie używasz środowiska graficznego, poczty czy komunikatorow, także czy te klucze tam przez jakiś czas są, czy ich nie ma, nie wielka różnica.
Można też wyeksportować zmienną $GNUPGHOME ustawić np na /tmp/gnupg/ po czym ten folder zaorać.
Efekt będzie zasadniczo taki sam.
Offline
Strony: 1