diff options
author | drduh <github@duh.to> | 2023-10-15 16:19:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-15 16:19:26 -0700 |
commit | 703c6aa37f45b68ec872de08d064a31aac8ffa93 (patch) | |
tree | d459449d524858b4e81e362da560b109e949c2c8 | |
parent | Merge pull request #387 from dkarlovi/patch-1 (diff) | |
parent | add note for installing yubikey-manager on Debian 12 (diff) | |
download | YubiKey-Guide-703c6aa37f45b68ec872de08d064a31aac8ffa93.tar.gz |
Merge pull request #386 from Xronophobe/docs/update-debian-12-live
add notes for installing #Required Software on Debian 12
-rw-r--r-- | README.md | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -219,6 +219,25 @@ $ sudo apt update ; sudo apt -y upgrade $ sudo apt -y install wget gnupg2 gnupg-agent dirmngr cryptsetup scdaemon pcscd secure-delete hopenpgp-tools yubikey-personalization ``` +**Note** +As of 2023 June, the `hopenpgp-tools` is not part of the latest Debian 12 stable package repositories. + +To install it, go to [https://packages.debian.org/sid/hopenpgp-tools](https://packages.debian.org/sid/hopenpgp-tools) to select your architecture and then an ftp server. + +Edit `/etc/apt/sources.list` and add the ftp server: +``` +deb http://ftp.debian.org/debian sid main +``` + +and then add this to `/etc/apt/preferences` (or a fragment, e.g. `/etc/apt/preferences.d/00-sid`) so that APT still prioritizes packages from the stable repository over sid. + +``` +Package: * +Pin: release n=sid +Pin-Priority: 10 +``` + + **Note** Live Ubuntu images [may require modification](https://github.com/drduh/YubiKey-Guide/issues/116) to `/etc/apt/sources.list` and may need additional packages: ```console @@ -239,6 +258,9 @@ $ sudo service pcscd start $ ~/.local/bin/ykman openpgp info ``` +**Note** Debian 12 doesn't recommend installing non-Debian packaged Python applications globally. But fortunately, it isn't even necessary as `yubikey-manager` is available in the stable main repository: +`$ sudo apt install yubikey-manager`. + ## Fedora ```console |