ATI Radeon drivers problems (both open-source and proprietary)

Hi 2 All!!
I have a problem with my ATI Radeon 9000-series. The open source drivers (xf86-video-ati) don't work very good for me, my monitor's fresh rate isn't "at-top" and the monitor projection is slightly translated to the right (say 8-12 pixels). So I've tried to build the official drivers with ABS, all is gone successfully, except for some worrying warnings, but I thought that it's normal. I have a customized kernel, build through ABS... So, when I've tried to load the fglrx module it says:
# modprobe fglrx
FATAL: Error inserting fglrx (/lib/modules/2.6.27-ARCH/video/fglrx.ko): Cannot allocate memory
Please, help me! My machine is slow, I can't run any OpenGL-accelerated application, even Quake III!!! If you can suggest me how to improve the performance and how to resolve problems with open-source drivers, it also would be very good... Thank you and sorry for my poor English please.

I had some problems with installing ATI drivers recently (could not build fglrx module, not even manually, I had to change some installation script), but with latest driver version (8.11 I think) from ati.amd.com was everything fine (I have Radeon 9600 Pro)
Try to do this (and write here the output)
glxinfo | grep vendor
fglrxinfo
In both cases, it should write something like OpenGL...: ATI... if there will be MESA or DRI, that means that you don't have loaded your fglrx module.
If fglrxinfo output will be something like: no permission for...(should be first or second line of the output), then write this somewhere in your xorg.conf:
   Section "DRI"
       Mode 0666
   EndSection
run:
modprobe -a fglrx - and give here the output. If there will be none, run:
lsmod | grep fglrx - to see wheter fglrx module is really loaded in kernel
if you will have no module, you can install one, type:
cd /lib/modules/fglrx/build_mod
sh make.sh
cd ../
sh make_install.sh (as root)
and post any warning or error here at forum, drivers (but not fglrx module) are installed at /usr/share/ati
After installing drivers, you also need to configure your system (notice your system that it's there), commands:
aticonfig --initial (for editing your xorg.conf)
aticonfig --overlay-type=Xv (acceleration support in xorg.conf)
Showing your xorg.conf file here is also good idea, here is mine (sections Device and Screen):
Section "Device"
    #VideoRam    262144
    # Insert Clocks lines here if appropriate
    Identifier  "** ATI Radeon (generic)               [radeon]"
    Driver      "radeon"
EndSection
Section "Device"
    Identifier  "aticonfig-Device[0]-0"
    Driver      "fglrx"
    Option        "VideoOverlay" "on"
    Option        "OpenGLOverlay" "off"
    BusID       "PCI:1:0:0"
EndSection
Section "Screen"
    Identifier "Screen 1"
    Device     "** ATI Radeon (generic)               [radeon]"
    Monitor    "My Monitor"
    DefaultDepth     24
    SubSection "Display"
        Viewport   0 0
        Depth     8
        Modes    "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
        Modes    "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
        Modes    "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection
Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device     "aticonfig-Device[0]-0"
    Monitor    "aticonfig-Monitor[0]-0"
    DefaultDepth     24
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection

Similar Messages

  • ATI Radeon 2600 PROBLEM: First display wide and second not in mirror mode?

    Hi all, I bought a new mac pro with ATI Radeon HD 2600, my problem is this: I have one LCD monitor widescreen 1680x1050 that i use like primary display and one normal CRT television 800x600 that i use like second monior... If i set the "mirror mode" on display the clone reduce automactly my LCD to not wide monitor and i see two black row... Is it possible use the mirror mode in two different monitor? it works only at 1024x768 not 1680x1050 is the video card not enough power? Should be fixed that thing ? Regards
    Message was edited by: egariM

    You did not understand the true intent of mirror displaying, which adjusts to the lower specifications of the two screens. You would not like to see your CRT display have to accept high bandwith 1680x1050 signal and fry would you ?
    Neither is the reduction of the content of a 1680x1050 screen to a 800x600 acceptable, and not only because of the width/height different ratios : text would be pure garbage, except in huge fonts.
    So your mac pro adjusted the display to the 800x600 your crt can accept, as my macbook would when connecting to a video projector for presentation, when in mirror mode.
    This is obviously the best choice it could have done, you see...
    Now, if you want to keep best resolutions in both screen, then you have no other option than to use extended desktop.
    phjo

  • Logging with whereabouts using open source and freeware

    You can find the html version of this at:
    http://www.acelet.com/whitepaper/loggingWithWhereabouts.html
    Logging with whereabouts using open source and freeware
    The purpose of logging is to find out what had happened when needed. When the
    time comes to read log messages, you want to know both the log message and its
    whereabouts (class name, method name, file name and line number). So you need
    to hard code whereabouts.
    But hard coded whereabouts are very difficult to maintain: when you modify your
    source code, line number changes; when you copy and paste a line, its class name
    and method name change. If whereabouts are wrong, you introduce bugs in your logging
    logic and the log messages are useless at the best.
    This article shows you an example of using freeware Redress tool to rectify whereabouts
    programmatically in your Makefile or Ant build file. So your whereabouts are always
    correct for both Java and JSP source file.
    Redress tool is part of SuperLogging at http://www.ACElet.com. SuperLogging also
    provides an open source wrapper Alog.java, which redirects log method calls to
    your favorite logging package. Redress tool can rectify whereabouts information
    on all Alog's method calls in your application. So, if you call Alog's log methods,
    these calls will be rectified by Redress.
    JDK 1.4 introduces a new utility package java.util.logging. The example in this
    article is based on JDK logging. Log4J is a cousin of JDK logging. Log4J users
    should have no difficulties to modify this example for Log4J. Both JDK logging
    and Log4J are excellent logging software for single JVM.
    Note: Redress tool rectifies method calls on Alog, not JDK logging. You need to
    call Alog instead of JDK logging in your application.
    Source code of Alog.java
    The following is the source code of Alog's JDK logging version. It serves as an
    library file and should be on your CLASSPATH:
    * Copyright Acelet Corp. 2000. All rights reserved
    * License agreement begins >>>>>>>>>> <br>
    * This program (com.acelet.opensource.logging.Alog) ("Software") is an
    * open source software. <p>
    * LICENSE GRANT. The Software is owned by Acelet Corporation ("Acelet").
    * The Software is licensed to you ("Licensee"). You are granted a
    * non-exclusive right to use, modify, distribute the Software for either
    * commercial or non-commercial use for free, as long as: <br>
    * 1. this copyright paragraph remains with this file. <br>
    * 2. this source code (this file) must be included with distributed
    * binary code.<br>
    * NO WARRANTY. This comes with absolutely no warranty. <p>
    * <<<<<<<<<< License agreement ends <p><p>
    * The purpose of releasing this open source program is to prevent vendor
    * lock in. <p>
    * You can code your program using this class to indirectly use Acelet
    * SuperLogging (com.acelet.logging). If later you want to swith to other
    * logging package, you do not need to modify your program. All you have
    * to do is: <p>
    * 1. modify this file to redirect to other logging packages. <br>
    * 2. replace existing com.acelet.opensource.Alog with your modified one. <br>
    * 3. you may have to reboot your EJB server to make the changes effect.<br>
    * <p>
    * This program is just a wrapper. For detail information about the methods
    * see documents of underline package, such as com.acelet.logging.Logging.
    * <p>
    * Visit http://www.ACElet.com for more information.
    * <p>
    * This file is a modified for using JDK logging as an EXAMPLE.
    * <br>
    * You can use Redress tool to keep your whereabouts information
    * always correct. See http://www.ACElet.com/freeware for detail.
    * <p>
    * Please see http://www/ACElet.com/opensource if you want to see the
    * original version.
    package com.acelet.opensource.logging;
    import java.util.logging.*;
    public final class Alog {
    * Log level value: something will prevent normal program execution.
    public static int SEVERE = 1000;
    * Log level value: something has potential problems.
    public static int WARNING = 900;
    * Log level value: for significant messages.
    public static int INFO = 800;
    * Log level value: for config information in debugging.
    public static int CONFIG = 700;
    * Log level value: for information such as recoverable failures.
    public static int FINE = 500;
    * Log level value: for information about entering or returning a
    * method, or throwing an exception.
    public static int FINER = 400;
    * Log level value: for detail tracing information.
    public static int FINEST = 300;
    static Logger logger;
    static {
    logger = Logger.getLogger("");
    public Alog() {
    public static void alert(String subject, String message) {
    public static void error(String text, int level, String fullClassName,
    String methodName, String baseFileName, int lineNumber) {
    String[] para = {lineNumber + "", baseFileName};
    logger.logp(getLevel(level), fullClassName, methodName, text, para);
    public static Level getLevel(int levelValue) {
    if (levelValue == SEVERE)
    return Level.SEVERE;
    else if (levelValue == WARNING)
    return Level.WARNING;
    else if (levelValue == INFO)
    return Level.INFO;
    else if (levelValue == CONFIG)
    return Level.CONFIG;
    else if (levelValue == FINE)
    return Level.FINE;
    else if (levelValue == FINER)
    return Level.FINER;
    else if (levelValue == FINEST)
    return Level.FINEST;
    else
    return Level.ALL;
    public static void log(String text, int level, String fullClassName,
    String methodName, String baseFileName, int lineNumber) {
    String[] para = {lineNumber + "", baseFileName};
    logger.logp(getLevel(level), fullClassName, methodName, text, para);
    public static void sendMail(String to, String from, String subject,
    String text) throws Exception {
    public static void sendMail(String to, String cc, String bcc, String from,
    String subject, String text) throws Exception {
    Test program
    The simple test program is Test.java:
    import com.acelet.opensource.logging.Alog;
    public class Test {
    public static void main(String argv[]){
    Alog.log("Holle world", Alog.SEVERE, "wrongClassName", "wrongMethod",
    "wrongFileName", -1);
    How to run the test program
    1. Compile Alog.java (JDK 1.4 or later, not before):
    javac Alog.java
    2. Download freeware Redress tool from http://ACElet.com/freeware.
    3. Run Redress tool:
    java -cp redress.jar Test.java
    4. Check Test.java. The Alog.log method call should be rectified.
    5. Run test program:
    java Test
    You should see log message with correct class name and method name.

    Hi;
      I found this code and would like to share it with you :
    JCoDestination destination = JCoDestinationManager
      .getDestination(DESTINATION_NAME2);
      JCoFunction function = destination.getRepository().getFunction(
      "RFC_FUNCTION_SEARCH");
      if (function == null)
      throw new RuntimeException("RFC_FUNCTION_SEARCH not found in SAP.");
      function.getImportParameterList().setValue("FUNCNAME", "*");
      function.getImportParameterList().setValue("GROUPNAME", "*");
      try {
      function.execute(destination);
      JCoTable funcDetailsTable = function.getTableParameterList()
      .getTable("FUNCTIONS");
      int totalNoFunc = funcDetailsTable.getNumRows();
      if (totalNoFunc > 0) {
      for (int i = 0; i < totalNoFunc; i++) {
      System.out.println("Function Name: "
      + funcDetailsTable.getValue(i));
      } catch (AbapException e) {
      System.out.println(e.toString());
      return;
      System.out.println("RFC_FUNCTION_SEARCH finished");
    It is working and retrieving FM.
    Regards
    Anis

  • Image Tooltips Present both in Source and Output

    Hi!
    I have a tooltip problem in my RoboHelp projects. When hovering the image both in source and output the image source name is seen as a tooltip. Please, support! How can I remove them?
    Thanks!

    Double click the image and you will see a Screen Tip field in the Image Tab.
    Please add this to the other thread where you have asked this question.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Help needed regarding some open source and good media streaming server

    Hi
    I am searching for some open source and java based media streaming server which can facilitate live video streaming. Can anyone please suggest me some good streaming server.
    Thank you.

    Some observations:
    (1) The use of the Configuration.createRootApplicationModule() API is recommended only for console programs, not web applications, but it should work ok as long as your use of the appliation module is completely stateless (which from the code it looks like it is since you release the AM back to the pool on each request.)
    (2) You mention "Stateful" mode, but Configuration.createRootApplicationModule() only supports stateless mode, so you are effectively using Stateless mode.
    (3) You are passing true as the 2nd argument to Configuration.releaseRootApplicationModule() which means you are asking to immediately remove the application module instance from the pool. This will hurt the scalability of your application since each request will need to be served by creating a brand new instance of the application module.
    (4) You are explicitly calling disconnect(). This is not necessary.
    I would recommend:
    (1) Changing your 2nd argument to releaseRootApplicationModule() to false
    (2) Remove the explicit call to disconnect()
    (3) Given your usage pattern, I'd recommend calling viewobject.setForwardOnly(true) before calling viewobject.executeQuery() and iterating over the results. This will avoid any caching of the fetched view object results. Also ensure you've read section "27.2 Tuning Your View Objects for Best Performance" of the ADF Developer's Guide for Forms/4GL Developers guide on the ADF Learning Center at http://www.oracle.com/technology/products/adf/learnadf.html for more performance tips
    For example, if you are fetching 65 rows, make sure the fetch size of this view object is at least 66 so you can retried all the rows in one DB roundtrip.

  • 27in iMac (late 2009) ATI 4850 drivers problem in Windows 7

    This iMac is less than a month old. Windows 7 was working fine until a couple of days ago. While at the Windows 7 desktop the screen pixlated and froze. A tip bubble appeared in the notification bar that said the ATI driver quit but was recovered. The screen went black then restored itself. A moment later the whole thing occurred again. Is this a known issue? Is there a fix? Thanks for any help.

    BANDING AND DRIVER CRASHING SOLVED:
    I bought the following iMac on April 18, 2010 to run Windows 7 and Autodesk REVIT 2011.
    27" iMac (Late 2009)
    Intel Core i7, quad-core, 2.8GHz
    8GB (4x2GB) memory
    1TB Hard Drive
    ATI Radeon HD 4850 512MB Display Adapter
    Apple Magic Mouse
    Apple Wireless Keyboard
    Apple BootCamp with Windows 7 Ultimate
    Installed OSX, downloaded and installed all updates.
    Installed BootCamp 3.1
    Installed Windows 7 Ultimate 64bit and had the problem of the black screen during install. This was solved with the fix from apple support (copy latest drivers to a flash drive and continue to install windows). This resulted in apple windows driver 8.681.0.0 and the 16 bit color with banding. Rolled back the driver to 8.661.0.0. The banding issue was solved, but then had intermittent crashing (reset of the driver) in Chrome and REVIT 2011. This driver caused yellow "dots", then lockup and generally would reset. Very disruptive to REVIT.
    SOLUTION:
    Went to ATI website and downloaded Catalyst 10.4, then manually installed ATI Mobility Radeon HD 4850 display driver version 8.723.0.0. This display driver has 32 bit color, does NOT exhibit the color banding and has not had screen flicker, driver resets, or crashing in any programs run so far. I use this computer only for Autodesk REVIT 2011. The ATI HD 4850 is not officially supported by Autodesk, but I am able to run REVIT 2011 with hardware acceleration and anti-aliasing with no problems. So far that has been only for one day, but was not able to go more than a few minutes with the previous drivers.
    I have not run any speed benchmarks yet, but compared to my Windows 32 bit XP machine, the performance is much improved.

  • Software Installation Problems with Media Source and Nomad Explo

    Hello Creative Users,
    recently I had to reinstall my operating system on the PC. I have an IBM Thinkpad R30 with a Sitecom USB2.0 pccard. I am running WinXP Pro SP2 with all latest updates.
    I have a Nomad Jukebox Zen Xtra with Firmware .20.08 and an update harddri've of 80GB.
    As long as I was running the software on my previous installation everything worked fine.
    I installed the driver .26.02. This recognized the Jukebox. Musicmatch is able to communicate to the Jukebox and recognizes all files on it.
    When I installed Nomad Explorer I got an error ctregserv failed because ctin...dll is not found.
    When I tried to install Media Source from the original disk it showed an error after 30% Media Source not found. Install Media Source before continuing.
    This is what I received now with all verisons of Media Source and Noamd Explorer incl. .30.0.
    Can someone help me as synchronizing with Musicmatch is a pain.
    Thanks
    Rolf

    Hi everyone,
    as I saw many questions regarding installation problems with Mediasource or Nomad Explorer
    in this forum I will answer my own question right here. I was pointed to the answer by a friend with a similar problem on some other software.
    When trying to install the Creative software under WinXP SP2 I happens that the registration does not work. the reason are missing write attributes to the keys for
    Creative software. To correct that go to: Start, Run and enter regedit. Hit ok and you are in the registration editor.
    Find the Creative location unde HKEYS_SOFTWARE. Click right mouse button and choose
    properties.
    Check full access for your user as well the system user. click on advanced and mark both all the users you want to install from. Check the lower box below the user window sayin something about roghts being propagetd to lower folders etc. Cklick conform and ok, click confirm on previous screen and close regedit.
    Now you should be ok and able to install.
    Regards
    Rolf

  • Problems with opening apps and playing videos

    This may seem long but I'm only trying to state all the facts so I don't miss anything that someone can help me with
    PLEASE HELP ME!!
    About a month ago I got a new ipod touch, with the 2.1.1 or whatever software. I haven't upgraded it.
    I first spent hours putting music on, then added applications.
    Both music and applications worked.
    Then I put on a movie and 5 music videos.
    The videos/movie all worked but the apps wouldn't open.
    I checked online for app upgrades, none available.
    I tried deleting the apps from both the ipod and my itunes, then rebought them and replaced them on my ipod. Didn't work.
    Music still worked. Then the videos stopped working. No videos/no apps.
    Then I tried restoring, all that jazz that these forums recommended. I restored to factory settings, nothing seemed to work until I erased everything (somewhere in settings on the ipod it says you can erase the drive and it takes about an hour) and after that, started over.
    Put the music on, worked.
    Put the apps on first, they worked.
    Put the videos on, they worked.
    Didn't turn the ipod off for three weeks in fear that if I had to restart it, nothing would work again.
    Tried to add another app AFTER the movies were the last thing I added, and when the app wouldn't work, I deleted it from both the ipod and my itunes.
    Then I tried to start the other apps, they work.
    PROBLEM is that my movies/videos don't work now! It says "Cannot play this video."
    What the ****. I read before something about the mpeg4 format of movies not allowing apps to open up, but this time I tried to add an app and it wouldn't play the movie. I guess a lot of people are having this problem? Anyone have any new suggestions before I have to erase EVERYTHING, AGAIN from my ipod??
    Thanks!!

    Hi, here's an update I just posted on another thread on the same issue:
    Okay, update from my end.
    I did a restore of my Touch. When I restored, I had the choice of "set up as new iPod" or restore from my old iPod Touch. When I clicked on my old iPod name, and hit the scroll arrow to the side, it opened and there were 4 options; previous back ups. I chose my iPod name from August 8, 2009 and restored using that.
    After the restore, sync, etc., all music videos & apps are reloaded, working, and my software is 3.1.2.
    So, I can't say why the apps & videos wouldn't open after working for several months, but as others have suggested, try restore. However, when given the choice to "set up as new iPod" in iTunes or restore to your previous, click on the scroll where your old iPod is listed, see how many you may have in the history, and pick one a couple months back.
    Hopefully this will help some of you out there.

  • Need all drivers supporting both 32 bit and 64 bit

    hai this is chaitanya.. unfortunately i formatted my laptop. so i need drivers supporting both 32bit and 64 bit for windows 7 

    Are the drivers for the same model that Paul gave drivers for in Nov?
    http://h30434.www3.hp.com/t5/Wireless-Internet-Home-Networking/need-graphic-Card-driver-and-WLAN-dri...
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • Open Source and Java Packages

    Ok. I'm creating an open source massively multiplayer role-playing game. A game, basically. Me and my team are trying to figure out what package to make the root. It was suggested that we use "org.fiverings" (Five Rings being the name of the game, for now), but we don't own the fiverings.org domain name. Now, one of our team has argued that if someone else buys that domain name, then we are invading their space, and could get into major legal issues.
    So how are we supposed to choose a root package name? Are there any conventions dealing with this? We're doing the project on SourceForge (you can get to the hosted page at <http://fiveringsrpg.sourceforge.net>), and so does that mean that we can extend SourceForge's package (like: net.sourceforge.fiveringsrpg)? Or, because we don't exactly own that domain, are we restricted?
    Thanks to any replies on conventions, and thanks to all that check out the game and post something in our non-Dev forum.

    for commercial projects it is common to use
    com.company.product....
    replace com with org/net or stateprefix if u wish.
    But you could also start with any other prefix. And you can always change this afterwards (if you use sth like Forte For Java then the IDE can handle this renaming of packages without changing code by hand).
    And I dont think, that when u use org.fiverings, that the owners of fiverings.org could put a legal on u.
    Christian

  • ATI Radeon HD 3870 Mac&Pc edition  and Accelero S1

    I just installed the ATI Radeon HD 3870 Mac & Pc edition on my Mac Pro (first edition).
    While the fan on the card is not very loud and acceptable I would like to take the fan out and install the Accelero S1 cooler instead ( http://www.arctic-cooling.com/vga2.php?idx=138&data=7&disc= ).
    Has anyone installed one (accelero s1) lately?
    Any objections?
    Thank you for your input.
    Eugene

    Just installed this. It's great, quiet. Took about 20 minutes. Take your time and the install is easy. I didn't use the spacer clips as they're not necessary, and a bit hard to install. I ordered the Artic cleaning and prep solutions and I'm glad I did. Good luck.

  • Mobility Radeon HD 5000 Series + open source driver = screen flickers

    Hello, this is my first post here. I just finished setting up my first arch installation on my laptop and I'm using Xorg + gnome 3 as user interface.
    My laptop has two VGA cards, an integrated intel VGA card and a Mobility Radeon HD 5000 Series, so I used vgaswitcheroo to switch to the Mobility Radeon and turned off the intel VGA card.
    Now, here's the problem: I want 3d acceleration to play games and such, but the opensource radeon driver is being weird.
    Basically, if I use my Mobility Radeon and the opensource driver the lower-center part of the screen flickers when i move windows vertically. It flickers to black in a polygon-like area and the window shadows get all messed up. If i try to start a game that uses 3d acceleration (such as nexuiz) it runs extremely slow (way too slow for this VGA card) and flickers like crazy in the same area and sometimes on the entire screen.
    I already tried using the proprietary driver (catalyst) but it doesn't seem to support switchable VGA cards, since it gives me memory segmentation error.
    However, if I switch back to the Intel VGA card and use the opensource intel driver, it runs just fine with no flickering and nexuiz runs better (but of course not fast enough since the intel VGA card is crappy)
    As you can see here, 3D acceleration seems to be enabled and Xorg doesn't seem to give any major error or warning:
    [francesco@mizu ~]$ glxinfo | grep direct
    direct rendering: Yes
    [francesco@mizu ~]$ lspci | grep VGA
    00:02.0 VGA compatible controller: Intel Corporation Core Processor Integrated Graphics Controller (rev 02)
    01:00.0 VGA compatible controller: ATI Technologies Inc Manhattan [Mobility Radeon HD 5000 Series]
    [francesco@mizu ~]$ cat /sys/kernel/debug/vgaswitcheroo/switch
    0:IGD: :Off:0000:00:02.0
    1:DIS:+:Pwr:0000:01:00.0
    [francesco@mizu ~]$ cat /var/log/Xorg.0.log | grep EE
    [ 31.675] Current Operating System: Linux mizu 2.6.38-ARCH #1 SMP PREEMPT Fri Apr 22 20:29:33 CEST 2011 x86_64
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 31.923] (II) Loading extension MIT-SCREEN-SAVER
    [francesco@mizu ~]$ cat /var/log/Xorg.0.log | grep WW
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 31.819] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 31.841] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 31.842] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 31.843] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 32.447] (WW) RADEON(0): Option "AGPMode" is not used
    [ 32.447] (WW) RADEON(0): Option "AGPFastWrite" is not used
    [ 32.447] (WW) RADEON(0): Option "DynamicPM" is not used
    [ 32.447] (WW) RADEON(0): Option "ClockGating" is not used
    [ 32.447] (WW) RADEON(0): Option "DMAForXv" is not used
    [ 32.447] (WW) RADEON(0): Option "ScalerWidth" is not used
    [ 33.067] (WW) USB Optical Mouse: ignoring absolute axes.
    Here's my /etc/X11/10-monitor.conf:
    [francesco@mizu ~]$ cat /etc/X11/xorg.conf.d/10-monitor.conf
    Section "Monitor"
    Identifier "Monitor0"
    DisplaySize 361 203
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "radeon"
    Option "AGPMode" "1"
    Option "AGPFastWrite" "yes"
    Option "DRI" "on"
    Option "DynamicPM" "on" # Dynamic powersaving.
    Option "ClockGating" "on" # Assisting option for powersaving.
    Option "AccelMethod" "EXA" # EXA should fit most cases.
    Option "EXAVSync" "on" # EXAVSync is explained above.
    Option "DMAForXv" "on" # Forced option in order to enable Xv overlay.
    Option "ScalerWidth" "2048" # That should fix some very rare bugs.
    Option "EnablePageFlip" "on" # It will not be enabled on R5xx cards.
    Option "RenderAccel" "on" # Optional. It should be enabled by default.
    Option "AccelDFS" "on" #Optional. See the man page.
    EndSection
    Section "Screen"
    Identifier "Screen0" #Collapse Monitor and Device section to Screen section
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24 #Choose the depth (16||24)
    SubSection "Display"
    Depth 24
    Modes "1366x768_75.00" #Choose the resolution
    EndSubSection
    EndSection
    And here's my custom rc.local to switch to my Mobility Radeon VGA card:
    [francesco@mizu ~]$ cat /etc/rc.local
    #!/bin/bash
    # /etc/rc.local: Local multi-user startup script.
    sleep 10
    # Disable Intel VGA
    mount -t debugfs none /sys/kernel/debug
    echo DDIS > /sys/kernel/debug/vgaswitcheroo/switch
    echo OFF > /sys/kernel/debug/vgaswitcheroo/switch
    # Init wi-fi
    echo 'notsharingmypassword' | sudo -S ifconfig wlan0 up
    sudo wpa_supplicant -B -Dwext -i wlan0 -c /etc/wpa_supplicant.conf
    dhcpcd wlan0
    Last edited by KoutaOyamada (2011-05-04 15:31:39)

    bump (I'm starting to think this VGA card just doesn't work with the driver )

  • Ati Radeon X1950 problems

    Hi everybody,
    After using arch linux on my EEE PC for some months, I decided it to also install it on my desktop. I followed the wiki instructions but even from the first boot things started going wrong.
    The first problem was a black screen in every boot. This was solved easily by disabling Kernel Mode Setting(added nomodeset in menu.lst).
    However, after installing X(and KDE), more issues appeared. When desktop effects are enabled artifacts appear on the screen, mainly when moving windows.
    To make matters worse the Xserver constantly crashes(when opening konqueror for example) and sometimes the system just freezes(this happened multiple times when trying to switch from kdm to TTY1). The Xorg.0.log contains pages of unreadable text after a crash.
    I would have given up if I wasn't sure that my card can work just fine with the radeon driver. My graphics card used to work almost perfectly in Ubuntu for almost one year so I believe I'm doing something wrong.
    The card is ATI X1950 Pro(r570).
    Thank you in advance for any help!
    Last edited by jimtb (2009-12-04 08:36:09)

    I'm using radeon.
    It didn't work. I compiled 2.6.32 but if I leave modesetting enabled the system freezes when proccessing UDev events.
    Moreover, these entries appear in Xorg.0.log:
    (II) [KMS] drm report modesetting isn't supported.
    (WW) RADEON(0): [agp] AGP not available
    (WW) RADEON(0): Direct rendering disabled
    (EE) RADEON(0): [agp] AGP failed to intiallize. Disabling the DRI.
    glxinfo says I have direct rendering but I can't enable compositing at all using the new kernel.
    Last edited by jimtb (2009-12-04 13:44:16)

  • AMD ATI RADEON 6770m problem after update YOSEMITE 10.10

    Hello, i'm passing thru a very hard problems, I'm using a :
    Model Name: MacBook Pro
    Model Identifier: MacBookPro8,3
    Processor Name: Intel Core i7
    Processor Speed: 2.4 GHz
    Number of Processors: 1
    otal Number of Cores: 4
    L2 Cache (per Core): 256 KB
    L3 Cache: 6 MB
    Memory: 16 GB
    Boot ROM Version: MBP81.0047.B27
    SMC Version (system): 1.70f6
    AMD Radeon HD 6770M:
    Chipset Model: AMD Radeon HD 6770M
    Type: GPU
    Bus: PCIe
    PCIe Lane Width: x8
    VRAM (Total): 1024 MB
    Vendor: ATI (0x1002)
    Device ID: 0x6740
    after call many times to apple support made smc reset , PVRam reset, reinstall yosemite i paid for a tech made some BGA on my mac, it works for 1 week now i'm again with the same problem ... so i moved the amd .kext and controller .bundle to /DisableExtensions  but remained on the folder ... i connected my canon T2i and when iPhoto starts the amd start work and my machine sttoped .. reboot now when i boot the machine only
    amd radeon is working i tried change the card with gfxCardStatus but i can't
    and there's no second display connected here...
    so what it can be ?
    Model Name: M

    Remove Login Items to test.
    Open System Preferences > Users & Groups then select the Login Items tab. Remove all items. Restart your Mac to test.
    And remove all items from:  /Library/StartupItems  then restart to test.
    Not enough free space on the iMac disk can slow startup time.
    Click the Apple  top left in your screen. From the drop down menu click About This Mac > More Info > Storage
    Make sure there's at least 15% free disk space.
    If it's not a login/startup items or disk space issue, check the hard disk using Disk Utility.
    Launch Disk Utility located in HD > Applications > Utillities
    Select the startup disk on the left then select the First Aid tab.
    Click:  Verify Disk (not Verify Disk Permissions)
    If Disk Utility reports errors, restart your Mac while holding down the Command + R keys.
    From there you should be able to access the built in utilities in OS X Recovery to repair the startup disk and restore OS X.

  • Problem in opening .ics and .vcs file types through servlet in IE browser.

    I'm having problem in downloading an .ics and .vcs file through servlet in I.E browser. It is happening fine in Mozilla firefox(they both are getting opened in OutLook), but in IE it says as undefined file type.
    I'm using Content Type as : 'text/Calendar' and then setting header as :
    response().setContentType("text/Calendar");
    response().setContentLength(file.length());
    response().setHeader("Content-Disposition", "attachment;
    filename="+filepath);
    and after that i'm writing it to OutPut stream.
    Plz Help.

    Hi,
    On page load check whether the session values are there. If not redirect the user to the login page.
    Hope this helps,
    Regards,
    Sammani

Maybe you are looking for