324 Jan. 10, 2023, 11:54 a.m.

Установка разрешения в рабочем окружении LXQt на VirtualBox

Задача: установить разрешение экрана для Full screen режими VirtualBox.

Временное решение:

xrandr --newmode "1920x1080"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync
xrandr --addmode Virtual1 1920x1080
xrandr --output Virtual1 --mode 1920x1080

Постоянное решение:

nano /etc/X11/xorg.conf.d/10-monitor.conf
Section "Monitor"
    Identifier "Virtual1"
    Modeline "p1920x1080"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync
    Option "PreferredMode" "p1920x1080"
EndSection

Источники

Getting 1920x1080 resolution or 16:9 aspect ratio on Ubuntu or Linux Mint