[关闭]
@ZeroGeek 2015-12-09T11:18:09.000000Z 字数 949 阅读 1858

ubuntu14.04下使用双屏(Intel集成显卡)

linux


主要掌握 xrandr 的 用法

参考 :https://wiki.archlinux.org/index.php/Xrandr_(%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87)

1. 先通过xrandr查看设备情况,若能检测到外接屏幕就好办了(不能就要结合电脑,安装驱动)

zero@zero-dh:~$ xrandr
Screen 0: minimum 8 x 8, current 1920 x 1080, maximum 32767 x 32767
VGA1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 509mm x 286mm
1920x1080 60.0*+
1680x1050 60.0
1280x1024 75.0 60.0
1440x900 75.0 59.9
1280x720 60.0
1024x768 75.1 60.0
800x600 75.0 60.3
640x480 75.0 72.8 66.7 60.0
720x400 70.1
HDMI1 disconnected (normal left inverted right x axis y axis)
DP1 disconnected (normal left inverted right x axis y axis)
VIRTUAL1 disconnected (normal left inverted right x axis y axis)
DVI-1-0 connected
1280x1024 60.0 + 75.0
1152x864 75.0
1024x768 75.1 60.0
800x600 75.0 60.3
640x480 75.0 60.0
720x400 70.1

注意每个设备标识,所有操作都要依据自己电脑上设备的标识,这里以上面为例。

2. 使用addmode(直接使用output无法识别)

xrandr --addmode DVI-1-0 1280x1024

3. 使用output设置为右侧扩展屏(还有其它模式,请自行学习)

xrandr --output DVI-1-0 --right-of VGA1 --auto

4. 关闭外接显示器

xrandr --output DVI-1-0 --off

5. 设置为默认分辨率

xrandr -s 0

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注