26-10-2022, 17:30
1
Wszystko działa bo to w zasadzie tylko ostrzeżenie, o czym świadczy litera W na początku.
Komunikat wskazuje gdzie szukać dalszych informacji.
i tam we wskazanej sekcji mamy:
Możesz skorzystać z jednej z metod opisanych w https://askubuntu.com/questions/1398344/...ing-system
Takie najszybsze, aczkolwiek niezalecane "rozwiązanie", to:
Takie zalecane to wylistowanie kluczy:
i potem przenosiny
i na koniec usunięcie klucza ze starej lokalizacji
Przykład:
Komunikat wskazuje gdzie szukać dalszych informacji.
Cytat:Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for detailsTak więc
Kod:
$man apt key
Cytat:DEPRECATION
Except for using apt-key del in maintainer scripts, the use of apt-key
is deprecated. This section shows how to replace existing use of
apt-key.
If your existing use of apt-key add looks like this:
wget -qO- https://myrepo.example/myrepo.asc | sudo apt-key add -
Then you can directly replace this with (though note the recommendation
below):
wget -qO- https://myrepo.example/myrepo.asc | sudo tee
/etc/apt/trusted.gpg.d/myrepo.asc
Make sure to use the "asc" extension for ASCII armored keys and the
"gpg" extension for the binary OpenPGP format (also known as "GPG key
public ring"). The binary OpenPGP format works for all apt versions,
while the ASCII armored format works for apt version >= 1.4.
Recommended: Instead of placing keys into the /etc/apt/trusted.gpg.d
directory, you can place them anywhere on your filesystem by using the
Signed-By option in your sources.list and pointing to the filename of
the key. See sources.list(5) for details. Since APT 2.4,
/etc/apt/keyrings is provided as the recommended location for keys not
managed by packages. When using a deb822-style sources.list, and with
apt version >= 2.4, the Signed-By option can also be used to include
the full ASCII armored keyring directly in the sources.list without an
additional file.
Możesz skorzystać z jednej z metod opisanych w https://askubuntu.com/questions/1398344/...ing-system
Takie najszybsze, aczkolwiek niezalecane "rozwiązanie", to:
Kod:
$cd /etc/apt
$sudo cp trusted.gpg trusted.gpg.d
Takie zalecane to wylistowanie kluczy:
Kod:
$sudo apt-key list
Kod:
$sudo apt-key export id_klucza | sudo gpg --dearmour -o /etc/apt/trusted.gpg.d/nazwa.gpg
Kod:
$sudo apt-key del id_klucza
Przykład:
Cytat:Example fix:
For this warning message with sudo apt update...
W: http://ppa.launchpad.net/team-xbmc/ppa/u.../InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.
We look in sudo apt-key list and find this entry for xbmc...
pub rsa1024 2009-01-20 [SC]
1897 01DA 570C 56B9 488E F60A 6D97 5C47 91E7 EE5E
uid [ unknown] Launchpad PPA for XBMC for Linux
Then we convert this entry to a .gpg file, using the last 8 numeric characters from above...
sudo apt-key export 91E7EE5E | sudo gpg --dearmour -o /etc/apt/trusted.gpg.d/team-xbmc.gpg
Repeat the above commands for each warning message generated by sudo apt update.
Zasady forum | Poradniki i najczęstsze pytania | 90% odpowiedzi na wszystkie pytania
A imię jego czterdzieści i cztery.
A imię jego czterdzieści i cztery.