mirror of
https://github.com/Qubes-Community/Contents.git
synced 2024-10-01 01:05:51 -04:00
1.8 KiB
1.8 KiB
layout | title | permalink | redirect_from | |||
---|---|---|---|---|---|---|
doc | Linux HVM Tips | /doc/linux-hvm-tips/ |
|
Tips for Linux in HVM domain
How to fix bootup kernel error
If the HVM pauses on boot and shows a series of warnings, visit HVM Troubleshooting for a fix.
Screen resolution
Some kernel/Xorg combinations use only 640x480 in HVM, which is quite small. To enable maximum resolution, some changes in the Xorg configuration are needed:
- Force "vesa" video driver
- Provide wide horizontal synchronization range
To achieve it (all commands to be run as root):
-
Generate XOrg configuration (if you don't have it):
X -configure :1 && mv ~/xorg.conf.new /etc/X11/xorg.conf
-
Add HorizSync line to Monitor section, it should look something like:
Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName "Monitor Model" HorizSync 30.0 - 60.0 EndSection
-
Change driver to "vesa" in Device section:
Section "Device" # (...) Identifier "Card0" Driver "vesa" VendorName "Technical Corp." BoardName "Unknown Board" BusID "PCI:0:2:0" EndSection
Now you should get resolution of at least 1280x1024 and should be able to choose other modes.
Qubes agents
Linux Qubes agents are written primarily for PV qubes, but it is possible to run them also in a HVM qube. However some work may be required to achieve this. Check this thread.