debian; ubuntu; kali / linux / 平时应用 / 未分类 · 2015年12月25日

linux桌面(Dedian Ubuntu kali) 多显示器支持

ubuntu 自带的显示器设置多显示器支持在 fvwm下竟然不起效果,GUI的不行,于是想到CLI的 arandr
#install
sudo apt-get install arandr
xrandr是arandr配置显示器分辨率的命令行工具
#列出目前環境支援的解析度和頻率
xrandr -q
LVDS表示笔记本的显示器,VGA1 也可能是HDMI1 表示外接显示器,可以拖到两个位置 上图位置表示外接显示器为右扩展
举例启用外接显示器并设置其分辨率为1920*1080 :
#at home on 17''
#xrandr --output VGA1 --same-as LVDS1 --mode 1024x768 --output LVDS1 --mode 1366x768
# 24 1920*1080 #20160823
xrandr --output HDMI-1 --same-as LVDS-1 --mode 1366x768 --output HDMI-1 --mode 1920x1080

# 24 1920*1080 这个不行了
xrandr --output HDMI1 --mode 1920x1080 --output LVDS1 --mode 1366x768
只启用外接显示器并设置其分辨率为1440×900 :

xrandr --output VGA1 --mode 1440x900 --output LVDS1 --mode 1366x768
xrandr --output VGA1 --mode 1440x900 --output LVDS1 --off
xrandr --output VGA-0 --same-as LVDS --mode 1440x900

xrandr –output VGA1 –mode 1440×900 –output LVDS1 –on
有用的参考
http://blog.csdn.net/pfanaya/article/details/7749107
http://imtx.me/archives/1695.html
https://help.ubuntu.com/lts/ubuntu-help/display-dual-monitors.html
http://www.xyfish.com/thread-216-1-1.html
http://xuxd32.blog.163.com/blog/static/48121933200963004744713/
xrandr — fvwm 双显示器
Xrandr (简体中文)