老的上网本n148,分辨率只有1024600,安装了lubuntu后想用vga线连接到大屏幕上玩,用xrandr命令,其中复制模式时,
xrandr --output LVDS1 --same-as VGA1 --auto
xrandr --output VGA1 --same-as LVDS1 --auto
这两种效果是不同的,第2种是在19201080的左上方1024*600的区域显示LVDS1的效果,所以如果复制模式不能达到效果,就换换顺序试一下啊
Linux下查看显示器输出状态以及修改显示器工作模式(复制 or 扩展)
//关闭显示器VGA1
xrandr --output VGA1 --off
//开启显示器VGA1
xrandr --output VGA1 --auto
//关闭显示器LVDS1
xrandr --output LVDS1 --off
//开启显示器LVDS1
xrandr --output LVDS1 --auto
//打开VGA1,同时关闭LVDS1
xrandr --output VGA1 --auto --output LVDS1 --off
//关闭VGA1,同时打开LVDS1
xrandr --output VGA1 --off --output LVDS1 --auto
//扩展模式时,将LVDS1显示在VGA1的左侧
xrandr --output LVDS1 --left-of VGA1 --auto
//扩展模式时,将LVDS1显示在VGA1右侧.
xrandr --output LVDS1 --right-of VGA1 --auto
//从扩展模式变成复制模式.
xrandr --output LVDS1 --same-as VGA1 --auto
//设定主显示器.
xrandr --output HDMI1 --auto --primary
本文详细介绍了在Linux环境下,如何使用xrandr命令配置双屏显示,包括切换显示器开闭状态、实现屏幕复制与扩展模式,以及调整主显示器设置等实用技巧。
1662

被折叠的 条评论
为什么被折叠?



