31 lines
1.2 KiB
Markdown
31 lines
1.2 KiB
Markdown
|
# Configuration des OS
|
||
|
## Windows
|
||
|
WIP
|
||
|
|
||
|
## WSL
|
||
|
Commande pour lancer mon installation :
|
||
|
```bash
|
||
|
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 :
|
||
|
```bash
|
||
|
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 :
|
||
|
```bash
|
||
|
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` (dans `sec rsa4096/30F2B65B9246B6CA 2017-08-18 [SC]` c'est `30F2B65B9246B6CA`)
|
||
|
- Utilisé clé pour git : `git config --global user.signingkey <numéro de la clé>`
|