我运行Ubuntu 9.04(Jaunty),我有一个nVidia 8600GTS显卡。 我试图让一台显示器在纵向模式下工作,另一台在横向模式下工作。 我知道如何在Windows下做到这一点,但我无法在Linux下find这个设置。 我已经设法让他们都在肖像,或在景观,而不是彼此独立。
我希望能够在不重新启动计算机或X的情况下切换单个显示器的模式,但是我意识到这可能有点太多了。
这将取决于你的显卡驱动程序是否支持它(如果你build议你有什么卡,那么我们可以证实这一点),但。
xrandr --output <output> --rotate <direction>
应该这样做。
查看
man xrandr
这里摘录了EXAMPLES部分
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二进制驱动程序时不起作用,请参阅备用解决scheme的注释