1、了解设置的名称
直接运行xrandr(不带任何参数)就可以显示出当前的显示设备及设备的模式。
xdj@xdj-Presario-CQ42-Notebook-PC:~$ xrandr Screen 0: minimum 320 x 200, current 1280 x 768, maximum 1440 x 1440 LVDS connected 1280x768+0+0 (normal left inverted right x axis y axis) 310mm x 174mm 1366x768 59.6 + 1360x768 59.6 1280x768 59.6* 1280x720 59.6 1024x768 59.6 1024x600 59.6 800x600 59.6 800x480 59.6 640x480 59.6 DFP1 disconnected (normal left inverted right x axis y axis) CRT1 connected 1280x768+0+0 (normal left inverted right x axis y axis) 408mm x 255mm 1440x900 59.9 + 75.0 1280x1024 75.0 60.0 1280x960 75.0 60.0 1280x800 75.0 60.0 1152x864 75.0 59.9 1280x768 75.0 60.0* 1280x720 60.0 1024x768 75.0 72.0 70.1 60.0 1024x600 75.0 72.0 70.1 60.0 800x600 72.2 75.0 60.3 56.2 800x480 72.2 75.0 60.3 56.2 640x480 75.0 72.8 67.0 59.9
2、测试你的配置文件xorg.conf的内容是否支持多显!
可以运行:xrandr --output VGA --right-of LVDS --auto
测试下你的系统关于显示设备是否正确,如果提示超出屏幕大小限制,一般是因为xorg.conf设置有问题,可以在Section "Screen"中添加一虚拟屏的设置(粗体部分):
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
SubSection "Display"
Virtual 2560 1024
EndSubSection
EndSection
注:2560 1024是因为一个屏是1280*800(笔记本液晶),另一个是1280*1024(液晶显示器),宽取二屏之和,高取二者中最大值。
提示:有人说可以把此处设置的更大一些,不必根据当前的二个屏宽高,直接设到如4000x2000,这样以后外屏改变也不必重新设置xorg.conf的这段内容了,没试过所以这里仅仅提示一下!
3、xrandr常用命令(这里的VGA与LVDS分别换成第1步中的设备名,如VGA1、LVDS1):
xrandr --output VGA --same-as LVDS --auto
打开外接显示器(--auto:最高分辨率),与笔记本液晶屏幕显示同样内容(克隆)
xrandr --output VGA --same-as LVDS --mode 1280x1024
打开外接显示器(分辨率为1280x1024),与笔记本液晶屏幕显示同样内容(克隆)
xrandr --output VGA --right-of LVDS --auto
打开外接显示器(--auto:最高分辨率),设置为右侧扩展屏幕
xrandr --output VGA --off
关闭外接显示器
xrandr --output VGA --auto --output LVDS --off
打开外接显示器,同时关闭笔记本液晶屏幕(只用外接显示器工作)
xrandr --output VGA --off --output LVDS --auto
关闭外接显示器,同时打开笔记本液晶屏幕 (只用笔记本液晶屏)
参考文件:
j.apple free http://blog.chinaunix.net/uid-170694-id-2833685.html
http://old.slax.org/forum.php?action=view&parentID=30879&anchorid=37734#postid37734