Ubuntu

如何在 Ubuntu 9.04 上獲得一台橫向顯示器和一台縱向顯示器?

  • May 26, 2015

我正在執行 Ubuntu 9.04 (Jaunty),並且我有一個 nVidia 8600GTS 顯卡。我試圖讓一台顯示器在縱向模式下工作,而另一台在橫向模式下工作。我知道如何在 Windows 下執行此操作,但在 Linux 下找不到此設置。我已經設法讓它們都是縱向的,或者都是橫向的,但不是相互獨立的。

我希望能夠在不重新啟動電腦或 X 的情況下切換單個顯示器的模式,但我意識到這可能有點太過分了。

這將取決於您的顯卡驅動程序是否支持它(如果您建議您擁有什麼卡,那麼我們可以確認這一點)但是。

xrandr --output <output> --rotate <direction>

應該這樣做。

退房

man xrandr

這是範例部分的摘錄

Sets an output called LVDS to its preferred mode, and on its right put an output called VGA to preferred mode of a screen which has
  been physically rotated clockwise:
         xrandr --output LVDS --auto --rotate normal --pos 0x0 --output VGA --auto --rotate left --right-of LVDS

請注意,這在使用 nvidia 二進制驅動程序時不起作用,請參閱評論以獲取替代解決方案

引用自:https://serverfault.com/questions/5227