Fedora30 unter VMWare auf 1920x1080 einstellen

02.06.2019 - Lesezeit: 2 Minuten
  • Zuerst Wayland deaktivieren
$ sudo nano /etc/gdm/custom.conf
[daemon]
# Uncomment the line below to force the login screen to use Xorg
WaylandEnable=false
  • Reboot
  • mit cvt eine Modeline für die Auflösung 1920x1080 berechnen:
    $ cvt 1920 1080
    # 1920x1080 59.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 MHz
    Modeline "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync
  • mit xrandr die neue Modeline bekanntmachen
    $ xrandr --newmode "1920x1080"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync
  • mit xrandr die neue Modeline hinzufügen
    $ xrandr --addmode Virtual1 "1920x1080"
  • mit xrandr die neue Modeline aktivieren
    $ xrandr --output Virtual1 --mode "1920x1080"

Literatur

sudo nano /etc/gdm/custom.conf
cvt 1920 1080
xrandr --newmode "1920x1080"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync
xrandr --addmode Virtual1 "1920x1080"
xrandr --output Virtual1 --mode "1920x1080"
Tags: Fedora xrandr

VMWare 12.x als Gast KDE-Neon und die Monitorauflösung

02.02.2016 - Lesezeit: ~1 Minute

Nach dieser Beschreibung von axebase.net vorgehen

$ cvt 1920 1200 60
# 1920x1200 59.88 Hz (CVT 2.30MA) hsync: 74.56 kHz; pclk: 193.25 MHz
Modeline "1920x1200_60.00"  193.25  1920 2056 2256 2592  1200 1203 1209 1245 -hsync +vsync
$ sudo nano /etc/X11/Xsession.d/45custom-xrandr-settings

Die folgende Zeile eintragen:

randr --newmode "1920x1200_60.00"  193.25  1920 2056 2256 2592  1200 1203 1209 1245 -hsync +vsync
$ sudo chmod +x /etc/X11/Xsession.d/45custom-xrandr-settings                                                                                                   
$ sudo reboot
Tags: VMWare xrandr