当前位置: 技术问答>linux和unix
X 800*600屏幕如何虚拟1024*768屏幕 求解
来源: 互联网 发布时间:2017-04-01
本文导语: 各位高手: 请问:按1024*768设计完成,无自适应显示分辨率功能的程序,要运行在一只配800*600分辨率的linux终端上,请问有没有一个程序,将800*600分辨率的显示器,虚拟成1个1024*768的显示器,供系统运行X,让...
各位高手:
请问:按1024*768设计完成,无自适应显示分辨率功能的程序,要运行在一只配800*600分辨率的linux终端上,请问有没有一个程序,将800*600分辨率的显示器,虚拟成1个1024*768的显示器,供系统运行X,让系统认为当前的显示器就是一个1024*768的显示器,并正确显示内容1024*768的内容?
请知道配置方法的高手赐教。
在此先谢过了。。。
请问:按1024*768设计完成,无自适应显示分辨率功能的程序,要运行在一只配800*600分辨率的linux终端上,请问有没有一个程序,将800*600分辨率的显示器,虚拟成1个1024*768的显示器,供系统运行X,让系统认为当前的显示器就是一个1024*768的显示器,并正确显示内容1024*768的内容?
请知道配置方法的高手赐教。
在此先谢过了。。。
|
我改了试下,当多个分辨率时,居然是自适应的,强制改成要使用的高分辨率,会显示不全,界面有很大的偏移
能做到低分辨率机器上模拟高分辨率这样的事情,我也只知道虚拟机可以,可是楼主需要真实物理机环境,暂时想不到办法,刚才搜了下,好像也没有这样的软件
楼主再搜搜看,等你的结果
能做到低分辨率机器上模拟高分辨率这样的事情,我也只知道虚拟机可以,可是楼主需要真实物理机环境,暂时想不到办法,刚才搜了下,好像也没有这样的软件
楼主再搜搜看,等你的结果
|
这个是我的 xorg.conf,楼主参考试试
#Option "AutoAddDevices" "False"
#Option "AllowEmptyInput" "False"
#Option "AutoEnableDevices" "True"
#Option "DefaultModes" "bool"
Section "ServerFlags"
Option "DontVTSwitch" "True"
EndSection
Section "Monitor"
identifier "Monitor0"
Option "DPMS"
HorizSync 30 - 62
VertRefresh 50 - 70
DisplaySize 270 203
EndSection
Section "Device"
identifier "Card0"
Option "ModeSetClearScreen" "on"
Driver "vesa"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1024x768"
EndSubSection
EndSection
#Option "AutoAddDevices" "False"
#Option "AllowEmptyInput" "False"
#Option "AutoEnableDevices" "True"
#Option "DefaultModes" "bool"
Section "ServerFlags"
Option "DontVTSwitch" "True"
EndSection
Section "Monitor"
identifier "Monitor0"
Option "DPMS"
HorizSync 30 - 62
VertRefresh 50 - 70
DisplaySize 270 203
EndSection
Section "Device"
identifier "Card0"
Option "ModeSetClearScreen" "on"
Driver "vesa"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1024x768"
EndSubSection
EndSection
|
不知道有没有这样的程序
楼主可以修改Linux终端上 xorg.conf 里面的配置
可以这样试试,注意红色部分
楼主可以修改Linux终端上 xorg.conf 里面的配置
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1024x768" "800x600"
EndSubSection
EndSection
可以这样试试,注意红色部分
|
Modes "1024x768" "800x600"