Black screen connecting to built-in VNC (10.4.7) from Linux

Hi there,
I just enabled the built-in VNC server in my G4 running 10.4.7, and for testing purposes enabled full rights to the connecting VNC client.
However, when connecting with a tight vnc client (from Ubuntu linux), I get a connection to the Mac and I can use the mouse, but the VNC client screen/window appears completely black; i.e., I cannot see the Mac screen on my VNC client. This behavior persists irrespectively of the actual tight vnc client; have tried multiple.
Anyone can help?
PS: I tried the OSXvnc solution (and thus disabling the built-in version of VNC), and this works flawlessly .. so I do not think that the problem is on the VNC client side.

I hate to interrupt your fuming, Joshua, but those Apple "nazis" do still sell Tiger as of a few days ago. Call 1-800-SOS-APPL and ask for Phone Sales (not iPhone sales, but a sales department that only operates over the phone, not through the online store).
As for "I just love how they dont support older products anymore," I think if you look around a little, you'll discover that Microsoft doesn't sell outdated versions of its OS any more, and most car manufacturers aren't selling their 2005 car models any more either. In fact the practice of not selling discontinued, superseded products is standard across most industries. Apple's continued selling of Tiger long after the introduction of Leopard is quite unusual.
And as for the "nazi" practice of not allowing you to install Tiger on your Powerbook from the Intel iMac's discs, the machines use entirely different architectures, and the iMac discs are configured specifically for the Intel architecture. The OS on them is also licensed for use on only one computer, not multiple computers, as you would know if you read the license agreement. And while you may never have encountered this limitation before, the discs that are shipped with every Mac have always, since the mac's earliest days, been specific to that machine model and, in all but a few exceptional (and accidental) cases, unusable on any other model. Apple has never changed this longstanding policy/practice. It's nothing new.

Similar Messages

  • Unable to connect to Oracle database running on Windows machine from linux.

    Hi,
    I'm not able to connect to oracle database running on Windows machine from Linux machine. I'm geting the below mentioned error. I have given below the code I used to connect to database and database propertes.Do I need to use any specific driver?
    Please help me.
    Thanks,
    Sunjyoti
    Code :
    import oracle.jdbc.pool.OracleDataSource;
    import java.sql.Connection;
    import java.util.*;
    import java.sql.*;
    import java.io.*;
    class try2{
    public static void main(String args[]) {
    try {
              System.out.println("hi");
    // Load the properties file to get the connection information
    Properties prop = new Properties();
    prop.load(new FileInputStream("/home/sreejith/EDIReader/Connection.properties"));
    // Create a OracleDataSource instance
    OracleDataSource ods = new OracleDataSource();
    System.out.println("prop is "+prop);
    configureDataSource(ods, prop);
    Connection conn=null;
    // Create a connection object
    conn = ods.getConnection();
         System.out.println("Connection is"+conn);
    // Sets the auto-commit property for the connection to be false.
    conn.setAutoCommit(false);
    } catch (SQLException sqlEx){ // Handle SQL Errors
    System.out.println("In exception "+sqlEx);
    } catch(Exception excep) { // Handle other errors
    System.out.println(" Exception "+ excep.toString());
    private static void configureDataSource(OracleDataSource ods, Properties prop) {
    // Database Host Name
    ods.setServerName(prop.getProperty("HostName"));
    // Set the database SID
    ods.setDatabaseName(prop.getProperty("SID"));
    // Set database port
    ods.setPortNumber( new Integer( prop.getProperty("Port") ).intValue());
    // Set the driver type
    ods.setDriverType ("thin");
    // Sets the user name
    ods.setUser(prop.getProperty("UserName"));
    // Sets the password
    ods.setPassword(prop.getProperty("Password"));
    Connection properties :
    # Your Database Connection details
    HostName = 10.20.3.19
    SID = EDIREAD
    Port = 1521
    UserName = dbuser
    Password = dbuser
    Error I'm getting is
    error while trying to connect with odbc datasource
    [root@iflexpau2217 EDIReader]# java try2
    hi
    prop is {HostName=10.20.3.19, Password=dbuser, UserName=dbuser, SID=EDIREAD, Port=1521}
    In exception java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Also I tried to connect with weblogic JDBC driver
    Code is here:
    import java.io.BufferedReader;
    import java.io.ByteArrayInputStream;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.IOException;
    import java.sql.Blob;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    //import com.entrust.toolkit.util.ByteArray;
    public class trial{
         public static void main(String args[]) throws IOException{
              System.out.println("hi");
              Connection p_conn = null;
              PreparedStatement xml_insert = null;
              try {
         // Load the JDBC driver
                   System.out.println("hi2");
         // String driverName = "oracle.jdbc.driver.OracleDriver";
    String driverName = "weblogic.jdbc.oracle.OracleDriver";
         System.out.println("hi2");
         Class.forName(driverName);
         // Create a connection to the database
         String serverName = "10.20.3.19";
         String portNumber = "1521";
         String sid = "EDIREAD";
         //String url = "jdbc:oracle:thin:@" + serverName + ":" + portNumber + ":" + sid;
    String url = "jdbc:bea:oracle://10.20.3.19:1521";
         String username = "dbuser";
         String password = "dbuser";
    System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
         p_conn = DriverManager.getConnection(url, username, password);
         System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
              xml_insert=p_conn.prepareStatement("insert into PRTB_SUBUNIT (SUBUNT_ID,SUBUNT_SUB_UNIT,SUBUNT_PHYUNT_ID) values (?,?,?)");
              //InputStream in=null;
              File l_file=new File("/home/sreejith/EDIReader/propertyfiles/inputfile/BUG_10802_ES_CSB19_68.txt");
              BufferedReader input =null;
              input=new BufferedReader(new FileReader(l_file));
              String line = null;
              StringBuffer trial=new StringBuffer();
              while (( line = input.readLine()) != null){
                   trial.append(line);
                   trial.append(System.getProperty("line.separator"));
              //InputStream is = new BufferedInputStream(new FileInputStream(l_file));
              System.out.println(trial.toString());
              //Blob b ;
              //byte[] bytes=trial.toString().getBytes();
              //System.out.println("Size-->"+bytes.length);
              xml_insert.setString(1,new String("SpecailChar"));
              //xml_insert.setBinaryStream(2,new ByteArrayInputStream(bytes),15920);
              xml_insert.setString(3,"SpecailChar");
              xml_insert.executeUpdate();
              p_conn.commit();
              } catch (ClassNotFoundException e) {
                   System.out.println("ClassNotFoundException:"+e.getMessage());
              // Could not find the database driver
              } catch (SQLException e) {
                   System.out.println("SQEXCEPTIN:"+e.getMessage());
              // Could not connect to the database
              }catch (FileNotFoundException e) {
                   System.out.println("filenot found:"+e.getMessage());
              // Could not connect to the database
    Error I'm getting is
    error while trying with jdbc:
    SQEXCEPTIN:[BEA][Oracle JDBC Driver]Error establishing socket to host and port: 10.20.3.19:1521. Reason: Connection refused

    Is the Windows firewall active? Have you enabled the port on the firewall, if it is?

  • MS-RDP black screen connecting to VDI

    I just finished configuring a new install of VDA 3.4. Everything went well, no issues. VDI runs on a OEL 5.7 box, and VBox is running on a secondary OEL 5.7 box. I have one XP install, one Pool and one user accessed via LDAP. I've setup the pool and the XP vm (bridged) for host networking and Windows RDP. I've setup the user to be assigned to the pool and the desktop. I can see the desktop console within the VDI admin website. I have no firewall or port issues.
    When I attempt to connect via MS-RDP all I get is a black screen, and eventually a timeout/failure. Looking at the cacao logs, it shows the access to the desktop...
    Preparing....
    Registering...
    Starting....
    Successfully started
    Waiting for VirtualBox addtions
    VirtualBox additions running
    Waiting for IP address
    Got IP address
    Waiting for RDP connection...
    and then...many minutes later
    Error preparing desktop for use....Timeout expired waiting for RDP connection on desktop
    Attempting to change state...
    and then the MS-RDP client finally comes back with an error. BTW, the same log messages are posted when using vda-client -u myuser.
    Any ideas why it wont finish the connection?
    ron

    Hi Ron,
    This suggested that the desktop assigned to the the user does not have the RDP service enabled (which should have been enabled in the template if cloned from one), or there may be a firewall/routing issue between the SunRay server the user is connected to (if using Sun Ray Client).
    Note that the desktop console view used by the VDI admin console is using VRDP, so this is not dependent on the MS-RDP service running on the Xp desktop.
    It could also perhaps be an issue where the user you are using does not have RDP access, which could point to a AD policy setting if using AD, etc.
    Try connecting to the VM IP address directly using a rdesktop or microsoft client to see if the problem is with the XP desktop itself or not.
    Regards,
    Ryder

  • Black Screen & Connection Error

    Hello,
    I connect to vsphere client and go to view console image.
    This working correctly and shows the current screen of the vm.
    When I want to open console is popup following error:
    Connection Error
    Could not connect to the server.
    When I connect to esxi host and make the same way.
    Is Popup a Black Screen and the Application is crash.
    Mobile Phone is: iPhone5
    vSphere Server Version 5.5.0 Build 1750787
    vSphere Client Version 5.5.0 Build 1746248
    The Firewall Port 7331 is open on the vsphere client machine
    Can someone help me please ?.

    Here my Script in the Service.xml on the ESX Host
    <service id=’0038′>
    <id>VmWare Mobile Watchlist</id>
    <rule id=’0000′>
    <direction>inbound</direction>
    <protocol>tcp</protocol>
    <porttype>dst</porttype>
    <port>7331</port>
    </rule>
    <enabled>true</enabled>
    <required>false</required>
    </service>

  • Black Screen on MBP, Can hear chime and can boot from HDD via another MBP!

    Hope someone can help me here, as I'm at my wits end.
    I've got two issues, one with my MacBook Pro 17in, 4GB RAM, 160GB 7200rpm (2008) and another with my iMac 24in. 4GB RAM, 500GB 7200rpm (2009).
    Firstly the MBP, left work on Thursday last week, got home, powered up the MBP and got a black screen!!! Tried resetting PRAM, SMC, booting in safe mode, removing and re-installing RAM, removing battery and mains power and leaving off overnight etc etc, yet nothing happens. Benn all over the forums and have not found any solution to get my beloved MBP working on it's own. I can boot off the HDD using another MBP 15in, re-install Snow Leopard and as far as I can tell the HDD is fine, as I have run disk utility and it tells me the HDD is OK.
    I can't figure this out and it's doing my head in, as I use this laptop for business use and just can't afford to go out and buy another Mac. I should point out that this MBP never had any issues when running on Leopard, but ever since I upgraded to Snow Leopard, I have had nothing, but trouble. I did a clean install, in fact I have done it at least twice, even erasing the HDD securely, both at 7pass and 35pass, yet I have had permissions issues regularly and on the odd occasion, I have also had the problem of the HDD not being recognised.
    The iMac is nearly the same, but the screen is working, although the iMac doesn't see the HDD no matter what way I do, again, reset PRAM, SMC, safe boot etc etc. In truth the iMac has been a lot more unreliable, but with the screen working, if I can get any solutions here, then I'll be working to work on that without the need or hassle of working via another.
    I think that the MBP is only just still under warranty, but the iMac definitely is, but I need at least one working for business use, so really only want to let Apple have one at a time to look at/repair etc.
    Ideally, as the HDD is working in the MBP, if I could get a solution to the black screen issue, then I could do without the iMac for whatever time it takes, so if there is anyone out there that can help, I'd be so grateful.
    One last thing, when I bought the iMac 24in., I also bought an iMac 20in., but I never upgraded the 20in. to Snow Leopard and to this day, it has worked flawlessly, without a single issue ever.
    Perhaps, I'm getting paranoid here, but there seems to me to be a link between the ongoing and regularly occurring problems with both Macs ant the upgrade to Snow Leopard. Why also, or is it just pure unadulterated coincidence that both the MBP and the iMac 24in have failed at pretty much the same time??!!!!
    I'm going mental here, so I hope someone out there has a better fix, then me overdosing on Prozac!!
    PS
    I'm not a mac expert, not good with a soldering iron either, but I'm capable of following good instructions.

    Concerning your imac, have you tried installing the OS on an external drive and running the iMac from that? My friend in Texas had her iMac's hard drive vanish, so we installed the OS on an external FireWire drive I happened to have and then restored her data from a recent backup. So far I haven't had time to install the drive in her iMac, so it's been running off of the external for a long time now. Perhaps you could do something like that so you could at least have the use of the iMac while your MBP is in the shop. Once you get the MBP back, you can send in the iMac.
    Be sure to report both of these to Apple and get case numbers so that you can document that the issues started while you were still under warranty--especially for the MBP that's about to go out of warranty.
    Good luck!

  • While in traget disk mode to fix a black screen Macbook pro,  I trashed my boot from system library...oops - it trashed the working mac file and now I have no ability to open my trash to regain it... I do have an Imac, and connecting cable.

    I trashed a system window boot file while in target disk mode: attempting to repair a black screen in macbook pro A,  it removed the file from working macbook pro B.  Now I can't open the trash to regain it.  I have an Imac, and can set up target disk mode, but am not sure where to go from here.. Help!

    So, next I used Target mode...saw the HD icon on my IMac display and "loaded" Yosemite back onto the Macbook Pro, I thought, but no!  it loaded it onto my Imac -  so, had to wait til that was done to continue....next day...I decided to try command-R w/startup, recovery mode,  and use wifi to reload Yosemite onto my Macbook Pro, because I didn't want to go deeper into the issue - just wanted my computer working again.
    That worked, of course. 
    Thank you for your help - I always learn a lot on this site.

  • Using [mesa-git] unnoficial repo causes black screen on GDM

    My card is an HD3870 (R670) and basically mesa 9.1.1 from official repos work fine but if I install the git version from here GDM flasshes for a microsecond and I get black screen. I had it working fine for about a month but more or less after the gnome 3.8 update this started to happen.
    This is the xorg.0.log using mesa 9.1.1
    [ 73.881]
    X.Org X Server 1.14.1
    Release Date: 2013-04-17
    [ 73.881] X Protocol Version 11, Revision 0
    [ 73.881] Build Operating System: Linux 3.8.7-1-ARCH x86_64
    [ 73.881] Current Operating System: Linux daniel-arch 3.8.11-1-ck #1 SMP PREEMPT Thu May 2 10:00:38 EDT 2013 x86_64
    [ 73.881] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-ck root=UUID=379256db-832d-48e7-8f68-c84894a5c7f5 ro elevator=bfq
    [ 73.881] Build Date: 17 April 2013 02:37:06PM
    [ 73.881]
    [ 73.881] Current version of pixman: 0.28.2
    [ 73.881] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 73.881] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 73.881] (==) Log file: "/var/log/Xorg.0.log", Time: Sun May 5 13:01:34 2013
    [ 73.881] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 73.881] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 73.881] (==) No Layout section. Using the first Screen section.
    [ 73.881] (==) No screen section available. Using defaults.
    [ 73.881] (**) |-->Screen "Default Screen Section" (0)
    [ 73.881] (**) | |-->Monitor "<default monitor>"
    [ 73.881] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 73.881] (==) Automatically adding devices
    [ 73.881] (==) Automatically enabling devices
    [ 73.882] (==) Automatically adding GPU devices
    [ 73.882] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 73.882] Entry deleted from font path.
    [ 73.882] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 73.882] Entry deleted from font path.
    [ 73.882] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 73.882] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 73.882] Entry deleted from font path.
    [ 73.882] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 73.882] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 73.882] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 73.882] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 73.882] (II) Loader magic: 0x7fcc20
    [ 73.882] (II) Module ABI versions:
    [ 73.882] X.Org ANSI C Emulation: 0.4
    [ 73.882] X.Org Video Driver: 14.1
    [ 73.882] X.Org XInput driver : 19.1
    [ 73.882] X.Org Server Extension : 7.0
    [ 73.882] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 73.883] (--) PCI:*(0:1:0:0) 1002:9501:1043:022a rev 0, Mem @ 0xd0000000/268435456, 0xf7ee0000/65536, I/O @ 0x0000c000/256, BIOS @ 0x????????/131072
    [ 73.883] Initializing built-in extension Generic Event Extension
    [ 73.883] Initializing built-in extension SHAPE
    [ 73.883] Initializing built-in extension MIT-SHM
    [ 73.883] Initializing built-in extension XInputExtension
    [ 73.883] Initializing built-in extension XTEST
    [ 73.883] Initializing built-in extension BIG-REQUESTS
    [ 73.883] Initializing built-in extension SYNC
    [ 73.883] Initializing built-in extension XKEYBOARD
    [ 73.883] Initializing built-in extension XC-MISC
    [ 73.883] Initializing built-in extension SECURITY
    [ 73.883] Initializing built-in extension XINERAMA
    [ 73.883] Initializing built-in extension XFIXES
    [ 73.883] Initializing built-in extension RENDER
    [ 73.883] Initializing built-in extension RANDR
    [ 73.883] Initializing built-in extension COMPOSITE
    [ 73.883] Initializing built-in extension DAMAGE
    [ 73.883] Initializing built-in extension MIT-SCREEN-SAVER
    [ 73.883] Initializing built-in extension DOUBLE-BUFFER
    [ 73.883] Initializing built-in extension RECORD
    [ 73.883] Initializing built-in extension DPMS
    [ 73.883] Initializing built-in extension X-Resource
    [ 73.883] Initializing built-in extension XVideo
    [ 73.883] Initializing built-in extension XVideo-MotionCompensation
    [ 73.883] Initializing built-in extension XFree86-VidModeExtension
    [ 73.883] Initializing built-in extension XFree86-DGA
    [ 73.883] Initializing built-in extension XFree86-DRI
    [ 73.883] Initializing built-in extension DRI2
    [ 73.883] (II) "glx" will be loaded by default.
    [ 73.883] (II) LoadModule: "dri2"
    [ 73.883] (II) Module "dri2" already built-in
    [ 73.883] (II) LoadModule: "glamoregl"
    [ 73.884] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 73.885] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 73.885] compiled for 1.14.0, module version = 0.5.0
    [ 73.885] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 73.885] (II) LoadModule: "glx"
    [ 73.885] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 73.885] (II) Module glx: vendor="X.Org Foundation"
    [ 73.885] compiled for 1.14.1, module version = 1.0.0
    [ 73.885] ABI class: X.Org Server Extension, version 7.0
    [ 73.885] (==) AIGLX enabled
    [ 73.885] Loading extension GLX
    [ 73.885] (==) Matched ati as autoconfigured driver 0
    [ 73.885] (==) Matched ati as autoconfigured driver 1
    [ 73.885] (==) Matched vesa as autoconfigured driver 2
    [ 73.885] (==) Matched modesetting as autoconfigured driver 3
    [ 73.885] (==) Matched fbdev as autoconfigured driver 4
    [ 73.885] (==) Assigned the driver to the xf86ConfigLayout
    [ 73.885] (II) LoadModule: "ati"
    [ 73.885] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 73.885] (II) Module ati: vendor="X.Org Foundation"
    [ 73.885] compiled for 1.14.0, module version = 7.1.0
    [ 73.885] Module class: X.Org Video Driver
    [ 73.885] ABI class: X.Org Video Driver, version 14.1
    [ 73.885] (II) LoadModule: "radeon"
    [ 73.885] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 73.885] (II) Module radeon: vendor="X.Org Foundation"
    [ 73.885] compiled for 1.14.0, module version = 7.1.0
    [ 73.885] Module class: X.Org Video Driver
    [ 73.885] ABI class: X.Org Video Driver, version 14.1
    [ 73.885] (II) LoadModule: "vesa"
    [ 73.886] (WW) Warning, couldn't open module vesa
    [ 73.886] (II) UnloadModule: "vesa"
    [ 73.886] (II) Unloading vesa
    [ 73.886] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 73.886] (II) LoadModule: "modesetting"
    [ 73.886] (WW) Warning, couldn't open module modesetting
    [ 73.886] (II) UnloadModule: "modesetting"
    [ 73.886] (II) Unloading modesetting
    [ 73.886] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 73.886] (II) LoadModule: "fbdev"
    [ 73.886] (WW) Warning, couldn't open module fbdev
    [ 73.886] (II) UnloadModule: "fbdev"
    [ 73.886] (II) Unloading fbdev
    [ 73.886] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 73.886] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
    ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
    ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
    ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE
    [ 73.891] (++) using VT number 1
    [ 73.891] (II) [KMS] Kernel modesetting enabled.
    [ 73.892] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 73.892] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 73.892] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 73.892] (==) RADEON(0): Default visual is TrueColor
    [ 73.892] (==) RADEON(0): RGB weight 888
    [ 73.892] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 73.892] (--) RADEON(0): Chipset: "ATI Radeon HD3870" (ChipID = 0x9501)
    [ 73.892] (II) Loading sub module "dri2"
    [ 73.892] (II) LoadModule: "dri2"
    [ 73.892] (II) Module "dri2" already built-in
    [ 73.892] (II) Loading sub module "exa"
    [ 73.892] (II) LoadModule: "exa"
    [ 73.892] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 73.892] (II) Module exa: vendor="X.Org Foundation"
    [ 73.892] compiled for 1.14.1, module version = 2.6.0
    [ 73.892] ABI class: X.Org Video Driver, version 14.1
    [ 73.892] (II) RADEON(0): KMS Color Tiling: enabled
    [ 73.892] (II) RADEON(0): KMS Color Tiling 2D: enabled
    [ 73.892] (II) RADEON(0): KMS Pageflipping: enabled
    [ 73.892] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 73.922] (II) RADEON(0): Output HDMI-0 has no monitor section
    [ 73.981] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 74.000] (II) RADEON(0): Output DIN has no monitor section
    [ 74.020] (II) RADEON(0): Output DVI-0 has no monitor section
    [ 74.050] (II) RADEON(0): EDID for output HDMI-0
    [ 74.050] (II) RADEON(0): Manufacturer: GSM Model: 5841 Serial#: 390432
    [ 74.050] (II) RADEON(0): Year: 2011 Week: 10
    [ 74.050] (II) RADEON(0): EDID Version: 1.3
    [ 74.050] (II) RADEON(0): Digital Display Input
    [ 74.050] (II) RADEON(0): Max Image Size [cm]: horiz.: 51 vert.: 29
    [ 74.050] (II) RADEON(0): Gamma: 2.20
    [ 74.050] (II) RADEON(0): DPMS capabilities: StandBy Suspend Off
    [ 74.050] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 74.050] (II) RADEON(0): First detailed timing is preferred mode
    [ 74.050] (II) RADEON(0): redX: 0.636 redY: 0.333 greenX: 0.303 greenY: 0.626
    [ 74.050] (II) RADEON(0): blueX: 0.153 blueY: 0.070 whiteX: 0.313 whiteY: 0.329
    [ 74.050] (II) RADEON(0): Supported established timings:
    [ 74.050] (II) RADEON(0): 720x400@70Hz
    [ 74.050] (II) RADEON(0): 640x480@60Hz
    [ 74.050] (II) RADEON(0): 640x480@75Hz
    [ 74.050] (II) RADEON(0): 800x600@56Hz
    [ 74.050] (II) RADEON(0): 800x600@60Hz
    [ 74.050] (II) RADEON(0): 800x600@75Hz
    [ 74.050] (II) RADEON(0): 832x624@75Hz
    [ 74.050] (II) RADEON(0): 1024x768@60Hz
    [ 74.050] (II) RADEON(0): 1024x768@75Hz
    [ 74.050] (II) RADEON(0): 1280x1024@75Hz
    [ 74.050] (II) RADEON(0): 1152x864@75Hz
    [ 74.050] (II) RADEON(0): Manufacturer's mask: 0
    [ 74.050] (II) RADEON(0): Supported standard timings:
    [ 74.050] (II) RADEON(0): #0: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 74.050] (II) RADEON(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 74.050] (II) RADEON(0): #2: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 74.050] (II) RADEON(0): #3: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 74.050] (II) RADEON(0): Supported detailed timing:
    [ 74.050] (II) RADEON(0): clock: 148.5 MHz Image Size: 510 x 290 mm
    [ 74.050] (II) RADEON(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 74.050] (II) RADEON(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 74.050] (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 155 MHz
    [ 74.050] (II) RADEON(0): Monitor name: D2342P
    [ 74.050] (II) RADEON(0): Serial No: 110MALFBG432
    [ 74.050] (II) RADEON(0): EDID (in hex):
    [ 74.050] (II) RADEON(0): 00ffffffffffff001e6d415820f50500
    [ 74.050] (II) RADEON(0): 0a15010380331d78ead945a2554da027
    [ 74.050] (II) RADEON(0): 125054a76b80714f81808140b3000101
    [ 74.050] (II) RADEON(0): 010101010101023a801871382d40582c
    [ 74.050] (II) RADEON(0): 4500fe221100001e000000fd00384b1e
    [ 74.050] (II) RADEON(0): 530f000a202020202020000000fc0044
    [ 74.050] (II) RADEON(0): 32333432500a202020202020000000ff
    [ 74.050] (II) RADEON(0): 003131304d414c4642473433320a00f7
    [ 74.050] (II) RADEON(0): Printing probed modes for output HDMI-0
    [ 74.050] (II) RADEON(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 74.050] (II) RADEON(0): Modeline "1680x1050"x59.9 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 74.050] (II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 74.050] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 74.050] (II) RADEON(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 74.050] (II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 74.050] (II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 74.050] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 74.050] (II) RADEON(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 74.050] (II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 74.050] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 74.050] (II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 74.050] (II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 74.050] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 74.050] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 74.109] (II) RADEON(0): EDID for output VGA-0
    [ 74.130] (II) RADEON(0): EDID for output DIN
    [ 74.150] (II) RADEON(0): EDID for output DVI-0
    [ 74.150] (II) RADEON(0): Output HDMI-0 connected
    [ 74.150] (II) RADEON(0): Output VGA-0 disconnected
    [ 74.150] (II) RADEON(0): Output DIN disconnected
    [ 74.150] (II) RADEON(0): Output DVI-0 disconnected
    [ 74.150] (II) RADEON(0): Using exact sizes for initial modes
    [ 74.150] (II) RADEON(0): Output HDMI-0 using initial mode 1920x1080
    [ 74.150] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 74.150] (II) RADEON(0): mem size init: gart size :1fdef000 vram size: s:20000000 visible:1f7d7000
    [ 74.150] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 74.150] (==) RADEON(0): DPI set to (96, 96)
    [ 74.150] (II) Loading sub module "fb"
    [ 74.150] (II) LoadModule: "fb"
    [ 74.150] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 74.150] (II) Module fb: vendor="X.Org Foundation"
    [ 74.150] compiled for 1.14.1, module version = 1.0.0
    [ 74.150] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 74.150] (II) Loading sub module "ramdac"
    [ 74.150] (II) LoadModule: "ramdac"
    [ 74.150] (II) Module "ramdac" already built-in
    [ 74.150] (--) Depth 24 pixmap format is 32 bpp
    [ 74.150] (II) RADEON(0): [DRI2] Setup complete
    [ 74.150] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 74.150] (II) RADEON(0): [DRI2] VDPAU driver: r600
    [ 74.150] (II) RADEON(0): Front buffer size: 8160K
    [ 74.150] (II) RADEON(0): VRAM usage limit set to 456966K
    [ 74.150] (==) RADEON(0): Backing store disabled
    [ 74.150] (II) RADEON(0): Direct rendering enabled
    [ 74.150] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 74.150] (II) EXA(0): Driver registered support for the following operations:
    [ 74.150] (II) Solid
    [ 74.150] (II) Copy
    [ 74.150] (II) Composite (RENDER acceleration)
    [ 74.150] (II) UploadToScreen
    [ 74.150] (II) DownloadFromScreen
    [ 74.150] (II) RADEON(0): Acceleration enabled
    [ 74.150] (==) RADEON(0): DPMS enabled
    [ 74.151] (==) RADEON(0): Silken mouse enabled
    [ 74.151] (II) RADEON(0): Set up textured video
    [ 74.151] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 74.151] (II) RADEON(0): [XvMC] Extension initialized.
    [ 74.151] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 74.151] (--) RandR disabled
    [ 74.162] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 74.162] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 74.162] (II) AIGLX: enabled GLX_ARB_create_context
    [ 74.162] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 74.162] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 74.162] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 74.162] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 74.162] (II) AIGLX: Loaded and initialized r600
    [ 74.162] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 74.163] (II) RADEON(0): Setting screen physical size to 508 x 285
    [ 74.191] (II) config/udev: Adding input device Power Button (/dev/input/event6)
    [ 74.191] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 74.191] (II) LoadModule: "evdev"
    [ 74.191] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 74.192] (II) Module evdev: vendor="X.Org Foundation"
    [ 74.192] compiled for 1.14.0, module version = 2.8.0
    [ 74.192] Module class: X.Org XInput Driver
    [ 74.192] ABI class: X.Org XInput driver, version 19.1
    [ 74.192] (II) Using input driver 'evdev' for 'Power Button'
    [ 74.192] (**) Power Button: always reports core events
    [ 74.192] (**) evdev: Power Button: Device: "/dev/input/event6"
    [ 74.192] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 74.192] (--) evdev: Power Button: Found keys
    [ 74.192] (II) evdev: Power Button: Configuring as keyboard
    [ 74.192] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input6/event6"
    [ 74.192] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 74.192] (**) Option "xkb_rules" "evdev"
    [ 74.192] (**) Option "xkb_model" "evdev"
    [ 74.192] (**) Option "xkb_layout" "us"
    [ 74.211] (II) config/udev: Adding input device Power Button (/dev/input/event5)
    [ 74.211] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 74.211] (II) Using input driver 'evdev' for 'Power Button'
    [ 74.211] (**) Power Button: always reports core events
    [ 74.211] (**) evdev: Power Button: Device: "/dev/input/event5"
    [ 74.211] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 74.211] (--) evdev: Power Button: Found keys
    [ 74.211] (II) evdev: Power Button: Configuring as keyboard
    [ 74.211] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5/event5"
    [ 74.211] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 74.211] (**) Option "xkb_rules" "evdev"
    [ 74.211] (**) Option "xkb_model" "evdev"
    [ 74.211] (**) Option "xkb_layout" "us"
    [ 74.211] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 74.212] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event8)
    [ 74.212] (II) No input driver specified, ignoring this device.
    [ 74.212] (II) This device may have been added with another device file.
    [ 74.212] (II) config/udev: Adding input device USB-compliant keyboard (/dev/input/event0)
    [ 74.212] (**) USB-compliant keyboard: Applying InputClass "evdev keyboard catchall"
    [ 74.212] (II) Using input driver 'evdev' for 'USB-compliant keyboard'
    [ 74.212] (**) USB-compliant keyboard: always reports core events
    [ 74.212] (**) evdev: USB-compliant keyboard: Device: "/dev/input/event0"
    [ 74.212] (--) evdev: USB-compliant keyboard: Vendor 0x62a Product 0x201
    [ 74.212] (--) evdev: USB-compliant keyboard: Found keys
    [ 74.212] (II) evdev: USB-compliant keyboard: Configuring as keyboard
    [ 74.212] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1:1.0/input/input0/event0"
    [ 74.212] (II) XINPUT: Adding extended input device "USB-compliant keyboard" (type: KEYBOARD, id 8)
    [ 74.212] (**) Option "xkb_rules" "evdev"
    [ 74.212] (**) Option "xkb_model" "evdev"
    [ 74.212] (**) Option "xkb_layout" "us"
    [ 74.212] (II) config/udev: Adding input device USB-compliant keyboard (/dev/input/event1)
    [ 74.212] (**) USB-compliant keyboard: Applying InputClass "evdev keyboard catchall"
    [ 74.212] (II) Using input driver 'evdev' for 'USB-compliant keyboard'
    [ 74.212] (**) USB-compliant keyboard: always reports core events
    [ 74.212] (**) evdev: USB-compliant keyboard: Device: "/dev/input/event1"
    [ 74.212] (--) evdev: USB-compliant keyboard: Vendor 0x62a Product 0x201
    [ 74.212] (--) evdev: USB-compliant keyboard: Found 1 mouse buttons
    [ 74.212] (--) evdev: USB-compliant keyboard: Found scroll wheel(s)
    [ 74.212] (--) evdev: USB-compliant keyboard: Found relative axes
    [ 74.212] (--) evdev: USB-compliant keyboard: Found x and y relative axes
    [ 74.212] (--) evdev: USB-compliant keyboard: Found absolute axes
    [ 74.212] (II) evdev: USB-compliant keyboard: Forcing absolute x/y axes to exist.
    [ 74.213] (--) evdev: USB-compliant keyboard: Found keys
    [ 74.213] (II) evdev: USB-compliant keyboard: Configuring as mouse
    [ 74.213] (II) evdev: USB-compliant keyboard: Configuring as keyboard
    [ 74.213] (II) evdev: USB-compliant keyboard: Adding scrollwheel support
    [ 74.213] (**) evdev: USB-compliant keyboard: YAxisMapping: buttons 4 and 5
    [ 74.213] (**) evdev: USB-compliant keyboard: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 74.213] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1:1.1/input/input1/event1"
    [ 74.213] (II) XINPUT: Adding extended input device "USB-compliant keyboard" (type: KEYBOARD, id 9)
    [ 74.213] (**) Option "xkb_rules" "evdev"
    [ 74.213] (**) Option "xkb_model" "evdev"
    [ 74.213] (**) Option "xkb_layout" "us"
    [ 74.213] (II) evdev: USB-compliant keyboard: initialized for relative axes.
    [ 74.213] (WW) evdev: USB-compliant keyboard: ignoring absolute axes.
    [ 74.213] (**) USB-compliant keyboard: (accel) keeping acceleration scheme 1
    [ 74.213] (**) USB-compliant keyboard: (accel) acceleration profile 0
    [ 74.213] (**) USB-compliant keyboard: (accel) acceleration factor: 2.000
    [ 74.213] (**) USB-compliant keyboard: (accel) acceleration threshold: 4
    [ 74.213] (II) config/udev: Adding input device USB-compliant keyboard (/dev/input/mouse0)
    [ 74.213] (II) No input driver specified, ignoring this device.
    [ 74.213] (II) This device may have been added with another device file.
    [ 74.213] (II) config/udev: Adding input device HID 04b4:0033 (/dev/input/event2)
    [ 74.213] (**) HID 04b4:0033: Applying InputClass "evdev pointer catchall"
    [ 74.213] (II) Using input driver 'evdev' for 'HID 04b4:0033'
    [ 74.213] (**) HID 04b4:0033: always reports core events
    [ 74.213] (**) evdev: HID 04b4:0033: Device: "/dev/input/event2"
    [ 74.213] (--) evdev: HID 04b4:0033: Vendor 0x4b4 Product 0x33
    [ 74.213] (--) evdev: HID 04b4:0033: Found 9 mouse buttons
    [ 74.213] (--) evdev: HID 04b4:0033: Found scroll wheel(s)
    [ 74.213] (--) evdev: HID 04b4:0033: Found relative axes
    [ 74.213] (--) evdev: HID 04b4:0033: Found x and y relative axes
    [ 74.213] (II) evdev: HID 04b4:0033: Configuring as mouse
    [ 74.213] (II) evdev: HID 04b4:0033: Adding scrollwheel support
    [ 74.213] (**) evdev: HID 04b4:0033: YAxisMapping: buttons 4 and 5
    [ 74.213] (**) evdev: HID 04b4:0033: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 74.213] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-2/4-2:1.0/input/input2/event2"
    [ 74.213] (II) XINPUT: Adding extended input device "HID 04b4:0033" (type: MOUSE, id 10)
    [ 74.214] (II) evdev: HID 04b4:0033: initialized for relative axes.
    [ 74.214] (**) HID 04b4:0033: (accel) keeping acceleration scheme 1
    [ 74.214] (**) HID 04b4:0033: (accel) acceleration profile 0
    [ 74.214] (**) HID 04b4:0033: (accel) acceleration factor: 2.000
    [ 74.214] (**) HID 04b4:0033: (accel) acceleration threshold: 4
    [ 74.214] (II) config/udev: Adding input device HID 04b4:0033 (/dev/input/mouse1)
    [ 74.214] (II) No input driver specified, ignoring this device.
    [ 74.214] (II) This device may have been added with another device file.
    [ 74.214] (II) config/udev: Adding input device Twin USB Joystick (/dev/input/event3)
    [ 74.214] (II) No input driver specified, ignoring this device.
    [ 74.214] (II) This device may have been added with another device file.
    [ 74.214] (II) config/udev: Adding input device Twin USB Joystick (/dev/input/js0)
    [ 74.214] (II) No input driver specified, ignoring this device.
    [ 74.214] (II) This device may have been added with another device file.
    [ 74.214] (II) config/udev: Adding input device Twin USB Joystick (/dev/input/event4)
    [ 74.214] (II) No input driver specified, ignoring this device.
    [ 74.214] (II) This device may have been added with another device file.
    [ 74.215] (II) config/udev: Adding input device Twin USB Joystick (/dev/input/js1)
    [ 74.215] (II) No input driver specified, ignoring this device.
    [ 74.215] (II) This device may have been added with another device file.
    [ 74.215] (II) config/udev: Adding input device PC Speaker (/dev/input/event7)
    [ 74.215] (II) No input driver specified, ignoring this device.
    [ 74.215] (II) This device may have been added with another device file.
    [ 74.399] (II) RADEON(0): EDID vendor "GSM", prod id 22593
    [ 74.399] (II) RADEON(0): Using EDID range info for horizontal sync
    [ 74.399] (II) RADEON(0): Using EDID range info for vertical refresh
    [ 74.399] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 74.399] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 74.399] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 74.399] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 74.399] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 74.399] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 74.399] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 74.399] (II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 74.399] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 74.399] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 74.399] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 74.399] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 74.399] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 74.399] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 74.399] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 74.399] (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 74.578] (II) RADEON(0): EDID vendor "GSM", prod id 22593
    [ 74.578] (II) RADEON(0): Using hsync ranges from config file
    [ 74.578] (II) RADEON(0): Using vrefresh ranges from config file
    [ 74.578] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 74.578] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 74.578] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 74.578] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 74.578] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 74.578] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 74.578] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 74.578] (II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 74.578] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 74.578] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 74.578] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 74.578] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 74.578] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 74.578] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 74.578] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 74.578] (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 74.778] (II) RADEON(0): EDID vendor "GSM", prod id 22593
    [ 74.778] (II) RADEON(0): Using hsync ranges from config file
    [ 74.778] (II) RADEON(0): Using vrefresh ranges from config file
    [ 74.778] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 74.778] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 74.778] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 74.778] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 74.778] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 74.778] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 74.778] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 74.778] (II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 74.778] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 74.778] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 74.778] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 74.778] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 74.778] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 74.778] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 74.778] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 74.778] (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 78.817] (II) RADEON(0): EDID vendor "GSM", prod id 22593
    [ 78.817] (II) RADEON(0): Using hsync ranges from config file
    [ 78.817] (II) RADEON(0): Using vrefresh ranges from config file
    [ 78.817] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 78.817] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 78.817] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 78.817] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 78.817] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 78.817] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 78.817] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 78.817] (II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 78.817] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 78.817] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 78.817] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 78.817] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 78.817] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 78.817] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 78.817] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 78.817] (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 79.064] (II) RADEON(0): EDID vendor "GSM", prod id 22593
    [ 79.064] (II) RADEON(0): Using hsync ranges from config file
    [ 79.064] (II) RADEON(0): Using vrefresh ranges from config file
    [ 79.064] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 79.064] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 79.064] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 79.064] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 79.064] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 79.064] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 79.064] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 79.064] (II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 79.064] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 79.064] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 79.064] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 79.064] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 79.064] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 79.064] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 79.064] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 79.064] (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 79.275] (II) RADEON(0): EDID vendor "GSM", prod id 22593
    [ 79.276] (II) RADEON(0): Using hsync ranges from config file
    [ 79.276] (II) RADEON(0): Using vrefresh ranges from config file
    [ 79.276] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 79.276] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 79.276] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 79.276] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 79.276] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 79.276] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 79.276] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 79.276] (II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 79.276] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 79.276] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 79.276] (II) RADEON(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 79.276] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 79.276] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 79.276] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 79.276] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 79.276] (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    And the journal
    Allowing runtime journal files to grow to 197.5M.
    Initializing cgroup subsys cpuset
    Linux version 3.8.11-1-ck (squishy@ease) (gcc version 4.8.0 20130425 (prerelease) (GCC) ) #1 SMP PREEMPT Thu May 2 10:00:38 EDT 2013
    Command line: BOOT_IMAGE=/boot/vmlinuz-linux-ck root=UUID=379256db-832d-48e7-8f68-c84894a5c7f5 ro elevator=bfq
    e820: BIOS-provided physical RAM map:
    BIOS-e820: [mem 0x0000000000000000-0x000000000009ebff] usable
    BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved
    BIOS-e820: [mem 0x00000000000e4000-0x00000000000fffff] reserved
    BIOS-e820: [mem 0x0000000000100000-0x00000000cff7ffff] usable
    BIOS-e820: [mem 0x00000000cff80000-0x00000000cff8dfff] ACPI data
    BIOS-e820: [mem 0x00000000cff8e000-0x00000000cffdffff] ACPI NVS
    BIOS-e820: [mem 0x00000000cffe0000-0x00000000cfffffff] reserved
    BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    BIOS-e820: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
    BIOS-e820: [mem 0x0000000100000000-0x000000012fffffff] usable
    NX (Execute Disable) protection: active
    SMBIOS 2.4 present.
    DMI: System manufacturer P5K Premium/P5K Premium, BIOS 1101 12/17/2008
    e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    e820: remove [mem 0x000a0000-0x000fffff] usable
    No AGP bridge found
    e820: last_pfn = 0x130000 max_arch_pfn = 0x400000000
    MTRR default type: uncachable
    MTRR fixed ranges enabled:
    00000-9FFFF write-back
    A0000-BFFFF uncachable
    C0000-DFFFF write-protect
    E0000-EFFFF write-through
    F0000-FFFFF write-protect
    MTRR variable ranges enabled:
    0 base 0D0000000 mask FF0000000 uncachable
    1 base 0E0000000 mask FE0000000 uncachable
    2 base 000000000 mask F00000000 write-back
    3 base 100000000 mask FE0000000 write-back
    4 base 120000000 mask FF0000000 write-back
    5 disabled
    6 disabled
    7 disabled
    x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
    e820: last_pfn = 0xcff80 max_arch_pfn = 0x400000000
    found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [ffff8800000ff780]
    initial memory mapped: [mem 0x00000000-0x1fffffff]
    Base memory trampoline at [ffff880000098000] 98000 size 24576
    init_memory_mapping: [mem 0x00000000-0xcff7ffff]
    [mem 0x00000000-0xcfdfffff] page 2M
    [mem 0xcfe00000-0xcff7ffff] page 4k
    kernel direct mapping tables up to 0xcff7ffff @ [mem 0x1fffa000-0x1fffffff]
    init_memory_mapping: [mem 0x100000000-0x12fffffff]
    [mem 0x100000000-0x12fffffff] page 2M
    kernel direct mapping tables up to 0x12fffffff @ [mem 0xcff7e000-0xcff7ffff]
    RAMDISK: [mem 0x378f2000-0x37c70fff]
    ACPI: RSDP 00000000000fbb20 00014 (v00 ACPIAM)
    ACPI: RSDT 00000000cff80000 0003C (v01 A_M_I_ OEMRSDT 12000817 MSFT 00000097)
    ACPI: FACP 00000000cff80200 00084 (v02 A_M_I_ OEMFACP 12000817 MSFT 00000097)
    ACPI: DSDT 00000000cff805c0 0913A (v01 A0840 A0840001 00000001 INTL 20060113)
    ACPI: FACS 00000000cff8e000 00040
    ACPI: APIC 00000000cff80390 0006C (v01 A_M_I_ OEMAPIC 12000817 MSFT 00000097)
    ACPI: MCFG 00000000cff80400 0003C (v01 A_M_I_ OEMMCFG 12000817 MSFT 00000097)
    ACPI: OEMB 00000000cff8e040 00081 (v01 A_M_I_ AMI_OEM 12000817 MSFT 00000097)
    ACPI: HPET 00000000cff89700 00038 (v01 A_M_I_ OEMHPET 12000817 MSFT 00000097)
    ACPI: OSFR 00000000cff89740 000B0 (v01 A_M_I_ OEMOSFR 12000817 MSFT 00000097)
    ACPI: Local APIC address 0xfee00000
    [ffffea0000000000-ffffea0004bfffff] PMD -> [ffff88012b600000-ffff88012f5fffff] on node 0
    Zone ranges:
    DMA [mem 0x00010000-0x00ffffff]
    DMA32 [mem 0x01000000-0xffffffff]
    Normal [mem 0x100000000-0x12fffffff]
    Movable zone start for each node
    Early memory node ranges
    node 0: [mem 0x00010000-0x0009dfff]
    node 0: [mem 0x00100000-0xcff7ffff]
    node 0: [mem 0x100000000-0x12fffffff]
    On node 0 totalpages: 1048334
    DMA zone: 64 pages used for memmap
    DMA zone: 6 pages reserved
    DMA zone: 3912 pages, LIFO batch:0
    DMA32 zone: 13246 pages used for memmap
    DMA32 zone: 834498 pages, LIFO batch:31
    Normal zone: 3072 pages used for memmap
    Normal zone: 193536 pages, LIFO batch:31
    ACPI: PM-Timer IO Port: 0x808
    ACPI: Local APIC address 0xfee00000
    ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    IOAPIC[0]: apic_id 4, version 32, address 0xfec00000, GSI 0-23
    ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    ACPI: IRQ0 used by override.
    ACPI: IRQ2 used by override.
    ACPI: IRQ9 used by override.
    Using ACPI (MADT) for SMP configuration information
    ACPI: HPET id: 0x8086a301 base: 0xfed00000
    smpboot: Allowing 4 CPUs, 0 hotplug CPUs
    nr_irqs_gsi: 40
    PM: Registered nosave memory: 000000000009e000 - 000000000009f000
    PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    PM: Registered nosave memory: 00000000000a0000 - 00000000000e4000
    PM: Registered nosave memory: 00000000000e4000 - 0000000000100000
    PM: Registered nosave memory: 00000000cff80000 - 00000000cff8e000
    PM: Registered nosave memory: 00000000cff8e000 - 00000000cffe0000
    PM: Registered nosave memory: 00000000cffe0000 - 00000000d0000000
    PM: Registered nosave memory: 00000000d0000000 - 00000000fee00000
    PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    PM: Registered nosave memory: 00000000fee01000 - 00000000ffe00000
    PM: Registered nosave memory: 00000000ffe00000 - 0000000100000000
    e820: [mem 0xd0000000-0xfedfffff] available for PCI devices
    Booting paravirtualized kernel on bare hardware
    setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    PERCPU: Embedded 28 pages/cpu @ffff88012fc00000 s82816 r8192 d23680 u524288
    pcpu-alloc: s82816 r8192 d23680 u524288 alloc=1*2097152
    pcpu-alloc: [0] 0 1 2 3
    Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1031946
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-ck root=UUID=379256db-832d-48e7-8f68-c84894a5c7f5 ro elevator=bfq
    PID hash table entries: 4096 (order: 3, 32768 bytes)
    Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    __ex_table already sorted, skipping sort
    Checking aperture...
    No AGP bridge found
    Calgary: detecting Calgary via BIOS EBDA area
    Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Memory: 4040388k/4980736k available (4749k kernel code, 787400k absent, 152948k reserved, 4110k data, 784k init)
    SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    Preemptible hierarchical RCU implementation.
    RCU dyntick-idle grace-period acceleration is enabled.
    Dump stacks of tasks blocking RCU-preempt GP.
    NR_IRQS:4352 nr_irqs:1192 16
    Console: colour dummy device 80x25
    console [tty0] enabled
    allocated 16777216 bytes of page_cgroup
    please try 'cgroup_disable=memory' option if you don't want memory cgroups
    hpet clockevent registered
    tsc: Fast TSC calibration using PIT
    tsc: Detected 3347.089 MHz processor
    Calibrating delay loop (skipped), value calculated using timer frequency.. 6696.10 BogoMIPS (lpj=11156963)
    pid_max: default: 32768 minimum: 301
    Security Framework initialized
    AppArmor: AppArmor disabled by boot time parameter
    Mount-cache hash table entries: 256
    Initializing cgroup subsys memory
    Initializing cgroup subsys devices
    Initializing cgroup subsys freezer
    Initializing cgroup subsys net_cls
    Initializing cgroup subsys blkio
    Initializing cgroup subsys bfqio
    CPU: Physical Processor ID: 0
    CPU: Processor Core ID: 0
    mce: CPU supports 6 MCE banks
    CPU0: Thermal monitoring enabled (TM2)
    process: using mwait in idle threads
    Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32
    tlb_flushall_shift: -1
    Freeing SMP alternatives: 16k freed
    ACPI: Core revision 20121018
    ftrace: allocating 18903 entries in 74 pages
    ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    smpboot: CPU0: Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz (fam: 06, model: 0f, stepping: 0b)
    APIC calibration not consistent with PM-Timer: 116ms instead of 100ms
    APIC delta adjusted to PM-Timer: 2324406 (2711801)
    Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    perf_event_intel: PEBS disabled due to CPU errata
    ... version: 2
    ... bit width: 40
    ... generic registers: 2
    ... value mask: 000000ffffffffff
    ... max period: 000000007fffffff
    ... fixed-purpose events: 3
    ... event mask: 0000000700000003
    NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    smpboot: Booting Node 0, Processors #1 #2 #3
    Brought up 4 CPUs
    smpboot: Total of 4 processors activated (26787.40 BogoMIPS)
    devtmpfs: initialized
    PM: Registering ACPI NVS region [mem 0xcff8e000-0xcffdffff] (335872 bytes)
    RTC time: 12:00:20, date: 05/05/13
    NET: Registered protocol family 16
    ACPI: bus type pci registered
    PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    PCI: not using MMCONFIG
    PCI: Using configuration type 1 for base access
    bio: create slab <bio-0> at 0
    ACPI: Added _OSI(Module Device)
    ACPI: Added _OSI(Processor Device)
    ACPI: Added _OSI(3.0 _SCP Extensions)
    ACPI: Added _OSI(Processor Aggregator Device)
    ACPI: EC: Look up EC in DSDT
    ACPI: Executed 1 blocks of module-level executable AML code
    ACPI: SSDT 00000000cff8e0d0 00190 (v01 AMI CPU1PM 00000001 INTL 20060113)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 00190 (v01 AMI CPU1PM 00000001 INTL 20060113)
    ACPI: SSDT 00000000cff8e260 00143 (v01 AMI CPU2PM 00000001 INTL 20060113)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 00143 (v01 AMI CPU2PM 00000001 INTL 20060113)
    ACPI: SSDT 00000000cff8e3b0 00143 (v01 AMI CPU3PM 00000001 INTL 20060113)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 00143 (v01 AMI CPU3PM 00000001 INTL 20060113)
    ACPI: SSDT 00000000cff8e500 00143 (v01 AMI CPU4PM 00000001 INTL 20060113)
    ACPI: Dynamic OEM Table Load:
    ACPI: SSDT (null) 00143 (v01 AMI CPU4PM 00000001 INTL 20060113)
    ACPI: Interpreter enabled
    ACPI: (supports S0 S1 S3 S4 S5)
    ACPI: Using IOAPIC for interrupt routing
    PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    ACPI: No dock devices found.
    PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    PCI host bridge to bus 0000:00
    pci_bus 0000:00: root bus resource [bus 00-ff]
    pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff]
    pci_bus 0000:00: root bus resource [mem 0xd0000000-0xffffffff]
    pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000
    pci 0000:00:01.0: [8086:29c1] type 01 class 0x060400
    pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
    pci 0000:00:1a.0: reg 20: [io 0xb800-0xb81f]
    pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
    pci 0000:00:1a.1: reg 20: [io 0xb880-0xb89f]
    pci 0000:00:1a.2: [8086:2939] type 00 class 0x0c0300
    pci 0000:00:1a.2: reg 20: [io 0xbc00-0xbc1f]
    pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
    pci 0000:00:1a.7: reg 10: [mem 0xf7dffc00-0xf7dfffff]
    pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
    pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    pci 0000:00:1c.4: [8086:2948] type 01 class 0x060400
    pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
    pci 0000:00:1d.0: reg 20: [io 0xb080-0xb09f]
    pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
    pci 0000:00:1d.1: reg 20: [io 0xb400-0xb41f]
    pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
    pci 0000:00:1d.2: reg 20: [io 0xb480-0xb49f]
    pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
    pci 0000:00:1d.7: reg 10: [mem 0xf7dff800-0xf7dffbff]
    pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401

    Hello! I seem to be having a similar problem to what is being discussed here. So I figured I would add what is going on with me.
    I will try to keep it short but I apologize in advance for it being a bit long.
    Hardware: 2006 Imac with Radeon mobility x1600
    For me there was no problem before the systemd upgrade to 210 and the upgrade to 211 did not fix the problem of black screen on boot.
    Also I upgraded my kernel from 3.13.5-1 to 3.13.6-1 after the problem with systemd started.
    Downgrading systemd to 208.10 ( the kernel had been upgraded already) got the system working properly again.
    I have since gone back to 211 and have found that:
    If I wait for 5 - 10 minutes after the computer boots when I move the mouse the screen wakes up and I can unlock the screen and the computer works as normal.
       Note: I am using gdm and gnome3. I think from this that my problem is a brightness/screen not being turned on issue?
    If I add nomodeset to the kernel boot parameters the computer works but the Radeon drivers are not loaded.
      and after booting with nomodeset if I use "sudo modprobe radeon modeset=1" my computer screen blacks and I have no response.
    With both 210 and 211 I can press ctrl+alt+F2 type my username and password into the blind and give commands like "sudo reboot followed by the password" blindly to the computer and the computer will execute them.
    I hope that this can be fixed soon... It is annoying at best.
    EDIT
    I tried  "sudo modprobe radeon modeset=1" again and found that I can press ctrl+alt+F2 and get a terminal login prompt that I can use and see! Although gdm login/gnome is still a black screen...
    Last edited by BirdOfPray (2014-03-26 21:42:04)

  • Black screen on startup - Radeon graphics driver or EDID issue?

    Having installed Arch, I am only able to boot into Linux (console mode) when I pass the option "nomodeset" in GRUB to disable KMS. If I try to boot with KMS enabled then the screen goes black almost immediately upon boot. There appears to be no further activity from the system: I can't even reboot using CTRL-ALT-DEL. Nor is there any log activity that I can find. The system appears to just hang.
    My graphics card is a Radeon 9200. From a general websearch, other people have reported a similar issue with this card on other distros, but the "solution" they get is usually "it now works with the updated version of $(DISTRO)". My next move should probably be to try the Catalyst driver, but there's one other thing that suggests to me that the problem is more to do with the monitor (specifically, with the EDID provision) than the driver....
    Running "vbeinfo" at the GRUB command line shows the default resolution as 1280x1024x32. When I run "vbetest" at the GRUB command line, I initially get the graphics test pattern displayed correctly. However, when I press enter to end that test pattern I don't return to the GRUB command line. Instead I get a black screen with a blinking white cursor. No input from the keyboard is displayed if I type, but pressing CTRL-ALT-DEL to reboot does work from here.
    I've looked at the section on the Wiki about Forcing Modes and EDID, but this area's still very much a mystery to me, and the Wiki itself says that this secition is still "a WIP". I guess I'm just wondering if, from the behaviour above, if the problem with using KMS is due to an issue with the graphics card itself or if I should be trying to generate my own custom EDID file, which sounds painful . Passing the built-in resolution 1280x1024 via the drm_kms_helper.edid_firmware option, as suggested on the Wiki, made no difference in behaviour at all. Trying to pass 1024x768 in the same way did make snowy artefacts appear on the monitor, but didn't get me to a point where the system appeared any closer to actually booting up.
    Any advice would be appreciated. I've currently got the X running fine using the VESA driver (no custom Xorg.conf file needed), but it's more than a little slow. I'd like to have 2D acceleration available at the very least.

    logix wrote:
    If its a laptop, your screen brightness might be getting set to 0 on boot. If so, try attaching an external monitor to test the theory and set the brightness from a terminal.
    export DISPLAY=:0
    xbacklight -set 100
    Unfortunately it's a desktop with a flat-screen monitor; VGA cable connection. The only information on model that I have is from the monitors' configuration menu:  "Dell E248WFP".
    More detail on the graphics card: "lspci|grep VGA" gives "01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] RV280 [Radeon 9200 PRO] (rev 01)"

  • [SOLVED] linux-3.13.6-1 and systemd-210-3 causes black screen

    My computer boots into total black screen after recent update, including linux-3.13.6-1, xf86-video-intel-2.99.910-1 and systemd-210-3.  I have tried all combinations of rollback, I find  linux-3.12.7-2  + systemd-208-2 resolves my problem.
    As I dig on, I find it a problem with systemd-backlight. With running kernel-3.13 and systemd-{210,211},  disabling systemd-backlight service either through kernel parameter systemd.restore_state=0 or by masking systemd-backlight service can fix my problem.
    Still, I am not the only one experiencing black screen and unresponsive X input with 3.13 kernel: several radeon user seem to have similar phenomenon but cannot be fixed by disabling backlight restore.  I would suspect restoring backlight is just one of many ways to trigger this issue, I not experienced in kernel, but I will try to debug the problem. Help will be appreciated.
    There seems nothing wrong with X, but a problem with power management.
    [ 458.859]
    X.Org X Server 1.15.0
    Release Date: 2013-12-27
    [ 458.859] X Protocol Version 11, Revision 0
    [ 458.859] Build Operating System: Linux 3.12.5-1-ARCH x86_64
    [ 458.859] Current Operating System: Linux goshawk 3.13.6-1-ARCH #1 SMP PREEMPT Fri Mar 7 22:47:48 CET 2014 x86_64
    [ 458.859] Kernel command line: root=/dev/sda6 resume=/dev/sda7 ipv6.disable=1 acpi_osi=Linux i915.modeset=1
    [ 458.859] Build Date: 09 January 2014 08:47:24AM
    [ 458.859]
    [ 458.859] Current version of pixman: 0.32.4
    [ 458.859] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 458.859] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 458.860] (==) Log file: "/var/log/Xorg.1.log", Time: Thu Mar 13 15:15:34 2014
    [ 458.860] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 458.860] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 458.860] (==) No Layout section. Using the first Screen section.
    [ 458.860] (==) No screen section available. Using defaults.
    [ 458.860] (**) |-->Screen "Default Screen Section" (0)
    [ 458.860] (**) | |-->Monitor "<default monitor>"
    [ 458.860] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 458.860] (**) | |-->Device "Intel Graphics"
    [ 458.860] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 458.860] (==) Automatically adding devices
    [ 458.860] (==) Automatically enabling devices
    [ 458.860] (==) Automatically adding GPU devices
    [ 458.860] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 458.860] Entry deleted from font path.
    [ 458.860] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 458.860] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 458.860] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 458.860] (II) Loader magic: 0x804c80
    [ 458.860] (II) Module ABI versions:
    [ 458.860] X.Org ANSI C Emulation: 0.4
    [ 458.861] X.Org Video Driver: 15.0
    [ 458.861] X.Org XInput driver : 20.0
    [ 458.861] X.Org Server Extension : 8.0
    [ 458.861] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 459.667] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 459.669] (--) PCI:*(0:0:2:0) 8086:0046:1025:0365 rev 24, Mem @ 0xf0000000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8
    [ 459.669] (--) PCI: (0:2:0:0) 1002:68c1:1025:0365 rev 0, Mem @ 0xb0000000/268435456, 0xafee0000/131072, I/O @ 0x00002000/256, BIOS @ 0x????????/131072
    [ 459.670] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 459.670] Initializing built-in extension Generic Event Extension
    [ 459.670] Initializing built-in extension SHAPE
    [ 459.670] Initializing built-in extension MIT-SHM
    [ 459.670] Initializing built-in extension XInputExtension
    [ 459.670] Initializing built-in extension XTEST
    [ 459.670] Initializing built-in extension BIG-REQUESTS
    [ 459.670] Initializing built-in extension SYNC
    [ 459.670] Initializing built-in extension XKEYBOARD
    [ 459.670] Initializing built-in extension XC-MISC
    [ 459.670] Initializing built-in extension SECURITY
    [ 459.670] Initializing built-in extension XINERAMA
    [ 459.670] Initializing built-in extension XFIXES
    [ 459.670] Initializing built-in extension RENDER
    [ 459.670] Initializing built-in extension RANDR
    [ 459.670] Initializing built-in extension COMPOSITE
    [ 459.670] Initializing built-in extension DAMAGE
    [ 459.670] Initializing built-in extension MIT-SCREEN-SAVER
    [ 459.670] Initializing built-in extension DOUBLE-BUFFER
    [ 459.670] Initializing built-in extension RECORD
    [ 459.670] Initializing built-in extension DPMS
    [ 459.670] Initializing built-in extension Present
    [ 459.670] Initializing built-in extension DRI3
    [ 459.670] Initializing built-in extension X-Resource
    [ 459.670] Initializing built-in extension XVideo
    [ 459.670] Initializing built-in extension XVideo-MotionCompensation
    [ 459.670] Initializing built-in extension XFree86-VidModeExtension
    [ 459.670] Initializing built-in extension XFree86-DGA
    [ 459.670] Initializing built-in extension XFree86-DRI
    [ 459.670] Initializing built-in extension DRI2
    [ 459.670] (II) "glx" will be loaded by default.
    [ 459.670] (II) LoadModule: "dri2"
    [ 459.670] (II) Module "dri2" already built-in
    [ 459.670] (II) LoadModule: "glamoregl"
    [ 459.670] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 459.673] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 459.673] compiled for 1.15.0, module version = 0.6.0
    [ 459.673] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 459.673] (II) LoadModule: "glx"
    [ 459.673] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 459.674] (II) Module glx: vendor="X.Org Foundation"
    [ 459.674] compiled for 1.15.0, module version = 1.0.0
    [ 459.674] ABI class: X.Org Server Extension, version 8.0
    [ 459.674] (==) AIGLX enabled
    [ 459.674] Loading extension GLX
    [ 459.674] (II) LoadModule: "intel"
    [ 459.674] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 459.674] (II) Module intel: vendor="X.Org Foundation"
    [ 459.674] compiled for 1.15.0, module version = 2.99.910
    [ 459.674] Module class: X.Org Video Driver
    [ 459.674] ABI class: X.Org Video Driver, version 15.0
    [ 459.674] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
    [ 459.675] (II) intel: Driver for Intel(R) HD Graphics: 2000-5000
    [ 459.675] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100
    [ 459.675] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200
    [ 459.675] (++) using VT number 1
    [ 459.676] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics
    [ 459.676] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2
    [ 459.676] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 459.676] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 459.676] (==) intel(0): RGB weight 888
    [ 459.676] (==) intel(0): Default visual is TrueColor
    [ 459.676] (**) intel(0): Option "AccelMethod" "sna"
    [ 459.676] (**) intel(0): Framebuffer tiled
    [ 459.676] (**) intel(0): Pixmaps tiled
    [ 459.676] (**) intel(0): "Tear free" disabled
    [ 459.676] (**) intel(0): Forcing per-crtc-pixmaps? no
    [ 459.676] (II) intel(0): Output LVDS1 has no monitor section
    [ 459.703] (--) intel(0): found backlight control interface acpi_video1 (type 'firmware')
    [ 459.703] (II) intel(0): Output VGA1 has no monitor section
    [ 459.703] (II) intel(0): Output VIRTUAL1 has no monitor section
    [ 459.703] (--) intel(0): Output LVDS1 using initial mode 1366x768 on pipe 0
    [ 459.703] (==) intel(0): DPI set to (96, 96)
    [ 459.703] (II) Loading sub module "dri2"
    [ 459.703] (II) LoadModule: "dri2"
    [ 459.703] (II) Module "dri2" already built-in
    [ 459.703] (==) Depth 24 pixmap format is 32 bpp
    [ 459.703] (II) intel(0): SNA initialized with Ironlake (gen5) backend
    [ 459.704] (==) intel(0): Backing store enabled
    [ 459.704] (==) intel(0): Silken mouse enabled
    [ 459.704] (II) intel(0): HW Cursor enabled
    [ 459.704] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 459.704] (==) intel(0): DPMS enabled
    [ 459.704] (II) intel(0): [XvMC] xvmc_vld driver initialized.
    [ 459.704] (II) intel(0): [DRI2] Setup complete
    [ 459.704] (II) intel(0): [DRI2] DRI driver: i965
    [ 459.704] (II) intel(0): [DRI2] VDPAU driver: i965
    [ 459.704] (II) intel(0): direct rendering: DRI2 Enabled
    [ 459.704] (==) intel(0): hotplug detection: "enabled"
    [ 459.704] (--) RandR disabled
    [ 459.712] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 459.712] (II) AIGLX: enabled GLX_ARB_create_context
    [ 459.712] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 459.712] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 459.712] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 459.712] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 459.712] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 459.712] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 459.712] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 459.712] (II) AIGLX: Loaded and initialized i965
    [ 459.712] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 459.720] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 459.786] (II) intel(0): Setting screen physical size to 361 x 203
    [ 459.913] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 459.913] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 459.913] (**) Power Button: Applying InputClass "Acer Keyboard"
    [ 459.913] (II) LoadModule: "evdev"
    [ 459.913] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 459.913] (II) Module evdev: vendor="X.Org Foundation"
    [ 459.913] compiled for 1.15.0, module version = 2.8.2
    [ 459.913] Module class: X.Org XInput Driver
    [ 459.913] ABI class: X.Org XInput driver, version 20.0
    [ 459.913] (II) Using input driver 'evdev' for 'Power Button'
    [ 459.913] (**) Power Button: always reports core events
    [ 459.913] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 459.913] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 459.913] (--) evdev: Power Button: Found keys
    [ 459.913] (II) evdev: Power Button: Configuring as keyboard
    [ 459.913] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
    [ 459.913] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 459.913] (**) Option "xkb_rules" "evdev"
    [ 459.913] (**) Option "xkb_model" "acer_laptop"
    [ 459.913] (**) Option "xkb_layout" "us"
    [ 459.936] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
    [ 459.936] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 459.936] (**) Video Bus: Applying InputClass "Acer Keyboard"
    [ 459.936] (II) Using input driver 'evdev' for 'Video Bus'
    [ 459.936] (**) Video Bus: always reports core events
    [ 459.936] (**) evdev: Video Bus: Device: "/dev/input/event4"
    [ 459.936] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 459.936] (--) evdev: Video Bus: Found keys
    [ 459.936] (II) evdev: Video Bus: Configuring as keyboard
    [ 459.936] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input4/event4"
    [ 459.936] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 459.936] (**) Option "xkb_rules" "evdev"
    [ 459.936] (**) Option "xkb_model" "acer_laptop"
    [ 459.936] (**) Option "xkb_layout" "us"
    [ 459.936] (II) config/udev: Adding input device Video Bus (/dev/input/event3)
    [ 459.936] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 459.936] (**) Video Bus: Applying InputClass "Acer Keyboard"
    [ 459.936] (II) Using input driver 'evdev' for 'Video Bus'
    [ 459.936] (**) Video Bus: always reports core events
    [ 459.936] (**) evdev: Video Bus: Device: "/dev/input/event3"
    [ 459.936] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 459.936] (--) evdev: Video Bus: Found keys
    [ 459.936] (II) evdev: Video Bus: Configuring as keyboard
    [ 459.936] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/LNXVIDEO:00/input/input3/event3"
    [ 459.936] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
    [ 459.936] (**) Option "xkb_rules" "evdev"
    [ 459.936] (**) Option "xkb_model" "acer_laptop"
    [ 459.936] (**) Option "xkb_layout" "us"
    [ 459.937] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
    [ 459.937] (II) No input driver specified, ignoring this device.
    [ 459.937] (II) This device may have been added with another device file.
    [ 459.937] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
    [ 459.937] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 459.937] (**) Sleep Button: Applying InputClass "Acer Keyboard"
    [ 459.937] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 459.937] (**) Sleep Button: always reports core events
    [ 459.937] (**) evdev: Sleep Button: Device: "/dev/input/event1"
    [ 459.937] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 459.937] (--) evdev: Sleep Button: Found keys
    [ 459.937] (II) evdev: Sleep Button: Configuring as keyboard
    [ 459.937] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input1/event1"
    [ 459.937] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
    [ 459.937] (**) Option "xkb_rules" "evdev"
    [ 459.937] (**) Option "xkb_model" "acer_laptop"
    [ 459.937] (**) Option "xkb_layout" "us"
    [ 459.937] (II) config/udev: Adding drm device (/dev/dri/card1)
    [ 459.938] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event13)
    [ 459.938] (II) No input driver specified, ignoring this device.
    [ 459.938] (II) This device may have been added with another device file.
    [ 459.938] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 459.938] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event10)
    [ 459.938] (II) No input driver specified, ignoring this device.
    [ 459.938] (II) This device may have been added with another device file.
    [ 459.938] (II) config/udev: Adding input device HDA Intel MID Mic (/dev/input/event12)
    [ 459.938] (II) No input driver specified, ignoring this device.
    [ 459.938] (II) This device may have been added with another device file.
    [ 459.938] (II) config/udev: Adding input device HDA Intel MID Headphone (/dev/input/event11)
    [ 459.938] (II) No input driver specified, ignoring this device.
    [ 459.938] (II) This device may have been added with another device file.
    [ 459.939] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:401b (/dev/input/event6)
    [ 459.939] (**) Logitech Unifying Device. Wireless PID:401b: Applying InputClass "evdev pointer catchall"
    [ 459.939] (II) Using input driver 'evdev' for 'Logitech Unifying Device. Wireless PID:401b'
    [ 459.939] (**) Logitech Unifying Device. Wireless PID:401b: always reports core events
    [ 459.939] (**) evdev: Logitech Unifying Device. Wireless PID:401b: Device: "/dev/input/event6"
    [ 459.939] (--) evdev: Logitech Unifying Device. Wireless PID:401b: Vendor 0x46d Product 0xc52b
    [ 459.939] (--) evdev: Logitech Unifying Device. Wireless PID:401b: Found 20 mouse buttons
    [ 459.939] (--) evdev: Logitech Unifying Device. Wireless PID:401b: Found scroll wheel(s)
    [ 459.939] (--) evdev: Logitech Unifying Device. Wireless PID:401b: Found relative axes
    [ 459.939] (--) evdev: Logitech Unifying Device. Wireless PID:401b: Found x and y relative axes
    [ 459.939] (II) evdev: Logitech Unifying Device. Wireless PID:401b: Configuring as mouse
    [ 459.939] (II) evdev: Logitech Unifying Device. Wireless PID:401b: Adding scrollwheel support
    [ 459.939] (**) evdev: Logitech Unifying Device. Wireless PID:401b: YAxisMapping: buttons 4 and 5
    [ 459.939] (**) evdev: Logitech Unifying Device. Wireless PID:401b: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 459.939] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.2/0003:046D:C52B.0003/input/input7/event6"
    [ 459.939] (II) XINPUT: Adding extended input device "Logitech Unifying Device. Wireless PID:401b" (type: MOUSE, id 10)
    [ 459.939] (II) evdev: Logitech Unifying Device. Wireless PID:401b: initialized for relative axes.
    [ 459.939] (**) Logitech Unifying Device. Wireless PID:401b: (accel) keeping acceleration scheme 1
    [ 459.939] (**) Logitech Unifying Device. Wireless PID:401b: (accel) acceleration profile 0
    [ 459.939] (**) Logitech Unifying Device. Wireless PID:401b: (accel) acceleration factor: 2.000
    [ 459.939] (**) Logitech Unifying Device. Wireless PID:401b: (accel) acceleration threshold: 4
    [ 459.939] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:401b (/dev/input/mouse0)
    [ 459.939] (II) No input driver specified, ignoring this device.
    [ 459.939] (II) This device may have been added with another device file.
    [ 459.939] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:4101 (/dev/input/event7)
    [ 459.939] (**) Logitech Unifying Device. Wireless PID:4101: Applying InputClass "evdev pointer catchall"
    [ 459.939] (**) Logitech Unifying Device. Wireless PID:4101: Applying InputClass "evdev keyboard catchall"
    [ 459.939] (**) Logitech Unifying Device. Wireless PID:4101: Applying InputClass "Acer Keyboard"
    [ 459.939] (II) Using input driver 'evdev' for 'Logitech Unifying Device. Wireless PID:4101'
    [ 459.940] (**) Logitech Unifying Device. Wireless PID:4101: always reports core events
    [ 459.940] (**) evdev: Logitech Unifying Device. Wireless PID:4101: Device: "/dev/input/event7"
    [ 459.940] (--) evdev: Logitech Unifying Device. Wireless PID:4101: Vendor 0x46d Product 0xc52b
    [ 459.940] (--) evdev: Logitech Unifying Device. Wireless PID:4101: Found 20 mouse buttons
    [ 459.940] (--) evdev: Logitech Unifying Device. Wireless PID:4101: Found scroll wheel(s)
    [ 459.940] (--) evdev: Logitech Unifying Device. Wireless PID:4101: Found relative axes
    [ 459.940] (--) evdev: Logitech Unifying Device. Wireless PID:4101: Found x and y relative axes
    [ 459.940] (--) evdev: Logitech Unifying Device. Wireless PID:4101: Found absolute axes
    [ 459.940] (II) evdev: Logitech Unifying Device. Wireless PID:4101: Forcing absolute x/y axes to exist.
    [ 459.940] (--) evdev: Logitech Unifying Device. Wireless PID:4101: Found keys
    [ 459.940] (II) evdev: Logitech Unifying Device. Wireless PID:4101: Configuring as mouse
    [ 459.940] (II) evdev: Logitech Unifying Device. Wireless PID:4101: Configuring as keyboard
    [ 459.940] (II) evdev: Logitech Unifying Device. Wireless PID:4101: Adding scrollwheel support
    [ 459.940] (**) evdev: Logitech Unifying Device. Wireless PID:4101: YAxisMapping: buttons 4 and 5
    [ 459.940] (**) evdev: Logitech Unifying Device. Wireless PID:4101: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 459.940] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.2/0003:046D:C52B.0003/input/input8/event7"
    [ 459.940] (II) XINPUT: Adding extended input device "Logitech Unifying Device. Wireless PID:4101" (type: KEYBOARD, id 11)
    [ 459.940] (**) Option "xkb_rules" "evdev"
    [ 459.940] (**) Option "xkb_model" "acer_laptop"
    [ 459.940] (**) Option "xkb_layout" "us"
    [ 459.940] (II) evdev: Logitech Unifying Device. Wireless PID:4101: initialized for relative axes.
    [ 459.940] (WW) evdev: Logitech Unifying Device. Wireless PID:4101: ignoring absolute axes.
    [ 459.940] (**) Logitech Unifying Device. Wireless PID:4101: (accel) keeping acceleration scheme 1
    [ 459.940] (**) Logitech Unifying Device. Wireless PID:4101: (accel) acceleration profile 0
    [ 459.940] (**) Logitech Unifying Device. Wireless PID:4101: (accel) acceleration factor: 2.000
    [ 459.940] (**) Logitech Unifying Device. Wireless PID:4101: (accel) acceleration threshold: 4
    [ 459.940] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:4101 (/dev/input/mouse1)
    [ 459.940] (II) No input driver specified, ignoring this device.
    [ 459.940] (II) This device may have been added with another device file.
    [ 459.941] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:4003 (/dev/input/event8)
    [ 459.941] (**) Logitech Unifying Device. Wireless PID:4003: Applying InputClass "evdev keyboard catchall"
    [ 459.941] (**) Logitech Unifying Device. Wireless PID:4003: Applying InputClass "Acer Keyboard"
    [ 459.941] (II) Using input driver 'evdev' for 'Logitech Unifying Device. Wireless PID:4003'
    [ 459.941] (**) Logitech Unifying Device. Wireless PID:4003: always reports core events
    [ 459.941] (**) evdev: Logitech Unifying Device. Wireless PID:4003: Device: "/dev/input/event8"
    [ 459.941] (--) evdev: Logitech Unifying Device. Wireless PID:4003: Vendor 0x46d Product 0xc52b
    [ 459.941] (--) evdev: Logitech Unifying Device. Wireless PID:4003: Found 1 mouse buttons
    [ 459.941] (--) evdev: Logitech Unifying Device. Wireless PID:4003: Found scroll wheel(s)
    [ 459.941] (--) evdev: Logitech Unifying Device. Wireless PID:4003: Found relative axes
    [ 459.941] (II) evdev: Logitech Unifying Device. Wireless PID:4003: Forcing relative x/y axes to exist.
    [ 459.941] (--) evdev: Logitech Unifying Device. Wireless PID:4003: Found absolute axes
    [ 459.941] (II) evdev: Logitech Unifying Device. Wireless PID:4003: Forcing absolute x/y axes to exist.
    [ 459.941] (--) evdev: Logitech Unifying Device. Wireless PID:4003: Found keys
    [ 459.941] (II) evdev: Logitech Unifying Device. Wireless PID:4003: Configuring as mouse
    [ 459.941] (II) evdev: Logitech Unifying Device. Wireless PID:4003: Configuring as keyboard
    [ 459.941] (II) evdev: Logitech Unifying Device. Wireless PID:4003: Adding scrollwheel support
    [ 459.941] (**) evdev: Logitech Unifying Device. Wireless PID:4003: YAxisMapping: buttons 4 and 5
    [ 459.941] (**) evdev: Logitech Unifying Device. Wireless PID:4003: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 459.941] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.2/0003:046D:C52B.0003/input/input9/event8"
    [ 459.941] (II) XINPUT: Adding extended input device "Logitech Unifying Device. Wireless PID:4003" (type: KEYBOARD, id 12)
    [ 459.941] (**) Option "xkb_rules" "evdev"
    [ 459.941] (**) Option "xkb_model" "acer_laptop"
    [ 459.941] (**) Option "xkb_layout" "us"
    [ 459.941] (II) evdev: Logitech Unifying Device. Wireless PID:4003: initialized for relative axes.
    [ 459.941] (WW) evdev: Logitech Unifying Device. Wireless PID:4003: ignoring absolute axes.
    [ 459.941] (**) Logitech Unifying Device. Wireless PID:4003: (accel) keeping acceleration scheme 1
    [ 459.941] (**) Logitech Unifying Device. Wireless PID:4003: (accel) acceleration profile 0
    [ 459.941] (**) Logitech Unifying Device. Wireless PID:4003: (accel) acceleration factor: 2.000
    [ 459.941] (**) Logitech Unifying Device. Wireless PID:4003: (accel) acceleration threshold: 4
    [ 459.941] (II) config/udev: Adding input device 1.3M WebCam (/dev/input/event15)
    [ 459.941] (**) 1.3M WebCam: Applying InputClass "evdev keyboard catchall"
    [ 459.941] (**) 1.3M WebCam: Applying InputClass "Acer Keyboard"
    [ 459.941] (II) Using input driver 'evdev' for '1.3M WebCam'
    [ 459.941] (**) 1.3M WebCam: always reports core events
    [ 459.941] (**) evdev: 1.3M WebCam: Device: "/dev/input/event15"
    [ 459.941] (--) evdev: 1.3M WebCam: Vendor 0x4f2 Product 0xb1d8
    [ 459.941] (--) evdev: 1.3M WebCam: Found keys
    [ 459.941] (II) evdev: 1.3M WebCam: Configuring as keyboard
    [ 459.941] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0/input/input16/event15"
    [ 459.941] (II) XINPUT: Adding extended input device "1.3M WebCam" (type: KEYBOARD, id 13)
    [ 459.941] (**) Option "xkb_rules" "evdev"
    [ 459.941] (**) Option "xkb_model" "acer_laptop"
    [ 459.941] (**) Option "xkb_layout" "us"
    [ 459.942] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event5)
    [ 459.942] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 459.942] (**) AT Translated Set 2 keyboard: Applying InputClass "Acer Keyboard"
    [ 459.942] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 459.942] (**) AT Translated Set 2 keyboard: always reports core events
    [ 459.942] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event5"
    [ 459.942] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 459.942] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 459.942] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 459.942] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input5/event5"
    [ 459.942] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 14)
    [ 459.942] (**) Option "xkb_rules" "evdev"
    [ 459.942] (**) Option "xkb_model" "acer_laptop"
    [ 459.942] (**) Option "xkb_layout" "us"
    [ 459.942] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event14)
    [ 459.942] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 459.942] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 459.942] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 459.942] (II) LoadModule: "synaptics"
    [ 459.943] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 459.943] (II) Module synaptics: vendor="X.Org Foundation"
    [ 459.943] compiled for 1.15.0, module version = 1.7.4
    [ 459.943] Module class: X.Org XInput Driver
    [ 459.943] ABI class: X.Org XInput driver, version 20.0
    [ 459.943] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 459.943] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 459.943] (**) Option "Device" "/dev/input/event14"
    [ 460.036] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    [ 460.036] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5822 (res 79)
    [ 460.036] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4766 (res 141)
    [ 460.036] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 460.036] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 460.036] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 460.036] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 460.037] (**) Option "TapButton1" "1"
    [ 460.037] (**) Option "TapButton2" "2"
    [ 460.037] (**) Option "TapButton3" "3"
    [ 460.037] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 460.037] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 460.090] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input11/event14"
    [ 460.090] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 15)
    [ 460.090] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 460.090] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 460.090] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.036
    [ 460.090] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 460.090] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 460.090] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 460.090] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 460.090] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 460.090] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse2)
    [ 460.090] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 460.090] (II) config/udev: Adding input device PC Speaker (/dev/input/event9)
    [ 460.090] (II) No input driver specified, ignoring this device.
    [ 460.090] (II) This device may have been added with another device file.
    [ 464.074] (II) intel(0): EDID vendor "AUO", prod id 12844
    [ 464.074] (II) intel(0): Printing DDC gathered Modelines:
    [ 464.074] (II) intel(0): Modeline "1366x768"x0.0 69.50 1366 1414 1446 1466 768 771 777 790 -hsync -vsync (47.4 kHz eP)
    [ 1616.997] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 1617.370] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    There is no manual setting file for graphics of X, and here is my lspci result:
    00:00.0 Host bridge: Intel Corporation Core Processor DRAM Controller (rev 18)
    00:01.0 PCI bridge: Intel Corporation Core Processor PCI Express x16 Root Port (rev 18)
    00:02.0 VGA compatible controller: Intel Corporation Core Processor Integrated Graphics Controller (rev 18)
    00:16.0 Communication controller: Intel Corporation 5 Series/3400 Series Chipset HECI Controller (rev 06)
    00:1a.0 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05)
    00:1b.0 Audio device: Intel Corporation 5 Series/3400 Series Chipset High Definition Audio (rev 05)
    00:1c.0 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 1 (rev 05)
    00:1c.1 PCI bridge: Intel Corporation 5 Series/3400 Series Chipset PCI Express Root Port 2 (rev 05)
    00:1d.0 USB controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 05)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev a5)
    00:1f.0 ISA bridge: Intel Corporation Mobile 5 Series Chipset LPC Interface Controller (rev 05)
    00:1f.2 SATA controller: Intel Corporation 5 Series/3400 Series Chipset 4 port SATA AHCI Controller (rev 05)
    00:1f.3 SMBus: Intel Corporation 5 Series/3400 Series Chipset SMBus Controller (rev 05)
    00:1f.6 Signal processing controller: Intel Corporation 5 Series/3400 Series Chipset Thermal Subsystem (rev 05)
    02:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Madison [Mobility Radeon HD 5650/5750 / 6530M/6550M] (rev ff)
    02:00.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] Redwood HDMI Audio [Radeon HD 5000 Series] (rev ff)
    03:00.0 Ethernet controller: Qualcomm Atheros AR8151 v1.0 Gigabit Ethernet (rev c0)
    05:00.0 Network controller: Intel Corporation Centrino Advanced-N 6235 (rev 24)
    ff:00.0 Host bridge: Intel Corporation Core Processor QuickPath Architecture Generic Non-core Registers (rev 05)
    ff:00.1 Host bridge: Intel Corporation Core Processor QuickPath Architecture System Address Decoder (rev 05)
    ff:02.0 Host bridge: Intel Corporation Core Processor QPI Link 0 (rev 05)
    ff:02.1 Host bridge: Intel Corporation Core Processor QPI Physical 0 (rev 05)
    ff:02.2 Host bridge: Intel Corporation Core Processor Reserved (rev 05)
    ff:02.3 Host bridge: Intel Corporation Core Processor Reserved (rev 05)
    Last edited by yuanjie.huang (2014-04-02 11:56:21)

    Hello! I seem to be having a similar problem to what is being discussed here. So I figured I would add what is going on with me.
    I will try to keep it short but I apologize in advance for it being a bit long.
    Hardware: 2006 Imac with Radeon mobility x1600
    For me there was no problem before the systemd upgrade to 210 and the upgrade to 211 did not fix the problem of black screen on boot.
    Also I upgraded my kernel from 3.13.5-1 to 3.13.6-1 after the problem with systemd started.
    Downgrading systemd to 208.10 ( the kernel had been upgraded already) got the system working properly again.
    I have since gone back to 211 and have found that:
    If I wait for 5 - 10 minutes after the computer boots when I move the mouse the screen wakes up and I can unlock the screen and the computer works as normal.
       Note: I am using gdm and gnome3. I think from this that my problem is a brightness/screen not being turned on issue?
    If I add nomodeset to the kernel boot parameters the computer works but the Radeon drivers are not loaded.
      and after booting with nomodeset if I use "sudo modprobe radeon modeset=1" my computer screen blacks and I have no response.
    With both 210 and 211 I can press ctrl+alt+F2 type my username and password into the blind and give commands like "sudo reboot followed by the password" blindly to the computer and the computer will execute them.
    I hope that this can be fixed soon... It is annoying at best.
    EDIT
    I tried  "sudo modprobe radeon modeset=1" again and found that I can press ctrl+alt+F2 and get a terminal login prompt that I can use and see! Although gdm login/gnome is still a black screen...
    Last edited by BirdOfPray (2014-03-26 21:42:04)

  • HT2370 How to wake a black screen?

    Anyone know how to make a headless Mac mini show something else than a black screen with ARD and/or VNC? One would have thought Mac mini would be good as servers, but that is apparently the one thing they are designed not to be able to be used as, given how the hopeless ARD program "works". I have tried all kind of SSH commands etc. but no way. So what to do if you are unable ever to access the computer physically after having it shipped off to a destination? Buy some better remote control software? Have searched the Internet, but no answers ... .
    /Jerry

    Maybe this is the only solution:
    http://blog.macminicolo.net/post/33839671756/build-a-dummy-dongle-for-a-headless -mac-mini
    Just that it worked before to access with ARD and nothing happened since then. Also cannot re-activate ARD, only VNC though SSH for some reason ... .

  • Tired of the lies- Touchsmart 320: Upgrade A4-3400 to A8-3800 and get black screen

    Attempted to install A8-3850 as the liars here at HP told me I could do several years ago. Was not compatible. http://h30434.www3.hp.com/t5/TouchSmart-PC/Can-I-replace-a-Touchsmart-320-with-a-100TDP-CPU-such-as-the/m-p/1719693#M15259 So I bought an A8-3800 as it now says I can http://support.hp.com/us-en/product/HP-TouchSmart-300-Desktop-PC-series/5146287/model/5157097/document/c02966737#N102 I seat the CPU, boot up, and black screen. Nothing. Can I please get someone from HP to tell me the truth for once?!?!?!?  

    This is a peer to peer forum. No one will respond to any posts made here on behalf of HP, or representing the company. You have posted here 19 times.  I suggest you now take some time to read the forum rules of participation. http://h30434.www3.hp.com/t5/Rules-of-Participation/Rules-of-Participation/m-p/252325#M1 If you want to take the matter up with HP representatives, then you can fill out the form at the link below. I also suggest you approach them with a better attitude than you are displaying on this forum. https://ssl.www8.hp.com/us/en/contact-hp/connect-with-hp.html  

  • MSI Notebook GX640, black screen with games

    I own for two years MSI Notebook G series GX640 (Intel Core i5-460M, Ati Mobility RadeonHD 5850, 4GB RAM, 500 GB HDD). Recently I had to send it to the manufacturer because of a audiocard malfunction. It was the last call to do it on the warranty. It ended around a week ago (2 years warranty). The service guy filled an information for me (standard procedure). It stated: repair the audioboard and new ventilation installed. It seems they run some tests and updated the BIOS. After that I had some time (around 2 weeks) of cool work on the machine. Until recently... Here is a description of the problem.
    During more demanding programs (games mostly) the PC runes smoothly for some minutes (10, 15, 20 or so) and without warning goes black screen. Sometimes you can still hear the sound from the game other times no. Also if I unplug the power cable and plug it back it sometimes goes to a very uneasy state with stripes on the monitor.
    I tried to fix this by updating the CCC from ATI, also updated the video card drivers, today flashed the BIOS using the MSIHQ USB Bootable Tool and BIOS Helper. I used the 1656_031 archive from MSI. Searched the forum and the web for info and help... but no luck. So I post here with hope for help.
    I suspect this is not an issue of hardware. If I turn off the PC and start it again works fine, I was also able to upload 2GB of video files to YouTube with no problems at all. As long as I run OS (Windows 7 64bit) or programs like text editors, browsers, video editors, audio editors, internet radio etc. It runes fine. But when I start games it just a no go. To give an example: Mass Effect 3, StarCraft II, Saint's Raw The Third, Borderlands.
    My BIOS information; don't know if it will help:
    BIOS version: E1656IMS.10E
    BIOS build:     08/30/2010 15:58:14
    EC version:    1656 EMS1 ver.4.08
    EC build:        06/03/2010

    Quote from: Fuzz Ball on 19-February-13, 10:53:50
    I could assume (since you've started doing stuff to the bios) that you've done this already, but to make sure, have you checked the usage/temperature of your graphics card?
    Actually I didn't do that... till now. For last 4 hours I have been running some games and programs to determine the usage and temperature on the graphics card. Here are the results:
    Temperature in house was 24ᵒC.
    While normal Windows 7 running temp. is around 50ᵒ to 54ᵒC
    Watching video in 720p from hard drive temp. -> 55ᵒ to 56ᵒC
    Games:
    Book of Unwritten Tales (one game that is not going black screen on me), point and click adventure game -> 57ᵒC to 63ᵒC
    Starcraft II -> 73ᵒC and black screen (5 to 7 minutes of play)
    Mass Effect 3 -> 67ᵒC to 72ᵒC goes black screen
    Borderlands -> 72ᵒC to 75ᵒC goes black screen
    The Catalyst Control Center (CCC) from Ati I use is 13.1 the GPU is 625 MHz and the Memory of the GPU is 1000MHz. Fan goes around 30%.
    Looks normal to me, no 90ᵒC.
    Right after I end writing this post and publish it I will try to open the Notebook to at least try find any suspicious things inside. I will probably clean it, but there will be no real hardware intervention. I'm not that good with IT or electronics to try it by myself. So if any just cleaning from dust and a look inside.
    P.S. There is one more test I might try tomorrow, run a game on a TV through HDMI to see if the problem will occur if it will that means it's not the display.
    UPDATE:
    Seems playing games in window mode might eliminate the problem. All above test's were done if full screen.

  • None of the vertical pictures will import.  I don't even get the black screens so can't even try the edit option that others suggest.  Sounds like we all have to report it to apple to get a fix?????

    I Cannot import any vertical pictures.  I don't even get a black screen and therefore can't edit.  After downloading from the camera the vertices pictures show with a red ! And won't import.  Sounds like we all have to report this to apple ....but anyone had same issue and how can I fix, we are on trip and need to clear the camera for more photos.

    This topic belongs in the iPhoto for iOS community.  I've asked the hosts to move it there.

  • Getting black screen between chunks of clip

    Hi all,
    We are developing an application which plays the series of clips one after the other. We are releasing and re-starting player object in playerUpdate block.
    We are getting black screen in between the chunk of clips while switching from one clip to another, is there any way to avoid this black screen??
    Following is the code for reference
    public void playerUpdate(Player player, String event, Object arg2) {
    try{
    main.repaint();
    //End of clip event
    if(event == END_OF_MEDIA){
    //release player
    if (player != null) {
    if(player.getState() == Player.STARTED) {
    player.stop();
    if(player.getState() == Player.PREFETCHED) {
    player.deallocate();
    if(player.getState() == Player.REALIZED || player.getState() == Player.UNREALIZED) {
    player.close();
    player = null;
    //delete played clip
    main.deleteFile("clip_"+ (main.sequencePlay - 1) +".3gp");
    //if clip is constructed then play it, else turn off PLAY status
    if(main.sequencePlay < main.sequenceDownload )
    playVideo();
    else
    main.IS_PLAYING = false;
    catch(Exception e){
    main.showAlert("Error in PlayerUpdate",e.getMessage());
    Thanks

    To avoid black screen, I'd prepare and package some pre-defined ['default' clip|http://www.dailymotion.com/films4/video/x5yxqe_climate-change-according-to-koalas_fun] within my application.
    Then, I'd play that 'default' clip while switching from one clip to another:
    //if clip is constructed then play it, else play 'default' clip to avoid black screen
    else {playDefaultVideo();} // play 'default' clip instead of setting main.IS_PLAYING = false;
    //...

  • Creative cloud black screen

    I just got my creative cloud but I have no app panel all it looks like is this just a black screen with nothing on. I followed the advice from similar post regarding renaming the opm file but it didn't work. I tried deleting opm file and even entire OOBE folder to no success. I have followed the advice from adobe help page and made sure that all fields in my adobe ID are filed in with company name, my name etc there is no special characters in any of them.  I tried reinstalling CC and restarting windows several times to again unsuccessfully. I have been at it for 4 hours now and I am frankly fed up I have never had so many problems with what seemed to be straight forward operation. I would be grateful for any help because I am really on a verge of just uninstalling the fing and going back to using open source.

    You Deserves cookie. YOU DESERVE COOKIE!!!!!
    Adobe could never figure out why people were experiencing the problem, telling them to go to appdata rename this, uninstall this that, and the freaking coresync x64 wouldn't erase.
    I was lucky that I born in the SSD era that it didn't take me that much time restarting my computer, I had to restart my computer so many times...and all my efforts was unnecessary.
    I couldn't find this thread until today. Thanks. Adobe should request Google to move this thread up.

Maybe you are looking for

  • Encore no longer behaving when building a menu.  Help!

    I have creative suite 5 for iMac.  Premiere works fine but when I want to build a menu in Encore and try to put Text into it, it announces a "General Error" or "sorry an abnormal condition has been detected" and the screen goes "mad".  I'd be gratefu

  • Which application is best to manage libraries? And how to split up a 2TB HD

    What is the best application to manage multiple iPhoto libraries? iPhoto Library Manager which is 6MG (costs $20 but that is not significant in this decision). iPhoto Buddy which is 28MG (shareware donation requested ($20?)). http://www.iphotobuddy.c

  • Oracle 8 on Linux in Multi-Thread mode

    I installed Oracle 8.0.5.0.0 on Linux RedHat 5.1 But I cann't startup database in multi-threaed mode. When I try to startup DB the errors follow SVRMGR> startup; ORA-00101: invalid specification for system parameter MTS_DISPATCHERS ORA-00102: network

  • BDC problem with back button

    Hi all, i have idoc number in alv output.when the user clicks on this ,it should take the control to BD87 transaction with idoc number getting transferred there .also BD87 screen has changed on select option where the default is sy-datum .i need to c

  • How to get hidden field  in popup  window (using jsf)

    Hi, I have one hidden field in page first.jsp like <h:inpuHidden id="checkedVals" value="" />. from first page i am opening popup (second.jsp) by onclick with command button. how can i get the hidden field in second.jsp? I want to make a hidden field