View Single Post
Posts: 915 | Thanked: 3,209 times | Joined on Jan 2011 @ Germany
#499
Originally Posted by railroadmaster View Post
I couldn't figure out how to rotate the screen
Something like this should work:
Code:
xrandr --output >OUTPUT< --rotate [left|right|inverted|normal]
>OUTPUT< will be whatever the graphics driver assigned. You can find that out by running xrandr without arguments:
Code:
$ xrandr
Screen 0: minimum 320 x 200, current 1920 x 1200, maximum 16384 x 16384
DisplayPort-0 disconnected (normal left inverted right x axis y axis)
DVI-0 connected primary 1920x1200+0+0 (normal left inverted right x axis y axis) 519mm x 324mm
   1920x1200      60.0*+
   1600x1200      60.0  
   1680x1050      59.9  
   1280x1024      75.0     60.0  
   1152x864       75.0  
   1024x768       75.1     60.0  
   800x600        75.0     60.3  
   640x480        75.0     60.0  
   720x400        70.1
In this case (desktop computer) my monitor is connected to DVI-0, so I could tell xrandr this to rotate my monitor 90 degree clockwise:
Code:
xrandr --output DVI-0 --rotate right
For the rest of your issues the info you provided is too vague.
 

The Following 8 Users Say Thank You to sulu For This Useful Post: