FreeNX无头服务器的分辨率提高

我正在无头的CentOS机器上运行FreeNX服务器,并且parsing度似乎被locking在800 x 600上。我尝试编辑xorg.conf文件,但是没有成功。

有没有人成功运行1280 x 1024分辨率的FreeNX远程,并可以发布工作configuration?

谢谢!

PS:这是我当前的xorg.cof文件的pastebin: http ://pastie.org/835308

据我所知,显示区域设置客户端时创build会话。

使用官方客户端。

点击configuration,select您想要更改的会话。

在显示组下方,select可用区域。

点击确定

使用当前video驱动程序(而不是vesa)使用无头的最好方法是使用“CRT-0”监视器:

Section "Screen" Identifier "Screen0" Device "Device0" Monitor "Monitor0" DefaultDepth 24 Option "ConnectedMonitor" "CRT-0" Option "UseEDID" "FALSE" SubSection "Display" Depth 24 Modes "1280x1024" EndSubSection EndSection 

驱动程序将尝试确定有效的模式,而当它是CRT-0时,驱动程序将无法获得模式,并将使用默认值(800×600)。因此,您需要明确告诉驱动程序使用“1280×1024”在Monitor0部分中:

 Section "Monitor" Identifier "Monitor0" VendorName "Fake Vendor" ModelName "Fake CRT" HorizSync 28.0 - 80.0 VertRefresh 48.0 - 75.0 ModeLine "1280x1024" 108.88 1280 1360 1496 1712 1024 1025 1028 1060 -h sync +vsync Option "DPMS" EndSection 

重新启动X和瞧!