terminal中运行xrandr命令,可以显示出当前的显示设备及设备的模式。
Screen 0: minimum 320 x 200, current 1280 x 1024, maximum 8192 x 8192
DVI-0 connected 1280x1024+0+0 (normal left inverted right x axis y axis) 338mm x 270mm
1280x1024 60.0*+ 75.0
1280x960 60.0
1152x864 75.0 70.0
1024x768 75.1 70.1 60.0
832x624 74.6
800x600 72.2 75.0 60.3 56.2
640x480 72.8 75.0 66.7 60.0
720x400 70.1
DIN disconnected (normal left inverted right x axis y axis)
DVI-1 connected 1280x1024+0+0 (normal left inverted right x axis y axis) 338mm x 270mm
1280x1024 60.0*+ 75.0
1152x864 75.0
1024x768 75.1 70.1 60.0
832x624 74.6
800x600 72.2 75.0 60.3 56.2
640x480 72.8 75.0 66.7 60.0
720x400 70.1
注意这里有两个显示器设备名称DVI-0和DVI-1。
所以我们运行如下命令:xrandr --output DVI-1 --right-of DVI-0 --auto
ok了,就这么简单!
不过这样延伸出来的桌面是有任务栏的,我觉得不影响。如下:
这样设置只是暂时的,重启之后不生效了。关于永久保存的操作,需要设置window manager的默认初始化文件,我这里用的是gdm。
找到etc/gdm/init/default
找到以下两行:
PATH=/usr/bin:$PATH
OLD_IFS=$IFS
在这两行中间添加我们的命令
xrandr --output DVI-1 --right-of DVI-0 --auto
然后保存!