Answers:
是的,您可以,但是--auto
正在做正确的事。而是执行以下操作:
xrandr --addmode VGA1 1024x768
xrandr --output VGA1 --mode 1024x768 --right-of LVDS1
对于在所有视频输出上都存在类似问题的其他用户,请先运行xrandr
以查看您拥有哪些输出。
~$ xrandr -q
Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 8192 x 8192
eDP1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 294mm x 165mm
1920x1080 60.0*+ 59.9 40.0
1680x1050 60.0 59.9
1600x1024 60.2
1400x1050 60.0
1280x1024 60.0
1440x900 59.9
1280x960 60.0
1360x768 59.8 60.0
1152x864 60.0
1024x768 60.0
800x600 60.3 56.2
640x480 59.9
VGA1 disconnected (normal left inverted right x axis y axis)
1024x768 60.0
HDMI1 disconnected (normal left inverted right x axis y axis)
DP1 disconnected (normal left inverted right x axis y axis)
1024x768 60.0
在这种情况下,主屏幕称为eDP1,其他输出为VGA1,HDMI1和DP1(微型DisplayPort)
例如,以720x480的强制输出到Mini DisplayPort
xrandr --addmode DP1 720x480
然后
xrandr --output DP1 --mode 720x480 --right-of eDP1
如果您有显示端口(例如DP1),并且由于未检测到VGA信号而需要将VGA信号发送到显示端口,则应改编Daniel Alder建议的适配器线路。假设您的正常屏幕是eDP1,而显示端口是DP1:
# Put your normal screen in 1024x768
xrandr --output eDP1 --mode 1024x768
# Add a mode for display port
xrandr --addmode DP1 1024x768
# Clone the normal screen to the display port
xrandr --output DP1 --mode 1024x768 --same-as eDP1
对我来说,当有一个框自动选择应将哪些VGA输入发送到投影仪时,它可以解决某些外部投影仪的非检测问题。
我的某些VGA电缆有DDC(显示数据通道)断开或未连接的问题。我发现使用引导参数强制内核查看断开的VGA的有用解决方法:video = {conn}:{res} e conn应该与xrandr设备名称res 1024x768相匹配(或您想要的名称)e表示启用端口(甚至如果未检测到任何设备/监视器)。
请参阅:http : //distro.ibiblio.org/fatdog/web/faqs/boot-options.html