Centos XRandR Portrait

0

I am having a hard time getting xrandr to properly rotate my monitor into protrait configuration. Oddly you can see how the screen's image is screwed up once I do xrandr -o left however when I take a screenshot, the screenshot looks fine. I'm trying to find who the culprit is, the ATI driver or the xrandr version?

enter image description here enter image description here

Ternary

Posted 2011-02-09T21:04:46.740

Reputation: 242

Could you also include the contents of xorg.conf, section "Monitor". Also include the exact version of CentOS and whether using Gnome/KDE. And have you tried the monitor's hardware calibration? – harrymc – 2011-02-23T06:37:03.217

It was just a stock xorg from running aticonfig --initial. It's Gnome I'm using and can't find any hardware calibration. – Ternary – 2011-02-25T20:35:39.810

Most likely it's the proprietary ATI driver not playing nice with the stock xorg xrandr. But they may have some alternative method of rotation defined in the xorg.conf file instead of using xrandr. – Keith – 2011-02-27T08:12:50.320

Answers

0

For example the external monitor is identified as VGA-1

Invoke the external monitor

$ xrandr --output VGA-1 --auto

Place the external monitor on the right-hand-side (of my laptop being LVDS-1)

$ xrandr --output VGA-1 --right-of LVDS-1

Rotate the VGA-1 display (counter clockwise)

$ xrandr --output VGA-1 --right-of LVDS-1 --rotate left

Rony

Posted 2011-02-09T21:04:46.740

Reputation: 180