Système

MéthodeVérification des sources

1
sudo nano /etc/apt/sources.list
2
1
deb http://fr.archive.ubuntu.com/ubuntu/ kinetic main restricted
2
# deb-src http://fr.archive.ubuntu.com/ubuntu/ kinetic main restricted
3
4
deb http://fr.archive.ubuntu.com/ubuntu/ kinetic-updates main restricted
5
# deb-src http://fr.archive.ubuntu.com/ubuntu/ kinetic-updates main restricted
6
7
deb http://fr.archive.ubuntu.com/ubuntu/ kinetic universe
8
# deb-src http://fr.archive.ubuntu.com/ubuntu/ kinetic universe
9
deb http://fr.archive.ubuntu.com/ubuntu/ kinetic-updates universe
10
# deb-src http://fr.archive.ubuntu.com/ubuntu/ kinetic-updates universe
11
12
deb http://fr.archive.ubuntu.com/ubuntu/ kinetic multiverse
13
# deb-src http://fr.archive.ubuntu.com/ubuntu/ kinetic multiverse
14
deb http://fr.archive.ubuntu.com/ubuntu/ kinetic-updates multiverse
15
# deb-src http://fr.archive.ubuntu.com/ubuntu/ kinetic-updates multiverse
16
17
deb http://fr.archive.ubuntu.com/ubuntu/ kinetic-backports main restricted universe multiverse
18
# deb-src http://fr.archive.ubuntu.com/ubuntu/ kinetic-backports main restricted universe multiverse
19
20
deb http://security.ubuntu.com/ubuntu kinetic-security main restricted
21
# deb-src http://security.ubuntu.com/ubuntu kinetic-security main restricted
22
deb http://security.ubuntu.com/ubuntu kinetic-security universe
23
# deb-src http://security.ubuntu.com/ubuntu kinetic-security universe
24
deb http://security.ubuntu.com/ubuntu kinetic-security multiverse
25
# deb-src http://security.ubuntu.com/ubuntu kinetic-security multiverse
26
1
sudo apt update
2
sudo apt-get install linux-image-$(uname -r|sed 's,[^-]*-[^-]*-,,') linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') 
3

MéthodeApplications système

1
sudo apt-get install mc
2
sudo apt install ubuntu-restricted-extras
3
sudo apt install rar unrar 
4
sudo apt-get install cifs-utils apt-transport-https gparted dconf-editor alacarte grsync stacer timeshift curl net-tools dosfstools mtools
5
sudo apt install keepassxc

MéthodeInstallation préalable à l'utilisation des fichiers AppImage

1
sudo apt install libfuse2
2

MéthodeKeepassXC : gestion des mots de passe

1
sudo add-apt-repository ppa:phoerious/keepassxc
2
sudo apt update
3
sudo apt install keepassxc

MéthodeClavier Apple Extra Plat

1
sudo apt install sysfsutils
2
sudo nano /etc/sysfs.conf

Ajout de la ligne ci-dessous au fichier :

1
module/hid_apple/parameters/fnmode = 2

Ajout d'une configuration de clavier :

1
sudo cp /usr/share/X11/xkb/symbols/macintosh_vndr/fr /usr/share/X11/xkb/symbols/mac2
2
sudo nano /usr/share/X11/xkb/symbols/mac2

Remplacer "LSGT" par "TLDE" et inversement pour inverser le positionnement des touches "@" et "<" dans cette config.

Modifier le fichier /usr/share/X11/xkb/rules/evdev.xml (en faire une copie par sécurité avant).

1
sudo nano /usr/share/X11/xkb/rules/evdev.xml

Ajouter dans la section <layoutList></layoutList>, juste après la section <modelList></modelList> :

1
<layout>
2
<configItem>
3
<name>mac2</name>
4
<shortDescription>FrMac2</shortDescription>
5
<description>Français (Mac clavier Apple extra-plat)</description>
6
<languageList>
7
<iso639Id>fra</iso639Id>
8
</languageList>
9
</configItem>
10
</layout>

Redémarrer.

Ouvrir Paramètres → Saisie de texte et ajouter un nouveau clavier dans la liste. Vous devriez avoir un clavier "Français (Mac clavier Apple extra-plat)". Ajoutez-le et sélectionnez-le comme clavier actuel.

Vous devriez avoir vos "@#" et "<>" au bon endroit, et ce, à chaque démarrage !