Installer Xfce4 sur Lunar Linux sur un Dell Precision 7560 avec NVIDIA RTX A4000
Charger le catalogue
lin moonbase
Automatiser les choix d'installation
(pour aller plus vite)
lunar set PROMPT_DELAY 0
Accepter les licences
lunar set ACCEPTED_LICENSES 'osi proprietary'
Reconstruire le noyau linux
lin linux
Installer Xorg
lin XOrg7
Installer le driver NVIDIA version 550
lin libvdpau NVIDIA
Installer des drivers de base
lin xf86-input-evdev xf86-input-mouse xinit setxkbmap gtk-doc
Installer XFCE4
lin xfce4 libxfce4util xfce4-systemload-plugin xfce4-setttings xfburn ristretto libxfce4ui xfce4-notifyd tumbler xfce4-volumed thunar-volman xfce4-panel xfce4-time-out-plugin orage xfce4-session xfce4-diskperf-plugin thunar-media-tags-plugin xfce4-appfinder xfce4-timer-plugin xfdesktop xfce4-eyes-plugin xfce4-netload-plugin xfce4-cpugraph-plugin xfce4-xkb-plugin parole exo xarchiver xfwm4 thunar-archive-plugin xfce4-verve-plugin xfce4-screensaver xfce4-clipman-plugin xfce4-mount-plugin xfce4-icon-theme mousepad xfce4-screenshooter xfwm4-themes xfce4-genmon-plugin xfdashboard xfce4-fsguard-plugin xfce4-whiskermenu-plugin garcon xfce4-datetime-plugin xfce4-cpufreq-plugin xfce4-power-manager xfce4-dict xfprint xfce4-dev-tools thunar-thumbnailers gtksourceview3 gigolo thunar xfce4-panel-profiles xfce4-battery-plugin xfce4-taskmanager xfce4-wavelan-plugin xfce4-sensors-plugin xfce4-notes-plugin xfce4-smartbookmark-plugin xfce4-mpc-plugin xfconf xfce4-weather-plugin xfce4-terminal xfce4-pulseaudio-plugin gkt+-3 pavucontrol
Installer des applications de bureau de base
lin firefox thunderbird libreoffice-bin wireshark epdfview cups cups-filters system-config-printer gutenprint vlc chromium youtube-dl gnutls
Ajouter un fichier pour le chargement correct de l'ordre des modules de Xorg
{
echo 'Section ''Module'''
echo ' Load ''vgatw'''
echo ' Load ''fb'''
echo ' Load ''shadowfb'''
echo ' Load ''shadow'''
echo ' Load ''glamoregl'''
echo 'EndSection'
} > /etc/X11/xorg.conf.d/01-modules.conf
Désactiver nouveau pour permettre au driver NVIDIA de se lancer
Désactiver nouveau qui se lie au démarrage du système et empêche le driver NVIDIA de se lancer proprement :
Modifier le fichier /etc/grub.d/10_linux.
Repérer la ligne
linux ${rel_dirname}/${basename} root=${linux_root_device_thisversion} ro ${args}
et la modifier ainsi :
linux ${rel_dirname}/${basename} root=${linux_root_device_thisversion} ro ${args} nouveau.modeset=0
- Régénérer le fichier de grub :
grub-mkconfig -o /boot/grub/grub.cfg
- Redémarrer :
reboot
Modifier la configuration de xinit
Modifier /etc/X11/xinit/xinitrc.
Descendre tout en bas du fichier et modifier comme suit :
#exec no -geometry 80x66+0+0 -name login
exec startxfce4 -name login
Démarrer startx
startx
↑ Haut de page