HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

tlmgr key — Manage GPG keys used to verify TeX Live databases. More information: <https://www.tug.org/texlive/do

Submitted by: @import:tldr-pages··
0
Viewed 0 times
keyscommandgpgclimanageusedtlmgr keyverify

Problem

How to use the tlmgr key command: Manage GPG keys used to verify TeX Live databases. More information: <https://www.tug.org/texlive/doc/tlmgr.html#key>.

Solution

tlmgr key — Manage GPG keys used to verify TeX Live databases. More information: <https://www.tug.org/texlive/doc/tlmgr.html#key>.

List all keys for TeX Live:
tlmgr key list


Add a key from a specific file:
sudo tlmgr key add {{path/to/key.gpg}}


Add a key from stdin:
cat {{path/to/key.gpg}} | sudo tlmgr key add -


Remove a specific key by its ID:
sudo tlmgr key remove {{key_id}}

Code Snippets

List all keys for TeX Live

tlmgr key list

Add a key from a specific file

sudo tlmgr key add {{path/to/key.gpg}}

Add a key from `stdin`

cat {{path/to/key.gpg}} | sudo tlmgr key add -

Remove a specific key by its ID

sudo tlmgr key remove {{key_id}}

Context

tldr-pages: common/tlmgr key

Revisions (0)

No revisions yet.