Black screen/progress bar with Yosemite startup

Since installing Yosemite on my relatively new imac, when I boot up i get a black screen with the Apple logo and a progress bar, which takes about 90 seconds to load. I've tried disc first aid, verify/repair permissions etc , done a new install from my backup disc but it still persists. is this now the way of the yosemite world?
Thanks
Bruce

Try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear and again when you log in. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don’t do them all at once.
Safe Mode - About
Safe Mode - Yosemite

Similar Messages

  • My iPhone 4s is not switching on, I connected it to itunes thru my Windows 7 laptop and it says phone needs to be restored. I clicked okay and it started the process however the progress bar with the apple logo is on the screen, progressbar do not start

    My iPhone 4s is not switching on, I connected it to itunes thru my Windows 7 laptop and it says phone needs to be restored. I clicked okay and it started the process however the progress bar with the apple logo is on the screen, progress in the bar did not start yet after 5 hours. Some one please hep me.

    I did put it in DFU mode but its still not working, although everytime it shows your iphone needs to be restored. Kindly help.

  • How to use a progress bar with java mail?

    Hi, i'm new here.
    I want if someone can recommend me how to show a progress bar with java mail.
    Because, i send a message but the screen freeze, and the progress bar never appear, after the send progress finish.
    Thanks

    So why would the code we post be any different than the code in the tutorial? Why do you think our code would be easier to understand? The tutorial contains explanations about the code.
    Did you download the code and execute it? Did it work? Then customize the code to suit your situation. We can't give you the code because we don't know exactly what you are attempting to do. We don't know how you have changed to demo code so that it no longer works. Its up to you to compare your code with the demo code to see what the difference is.

  • JavaFX progress bar with glow effect.

    I am hoping someone can help me with this issue. I recently followed James Clarke example of a progress bar with glow effect and it helped with developing a progress bar for an application I was working on. But now, with the JavaFX sdk 1.2 update, the application does not fully work anymore. The progressbar.fx code is posted below:
    ProgressBar.fx code:
    import java.lang.Math;
    import java.lang.Object;
    import javafx.animation.Interpolator;
    import javafx.animation.Timeline;
    import javafx.scene.CustomNode;
    import javafx.scene.effect.GaussianBlur;
    import javafx.scene.Group;
    import javafx.scene.Node;
    import javafx.scene.paint.Color;
    import javafx.scene.paint.Paint;
    import javafx.scene.Scene;
    import javafx.scene.shape.Ellipse;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.text.Font;
    import javafx.scene.text.Text;
    import javafx.scene.text.TextOrigin;
    import javafx.stage.Stage;
    import javafx.scene.layout.Resizable;
    public class ProgressBar extends CustomNode, Resizable{
    public var min: Number;
    public var max: Number = 100.0;
    public var value: Number;
    public var background: Paint = Color.rgb(118,149,178);
    public var foreground: Paint = Color.rgb(216,219,225);
    public var font = bind Font{name: "Courier Bold Italic" size: height - borderWidth * 8};
    public var arcWidth: Number = 20;
    public var arcHeight: Number = 50;
    public var borderStroke: Color = Color.BLACK;
    public var borderWidth: Number = 1;
    public var fontPaint: Paint = Color.LIGHTGRAY;
    public var showPercentage = true;
    var progressText: Text;
    var backgroundText: Text;
    var progessBar: Rectangle;
    var range = bind Math.abs(max - min);
    var percentComplete: Number = bind if(max != 0) { (
    value - min) / max
    } // if
    else {0.0;} // else;
    var currentX = bind percentComplete * width;
    var blurX: Number = 30;
    var progressString: String = bind "%%{%.0f (percentComplete*100)}";
    var progressValue = bind "{%.2f value}";
    var progressHeight = bind height - borderWidth * 4;
    var blurAnim = Timeline {
    repeatCount: Timeline.INDEFINITE
    autoReverse: true
    keyFrames: [
    at(0s) { blurX => 0.0 }
    at(2s) { blurX =>
    currentX - progressHeight / 2 tween Interpolator.EASEBOTH }
    var playing = bind visible on replace{
    if(playing) {
    blurAnim.play();
    }else {
    blurAnim.stop();
    public override function create(): Node {
    return Group {
    content: [
    Rectangle { //background
    width: bind width
    height: bind height
    fill: bind background
    stroke: bind borderStroke
    strokeWidth: bind borderWidth
    arcWidth: bind arcWidth
    arcHeight: bind arcHeight
    cache: true
    backgroundText = Text { // Text over Background
    layoutX: bind (width - backgroundText.layoutBounds.width) / 2
    layoutY: bind (height - backgroundText.layoutBounds.height) / 2
    textOrigin: TextOrigin.TOP
    font: bind font
    fill: bind foreground
    content: bind if(showPercentage) progressString else progressValue
    cache: true
    Group {
    content: [
    progessBar = Rectangle { // Progress
    layoutX: bind borderWidth
    layoutY: bind borderWidth * 2
    width: bind currentX
    height: bind progressHeight
    fill: bind foreground
    arcWidth: bind arcWidth
    arcHeight: bind arcHeight
    Ellipse {
    centerX: bind blurX
    centerY: bind height / 2
    radiusX: bind progressHeight
    radiusY: bind progressHeight / 2
    fill: Color.rgb(255,255,255,.7)
    effect: GaussianBlur{ radius: 30
    Text { // Text Over Progress Bar, this has to be in progressBar coordinate space
    x: bind (width - backgroundText.layoutBounds.width) / 2
    y: bind (height - backgroundText.layoutBounds.height) / 2
    textOrigin: TextOrigin.TOP
    font: bind font
    fill: bind background
    content: bind if(showPercentage) progressString else progressValue
    clip: bind progessBar
    }, // Text
    ] // 2nd content
    } // 2nd Group
    ] // 1st content
    }; // 1st Group
    } // public override function create(): Node
    } // public abstract class ProgressBar extends CustomNode, Resizeable
    function run(args:String[]):Void {
    var stage: Stage = Stage {
         title: "Progress Bar"
    scene: Scene {
    width: 925
    height: 60
    content: ProgressBar {
         layoutX: 10
    layoutY: 10
    width: 890
    height: 35
    value: 80
    } // content: ProgressBar
    } // scene: Scene
    } // var stage: Stage = Stage
    } // function run(args:String[]):Void
    I use RESTful ws to get the progress of the billing run, which is the loadProgressdata() method in the main.fx, and everything was working fine until we did the javafx sdk 1.2 update. With the update in place, I recompiled the project and found that "Resizable" in
    the "public class ProgressBar extends CustomNode, Resizable" was throwing an error when the project was recompiled. I made some changes(mainly adding variables for height and width) but now when the program runs, the backing rectangle appears along with the
    percentage of billing progress, but the progress part(2nd rectangle) does not appear with the glow effect. I have read about using "getPrefWidth()" and "getPrefHeight()" methods, but not really sure how I would use them. I can't make the public class ProgressBar extends CustomNode, Resizable abstract as I need to instantiate in the Main.fx.
    Can anyone shed some light on what might need to be done to get this running correctly again. I don't need anyone the give me the exact code, but just to point me in the correct direction.

    Can you post your code again between "{ code} ... {code }" tags ? Some symbols are missing if copy/pasted.
    That said, your preferred width and height, simply return the width and height of your component. What I discovered recently is using LayoutInfo on controls to set the preferred width and height. These are the dimensions the surrounding container (VBox, HBox, Flow, ....) will use to arrange size and position of the enclosed components. So maybe you won't need Resizable any more. Simply fill in the layoutInfo property.
    Edited by: Java.Artisan on Jun 26, 2009 11:25 AM
    Edited by: Java.Artisan on Jun 26, 2009 11:26 AM

  • .mov from 4S is black screen when played with QT and QT 7/lion

    Q1. .mov from 4S is black screen when played with QT and QT 7 on lion/mac book pro.
    Q2   Also I want to burn it in DVD with common video format. Any recomment free burner software?
    Very very very urgent!! Please help.

    Hello there,
    I have a similar problem! Windows 7 shutdown unexpectedly and since that I can not reboot in windows anymore only with safe mode where everything is a mess.
    Also when it's trying to reboot in windows a blue window appears,says something about drivers  and it is counting something (79.78...till100)but  I m not able to read it cause it disappears immidiately and then black screen and then it turns to reboot in mac which works fine.
    I m sorry if I confused you with my english...
    If anyone knows please help!
    Thanks

  • Progress bar with Cancel button

    Hi Gurus,
    How to implement the Progressing bar with Cancel btn using the ScriptUI?, is it possible in script UI ?
    Thanks in advance.
    Regards,
    Imagine

    what i said is that you need to hava a reference to your thread ine the class that handle the progressBar.
    and in your Thread class you create a method like setCanceled(boolean b)...
    public MyThread extends Thread{
       private boolean canceled = false;
       public void setCanceled(boolean b){
          canceled = b;
       public void run(){
          while(!canceled){
            //do your stuff

  • Horizontal progress bar with interpolat​e color

    Looking for a control "horizontal progress bar" with interpolate color and markers like control "meter"

    If I get this right - you are looking for a progress bar that changes colour as the number changes. You can set the colour of the progress bar using property nodes. I have included a VI here that I used for testing this. This VI changes the colour from green to red as the progress bar advances. Colours are stored as 3 bytes: Red, Green and Blue.
    I hope that this helps.
    Rob
    Attachments:
    Changing_Progress_Bar.vi ‏27 KB

  • I always get a black screen & error message with YouTube, white screen on Facebook videos.

    I always get a black screen & error message with YouTube. White screen on Facebook videos. I am using Firefox 17.0.1.
    There is no more content to provide.

    If you use extensions (Tools > Add-ons > Extensions) like <i>Adblock Plus</i> or <i>NoScript</i> or <i>Flash Block</i> that can block content then make sure that such extensions aren't blocking content.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can check for problems caused by Flash updates and try these:
    *disable a possible RealPlayer Browser Record Plugin extension for Firefox and update the RealPlayer if installed
    *disable protected mode in Flash 11.3 and later
    *disable hardware acceleration in the Flash plugin
    *http://kb.mozillazine.org/Flash#Troubleshooting

  • Progress bar with install screen.

    Hi all,
    On my app I need a progress bar when I the app install some RMS records. Because of the app has near a milliom of records, this install is so longer, and I t's better show the progress of it with an bar :).
    How it's possible do it?
    Kind regards.

    In such case i recomend writing your own LoadingCanvas or something like that (You draw a kind of rectangle which size is connected to current progress). Animating this canvas while conducting another task is a different issue. In my soft I needed to view a progress bar while downloading images and so on from net. I achived it by running one separete thread for the connection and lunching a timerTask for the canvas redraw events. In my case it worked fine almost on every device but ned Nokia E series phones had some problems in memory management of 2 paralel task so i had to remove this form my app becouse it caused instability of application.
    Regards
    mchmiel

  • Black Screen in Mavericks with latest update (11.2.2 iTunes)

    I've had problems that were never fully resolved regarding waking my iMac from a sleep state. I would be able to hit the volume up and down buttons on my keyboard, hear the tones when the volume was changed, but the screen would remain black no matter what I would do (including resetting PRAM and hard resets, etc.). Eventually I just had to set it so that the computer never went to sleep, and that solved the problem. Or, more appropriately, avoided it.
    Anyway... it had been working fine with that adjustment, until this latest software update. Ironically, the update is only for iTunes, so I'm not sure exactly what could've happened. No settings were changed or anything, but here's what it's doing:
    The white screen comes up with the apple logo, then the progress bar that shows it's installing the update comes up. It stays up until the progress bar completes, then the screen promptly goes black.
    I've tried doing the hard reset thing, or whatever it's called, where you unplug and hold down the power button. And I've also reset the PRAM. Regardless of what I do, every time the iMac reboots, the white apple installation of software screen pops up and tries to reinstall the update again and again. Then it goes to the black screen.
    I also tried starting it in safe mode, and even that didn't seem to work, since it's mid-update.
    I THINK it may be related to the problem that I was having before (which was not ever solved by bringing my iMac into TWO different apple stores/genius bars), even though I can't test the volume thing... since I think it's getting stuck in the middle of installing the update, and doesn't have the ability to change volume in the middle of all that.
    Hopefully this is clear.  Thanks in advance for any help!
    PS - There's a slight chance I'm wrong about what the update is. It doesn't make ANY sense to me for it to be doing this obviously OS X update when 11.2.2 is supposed to just be an iTunes update. Perhaps it's the latest of the Mavericks updates and I'm just behind due to being out of town. No way for me to check, since I can't get past the update screen to check that stuff. Sorry!

    You can test the startup disk ...
    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 DU 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.
    Make sure to back up all important data first before using OS X Recovery.
    If you cannot access the Disk Utility app in /Applications > Utilities
    Shut down your Mac then wait about ten seconds.
    Then restart while holding down the Command + R keys. Then you can use Disk Utiility from there to repair the startup disk.

  • OSX 10.10: Is it normal to have a loading progress bar at each startup

    My MBP-13 (Mid 2010) has become very slow on startup and each time I start (from cold or re-start) it has a "process bar" as if an update is loading, on the Grey Screen where previous to the update there was just the Apple Logo. This began when I upgraded to Yosemite. Admittedly, my hard drive is a bit full (51 GB remaining) and that could be partly to blame for the slower startup, I feel like something is not quite right since the update. Earlier today on the left pane of my finder window, there were 5 versions of this MBP under the "Shared" column (5 versions of itself!). I thought this was strange so I did a restart and while it did take care of the 'ghost' shared versions of itself, it was still slow to startup again, and the progress bar was there again during the grey screen part of the startup process, as it is each time the computer starts.
    So My questions are:
    1. Is it normal to have that progress bar during startup with Yosemite when it was never there before the update?
    and
    2. What would cause this computer to show what I like to refer as 'ghost' versions of itself under the shared column on its own finder window left pane?
    Thanks in advance for any wisdom you may impart.
    Regard,
    Capt Ron

    1. Yes, the progress bar replaced the spinning gear. Haven't a clue why, but might be to mimic iOS devices ( I don't have any, so can't check).
    2,  Can't answer, since I share nothing.
    27" i7 iMac (Mid 2011) refurb, OS X Yo (10.10), Mavs, ML & SL, G4 450 MP w/10.5 & 9.2.2

  • Thunderbolt screen not reacting with Yosemite

    I updated this week to Yosemite on my MacBook Pro 2012, connected to a Thunderbolt screen.
    All working fine, but as soon as my MacBook goes in sleeping mode, the thunderbolt screen will not react anymore.
    MacBook awakes, starts up again, thunderbolt screen stays black.
    Only thing that helps is turning electricity off of the screen, put it on again and everything comes to life again.
    Didn't have this problem with Mountain Lion or Mavericks.

    Im also having an issue with my monitor since I updated to Yosemite.  I have a mid 2010 15" mac book pro.
    Everything seems to be working fine until i plug in my old apple monitor thru a mini video adaptor.  Then
    my computer slows and freezes, its unusable.  I spent a few hours at the genious bar with my mac book pro
    yesterday, tested fine, working fine without the monitor plugged in.  Never had an issue with Mavericks or any
    other OS.

  • Intel iMac - won't start - grey screen & progress bar

    I have a 2006 Intel iMac - 20" model, Intel Core Duo, 2GHz, 2GB RAM, 250GB HDD, etc.  It was one of the very earliest Intel iMacs.  Kept updated, running OS 10.6, etc.
    It has worked extremely well for over 5 years - apart from the Superdrive being temperamental sometimes - but has suddenly gone wrong.
    Last week the machine completely froze for no apparent reason.  I had to force a reboot.  This failed - grey screen and the grey spinning wheel (if that's what it's called), indefinitely.
    Forced reboot again and this time held down the shift key to go into safe boot mode.  This time it was successful, and I was able to get to the logon screen & log myself in.  I opened Disk Utility & attempted to do some diagnostics but the machine froze again.
    Looking around various other forum postings...I rebooted the machine in single user mode and was able to get to the command line to type 'fsck -fy' to attempt to fix disk problems.  This failed repeatedly, with an error message 'invalid node structure'.
    I tried to boot my machine from the OS X disc but my Superdrive refused to play ball - it would not read the disc (or any other disc for that matter, including a copy of DiskWarrior that I have).
    I have now got hold of an external DVD drive in the hope that this would show up as a boot device when I switch the machine on while holding the option key down.  No such luck - the drive powers up ok (power via USB) but I'm not given the option to boot from it - in fact that screen doesn't appear at all.
    All that happens now on powering up - regardless of what I do - is the grey apple symbol appears and a progress bar beneath it.  The progress bar gets stuck about 5% of the way along, and then after about 10 minutes it disappears and is replaced with the grey spinning wheel thingy.  And then it just gets stuck - nothing else happens.
    HELP!
    All my important data is backed up on an external drive via Time Machine, so that should be safe, but I'm desperate to get the machine running again.
    One thing that occurred to me is that I've had a program called ReFit installed on the machine which allowed me to run the machine as dual boot etc. (and I do have a couple of other small partitions on the drive, not currently used) but the ReFit welcome screen stopped appearing a couple of weeks ago for some reason.  I'm wondering if this has somehow messed things up...?
    Grateful for any suggestions...
    Thanks,
    Alan.

    For the drive, you should be OK with any SATA 2 at 3 MB/s transfer speed. You could also use a SATA 1, no jumpers needed. (Not SATA 3 - can't be jumpered down.) The early 2006 Intels were 1.5 MB/s -- at least the drives were, so I'm assuming the SATA controller on the logic board was also. Might just be SATA 2 hadn't yet been introduced and can run the faster SATA 3 without jumpers. My guess is not. You should be able to set jumpers on the drive for backwards compatibility. You'll have to contact the drive manufacturer or go to their website for that info.
    http://www.everymac.com/systems/apple/imac/stats/imac-core-2-duo-2.16-20-inch-sp ecs.html
    As for the superdrive, I'd contact the manufacturer to check on compatibility.
    Glad I'm able to help. BTW, in case you haven't noticed, maybe you want to have a look here.

  • Black screen on startx with ati radeon HD4330 Mobility and fglrx

    Hi,
    I managed to install Archlinux on my HP Butterfly laptop that's great !
    However I am not able to get X running properly.
    lspci|grep VGA
    00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
    01:00.0 VGA compatible controller: ATI Technologies Inc M92 LP [Mobility Radeon HD 4300 Series]
    Firstly I tried to use the xf86-video-ati open source driver but it made my kernel crash during the module init.
    So I am now trying fglrx, and at least my kernel is unharmed.
    But all I get is a black screen after running startx.
    Here is my X log :
    [ 95.354]
    X.Org X Server 1.9.2
    Release Date: 2010-10-30
    [ 95.354] X Protocol Version 11, Revision 0
    [ 95.354] Build Operating System: Linux 2.6.35-ARCH i686
    [ 95.354] Current Operating System: Linux myhost 2.6.36-ARCH #1 SMP PREEMPT Mon Jan 24 18:34:55 UTC 2011 i686
    [ 95.355] Kernel command line: root=/dev/sda7 ro nomodeset
    [ 95.355] Build Date: 01 November 2010 10:35:30PM
    [ 95.355]
    [ 95.362] Current version of pixman: 0.20.2
    [ 95.363] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 95.363] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 95.364] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Feb 9 20:52:31 2011
    [ 95.397] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 95.408] (==) ServerLayout "aticonfig Layout"
    [ 95.408] (**) |-->Screen "base-screen" (0)
    [ 95.408] (**) | |-->Monitor "native-monitor"
    [ 95.408] (**) | |-->Device "radeon-4330HD"
    [ 95.408] (==) Automatically adding devices
    [ 95.408] (==) Automatically enabling devices
    [ 95.467] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 95.467] Entry deleted from font path.
    [ 95.467] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 95.467] Entry deleted from font path.
    [ 95.489] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 95.489] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 95.489] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 95.489] (II) Loader magic: 0x81f1f80
    [ 95.489] (II) Module ABI versions:
    [ 95.490] X.Org ANSI C Emulation: 0.4
    [ 95.490] X.Org Video Driver: 8.0
    [ 95.490] X.Org XInput driver : 11.0
    [ 95.490] X.Org Server Extension : 4.0
    [ 95.491] (--) PCI:*(0:0:2:0) 8086:2a42:1025:0281 rev 7, Mem @ 0xf0000000/4194304, 0xe0000000/268435456, I/O @ 0x00004110/8
    [ 95.491] (--) PCI: (0:1:0:0) 1002:9552:1025:0281 rev 0, Mem @ 0xd0000000/268435456, 0xf4400000/65536, I/O @ 0x00003000/256, BIOS @ 0x????????/131072
    [ 95.491] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 95.491] (II) "extmod" will be loaded by default.
    [ 95.491] (II) "dbe" will be loaded by default.
    [ 95.491] (II) "glx" will be loaded by default.
    [ 95.491] (II) "record" will be loaded by default.
    [ 95.492] (II) "dri" will be loaded by default.
    [ 95.492] (II) "dri2" will be loaded by default.
    [ 95.492] (II) LoadModule: "extmod"
    [ 95.492] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 95.506] (II) Module extmod: vendor="X.Org Foundation"
    [ 95.506] compiled for 1.9.2, module version = 1.0.0
    [ 95.506] Module class: X.Org Server Extension
    [ 95.506] ABI class: X.Org Server Extension, version 4.0
    [ 95.506] (II) Loading extension MIT-SCREEN-SAVER
    [ 95.506] (II) Loading extension XFree86-VidModeExtension
    [ 95.506] (II) Loading extension XFree86-DGA
    [ 95.506] (II) Loading extension DPMS
    [ 95.506] (II) Loading extension XVideo
    [ 95.506] (II) Loading extension XVideo-MotionCompensation
    [ 95.506] (II) Loading extension X-Resource
    [ 95.506] (II) LoadModule: "dbe"
    [ 95.506] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 95.509] (II) Module dbe: vendor="X.Org Foundation"
    [ 95.509] compiled for 1.9.2, module version = 1.0.0
    [ 95.509] Module class: X.Org Server Extension
    [ 95.509] ABI class: X.Org Server Extension, version 4.0
    [ 95.509] (II) Loading extension DOUBLE-BUFFER
    [ 95.509] (II) LoadModule: "glx"
    [ 95.510] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 95.528] (II) Module glx: vendor="FireGL - ATI Technologies Inc."
    [ 95.528] compiled for 7.6.0, module version = 1.0.0
    [ 95.529] (II) Loading extension GLX
    [ 95.529] (II) LoadModule: "record"
    [ 95.529] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 95.529] (II) Module record: vendor="X.Org Foundation"
    [ 95.529] compiled for 1.9.2, module version = 1.13.0
    [ 95.529] Module class: X.Org Server Extension
    [ 95.529] ABI class: X.Org Server Extension, version 4.0
    [ 95.529] (II) Loading extension RECORD
    [ 95.529] (II) LoadModule: "dri"
    [ 95.530] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 95.535] (II) Module dri: vendor="X.Org Foundation"
    [ 95.535] compiled for 1.9.2, module version = 1.0.0
    [ 95.535] ABI class: X.Org Server Extension, version 4.0
    [ 95.535] (II) Loading extension XFree86-DRI
    [ 95.535] (II) LoadModule: "dri2"
    [ 95.535] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 95.536] (II) Module dri2: vendor="X.Org Foundation"
    [ 95.536] compiled for 1.9.2, module version = 1.2.0
    [ 95.536] ABI class: X.Org Server Extension, version 4.0
    [ 95.536] (II) Loading extension DRI2
    [ 95.536] (II) LoadModule: "fglrx"
    [ 95.536] (II) Loading /usr/lib/xorg/modules/drivers/fglrx_drv.so
    [ 95.719] (II) Module fglrx: vendor="FireGL - ATI Technologies Inc."
    [ 95.731] compiled for 1.4.99.906, module version = 8.81.5
    [ 95.731] Module class: X.Org Video Driver
    [ 95.736] (II) Loading sub module "fglrxdrm"
    [ 95.736] (II) LoadModule: "fglrxdrm"
    [ 95.736] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 95.765] (II) Module fglrxdrm: vendor="FireGL - ATI Technologies Inc."
    [ 95.765] compiled for 1.4.99.906, module version = 8.81.5
    [ 95.765] (II) ATI Proprietary Linux Driver Version Identifier:8.81.5
    [ 95.765] (II) ATI Proprietary Linux Driver Release Identifier: 8.812
    [ 95.765] (II) ATI Proprietary Linux Driver Build Date: Jan 4 2011 21:30:56
    [ 95.765] (--) using VT number 7
    [ 95.767] (WW) Falling back to old probe method for fglrx
    [ 95.852] (II) Loading PCS database from /etc/ati/amdpcsdb
    [ 95.861] (--) Chipset Supported AMD Graphics Processor (0x9552) found
    [ 95.862] (WW) fglrx: No matching Device section for instance (BusID PCI:0@1:0:1) found
    [ 95.862] (II) AMD Video driver is running on a device belonging to a group targeted for this release
    [ 95.871] (II) AMD Video driver is signed
    [ 95.871] (II) fglrx(0): pEnt->device->identifier=0x8f63678
    [ 95.872] (II) fglrx(0): === [xdl_x760_atiddxPreInit] === begin
    [ 95.873] (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
    [ 95.873] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 95.873] (==) fglrx(0): Default visual is TrueColor
    [ 95.873] (**) fglrx(0): Option "DPMS" "true"
    [ 95.873] (==) fglrx(0): RGB weight 888
    [ 95.873] (II) fglrx(0): Using 8 bits per RGB
    [ 95.873] (==) fglrx(0): Buffer Tiling is ON
    [ 95.874] (II) Loading sub module "fglrxdrm"
    [ 95.874] (II) LoadModule: "fglrxdrm"
    [ 95.874] (II) Reloading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 95.876] ukiDynamicMajor: found major device number 252
    [ 95.876] ukiDynamicMajor: found major device number 252
    [ 95.876] ukiOpenByBusid: Searching for BusID PCI:1:0:0
    [ 95.876] ukiOpenDevice: node name is /dev/ati/card0
    [ 95.876] ukiOpenDevice: open result is 11, (OK)
    [ 95.876] ukiOpenByBusid: ukiOpenMinor returns 11
    [ 95.876] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
    [ 95.876] (==) fglrx(0): NoAccel = NO
    [ 95.876] (==) fglrx(0): ATI 2D Acceleration Architecture enabled
    [ 95.876] (--) fglrx(0): Chipset: "ATI Mobility Radeon HD 4300 Series" (Chipset = 0x9552)
    [ 95.876] (--) fglrx(0): (PciSubVendor = 0x1025, PciSubDevice = 0x0281)
    [ 95.876] (==) fglrx(0): board vendor info: third party graphics adapter - NOT original ATI
    [ 95.876] (--) fglrx(0): Linear framebuffer (phys) at 0xd0000000
    [ 95.876] (--) fglrx(0): MMIO registers at 0xf4400000
    [ 95.876] (--) fglrx(0): I/O port at 0x00003000
    [ 95.877] (==) fglrx(0): ROM-BIOS at 0x000c0000
    [ 95.889] (II) fglrx(0): AC Adapter is used
    [ 96.174] (II) fglrx(0): ATI Video BIOS revision 9 or later detected
    [ 96.174] (--) fglrx(0): Video RAM: 524288 kByte, Type: DDR3
    [ 96.174] (II) fglrx(0): PCIE card detected
    [ 96.174] (--) fglrx(0): Using per-process page tables (PPPT) as GART.
    [ 96.174] (WW) fglrx(0): board is an unknown third party board, chipset is supported
    [ 96.180] (II) fglrx(0): Using adapter: 1:0.0.
    [ 96.224] (II) fglrx(0): [FB] MC range(MCFBBase = 0xf00000000, MCFBSize = 0x20000000)
    [ 96.453] (II) fglrx(0): Interrupt handler installed at IRQ 46.
    [ 96.453] (II) fglrx(0): RandR 1.2 support is enabled!
    [ 96.453] (II) fglrx(0): RandR 1.2 rotation support is enabled!
    [ 96.453] (==) fglrx(0): Center Mode is disabled
    [ 96.453] (II) Loading sub module "fb"
    [ 96.453] (II) LoadModule: "fb"
    [ 96.454] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 96.475] (II) Module fb: vendor="X.Org Foundation"
    [ 96.475] compiled for 1.9.2, module version = 1.0.0
    [ 96.475] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 96.475] (II) Loading sub module "ddc"
    [ 96.475] (II) LoadModule: "ddc"
    [ 96.475] (II) Module "ddc" already built-in
    [ 96.725] (II) fglrx(0): Finished Initialize PPLIB!
    [ 96.773] (II) fglrx(0): Output LVDS using monitor section native-monitor
    [ 96.773] (II) fglrx(0): Output DFP1 has no monitor section
    [ 96.773] (II) fglrx(0): Output CRT1 has no monitor section
    [ 96.785] (II) Loading sub module "ddc"
    [ 96.785] (II) LoadModule: "ddc"
    [ 96.786] (II) Module "ddc" already built-in
    [ 96.786] (II) fglrx(0): Connected Display0: LVDS
    [ 96.786] (II) fglrx(0): Display0: Failed to get EDID information.
    [ 96.862] (II) fglrx(0): Cannot get EDID information for LVDS
    [ 96.862] (II) fglrx(0): EDID for output LVDS
    [ 96.862] (II) fglrx(0): Not using mode "640x350" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "640x400" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "720x400" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "640x480" (unknown reason)
    [ 96.880] (II) fglrx(0): Not using mode "640x480" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "640x480" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "640x480" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "800x600" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "800x600" (unknown reason)
    [ 96.880] (II) fglrx(0): Not using mode "800x600" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "800x600" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "800x600" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "800x600" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "848x480" (unknown reason)
    [ 96.880] (II) fglrx(0): Not using mode "1024x768i" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1024x768" (hsync out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1024x768" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1024x768" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1024x768" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1024x768" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1152x864" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1280x768" (monitor doesn't support reduced blanking)
    [ 96.880] (II) fglrx(0): Not using mode "1280x768" (unknown reason)
    [ 96.880] (II) fglrx(0): Not using mode "1280x768" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1280x768" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1280x768" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1280x800" (hsync out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1280x800" (hsync out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1280x800" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1280x800" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1280x800" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1280x960" (hsync out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1280x960" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1280x960" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1280x1024" (hsync out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1280x1024" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1280x1024" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1280x1024" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1360x768" (unknown reason)
    [ 96.880] (II) fglrx(0): Not using mode "1360x768" (vrefresh out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1400x1050" (hsync out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1400x1050" (hsync out of range)
    [ 96.880] (II) fglrx(0): Not using mode "1400x1050" (vrefresh out of range)
    [ 96.881] (II) fglrx(0): Not using mode "1400x1050" (vrefresh out of range)
    [ 96.881] (II) fglrx(0): Not using mode "1400x1050" (vrefresh out of range)
    [ 96.881] (II) fglrx(0): Not using mode "1440x900" (hsync out of range)
    [ 96.881] (II) fglrx(0): Not using mode "1440x900" (hsync out of range)
    [ 96.881] (II) fglrx(0): Not using mode "1440x900" (vrefresh out of range)
    [ 96.881] (II) fglrx(0): Not using mode "1440x900" (vrefresh out of range)
    [ 96.881] (II) fglrx(0): Not using mode "1440x900" (vrefresh out of range)
    [ 96.881] (II) fglrx(0): Not using mode "1600x1200" (hsync out of range)
    [ 96.881] (II) fglrx(0): Not using mode "1600x1200" (vrefresh out of range)
    [ 96.881] (II) fglrx(0): Not using mode "1600x1200" (vrefresh out of range)
    [ 96.881] (II) fglrx(0): Not using mode "1600x1200" (vrefresh out of range)
    [ 96.881] (II) fglrx(0): Not using mode "1600x1200" (vrefresh out of range)
    [ 96.881] (II) fglrx(0): Not using mode "1600x1200" (vrefresh out of range)
    [ 96.881] (II) fglrx(0): Not using mode "1680x1050" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "1680x1050" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "1680x1050" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "1680x1050" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "1680x1050" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "1792x1344" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "1792x1344" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "1792x1344" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "1856x1392" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "1856x1392" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "1856x1392" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "1920x1200" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "1920x1200" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "1920x1200" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "1920x1200" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "1920x1200" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "1920x1440" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "1920x1440" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "1920x1440" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "2560x1600" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "2560x1600" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "2560x1600" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "2560x1600" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Not using mode "2560x1600" (width too large for virtual size)
    [ 96.881] (II) fglrx(0): Printing probed modes for output LVDS
    [ 96.881] (II) fglrx(0): Modeline "1366x768"x60.0 69.50 1366 1414 1446 1466 768 771 777 790 +hsync +vsync (47.4 kHz)
    [ 96.881] (II) fglrx(0): Modeline "1280x768"x60.0 69.50 1280 1414 1446 1466 768 771 777 790 +hsync +vsync (47.4 kHz)
    [ 96.881] (II) fglrx(0): Modeline "1280x720"x60.0 69.50 1280 1414 1446 1466 720 771 777 790 +hsync +vsync (47.4 kHz)
    [ 96.881] (II) fglrx(0): Modeline "1024x768"x60.0 69.50 1024 1414 1446 1466 768 771 777 790 +hsync +vsync (47.4 kHz)
    [ 96.881] (II) fglrx(0): Modeline "1024x600"x60.0 69.50 1024 1414 1446 1466 600 771 777 790 +hsync +vsync (47.4 kHz)
    [ 96.881] (II) fglrx(0): Modeline "800x600"x60.0 69.50 800 1414 1446 1466 600 771 777 790 +hsync +vsync (47.4 kHz)
    [ 96.881] (II) fglrx(0): Modeline "800x480"x60.0 69.50 800 1414 1446 1466 480 771 777 790 +hsync +vsync (47.4 kHz)
    [ 96.881] (II) fglrx(0): Modeline "720x480"x60.0 69.50 720 1414 1446 1466 480 771 777 790 +hsync +vsync (47.4 kHz)
    [ 96.881] (II) fglrx(0): Modeline "640x480"x60.0 69.50 640 1414 1446 1466 480 771 777 790 +hsync +vsync (47.4 kHz)
    [ 96.881] (II) fglrx(0): EDID for output DFP1
    [ 96.881] (II) fglrx(0): EDID for output CRT1
    [ 96.881] (II) fglrx(0): Output LVDS connected
    [ 96.881] (II) fglrx(0): Output DFP1 disconnected
    [ 96.882] (II) fglrx(0): Output CRT1 disconnected
    [ 96.882] (II) fglrx(0): Using exact sizes for initial modes
    [ 96.882] (II) fglrx(0): Output LVDS using initial mode 1366x768
    [ 96.882] (II) fglrx(0): DPI set to (96, 96)
    [ 96.882] (II) fglrx(0): Adapter ATI Mobility Radeon HD 4300 Series has 2 configurable heads and 1 displays connected.
    [ 96.882] (==) fglrx(0): PseudoColor visuals disabled
    [ 96.882] (II) Loading sub module "ramdac"
    [ 96.882] (II) LoadModule: "ramdac"
    [ 96.882] (II) Module "ramdac" already built-in
    [ 96.882] (==) fglrx(0): NoDRI = NO
    [ 96.882] (==) fglrx(0): Capabilities: 0x00000000
    [ 96.882] (==) fglrx(0): CapabilitiesEx: 0x00000000
    [ 96.882] (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
    [ 96.882] (==) fglrx(0): UseFastTLS=0
    [ 96.882] (==) fglrx(0): BlockSignalsOnLock=1
    [ 96.882] (--) Depth 24 pixmap format is 32 bpp
    [ 96.882] (II) Loading extension ATIFGLRXDRI
    [ 96.882] (II) fglrx(0): doing swlDriScreenInit
    [ 96.882] (II) fglrx(0): swlDriScreenInit for fglrx driver
    [ 96.882] ukiDynamicMajor: found major device number 252
    [ 96.882] ukiDynamicMajor: found major device number 252
    [ 96.883] ukiDynamicMajor: found major device number 252
    [ 96.883] ukiOpenByBusid: Searching for BusID PCI:1:0:0
    [ 96.883] ukiOpenDevice: node name is /dev/ati/card0
    [ 96.883] ukiOpenDevice: open result is 12, (OK)
    [ 96.883] ukiOpenByBusid: ukiOpenMinor returns 12
    [ 96.883] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
    [ 96.883] (II) fglrx(0): [uki] DRM interface version 1.0
    [ 96.883] (II) fglrx(0): [uki] created "fglrx" driver at busid "PCI:1:0:0"
    [ 96.883] (II) fglrx(0): [uki] added 8192 byte SAREA at 0x2000
    [ 96.883] (II) fglrx(0): [uki] mapped SAREA 0x2000 to 0xb76f0000
    [ 96.883] (II) fglrx(0): [uki] framebuffer handle = 0x3000
    [ 96.883] (II) fglrx(0): [uki] added 1 reserved context for kernel
    [ 96.883] (II) fglrx(0): swlDriScreenInit done
    [ 96.883] (II) fglrx(0): Kernel Module Version Information:
    [ 96.883] (II) fglrx(0): Name: fglrx
    [ 96.883] (II) fglrx(0): Version: 8.81.5
    [ 96.883] (II) fglrx(0): Date: Jan 4 2011
    [ 96.883] (II) fglrx(0): Desc: ATI FireGL DRM kernel module
    [ 96.883] (II) fglrx(0): Kernel Module version matches driver.
    [ 96.883] (II) fglrx(0): Kernel Module Build Time Information:
    [ 96.883] (II) fglrx(0): Build-Kernel UTS_RELEASE: 2.6.36-ARCH
    [ 96.883] (II) fglrx(0): Build-Kernel MODVERSIONS: no
    [ 96.883] (II) fglrx(0): Build-Kernel __SMP__: no
    [ 96.883] (II) fglrx(0): Build-Kernel PAGE_SIZE: 0x1000
    [ 96.883] (II) fglrx(0): [uki] register handle = 0x00004000
    [ 96.922] (II) fglrx(0): DRI initialization successfull
    [ 96.922] (II) fglrx(0): FBADPhys: 0xf00000000 FBMappedSize: 0x01004000
    [ 96.933] (==) fglrx(0): Backing store disabled
    [ 96.933] (II) Loading extension FGLRXEXTENSION
    [ 96.933] (**) fglrx(0): DPMS enabled
    [ 96.934] (II) fglrx(0): Initialized in-driver Xinerama extension
    [ 96.934] (**) fglrx(0): Textured Video is enabled.
    [ 96.934] (II) LoadModule: "glesx"
    [ 96.944] (II) Loading /usr/lib/xorg/modules/glesx.so
    [ 97.061] (II) Module glesx: vendor="X.Org Foundation"
    [ 97.062] compiled for 1.4.99.906, module version = 1.0.0
    [ 97.062] (II) Loading extension GLESX
    [ 97.062] (II) fglrx(0): GLESX enableFlags = 528
    [ 97.062] (II) fglrx(0): GLESX is enabled
    [ 97.062] (II) LoadModule: "amdxmm"
    [ 97.062] (II) Loading /usr/lib/xorg/modules/amdxmm.so
    [ 97.072] (II) Module amdxmm: vendor="X.Org Foundation"
    [ 97.072] compiled for 1.4.99.906, module version = 2.0.0
    [ 97.072] (II) Loading extension AMDXVOPL
    [ 97.072] (II) Loading extension AMDXVBA
    [ 97.091] (II) fglrx(0): UVD feature is enabled(II) fglrx(0):
    [ 97.094] (II) fglrx(0): Enable composite support successfully
    [ 97.094] (WW) fglrx(0): Option "VendorName" is not used
    [ 97.094] (WW) fglrx(0): Option "ModelName" is not used
    [ 97.094] (II) fglrx(0): X context handle = 0x1
    [ 97.094] (II) fglrx(0): [DRI] installation complete
    [ 97.094] (==) fglrx(0): Silken mouse enabled
    [ 97.101] (==) fglrx(0): Using HW cursor of display infrastructure!
    [ 97.101] (II) fglrx(0): Disabling in-server RandR and enabling in-driver RandR 1.2.
    [ 97.101] (II) fglrx(0): 'LVDS LCD' ConnectorType, abstracted as 'Panel'
    [ 97.101] (II) fglrx(0): 'eDP LCD' ConnectorType, abstracted as 'Panel'
    [ 98.234] (--) RandR disabled
    [ 98.234] (II) Initializing built-in extension Generic Event Extension
    [ 98.234] (II) Initializing built-in extension SHAPE
    [ 98.234] (II) Initializing built-in extension MIT-SHM
    [ 98.234] (II) Initializing built-in extension XInputExtension
    [ 98.234] (II) Initializing built-in extension XTEST
    [ 98.234] (II) Initializing built-in extension BIG-REQUESTS
    [ 98.234] (II) Initializing built-in extension SYNC
    [ 98.234] (II) Initializing built-in extension XKEYBOARD
    [ 98.234] (II) Initializing built-in extension XC-MISC
    [ 98.234] (II) Initializing built-in extension SECURITY
    [ 98.234] (II) Initializing built-in extension XINERAMA
    [ 98.234] (II) Initializing built-in extension XFIXES
    [ 98.234] (II) Initializing built-in extension RENDER
    [ 98.234] (II) Initializing built-in extension RANDR
    [ 98.234] (II) Initializing built-in extension COMPOSITE
    [ 98.234] (II) Initializing built-in extension DAMAGE
    [ 98.240] ukiDynamicMajor: found major device number 252
    [ 98.240] ukiDynamicMajor: found major device number 252
    [ 98.240] ukiOpenByBusid: Searching for BusID PCI:1:0:0
    [ 98.240] ukiOpenDevice: node name is /dev/ati/card0
    [ 98.240] ukiOpenDevice: open result is 13, (OK)
    [ 98.240] ukiOpenByBusid: ukiOpenMinor returns 13
    [ 98.240] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
    [ 98.965] (II) AIGLX: Loaded and initialized OpenGL driver(II) GLX: Initialized DRI GL provider for screen 0
    [ 99.057] (II) fglrx(0): Enable the clock gating!
    [ 99.058] (II) fglrx(0): Setting screen physical size to 361 x 203
    [ 99.597] (II) config/udev: Adding input device Power Button (/dev/input/event5)
    [ 99.597] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 99.597] (II) LoadModule: "evdev"
    [ 99.611] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 99.622] (II) Module evdev: vendor="X.Org Foundation"
    [ 99.622] compiled for 1.9.0, module version = 2.5.0
    [ 99.622] Module class: X.Org XInput Driver
    [ 99.622] ABI class: X.Org XInput driver, version 11.0
    [ 99.622] (**) Power Button: always reports core events
    [ 99.622] (**) Power Button: Device: "/dev/input/event5"
    [ 99.630] (--) Power Button: Found keys
    [ 99.630] (II) Power Button: Configuring as keyboard
    [ 99.630] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 99.630] (**) Option "xkb_rules" "evdev"
    [ 99.630] (**) Option "xkb_model" "evdev"
    [ 99.630] (**) Option "xkb_layout" "us"
    [ 99.695] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
    [ 99.695] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 99.695] (**) Video Bus: always reports core events
    [ 99.695] (**) Video Bus: Device: "/dev/input/event7"
    [ 99.703] (--) Video Bus: Found keys
    [ 99.703] (II) Video Bus: Configuring as keyboard
    [ 99.703] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    [ 99.703] (**) Option "xkb_rules" "evdev"
    [ 99.703] (**) Option "xkb_model" "evdev"
    [ 99.703] (**) Option "xkb_layout" "us"
    [ 99.704] (II) config/udev: Adding input device Video Bus (/dev/input/event8)
    [ 99.704] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 99.704] (**) Video Bus: always reports core events
    [ 99.704] (**) Video Bus: Device: "/dev/input/event8"
    [ 99.713] (--) Video Bus: Found keys
    [ 99.713] (II) Video Bus: Configuring as keyboard
    [ 99.713] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    [ 99.713] (**) Option "xkb_rules" "evdev"
    [ 99.713] (**) Option "xkb_model" "evdev"
    [ 99.713] (**) Option "xkb_layout" "us"
    [ 99.731] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 99.731] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 99.731] (**) Power Button: always reports core events
    [ 99.731] (**) Power Button: Device: "/dev/input/event1"
    [ 99.753] (--) Power Button: Found keys
    [ 99.753] (II) Power Button: Configuring as keyboard
    [ 99.753] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 99.753] (**) Option "xkb_rules" "evdev"
    [ 99.753] (**) Option "xkb_model" "evdev"
    [ 99.753] (**) Option "xkb_layout" "us"
    [ 99.754] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
    [ 99.754] (II) No input driver/identifier specified (ignoring)
    [ 99.754] (II) config/udev: Adding input device Sleep Button (/dev/input/event4)
    [ 99.755] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 99.755] (**) Sleep Button: always reports core events
    [ 99.755] (**) Sleep Button: Device: "/dev/input/event4"
    [ 99.770] (--) Sleep Button: Found keys
    [ 99.770] (II) Sleep Button: Configuring as keyboard
    [ 99.770] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
    [ 99.770] (**) Option "xkb_rules" "evdev"
    [ 99.770] (**) Option "xkb_model" "evdev"
    [ 99.770] (**) Option "xkb_layout" "us"
    [ 99.773] (II) config/udev: Adding input device HD Video WebCam (/dev/input/event10)
    [ 99.773] (**) HD Video WebCam: Applying InputClass "evdev keyboard catchall"
    [ 99.773] (**) HD Video WebCam: always reports core events
    [ 99.773] (**) HD Video WebCam: Device: "/dev/input/event10"
    [ 99.796] (--) HD Video WebCam: Found keys
    [ 99.796] (II) HD Video WebCam: Configuring as keyboard
    [ 99.796] (II) XINPUT: Adding extended input device "HD Video WebCam" (type: KEYBOARD)
    [ 99.796] (**) Option "xkb_rules" "evdev"
    [ 99.796] (**) Option "xkb_model" "evdev"
    [ 99.796] (**) Option "xkb_layout" "us"
    [ 99.797] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event9)
    [ 99.798] (II) No input driver/identifier specified (ignoring)
    [ 99.806] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 99.806] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 99.806] (**) AT Translated Set 2 keyboard: always reports core events
    [ 99.806] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 99.823] (--) AT Translated Set 2 keyboard: Found keys
    [ 99.823] (II) AT Translated Set 2 keyboard: Configuring as keyboard
    [ 99.823] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    [ 99.823] (**) Option "xkb_rules" "evdev"
    [ 99.823] (**) Option "xkb_model" "evdev"
    [ 99.823] (**) Option "xkb_layout" "us"
    [ 99.824] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
    [ 99.824] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 99.824] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 99.824] (**) SynPS/2 Synaptics TouchPad: Device: "/dev/input/event6"
    [ 99.840] (--) SynPS/2 Synaptics TouchPad: Found 10 mouse buttons
    [ 99.840] (--) SynPS/2 Synaptics TouchPad: Found absolute axes
    [ 99.840] (--) SynPS/2 Synaptics TouchPad: Found x and y absolute axes
    [ 99.840] (--) SynPS/2 Synaptics TouchPad: Found absolute touchpad.
    [ 99.840] (II) SynPS/2 Synaptics TouchPad: Configuring as touchpad
    [ 99.840] (**) SynPS/2 Synaptics TouchPad: YAxisMapping: buttons 4 and 5
    [ 99.840] (**) SynPS/2 Synaptics TouchPad: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 99.840] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
    [ 99.840] (II) SynPS/2 Synaptics TouchPad: initialized for absolute axes.
    [ 99.840] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 99.840] (II) No input driver/identifier specified (ignoring)
    [ 99.841] (II) config/udev: Adding input device PC Speaker (/dev/input/event3)
    [ 99.841] (II) No input driver/identifier specified (ignoring)
    [ 100.317] (II) fglrx(0): Restoring Recent Mode via PCS is not supported in RANDR 1.2 capable environments
    [ 103.491] (II) fglrx(0): Preparing normal LeaveVT...
    [ 103.860] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 103.860] (II) fglrx(0): Backup framebuffer data.
    [ 103.860] (II) fglrx(0): Backup complete.
    [ 119.766] (II) fglrx(0): Preparing normal EnterVT...
    [ 119.766] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 119.766] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 120.803] (II) fglrx(0): UVD feature is enabled(II) fglrx(0):
    [ 121.433] (II) fglrx(0): Hot-plug event occurs on device: 1:0:0
    [ 124.299] (II) fglrx(0): Preparing normal LeaveVT...
    [ 124.633] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 124.633] (II) fglrx(0): Backup framebuffer data.
    [ 124.633] (II) fglrx(0): Backup complete.
    All seems normal to me.
    Here is my X configuration (/etc/X11/xorg.conf.d/10-monitor.conf) :
    Section "ServerLayout"
    Identifier "aticonfig Layout"
    Screen 0 "base-screen" 0 0
    EndSection
    Section "Module"
    EndSection
    Section "Monitor"
    Identifier "native-monitor"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "radeon-4330HD"
    Driver "fglrx"
    BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "base-screen"
    Device "radeon-4330HD"
    Monitor "native-monitor"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1366x768_60.00"
    EndSubSection
    EndSection
    I initially wanted to use slim as a login manager but it always complains about not beeing able to connect to any X server.
    As a bonus I give you my rc.conf, might be usefull :
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="en_US.UTF-8"
    HARDWARECLOCK="UTC"
    TIMEZONE="Europe/Amsterdam"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
    # MOD_BLACKLIST: Prevent udev from loading these modules
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    MOD_AUTOLOAD="yes"
    #MOD_BLACKLIST=() #deprecated
    MODULES=(fglrx)
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="myhost"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    # DHCP: Set your interface to "dhcp" (eth0="dhcp")
    # Wireless: See network profiles below
    #Static IP example
    #eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
    #eth0="dhcp"
    #INTERFACES=(!eth0 !wlan0)
    eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.100.255"
    INTERFACES=(eth0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.0.1"
    ROUTES=(gateway)
    # Enable these network profiles at boot-up. These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This now requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng hal acpid network !netfs crond !wicd)
    I tried those tips Archlinux Catalyst Wiki but it didn't help.
    I may be missing something obvious, but I am quite desperate so any help is welcome.
    I can give you any other log that would be meaningfull to you.
    Thanks for helping Archlinux to spread a little more.

    i have this problem
    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 M93 [Mobility Radeon HD 4500 Series]
    when I have install catalyst-utils 11.1 and catalyst-daemons .after rebooting i saw a black screen.
    if I install xf86-video-ati occures lots of crash of KWIN plasma desktop .
    i want using Catalyst

  • Progress bar on Yosemite boot: need I worry?

    I just installed Yosemite on my laptop. My wife's laptop is identical, but I haven't yet installed Yosemite on hers. Before I do, I thought I'd ask.
    With Yosemite installed, I see that, when I boot, there is a progress bar each time before the logon prompt appears. My laptop specs:
    13-inch MacBookPro, purchased in Mid-2010;
    Processor: 2.66 GHz Intel Core 2 Duo;
    Memory: 4 GB 1067 MHz DDR3;
    Disk: 256Gb Flash (81+G free)

    Thanks Clinton. That's good to know.
    Re: Spotlight.  As with most things produced by Apple, the solution was simple - but of course not self-evident.
    Thanks to WestonGallagher for the solution. <<Re: Spotlight - How do I access the tool?>>  Once the advertisement for Apple comes up, simply starting to type opens up the Spot-light application and the search results are immediate. It would be nice to have a cursor show up in the window that pops up. That way I might have known to start typing.  Now that I know how it works, it is very slick. 
    Thanks again!

Maybe you are looking for

  • How do you recover a hard drive?

    I have a MacBook Pro that is two years old. I tried to start the laptop and it hung up on the gray screen with the apple icon.  So I inserted the snow leopard install cd and I was able to start the computer and gain access the utilities. I tried the

  • Process  Error in the Application Monitor

    Dear All we currently have the below shown Process  Error in the Application Monitor. it is absolutely impossible to delete them. What can cause this problem, please I need a solution on how to remove them for ever. Application Monitors Shopping Cart

  • Removing more than one underscore in a string

    Hi All, i have column called tax_name, it stores the values as 1. 'Service @ 5 %' 2. 'Service Tax - Consulting Services' etc.. using RTRIM(LTRIM(SUBSTRB(REPLACE(TRANSLATE ( i have converted them to Service__5_Amt, Service_Tax__Consulting_Amt etc.. us

  • HELP! iTunes account has been disabled? Can't find help

    Tonight, I tried to buy a single track from the itunes store and I got this message: "You cannot buy because your account has been disabled. to continue using your account it must be enabled by the itunes store customer service. you can contact custo

  • Ibooks does not open anymore in Safari?

    Hi anyone is experiencing it? I cannot open an iBook file anymore in Safari, the "open in iBooks" button does not appear anymore.