Difference between revisions of "ATI"

From Jon's Wiki
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
These instructions are for the open source ati driver, because fglrx still sucks (Dec 2007).
 +
 
Nuke all the deprecated cruft from the xorg.conf file. So that's the HorizSync and VertRefresh from Monitor sections, and any manual Xinerama or dual head configs.
 
Nuke all the deprecated cruft from the xorg.conf file. So that's the HorizSync and VertRefresh from Monitor sections, and any manual Xinerama or dual head configs.
 +
 +
Add a Virtual line to the Display section:
  
 
  Section "Screen"
 
  Section "Screen"
Line 8: Line 12:
 
     SubSection "Display"
 
     SubSection "Display"
 
         Modes      "1280x768"
 
         Modes      "1280x768"
         Virtual    2048 2048
+
         '''''Virtual    1280 1536'''''
 
     EndSubSection
 
     EndSubSection
 
  EndSection
 
  EndSection
  
Then use xrandr to wake up the other end of the DBUS cable and clone to it:
+
Then use xrandr to wake up the other end of the DBUS cable:
 +
 
 +
xrandr --output VGA-0 --set load_detection 1
 +
 
 +
Clone the desktop:
 +
 
 +
xrandr --output VGA-0 --auto --mode 1280x768
 +
 
 +
Or extend the desktop:
 +
 
 +
xrandr --output VGA-0 --auto --mode 1280x768 --above LVDS
 +
 
 +
== Links ==
  
'''johnno@jonlap~$''' xrandr --output VGA-0 --set load_detection 1
+
* Unexplored option for an [http://www.thinkwiki.org/wiki/Sample_Fn-F7_script ACPI script on Fn-F7 key].
'''johnno@jonlap~$''' xrandr --output VGA-0 --auto
+
* [http://www.thinkwiki.org/wiki/Xorg_RandR_1.2 Thinkwiki xrandr page].
'''johnno@jonlap~$''' xrandr --output VGA-0 --mode 1280x768
 

Latest revision as of 22:15, 27 December 2007

These instructions are for the open source ati driver, because fglrx still sucks (Dec 2007).

Nuke all the deprecated cruft from the xorg.conf file. So that's the HorizSync and VertRefresh from Monitor sections, and any manual Xinerama or dual head configs.

Add a Virtual line to the Display section:

Section "Screen"
    Identifier      "Default Screen"
    Device          "ATI 200M"
    Monitor         "Laptop Display"
    DefaultDepth    24
    SubSection "Display"
        Modes       "1280x768"
        Virtual     1280 1536
    EndSubSection
EndSection

Then use xrandr to wake up the other end of the DBUS cable:

xrandr --output VGA-0 --set load_detection 1

Clone the desktop:

xrandr --output VGA-0 --auto --mode 1280x768

Or extend the desktop:

xrandr --output VGA-0 --auto --mode 1280x768 --above LVDS

Links