ArchLinux vs MSI GE60

Installation et configuration de archlinux sur un portable msi ge60 avec le bureau xfce4.

Wifi

pacman -S dialog wpa_supplicant
ls /sys/class/net
wifi-menu %INTERFACE%

Graphismes

pacman -S xf86-video-intel intel-dri nvidia bumblebee bbswitch primus mesa

Touchpad

pacman -S xf86-input-synaptics

Clavier

Configuration TTY, /etc/vconsole.conf

KEYMAP=fr-pc

Configuration Xorg, /etc/X11/xorg.conf.d/1.-keyboard.conf

Section "InputClass"
    Identifier		"Keyboard Layout"
    Driver			"evdev"
    MatchIsKeyboard		"yes"
    MatchDevicePath		"/dev/input/event*"
    Option			"XkbLayout"	"fr"
    Option			"XkbVariant"	"latin9"
EndSection

Touches multimédias

Gestion du volume:

pacman -S xfce4-volumed

Ouverture du tiroir DVD, /etc/systemd/system/setkeycodes.service

[Unit]
Description=Paramétrage touches multimédias
[Service]
Type=onshot
ExecStart=/usr/bin/setkeycodes e042 161
[Install]
WantedBy=multi-user.target

Touche P1

xmodmap -pke > ~/.Xmodmap

Editer .Xmodmap

keycode 120 = XF86Launch0

Ajouter dans ~/.xinitrc

if [ -f $HOME/.Xmodmap ]; then
 
<span style="white-space: pre;"> </span>/usr/bin/xmodmap $HOME/.Xmodmap
 
fi

Je mettrai à jour cet article jusqu’à ce que tous les périphériques du portable soient opérationnels.