Ubuntu 中垂直显示两个 24 英寸

Ubuntu 中垂直显示两个 24 英寸

我刚买了两台 24 英寸的显示器,想让它们并排垂直显示,即屏幕彼此水平放置,但屏幕垂直旋转。我买了一台,但不知道该用什么命令让它们垂直显示。

xorg.conf:

Section "Monitor"
    Identifier  "Configured Monitor"
EndSection

Section "Screen"
    Identifier  "Default Screen"
    Monitor     "Configured Monitor"
    Device      "Configured Video Device"
    SubSection "Display"
        Virtual 3840 1200
    EndSubSection
EndSection

Section "Device"
    Identifier  "Configured Video Device"
EndSection


xrandr:

Screen 0: minimum 320 x 200, current 3840 x 1200, maximum 3840 x 1200
VGA connected 1920x1200+0+0 (normal left inverted right x axis y axis) 519mm x 324mm
   1920x1200      60.0*+
   1600x1200      60.0  
   1280x1024      75.0     60.0  
   1152x864       75.0  
   1024x768       75.0     60.0  
   800x600        75.0     60.3  
   640x480        75.0     59.9  
   720x400        70.1  
TMDS-1 connected 1920x1200+1920+0 (normal left inverted right x axis y axis) 518mm x 324mm
   1920x1200      60.0*+
   1600x1200      60.0  
   1280x1024      75.0     60.0  
   1152x864       75.0  
   1024x768       75.0     60.0  
   800x600        75.0     60.3  
   640x480        75.0     59.9  
   720x400        70.1  

有什么命令可以让它们垂直吗?

答案1

如果您使用 nv 驱动程序,请在“设备”部分的底部添加此行:

Option "Rotate" "CW"

它看起来应该类似于:

Section "Device"
    Identifier  "Generic Video Card"
    Driver      "nv"
    Option      "Rotate" "CW"
EndSection

使用 CCW 表示逆时针。重新启动并查看是否有效。

如果这不起作用,请在“设备”部分底部添加此行:

Option "RandRRotation" "On"

重新启动,查看屏幕和旋转按钮是否可用:system> preferences> screen resolution

答案2

我将其添加到我的 xorg.conf 文件中:

SubSection "Display"
        Virtual 2400 1920
    EndSubSection

然后我在终端中运行了以下三个命令:

xrandr --output TMDS-1 --rotate left
xrandr --output VGA --rotate left
xrandr --output VGA --left-of TMDS-1

相关内容