Configuration de mes différents OS
Find a file
2022-07-14 01:46:58 +02:00
.config hide warning on latest WSL version 2022-06-28 12:07:59 +02:00
.local/share/applications Add spotify shortcut 2022-07-14 01:45:46 +02:00
.mozilla/firefox add firefox perf 2022-06-06 17:52:38 +02:00
archinstall use VLC instead of totem 2022-07-10 15:20:49 +02:00
arch.sh fix wget 2022-07-14 01:46:58 +02:00
ExplorerPatcher.reg Add ExplorerPatcher 2022-06-09 14:27:54 +02:00
manjaro.sh rename file 2022-06-05 20:29:35 +02:00
README.md Merge branch 'main' of git.kennel.ml:Anri/confOS 2022-06-15 12:04:16 +02:00
uad_exported_selection.txt Add android apps 2022-06-15 12:03:50 +02:00
ubuntu.sh Update properly Java with bigupdate abbreviation 2022-05-12 16:00:57 +02:00
W10Privacy.ini Ajoute la configuration pour Windows 🎉 2022-03-30 19:37:19 +02:00
wsl.sh Update properly Java with bigupdate abbreviation 2022-05-12 16:00:57 +02:00

Configuration des OS

Pour rechercher efficacement, ^F "===" recherche catégorie par catégorie.

Windows 11

Nécessite W10Privacy

Firefox

Placer user.js dans %APPDATA%\Mozilla\Firefox\Profiles (dossier *.default-release).

Nécessite ExplorerPatcher (dernière configuration 22000.708.46.5)

WSL (Ubuntu)

Commande pour lancer mon installation :

# Lors de l'installation il vous sera demandé de choisir
# une configuration mail, choisir : "No configuration"
curl https://git.kennel.ml/Anri/confOS/raw/branch/main/wsl.sh -s | bash

Arch

Procédure ISO

Layout FR

loadkeys fr
Connexion en WiFi

Récupération clé hashée

wpa_passhrase <SSID> <clé WIFI> > /var/lib/iwd/<SSID>.psk

Ajout entête

echo -e "[Security]\nPreSharedKey=" >> /var/lib/iwd/<SSID>.psk

Modification fichier pour ne garder que l'entête

nano /var/lib/iwd/<SSID>.psk

Connexion au WiFi

iwctl station wlan0 connect <SSID>

Copié la configuration

run.sh

curl -o run.sh -L lstu.fr/m_ai_r

Lancé la configration

Rendre le script exécutable

chmod +x run.sh

Lancer le script

./run.sh

Ne pas aller dans le chroot à la fin de l'installation et redémarrer le pc

reboot

Commande pour lancer mon installation :

curl https://git.kennel.ml/Anri/confOS/raw/branch/main/arch.sh -s | sudo bash

Android

Avec UAD, ma liste d'applications est uad_exported_selection.txt.

Ici un petit descriptif de quelques applications que je désactive qui sont mauvaise.

[outdated] Manjaro

Commande pour lancer mon installation :

curl https://git.kennel.ml/Anri/confOS/raw/branch/main/manjaro.sh -s | bash

[outdated] Ubuntu

Commande pour lancer mon installation :

curl https://git.kennel.ml/Anri/confOS/raw/branch/main/ubuntu.sh -s | bash

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é>

Détails concernant Git :

  • git config --global user.email "you@example.com"
  • git config --global user.name "Your Name"