Ati drivers frustration(Radeon HD) Help please[Solved]

Hey I've been having a few problems regarding the ati drivers in arch linux. I'm rally happy with the performance and quality of the free driver which I found WAY better than the proprietary driver except for one thing(which is driving me insane): The free driver does not regulate the video card's fan speed--at least--by default. Is there a way to make my fan hush up? The proprietary driver does a good job at this but I would prefer to continue to use the much better free driver.
Last edited by jimlikessweets (2011-01-05 19:48:26)

On the wiki page you gave me it gives me two choices:
1. Try adding radeon.dynpm=1 to the kernel parameters (if using the stock kernel < 2.6.35). If you are using kernel26>=2.6.35 this option is no longer needed and the sysfs interface will be present by default. If this option is passed to a kernel >= 2.6.35, the driver will fail and fall back to software rendering.
2. Use the (unsupported) [radeon] repo:
So I tried the first option first. Result: X wouldn't even start and it dropped me into console mode without even bringing me to kdm first.
After that I went and chaged grub back to the way it was before and X was able to load again.
So then I tried the second option. I added the radeon repo to the list and I also snuck a peak at it in my browser. Result: I got a 404 error from the repo.
Am I doing something wrong? Maybe just a stupid mistake?
Last edited by jimlikessweets (2011-01-03 00:31:50)

Similar Messages

  • I cannot get my phone to ring! It will vibrate when settings are set to 'vibrate on silent' but can't find ou why it is silent. Checked all settings, but no go. Call are bring received but SILENT. Feel stupid but very frustrating. Anyone help please!

    Suddenly my-phone will NOT ring!  I have been through all the settings but am unable to see anything wrong.
    IT is working perfectly well otherwise. It will vibrate if I change the setting to VIBRATE ON SILENT, but how
    have I made it Silent please.
    very frustrating I'm sure it is something simple- BUT WHAT!
    help please

    Don't feel silly! Lots of people miss that.

  • T400: Ati driver causes freezing screen - help please

    i have a t400 with win 7 64 bit ..but when i finsh the  instalation of ATI driver i got a freezed screen ..does it a driver problem or the ATI itself damaged?? if not how i can fix this problem ?? i  tried all the possible ways of instaltion the driver by windows update , by install the last version driver from lenovo and AMD..and all i got the same problem !! help me plzzz 
    sorry for my bad english
    Moderator Note: Edited subject to match content.

    Before you updated the driver, what version was installed? What version are you installing? Is the switchable graphics setting set to high-performance? (turns graphics chip on) Also, make sure you have the latest BIOS. With 64-bit, I always suggest updating BIOS from bootable CD.

  • FRUSTRATED! Need help, please!

    I have written a program for my Pacman maze (see code below).
    The program compiles and displays the maze, but the problem is when I minimize the window and miximize it again, the display disappears or becomes corrupted. I thought I need to use repaint or update. HOWEVER this is where it gets interesting. When I have any kind of loop in my paint() method, for example the nested "for" loop in the code below which paints the maze on the screen based on the "board" array, each time I resize or minimize the window, the display becomes corrupted. BUT, if I take the loops out and just use any draw statement to paint something on the screen, I dont have the same problem. And the program repaints the screen perfectly when the window is resized or minimized.
    Please help me, I have already spent a long time on this problem.
    THanks in advance.
    here is the code.
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class Maze extends JFrame
         static int board[][] = { {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
                                       {1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1},
                                       {1,0,1,1,0,1,1,1,0,1,0,1,1,1,0,1,1,0,1},
                                       {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
                                       {1,0,1,1,0,1,0,1,1,1,1,1,0,1,0,1,1,0,1},
                                       {1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1},
                                       {1,1,1,1,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1},
                                       {1,0,0,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,1},
                                       {1,1,1,1,0,1,0,1,1,0,1,1,0,1,0,1,1,1,1},
                                       {0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0},
                                       {1,1,1,1,0,1,0,1,1,1,1,1,0,1,0,1,1,1,1},
                                       {1,0,0,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,1},
                                       {1,1,1,1,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1},
                                       {1,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1},
                                       {1,0,1,1,0,1,0,1,1,1,1,1,0,1,0,1,1,0,1},
                                       {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1},
                                       {1,0,1,1,0,1,1,1,0,1,0,1,1,1,0,1,1,0,1},
                                       {1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1},
                                       {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1} };
         int count1 = 0;
         int count2 = 0;
         int xbound = 25;
         int ybound = 50;
         public Maze()
              super ("PacMan Maze");
              setSize(800,800);
              show();
         public void paint (Graphics g)
              for(count1=0; count1 < 19; count1++)
                   for(count2=0; count2 < 19; count2++)
                        switch (board[count1][count2])
                             case 0:
                                  g.setColor(Color.blue);
                                  g.fillRect(xbound,ybound,35,35);
                             break;
                             case 1:
                                  g.setColor(Color.white);
                                  g.fillRect(xbound,ybound,35,35);
                                  g.setColor(Color.blue);
                                  g.drawRect(xbound,ybound,35,35);
                             break;
                             xbound = xbound + 35;     
              ybound = ybound + 35;
              xbound = 25;
         public static void main (String args[])
              Maze app = new Maze();
              app.addWindowListener(
                   new WindowAdapter() {
                        public void windowClosing( WindowEvent e)
                             System.exit(0);
    }

    I think you did not reset the xbound/ybound variables after the paint, therefore the numbers keep increasing each time the paint method is called.
    Try setting both variables to 0 at the start of the paint method.

  • After i updated to ios6, apps were asking for access to my iphotos .  i said no to my first one before i realized i should have said yes.  How do i fix this??  i tried re-installing the app and nothing!!!  Very frustrated!!  HELP PLEASE!!!

    i updated to ios 6 on the 19th.  i went into echofon and tried to save a photo and it asked me to grant echofon access to my photos. Without thinking, I said no.  I realize now that inorder to save photos, I have to grant this access but I can't figure it out.  I have deleted the app and re-installed it.  I have searched the web and everything possible place on the phone itself hoping i could change it or something.  But I can't find anything.  Their website is of no help at all.  Anybody got any ideas!?!?

    I'm having the same issue! Other than this problem, iOS 6 isn't too bad. But a little help with this would be great! Thanks!

  • I cannot get jpeg I import to resize, move, text wrap.  Extremely frustrated.  Any help please?

    I've gone through the help sections and tips.  I bring in an image, and cannot resize it.  I use the image mask and am able to crop the image to what I need.  But, it is placed badly in the middle of the page, won't resize, and worst of all-I cannot move the image without it disappearing out of the box and removing itsself from the page.  Text won't warp around the image, and all of the so-called controls are greyed out, wether I have the image selected or not.
    My question is:  How the H#%% do I work with an image in ibooks author?  Is this program messed up?  Is Apple planning to fix this?  These actions are easy to do in Pages, but iBooks does not work!  What box did I not check right to work with pictures?

    Consider the image and tbe mask as two separate items.
    You can move the image itself which is below the mask, and you can move and resize the mask itself as you choose to "crop" or size the image.  Use the handles on each to move or resize and also the size slder on tbe mask.
    Deselecting or clicking off the image closes the mask and you  should be able to move image as you chose.
    With regards your last paragraph....the answer is to learn about iBooks Author and what it can do, before starting out on a serious book project. The program is not messed up. You must have spent time learning tbe ins snd outs of Pages at first, iBA is similar to Pages in many ways.
    Go to your iTunes Connect page and open the Deliver your Content,  Top section Featured Resourses, there is a user guide and a formatting guide and below in iBooks Author ..is a superb instructional video. It will show you how to use many of the functions including the mask.

  • Frustrations of iMovie-Help please

    1st: I am trying to export video to Final Cut Express, the XML files that I save to my desktop aren't being accepted by Final Cut. I try to import files to Final express but there is an error when I try that.
    Second: When I save movies, I have saved them in XML (which is not accepted) & Quicktime, Quicktime seems to b accepted but I want the videos in the same chopped form that I got them from the vid cam. How do I get that?
    Third, how do I get SMV4 files to work with either program? (iMovie or Final Cut)
    Does Final Cut not take video straight from camera?
    Any assistance would be appreciated.

    Your Canon records in AVCHD format.
    If you have an Intel-based iMac, then your Mac should be able to read - and transcode - the Canon HG10's AVCHD-format video files straight from the camera and turn them into editable 'Apple Intermediate Codec' files, which both Final Cut Express and Final Cut pro can read ..they also read .mov, and FCP reads many other video formats too.
    The conversion from AVCHD to AIC is necessary because your Canon records in a compressed format which isn't editable until the compressed frames are recreated in AIC.
    "..the XML files that I save to my desktop aren't being accepted.." ..well that's because XML isn't a video codec ..you may have an XML list of edits (..like an 'EDL' ..Edit Decision List..) but XML isn't video; it's text, as I understand it. Maybe Final Cut could read your EDL if you tell Final Cut where to find the actual video files which iMovie has imported.
    "..I want the videos in the same chopped form that I got them from the vid cam.." ..well they won't be in the exact same format, as those are compressed and uneditable: they'll be in AIC format - or can be exported as .mov QuickTime files - in the Events folder in your Movies folder on your Mac.
    "..Does Final Cut not take video straight from camera?.." ..It certainly does ..but it uncompresses the AVCHD into that editable AIC format.
    (..The camera, essentially, records in 'shorthand' without vowels ..lke ths txt whch I'm typng alng ths lne. When it's being imported, iMovie reconstitutes the vowels so that the words are complete and can then be edited..)

  • When I "Add file to library" it doesn't stay there. Help please?

    Like, it will stay listed in iTunes but say it isn't found. Also sometimes when I try to edit info for these files it freezes iTunes. Getting pretty frustrated here. Help please?

    I'm not sure if it would help but have you tried drag and drop into itunes or add folder?

  • I have an Apple ipod that gets stuck on the first track of every album, can you help please?

    I have an Apple Ipod model MC 688. My problem is that every track played 'sticks' , if I forward it sticks on the next track, just plays the same one over and over.
    Very frustrating, can you help please?

    "Sticks"
    Do you mean the same song repeats? If so, turn off the repeat (1) song feature.

  • [Solved] xf86-video-ati driver and [Radeon Mobility 7500] help

    I have an thinkpad T42 laptop (video card is ATI Technologies Inc Radeon Mobility M7 LW [Radeon Mobility 7500]) with openbox and slim and I instaled xf86-video-ati. My problem is that minimizing and maximizing are very slow, lxterminal decoration bar disapear..... I also tried to install xf86-video-ati-git without any improuvements.
    this is my xorg.conf:
    Section "ServerLayout"
    Identifier "Default Layout"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "SynapticsTouchpad" "SendCoreEvents"
    InputDevice "Keyboard0" "CoreKeyboard"
    Option "AIGLX" "true
    EndSection
    Section "ServerFlags"
    Option "AutoAddDevices" "False"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc:unscaled"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/100dpi"
    # FontPath "/usr/share/fonts/PEX"
    # Additional fonts: Locale, Gimp, TTF...
    # FontPath "/usr/share/fonts/cyrillic"
    # FontPath "/usr/share/lib/X11/fonts/latin2/75dpi"
    # FontPath "/usr/share/lib/X11/fonts/latin2/100dpi"
    # True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
    FontPath "/usr/share/fonts/Type1"
    # FontPath "/usr/share/fonts/ttf/western"
    # FontPath "/usr/share/fonts/ttf/decoratives"
    # FontPath "/usr/share/fonts/truetype"
    # FontPath "/usr/share/fonts/truetype/openoffice"
    # FontPath "/usr/share/fonts/truetype/ttf-bitstream-vera"
    # FontPath "/usr/share/fonts/latex-ttf-fonts"
    # FontPath "/usr/share/fonts/defoma/CID"
    # FontPath "/usr/share/fonts/defoma/TrueType"
    EndSection
    Section "Module"
    Load "ddc" # ddc probing of monitor
    Load "bitmap" # bitmap-fonts
    Load "type1"
    Load "freetype"
    Load "record"
    Load "dbe"
    Load "glx"
    Load "dri2"
    Load "dri"
    Load "synaptics"
    Load "extmod"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "CorePointer"
    Option "Protocol" "ExplorerPS/2"
    Option "Device" "/dev/input/mice"
    Option "Emulate3Buttons" "on"
    Option "YAxisMapping" "4 5"
    Option "XAxisMapping" "6 7"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    Identifier "SynapticsTouchpad"
    Driver "synaptics"
    Option "AlwaysCore" "true" # send events to CorePointer
    Option "VertEdgeScroll" "true" # enable vertical scroll zone
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    Option "DPMS" "true"
    # HorizSync 28.0 - 78.0 # Warning: This may fry very old Monitors
    HorizSync 28.0 - 96.0 # Warning: This may fry old Monitors
    VertRefresh 50.0 - 75.0 # Very conservative. May flicker.
    # VertRefresh 50.0 - 62.0 # Extreme conservative. Will flicker. TFT default.
    # Default modes distilled from
    # "VESA and Industry Standards and Guide for Computer Display Monitor
    # Timing", version 1.0, revision 0.8, adopted September 17, 1998.
    # $XFree86: xc/programs/Xserver/hw/xfree86/etc/vesamodes,v 1.4 1999/11/18 16:52:17 tsi Exp $
    # 640x350 @ 85Hz (VESA) hsync: 37.9kHz
    ModeLine "640x350" 31.5 640 672 736 832 350 382 385 445 +hsync -vsync
    # 640x400 @ 85Hz (VESA) hsync: 37.9kHz
    ModeLine "640x400" 31.5 640 672 736 832 400 401 404 445 -hsync +vsync
    # 720x400 @ 85Hz (VESA) hsync: 37.9kHz
    ModeLine "720x400" 35.5 720 756 828 936 400 401 404 446 -hsync +vsync
    # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz
    ModeLine "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync
    # 640x480 @ 72Hz (VESA) hsync: 37.9kHz
    ModeLine "640x480" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync
    # 640x480 @ 75Hz (VESA) hsync: 37.5kHz
    ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync
    # 640x480 @ 85Hz (VESA) hsync: 43.3kHz
    ModeLine "640x480" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync
    # 800x600 @ 56Hz (VESA) hsync: 35.2kHz
    ModeLine "800x600" 36.0 800 824 896 1024 600 601 603 625 +hsync +vsync
    # 800x600 @ 60Hz (VESA) hsync: 37.9kHz
    ModeLine "800x600" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync
    # 800x600 @ 72Hz (VESA) hsync: 48.1kHz
    ModeLine "800x600" 50.0 800 856 976 1040 600 637 643 666 +hsync +vsync
    # 800x600 @ 75Hz (VESA) hsync: 46.9kHz
    ModeLine "800x600" 49.5 800 816 896 1056 600 601 604 625 +hsync +vsync
    # 800x600 @ 85Hz (VESA) hsync: 53.7kHz
    ModeLine "800x600" 56.3 800 832 896 1048 600 601 604 631 +hsync +vsync
    # 1024x768i @ 43Hz (industry standard) hsync: 35.5kHz
    ModeLine "1024x768" 44.9 1024 1032 1208 1264 768 768 776 817 +hsync +vsync Interlace
    # 1024x768 @ 60Hz (VESA) hsync: 48.4kHz
    ModeLine "1024x768" 65.0 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
    # 1024x768 @ 70Hz (VESA) hsync: 56.5kHz
    ModeLine "1024x768" 75.0 1024 1048 1184 1328 768 771 777 806 -hsync -vsync
    # 1024x768 @ 75Hz (VESA) hsync: 60.0kHz
    ModeLine "1024x768" 78.8 1024 1040 1136 1312 768 769 772 800 +hsync +vsync
    # 1024x768 @ 85Hz (VESA) hsync: 68.7kHz
    ModeLine "1024x768" 94.5 1024 1072 1168 1376 768 769 772 808 +hsync +vsync
    # Extended modelines with GTF timings
    # 640x480 @ 100.00 Hz (GTF) hsync: 50.90 kHz; pclk: 43.16 MHz
    ModeLine "640x480" 43.16 640 680 744 848 480 481 484 509 -HSync +Vsync
    # 768x576 @ 60.00 Hz (GTF) hsync: 35.82 kHz; pclk: 34.96 MHz
    ModeLine "768x576" 34.96 768 792 872 976 576 577 580 597 -HSync +Vsync
    # 768x576 @ 72.00 Hz (GTF) hsync: 43.27 kHz; pclk: 42.93 MHz
    ModeLine "768x576" 42.93 768 800 880 992 576 577 580 601 -HSync +Vsync
    # 768x576 @ 75.00 Hz (GTF) hsync: 45.15 kHz; pclk: 45.51 MHz
    ModeLine "768x576" 45.51 768 808 888 1008 576 577 580 602 -HSync +Vsync
    # 768x576 @ 85.00 Hz (GTF) hsync: 51.42 kHz; pclk: 51.84 MHz
    ModeLine "768x576" 51.84 768 808 888 1008 576 577 580 605 -HSync +Vsync
    # 768x576 @ 100.00 Hz (GTF) hsync: 61.10 kHz; pclk: 62.57 MHz
    ModeLine "768x576" 62.57 768 816 896 1024 576 577 580 611 -HSync +Vsync
    # 800x600 @ 100.00 Hz (GTF) hsync: 63.60 kHz; pclk: 68.18 MHz
    ModeLine "800x600" 68.18 800 848 936 1072 600 601 604 636 -HSync +Vsync
    # 1024x768 @ 100.00 Hz (GTF) hsync: 81.40 kHz; pclk: 113.31 MHz
    ModeLine "1024x768" 113.31 1024 1096 1208 1392 768 769 772 814 -HSync +Vsync
    EndSection
    Section "Device"
    Identifier "Card0"
    Boardname "ATI Radeon"
    Busid "PCI:1:0:0"
    Driver "radeon"
    Screen 0
    Vendorname "ATI"
    Option "MergedFB" "off"
    Option "AccelMethod" "EXA"
    Option "EXANoComposite" "false"
    Option "FBTexPercent" "50"
    Option "MigrationHeuristic" "greedy"
    Option "DRI" "true"
    Option "GARTSize" "1536"
    Option "AGPMode" "4"
    Option "Colortiling" "On"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultColorDepth 24
    SubSection "Display"
    Depth 1
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 4
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 8
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 15
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 16
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 24
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 32
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection
    Last edited by botzoboy (2010-05-29 07:39:30)

    theapodan
    this is my Xorg.0.log:
    X.Org X Server 1.7.6
    Release Date: 2010-03-17
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.33-ARCH i686
    Current Operating System: Linux arch 2.6.33-ARCH #1 SMP PREEMPT Thu May 13 12:06:25 CEST 2010 i686
    Kernel command line: root=/dev/disk/by-uuid/7e750225-da5a-470f-a024-af37495f11d5 ro
    Build Date: 01 April 2010 05:35:33PM
    Current version of pixman: 0.18.2
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sat May 29 09:20:42 2010
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Default Layout"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Card0"
    (**) |-->Input Device "Mouse0"
    (**) |-->Input Device "SynapticsTouchpad"
    (**) |-->Input Device "Keyboard0"
    (**) Option "AIGLX" "true"
    (**) Option "AutoAddDevices" "False"
    (**) Not automatically adding devices
    (==) Automatically enabling devices
    (**) FontPath set to:
    /usr/share/fonts/misc:unscaled,
    /usr/share/fonts/misc,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/75dpi,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/100dpi,
    /usr/share/fonts/Type1,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (**) Extension "Composite" is enabled
    (II) Loader magic: 0x81e4c60
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 6.0
    X.Org XInput driver : 7.0
    X.Org Server Extension : 2.0
    (++) using VT number 7
    (--) PCI:*(0:1:0:0) 1002:4c57:1014:0530 ATI Technologies Inc Radeon Mobility M7 LW [Radeon Mobility 7500] rev 0, Mem @ 0xe0000000/134217728, 0xc0100000/65536, I/O @ 0x00003000/256, BIOS @ 0x????????/131072
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "record" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (**) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "synaptics"
    (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    (II) Module synaptics: vendor="X.Org Foundation"
    compiled for 1.7.3, module version = 1.2.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 7.0
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "radeon"
    (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    (II) Module radeon: vendor="X.Org Foundation"
    compiled for 1.7.5.902, module version = 6.12.192
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 6.0
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
    compiled for 1.7.0.901, module version = 1.5.0
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 7.0
    (II) LoadModule: "synaptics"
    (II) Reloading /usr/lib/xorg/modules/input/synaptics_drv.so
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
    compiled for 1.7.0.901, module version = 1.4.0
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 7.0
    (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon 8500 AIW BC (AGP),
    ATI Radeon IGP320M (U1) 4336, ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
    ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
    ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
    ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Radeon 4800 Series, ATI Radeon 4800 Series, ATI FirePro M7750,
    ATI M98, ATI M98, ATI M98, ATI Mobility Radeon HD 4650,
    ATI Radeon RV730 (AGP), ATI Mobility Radeon HD 4670,
    ATI FirePro M5750, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon HD 4350,
    ATI Mobility Radeon 4300 Series, ATI Mobility Radeon 4500 Series,
    ATI Mobility Radeon 4500 Series, ATI FirePro RG220, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon RV710,
    ATI Radeon HD 3470, ATI Mobility Radeon HD 3430,
    ATI Mobility Radeon HD 3400 Series, ATI Radeon HD 3450,
    ATI Radeon HD 3450, ATI Radeon HD 3430, ATI Radeon HD 3450,
    ATI FirePro V3700, ATI FireMV 2450, ATI FireMV 2260, ATI FireMV 2260,
    ATI Radeon HD 3600 Series, ATI Radeon HD 3650 AGP,
    ATI Radeon HD 3600 PRO, ATI Radeon HD 3600 XT,
    ATI Radeon HD 3600 PRO, ATI Mobility Radeon HD 3650,
    ATI Mobility Radeon HD 3670, ATI Mobility FireGL V5700,
    ATI Mobility FireGL V5725, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3100 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3100 Graphics, ATI Radeon HD 3300 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3000 Graphics,
    ATI Radeon HD 4200, ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4290,
    CYPRESS, ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5900 Series, ATI Radeon HD 5900 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 5700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, CEDAR, CEDAR, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, CEDAR, ATI Radeon HD 5450,
    CEDAR
    (II) Primary Device is: PCI 01@00:00:0
    (II) [KMS] Kernel modesetting enabled.
    (**) RADEON(0): Depth 24, (--) framebuffer bpp 32
    (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    (==) RADEON(0): Default visual is TrueColor
    (**) RADEON(0): Option "ColorTiling" "On"
    (**) RADEON(0): Option "AccelMethod" "EXA"
    (**) RADEON(0): Option "DRI" "true"
    (==) RADEON(0): RGB weight 888
    (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    (--) RADEON(0): Chipset: "ATI Radeon Mobility M7 LW (AGP)" (ChipID = 0x4c57)
    (II) RADEON(0): AGP card detected
    (II) RADEON(0): KMS Color Tiling: enabled
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 9, (OK)
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 9, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 9, (OK)
    drmOpenByBusid: drmOpenMinor returns 9
    drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    (II) [drm] DRM interface version 1.3
    (II) [drm] DRM open master succeeded.
    (II) RADEON(0): Output VGA-0 using monitor section Monitor0
    (II) RADEON(0): Output DVI-0 has no monitor section
    (II) RADEON(0): Output LVDS has no monitor section
    (II) RADEON(0): Output S-video has no monitor section
    (II) RADEON(0): Output VGA-0 disconnected
    (II) RADEON(0): Output DVI-0 disconnected
    (II) RADEON(0): Output LVDS connected
    (II) RADEON(0): Output S-video disconnected
    (II) RADEON(0): Using user preference for initial modes
    (II) RADEON(0): Output LVDS using initial mode 1024x768
    (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    (II) RADEON(0): mem size init: gart size :fdff000 vram size: s:2000000 visible:1f00000
    (II) RADEON(0): EXA: Driver will not allow EXA pixmaps in VRAM
    (==) RADEON(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules/libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) Loading sub module "exa"
    (II) LoadModule: "exa"
    (II) Loading /usr/lib/xorg/modules/libexa.so
    (II) Module exa: vendor="X.Org Foundation"
    compiled for 1.7.6, module version = 2.5.0
    ABI class: X.Org Video Driver, version 6.0
    (--) Depth 24 pixmap format is 32 bpp
    (II) RADEON(0): [DRI2] Setup complete
    (II) RADEON(0): Front buffer size: 3072K
    (II) RADEON(0): VRAM usage limit set to 25804K
    (==) RADEON(0): Backing store disabled
    (II) RADEON(0): Direct rendering enabled
    (II) RADEON(0): Render acceleration enabled for R100 type cards.
    (II) RADEON(0): Setting EXA maxPitchBytes
    (**) RADEON(0): Option "MigrationHeuristic" "greedy"
    (**) RADEON(0): Option "EXANoComposite" "false"
    (II) EXA(0): Driver allocated offscreen pixmaps
    (II) EXA(0): Driver registered support for the following operations:
    (II) Solid
    (II) Copy
    (II) Composite (RENDER acceleration)
    (II) UploadToScreen
    (II) DownloadFromScreen
    (II) RADEON(0): Acceleration enabled
    (**) RADEON(0): DPMS enabled
    (==) RADEON(0): Silken mouse enabled
    (II) RADEON(0): Set up textured video
    (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (WW) RADEON(0): Option "MergedFB" is not used
    (WW) RADEON(0): Option "FBTexPercent" is not used
    (WW) RADEON(0): Option "GARTSize" is not used
    (WW) RADEON(0): Option "AGPMode" is not used
    (--) RandR disabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    (II) AIGLX: enabled GLX_SGI_make_current_read
    (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/radeon_dri.so
    (II) GLX: Initialized DRI2 GL provider for screen 0
    (II) RADEON(0): Setting screen physical size to 270 x 203
    (**) Option "Protocol" "ExplorerPS/2"
    (**) Mouse0: Device: "/dev/input/mice"
    (**) Mouse0: Protocol: "ExplorerPS/2"
    (**) Option "CorePointer"
    (**) Mouse0: always reports core events
    (**) Option "Device" "/dev/input/mice"
    (**) Option "Emulate3Buttons" "on"
    (**) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
    (**) Option "ZAxisMapping" "4 5"
    (**) Mouse0: ZAxisMapping: buttons 4 and 5
    (**) Mouse0: Buttons: 9
    (**) Mouse0: Sensitivity: 1
    (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
    (**) Mouse0: (accel) keeping acceleration scheme 1
    (**) Mouse0: (accel) acceleration profile 0
    (II) Mouse0: ps2EnableDataReporting: succeeded
    (II) Synaptics touchpad driver version 1.2.1
    (--) SynapticsTouchpad auto-dev sets device to /dev/input/event7
    (**) Option "Device" "/dev/input/event7"
    (II) SynapticsTouchpad: x-axis range 1472 - 5472
    (II) SynapticsTouchpad: y-axis range 1408 - 4448
    (II) SynapticsTouchpad: pressure range 0 - 255
    (II) SynapticsTouchpad: finger width range 0 - 0
    (II) SynapticsTouchpad: buttons: left right double triple
    (**) Option "VertEdgeScroll" "true"
    (--) SynapticsTouchpad: touchpad found
    (**) Option "AlwaysCore" "true"
    (**) Option "SendCoreEvents"
    (**) SynapticsTouchpad: always reports core events
    (II) XINPUT: Adding extended input device "SynapticsTouchpad" (type: TOUCHPAD)
    (**) SynapticsTouchpad: (accel) keeping acceleration scheme 1
    (**) SynapticsTouchpad: (accel) acceleration profile 0
    (--) SynapticsTouchpad: touchpad found
    (**) Option "CoreKeyboard"
    (**) Keyboard0: always reports core events
    (**) Option "Protocol" "standard"
    (**) Keyboard0: Protocol: standard
    (**) Option "XkbRules" "base"
    (**) Keyboard0: XkbRules: "base"
    (**) Option "XkbModel" "pc105"
    (**) Keyboard0: XkbModel: "pc105"
    (**) Option "XkbLayout" "us"
    (**) Keyboard0: XkbLayout: "us"
    (**) Option "CustomKeycodes" "off"
    (**) Keyboard0: CustomKeycodes disabled
    (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
    (II) config/hal: Adding input device TPPS/2 IBM TrackPoint
    (II) AutoAddDevices is off - not adding device.
    (EE) config/hal: NewInputDeviceRequest failed (8)
    (II) config/hal: Adding input device ThinkPad Extra Buttons
    (II) AutoAddDevices is off - not adding device.
    (EE) config/hal: NewInputDeviceRequest failed (8)
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (II) AutoAddDevices is off - not adding device.
    (EE) config/hal: NewInputDeviceRequest failed (8)
    (II) config/hal: Adding input device SynPS/2 Synaptics TouchPad
    (II) AutoAddDevices is off - not adding device.
    (EE) config/hal: NewInputDeviceRequest failed (8)
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (II) AutoAddDevices is off - not adding device.
    (EE) config/hal: NewInputDeviceRequest failed (8)
    (II) config/hal: Adding input device Sleep Button
    (II) AutoAddDevices is off - not adding device.
    (EE) config/hal: NewInputDeviceRequest failed (8)
    (II) config/hal: Adding input device Video Bus
    (II) AutoAddDevices is off - not adding device.
    (EE) config/hal: NewInputDeviceRequest failed (8)
    (II) config/hal: Adding input device Power Button
    (II) AutoAddDevices is off - not adding device.
    (EE) config/hal: NewInputDeviceRequest failed (8)
    (II) AIGLX: Suspending AIGLX clients for VT switch
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) AIGLX: Resuming AIGLX clients after VT switch
    (II) Mouse0: ps2EnableDataReporting: succeeded
    (--) SynapticsTouchpad: touchpad found

  • ATI drivers config - help

    Hi!
    I am Arch user still and I please for one ''fish'' more.
    Today I reinstall ARCH (testing repo is now commented). I want to install ATI drivers. I know that they have aticonfig now. I did on Xorg 7.0 but I had a problem with fglrx - didn't work.
    My card is Radeon 9000 (r250). For Xorg 6.8 and Mesa drivers works fine.
    Could someone who has the same card help me, please with his/her xorg.conf.
    Thanks in advance,
    Mitja

    I Installed Xorg 7.0 (works) and I installed ATI drivers and doesn't work.
    In xorg.conf I have :
    Section "Module"
    Load "ddc"
    Load "GLcore"
    Load "dbe"
    Load "dri"
    Load "extmod"
    Load "glx"
    Load "bitmap" # bitmap-fonts
    Load "type1"
    Load "freetype"
    Load "record"
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "fglrx"
    #Option "NoDDC"
    Option "no_accel" "no"
    Option "no_dri" "no"
    Option "mtrr" "off" # disable DRI mtrr mapper, driver has its own code for mtrr
    Option "DesktopSetup" "(null)"
    Option "ScreenOverlap" "0"
    Option "TVFormat" "NTSC-M"
    Option "TVStandard" "VIDEO"
    Option "TVHSizeAdj" "0"
    Option "TVVSizeAdj" "0"
    Option "TVHPosAdj" "0"
    Option "TVVPosAdj" "0"
    Option "TVHStartAdj" "0"
    Option "TVColorAdj" "0"
    Option "GammaCorrectionI" "0x00000000"
    Option "GammaCorrectionII" "0x00000000"
    Option "Capabilities" "0x00000000"
    Option "CapabilitiesEx" "0x00000000"
    Option "VideoOverlay" "on"
    Option "OpenGLOverlay" "off"
    Option "CenterMode" "off"
    Option "PseudoColorVisuals" "off"
    Option "Stereo" "off"
    Option "StereoSyncEnable" "1"
    Option "FSAAEnable" "no"
    Option "FSAAScale" "1"
    Option "FSAADisableGamma" "no"
    Option "FSAACustomizeMSPos" "no"
    Option "FSAAMSPosX0" "0.000000"
    Option "FSAAMSPosY0" "0.000000"
    Option "FSAAMSPosX1" "0.000000"
    Option "FSAAMSPosY1" "0.000000"
    Option "FSAAMSPosX2" "0.000000"
    Option "FSAAMSPosY2" "0.000000"
    Option "FSAAMSPosX3" "0.000000"
    Option "FSAAMSPosY3" "0.000000"
    Option "FSAAMSPosX4" "0.000000"
    Option "FSAAMSPosY4" "0.000000"
    Option "FSAAMSPosX5" "0.000000"
    Option "FSAAMSPosY5" "0.000000"
    Option "UseFastTLS" "0"
    Option "BlockSignalsOnLock" "on"
    Option "UseInternalAGPGART" "no"
    Option "ForceGenericCPU" "no"
    BusID "PCI:1:0:0" # vendor=1002, device=4152
    Screen 0
    EndSection
    In the Xorg.log I have also:
    (II) fglrx(0): Kernel Module Version Information:
    (II) fglrx(0): Name: radeon
    (II) fglrx(0): Version: 1.19.0
    (II) fglrx(0): Date: 20050911
    (II) fglrx(0): Desc: ATI Radeon
    (WW) fglrx(0): Kernel Module version does *not* match driver.
    (EE) fglrx(0): incompatible kernel module detected - HW accelerated OpenGL will not work
    (II) fglrx(0): [drm] removed 1 reserved context for kernel
    (II) fglrx(0): [drm] unmapping 8192 bytes of SAREA 0xe0f5d000 at 0xb7666000
    (WW) fglrx(0): ***********************************************
    (WW) fglrx(0): * DRI initialization failed! *
    (WW) fglrx(0): * (maybe driver kernel module missing or bad) *
    (WW) fglrx(0): * 2D acceleraton available (MMIO) *
    (WW) fglrx(0): * no 3D acceleration available *
    ...and fglrx info show:
    glrxinfo
    display: :0.0 screen: 0
    OpenGL vendor string: Mesa project: www.mesa3d.org
    OpenGL renderer string: Mesa GLX Indirect
    OpenGL version string: 1.2 (1.5 Mesa 6.4.1
    I don't know what I am doing wrong...
    Mitja

  • My dvd rom pops out automatically ..please help me solve it..

    my dvd rom pops out automatically ..please help me solve it

    Hello @swarup463,
    Welcome to the HP Forums, I hope you enjoy your experience! To help you get the most out of the HP Forums I would like to direct your attention to the HP Forums Guide First Time Here? Learn How to Post and More.
    I have read your post on how your DVD rom ejects automatically, and I would be happy to help you!
    For further assistance, I will need to know:
    The Product and Model Number of your notebook computer.
    The version of Windows you have installed on your computer.
    If your computer has completed all of its important Windows Updates.
    If you have updated your HP drivers using the HP Support Assistant.
    If this is an on-going, or recent issue.
    Please re-post with the necessary information, this way I will be able to research this further for you. I look forward to your reply!
    Cheers! 
    MechPilot
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks” for helping!

  • Radeon 9800 in a 7200 (with Sonnet Crescendo);  9.2x ATI drivers?

    I know I know...why waste the time (and money).
    The card works on 9.1 but wanted to see if anyone knew if:
    OS9 Helper would be worth a try, or extracting the 9.2x ATI files using the TomeViewer? I have no real need of anything else in 9.2x
    The Crescendo is obviously my obstacle...so I guess I could copy system folder and give it a go (w/o hope of the processor upgrade working).
    Besides forgetting about this entirely, is there any this else I could try? I'm just looking to get optimal page draws/graphics performance.
    Thanks in advance,
    DHS

    David,
    I probably didn't make my point clearly. This was something that a lot of users experienced when the card first came out.
    Here's what I should have posted:
    1) Installing the ATI drivers from their bundled CD over existing OS9 drivers (my old ones were for the original Radeon Mac Edition) would cause severe problems including failure to boot.
    2) Removing one OS extension (I forget which one) allowed the computer to run in 9, but with no video acceleration.
    3) Trashing all ATI extensions, then installing from the CD, and OS9 worked, although I find the 9200 less stable in 9 than in X.
    I hope newer downloadable driver packages have improved the situation.
    OSX discovery: Although the 3D acceleration was there in X, the drivers (either CD or latest downloads) whacked my 2D performance. The Dock, scrolling, moving windows, all went jerky. A benchmark test showed that 2D performance had dropped over 25 percent. I reinstalled Jag, did not install the 9200 drivers and everything was fine with the ATI drivers that Jag installed. Same with Panther. I did not add any extra ATI drivers to what Panther already had. Works fine, even with a VRAM-hungry flight sim.

  • I am not able to launch FF everytime i tr to open it, it says FF has to submit a crash report, i even tried doing that and the report was submitted too, but stiil FF did not start, and the problem still persists, please help me solve this issue in English

    Question
    I am not able to launch FF everytime i try to open it, it says FF has to submit a crash report,and restore yr tabs. I even tried doing that and the report was submitted too, but still FF did not start, and the problem still persists, please help me solve this issue
    '''(in English)'''

    Hi Danny,
    Per my understanding that you can't get the expect result by using the expression "=Count(Fields!TICKET_STATUS.Value=4) " to count the the TICKET_STATUS which value is 4, the result will returns the count of all the TICKET_STATUS values(206)
    but not 180, right?
    I have tested on my local environment and can reproduce the issue, the issue caused by you are using the count() function in the incorrect way, please modify the expression as below and have a test:
    =COUNT(IIF(Fields!TICKET_STATUS.Value=4 ,1,Nothing))
    or
    =SUM(IIF(Fields!TICKET_STATUS=4,1,0))
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • My iPad shows a message "Cannot find AirPrint printer". I used to use my iPad to print materials using HP wireless printer D110. Now it does not want to print. Is this because I am now using IOS 7? What should I do to solve the problem? Help please.

    My iPad shows a message "Cannot find AirPrint printer". I used to use my iPad to print materials using HP wireless printer D110. Now it does not want to print. Is this because I am now using IOS 7? What should I do to solve the problem? Help please.

    Restart your WiFi router and printer by removing power for 30 seconds.

Maybe you are looking for