FORTE with NT 4.0 and SQLSERVER 6.5

I am trying to run a FORTE application on a platform running NT 4.0 and
SQLSERVER 6.5 as the DBMS and am having troubles.
On SQLSERVER there is a database called tempDB. This is suppose to be a
database for use by SQLSERVER to store any temporary databases required
during the application processing. My app should not be creating any
temp databases. My app is virtually read only. Yet as the app is
running tempDB is used up at an alarming rate till there is finally no
more available space and all processing stops. We currently have tempDB
set to 64meg and still we run out of space. Another point, the space is
not released until the FORTE app is totally dead, meaning i have to go
so far as to kill the ftexec before the space is released.
This app runs perfectly fine on NT 3.51 with SQLSERVER 6.0. but nothing
has helped.
We have applied all known Sevice Packages for NT 4.0
Anyone ever run into this problem besides us? Anyone got any ideas?
thanks - DjR

Cdburgess75,
It appears that in the past few days you have not received a response to your
posting. That concerns us, and has triggered this automated reply.
Has your problem been resolved? If not, you might try one of the following options:
- Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
- Check all of the other support tools and options available at
http://support.novell.com.
- You could also try posting your message again. Make sure it is posted in the
correct newsgroup. (http://support.novell.com/forums)
Be sure to read the forum FAQ about what to expect in the way of responses:
http://support.novell.com/forums/faq_general.html
If this is a reply to a duplicate posting, please ignore and accept our apologies
and rest assured we will issue a stern reprimand to our posting bot.
Good luck!
Your Novell Product Support Forums Team
http://support.novell.com/forums/

Similar Messages

  • Jdeveloper ADF  4 DBs: oracle10g and SQLServer

    We have 4 international partners with databases (3 Oracles and 1 SQLServer). All databases have exact the same data model.
    We have to develop a WebApplication(s), that do all data available for small number of users.
    Is it possible with one central WebServer and one Web Application, that connect to 4 DBs?
    Or it is better to use 4 WebServers with 4 Installations of the WebApplication?
    Is it possible to develop this System with JDeveloper11, ADFs and using then Tomcat as WebServer?
    Thanks in advance,
    Eugen

    We have 4 international partners with databases (3 Oracles and 1 SQLServer). All databases have exact the same data model.
    We have to develop a WebApplication(s), that do all data available for small number of users.
    Is it possible with one central WebServer and one Web Application, that connect to 4 DBs?
    Or it is better to use 4 WebServers with 4 Installations of the WebApplication?
    Is it possible to develop this System with JDeveloper11, ADFs and using then Tomcat as WebServer?
    Thanks in advance,
    Eugen

  • Generic Insert and Update Queries to work on both Oracle and SQLServer

    xMII12.0.2
    I need to write queries which will be able to run on both Oracle and SQLServer database tables without any changes.  It needs to be able to handle dates without including Oracle specific date functions (TO_DATE, TO_CHAR, TO_TIMESTAMP, etc.).
    I did read a post earlier by Jeremy Good regarding the use of ED and SD which invoke the DatePrefix and DateSuffix in the data server configuration.  That seems to work fine in cases of only trying to insert two distinct dates.  However, what do you do in the case of having three or more dates to insert.  An example query might be:
    Insert into ProductionOrder
    (ProdOrdNbr, Plant, Material, Quantity, UOM, DeliveryDate, ProdStartDate, ProdFinishDate, CreateDate, LastModifiedDate)
    Values
    ('0100001001', '001', '000000000007887780', 20.0, 'PC', '21-FEB-08 22:01:19','11-FEB-08 00:01:34', '12-FEB-08 02:44:59', '01-FEB-08 12:00:00', '04-FEB-01 13:22:13')
    So far I have been using the TO_DATE to convert the dates successfully, but SQLServer does not recognize that function (not surprising since it is an Oracle specific function).  So I would have to go through all the transactions/query templates and rebuild them separately to deal with the different database vendors. 
    Any suggestions?
    Thanks,
    Mike

    Hi Rick,
    Are you talking about dynamically building each script based on a server setting and datatype?  If I understand you correctly, I guess it could be done that way, but it would be a royal pain to maintain.  I have done such things before and can see how it could be done. 
    But is there no way to invoke the DatePrefix and DateSuffix besides the SD and ED parameters?  Or did I misunderstand your response?
    I would be perfectly happy to build all the queries inside BLS transactions.  In the few cases, where they are not already contained in the BLS, we could throw a BLS wrapper around it and not pay much of a penalty in performance.
    Thanks,
    Mike

  • Oracle: slow performance with SELECT using ojdbc14 and connection pooling

    Hello,
    i'm working hard the last days to solve a performance problem with our customer using a oracle 10g database. For testing I used our oracle 9.2.0.1.0 database which shows the same symptoms. All doing solved nothing: the performance while using this oracle is much slower than other databases. This result I cannot trust and so I need some advice. What is missing to improve the performance on the java side?
    The webapplication I use runs fast on MySQL 4.x and SQLServer 2000, but on the above mentioned Oracle it was always 4 times slower. The webapplication uses a lot of simple SELECT-Statements without complicated joins and so on (because it should run on many different databases). Doing some days of creating tests within this webapplication, I was not able to find any entrance point for a change. All databases server I'm using, having only the default configurations after a common installation.
    To reduce the complexity I wrote a simple java application with connection pooling using only the latest libraries from apache-commons(dbcp, pool), and the latest ojdbc14 for oracle 9.2.
    First the results than the code: MySQL needed less than 1000 millisecond, SQLServer around 1000 milliseconds and Oracle over 2000 milliseconds. I stopped pooling and the results are for Oracle even worse: over 18000 milliseconds (mysql:2500, sqlserver:4100).
    I changed the classes for Oracle and used the class oracle.jdbc.pool.OracleConnectionCacheImpl from the ojdbc14-library. No difference (around 100 milliseconds more or less).
    The only Select-Statement works on this table, which has one index on HICTGID.
    It contains 259 entrances.:
    CREATE TABLE HIERARCHYCATEGORY (
      HICTGID                 NUMBER (19)   NOT NULL,
      HICTGLEVEL              NUMBER (10)   NOT NULL,
      HICTGEXTID              NUMBER (19)   NOT NULL,
      HICTGEXTPARENTID        NUMBER (19)   NOT NULL,
      HICTGNAME               VARCHAR2(255) NOT NULL
    );The application simply loops through this table using
    SELECT Hictgid, Hictgname FROM HIERARCHYCATEGORY WHERE HICTGID = ?, but I always open a connection before this query and closes this connection afterwards. So I use the pooling as much as possible. That's all SQL I'm using.
        protected static DataSource setupDataSource(String sDriver, String sUrl, String sUser, String sPwd) throws SQLException {
            BasicDataSource ds = new BasicDataSource();
            ds.setDriverClassName(sDriver);
            ds.setUsername(sUser);
            ds.setPassword(sPwd);
            ds.setUrl(sUrl);
            // The maximum number of active connections:
            ds.setMaxActive(3);
            // The maximum number of active connections that can remain idle in the pool,
            // without extra ones being released, or zero for no limit:
            ds.setMaxIdle(3);
            // The maximum number of milliseconds that the pool will wait (when there are no available connections)
            // for a connection to be returned before throwing an exception, or -1 to wait indefinitely:
            ds.setMaxWait(3000);    
            return ds;
        }I can switch by using external properties between three databases (oracle, mysql and sqlserver) and if I want I can switch pooling off. And all actions I'm interested are logged by Log4J.
        public static Connection getConnection() throws SQLException {
            Connection result = null;
            String sJdbcDriver = m_oJbProp.getString("jdbcDriver");
            String sJdbcUrl = m_oJbProp.getString("databaseConnection");
            String sJdbcUser = m_oJbProp.getString("dbUsername");
            String sJdbcPwd = m_oJbProp.getString("dbPassword");
                try {
                    if (m_oJbProp.getString("useConnectionPooling").equals("true")) {
                         if (log.isDebugEnabled()) {
                              log.debug("ConnectionPooling true");
                        if(null == m_ds) {
                            m_ds = setupDataSource(sJdbcDriver,sJdbcUrl,sJdbcUser,sJdbcPwd);
                              if (log.isDebugEnabled()) {
                                   log.debug("DataSource created");
                        result = m_ds.getConnection();
                    } else {
                        // No connection pooling:
                         if (log.isDebugEnabled()) {
                              log.debug("ConnectionPooling false");
                        try {
                            Class.forName(sJdbcDriver);
                            result = DriverManager.getConnection(sJdbcUrl, sJdbcUser, sJdbcPwd);
                        } catch (ClassNotFoundException cnf) {
                            log.error("Exception: Class Not Found. ", cnf);
                            System.exit(0);
    (.. ErrorHandling ...)Here is the code fragment which is doing the work:
                     StringBuffer sb = new StringBuffer();
                while (lNextBottom <= lNextCeiling) {
                     con = getConnection();
                     innerSelStmt = con.prepareStatement("SELECT Hictgid, Hictgname FROM HIERARCHYCATEGORY WHERE HICTGID = ?");
                     innerSelStmt.setLong(1, lNextBottom);
                     rsInner = innerSelStmt.executeQuery();
                     if ((rsInner != null) && (rsInner.next())) {
                         sb.append(rsInner.getLong(1) + ", " + rsInner.getString(2) + "\r");
                          if (log.isDebugEnabled()) {
                               log.debug("Inner Statement: " + rsInner.getLong(1) + "\r");
                     rsInner.close();
                     con.close();
                     lNextBottom++;
                 if (log.isInfoEnabled()) {
                      log.info("\rResult values: Hictgid, Hictgname \r");
                      log.info(sb.toString());
                 }and the main method:
        public static void main(String[] args) {
            try {
                 long lStartTime = System.currentTimeMillis();
                 JdbcBasic oJb = new JdbcBasic();
                 boolean bSuccess = false;
                 bSuccess = oJb.getHierarchycategories();
                 if (log.isInfoEnabled()) {
                      log.info("Running time: " + (System.currentTimeMillis() - lStartTime));
                 if (null != m_ds) {
                     printDataSourceStats(m_ds);
                      shutdownDataSource(m_ds);
                      if (log.isInfoEnabled()) {
                           log.info("Datasource closed.");
             } catch (SQLException sqe) {
                  log.error("SQLException within  main-method", sqe);
        }My database values are
    databaseConnection=jdbc:oracle:thin:@SERVERDB:1521:ora
    jdbcDriver=oracle.jdbc.driver.OracleDriver
    databaseConnection=jdbc:jtds:sqlserver://SERVERDB:1433/testdb
    jdbcDriver=net.sourceforge.jtds.jdbc.Driver
    databaseConnection=jdbc:mysql://localhost/testdb
    jdbcDriver=com.mysql.jdbc.Driver
    dbUsername=testusr
    dbPassword=testpwdThanks for your reading and maybe for your help.

    A few comments.
    There is of course another difference between your test cases then just the database. There is also the driver. And I suspect that in at least the case with the jtds driver it is helping you along where you are doing something silly and the Oracle driver is not.
    Before I explain the next part I would say the speed differences between MS-SQL and MySQL look about right I think you are aiming here for MS-SQL level performance not MySQL. (For a bunch of reasons MySQL is inherently faster but there are MANY drawbacks as well which have been well discussed on previous threads)
    Here is where I believe your problem lies
    while (lNextBottom <= lNextCeiling) {
                     con = getConnection();
                     innerSelStmt = con.prepareStatement("SELECT Hictgid, Hictgname FROM HIERARCHYCATEGORY WHERE HICTGID = ?");
                     innerSelStmt.setLong(1, lNextBottom);
                     rsInner = innerSelStmt.executeQuery();
                     if ((rsInner != null) && (rsInner.next())) {
                         sb.append(rsInner.getLong(1) + ", " + rsInner.getString(2) + "\r");
                          if (log.isDebugEnabled()) {
                               log.debug("Inner Statement: " + rsInner.getLong(1) + "\r");
                     rsInner.close();
                     con.close();
                     lNextBottom++;
                 }There at least four things that are wrong with above.
    1) Why are you preparing the statement INSIDE the loop. Let us for a moment say that the loop will spin 100 times. That means that you are preparing the same statement 100 times. This is bad. It is also very relevant because for example the Jtds driver is going to be caching the prepared statements you make so that actually while you try and prepare it 100 times it only actually does it once... but in Oracle I don't know what it is doing for sure but if it is preparing on each pass well than that bit of it is going take 100 times longer then it should.
    2) You are opening and closing the connection on each pass through the loop... also a terrible idea. You need to fix this first so that you can repeatedly use the same prepared statement.
    3) Why are you looping in the first place? More on this later.
    4) Where do you close the PreparedStatement? It doesn't look like you do.
    Okay so for starters your loop should look a lot more like this...
    code]
    con = getConnection();
    innerSelStmt = con.prepareStatement("SELECT Hictgid, Hictgname FROM HIERARCHYCATEGORY WHERE HICTGID = ?");
    while (lNextBottom <= lNextCeiling) {
    innerSelStmt.setLong(1, lNextBottom);
    rsInner = innerSelStmt.executeQuery();
    if ((rsInner != null) && (rsInner.next())) {
    sb.append(rsInner.getLong(1) + ", " + rsInner.getString(2) + "\r");
    rsInner.close();
    lNextBottom++;
    innerSelStmt.close();
    con.close();
    I think the code above (and you can put your debug stuff back if you want) which uses ONE connection and ONE prepared Statement will improve your performance dramatically.
    The other question though I would as is why in the hell you are doing 100 or whatever number of queries anyway. This can be done all in ONE query which again will improve performance.
    Your query and such should look like this I think.
    String sql = "SELECT Hictgid, Hictgname FROM HIERARCHYCATEGORY WHERE HICTGID >=? AND HICTGID<=?";
    PreparedStatement ps = conn.prepareStatement(sql);
    ps.setLong(1,lNextBottom );
    ps.setLong(2,lNextCeiling);
    ResultSet rs = ps.executeQuery();
    while(rs.next()){
      // your appending to string buffer code goes here
    }and I can't understand why you're not doing that in the first place.

  • Forte with Access/Pointbase

    Hi, I am new with Forte and I was wondering if anyone knows how to connect to a database using Forte. There are some connectionSource properties that I saw available but I have no idea how to connect them to either a Access database file or a pointbase database file. There are some URL's and driver's that I should know but I have no idea on how to start. Any tips?
    How do I initialise a pointbase database too?? I am trying to learn to create a database on my own computer without any network connection, hence could I run forte with a database available on my own computer thru pointbase or access?
    cheers.

    first you should check the tutorial on jdbc, which is very good.
    in your class, you'll need to load a driver, for example, jdbc.odbc.JdbcOdbcSunDriver (if memory serves me correctly, you'll then also need to set up a connection ... all explained in the jdbc tutorial. to use access, you'll also need to point to the database through control panel. in control panel choose odbc drivers (using winme), choose admin. tools in xp, the click on odbc, and then i forget the rest since i don'y use access anymore. you'll find how to do this somewhere on the net.

  • RE: Forte with OpenVMS

    Forte uses the standard VMS user privileges of TMPMBX and NETMBX, although
    you may consider them restrictive, these are normal non-privileged account
    settings.
    If you have a wrapped C routine, then this will show up as a shared library.
    You could install the library as a shareable image and give it the
    appropriate
    run-time privileges, so that any code that executes within the library gets
    what
    is needed - obviously you need to control who calls this code - which is
    your
    next problem.
    The simplest mechanism that I can think of to do this is to use a set of
    rights
    identifiers, similar to that within VMS, for the Forte user. Obviously you
    will
    need a user and rights database - but I guess that you must have this
    somewhere
    in the system anyway.
    Attach the rights identifiers to the task on the task context object so that
    they
    get sent over the network with every call. For sensitive calls check the
    presence
    of the rights identifiers before allowing the call to take place. Using
    application wide rights identifiers means that you can be independent of the
    underlying OS user id / password mechanisms once you have the information.
    Regards,
    - David
    David Bell
    Consulting Technical Manager - North Europe
    Forte Software
    St James's House Phone : +44 1344 482100
    Oldbury Fax: +44 1344 420905
    Bracknell Mobile: +44 378 300613
    RG12 8SA Email : [email protected]
    http://www.forte.com
    -----Original Message-----
    From: [email protected]
    [<a href="mailto:[email protected]">mailto:[email protected]]On</a> Behalf Of Alberto Lamas
    Sent: 02 July 1999 08:23
    To: 'Andy Grace'; Forte Users (Adresse de messagerie)
    Subject: RE: Forte with OpenVMS
    We are using Forte and VMS, and we use the forte usercode to run the node
    manager. All the subprocesses inherit this username when fired off as
    detached processes. You can take a look at the tech note 11037
    for more info
    about subprocess privileges, and for a way to change all this.
    We are using the standard way to fire off partitions, which means that we
    are restricted to the forte username (or whatever other username we choose
    to be our node manager owner, of course) and the forte defined subprocess
    privileges. This does not give us too many problems unless we try
    doing some
    functions that are not allowed under the privileges defined by Forte. I
    have no idea as of why Forte has chosen the current privilege
    set, which is
    quite restrictive. This can be a pain, especially if you try to do some
    system management functions via a Forte partition. It would be highly
    desirable to have a means to dynamically acquire the privileges we need
    without having to incurr the cost of managing specially built procedures.
    Forte says that this may change in the future...
    We have implemented a network wide user security and validation component
    based on the VMS getuai system service, which we have wrappered
    very easily
    via a C routine. As far as our application is concerned, the
    actual OS user
    executing the partition is specifically made not important for,
    among other
    reasons, we have a mixed environment (NT, VMS, W95/8) and our server
    partitions are distributed in different servers throughout the
    network. Our
    main concerns are centered around controlling the client requesting
    something from the application and not the OS security since the user does
    not have direct access to it anyway. Under these circumstances we need to
    handle the application's security issues ourselves (We are not reinventing
    the wheel here, only implementing some Forte and well known patterns).
    Maybe somebody else has a better solution than coding a user security
    schema, I would certainly like to hear about it for it should be a fairly
    commmon problem for every distributed application.
    Regards,
    Alberto
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:<a href=
    "http://pinehurst.sageit.com/listarchive/">http://pinehurst.sageit.com/listarchive/</a>>
    >
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:<a href=
    "http://pinehurst.sageit.com/listarchive/">http://pinehurst.sageit.com/listarchive/</a>>

    Forte uses the standard VMS user privileges of TMPMBX and NETMBX, although
    you may consider them restrictive, these are normal non-privileged account
    settings.
    If you have a wrapped C routine, then this will show up as a shared library.
    You could install the library as a shareable image and give it the
    appropriate
    run-time privileges, so that any code that executes within the library gets
    what
    is needed - obviously you need to control who calls this code - which is
    your
    next problem.
    The simplest mechanism that I can think of to do this is to use a set of
    rights
    identifiers, similar to that within VMS, for the Forte user. Obviously you
    will
    need a user and rights database - but I guess that you must have this
    somewhere
    in the system anyway.
    Attach the rights identifiers to the task on the task context object so that
    they
    get sent over the network with every call. For sensitive calls check the
    presence
    of the rights identifiers before allowing the call to take place. Using
    application wide rights identifiers means that you can be independent of the
    underlying OS user id / password mechanisms once you have the information.
    Regards,
    - David
    David Bell
    Consulting Technical Manager - North Europe
    Forte Software
    St James's House Phone : +44 1344 482100
    Oldbury Fax: +44 1344 420905
    Bracknell Mobile: +44 378 300613
    RG12 8SA Email : [email protected]
    http://www.forte.com
    -----Original Message-----
    From: [email protected]
    [<a href="mailto:[email protected]">mailto:[email protected]]On</a> Behalf Of Alberto Lamas
    Sent: 02 July 1999 08:23
    To: 'Andy Grace'; Forte Users (Adresse de messagerie)
    Subject: RE: Forte with OpenVMS
    We are using Forte and VMS, and we use the forte usercode to run the node
    manager. All the subprocesses inherit this username when fired off as
    detached processes. You can take a look at the tech note 11037
    for more info
    about subprocess privileges, and for a way to change all this.
    We are using the standard way to fire off partitions, which means that we
    are restricted to the forte username (or whatever other username we choose
    to be our node manager owner, of course) and the forte defined subprocess
    privileges. This does not give us too many problems unless we try
    doing some
    functions that are not allowed under the privileges defined by Forte. I
    have no idea as of why Forte has chosen the current privilege
    set, which is
    quite restrictive. This can be a pain, especially if you try to do some
    system management functions via a Forte partition. It would be highly
    desirable to have a means to dynamically acquire the privileges we need
    without having to incurr the cost of managing specially built procedures.
    Forte says that this may change in the future...
    We have implemented a network wide user security and validation component
    based on the VMS getuai system service, which we have wrappered
    very easily
    via a C routine. As far as our application is concerned, the
    actual OS user
    executing the partition is specifically made not important for,
    among other
    reasons, we have a mixed environment (NT, VMS, W95/8) and our server
    partitions are distributed in different servers throughout the
    network. Our
    main concerns are centered around controlling the client requesting
    something from the application and not the OS security since the user does
    not have direct access to it anyway. Under these circumstances we need to
    handle the application's security issues ourselves (We are not reinventing
    the wheel here, only implementing some Forte and well known patterns).
    Maybe somebody else has a better solution than coding a user security
    schema, I would certainly like to hear about it for it should be a fairly
    commmon problem for every distributed application.
    Regards,
    Alberto
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:<a href=
    "http://pinehurst.sageit.com/listarchive/">http://pinehurst.sageit.com/listarchive/</a>>
    >
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:<a href=
    "http://pinehurst.sageit.com/listarchive/">http://pinehurst.sageit.com/listarchive/</a>>

  • Customer/Vendor A/C with line item details and with opening and closing Bal

    Dear Sir / Madam,
    Is it possible to have a customer and / or vendor Sub-Ledger account-
    with line item details and with opening and closing balance detail
    for a particular period.?
    Regards
    Chirag Shah
    I thank for the given below thread which has solved the same problem for G/L Account
    Re: Report to get the ledger printout with opening balances

    Hello Srinujalleda,
    Thanks for your precious time.
    I tried the referred T-Code
    But this report is not showing Opening balance, closing balance detail.
    It only gives transactions during the specified posting period and total of it.
    Please guide me further in case if I need to give proper input at selection screen or elsewhere.
    Client Requires Report in a fashion
    Opening Balance as on Date
    + / -  Transactions during the period
    = Closing Balance as on date
    As that of appearing for G/L Account by S_ALR_87012311
    Thanks once again & Regards
    Chirag Shah

  • HT201328 I have been given permission for unlocking my iphone 3 GS from Orange. I want to set up the phone for my wife to use with a new number and carrier. Do I unlock under my itunes account first or set one up for her and then unlock the phone.

    I have been given permission for unlocking my iphone 3 GS from Orange. I want to set up the phone for my wife to use with a new number and carrier. Do I unlock under my itunes account first ( I now have a new iphone on this account) or set one up for her and then unlock the phone. I am worried about upsetting the new phone.

    I would complete unlocking as is and then
    restore as new once you know the iPhone is unlocked
    Be aware Orange will process the request at their speed
    one of the reasons they usually reside at bottom of User Sat surveys
    will likely take weeks
    This may also help
    http://support.apple.com/kb/HT5014

  • Corrupted video with Linux 3.8 and i915

    Ever since I upgraded my Linux Kernel to 3.8, I've been getting corrupted graphics after booting. I can get past the corruption if I add "nomodeset" kernel option, however this causes X to use a fallback driver instead of the Intel one.
    This is the dmesg logs with the default modesetting and corrupted graphics:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.8.7-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.0 20130411 (prerelease) (GCC) ) #1 SMP PREEMPT Sat Apr 13 09:01:47 CEST 2013
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=b10de096-a448-4f73-b737-8a93cda3da03 ro quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ebff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000040200000-0x00000000bad8bfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bad8c000-0x00000000badd5fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000badd6000-0x00000000badddfff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000badde000-0x00000000baddefff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000baddf000-0x00000000bae00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bae01000-0x00000000bae01fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bae02000-0x00000000bae11fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bae12000-0x00000000bae1ffff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bae20000-0x00000000bae44fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bae45000-0x00000000bae87fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bae88000-0x00000000baffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bb800000-0x00000000bf9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000d0000000-0x00000000e00fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fc000000-0x00000000fe407fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fe800000-0x00000000fe9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000fed03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed44fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed90000-0x00000000fed93fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000043fdfffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: BIOSTAR Group H61MGC/H61MGC, BIOS 4.6.4 01/19/2012
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x43fe00 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask C00000000 write-back
    [ 0.000000] 1 base 400000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0BB800000 mask FFF800000 uncachable
    [ 0.000000] 3 base 0BC000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 0C0000000 mask FC0000000 uncachable
    [ 0.000000] 5 base 43FE00000 mask FFFE00000 uncachable
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xbb800000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xbae02 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fcd80-0x000fcd8f] mapped at [ffff8800000fcd80]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0xbae01fff]
    [ 0.000000] [mem 0x00000000-0xbadfffff] page 2M
    [ 0.000000] [mem 0xbae00000-0xbae01fff] page 4k
    [ 0.000000] kernel direct mapping tables up to 0xbae01fff @ [mem 0x1fffb000-0x1fffffff]
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x43fdfffff]
    [ 0.000000] [mem 0x100000000-0x43fdfffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0x43fdfffff @ [mem 0xbad7e000-0xbad8bfff]
    [ 0.000000] RAMDISK: [mem 0x37982000-0x37cb8fff]
    [ 0.000000] ACPI: RSDP 00000000000f0450 00024 (v02 ALASKA)
    [ 0.000000] ACPI: XSDT 00000000badd6068 00054 (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 00000000baddcfe0 000F4 (v04 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: DSDT 00000000badd6150 06E89 (v02 ALASKA A M I 00000014 INTL 20051117)
    [ 0.000000] ACPI: FACS 00000000bae17f80 00040
    [ 0.000000] ACPI: APIC 00000000baddd0d8 00072 (v03 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: SSDT 00000000baddd150 00102 (v01 AMICPU PROC 00000001 MSFT 03000001)
    [ 0.000000] ACPI: MCFG 00000000baddd258 0003C (v01 ALASKA A M I 01072009 MSFT 00000097)
    [ 0.000000] ACPI: HPET 00000000baddd298 00038 (v01 ALASKA A M I 01072009 AMI. 00000004)
    [ 0.000000] ACPI: ASPT 00000000baddd2d0 00034 (v07 ALASKA PerfTune 01072009 AMI 00000000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000043fdfffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x43fdfffff]
    [ 0.000000] NODE_DATA [mem 0x43fdfb000-0x43fdfffff]
    [ 0.000000] [ffffea0000000000-ffffea0010ffffff] PMD -> [ffff88042f400000-ffff88043f3fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x43fdfffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009dfff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x3fffffff]
    [ 0.000000] node 0: [mem 0x40200000-0xbad8bfff]
    [ 0.000000] node 0: [mem 0xbae01000-0xbae01fff]
    [ 0.000000] node 0: [mem 0x100000000-0x43fdfffff]
    [ 0.000000] On node 0 totalpages: 4171547
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 6 pages reserved
    [ 0.000000] DMA zone: 3912 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 11879 pages used for memmap
    [ 0.000000] DMA32 zone: 748326 pages, LIFO batch:31
    [ 0.000000] Normal zone: 53240 pages used for memmap
    [ 0.000000] Normal zone: 3354120 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 000000000009f000
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
    [ 0.000000] PM: Registered nosave memory: 0000000040000000 - 0000000040200000
    [ 0.000000] PM: Registered nosave memory: 00000000bad8c000 - 00000000badd6000
    [ 0.000000] PM: Registered nosave memory: 00000000badd6000 - 00000000badde000
    [ 0.000000] PM: Registered nosave memory: 00000000badde000 - 00000000baddf000
    [ 0.000000] PM: Registered nosave memory: 00000000baddf000 - 00000000bae01000
    [ 0.000000] PM: Registered nosave memory: 00000000bae02000 - 00000000bae12000
    [ 0.000000] PM: Registered nosave memory: 00000000bae12000 - 00000000bae20000
    [ 0.000000] PM: Registered nosave memory: 00000000bae20000 - 00000000bae45000
    [ 0.000000] PM: Registered nosave memory: 00000000bae45000 - 00000000bae88000
    [ 0.000000] PM: Registered nosave memory: 00000000bae88000 - 00000000bb000000
    [ 0.000000] PM: Registered nosave memory: 00000000bb000000 - 00000000bb800000
    [ 0.000000] PM: Registered nosave memory: 00000000bb800000 - 00000000bfa00000
    [ 0.000000] PM: Registered nosave memory: 00000000bfa00000 - 00000000d0000000
    [ 0.000000] PM: Registered nosave memory: 00000000d0000000 - 00000000e0100000
    [ 0.000000] PM: Registered nosave memory: 00000000e0100000 - 00000000f0000000
    [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
    [ 0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000fc000000
    [ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fe408000
    [ 0.000000] PM: Registered nosave memory: 00000000fe408000 - 00000000fe800000
    [ 0.000000] PM: Registered nosave memory: 00000000fe800000 - 00000000fea00000
    [ 0.000000] PM: Registered nosave memory: 00000000fea00000 - 00000000feb00000
    [ 0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000fed04000
    [ 0.000000] PM: Registered nosave memory: 00000000fed04000 - 00000000fed08000
    [ 0.000000] PM: Registered nosave memory: 00000000fed08000 - 00000000fed09000
    [ 0.000000] PM: Registered nosave memory: 00000000fed09000 - 00000000fed10000
    [ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed45000
    [ 0.000000] PM: Registered nosave memory: 00000000fed45000 - 00000000fed90000
    [ 0.000000] PM: Registered nosave memory: 00000000fed90000 - 00000000fed94000
    [ 0.000000] PM: Registered nosave memory: 00000000fed94000 - 00000000fee00000
    [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fef00000
    [ 0.000000] PM: Registered nosave memory: 00000000fef00000 - 00000000ff000000
    [ 0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
    [ 0.000000] e820: [mem 0xbfa00000-0xcfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88043fa00000 s85184 r8192 d21312 u524288
    [ 0.000000] pcpu-alloc: s85184 r8192 d21312 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4106358
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=b10de096-a448-4f73-b737-8a93cda3da03 ro quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 16342728k/17823744k available (4908k kernel code, 1137556k absent, 343460k reserved, 4024k data, 820k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
    [ 0.000000] NR_IRQS:4352 nr_irqs:712 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 67108864 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 3392.088 MHz processor
    [ 0.000001] Calibrating delay loop (skipped), value calculated using timer frequency.. 6786.85 BogoMIPS (lpj=11306960)
    [ 0.000003] pid_max: default: 32768 minimum: 301
    [ 0.000022] Security Framework initialized
    [ 0.000027] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000680] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [ 0.003594] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.004879] Mount-cache hash table entries: 256
    [ 0.004996] Initializing cgroup subsys cpuacct
    [ 0.004998] Initializing cgroup subsys memory
    [ 0.005003] Initializing cgroup subsys devices
    [ 0.005004] Initializing cgroup subsys freezer
    [ 0.005005] Initializing cgroup subsys net_cls
    [ 0.005006] Initializing cgroup subsys blkio
    [ 0.005023] CPU: Physical Processor ID: 0
    [ 0.005024] CPU: Processor Core ID: 0
    [ 0.005027] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.005289] mce: CPU supports 9 MCE banks
    [ 0.005298] CPU0: Thermal monitoring enabled (TM1)
    [ 0.005305] process: using mwait in idle threads
    [ 0.005308] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 1
    [ 0.005431] Freeing SMP alternatives: 20k freed
    [ 0.006105] ACPI: Core revision 20121018
    [ 0.007846] ftrace: allocating 19310 entries in 76 pages
    [ 0.014700] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.047607] smpboot: CPU0: Intel(R) Core(TM) i5-3570K CPU @ 3.40GHz (fam: 06, model: 3a, stepping: 09)
    [ 0.047612] TSC deadline timer enabled
    [ 0.047615] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, Intel PMU driver.
    [ 0.047619] ... version: 3
    [ 0.047620] ... bit width: 48
    [ 0.047620] ... generic registers: 8
    [ 0.047621] ... value mask: 0000ffffffffffff
    [ 0.047622] ... max period: 000000007fffffff
    [ 0.047622] ... fixed-purpose events: 3
    [ 0.047623] ... event mask: 00000007000000ff
    [ 0.084381] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.070954] smpboot: Booting Node 0, Processors #1 #2 #3 OK
    [ 0.124713] Brought up 4 CPUs
    [ 0.124716] smpboot: Total of 4 processors activated (27147.40 BogoMIPS)
    [ 0.127034] devtmpfs: initialized
    [ 0.128242] PM: Registering ACPI NVS region [mem 0xbad8c000-0xbadd5fff] (303104 bytes)
    [ 0.128247] PM: Registering ACPI NVS region [mem 0xbadde000-0xbaddefff] (4096 bytes)
    [ 0.128248] PM: Registering ACPI NVS region [mem 0xbae12000-0xbae1ffff] (57344 bytes)
    [ 0.128249] PM: Registering ACPI NVS region [mem 0xbae45000-0xbae87fff] (274432 bytes)
    [ 0.128713] RTC time: 12:28:08, date: 04/21/13
    [ 0.128739] NET: Registered protocol family 16
    [ 0.128821] ACPI: bus type pci registered
    [ 0.128858] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
    [ 0.128860] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
    [ 0.134043] PCI: Using configuration type 1 for base access
    [ 0.134456] bio: create slab <bio-0> at 0
    [ 0.134491] ACPI: Added _OSI(Module Device)
    [ 0.134492] ACPI: Added _OSI(Processor Device)
    [ 0.134492] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.134493] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.135068] ACPI: EC: Look up EC in DSDT
    [ 0.135781] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.137166] ACPI: SSDT 00000000bae16c18 0038C (v01 AMI IST 00000001 MSFT 03000001)
    [ 0.137329] ACPI: Dynamic OEM Table Load:
    [ 0.137331] ACPI: SSDT (null) 0038C (v01 AMI IST 00000001 MSFT 03000001)
    [ 0.137344] ACPI: SSDT 00000000bae17e18 00084 (v01 AMI CST 00000001 MSFT 03000001)
    [ 0.137479] ACPI: Dynamic OEM Table Load:
    [ 0.137480] ACPI: SSDT (null) 00084 (v01 AMI CST 00000001 MSFT 03000001)
    [ 0.137815] ACPI: Interpreter enabled
    [ 0.137817] ACPI: (supports S0 S1 S4 S5)
    [ 0.137825] ACPI: Using IOAPIC for interrupt routing
    [ 0.137957] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.140373] ACPI: No dock devices found.
    [ 0.140376] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.140460] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.140461] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.140644] pci_root PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
    [ 0.140660] PCI host bridge to bus 0000:00
    [ 0.140662] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.140663] pci_bus 0000:00: root bus resource [io 0x0000-0x03af]
    [ 0.140664] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7]
    [ 0.140666] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df]
    [ 0.140667] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.140668] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.140669] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff]
    [ 0.140670] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xffffffff]
    [ 0.140676] pci 0000:00:00.0: [8086:0150] type 00 class 0x060000
    [ 0.140703] pci 0000:00:02.0: [8086:0162] type 00 class 0x030000
    [ 0.140710] pci 0000:00:02.0: reg 10: [mem 0xfe000000-0xfe3fffff 64bit]
    [ 0.140714] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.140717] pci 0000:00:02.0: reg 20: [io 0xf000-0xf03f]
    [ 0.140761] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
    [ 0.140782] pci 0000:00:16.0: reg 10: [mem 0xfe407000-0xfe40700f 64bit]
    [ 0.140852] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.140882] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
    [ 0.140901] pci 0000:00:1a.0: reg 10: [mem 0xfe406000-0xfe4063ff]
    [ 0.140986] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.141009] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
    [ 0.141022] pci 0000:00:1b.0: reg 10: [mem 0xfe400000-0xfe403fff 64bit]
    [ 0.141084] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.141106] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
    [ 0.141179] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.141202] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
    [ 0.141274] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.141305] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
    [ 0.141327] pci 0000:00:1d.0: reg 10: [mem 0xfe405000-0xfe4053ff]
    [ 0.141412] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.141435] pci 0000:00:1f.0: [8086:1c5c] type 00 class 0x060100
    [ 0.141547] pci 0000:00:1f.2: [8086:1c00] type 00 class 0x01018a
    [ 0.141560] pci 0000:00:1f.2: reg 10: [io 0xf110-0xf117]
    [ 0.141566] pci 0000:00:1f.2: reg 14: [io 0xf100-0xf103]
    [ 0.141573] pci 0000:00:1f.2: reg 18: [io 0xf0f0-0xf0f7]
    [ 0.141580] pci 0000:00:1f.2: reg 1c: [io 0xf0e0-0xf0e3]
    [ 0.141587] pci 0000:00:1f.2: reg 20: [io 0xf0d0-0xf0df]
    [ 0.141594] pci 0000:00:1f.2: reg 24: [io 0xf0c0-0xf0cf]
    [ 0.141635] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
    [ 0.141648] pci 0000:00:1f.3: reg 10: [mem 0xfe404000-0xfe4040ff 64bit]
    [ 0.141666] pci 0000:00:1f.3: reg 20: [io 0xf040-0xf05f]
    [ 0.141696] pci 0000:00:1f.5: [8086:1c08] type 00 class 0x010185
    [ 0.141709] pci 0000:00:1f.5: reg 10: [io 0xf0b0-0xf0b7]
    [ 0.141716] pci 0000:00:1f.5: reg 14: [io 0xf0a0-0xf0a3]
    [ 0.141723] pci 0000:00:1f.5: reg 18: [io 0xf090-0xf097]
    [ 0.141730] pci 0000:00:1f.5: reg 1c: [io 0xf080-0xf083]
    [ 0.141737] pci 0000:00:1f.5: reg 20: [io 0xf070-0xf07f]
    [ 0.141743] pci 0000:00:1f.5: reg 24: [io 0xf060-0xf06f]
    [ 0.141821] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.141889] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
    [ 0.141908] pci 0000:02:00.0: reg 10: [io 0xe000-0xe0ff]
    [ 0.141941] pci 0000:02:00.0: reg 18: [mem 0xe0004000-0xe0004fff 64bit pref]
    [ 0.141961] pci 0000:02:00.0: reg 20: [mem 0xe0000000-0xe0003fff 64bit pref]
    [ 0.142050] pci 0000:02:00.0: supports D1 D2
    [ 0.142051] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.147998] pci 0000:00:1c.1: PCI bridge to [bus 02]
    [ 0.148003] pci 0000:00:1c.1: bridge window [io 0xe000-0xefff]
    [ 0.148013] pci 0000:00:1c.1: bridge window [mem 0xe0000000-0xe00fffff 64bit pref]
    [ 0.148056] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
    [ 0.148071] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX1._PRT]
    [ 0.148131] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.148233] pci0000:00: ACPI _OSC control (0x19) granted
    [ 0.148555] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [ 0.148580] ACPI: PCI Interrupt Link [LNKB] (IRQs *3 4 5 6 7 10 11 12 14 15)
    [ 0.148604] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    [ 0.148627] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *10 12 14 15)
    [ 0.148651] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
    [ 0.148675] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
    [ 0.148699] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    [ 0.148724] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 10 11 12 14 15)
    [ 0.148771] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.148772] vgaarb: loaded
    [ 0.148773] vgaarb: bridge control possible 0000:00:02.0
    [ 0.148791] PCI: Using ACPI for IRQ routing
    [ 0.150239] PCI: pci_cache_line_size set to 64 bytes
    [ 0.150274] e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
    [ 0.150275] e820: reserve RAM buffer [mem 0xbad8c000-0xbbffffff]
    [ 0.150276] e820: reserve RAM buffer [mem 0xbae02000-0xbbffffff]
    [ 0.150277] e820: reserve RAM buffer [mem 0x43fe00000-0x43fffffff]
    [ 0.150330] NetLabel: Initializing
    [ 0.150330] NetLabel: domain hash size = 128
    [ 0.150331] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.150338] NetLabel: unlabeled traffic allowed by default
    [ 0.150351] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.150354] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.152358] Switching to clocksource hpet
    [ 0.154978] pnp: PnP ACPI init
    [ 0.154986] ACPI: bus type pnp registered
    [ 0.155052] system 00:00: [mem 0xfed10000-0xfed19fff] has been reserved
    [ 0.155054] system 00:00: [mem 0xf0000000-0xf3ffffff] has been reserved
    [ 0.155055] system 00:00: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.155056] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.155057] system 00:00: [mem 0xfee00000-0xfee0ffff] has been reserved
    [ 0.155060] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.155126] system 00:01: [io 0x0a00-0x0a0f] has been reserved
    [ 0.155127] system 00:01: [io 0x0a30-0x0a3f] has been reserved
    [ 0.155128] system 00:01: [io 0x0a20-0x0a2f] has been reserved
    [ 0.155130] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.155242] pnp 00:02: [dma 0 disabled]
    [ 0.155272] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active)
    [ 0.155473] pnp 00:03: [dma 0 disabled]
    [ 0.155550] pnp 00:03: Plug and Play ACPI device, IDs PNP0400 (active)
    [ 0.155556] pnp 00:04: [dma 4]
    [ 0.155565] pnp 00:04: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.155584] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.155595] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.155622] system 00:07: [io 0x04d0-0x04d1] has been reserved
    [ 0.155624] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.155639] pnp 00:08: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.155737] system 00:09: [io 0x0400-0x0453] has been reserved
    [ 0.155738] system 00:09: [io 0x0458-0x047f] has been reserved
    [ 0.155740] system 00:09: [io 0x1180-0x119f] has been reserved
    [ 0.155741] system 00:09: [io 0x0500-0x057f] has been reserved
    [ 0.155742] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.155744] system 00:09: [mem 0xfec00000-0xfecfffff] could not be reserved
    [ 0.155745] system 00:09: [mem 0xfed08000-0xfed08fff] has been reserved
    [ 0.155746] system 00:09: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.155748] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.155778] system 00:0a: [io 0x0454-0x0457] has been reserved
    [ 0.155779] system 00:0a: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.155841] pnp 00:0b: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.155914] pnp: PnP ACPI: found 12 devices
    [ 0.155915] ACPI: ACPI bus type pnp unregistered
    [ 0.161646] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.161657] pci 0000:00:1c.1: PCI bridge to [bus 02]
    [ 0.161660] pci 0000:00:1c.1: bridge window [io 0xe000-0xefff]
    [ 0.161666] pci 0000:00:1c.1: bridge window [mem 0xe0000000-0xe00fffff 64bit pref]
    [ 0.161686] pci_bus 0000:00: resource 4 [io 0x0000-0x03af]
    [ 0.161687] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7]
    [ 0.161688] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df]
    [ 0.161689] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff]
    [ 0.161690] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff]
    [ 0.161692] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff]
    [ 0.161693] pci_bus 0000:00: resource 10 [mem 0xbfa00000-0xffffffff]
    [ 0.161694] pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
    [ 0.161695] pci_bus 0000:02: resource 2 [mem 0xe0000000-0xe00fffff 64bit pref]
    [ 0.161711] NET: Registered protocol family 2
    [ 0.161855] TCP established hash table entries: 131072 (order: 9, 2097152 bytes)
    [ 0.162134] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.162257] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.162268] TCP: reno registered
    [ 0.162280] UDP hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.162322] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.162389] NET: Registered protocol family 1
    [ 0.162397] pci 0000:00:02.0: Boot video device
    [ 1.491880] pci 0000:00:1a.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
    [ 2.821411] pci 0000:00:1d.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
    [ 2.821534] PCI: CLS 64 bytes, default 64
    [ 2.821560] Unpacking initramfs...
    [ 2.860148] Freeing initrd memory: 3292k freed
    [ 2.860410] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 2.860412] software IO TLB [mem 0xb6d7e000-0xbad7e000] (64MB) mapped at [ffff8800b6d7e000-ffff8800bad7dfff]
    [ 2.860631] audit: initializing netlink socket (disabled)
    [ 2.860638] type=2000 audit(1366547290.869:1): initialized
    [ 2.869024] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 2.870168] VFS: Disk quotas dquot_6.5.2
    [ 2.870192] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 2.870287] msgmni has been set to 31925
    [ 2.870432] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 2.870451] io scheduler noop registered
    [ 2.870452] io scheduler deadline registered
    [ 2.870455] io scheduler cfq registered (default)
    [ 2.870600] vesafb: mode is 1920x1080x32, linelength=7680, pages=0
    [ 2.870600] vesafb: scrolling: redraw
    [ 2.870602] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 2.871275] vesafb: framebuffer at 0xd0000000, mapped to 0xffffc90005c00000, using 8128k, total 8128k
    [ 2.980432] Console: switching to colour frame buffer device 240x67
    [ 3.089134] fb0: VESA VGA frame buffer device
    [ 3.089141] intel_idle: MWAIT substates: 0x1120
    [ 3.089141] intel_idle: v0.4 model 0x3A
    [ 3.089142] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 3.089165] GHES: HEST is not enabled!
    [ 3.089198] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 3.109690] 00:02: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
    [ 3.109934] Linux agpgart interface v0.103
    [ 3.109973] i8042: PNP: No PS/2 controller found. Probing ports directly.
    [ 3.110328] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 3.110343] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 3.110406] mousedev: PS/2 mouse device common for all mice
    [ 3.110446] rtc_cmos 00:05: RTC can wake from S4
    [ 3.110549] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 3.110579] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 3.110620] cpuidle: using governor ladder
    [ 3.110670] cpuidle: using governor menu
    [ 3.110671] EFI Variables Facility v0.08 2004-May-17
    [ 3.110696] drop_monitor: Initializing network drop monitor service
    [ 3.110739] TCP: cubic registered
    [ 3.110796] NET: Registered protocol family 10
    [ 3.110880] NET: Registered protocol family 17
    [ 3.110888] Key type dns_resolver registered
    [ 3.111039] PM: Hibernation image not present or could not be loaded.
    [ 3.111044] registered taskstats version 1
    [ 3.111641] Magic number: 9:762:481
    [ 3.111722] rtc_cmos 00:05: setting system clock to 2013-04-21 12:28:11 UTC (1366547291)
    [ 3.112698] Freeing unused kernel memory: 820k freed
    [ 3.112774] Write protecting the kernel read-only data: 8192k
    [ 3.115117] Freeing unused kernel memory: 1224k freed
    [ 3.116059] Freeing unused kernel memory: 440k freed
    [ 3.120597] systemd-udevd[55]: starting version 201
    [ 3.121991] [drm] Initialized drm 1.1.0 20060810
    [ 3.122543] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
    [ 3.122548] ACPI: Power Button [PWRB]
    [ 3.122604] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
    [ 3.122606] ACPI: Power Button [PWRF]
    [ 3.124834] [drm] Memory usable by graphics device = 2048M
    [ 3.124837] checking generic (d0000000 7f0000) vs hw (d0000000 10000000)
    [ 3.124838] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 3.124847] Console: switching to colour dummy device 80x25
    [ 3.124912] i915 0000:00:02.0: setting latency timer to 64
    [ 3.147632] i915 0000:00:02.0: irq 40 for MSI/MSI-X
    [ 3.147637] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 3.147638] [drm] Driver supports precise vblank timestamp query.
    [ 3.147660] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 3.160432] [drm:__gen6_gt_force_wake_mt_get] *ERROR* Timed out waiting for forcewake to ack request.
    [ 3.170403] [drm:__gen6_gt_wait_for_thread_c0] *ERROR* GT thread status wait timed out
    [ 3.223613] [drm:init_ring_common] *ERROR* render ring initialization failed ctl 00000000 head 00000000 tail 00000000 start 00000000
    [ 4.074424] [drm:__gen6_gt_force_wake_mt_get] *ERROR* Timed out waiting for forcewake to ack request.
    [ 4.094365] [drm:__gen6_gt_wait_for_thread_c0] *ERROR* GT thread status wait timed out
    [ 4.094384] tsc: Refined TSC clocksource calibration: 3392.294 MHz
    [ 4.094386] Switching to clocksource tsc
    [ 4.147630] [drm:init_ring_common] *ERROR* bsd ring initialization failed ctl 00000000 head 00000000 tail 00000000 start 00000000
    [ 4.147706] [drm:i915_driver_load] *ERROR* failed to init modeset
    [ 4.148415] i915: probe of 0000:00:02.0 failed with error -5
    [ 4.161263] ACPI: bus type usb registered
    [ 4.161317] usbcore: registered new interface driver usbfs
    [ 4.161324] usbcore: registered new interface driver hub
    [ 4.161413] usbcore: registered new device driver usb
    [ 4.161574] SCSI subsystem initialized
    [ 4.162262] ACPI: bus type scsi registered
    [ 4.162335] libata version 3.00 loaded.
    [ 4.162367] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 4.162577] ehci-pci: EHCI PCI platform driver
    [ 4.162612] ehci-pci 0000:00:1a.0: setting latency timer to 64
    [ 4.162615] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 4.162619] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 4.162631] ehci-pci 0000:00:1a.0: debug port 2
    [ 4.166507] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 4.166520] ehci-pci 0000:00:1a.0: irq 16, io mem 0xfe406000
    [ 4.174224] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 4.174406] hub 1-0:1.0: USB hub found
    [ 4.174411] hub 1-0:1.0: 2 ports detected
    [ 4.174488] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 4.174491] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 4.174494] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 4.174504] ehci-pci 0000:00:1d.0: debug port 2
    [ 4.178376] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 4.178387] ehci-pci 0000:00:1d.0: irq 23, io mem 0xfe405000
    [ 4.187519] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 4.187706] hub 2-0:1.0: USB hub found
    [ 4.187709] hub 2-0:1.0: 2 ports detected
    [ 4.187805] ata_piix 0000:00:1f.2: version 2.13
    [ 4.187823] ata_piix 0000:00:1f.2: MAP [
    [ 4.187824] P0 P2 P1 P3 ]
    [ 4.340467] ata_piix 0000:00:1f.2: setting latency timer to 64
    [ 4.340720] scsi0 : ata_piix
    [ 4.341117] scsi1 : ata_piix
    [ 4.341342] ata1: SATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xf0d0 irq 14
    [ 4.341347] ata2: SATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xf0d8 irq 15
    [ 4.341360] ata_piix 0000:00:1f.5: MAP [
    [ 4.341360] P0 -- P1 -- ]
    [ 4.480019] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 4.493313] ata_piix 0000:00:1f.5: SCR access via SIDPR is available but doesn't work
    [ 4.493326] ata_piix 0000:00:1f.5: setting latency timer to 64
    [ 4.493538] scsi2 : ata_piix
    [ 4.493885] scsi3 : ata_piix
    [ 4.494108] ata3: SATA max UDMA/133 cmd 0xf0b0 ctl 0xf0a0 bmdma 0xf070 irq 19
    [ 4.494109] ata4: SATA max UDMA/133 cmd 0xf090 ctl 0xf080 bmdma 0xf078 irq 19
    [ 4.603626] hub 1-1:1.0: USB hub found
    [ 4.603699] hub 1-1:1.0: 4 ports detected
    [ 4.709364] usb 2-1: new high-speed USB device number 2 using ehci-pci
    [ 4.832948] hub 2-1:1.0: USB hub found
    [ 4.833043] hub 2-1:1.0: 6 ports detected
    [ 4.898989] usb 1-1.1: new low-speed USB device number 3 using ehci-pci
    [ 4.999004] usbcore: registered new interface driver usbhid
    [ 4.999005] usbhid: USB HID core driver
    [ 4.999367] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/input/input2
    [ 4.999427] hid-generic 0003:046D:C521.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1a.0-1.1/input0
    [ 5.002139] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.1/input/input3
    [ 5.002355] hid-generic 0003:046D:C521.0002: input,hiddev0,hidraw1: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1a.0-1.1/input1
    [ 5.055167] usb 1-1.3: new high-speed USB device number 4 using ehci-pci
    [ 5.360826] ata2.00: failed to resume link (SControl 0)
    [ 5.424109] usb 1-1.4: new full-speed USB device number 5 using ehci-pci
    [ 5.517457] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input4
    [ 5.517569] hid-generic 0003:045E:0745.0003: input,hidraw2: USB HID v1.11 Keyboard [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-0000:00:1a.0-1.4/input0
    [ 5.523155] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.1/input/input5
    [ 5.523390] hid-generic 0003:045E:0745.0004: input,hidraw3: USB HID v1.11 Mouse [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-0000:00:1a.0-1.4/input1
    [ 5.538878] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.2/input/input6
    [ 5.539104] hid-generic 0003:045E:0745.0005: input,hiddev0,hidraw4: USB HID v1.11 Device [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-0000:00:1a.0-1.4/input2
    [ 5.616931] usb 2-1.3: new high-speed USB device number 3 using ehci-pci
    [ 5.679916] ata1.01: failed to resume link (SControl 0)
    [ 5.702724] input: Western Digital External HDD as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.1/input/input7
    [ 5.702795] hid-generic 0003:1058:0705.0006: input,hidraw5: USB HID v1.10 Device [Western Digital External HDD ] on usb-0000:00:1d.0-1.3/input1
    [ 5.703448] Initializing USB Mass Storage driver...
    [ 5.703513] scsi4 : usb-storage 2-1.3:1.0
    [ 5.703555] usbcore: registered new interface driver usb-storage
    [ 5.703556] USB Mass Storage support registered.
    [ 5.832877] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 5.832888] ata1.01: SATA link down (SStatus 0 SControl 0)
    [ 5.839930] ata1.00: ATA-8: Hitachi HDS721010CLA330, JP4OA3MA, max UDMA/133
    [ 5.839934] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
    [ 5.853220] ata1.00: configured for UDMA/133
    [ 5.853398] scsi 0:0:0:0: Direct-Access ATA Hitachi HDS72101 JP4O PQ: 0 ANSI: 5
    [ 6.381306] ata2.01: failed to resume link (SControl 0)
    [ 6.392485] ata2.00: SATA link down (SStatus 4 SControl 0)
    [ 6.392498] ata2.01: SATA link down (SStatus 0 SControl 0)
    [ 6.393465] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    [ 6.393486] sd 0:0:0:0: [sda] Write Protect is off
    [ 6.393488] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 6.393496] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 6.398867] sda: sda1 sda2
    [ 6.399148] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 6.684261] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    [ 6.704492] scsi 4:0:0:0: Direct-Access WD 5000BEV External 1.75 PQ: 0 ANSI: 4
    [ 6.705358] sd 4:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 6.706072] sd 4:0:0:0: [sdb] Write Protect is off
    [ 6.706077] sd 4:0:0:0: [sdb] Mode Sense: 23 00 00 00
    [ 6.706816] sd 4:0:0:0: [sdb] No Caching mode page present
    [ 6.706824] sd 4:0:0:0: [sdb] Assuming drive cache: write through
    [ 6.709057] sd 4:0:0:0: [sdb] No Caching mode page present
    [ 6.709064] sd 4:0:0:0: [sdb] Assuming drive cache: write through
    [ 6.709536] sdb: sdb1 sdb2 sdb3
    [ 6.712170] sd 4:0:0:0: [sdb] No Caching mode page present
    [ 6.712177] sd 4:0:0:0: [sdb] Assuming drive cache: write through
    [ 6.712182] sd 4:0:0:0: [sdb] Attached SCSI disk
    [ 7.159102] systemd[1]: systemd 201 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 7.170787] systemd[1]: Set hostname to <monolith>.
    [ 7.649154] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 7.649194] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 7.649202] systemd[1]: Expecting device sys-subsystem-net-devices-eth0.device...
    [ 7.649209] systemd[1]: Starting Network is Online.
    [ 7.649215] systemd[1]: Reached target Network is Online.
    [ 7.649220] systemd[1]: Starting mnt-netfs.automount.
    [ 7.661823] systemd[1]: Set up automount mnt-netfs.automount.
    [ 7.661832] systemd[1]: Starting Remote File Systems.
    [ 7.661838] systemd[1]: Reached target Remote File Systems.
    [ 7.661843] systemd[1]: Starting Syslog Socket.
    [ 7.661864] systemd[1]: Listening on Syslog Socket.
    [ 7.661870] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 7.661885] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 7.661890] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 7.661900] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 7.661904] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 7.661918] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 7.661923] systemd[1]: Starting Delayed Shutdown Socket.
    [ 7.661934] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 7.661940] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 7.661962] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 7.661980] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 7.662020] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 7.662026] systemd[1]: Starting Journal Socket.
    [ 7.662050] systemd[1]: Listening on Journal Socket.
    [ 7.662059] systemd[1]: Mounting POSIX Message Queue File System...
    [ 7.682703] systemd[1]: Started Set Up Additional Binary Formats.
    [ 7.686581] systemd[1]: Starting Apply Kernel Variables...
    [ 7.690932] systemd[1]: Mounting Debug File System...
    [ 7.694343] systemd[1]: Starting Journal Service...
    [ 7.700886] systemd[1]: Started Journal Service.
    [ 7.712541] systemd[1]: Starting Load Kernel Modules...
    [ 7.714248] systemd[1]: Starting Encrypted Volumes.
    [ 7.714259] systemd[1]: Reached target Encrypted Volumes.
    [ 7.714267] systemd[1]: Starting Setup Virtual Console...
    [ 7.730815] systemd[1]: Starting udev Kernel Socket.
    [ 7.730835] systemd[1]: Listening on udev Kernel Socket.
    [ 7.730869] systemd[1]: Starting udev Control Socket.
    [ 7.730884] systemd[1]: Listening on udev Control Socket.
    [ 7.730912] systemd[1]: Starting udev Coldplug all Devices...
    [ 7.747426] systemd[1]: Starting udev Kernel Device Manager...
    [ 7.770676] systemd[1]: Mounting Huge Pages File System...
    [ 7.787329] systemd[1]: Starting Swap.
    [ 7.787341] systemd[1]: Reached target Swap.
    [ 7.787360] systemd[1]: Started File System Check on Root Device.
    [ 7.787366] systemd[1]: Mounting Temporary Directory...
    [ 7.810621] systemd[1]: Starting Remount Root and Kernel File Systems...
    [ 7.817216] systemd[1]: Expecting device dev-disk-by\x2duuid-e2db39e9\x2d056c\x2d44ed\x2d8d42\x2d1b027e4a0d24.device...
    [ 8.023502] EXT4-fs (sda1): re-mounted. Opts: (null)
    [ 8.045846] systemd-udevd[121]: starting version 201
    [ 8.151804] loop: module loaded
    [ 8.186713] vboxdrv: Found 4 processor cores.
    [ 8.186976] vboxdrv: fAsync=0 offMin=0x216 offMax=0x9aea
    [ 8.187033] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
    [ 8.187034] vboxdrv: Successfully loaded version 4.2.12_OSE (interface 0x001a0004).
    [ 8.716904] ACPI: Requesting acpi_cpufreq
    [ 8.728317] input: PC Speaker as /devices/platform/pcspkr/input/input8
    [ 8.767237] microcode: CPU0 sig=0x306a9, pf=0x2, revision=0xa
    [ 8.853130] thermal LNXTHERM:00: registered as thermal_zone0
    [ 8.853132] ACPI: Thermal Zone [THRM] (37 C)
    [ 8.929755] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt
    [ 9.026224] mei 0000:00:16.0: setting latency timer to 64
    [ 9.026302] mei 0000:00:16.0: irq 40 for MSI/MSI-X
    [ 9.032384] parport_pc 00:03: reported by Plug and Play ACPI
    [ 9.032430] parport0: PC-style at 0x378, irq 5 [PCSPP,TRISTATE]
    [ 9.167592] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
    [ 9.167844] r8169 0000:02:00.0: irq 41 for MSI/MSI-X
    [ 9.167971] r8169 0000:02:00.0 eth0: RTL8168evl/8111evl at 0xffffc90005c22000, b8:97:5a:0a:fc:9e, XID 0c900800 IRQ 41
    [ 9.167973] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
    [ 9.345693] microcode: CPU1 sig=0x306a9, pf=0x2, revision=0xa
    [ 9.386088] ppdev: user-space parallel port driver
    [ 9.386810] microcode: CPU2 sig=0x306a9, pf=0x2, revision=0xa
    [ 9.387792] microcode: CPU3 sig=0x306a9, pf=0x2, revision=0xa
    [ 9.388032] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 9.469096] media: Linux media interface: v0.10
    [ 9.476345] Linux video capture interface: v2.00
    [ 9.497387] uvcvideo: Found UVC 1.00 device <unnamed> (046d:081b)
    [ 9.510837] input: UVC Camera (046d:081b) as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/input/input9
    [ 9.510906] usbcore: registered new interface driver uvcvideo
    [ 9.510907] USB Video Class driver (1.1.1)
    [ 9.529106] iTCO_vendor_support: vendor-support=0
    [ 9.537373] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 9.537428] iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
    [ 9.537524] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 9.544558] gpio_ich: GPIO from 180 to 255 on gpio_ich
    [ 9.607707] snd_hda_intel 0000:00:1b.0: irq 42 for MSI/MSI-X
    [ 9.626188] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 9.626255] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
    [ 9.626287] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
    [ 9.626319] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
    [ 9.626349] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
    [ 10.336472] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 10.732413] 4:3:1: cannot set freq 16000 to ep 0x86
    [ 10.881026] usbcore: registered new interface driver snd-usb-audio
    [ 10.903764] r8169 0000:02:00.0 eth0: link down
    [ 10.903796] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [ 10.903806] r8169 0000:02:00.0 eth0: link down
    [ 11.696715] systemd-logind[297]: Watching system buttons on /dev/input/event1 (Power Button)
    [ 11.696774] systemd-logind[297]: Watching system buttons on /dev/input/event0 (Power Button)
    [ 12.498819] r8169 0000:02:00.0 eth0: link up
    [ 12.498826] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    [ 19.281485] FS-Cache: Loaded
    [ 19.295688] FS-Cache: Netfs 'cifs' registered for caching
    [ 19.295798] Key type cifs.spnego registered
    [ 19.295811] Key type cifs.idmap registered
    [ 74.361879] mtrr: no MTRR for d0000000,3ff0000 found
    With modesetting disabled I no longer see " [drm:i915_driver_load] *ERROR* failed to init modeset", but get a new error that the agpgart module cannot be initialized:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.8.7-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.0 20130411 (prerelease) (GCC) ) #1 SMP PREEMPT Sat Apr 13 09:01:47 CEST 2013
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=b10de096-a448-4f73-b737-8a93cda3da03 ro quiet nomodeset
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ebff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000040200000-0x00000000bad8bfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bad8c000-0x00000000badd5fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000badd6000-0x00000000badddfff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000badde000-0x00000000baddefff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000baddf000-0x00000000bae00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bae01000-0x00000000bae01fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bae02000-0x00000000bae11fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bae12000-0x00000000bae1ffff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bae20000-0x00000000bae44fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bae45000-0x00000000bae87fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bae88000-0x00000000baffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bb800000-0x00000000bf9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000d0000000-0x00000000e00fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fc000000-0x00000000fe407fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fe800000-0x00000000fe9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000fed03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed44fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed90000-0x00000000fed93fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000043fdfffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: BIOSTAR Group H61MGC/H61MGC, BIOS 4.6.4 01/19/2012
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x43fe00 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask C00000000 write-back
    [ 0.000000] 1 base 400000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0BB800000 mask FFF800000 uncachable
    [ 0.000000] 3 base 0BC000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 0C0000000 mask FC0000000 uncachable
    [ 0.000000] 5 base 43FE00000 mask FFFE00000 uncachable
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xbb800000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xbae02 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fcd80-0x000fcd8f] mapped at [ffff8800000fcd80]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0xbae01fff]
    [ 0.000000] [mem 0x00000000-0xbadfffff] page 2M
    [ 0.000000] [mem 0xbae00000-0xbae01fff] page 4k
    [ 0.000000] kernel direct mapping tables up to 0xbae01fff @ [mem 0x1fffb000-0x1fffffff]
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x43fdfffff]
    [ 0.000000] [mem 0x100000000-0x43fdfffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0x43fdfffff @ [mem 0xbad7e000-0xbad8bfff]
    [ 0.000000] RAMDISK: [mem 0x37982000-0x37cb8fff]
    [ 0.000000] ACPI: RSDP 00000000000f0450 00024 (v02 ALASKA)
    [ 0.000000] ACPI: XSDT 00000000badd6068 00054 (v01 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: FACP 00000000baddcfe0 000F4 (v04 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: DSDT 00000000badd6150 06E89 (v02 ALASKA A M I 00000014 INTL 20051117)
    [ 0.000000] ACPI: FACS 00000000bae17f80 00040
    [ 0.000000] ACPI: APIC 00000000baddd0d8 00072 (v03 ALASKA A M I 01072009 AMI 00010013)
    [ 0.000000] ACPI: SSDT 00000000baddd150 00102 (v01 AMICPU PROC 00000001 MSFT 03000001)
    [ 0.000000] ACPI: MCFG 00000000baddd258 0003C (v01 ALASKA A M I 01072009 MSFT 00000097)
    [ 0.000000] ACPI: HPET 00000000baddd298 00038 (v01 ALASKA A M I 01072009 AMI. 00000004)
    [ 0.000000] ACPI: ASPT 00000000baddd2d0 00034 (v07 ALASKA PerfTune 01072009 AMI 00000000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000043fdfffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x43fdfffff]
    [ 0.000000] NODE_DATA [mem 0x43fdfb000-0x43fdfffff]
    [ 0.000000] [ffffea0000000000-ffffea0010ffffff] PMD -> [ffff88042f400000-ffff88043f3fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x43fdfffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009dfff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x3fffffff]
    [ 0.000000] node 0: [mem 0x40200000-0xbad8bfff]
    [ 0.000000] node 0: [mem 0xbae01000-0xbae01fff]
    [ 0.000000] node 0: [mem 0x100000000-0x43fdfffff]
    [ 0.000000] On node 0 totalpages: 4171547
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 6 pages reserved
    [ 0.000000] DMA zone: 3912 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 11879 pages used for memmap
    [ 0.000000] DMA32 zone: 748326 pages, LIFO batch:31
    [ 0.000000] Normal zone: 53240 pages used for memmap
    [ 0.000000] Normal zone: 3354120 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 000000000009f000
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
    [ 0.000000] PM: Registered nosave memory: 0000000040000000 - 0000000040200000
    [ 0.000000] PM: Registered nosave memory: 00000000bad8c000 - 00000000badd6000
    [ 0.000000] PM: Registered nosave memory: 00000000badd6000 - 00000000badde000
    [ 0.000000] PM: Registered nosave memory: 00000000badde000 - 00000000baddf000
    [ 0.000000] PM: Registered nosave memory: 00000000baddf000 - 00000000bae01000
    [ 0.000000] PM: Registered nosave memory: 00000000bae02000 - 00000000bae12000
    [ 0.000000] PM: Registered nosave memory: 00000000bae12000 - 00000000bae20000
    [ 0.000000] PM: Registered nosave memory: 00000000bae20000 - 00000000bae45000
    [ 0.000000] PM: Registered nosave memory: 00000000bae45000 - 00000000bae88000
    [ 0.000000] PM: Registered nosave memory: 00000000bae88000 - 00000000bb000000
    [ 0.000000] PM: Registered nosave memory: 00000000bb000000 - 00000000bb800000
    [ 0.000000] PM: Registered nosave memory: 00000000bb800000 - 00000000bfa00000
    [ 0.000000] PM: Registered nosave memory: 00000000bfa00000 - 00000000d0000000
    [ 0.000000] PM: Registered nosave memory: 00000000d0000000 - 00000000e0100000
    [ 0.000000] PM: Registered nosave memory: 00000000e0100000 - 00000000f0000000
    [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
    [ 0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000fc000000
    [ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fe408000
    [ 0.000000] PM: Registered nosave memory: 00000000fe408000 - 00000000fe800000
    [ 0.000000] PM: Registered nosave memory: 00000000fe800000 - 00000000fea00000
    [ 0.000000] PM: Registered nosave memory: 00000000fea00000 - 00000000feb00000
    [ 0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000fed04000
    [ 0.000000] PM: Registered nosave memory: 00000000fed04000 - 00000000fed08000
    [ 0.000000] PM: Registered nosave memory: 00000000fed08000 - 00000000fed09000
    [ 0.000000] PM: Registered nosave memory: 00000000fed09000 - 00000000fed10000
    [ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed45000
    [ 0.000000] PM: Registered nosave memory: 00000000fed45000 - 00000000fed90000
    [ 0.000000] PM: Registered nosave memory: 00000000fed90000 - 00000000fed94000
    [ 0.000000] PM: Registered nosave memory: 00000000fed94000 - 00000000fee00000
    [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fef00000
    [ 0.000000] PM: Registered nosave memory: 00000000fef00000 - 00000000ff000000
    [ 0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
    [ 0.000000] e820: [mem 0xbfa00000-0xcfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88043fa00000 s85184 r8192 d21312 u524288
    [ 0.000000] pcpu-alloc: s85184 r8192 d21312 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4106358
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=b10de096-a448-4f73-b737-8a93cda3da03 ro quiet nomodeset
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 16342728k/17823744k available (4908k kernel code, 1137556k absent, 343460k reserved, 4024k data, 820k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
    [ 0.000000] NR_IRQS:4352 nr_irqs:712 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 67108864 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 3392.360 MHz processor
    [ 0.000001] Calibrating delay loop (skipped), value calculated using timer frequency.. 6787.41 BogoMIPS (lpj=11307866)
    [ 0.000003] pid_max: default: 32768 minimum: 301
    [ 0.000022] Security Framework initialized
    [ 0.000027] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000670] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [ 0.003579] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.004861] Mount-cache hash table entries: 256
    [ 0.004978] Initializing cgroup subsys cpuacct
    [ 0.004980] Initializing cgroup subsys memory
    [ 0.004985] Initializing cgroup subsys devices
    [ 0.004986] Initializing cgroup subsys freezer
    [ 0.004987] Initializing cgroup subsys net_cls
    [ 0.004988] Initializing cgroup subsys blkio
    [ 0.005004] CPU: Physical Processor ID: 0
    [ 0.005005] CPU: Processor Core ID: 0
    [ 0.005009] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.005270] mce: CPU supports 9 MCE banks
    [ 0.005280] CPU0: Thermal monitoring enabled (TM1)
    [ 0.005287] process: using mwait in idle threads
    [ 0.005289] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 1
    [ 0.005412] Freeing SMP alternatives: 20k freed
    [ 0.006082] ACPI: Core revision 20121018
    [ 0.007828] ftrace: allocating 19310 entries in 76 pages
    [ 0.014664] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.047574] smpboot: CPU0: Intel(R) Core(TM) i5-3570K CPU @ 3.40GHz (fam: 06, model: 3a, stepping: 09)
    [ 0.047580] TSC deadline timer enabled
    [ 0.047582] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, Intel PMU driver.
    [ 0.047586] ... version: 3
    [ 0.047586] ... bit width: 48
    [ 0.047587] ... generic registers: 8
    [ 0.047588] ... value mask: 0000ffffffffffff
    [ 0.047588] ... max period: 000000007fffffff
    [ 0.047589] ... fixed-purpose events: 3
    [ 0.047590] ... event mask: 00000007000000ff
    [ 0.087678] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.074249] smpboot: Booting Node 0, Processors #1 #2 #3 OK
    [ 0.128013] Brought up 4 CPUs
    [ 0.128016] smpboot: Total of 4 processors activated (27149.66 BogoMIPS)
    [ 0.130345] devtmpfs: initialized
    [ 0.131553] PM: Registering ACPI NVS region [mem 0xbad8c000-0xbadd5fff] (303104 bytes)
    [ 0.131558] PM: Registering ACPI NVS region [mem 0xbadde000-0xbaddefff] (4096 bytes)
    [ 0.131559] PM: Registering ACPI NVS region [mem 0xbae12000-0xbae1ffff] (57344 bytes)
    [ 0.131560] PM: Registering ACPI NVS region [mem 0xbae45000-0xbae87fff] (274432 bytes)
    [ 0.132024] RTC time: 13:15:37, date: 04/21/13
    [ 0.132050] NET: Registered protocol family 16
    [ 0.132136] ACPI: bus type pci registered
    [ 0.132173] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
    [ 0.132175] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
    [ 0.137361] PCI: Using configuration type 1 for base access
    [ 0.137775] bio: create slab <bio-0> at 0
    [ 0.137809] ACPI: Added _OSI(Module Device)
    [ 0.137810] ACPI: Added _OSI(Processor Device)
    [ 0.137811] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.137811] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.138385] ACPI: EC: Look up EC in DSDT
    [ 0.139103] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.140495] ACPI: SSDT 00000000bae16c18 0038C (v01 AMI IST 00000001 MSFT 03000001)
    [ 0.140660] ACPI: Dynamic OEM Table Load:
    [ 0.140662]

    Meanwhile, I encountered it seems to be a problem of the gdm in conjunction with the gpu and the intel driver - once again :-(
    Look at this thread: https://bbs.archlinux.org/viewtopic.php?id=161964
    Actually, I can start my DE (Gnome 3.8) manually with the following workaround:
    First, I disable gdm on my machine
    # systemctl disable gdm
    After bootin the machine, I'm logging in into the console
    $ startx
    stopping the X system again
    $ sudo systemctl start gdm
    logging in into the Gnome Shell.
    I need to start the X server first manually. Otherwise the gdm will hang again.
    Last edited by thesofty (2013-04-24 21:12:10)

  • I'm having a hard time setting up my external hard from with my AirPort Extreme and Time Machine Backups.

    I have been using a Mac Mini with an external hard and Time Machine.  I bought an Airport Extreme and have had problem setting up the hard drive using the USB port on the Airport Extreme.  I also just recently bought a Mac Book Air and hope to have both computers back up to the external hard drive using Time Machine and Airport Extreme.  I have been using the optical drive from the Mac mini to load programs into the Mac Book Air.  I think I'm just getting confused in Finder.  I am just not seeing the hard drive.  I ended up plugging the hard drive back into the Mac Mini and that is work fine again.  How do I setting the external hard drive up to the AirPort Extreme and use for both computers?  Or at least to start with the Mac mini.

    It's critical to understand that Time Machine (TM) stores backups differently between local and network drives. That would mean the TM backup on your locally attached USB hard drive will not be directly useable when it is connected to the AirPort Extreme Base Station (AEBS). There is a way to copy a local version to a network version, but it is not fool-proof. When you do connect this drive and point TM to it, TM will start a brand new backup, leaving your existing backup as is.
    If your current backup is critical to you, you may want to consider getting a second USB drive to attach to the Extreme and use your existing one as a backup ... or use TM's multi-backup process to backup to more than one destination drive alternatively.
    So, at this point, you may want to make a decision on how you want to go forward to help provide a solution for you.
    To directly answer your question, when you go to select a destination for a Time Machine backup, the drive(s) that show up under "Backup Disks" are those that TM already recognizes and has backed up to. Those listed under "Available Disks" are drives (either local or on the network) that TM can back up to.

  • HD needs repair but only get a looping Restart with a Leopard DVD and USBHD

    Ok here are my specs
    Model Name: MacBook
    Model Identifier: MacBook5,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.4 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 3 MB
    Memory: 2 GB
    Bus Speed: 1.07 GHz
    Boot ROM Version: MB51.0073.B06
    SMC Version (system): 1.32f8
    Ok so here is a quick a dirty break down.
    Computer has been acting Programs freezing and CPU slowing down.
    I ran Verify Disk in Disk Utilities and it said I need to repair Disk.
    After a day of head aches I am finally asking for help.
    So here is the problem on my old powerbook pro I could just load in Target Mode and repair with tech tool or disk warrior but alas my macbook has no firewire.
    So just incase of emergancy's I have a thumbdrive with a live 10.5.3 and all my disk utilities. I've used it on my wifes older Intel Macbook Pro 17" and it works fine.
    Today though when i restart hold down the option key "alt" and select the drive my macbook restarts acts like its going to load and the restarts again. This restart loop will go on as long as I let it.
    Ok so usb drives can be problematic. Surely starting to the OS X Retail DVD with 10.5.4 and running disk utilities will work. Nope still get the endless restart loop when I've loaded the install dvd and restart with command "c" as well I get the same response if I select it after holding the option key.
    Now my hard drive won't even start up either unless I boot in single user mode.
    I am lost.
    HELP Please.

    Have you tried booting into safeboot (safemode)? You may want to try resetting your PRAM and or SMC. Another thing you might try is to plug the thumbdrive in the other USB port.
    If you could get an external USB drive with osx on it you could try booting from it.
    Apple sure did screw up not putting firewire on that Macbook, my wife has one and I just can't get over it. Sure can make it hard to troubleshoot.

  • I have a macbook 4.1 with osx10.6.8 and just added memory (2gig) so I could sync my new Ipome and Ipad.  and Ipad. Now I'm told I need to upgrade my operating system. The apple store gave me conflicting instructions. Any suggestions? Thanks

    I have a macbook 4.1 with osx10.6.8 and just added memory (2gig) so I could sync my new IPhone and Ipad. Now I'm told at the apple store that I need to upgrade my operationg system. They said they couldn't help and gave me conflicting advice about what to do. Any ideas? Thanks you!

    There are three models of MacBook that comprise the 'macbook 4.1' category, and each of them a little different; however other than 'macbook 4.1' the other thing they have in common is they all are considered Early 2008. Two are white, one black, polycarbonate case, Core2Duo 2.1GHz, 2.4GHz white, 2.4GHz black.
    So if you can determine which one, if any of these, is the model build year and spec you have, that would be handy. Did you tell whoever you spoke to the serial number of your computer, so they'd know by looking up the specs to see what the supported maximum RAM upgrade capacity was, and other minimum requirements to make any upgrade to Mac OS X 10.6.8 at all?
    If you have the serial number you can do a lookup to 'indentify by serial number' online, and use that information to determine if the computer needs even more RAM to take it past the minimum for Snow Leopard 10.6.8 and then get it ready to upgrade (via paid download from App Store, Snow Leopard gets you that far) and see what the next supported OS X full upgrade would be for the hardware limitations on that old MacBook.
    If your MacBook IS a 4.1 build, the highest OS X it could run if it has the 2.4GHz cpu, is Lion 10.7.5. That would be an upgrade from the App store, available to OS X 10.6.8+ computers that access it online. And I kind of doubt how supported a newest iphone etc may be in lion.
    everymac.com has a fair amount of information across many years of Apple computing hardware...
    Here's the three MacBooks that share the 4.1 designation; first shipped with as much as 1GB RAM upgrade and the other two only a 2GB RAM*, (one white/one black color) according to this information...
    • MacBook "Core 2 Duo" 2.1 13" (White-08) 2.1 GHz Core 2 Duo (T8100)   
    • MacBook "Core 2 Duo" 2.4 13" (White-08) 2.4 GHz Core 2 Duo (T8300)  
    • MacBook "Core 2 Duo" 2.4 13" (Black-08) 2.4 GHz Core 2 Duo (T8300)
    ...as seen here: http://www.everymac.com/systems/apple/macbook/index-macbook.html
    *But according to MacTracker (free: download database) http://mactracker.ca
    these MacBooks can use more RAM in aftermarket specs as much as:
    Maximum Memory
    6.0 GB (Actual) 4.0 GB (Apple)
    Memory Slots
    2 - 200-pin PC2-5300 (667MHz) DDR2 SO-DIMM
    To get more information use a service such as this...
    •identify by serial number:
    http://www.powerbookmedic.com/identify-mac-serial.php
    The Apple? store or whoever you talked, to may have been as accurate as they could be without further research. Could be you may have a newer or older MacBook, which would change whatever later OS X it could run past 10.6.8. And to go past Snow Leopard, you need to download the last bits for 10.6.x to be able to go and get any later upgrade. The ones that may let a newest iphone or ipad work with it, are past SL10.6.8
    Anyway, as you further verify the model build year and configuration specifications, report back.
    Good luck & happy computing!

  • I downloaded a new version of firefox. It said it had problems with my norton toolbar and now it doesn't feature it in the window. I'm not that comp savvy. How do I either get the Norton toolbar up or go back to the old firefox? Thank you.

    I downloaded a new version of firefox. It said it had problems with my norton toolbar and now it doesn't feature it in the window. I'm not that comp savvy. How do I either get the Norton toolbar up or go back to the old firefox? Thank you.

    Please authorize ADE 3 with same credentials that you used with older version of ADE

  • I  used to have an OLD Photoshop cd but it has been lost and my program is no longer on cd. I talked with some photographer friends and this is what one of them told me to get: Adobe Photoshop Lightroom and CS CC... HELP please?

    I  used to have an OLD Photoshop cd but it has been lost and my program is no longer on cd. I talked with some photographer friends and this is what one of them told me to get: Adobe Photoshop Lightroom and CS CC... HELP please?

    If you still have your serial number, look at OLDER previous versions http://www.adobe.com/downloads/other-downloads.html
    Otherwise, the US$ 9.99 plan is what is current at Cloud Plans https://creative.adobe.com/plans

  • OEPE 12.1.2.1 with Eclipse (Kepler) M2E and M2E-WTP and Seam 2 problem

    I've a JEE project with Maven 3.0.5  and JBoss Seam 2.3. I've some problems in Weblogic 12.1.2 application deployments with Eclipse.
    If I deploy the application as virtual application (split_src and .beabuild.txt), the .beabuild.txt includes the directories:
    C\:/FundeWeb/2.0/workspace/fundeweb2/web/target/m2e-wtp/web-resources = web_fundeweb2  (m2e-wtp project generated resources)
    C\:/FundeWeb/2.0/workspace/fundeweb2/web/src/main/webapp = web_fundeweb2 (project web resources)
    That's produces the next error (Multiple WEB-INF/ejb-jar.xml found):
    <01-ago-2013 14H07' CEST> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID "1375358874432" for task "1". Error is: "weblogic.application.ModuleException: Multiple WEB-INF/ejb-jar.xml found. [weblogic.servlet.internal.WarSource@19d4f67, weblogic.servlet.internal.WarSource@c7fd40]"
    weblogic.application.ModuleException: Multiple WEB-INF/ejb-jar.xml found. [weblogic.servlet.internal.WarSource@19d4f67, weblogic.servlet.internal.WarSource@c7fd40]
      at weblogic.ejb.container.deployer.EjbModuleExtensionFactory.create(EjbModuleExtensionFactory.java:26)
      at weblogic.application.internal.ExtensibleModuleWrapper.createModuleExtensions(ExtensibleModuleWrapper.java:264)
      at weblogic.application.internal.ExtensibleModuleWrapper.initDrivenObjectArray(ExtensibleModuleWrapper.java:232)
      at weblogic.application.internal.ExtensibleModuleWrapper.prepare(ExtensibleModuleWrapper.java:107)
      at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:100)
      Truncated. see log file for complete stacktrace
    If I deploy the aplication in Weblogic Console with the split_src, with only the web/target/m2e-wtp/web-resources, the applications deploy succesfully.
    If I deploy de application as exploded archive, the jboss-seam.jar file isn't included in the WEB-INF/lib folder. The others jboss-seam-xxxx.jar files are included.
    In the virtual application deployments, I think that the OEPE integration with M2E and M2E-WTP, there are include only the m2e-wtp folders.

    Hi Subash,
    I tried the same installer on a 32bit machine and was able to run without any issues.
    I did however come across a few users jdeveloper users who had similar issues with the jdev installer and the following workaround seems to have solved the issue for them. coudl you try the same and let us know if that helped ?
    1. Extract "oepe-12.1.2.1-kepler-installer-win32.exe" file into C:\oepe-12.1.2.1-kepler-installer-win32
    2. In cmd go to C:\oepe-12.1.2.1-kepler-installer-win32
    3. Execute follow command:
       C:\PROGRA~1\Java\jdk1.6.0_31\bin\java.exe ( path to your JDK)  -jar install/modules/ora-launcher.jar DISKCNT=1 JRE_COMPONENT=oracle.jdk,oracle.jre
    thanks
    Raj

Maybe you are looking for

  • How can I convert ACR_Calibrator.jsx script to a plug-in?

    Hi, I am tired of debugging one of the ACR_Calibrators available - nothing is wrong with it I just want to extend it and the tools for that in javascript are terrible and very slow. I thought maybe I could move the logic I am interested in into C or

  • Clarification on SharePoint Online and SQL Server

    I have several subsites on a SharePoint 2013 server that uses external content types and the Business Data Connectivity Service to access tables in a SQL Server database. I used the Sharepoint 2013 Designer to configure most of this, but at times, I

  • How do I get the new iPod to work with iTunes

    I recently purchased a new iPod--I think it's the "Shuffle," whichever one retails for $150. When I plugged it into my iMac, it said I needed to install iTunes 10 to run it. When I checked for updates, it said that iTunes 9.xyz (whatever came after t

  • Spell check functionality in OA Framework

    In the absence of spell check functionality for OA applications, is there any workaround or custom code to have a spell check functionality in OA framework. The customer does not want to use the Google spellcheker or JSpell.

  • Mixer brush keyboard shortcuts not working

    According to Adobe, I should be able to change the Wet  value by holding down Alt+Shift and using the numeric keyboard, and should be able to change the Flow value by holding down Shift and using the numeric keyboard. Neither of these keyboard shortc