Lenovo Thinkpad P52: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
| Zeile 2: | Zeile 2: | ||
=== Schriftgröße === | === Schriftgröße === | ||
| − | < | + | <pre> |
grub2-mkfont -s 36 -o /boot/grub2/fonts/LiberationsSans-Bold.pf2 /usr/share/fonts/liberation/LiberationSans-Bold.ttf | grub2-mkfont -s 36 -o /boot/grub2/fonts/LiberationsSans-Bold.pf2 /usr/share/fonts/liberation/LiberationSans-Bold.ttf | ||
| Zeile 16: | Zeile 16: | ||
grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg | grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg | ||
| − | </ | + | </pre> |
| + | == NVidia == | ||
| + | |||
| + | <pre> | ||
| + | dnf install akmod-nvidia-390xx nvidia-xconfig | ||
| + | dnf remove xorg-x11-drv-nouveau | ||
| + | echo "blacklist nouveau" >> /etc/modprobe.d/blacklist.conf | ||
| + | nvidia-xconfig | ||
| + | dnf reinstall kernel | ||
| + | akmods | ||
| + | </pre> | ||
Version vom 28. Dezember 2018, 10:59 Uhr
Grub
Schriftgröße
grub2-mkfont -s 36 -o /boot/grub2/fonts/LiberationsSans-Bold.pf2 /usr/share/fonts/liberation/LiberationSans-Bold.ttf vi /etc/default/grub GRUB_TIMEOUT=5 GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)" GRUB_DEFAULT=saved GRUB_DISABLE_SUBMENU=true GRUB_TERMINAL_OUTPUT="gfxterm" GRUB_CMDLINE_LINUX="resume=UUID=f2a89e8b-b9fd-4625-bada-2a53f882c0b9 rhgb quiet" GRUB_DISABLE_RECOVERY="true" GRUB_FONT="/boot/grub2/fonts/LiberationsSans-Bold.pf2" grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg
NVidia
dnf install akmod-nvidia-390xx nvidia-xconfig dnf remove xorg-x11-drv-nouveau echo "blacklist nouveau" >> /etc/modprobe.d/blacklist.conf nvidia-xconfig dnf reinstall kernel akmods