qubes-doc/LinuxHVMTips.md

57 lines
1.6 KiB
Markdown
Raw Normal View History

---
2015-04-10 20:17:45 +00:00
layout: doc
title: LinuxHVMTips
2015-04-10 20:17:45 +00:00
permalink: /doc/LinuxHVMTips/
redirect_from: /wiki/LinuxHVMTips/
---
Tips for Linux in HVM domain
============================
Screen resolution
-----------------
Some kernel/Xorg combination use only 640x480 in HVM, which is quite small. To enable maximum resolution, some changes in Xorg configuration are needed:
1. Force "vesa" video driver
2. Provide wide horizontal synchronization range
To achieve it (all commands run as root):
1. Generate XOrg configuratio (if you don't have it):
2015-04-10 20:17:45 +00:00
{% highlight trac-wiki %}
X -configure :1 && mv ~/xorg.conf.new /etc/X11/xorg.conf
2015-04-10 20:17:45 +00:00
{% endhighlight %}
2. Add HorizSync line to Monitor section, it should look something like:
2015-04-10 20:17:45 +00:00
{% highlight trac-wiki %}
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
HorizSync 30.0 - 60.0
EndSection
2015-04-10 20:17:45 +00:00
{% endhighlight %}
3. Change driver to "vesa" in Device section:
2015-04-10 20:17:45 +00:00
{% highlight trac-wiki %}
Section "Device"
# (...)
Identifier "Card0"
Driver "vesa"
VendorName "Technical Corp."
BoardName "Unknown Board"
BusID "PCI:0:2:0"
EndSection
2015-04-10 20:17:45 +00:00
{% endhighlight %}
Now you should get at least 1280x1024 and be able to choose other modes.
Qubes agents
------------
Linux Qubes agents are written with PV domain in mind, but it looks to be possible to run them also in HVM domain. However some work is required to achieve it. Check [this thread](https://groups.google.com/group/qubes-devel/browse_thread/thread/081df4a43e49e7a5).