Configuration de mes différents OS
.config | ||
README.md | ||
ubuntu.sh | ||
wsl.sh |
Configuration des OS
Windows
WIP
WSL
Commande pour lancer mon installation :
wget -q --show-progress https://git.kennel.ml/Anri/confOS/raw/branch/main/wsl.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
Manjaro
Commande pour lancer mon installation :
wget -q --show-progress https://git.kennel.ml/Anri/confOS/raw/branch/main/manjaro.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
[outdated] Ubuntu
Commande pour lancer mon installation :
wget -q --show-progress https://git.kennel.ml/Anri/confOS/raw/branch/main/ubuntu.sh -O tmp.sh && bash tmp.sh; rm tmp.sh
Détails concernant l'import/export de la clé GPG :
- Exporté clé publique :
gpg --output public.gpg --armor --export user@email
- Exporté clé privé :
gpg --output private.gpg --armor --export-secret-key user@email
- Importé clés publique :
gpg --import public.gpg
- Importé clés privé :
gpg --allow-secret-key-import --import private.gpg
- Récupérer numéro de clé (
sec
) :gpg --list-secret-keys --keyid-format LONG user@email
(danssec rsa4096/30F2B65B9246B6CA 2017-08-18 [SC]
c'est30F2B65B9246B6CA
) - Utilisé clé pour git :
git config --global user.signingkey <numéro de la clé>