Dirty block?

Hi!
I have read in the documentation that dirty buffer block are those blocks that have some changed data. I also read some lines as follows...
"Oracle write dirty buffer blocks to the datafiles and closes the datafile."(in the context of taking a tablespace offline NORMAL mode).
i would just like to confirm if my understanding is right that at this point something similar to "auto commit" is performed and the changes commited to the database.
am I right?? I am confused!
Thanks

Reason 1 :its not that u see with ur naked Eyes
to be simple ...when u load the data its dirty l and whn u calculate the same data its clean thats all
When Intelligent Calculation is enabled, Essbase calculates only dirty blocks and their dependent
parents. When disabled, Essbase calculates all data blocks, regardless of whether they are marked
as clean or dirty.
To be much more specific:
Marking Blocks As Clean
Essbase marks data blocks as clean in these types of calculations:
● A full calculation (CALC ALL) of a database (the default calculation).
● A calculation script that calculates all the dimensions in one CALC DIM statement.
For example, the following calculation script calculates all members in the Sample Basic
database:
CALC DIM(Measures, Product, Market, Year, Scenario);
Compare this calculation script to a calculation script that calculates all the members with
two CALC DIM statements:
Marking Blocks as Dirty
Essbase marks a data block as dirty in the following situations:
● Calculating the data block for a partial calculation of the database only if SET
CLEARUPDATESTATUS AFTER is not part of the partial calculation statement in the
calculation script
● Loading data into the data block
● Restructuring the database (for example, by adding a member to a dense dimension)
● Copying data to the data block; for example, using DATACOPY
Reason 2 : I may be making assumptions here, but are you asking how to find out if a cube has dirty blocks? If that is the case there are two ways that I know of
1) Log into the cube through the excel add-in, go to "Calculation..." and under "Database State" it will say something like "Data values have been changed since the last calculation"
2) Using the VB API (could be in the other apis too) run the "EsbGetDatabaseInfo" function, then check the "Data" value in the ESB_DBINFO_T structure. if it is not ESB_DBDATA_CLEAN then the data has dirty blocks in it.
Actully it has been discussed earlier this week so ....

Similar Messages

  • Dirty Blocks

    Hi everybody,
    What are dirty blocks and I've read somewhere that Database Buffer Cache will send
    file id,block id,pattern to Redo's why it will send.
    Cheers,
    Sailesh

    http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/memory.htm#sthref1271

  • Counts dirty blocks

    Hi, here is my question: how can I know how many blocks dirty are present in my database? Thanx, Marina.

    http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/memory.htm#sthref1271

  • How to count the number of dirty and clean block

    i want to count the number of dirty and clean block.
    because i want to know which datablock is updated.

    I dont think it is possible to count the no. of dirty and clean blocks. But we can understand the implications of intelligent calculation by understanding when the blocks are marked dirty and clean.
    Here are few cases.
    There are four definable circumstances under which datablocks are marked dirty, thereby making them eligible for calculation on the next round using intelligent calc.
    1. Input Data: Any block created from a data load or lock & send is automatically marked dirty when created.
    2. Modified Data: Any block for whom a data cell has been modified is marked dirty and therefore eligible for calculation using intelligent calc on the next calculation round.
    3. Ancestors Of Condition 1 & 2
    4. Restructure The Database: Blocks changes as a result of outline changes potentially become dirty.
    There are three definable circumstances under which Intelligent Calc operates, thereby marking blocks clean.
    1. Calc Dim On All Dimensions: When you execute a calc script which contains a CALC ALL statement or CALC DIM statement whose arguments include all dimensions.
    2. Set ClearUpdateStatus After: SET CLEARUPDATESTATUS AFTER is a calc script command that will engage Intelligent Calc for any calc script regardless of construction.You typically use this command where you cannot meet the conditions in 1 above for a Calc Dim on all dimensions.
    3. Set ClearUpdateStatus Only: SET CLEARUPDATESTATUS ONLY is a calc script command that does not calculate. When included in a calc script, this command only
    marks dirty blocks clean. That's all.

  • Query regarding delayed block cleanout

    Hi,
    I have a question regarding delayed block clean-out in Oracle.
    I have read below from meta link note: 40689.1
    Consider a transaction that updates a million row table. This obviously visits a large number of database blocks to make the change to the data.
    When the user commits the transaction Oracle does NOT go back and revisit these blocks to make the change permanent. It is left for the next
    transaction that visits any block affected by the update to 'tidy up' the block (hence the term 'delayed block clean out').
    But the rollback segment transaction table slot can be recycled once it is marked as committed.
    So if any new transaction tries to visit a block affected by last update and figures out this block is changed and goes to corresponding rollback segment transaction table slot, but that that rollback segment transaction table slot is recycled because of commit.
    So how Oracle will handle this situation?
    Thanks in advance.

    What makes you think that the changed data will be in rollback segment? Rollback segement contains the previous image of data. According to my understanding this should be in the Redo logs.
    So if any new transaction tries to visit a block affected by last update and figures out this block is changed and goes to corresponding rollback segment transaction table slot, but that that rollback segment transaction table slot is recycled because of commit.
    This should go to the Redo & DBWR process should write all the dirty blocks to disc consequently.
    Regards,

  • How to discard blocks from memory ?

    Hi,
    How to discard blocks from memory ?
    Thank you.

    To add to what has already been posted. The full Oracle version should be included on all posts since many features and most bugs are version dependend.
    Oracle will flush dirty blocks from the buffer cache and overlay unchanged blocks as needed to fit new requests to the buffer cache. It also reuses space in the shared pool so the question of which blocks you want to flush from memory and why can be important to getting the most appropriate answer to your questions.
    On a production instance it should be unnecessary to manually flush either the buffer cache or shared pool as a normal part of opertations.
    HTH -- Mark D Powell --

  • Dbwr and writing undo data block

    hi guys,
    If dbwr was to write a dirty block to disk, would it also have to write the dirty uno data block that contains the before value of our database block to disk too?
    Thanks

    OracleGuy777 wrote:
    hi guys,
    If dbwr was to write a dirty block to disk, would it also have to write the dirty uno data block that contains the before value of our database block to disk too?
    The first thing to remember is that recovery depends on the REDO, not the UNDO, so technilcally it doesn't matter whether dbwr manages to write neither, one, or both of the two blocks to disc to avoid any problems with crash recovery. This should give you a clue that dbwr doesn't HAVE to write the undo block at the same time as the data block.
    In practice, it is possible that both blocks will be written virtually simultaneously because the two blocks will have been modified at the same instant and therefore could be written during the same 3-second timeout write (continuous checkpoint). It is also possible, though, for the undo block to be written some time before the data block, or some time after the data block - it all depends on what activity has been going at about the same time.
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk
    To post code, statspack/AWR report, execution plans or trace files, start and end the section with the tag {noformat}{noformat} (lowercase, curly brackets, no spaces) so that the text appears in fixed format.
    "Science is more than a body of knowledge; it is a way of thinking"
    Carl Sagan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Relationship between size of block and intelligent calc?

    <p>hi</p><p>i am going through DBAG. it is written that  "Ifdatablocks are much larger than 100Kb, Intelligent Calc doesn'twork effectively".</p><ul><li>what is the relationship between size of datablock andintelligent calc....the intelligent calc is something related tothe dirty blocks...i mean if we set intelligent calc on..itcalculates only the dirty block</li></ul><p>please help</p><p> </p><p>thanks and regards,</p><p>Balu</p><p> </p><p> </p>

    Maybe BD was supposed to read DB.
    "...how many IOPS a DB is going to consume."?
    You need to look at a specific database application to begin with. (A database in itself does not consume much of anything.)
    Then, what exactly are you trying to figure out and why?

  • Moving a 32 bit Oracle 9i database to 64 bit on a different server

    Hello,
    We have a 24 GB database with Oracle 9.2.0.7 (32 bit). As the hardware of this server is getting obsolete, it is planned to move this instance to another server, which has 64 bit Oracle software of same version (9.2.0.7). In this scenario what is the best way to move the instance?
    Is it only the full export from 32 bit server and import into 64 bit server(after creating the instance there)?
    Since this is a 24 GB database, and target server is 8 gb of ram, any pointers on how long the import process can take?
    There is a documentation to change word size, I can run utlirp.sql as suggested here:
    http://www.orafaq.com/forum/?t=rview&goto=258668#msg_258668
    But I have some doubts as I mentioned in that post. Can you please share your suggestions?
    Thanks,
    Nirav

    Hi
    Is there some document or steps to follow when creating the instance on the new server The database move is easy, and here is one way to move the schema, fast:
    http://www.dba-oracle.com/oracle_tips_db_copy.htm
    And then, you just run the script to change the wordsize for 64-bit:
    Also, after your migration, watch out for common performance issues:
    http://www.dba-oracle.com/t_bad_poor_performance_upgrade_migration_32_64_bit.htm
    Also, note that Oracle has changed the optimizer costing model from "IO" to CPU" in 10g, and shops that combine an upgrade to 64-bit servers with a 10g migration may want to look at changing the new default for _optimizer_cost_model.
    Going 64-bit means that you can now allocate very large RAM data buffers and increase your shared_pool_size above two gigabytes. However, it is important to remember that there are downsides to having a super-large db_cache_size. While direct access to data is done with hashing, there are times when the database must examine all of the blocks in the RAM cache. These types of database may not always benefit from an upgrade to a 64 bit server:
    Systems with high Invalidations: Whenever a program issues a truncated table, uses temporary tables, or runs a large data purge, Oracle must sweep all of the blocks in the db_cache_size to remove dirty blocks. This can cause excessive overhead for system with a db_cache_size greater than 10 gigabytes.
    High Update Systems: The database writer (DBWR) process must sweep all of the blocks in db_cache_size when performing an asynchronous write. Having a huge db_cache_size can cause excessive work for the database writer. Some shops dedicate a separate, smaller data buffer (of a different blocksize) for high-update objects.
    RAC systems: Oracle RAC and Grid does not perform optimally with super-large data buffer RAM, as available in 64-bit systems. You may experience high cross-instance calls when using a large db_cache_size in multiple RAC instances. This inter-instance "pinging" can cause excessive overhead, and that is why RAC DBA's try to segregate RAC instances to access specific areas of the database. This is why Oracle 10g grid server blades generally contain only 4-gig RAM.
    Hope this helps. . .
    Don Burleson
    Oracle Press author
    Author of “Oracle Tuning: The Definitive Reference”
    http://www.dba-oracle.com/bp/s_oracle_tuning_book.htm

  • SAP GoLive : File System Response Times and Online Redologs design

    Hello,
    A SAP Going Live Verification session has just been performed on our SAP Production environnement.
    SAP ECC6
    Oracle 10.2.0.2
    Solaris 10
    As usual, we received database configuration instructions, but I'm a little bit skeptical about two of them :
    1/
    We have been told that our file system read response times "do not meet the standard requirements"
    The following datafile has ben considered having a too high average read time per block.
    File name -Blocks read  -  Avg. read time (ms)  -Total read time per datafile (ms)
    /oracle/PMA/sapdata5/sr3700_10/sr3700.data10          67534                         23                               1553282
    I'm surprised that an average read time of 23ms is considered a high value. What are exactly those "standard requirements" ?
    2/
    We have been asked  to increase the size of the online redo logs which are already quite large (54Mb).
    Actually we have BW loading that generates "Chekpoint not comlete" message every night.
    I've read in sap note 79341 that :
    "The disadvantage of big redo log files is the lower checkpoint frequency and the longer time Oracle needs for an instance recovery."
    Frankly, I have problems undertanding this sentence.
    Frequent checkpoints means more redo log file switches, means more archive redo log files generated. right ?
    But how is it that frequent chekpoints should decrease the time necessary for recovery ?
    Thank you.
    Any useful help would be appreciated.

    Hello
    >> I'm surprised that an average read time of 23ms is considered a high value. What are exactly those "standard requirements" ?
    The recommended ("standard") values are published at the end of sapnote #322896.
    23 ms seems really a little bit high to me - for example we have round about 4 to 6 ms on our productive system (with SAN storage).
    >> Frequent checkpoints means more redo log file switches, means more archive redo log files generated. right?
    Correct.
    >> But how is it that frequent chekpoints should decrease the time necessary for recovery ?
    A checkpoint is occured on every logswitch (of the online redologfiles). On a checkpoint event the following 3 things are happening in an oracle database:
    Every dirty block in the buffer cache is written down to the datafiles
    The latest SCN is written (updated) into the datafile header
    The latest SCN is also written to the controlfiles
    If your redologfiles are larger ... checkpoints are not happening so often and in this case the dirty buffers are not written down to the datafiles (in the case of no free space in the buffer cache is needed). So if your instance crashes you need to apply more redologs to the datafiles to be in a consistent state (roll forward). If you have smaller redologfiles more log switches are occured and so the SCNs in the data file headers (and the corresponding data) are closer to the newest SCN -> ergo the recovery is faster.
    But this concept does not really fit the reality because of oracle implements some algorithm to reduce the workload for the DBWR in the case of a checkpoint.
    There are also several parameters (depends on the oracle version) which control that a required recovery time is kept. (for example FAST_START_MTTR_TARGET)
    Regards
    Stefan

  • [SOLVED] Black screen after kdm upgrade

    Hi,
    I just did a pacman -Syu and at the next reboot when xdm was supposed to appear the only thing I got was a black screen. It's pitch-black as if turned off, not as if the background was black (laptop lcd)
    If I just enter my password blindly, it enters KDE and launches all the normal processes so it appears to be just a the screen being black.
    This is what I upgraded:
    [2014-09-29 00:13] [PACMAN] Running 'pacman -Syu'
    [2014-09-29 00:13] [PACMAN] synchronizing package lists
    [2014-09-29 00:13] [PACMAN] starting full system upgrade
    [2014-09-29 00:15] [PACMAN] upgraded ansible (1.7.1-3 -> 1.7.2-1)
    [2014-09-29 00:15] [PACMAN] upgraded grantlee-qt4 (0.5.0-2 -> 0.5.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded qtwebkit (2.3.3-2 -> 2.3.4-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdelibs (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdepimlibs (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded libbaloo4 (4.14.0-3 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded baloo4-akonadi (4.14.0-3 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded baloo4 (4.14.0-3 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded baloo4-widgets (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded bash (4.3.024-2 -> 4.3.026-1)
    [2014-09-29 00:15] [PACMAN] upgraded curl (7.38.0-1 -> 7.38.0-2)
    [2014-09-29 00:15] [PACMAN] upgraded e2fsprogs (1.42.11-1 -> 1.42.12-1)
    [2014-09-29 00:15] [PACMAN] upgraded flac (1.3.0-3 -> 1.3.0-4)
    [2014-09-29 00:15] [PACMAN] upgraded ghostscript (9.14-1 -> 9.15-1)
    [2014-09-29 00:15] [PACMAN] upgraded p11-kit (0.20.2-1 -> 0.20.7-3)
    [2014-09-29 00:15] [PACMAN] upgraded gnutls (3.3.8-1 -> 3.3.8-2)
    [2014-09-29 00:15] [PACMAN] upgraded groff (1.22.2-6 -> 1.22.2-7)
    [2014-09-29 00:15] [PACMAN] upgraded kde-base-artwork (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kde-wallpapers (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded oxygen-icons (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-runtime (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-lib (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-dolphin (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-katepart (4.14.0-2 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-kdepasswd (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-kdialog (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-keditbookmarks (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-kfind (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-konqueror (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-konq-plugins (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-konsole (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-kwrite (4.14.0-2 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-plasma (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdepim-runtime (4.14.0-3 -> 4.14.1-1)
    [2014-09-29 00:15] [ALPM] warning: /usr/share/config/kdm/kdmrc installed as /usr/share/config/kdm/kdmrc.pacnew
    [2014-09-29 00:15] [PACMAN] upgraded kdebase-workspace (4.11.11-2 -> 4.11.12-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeedu-marble (4.14.0-1 -> 4.14.1-2)
    [2014-09-29 00:15] [PACMAN] upgraded libkipi (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded libkdcraw (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdegraphics-gwenview (4.14.0-2 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdegraphics-kamera (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdegraphics-kcolorchooser (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdegraphics-kgamma (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdegraphics-kolourpaint (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdegraphics-kruler (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdegraphics-ksnapshot (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdegraphics-mobipocket (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded libkexiv2 (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded poppler (0.26.4-1 -> 0.26.5-1)
    [2014-09-29 00:15] [PACMAN] upgraded poppler-qt4 (0.26.4-1 -> 0.26.5-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdegraphics-okular (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded libkcddb (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded libkcompactdisc (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdemultimedia-audiocd-kio (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdemultimedia-dragonplayer (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdemultimedia-juk (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdemultimedia-kmix (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdemultimedia-kscd (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdemultimedia-mplayerthumbs (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdenetwork-kopete (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-bball (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-binary-clock (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-blackboard (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-bookmarks (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-bubblemon (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-calculator (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-charselect (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-libs (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-comic (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-community (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-dict (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-eyes (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-fifteenpuzzle (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-filewatcher (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-frame (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-fuzzy-clock (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-icontasks (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-incomingmsg (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-kimpanel (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-knowledgebase (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-kolourpicker (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-konqprofiles (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-konsoleprofiles (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-lancelot (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-leavenote (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-life (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-luna (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-magnifique (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-mediaplayer (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-microblog (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-news (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-notes (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-nowplaying (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-paste (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-pastebin (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-plasmaboard (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-previewer (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-qalculate (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-rememberthemilk (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-rssnow (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-showdashboard (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-showdesktop (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-social-news (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-spellcheck (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-systemloadviewer (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-timer (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-unitconverter (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-weather (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-weatherstation (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-applets-webslice (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-containments (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-audioplayercontrol (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-browserhistory (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-characters (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-contacts (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-converter (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-datetime (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-dictionary (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-events (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdesdk-kate (4.14.0-2 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-katesessions (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-konquerorsessions (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-konsolesessions (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-kopete (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-mediawiki (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-spellchecker (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-translator (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-runners-youtube (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-wallpapers-mandelbrot (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-wallpapers-marble (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-wallpapers-pattern (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-wallpapers-potd (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-wallpapers-qmlwallpapers (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-wallpapers-virus (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeplasma-addons-wallpapers-weather (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-ark (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-filelight (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-kcalc (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-kcharselect (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-kdf (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-kfloppy (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-kgpg (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-kremotecontrol (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-ktimer (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-kwalletmanager (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-print-manager (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-superkaramba (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded kdeutils-sweeper (4.14.0-1 -> 4.14.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded less (458-1 -> 468-1)
    [2014-09-29 00:15] [PACMAN] upgraded libmariadbclient (10.0.13-1 -> 10.0.14-1)
    [2014-09-29 00:15] [PACMAN] upgraded libpipeline (1.3.0-1 -> 1.3.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded libreoffice-fresh (4.3.1-1 -> 4.3.2-1)
    [2014-09-29 00:15] [PACMAN] upgraded man-pages (3.72-1 -> 3.73-1)
    [2014-09-29 00:15] [PACMAN] upgraded mariadb-clients (10.0.13-1 -> 10.0.14-1)
    [2014-09-29 00:15] [PACMAN] upgraded mariadb (10.0.13-1 -> 10.0.14-1)
    [2014-09-29 00:15] [PACMAN] upgraded poppler-glib (0.26.4-1 -> 0.26.5-1)
    [2014-09-29 00:15] [PACMAN] upgraded python2-setuptools (1:5.8-1 -> 1:6.0.1-1)
    [2014-09-29 00:15] [PACMAN] upgraded sdl (1.2.15-6 -> 1.2.15-7)
    [2014-09-29 00:15] [PACMAN] upgraded sudo (1.8.10.p3-1 -> 1.8.11-1)
    [2014-09-29 00:15] [PACMAN] upgraded tzdata (2014g-1 -> 2014h-1)
    I have substituted xdmrc for kdmrc.pacnew to no avail. I have reinstalled nvidia and kdebase-workspace. kdm.log:
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 00:26:11 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    klauncher(590) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(584)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(584)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    (EE) Server terminated successfully (0). Closing log file.
    drkonqi: cannot connect to X server :0
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    (EE) Server terminated successfully (0). Closing log file.
    drkonqi: cannot connect to X server :0
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    removing GPU device /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
    (EE) Server terminated successfully (0). Closing log file.
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    drkonqi: cannot connect to X server :0
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 00:55:05 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    klauncher(611) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(605)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(605)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 00:58:58 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    klauncher(669) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(663)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(663)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 00:59:51 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    klauncher(707) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(701)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(701)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 01:05:09 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    klauncher(770) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(764)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(764)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 01:11:34 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    klauncher(813) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(807)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(807)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 01:16:56 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    klauncher(859) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(853)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(853)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    (EE) Server terminated successfully (0). Closing log file.
    drkonqi: cannot connect to X server :0
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    (EE) Server terminated successfully (0). Closing log file.
    drkonqi: cannot connect to X server :0
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 01:31:24 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    klauncher(1018) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(1012)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(1012)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    drkonqi: cannot connect to X server :0
    (EE) Server terminated successfully (0). Closing log file.
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 01:34:39 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    removing GPU device /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
    klauncher(501) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(495)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(495)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    (EE) Server terminated successfully (0). Closing log file.
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 01:39:30 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    removing GPU device /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
    klauncher(641) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(635)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(635)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 01:41:32 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    klauncher(724) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(718)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(718)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    KCrash: Application 'kdmgreet' crashing...
    KCrash: Attempting to start /usr/lib/kde4/libexec/drkonqi directly
    QThread::wait: Thread tried to wait on itself
    QThread: Destroyed while thread is still running
    (EE) Server terminated successfully (0). Closing log file.
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Build Date: 21 September 2014 10:53:13AM
    Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 01:48:30 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    removing GPU device /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
    klauncher(479) kdemain: No DBUS session-bus found. Check if you have started the DBUS server.
    kdeinit4: Communication error with launcher. Exiting!
    kdmgreet(473)/kdecore (K*TimeZone*): KSystemTimeZones: ktimezoned initialize() D-Bus call failed: "Not connected to D-Bus server"
    kdmgreet(473)/kdecore (K*TimeZone*): No time zone information obtained from ktimezoned
    journalctl -b:
    -- Logs begin at Sun 2014-07-13 21:42:22 BST, end at Mon 2014-09-29 01:48:53 BST. --
    Sep 29 01:48:24 feynman systemd-journal[193]: Runtime journal is using 8.0M (max allowed 393.9M, trying to leave 590.8M free of 3.8G available → current limit 393.9M).
    Sep 29 01:48:24 feynman systemd-journal[193]: Runtime journal is using 8.0M (max allowed 393.9M, trying to leave 590.8M free of 3.8G available → current limit 393.9M).
    Sep 29 01:48:24 feynman kernel: Initializing cgroup subsys cpuset
    Sep 29 01:48:24 feynman kernel: Initializing cgroup subsys cpu
    Sep 29 01:48:24 feynman kernel: Initializing cgroup subsys cpuacct
    Sep 29 01:48:24 feynman kernel: Linux version 3.16.3-1-ARCH (nobody@var-lib-archbuild-testing-x86_64-tobias) (gcc version 4.9.1 20140903 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014
    Sep 29 01:48:24 feynman kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Sep 29 01:48:24 feynman kernel: e820: BIOS-provided physical RAM map:
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000b96e1fff] usable
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000b96e2000-0x00000000b96e8fff] ACPI NVS
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000b96e9000-0x00000000b9ec6fff] usable
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000b9ec7000-0x00000000ba151fff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000ba152000-0x00000000c9586fff] usable
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000c9587000-0x00000000c9a63fff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000c9a64000-0x00000000c9a97fff] usable
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000c9a98000-0x00000000c9b7dfff] ACPI NVS
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000c9b7e000-0x00000000c9ffefff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000c9fff000-0x00000000c9ffffff] usable
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000cd000000-0x00000000cf1fffff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    Sep 29 01:48:24 feynman kernel: BIOS-e820: [mem 0x0000000100000000-0x000000022fdfffff] usable
    Sep 29 01:48:24 feynman kernel: NX (Execute Disable) protection: active
    Sep 29 01:48:24 feynman kernel: SMBIOS 2.7 present.
    Sep 29 01:48:24 feynman kernel: DMI: Notebook W350STQ/W370ST /W350STQ/W370ST , BIOS 4.6.5 06/14/2013
    Sep 29 01:48:24 feynman kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Sep 29 01:48:24 feynman kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Sep 29 01:48:24 feynman kernel: AGP: No AGP bridge found
    Sep 29 01:48:24 feynman kernel: e820: last_pfn = 0x22fe00 max_arch_pfn = 0x400000000
    Sep 29 01:48:24 feynman kernel: MTRR default type: uncachable
    Sep 29 01:48:24 feynman kernel: MTRR fixed ranges enabled:
    Sep 29 01:48:24 feynman kernel: 00000-9FFFF write-back
    Sep 29 01:48:24 feynman kernel: A0000-BFFFF uncachable
    Sep 29 01:48:24 feynman kernel: C0000-CFFFF write-protect
    Sep 29 01:48:24 feynman kernel: D0000-E7FFF uncachable
    Sep 29 01:48:24 feynman kernel: E8000-FFFFF write-protect
    Sep 29 01:48:24 feynman kernel: MTRR variable ranges enabled:
    Sep 29 01:48:24 feynman kernel: 0 base 0000000000 mask 7E00000000 write-back
    Sep 29 01:48:24 feynman kernel: 1 base 0200000000 mask 7FE0000000 write-back
    Sep 29 01:48:24 feynman kernel: 2 base 0220000000 mask 7FF0000000 write-back
    Sep 29 01:48:24 feynman kernel: 3 base 00E0000000 mask 7FE0000000 uncachable
    Sep 29 01:48:24 feynman kernel: 4 base 00D0000000 mask 7FF0000000 uncachable
    Sep 29 01:48:24 feynman kernel: 5 base 00CE000000 mask 7FFE000000 uncachable
    Sep 29 01:48:24 feynman kernel: 6 base 00CD000000 mask 7FFF000000 uncachable
    Sep 29 01:48:24 feynman kernel: 7 base 022FE00000 mask 7FFFE00000 uncachable
    Sep 29 01:48:24 feynman kernel: 8 disabled
    Sep 29 01:48:24 feynman kernel: 9 disabled
    Sep 29 01:48:24 feynman kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Sep 29 01:48:24 feynman kernel: e820: update [mem 0xcd000000-0xffffffff] usable ==> reserved
    Sep 29 01:48:24 feynman kernel: e820: last_pfn = 0xca000 max_arch_pfn = 0x400000000
    Sep 29 01:48:24 feynman kernel: found SMP MP-table at [mem 0x000fd7f0-0x000fd7ff] mapped at [ffff8800000fd7f0]
    Sep 29 01:48:24 feynman kernel: Scanning 1 areas for low memory corruption
    Sep 29 01:48:24 feynman kernel: Base memory trampoline at [ffff880000097000] 97000 size 24576
    Sep 29 01:48:24 feynman kernel: Using GB pages for direct mapping
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Sep 29 01:48:24 feynman kernel: [mem 0x00000000-0x000fffff] page 4k
    Sep 29 01:48:24 feynman kernel: BRK [0x01b23000, 0x01b23fff] PGTABLE
    Sep 29 01:48:24 feynman kernel: BRK [0x01b24000, 0x01b24fff] PGTABLE
    Sep 29 01:48:24 feynman kernel: BRK [0x01b25000, 0x01b25fff] PGTABLE
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0x22fc00000-0x22fdfffff]
    Sep 29 01:48:24 feynman kernel: [mem 0x22fc00000-0x22fdfffff] page 2M
    Sep 29 01:48:24 feynman kernel: BRK [0x01b26000, 0x01b26fff] PGTABLE
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0x22c000000-0x22fbfffff]
    Sep 29 01:48:24 feynman kernel: [mem 0x22c000000-0x22fbfffff] page 2M
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0x200000000-0x22bffffff]
    Sep 29 01:48:24 feynman kernel: [mem 0x200000000-0x22bffffff] page 2M
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0x00100000-0xb96e1fff]
    Sep 29 01:48:24 feynman kernel: [mem 0x00100000-0x001fffff] page 4k
    Sep 29 01:48:24 feynman kernel: [mem 0x00200000-0x3fffffff] page 2M
    Sep 29 01:48:24 feynman kernel: [mem 0x40000000-0x7fffffff] page 1G
    Sep 29 01:48:24 feynman kernel: [mem 0x80000000-0xb95fffff] page 2M
    Sep 29 01:48:24 feynman kernel: [mem 0xb9600000-0xb96e1fff] page 4k
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0xb96e9000-0xb9ec6fff]
    Sep 29 01:48:24 feynman kernel: [mem 0xb96e9000-0xb97fffff] page 4k
    Sep 29 01:48:24 feynman kernel: [mem 0xb9800000-0xb9dfffff] page 2M
    Sep 29 01:48:24 feynman kernel: [mem 0xb9e00000-0xb9ec6fff] page 4k
    Sep 29 01:48:24 feynman kernel: BRK [0x01b27000, 0x01b27fff] PGTABLE
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0xba152000-0xc9586fff]
    Sep 29 01:48:24 feynman kernel: [mem 0xba152000-0xba1fffff] page 4k
    Sep 29 01:48:24 feynman kernel: [mem 0xba200000-0xc93fffff] page 2M
    Sep 29 01:48:24 feynman kernel: [mem 0xc9400000-0xc9586fff] page 4k
    Sep 29 01:48:24 feynman kernel: BRK [0x01b28000, 0x01b28fff] PGTABLE
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0xc9a64000-0xc9a97fff]
    Sep 29 01:48:24 feynman kernel: [mem 0xc9a64000-0xc9a97fff] page 4k
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0xc9fff000-0xc9ffffff]
    Sep 29 01:48:24 feynman kernel: [mem 0xc9fff000-0xc9ffffff] page 4k
    Sep 29 01:48:24 feynman kernel: init_memory_mapping: [mem 0x100000000-0x1ffffffff]
    Sep 29 01:48:24 feynman kernel: [mem 0x100000000-0x1ffffffff] page 1G
    Sep 29 01:48:24 feynman kernel: RAMDISK: [mem 0x3790c000-0x37c7dfff]
    Sep 29 01:48:24 feynman kernel: ACPI: Early table checksum verification disabled
    Sep 29 01:48:24 feynman kernel: ACPI: RSDP 0x00000000000F0490 000024 (v02 ALASKA)
    Sep 29 01:48:24 feynman kernel: ACPI: XSDT 0x00000000C9B20088 000094 (v01 ALASKA A M I 01072009 AMI 00010013)
    Sep 29 01:48:24 feynman kernel: ACPI: FACP 0x00000000C9B2D340 00010C (v05 ALASKA A M I 01072009 AMI 00010013)
    Sep 29 01:48:24 feynman kernel: ACPI: DSDT 0x00000000C9B201B8 00D182 (v02 ALASKA A M I 00000021 INTL 20091112)
    Sep 29 01:48:24 feynman kernel: ACPI: FACS 0x00000000C9B7C080 000040
    Sep 29 01:48:24 feynman kernel: ACPI: APIC 0x00000000C9B2D450 000092 (v03 ALASKA A M I 01072009 AMI 00010013)
    Sep 29 01:48:24 feynman kernel: ACPI: FPDT 0x00000000C9B2D4E8 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
    Sep 29 01:48:24 feynman kernel: ACPI: ASF! 0x00000000C9B2D530 0000A5 (v32 INTEL HCG 00000001 TFSM 000F4240)
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0x00000000C9B2D5D8 000F92 (v01 TrmRef PtidDevc 00001000 INTL 20091112)
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0x00000000C9B2E570 000539 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0x00000000C9B2EAB0 000AD8 (v01 PmRef CpuPm 00003000 INTL 20051117)
    Sep 29 01:48:24 feynman kernel: ACPI: MCFG 0x00000000C9B2F588 00003C (v01 ALASKA A M I 01072009 MSFT 00000097)
    Sep 29 01:48:24 feynman kernel: ACPI: HPET 0x00000000C9B2F5C8 000038 (v01 ALASKA A M I 01072009 AMI. 00000005)
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0x00000000C9B2F600 000315 (v01 SataRe SataTabl 00001000 INTL 20091112)
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0x00000000C9B2F918 001640 (v01 SaSsdt SaSsdt 00003000 INTL 20091112)
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0x00000000C9B30F58 000E64 (v01 SgRef SgPeg 00001000 INTL 20091112)
    Sep 29 01:48:24 feynman kernel: ACPI: DMAR 0x00000000C9B31DC0 0000B8 (v01 INTEL HSW 00000001 INTL 00000001)
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0x00000000C9B31E78 0015B3 (v01 OptRef OptTabl 00001000 INTL 20091112)
    Sep 29 01:48:24 feynman kernel: ACPI: Local APIC address 0xfee00000
    Sep 29 01:48:24 feynman kernel: No NUMA configuration found
    Sep 29 01:48:24 feynman kernel: Faking a node at [mem 0x0000000000000000-0x000000022fdfffff]
    Sep 29 01:48:24 feynman kernel: Initmem setup node 0 [mem 0x00000000-0x22fdfffff]
    Sep 29 01:48:24 feynman kernel: NODE_DATA [mem 0x22fdf5000-0x22fdf9fff]
    Sep 29 01:48:24 feynman kernel: [ffffea0000000000-ffffea0008bfffff] PMD -> [ffff880227400000-ffff88022f3fffff] on node 0
    Sep 29 01:48:24 feynman kernel: Zone ranges:
    Sep 29 01:48:24 feynman kernel: DMA [mem 0x00001000-0x00ffffff]
    Sep 29 01:48:24 feynman kernel: DMA32 [mem 0x01000000-0xffffffff]
    Sep 29 01:48:24 feynman kernel: Normal [mem 0x100000000-0x22fdfffff]
    Sep 29 01:48:24 feynman kernel: Movable zone start for each node
    Sep 29 01:48:24 feynman kernel: Early memory node ranges
    Sep 29 01:48:24 feynman kernel: node 0: [mem 0x00001000-0x0009cfff]
    Sep 29 01:48:24 feynman kernel: node 0: [mem 0x00100000-0xb96e1fff]
    Sep 29 01:48:24 feynman kernel: node 0: [mem 0xb96e9000-0xb9ec6fff]
    Sep 29 01:48:24 feynman kernel: node 0: [mem 0xba152000-0xc9586fff]
    Sep 29 01:48:24 feynman kernel: node 0: [mem 0xc9a64000-0xc9a97fff]
    Sep 29 01:48:24 feynman kernel: node 0: [mem 0xc9fff000-0xc9ffffff]
    Sep 29 01:48:24 feynman kernel: node 0: [mem 0x100000000-0x22fdfffff]
    Sep 29 01:48:24 feynman kernel: On node 0 totalpages: 2068678
    Sep 29 01:48:24 feynman kernel: DMA zone: 64 pages used for memmap
    Sep 29 01:48:24 feynman kernel: DMA zone: 21 pages reserved
    Sep 29 01:48:24 feynman kernel: DMA zone: 3996 pages, LIFO batch:0
    Sep 29 01:48:24 feynman kernel: DMA32 zone: 12813 pages used for memmap
    Sep 29 01:48:24 feynman kernel: DMA32 zone: 820010 pages, LIFO batch:31
    Sep 29 01:48:24 feynman kernel: Normal zone: 19448 pages used for memmap
    Sep 29 01:48:24 feynman kernel: Normal zone: 1244672 pages, LIFO batch:31
    Sep 29 01:48:24 feynman kernel: Reserving Intel graphics stolen memory at 0xcd200000-0xcf1fffff
    Sep 29 01:48:24 feynman kernel: ACPI: PM-Timer IO Port: 0x1808
    Sep 29 01:48:24 feynman kernel: ACPI: Local APIC address 0xfee00000
    Sep 29 01:48:24 feynman kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Sep 29 01:48:24 feynman kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    Sep 29 01:48:24 feynman kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    Sep 29 01:48:24 feynman kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    Sep 29 01:48:24 feynman kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
    Sep 29 01:48:24 feynman kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
    Sep 29 01:48:24 feynman kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
    Sep 29 01:48:24 feynman kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    Sep 29 01:48:24 feynman kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    Sep 29 01:48:24 feynman kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Sep 29 01:48:24 feynman kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    Sep 29 01:48:24 feynman kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Sep 29 01:48:24 feynman kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Sep 29 01:48:24 feynman kernel: ACPI: IRQ0 used by override.
    Sep 29 01:48:24 feynman kernel: ACPI: IRQ2 used by override.
    Sep 29 01:48:24 feynman kernel: ACPI: IRQ9 used by override.
    Sep 29 01:48:24 feynman kernel: Using ACPI (MADT) for SMP configuration information
    Sep 29 01:48:24 feynman kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
    Sep 29 01:48:24 feynman kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
    Sep 29 01:48:24 feynman kernel: nr_irqs_gsi: 40
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xb96e2000-0xb96e8fff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xb9ec7000-0xba151fff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xc9587000-0xc9a63fff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xc9a98000-0xc9b7dfff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xc9b7e000-0xc9ffefff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xca000000-0xccffffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xcd000000-0xcf1fffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xcf200000-0xf7ffffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
    Sep 29 01:48:24 feynman kernel: PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
    Sep 29 01:48:24 feynman kernel: e820: [mem 0xcf200000-0xf7ffffff] available for PCI devices
    Sep 29 01:48:24 feynman kernel: Booting paravirtualized kernel on bare hardware
    Sep 29 01:48:24 feynman kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    Sep 29 01:48:24 feynman kernel: PERCPU: Embedded 29 pages/cpu @ffff88022fa00000 s86784 r8192 d23808 u262144
    Sep 29 01:48:24 feynman kernel: pcpu-alloc: s86784 r8192 d23808 u262144 alloc=1*2097152
    Sep 29 01:48:24 feynman kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    Sep 29 01:48:24 feynman kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2036332
    Sep 29 01:48:24 feynman kernel: Policy zone: Normal
    Sep 29 01:48:24 feynman kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    Sep 29 01:48:24 feynman kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Sep 29 01:48:24 feynman kernel: xsave: enabled xstate_bv 0x7, cntxt size 0x340
    Sep 29 01:48:24 feynman kernel: AGP: Checking aperture...
    Sep 29 01:48:24 feynman kernel: AGP: No AGP bridge found
    Sep 29 01:48:24 feynman kernel: Calgary: detecting Calgary via BIOS EBDA area
    Sep 29 01:48:24 feynman kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Sep 29 01:48:24 feynman kernel: Memory: 8061324K/8274712K available (5335K kernel code, 887K rwdata, 1688K rodata, 1128K init, 1164K bss, 213388K reserved)
    Sep 29 01:48:24 feynman kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    Sep 29 01:48:24 feynman kernel: Preemptible hierarchical RCU implementation.
    Sep 29 01:48:24 feynman kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Sep 29 01:48:24 feynman kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Sep 29 01:48:24 feynman kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    Sep 29 01:48:24 feynman kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
    Sep 29 01:48:24 feynman kernel: NR_IRQS:8448 nr_irqs:744 16
    Sep 29 01:48:24 feynman kernel: Console: colour dummy device 80x25
    Sep 29 01:48:24 feynman kernel: console [tty0] enabled
    Sep 29 01:48:24 feynman kernel: allocated 33554432 bytes of page_cgroup
    Sep 29 01:48:24 feynman kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Sep 29 01:48:24 feynman kernel: hpet clockevent registered
    Sep 29 01:48:24 feynman kernel: tsc: Fast TSC calibration using PIT
    Sep 29 01:48:24 feynman kernel: tsc: Detected 2694.062 MHz processor
    Sep 29 01:48:24 feynman kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5390.62 BogoMIPS (lpj=8980206)
    Sep 29 01:48:24 feynman kernel: pid_max: default: 32768 minimum: 301
    Sep 29 01:48:24 feynman kernel: ACPI: Core revision 20140424
    Sep 29 01:48:24 feynman kernel: ACPI: All ACPI Tables successfully acquired
    Sep 29 01:48:24 feynman kernel: Security Framework initialized
    Sep 29 01:48:24 feynman kernel: Yama: becoming mindful.
    Sep 29 01:48:24 feynman kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    Sep 29 01:48:24 feynman kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Sep 29 01:48:24 feynman kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
    Sep 29 01:48:24 feynman kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
    Sep 29 01:48:24 feynman kernel: Initializing cgroup subsys memory
    Sep 29 01:48:24 feynman kernel: Initializing cgroup subsys devices
    Sep 29 01:48:24 feynman kernel: Initializing cgroup subsys freezer
    Sep 29 01:48:24 feynman kernel: Initializing cgroup subsys net_cls
    Sep 29 01:48:24 feynman kernel: Initializing cgroup subsys blkio
    Sep 29 01:48:24 feynman kernel: CPU: Physical Processor ID: 0
    Sep 29 01:48:24 feynman kernel: CPU: Processor Core ID: 0
    Sep 29 01:48:24 feynman kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    Sep 29 01:48:24 feynman kernel: mce: CPU supports 9 MCE banks
    Sep 29 01:48:24 feynman kernel: CPU0: Thermal monitoring enabled (TM1)
    Sep 29 01:48:24 feynman kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
    Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
    tlb_flushall_shift: 6
    Sep 29 01:48:24 feynman kernel: Freeing SMP alternatives memory: 20K (ffffffff819f9000 - ffffffff819fe000)
    Sep 29 01:48:24 feynman kernel: ftrace: allocating 20438 entries in 80 pages
    Sep 29 01:48:24 feynman kernel: dmar: Host address width 39
    Sep 29 01:48:24 feynman kernel: dmar: DRHD base: 0x000000fed90000 flags: 0x0
    Sep 29 01:48:24 feynman kernel: dmar: IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c0000020660462 ecap f0101a
    Sep 29 01:48:24 feynman kernel: dmar: DRHD base: 0x000000fed91000 flags: 0x1
    Sep 29 01:48:24 feynman kernel: dmar: IOMMU 1: reg_base_addr fed91000 ver 1:0 cap d2008020660462 ecap f010da
    Sep 29 01:48:24 feynman kernel: dmar: RMRR base: 0x000000c97a6000 end: 0x000000c97b2fff
    Sep 29 01:48:24 feynman kernel: dmar: RMRR base: 0x000000cd000000 end: 0x000000cf1fffff
    Sep 29 01:48:24 feynman kernel: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
    Sep 29 01:48:24 feynman kernel: HPET id 0 under DRHD base 0xfed91000
    Sep 29 01:48:24 feynman kernel: Queued invalidation will be enabled to support x2apic and Intr-remapping.
    Sep 29 01:48:24 feynman kernel: Enabled IRQ remapping in x2apic mode
    Sep 29 01:48:24 feynman kernel: Enabling x2apic
    Sep 29 01:48:24 feynman kernel: Enabled x2apic
    Sep 29 01:48:24 feynman kernel: Switched APIC routing to cluster x2apic.
    Sep 29 01:48:24 feynman kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Sep 29 01:48:24 feynman kernel: smpboot: CPU0: Intel(R) Core(TM) i7-4800MQ CPU @ 2.70GHz (fam: 06, model: 3c, stepping: 03)
    Sep 29 01:48:24 feynman kernel: TSC deadline timer enabled
    Sep 29 01:48:24 feynman kernel: Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    Sep 29 01:48:24 feynman kernel: ... version: 3
    Sep 29 01:48:24 feynman kernel: ... bit width: 48
    Sep 29 01:48:24 feynman kernel: ... generic registers: 4
    Sep 29 01:48:24 feynman kernel: ... value mask: 0000ffffffffffff
    Sep 29 01:48:24 feynman kernel: ... max period: 0000ffffffffffff
    Sep 29 01:48:24 feynman kernel: ... fixed-purpose events: 3
    Sep 29 01:48:24 feynman kernel: ... event mask: 000000070000000f
    Sep 29 01:48:24 feynman kernel: x86: Booting SMP configuration:
    Sep 29 01:48:24 feynman kernel: .... node #0, CPUs: #1
    Sep 29 01:48:24 feynman kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Sep 29 01:48:24 feynman kernel: #2 #3 #4 #5 #6 #7
    Sep 29 01:48:24 feynman kernel: x86: Booted up 1 node, 8 CPUs
    Sep 29 01:48:24 feynman kernel: smpboot: Total of 8 processors activated (43122.03 BogoMIPS)
    Sep 29 01:48:24 feynman kernel: devtmpfs: initialized
    Sep 29 01:48:24 feynman kernel: PM: Registering ACPI NVS region [mem 0xb96e2000-0xb96e8fff] (28672 bytes)
    Sep 29 01:48:24 feynman kernel: PM: Registering ACPI NVS region [mem 0xc9a98000-0xc9b7dfff] (942080 bytes)
    Sep 29 01:48:24 feynman kernel: pinctrl core: initialized pinctrl subsystem
    Sep 29 01:48:24 feynman kernel: RTC time: 0:48:18, date: 09/29/14
    Sep 29 01:48:24 feynman kernel: NET: Registered protocol family 16
    Sep 29 01:48:24 feynman kernel: cpuidle: using governor ladder
    Sep 29 01:48:24 feynman kernel: cpuidle: using governor menu
    Sep 29 01:48:24 feynman kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    Sep 29 01:48:24 feynman kernel: ACPI: bus type PCI registered
    Sep 29 01:48:24 feynman kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Sep 29 01:48:24 feynman kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    Sep 29 01:48:24 feynman kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    Sep 29 01:48:24 feynman kernel: PCI: Using configuration type 1 for base access
    Sep 29 01:48:24 feynman kernel: ACPI: Added _OSI(Module Device)
    Sep 29 01:48:24 feynman kernel: ACPI: Added _OSI(Processor Device)
    Sep 29 01:48:24 feynman kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Sep 29 01:48:24 feynman kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Sep 29 01:48:24 feynman kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Sep 29 01:48:24 feynman kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    Sep 29 01:48:24 feynman kernel: ACPI: Dynamic OEM Table Load:
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0xFFFF88022380B000 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    Sep 29 01:48:24 feynman kernel: ACPI: Dynamic OEM Table Load:
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0xFFFF880223889000 0005AA (v01 PmRef ApIst 00003000 INTL 20051117)
    Sep 29 01:48:24 feynman kernel: ACPI: Dynamic OEM Table Load:
    Sep 29 01:48:24 feynman kernel: ACPI: SSDT 0xFFFF880223869600 000119 (v01 PmRef ApCst 00003000 INTL 20051117)
    Sep 29 01:48:24 feynman kernel: ACPI: Interpreter enabled
    Sep 29 01:48:24 feynman kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
    Sep 29 01:48:24 feynman kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
    Sep 29 01:48:24 feynman kernel: ACPI: (supports S0 S3 S4 S5)
    Sep 29 01:48:24 feynman kernel: ACPI: Using IOAPIC for interrupt routing
    Sep 29 01:48:24 feynman kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Sep 29 01:48:24 feynman kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    Sep 29 01:48:24 feynman kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    Sep 29 01:48:24 feynman kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
    Sep 29 01:48:24 feynman kernel: acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
    Sep 29 01:48:24 feynman kernel: PCI host bridge to bus 0000:00
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [bus 00-3e]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    Sep 29 01:48:24 feynman kernel: pci_bus 0000:00: root bus resource [mem 0xcf200000-0xfeafffff]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:00.0: [8086:0c04] type 00 class 0x060000
    Sep 29 01:48:24 feynman kernel: pci 0000:00:01.0: [8086:0c01] type 01 class 0x060400
    Sep 29 01:48:24 feynman kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    Sep 29 01:48:24 feynman kernel: pci 0000:00:01.0: System wakeup disabled by ACPI
    Sep 29 01:48:24 feynman kernel: pci 0000:00:02.0: [8086:0416] type 00 class 0x030000
    Sep 29 01:48:24 feynman kernel: pci 0000:00:02.0: reg 0x10: [mem 0xf7400000-0xf77fffff 64bit]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:03.0: [8086:0c0c] type 00 class 0x040300
    Sep 29 01:48:24 feynman kernel: pci 0000:00:03.0: reg 0x10: [mem 0xf7a14000-0xf7a17fff 64bit]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330
    Sep 29 01:48:24 feynman kernel: pci 0000:00:14.0: reg 0x10: [mem 0xf7a00000-0xf7a0ffff 64bit]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
    Sep 29 01:48:24 feynman kernel: pci 0000:00:14.0: System wakeup disabled by ACPI
    Sep 29 01:48:24 feynman kernel: pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
    Sep 29 01:48:24 feynman kernel: pci 0000:00:16.0: reg 0x10: [mem 0xf7a1f000-0xf7a1f00f 64bit]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1a.0: [8086:8c2d] type 00 class 0x0c0320
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xf7a1c000-0xf7a1c3ff]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1b.0: [8086:8c20] type 00 class 0x040300
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xf7a10000-0xf7a13fff 64bit]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1b.0: System wakeup disabled by ACPI
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1c.0: [8086:8c10] type 01 class 0x060400
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1c.2: [8086:8c14] type 01 class 0x060400
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1c.2: System wakeup disabled by ACPI
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1c.3: [8086:8c16] type 01 class 0x060400
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1c.3: System wakeup disabled by ACPI
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1d.0: [8086:8c26] type 00 class 0x0c0320
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xf7a1b000-0xf7a1b3ff]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1f.0: [8086:8c4b] type 00 class 0x060100
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1f.2: [8086:8c03] type 00 class 0x010601
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1f.2: reg 0x10: [io 0xf0b0-0xf0b7]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1f.2: reg 0x14: [io 0xf0a0-0xf0a3]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1f.2: reg 0x18: [io 0xf090-0xf097]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1f.2: reg 0x1c: [io 0xf080-0xf083]
    Sep 29 01:48:24 feynman kernel: pci 0000:00:1f.2: reg 0x20: [io 0xf

    Hi berbae,
    berbae wrote:That's not what your logs say:
    Can you explain exactly how you start your computer and when you log in as user?
    I may have grabbed that info after restarting the kdm service manually.
    The issue happens on a normal bootup, just by pressing the power button and waiting. :-) To reiterate: a pitch black screen as if the LCD is turned off. The login prompt is there waiting in the dark, if I blindly input my password it starts KDE (I hear the disk and see the processes with
    ps -ef
    The following is the state of my system after pressing ctrl-alt-f1, logging in as root and mounting a pen.
    dmesg and Xorg.0.log look particularly nasty:
    dmesg:
    [ 10.422380] enhanceio: Allocate 20398KB (8B per) mem for 2610944-entry cache (capacity:10238MB, associativity:256, block size:4096 bytes)
    [ 10.422380] sound hdaudioC0D0: autoconfig: line_outs=1 (0x24/0x0/0x0/0x0/0x0) type:speaker
    [ 10.422384] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
    [ 10.422385] sound hdaudioC0D0: hp_outs=1 (0x25/0x0/0x0/0x0/0x0)
    [ 10.422386] sound hdaudioC0D0: mono: mono_out=0x0
    [ 10.422387] sound hdaudioC0D0: dig-out=0x2d/0x0
    [ 10.422388] sound hdaudioC0D0: inputs:
    [ 10.422390] sound hdaudioC0D0: Mic=0x2b
    [ 10.422391] sound hdaudioC0D0: Internal Mic=0x29
    [ 10.430634] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card1/input18
    [ 10.430719] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card1/input19
    [ 10.430791] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card1/input20
    [ 10.430997] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input16
    [ 10.431638] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input17
    [ 10.617688] enhanceio: Cache metadata loaded from disk with 438613 valid 0 dirty blocks
    [ 10.617691] enhanceio: Setting mode to write through
    [ 10.617890] enhanceio_lru: Initialized 10199 sets in LRU
    [ 10.618160] enhanceio: Cache metadata loaded from disk with 438613 valid 0 dirty blocks
    [ 10.618162] enhanceio: Setting mode to write through
    [ 10.618355] enhanceio_lru: Initialized 10199 sets in LRU
    [ 10.656047] ------------[ cut here ]------------
    [ 10.656053] WARNING: CPU: 3 PID: 352 at fs/proc/generic.c:315 proc_register+0xc0/0x140()
    [ 10.656054] proc_dir_entry 'enhanceio/usr_cache' already registered
    [ 10.656055] Modules linked in: snd_hda_codec_hdmi snd_hda_codec_via snd_hda_codec_generic enhanceio_rand(O) enhanceio_lru(O) enhanceio_fifo(O) enhanceio(O) coretemp hwmon intel_rapl x86_pkg_temp_thermal intel_powerclamp kvm_intel kvm crct10dif_pclmul crc32_pclmul crc32c_intel arc4 iwldvm ghash_clmulni_intel snd_hda_intel snd_hda_controller aesni_intel joydev mousedev i915 led_class mac80211 aes_x86_64 snd_hda_codec lrw ecb gf128mul btusb i2c_i801 iwlwifi glue_helper iTCO_wdt snd_hwdep drm_kms_helper bluetooth drm iTCO_vendor_support snd_pcm cfg80211 6lowpan_iphc intel_gtt mei_me i2c_algo_bit ablk_helper i2c_core rfkill cryptd r8169 snd_timer rtsx_pci_ms memstick evdev mii mxm_wmi snd mei mac_hid soundcore shpchp lpc_ich microcode psmouse serio_raw tpm_infineon tpm_tis tpm video thermal processor
    [ 10.656084] pcspkr battery button ac wmi usbip_host(C) usbip_core(C) ext4 crc16 mbcache jbd2 sd_mod sr_mod cdrom crc_t10dif crct10dif_common rtsx_pci_sdmmc atkbd libps2 mmc_core ehci_pci xhci_hcd ehci_hcd ahci libahci libata usbcore scsi_mod rtsx_pci usb_common i8042 serio
    [ 10.656096] CPU: 3 PID: 352 Comm: eio_cli Tainted: G C O 3.16.3-1-ARCH #1
    [ 10.656097] Hardware name: Notebook W350STQ/W370ST /W350STQ/W370ST , BIOS 4.6.5 06/14/2013
    [ 10.656098] 0000000000000000 00000000319638dd ffff88021eda7bf0 ffffffff8152b3bc
    [ 10.656100] ffff88021eda7c38 ffff88021eda7c28 ffffffff8106e45d ffff880222f323c0
    [ 10.656101] ffff88021f552df3 ffff88021f552d80 ffff880222e94f00 ffff880222f323c0
    [ 10.656102] Call Trace:
    [ 10.656106] [<ffffffff8152b3bc>] dump_stack+0x4d/0x6f
    [ 10.656109] [<ffffffff8106e45d>] warn_slowpath_common+0x7d/0xa0
    [ 10.656110] [<ffffffff8106e4dc>] warn_slowpath_fmt+0x5c/0x80
    [ 10.656112] [<ffffffff8122c1e4>] ? proc_alloc_inum+0x54/0xe0
    [ 10.656114] [<ffffffff8122c330>] proc_register+0xc0/0x140
    [ 10.656115] [<ffffffff8122c4b2>] proc_mkdir_data+0x52/0x80
    [ 10.656117] [<ffffffff8122c515>] proc_mkdir+0x15/0x20
    [ 10.656120] [<ffffffffa07ae25e>] eio_procfs_ctr+0x2e/0x220 [enhanceio]
    [ 10.656122] [<ffffffffa07a4cb0>] eio_cache_create+0x1270/0x1990 [enhanceio]
    [ 10.656125] [<ffffffff8118a1ae>] ? map_vm_area+0x2e/0x40
    [ 10.656126] [<ffffffff8118b4a0>] ? __vmalloc_node_range+0x200/0x290
    [ 10.656128] [<ffffffffa07a57c6>] ? eio_ioctl+0x2b6/0x310 [enhanceio]
    [ 10.656130] [<ffffffffa07a57ef>] eio_ioctl+0x2df/0x310 [enhanceio]
    [ 10.656133] [<ffffffff811d4af0>] do_vfs_ioctl+0x2d0/0x4b0
    [ 10.656135] [<ffffffff811d4d51>] SyS_ioctl+0x81/0xa0
    [ 10.656137] [<ffffffff81531129>] system_call_fastpath+0x16/0x1b
    [ 10.656138] ---[ end trace ba917aef9e72708f ]---
    [ 10.656143] sysctl duplicate entry: /dev/enhanceio/usr_cache//zero_stats
    [ 10.656172] CPU: 3 PID: 352 Comm: eio_cli Tainted: G WC O 3.16.3-1-ARCH #1
    [ 10.656172] Hardware name: Notebook W350STQ/W370ST /W350STQ/W370ST , BIOS 4.6.5 06/14/2013
    [ 10.656173] 0000000000000000 00000000319638dd ffff88021eda7c30 ffffffff8152b3bc
    [ 10.656174] 0000000000000000 ffff88021eda7c98 ffffffff81232da5 0000000000000000
    [ 10.656175] ffff88021eda7c70 ffff88021f552900 ffff88022309e300 0000000000000000
    [ 10.656177] Call Trace:
    [ 10.656178] [<ffffffff8152b3bc>] dump_stack+0x4d/0x6f
    [ 10.656180] [<ffffffff81232da5>] __register_sysctl_table+0x405/0x660
    [ 10.656181] [<ffffffff812333ed>] __register_sysctl_paths+0x1dd/0x200
    [ 10.656184] [<ffffffff811a5fba>] ? __kmalloc+0x18a/0x1c0
    [ 10.656186] [<ffffffff8123344f>] register_sysctl_table+0x1f/0x30
    [ 10.656188] [<ffffffffa07ae3bf>] eio_procfs_ctr+0x18f/0x220 [enhanceio]
    [ 10.656189] [<ffffffffa07a4cb0>] eio_cache_create+0x1270/0x1990 [enhanceio]
    [ 10.656190] [<ffffffff8118a1ae>] ? map_vm_area+0x2e/0x40
    [ 10.656192] [<ffffffff8118b4a0>] ? __vmalloc_node_range+0x200/0x290
    [ 10.656193] [<ffffffffa07a57c6>] ? eio_ioctl+0x2b6/0x310 [enhanceio]
    [ 10.656195] [<ffffffffa07a57ef>] eio_ioctl+0x2df/0x310 [enhanceio]
    [ 10.656197] [<ffffffff811d4af0>] do_vfs_ioctl+0x2d0/0x4b0
    [ 10.656198] [<ffffffff811d4d51>] SyS_ioctl+0x81/0xa0
    [ 10.656200] [<ffffffff81531129>] system_call_fastpath+0x16/0x1b
    [ 10.656201] Failed to register common sysctl
    [ 10.659094] cache_create: Device is already cached.
    [ 11.478308] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 11.485810] iwlwifi 0000:03:00.0: Radio type=0x0-0x0-0x0
    [ 11.518234] nvidia: module license 'NVIDIA' taints kernel.
    [ 11.518238] Disabling lock debugging due to kernel taint
    [ 11.525193] [drm] Initialized nvidia-drm 0.0.0 20130102 for 0000:01:00.0 on minor 1
    [ 11.525197] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 340.32 Tue Aug 5 20:58:26 PDT 2014
    [ 11.526152] vgaarb: this pci device is not a vga device
    [ 11.526429] nvidia 0000:01:00.0: irq 52 for MSI/MSI-X
    [ 11.528294] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 11.528340] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 11.528369] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 11.528403] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 11.528431] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 11.528459] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 11.528490] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 11.528525] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 11.550137] iwlwifi 0000:03:00.0: L1 Disabled; Enabling L0S
    [ 11.557694] iwlwifi 0000:03:00.0: Radio type=0x0-0x0-0x0
    [ 11.625420] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
    [ 11.628649] ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140424/nsarguments-95)
    [ 12.148668] cfg80211: Calling CRDA to update world regulatory domain
    [ 12.183699] wlp3s0: authenticate with c4:04:15:e5:ba:60
    [ 12.202127] wlp3s0: send auth to c4:04:15:e5:ba:60 (try 1/3)
    [ 12.204424] wlp3s0: authenticated
    [ 12.205180] wlp3s0: associate with c4:04:15:e5:ba:60 (try 1/3)
    [ 12.210701] wlp3s0: RX AssocResp from c4:04:15:e5:ba:60 (capab=0x11 status=0 aid=2)
    [ 12.213604] IPv6: ADDRCONF(NETDEV_CHANGE): wlp3s0: link becomes ready
    [ 12.213637] wlp3s0: associated
    [ 12.213651] cfg80211: Calling CRDA to update world regulatory domain
    [ 13.284862] vgaarb: this pci device is not a vga device
    [ 187.535119] usb 3-2: new high-speed USB device number 3 using xhci_hcd
    [ 187.860846] usb 3-2: ep 0x81 - rounding interval to 128 microframes, ep desc says 255 microframes
    [ 187.860858] usb 3-2: ep 0x2 - rounding interval to 128 microframes, ep desc says 255 microframes
    [ 188.275010] usb-storage 3-2:1.0: USB Mass Storage device detected
    [ 188.275105] scsi6 : usb-storage 3-2:1.0
    [ 188.275160] usbcore: registered new interface driver usb-storage
    [ 188.276007] usbcore: registered new interface driver uas
    [ 189.278473] scsi 6:0:0:0: Direct-Access Kingston DataTraveler 112 1.00 PQ: 0 ANSI: 2
    [ 189.278903] sd 6:0:0:0: [sdc] 7557704 512-byte logical blocks: (3.86 GB/3.60 GiB)
    [ 189.279055] sd 6:0:0:0: [sdc] Write Protect is off
    [ 189.279058] sd 6:0:0:0: [sdc] Mode Sense: 03 00 00 00
    [ 189.279200] sd 6:0:0:0: [sdc] No Caching mode page found
    [ 189.280334] sd 6:0:0:0: [sdc] Assuming drive cache: write through
    [ 189.283005] sdc: sdc1
    [ 189.283774] sd 6:0:0:0: [sdc] Attached SCSI removable disk
    Xorg.0.log
    [ 11.389]
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    [ 11.389] X Protocol Version 11, Revision 0
    [ 11.389] Build Operating System: Linux 3.16.1-1-ARCH x86_64
    [ 11.389] Current Operating System: Linux feynman 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    [ 11.389] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4d99c8f-d440-46c2-aa60-bf3e5c4ef4c5 rw quiet
    [ 11.389] Build Date: 21 September 2014 10:53:13AM
    [ 11.389]
    [ 11.389] Current version of pixman: 0.32.6
    [ 11.389] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 11.389] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 11.389] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Sep 29 22:49:40 2014
    [ 11.402] (==) Using config file: "/etc/X11/xorg.conf"
    [ 11.402] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 11.411] (==) ServerLayout "layout"
    [ 11.411] (**) |-->Screen "nvidia" (0)
    [ 11.411] (**) | |-->Monitor "<default monitor>"
    [ 11.411] (**) | |-->Device "nvidia"
    [ 11.411] (==) No monitor specified for screen "nvidia".
    Using a default monitor configuration.
    [ 11.411] (**) |-->Inactive Device "intel"
    [ 11.411] (==) Automatically adding devices
    [ 11.411] (==) Automatically enabling devices
    [ 11.411] (==) Automatically adding GPU devices
    [ 11.414] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 11.414] Entry deleted from font path.
    [ 11.414] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 11.414] Entry deleted from font path.
    [ 11.414] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 11.414] Entry deleted from font path.
    [ 11.414] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 11.414] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 11.414] Entry deleted from font path.
    [ 11.414] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 11.414] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 11.414] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 11.414] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 11.414] (II) Loader magic: 0x818d80
    [ 11.414] (II) Module ABI versions:
    [ 11.414] X.Org ANSI C Emulation: 0.4
    [ 11.414] X.Org Video Driver: 18.0
    [ 11.414] X.Org XInput driver : 21.0
    [ 11.414] X.Org Server Extension : 8.0
    [ 11.414] (EE) systemd-logind: failed to get session: PID 410 does not belong to any known session
    [ 11.415] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 11.415] (--) PCI:*(0:0:2:0) 8086:0416:1558:3537 rev 6, Mem @ 0xf7400000/4194304, 0xd0000000/268435456, I/O @ 0x0000f000/64
    [ 11.415] (--) PCI: (0:1:0:0) 10de:11e2:1558:3537 rev 161, Mem @ 0xf6000000/16777216, 0xe0000000/268435456, 0xf0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
    [ 11.415] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 11.416] (II) LoadModule: "glx"
    [ 11.417] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 11.425] (II) Module glx: vendor="X.Org Foundation"
    [ 11.425] compiled for 1.16.1, module version = 1.0.0
    [ 11.425] ABI class: X.Org Server Extension, version 8.0
    [ 11.425] (==) AIGLX enabled
    [ 11.425] (II) LoadModule: "nvidia"
    [ 11.425] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 11.432] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 11.432] compiled for 4.0.2, module version = 1.0.0
    [ 11.432] Module class: X.Org Video Driver
    [ 11.433] (II) LoadModule: "modesetting"
    [ 11.433] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
    [ 11.433] (II) Module modesetting: vendor="X.Org Foundation"
    [ 11.433] compiled for 1.16.0, module version = 0.9.0
    [ 11.433] Module class: X.Org Video Driver
    [ 11.433] ABI class: X.Org Video Driver, version 18.0
    [ 11.433] (II) NVIDIA dlloader X Driver 340.32 Tue Aug 5 20:13:04 PDT 2014
    [ 11.433] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 11.434] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
    [ 11.434] (++) using VT number 7
    [ 11.438] (II) Loading sub module "fb"
    [ 11.438] (II) LoadModule: "fb"
    [ 11.439] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 11.440] (II) Module fb: vendor="X.Org Foundation"
    [ 11.440] compiled for 1.16.1, module version = 1.0.0
    [ 11.440] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 11.440] (WW) Unresolved symbol: fbGetGCPrivateKey
    [ 11.440] (II) Loading sub module "wfb"
    [ 11.440] (II) LoadModule: "wfb"
    [ 11.440] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 11.441] (II) Module wfb: vendor="X.Org Foundation"
    [ 11.441] compiled for 1.16.1, module version = 1.0.0
    [ 11.441] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 11.441] (II) Loading sub module "ramdac"
    [ 11.441] (II) LoadModule: "ramdac"
    [ 11.441] (II) Module "ramdac" already built-in
    [ 11.514] (II) modesetting(1): using drv /dev/dri/card0
    [ 11.514] (II) modesetting(G0): using drv /dev/dri/card0
    [ 11.514] (EE) Screen 1 deleted because of no matching config section.
    [ 11.514] (II) UnloadModule: "modesetting"
    [ 11.514] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "nvidia" for depth/fbbpp 24/32
    [ 11.514] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 11.514] (==) NVIDIA(0): RGB weight 888
    [ 11.514] (==) NVIDIA(0): Default visual is TrueColor
    [ 11.514] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 11.514] (**) NVIDIA(0): Option "UseEdidDpi" "FALSE"
    [ 11.514] (**) NVIDIA(0): Option "DPI" "106 x 106"
    [ 11.514] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
    [ 11.514] (**) NVIDIA(0): Enabling 2D acceleration
    [ 11.514] (EE) NVIDIA(0): Failed to initialize the GLX module; please check in your X
    [ 11.514] (EE) NVIDIA(0): log file that the GLX module has been loaded in your X
    [ 11.514] (EE) NVIDIA(0): server, and that the module is the NVIDIA GLX module. If
    [ 11.514] (EE) NVIDIA(0): you continue to encounter problems, Please try
    [ 11.514] (EE) NVIDIA(0): reinstalling the NVIDIA driver.
    [ 12.009] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20130102)
    [ 12.010] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 765M (GK106) at PCI:1:0:0 (GPU-0)
    [ 12.010] (--) NVIDIA(0): Memory: 2097152 kBytes
    [ 12.010] (--) NVIDIA(0): VideoBIOS: 80.06.51.00.17
    [ 12.010] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 12.010] (--) NVIDIA(0): Valid display device(s) on GeForce GTX 765M at PCI:1:0:0
    [ 12.010] (--) NVIDIA(0): none
    [ 12.010] (II) NVIDIA(0): Validated MetaModes:
    [ 12.010] (II) NVIDIA(0): "NULL"
    [ 12.010] (II) NVIDIA(0): Virtual screen size determined to be 640 x 480
    [ 12.010] (**) NVIDIA(0): DPI set to (106, 106); computed from "DPI" X config option
    [ 12.010] (==) modesetting(G0): Depth 24, (==) framebuffer bpp 32
    [ 12.010] (==) modesetting(G0): RGB weight 888
    [ 12.010] (==) modesetting(G0): Default visual is TrueColor
    [ 12.010] (II) modesetting(G0): ShadowFB: preferred YES, enabled YES
    [ 12.011] (II) modesetting(G0): Output eDP-1-0 has no monitor section
    [ 12.012] (II) modesetting(G0): Output VGA-1-0 has no monitor section
    [ 12.012] (II) modesetting(G0): Output HDMI-1-0 has no monitor section
    [ 12.013] (II) modesetting(G0): EDID for output eDP-1-0
    [ 12.013] (II) modesetting(G0): Manufacturer: CMO Model: 1720 Serial#: 0
    [ 12.013] (II) modesetting(G0): Year: 2011 Week: 2
    [ 12.013] (II) modesetting(G0): EDID Version: 1.4
    [ 12.013] (II) modesetting(G0): Digital Display Input
    [ 12.013] (II) modesetting(G0): 6 bits per channel
    [ 12.013] (II) modesetting(G0): Digital interface is undefined
    [ 12.013] (II) modesetting(G0): Max Image Size [cm]: horiz.: 38 vert.: 21
    [ 12.013] (II) modesetting(G0): Gamma: 2.20
    [ 12.013] (II) modesetting(G0): No DPMS capabilities specified
    [ 12.013] (II) modesetting(G0): Supported color encodings: RGB 4:4:4
    [ 12.013] (II) modesetting(G0): First detailed timing is preferred mode
    [ 12.013] (II) modesetting(G0): Preferred mode is native pixel format and refresh rate
    [ 12.013] (II) modesetting(G0): redX: 0.640 redY: 0.330 greenX: 0.300 greenY: 0.610
    [ 12.013] (II) modesetting(G0): blueX: 0.150 blueY: 0.060 whiteX: 0.313 whiteY: 0.329
    [ 12.013] (II) modesetting(G0): Manufacturer's mask: 0
    [ 12.013] (II) modesetting(G0): Supported detailed timing:
    [ 12.013] (II) modesetting(G0): clock: 140.5 MHz Image Size: 382 x 215 mm
    [ 12.013] (II) modesetting(G0): h_active: 1920 h_sync: 1972 h_sync_end 2007 h_blank_end 2094 h_border: 0
    [ 12.013] (II) modesetting(G0): v_active: 1080 v_sync: 1083 v_sync_end 1089 v_blanking: 1118 v_border: 0
    [ 12.013] (II) modesetting(G0): Supported detailed timing:
    [ 12.013] (II) modesetting(G0): clock: 92.5 MHz Image Size: 382 x 215 mm
    [ 12.013] (II) modesetting(G0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0
    [ 12.013] (II) modesetting(G0): v_active: 1080 v_sync: 1083 v_sync_end 1088 v_blanking: 1111 v_border: 0
    [ 12.013] (II) modesetting(G0): HC9GKÄ173HGE
    [ 12.013] (II) modesetting(G0): Unknown vendor-specific block 0
    [ 12.013] (II) modesetting(G0): EDID (in hex):
    [ 12.013] (II) modesetting(G0): 00ffffffffffff000daf201700000000
    [ 12.013] (II) modesetting(G0): 021501049026157802ed95a3544c9c26
    [ 12.013] (II) modesetting(G0): 0f505400000001010101010101010101
    [ 12.013] (II) modesetting(G0): 010101010101e13680ae703826403423
    [ 12.013] (II) modesetting(G0): 36007ed71000001a1d2480a070381f40
    [ 12.013] (II) modesetting(G0): 302035007ed71000001a000000fe0048
    [ 12.013] (II) modesetting(G0): 4339474b803137334847450a00000000
    [ 12.013] (II) modesetting(G0): 000041319e0000000002010a202000f3
    [ 12.013] (II) modesetting(G0): Printing probed modes for output eDP-1-0
    [ 12.013] (II) modesetting(G0): Modeline "1920x1080"x60.0 140.49 1920 1972 2007 2094 1080 1083 1089 1118 +hsync -vsync (67.1 kHz eP)
    [ 12.013] (II) modesetting(G0): Modeline "1920x1080"x40.0 92.45 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (44.4 kHz e)
    [ 12.013] (II) modesetting(G0): Modeline "1400x1050"x60.0 122.00 1400 1488 1640 1880 1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "1024x768"x120.1 133.47 1024 1100 1212 1400 768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "960x720"x120.0 117.00 960 1024 1128 1300 720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "928x696"x120.1 109.15 928 976 1088 1264 696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "896x672"x120.0 102.40 896 960 1060 1224 672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "800x600"x120.0 81.00 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "700x525"x120.0 61.00 700 744 820 940 525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "640x512"x120.0 54.00 640 664 720 844 512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "640x480"x120.0 54.00 640 688 744 900 480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "512x384"x120.0 32.50 512 524 592 672 384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "400x300"x120.6 20.00 400 420 484 528 300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "400x300"x112.7 18.00 400 412 448 512 300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
    [ 12.013] (II) modesetting(G0): Modeline "320x240"x120.1 12.59 320 328 376 400 240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
    [ 12.014] (II) modesetting(G0): EDID for output VGA-1-0
    [ 12.014] (II) modesetting(G0): EDID for output HDMI-1-0
    [ 12.014] (II) modesetting(G0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 12.014] (==) modesetting(G0): DPI set to (96, 96)
    [ 12.014] (II) Loading sub module "fb"
    [ 12.014] (II) LoadModule: "fb"
    [ 12.014] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 12.014] (II) Module fb: vendor="X.Org Foundation"
    [ 12.014] compiled for 1.16.1, module version = 1.0.0
    [ 12.014] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 12.014] (II) Loading sub module "shadow"
    [ 12.014] (II) LoadModule: "shadow"
    [ 12.014] (II) Loading /usr/lib/xorg/modules/libshadow.so
    [ 12.015] (II) Module shadow: vendor="X.Org Foundation"
    [ 12.015] compiled for 1.16.1, module version = 1.1.0
    [ 12.015] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 12.015] (--) Depth 24 pixmap format is 32 bpp
    [ 12.017] (==) modesetting(G0): Backing store enabled
    [ 12.017] (==) modesetting(G0): Silken mouse enabled
    [ 12.017] (II) modesetting(G0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 12.017] (==) modesetting(G0): DPMS enabled
    [ 12.017] (WW) modesetting(G0): Option "AllowEmptyInitialConfiguration" is not used
    [ 13.273] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
    [ 13.273] (II) NVIDIA: access.
    [ 13.277] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 13.277] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 13.277] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 13.277] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 13.277] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 13.277] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 13.277] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 13.277] (II) NVIDIA(0): Config Options in the README.
    [ 13.277] (II) NVIDIA(0): Setting mode "NULL"
    [ 13.277] (EE) NVIDIA(0): Failed to initiate mode change.
    [ 13.277] (EE) NVIDIA(0): Failed to complete mode change
    [ 13.287] (II) NVIDIA(0): Built-in logo is bigger than the screen.
    [ 13.291] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 13.291] (==) NVIDIA(0): Backing store enabled
    [ 13.291] (==) NVIDIA(0): Silken mouse enabled
    [ 13.291] (==) NVIDIA(0): DPMS enabled
    [ 13.331] (II) Loading sub module "dri2"
    [ 13.331] (II) LoadModule: "dri2"
    [ 13.331] (II) Module "dri2" already built-in
    [ 13.331] (II) NVIDIA(0): [DRI2] Setup complete
    [ 13.331] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 13.331] (--) RandR disabled
    [ 13.335] (II) AIGLX: Screen 0 is not DRI2 capable
    [ 13.335] (EE) AIGLX: reverting to software rendering
    [ 13.421] (II) AIGLX: Loaded and initialized swrast
    [ 13.421] (II) GLX: Initialized DRISWRAST GL provider for screen 0
    [ 13.421] (II) modesetting(G0): Damage tracking initialized
    [ 13.467] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 13.467] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 13.467] (II) LoadModule: "evdev"
    [ 13.467] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 13.469] (II) Module evdev: vendor="X.Org Foundation"
    [ 13.469] compiled for 1.16.0, module version = 2.9.0
    [ 13.469] Module class: X.Org XInput Driver
    [ 13.469] ABI class: X.Org XInput driver, version 21.0
    [ 13.469] (II) Using input driver 'evdev' for 'Power Button'
    [ 13.469] (**) Power Button: always reports core events
    [ 13.469] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 13.470] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 13.470] (--) evdev: Power Button: Found keys
    [ 13.470] (II) evdev: Power Button: Configuring as keyboard
    [ 13.470] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input8/event4"
    [ 13.470] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 13.470] (**) Option "xkb_rules" "evdev"
    [ 13.470] (**) Option "xkb_model" "pc104"
    [ 13.470] (**) Option "xkb_layout" "us"
    [ 13.482] (II) config/udev: Adding input device Video Bus (/dev/input/event8)
    [ 13.482] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 13.482] (II) Using input driver 'evdev' for 'Video Bus'
    [ 13.482] (**) Video Bus: always reports core events
    [ 13.482] (**) evdev: Video Bus: Device: "/dev/input/event8"
    [ 13.482] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 13.482] (--) evdev: Video Bus: Found keys
    [ 13.482] (II) evdev: Video Bus: Configuring as keyboard
    [ 13.482] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input15/event8"
    [ 13.482] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 13.482] (**) Option "xkb_rules" "evdev"
    [ 13.482] (**) Option "xkb_model" "pc104"
    [ 13.482] (**) Option "xkb_layout" "us"
    [ 13.482] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
    [ 13.482] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 13.482] (II) Using input driver 'evdev' for 'Video Bus'
    [ 13.482] (**) Video Bus: always reports core events
    [ 13.482] (**) evdev: Video Bus: Device: "/dev/input/event7"
    [ 13.482] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 13.482] (--) evdev: Video Bus: Found keys
    [ 13.482] (II) evdev: Video Bus: Configuring as keyboard
    [ 13.482] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:4f/LNXVIDEO:00/input/input14/event7"
    [ 13.482] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
    [ 13.482] (**) Option "xkb_rules" "evdev"
    [ 13.482] (**) Option "xkb_model" "pc104"
    [ 13.482] (**) Option "xkb_layout" "us"
    [ 13.482] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 13.482] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 13.482] (II) Using input driver 'evdev' for 'Power Button'
    [ 13.482] (**) Power Button: always reports core events
    [ 13.482] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 13.482] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 13.482] (--) evdev: Power Button: Found keys
    [ 13.482] (II) evdev: Power Button: Configuring as keyboard
    [ 13.482] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5/event1"
    [ 13.482] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
    [ 13.482] (**) Option "xkb_rules" "evdev"
    [ 13.482] (**) Option "xkb_model" "pc104"
    [ 13.482] (**) Option "xkb_layout" "us"
    [ 13.483] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
    [ 13.483] (II) No input driver specified, ignoring this device.
    [ 13.483] (II) This device may have been added with another device file.
    [ 13.483] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
    [ 13.483] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 13.483] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 13.483] (**) Sleep Button: always reports core events
    [ 13.483] (**) evdev: Sleep Button: Device: "/dev/input/event2"
    [ 13.483] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 13.483] (--) evdev: Sleep Button: Found keys
    [ 13.483] (II) evdev: Sleep Button: Configuring as keyboard
    [ 13.483] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input6/event2"
    [ 13.483] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 10)
    [ 13.483] (**) Option "xkb_rules" "evdev"
    [ 13.483] (**) Option "xkb_model" "pc104"
    [ 13.483] (**) Option "xkb_layout" "us"
    [ 13.483] (II) config/udev: Adding drm device (/dev/dri/card1)
    [ 13.483] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 13.483] (EE) /dev/dri/card1: failed to set DRM interface version 1.4: Permission denied
    [ 13.483] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=3 (/dev/input/event9)
    [ 13.483] (II) No input driver specified, ignoring this device.
    [ 13.483] (II) This device may have been added with another device file.
    [ 13.483] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=7 (/dev/input/event10)
    [ 13.483] (II) No input driver specified, ignoring this device.
    [ 13.483] (II) This device may have been added with another device file.
    [ 13.483] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=8 (/dev/input/event11)
    [ 13.483] (II) No input driver specified, ignoring this device.
    [ 13.483] (II) This device may have been added with another device file.
    [ 13.483] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event12)
    [ 13.483] (II) No input driver specified, ignoring this device.
    [ 13.483] (II) This device may have been added with another device file.
    [ 13.483] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event13)
    [ 13.483] (II) No input driver specified, ignoring this device.
    [ 13.483] (II) This device may have been added with another device file.
    [ 13.484] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 13.484] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 13.484] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 13.484] (**) AT Translated Set 2 keyboard: always reports core events
    [ 13.484] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 13.484] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 13.484] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 13.484] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 13.484] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 13.484] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
    [ 13.484] (**) Option "xkb_rules" "evdev"
    [ 13.484] (**) Option "xkb_model" "pc104"
    [ 13.484] (**) Option "xkb_layout" "us"
    [ 13.484] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
    [ 13.484] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 13.484] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 13.484] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 13.484] (II) LoadModule: "synaptics"
    [ 13.484] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 13.485] (II) Module synaptics: vendor="X.Org Foundation"
    [ 13.485] compiled for 1.16.0, module version = 1.8.1
    [ 13.485] Module class: X.Org XInput Driver
    [ 13.485] ABI class: X.Org XInput driver, version 21.0
    [ 13.485] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 13.485] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 13.485] (**) Option "Device" "/dev/input/event6"
    [ 13.596] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    [ 13.596] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5692 (res 66)
    [ 13.596] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4680 (res 102)
    [ 13.596] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 13.596] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 13.596] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 13.596] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 13.596] (**) Option "TapButton1" "1"
    [ 13.596] (**) Option "TapButton2" "2"
    [ 13.596] (**) Option "TapButton3" "3"
    [ 13.596] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 13.596] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 13.650] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input11/event6"
    [ 13.650] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
    [ 13.650] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 13.650] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 13.650] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.037
    [ 13.650] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 13.650] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 13.650] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 13.650] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 13.650] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 13.650] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 13.650] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 13.650] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
    [ 13.650] (II) No input driver specified, ignoring this device.
    [ 13.650] (II) This device may have been added with another device file.
    [ 13.668] removing GPU device /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
    [ 13.668] (II) config/udev: Adding drm device (/dev/dri/card1)
    [ 13.668] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 13.668] (EE) /dev/dri/card1: failed to set DRM interface version 1.4: Permission denied
    lspci
    00:00.0 Host bridge: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor DRAM Controller (rev 06)
    00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor PCI Express x16 Controller (rev 06)
    00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06)
    00:03.0 Audio device: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller (rev 06)
    00:14.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB xHCI (rev 05)
    00:16.0 Communication controller: Intel Corporation 8 Series/C220 Series Chipset Family MEI Controller #1 (rev 04)
    00:1a.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #2 (rev 05)
    00:1b.0 Audio device: Intel Corporation 8 Series/C220 Series Chipset High Definition Audio Controller (rev 05)
    00:1c.0 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #1 (rev d5)
    00:1c.2 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #3 (rev d5)
    00:1c.3 PCI bridge: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #4 (rev d5)
    00:1d.0 USB controller: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #1 (rev 05)
    00:1f.0 ISA bridge: Intel Corporation HM87 Express LPC Controller (rev 05)
    00:1f.2 SATA controller: Intel Corporation 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode] (rev 05)
    00:1f.3 SMBus: Intel Corporation 8 Series/C220 Series Chipset Family SMBus Controller (rev 05)
    01:00.0 3D controller: NVIDIA Corporation GK106M [GeForce GTX 765M] (rev a1)
    03:00.0 Network controller: Intel Corporation Centrino Wireless-N 135 (rev c4)
    04:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. Device 5289 (rev 01)
    04:00.2 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 0a)
    lspci -vv for the vga and 3d controllers (this is an Optimus laptop):
    00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06) (prog-if 00 [VGA controller])
    Subsystem: CLEVO/KAPOK Computer Device 3537
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin A routed to IRQ 49
    Region 0: Memory at f7400000 (64-bit, non-prefetchable) [size=4M]
    Region 2: Memory at d0000000 (64-bit, prefetchable) [size=256M]
    Region 4: I/O ports at f000 [size=64]
    Expansion ROM at <unassigned> [disabled]
    Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Address: fee00018 Data: 0000
    Capabilities: [d0] Power Management version 2
    Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [a4] PCI Advanced Features
    AFCap: TP+ FLR+
    AFCtrl: FLR-
    AFStatus: TP-
    Kernel driver in use: i915
    Kernel modules: i915
    01:00.0 3D controller: NVIDIA Corporation GK106M [GeForce GTX 765M] (rev a1)
    Subsystem: CLEVO/KAPOK Computer Device 3537
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin A routed to IRQ 52
    Region 0: Memory at f6000000 (32-bit, non-prefetchable) [size=16M]
    Region 1: Memory at e0000000 (64-bit, prefetchable) [size=256M]
    Region 3: Memory at f0000000 (64-bit, prefetchable) [size=32M]
    Region 5: I/O ports at e000 [size=128]
    [virtual] Expansion ROM at f7000000 [disabled] [size=512K]
    Capabilities: [60] Power Management version 3
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [68] MSI: Enable+ Count=1/1 Maskable- 64bit+
    Address: 00000000fee00438 Data: 0000
    Capabilities: [78] Express (v2) Endpoint, MSI 00
    DevCap: MaxPayload 256 bytes, PhantFunc 0, Latency L0s unlimited, L1 <64us
    ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
    MaxPayload 128 bytes, MaxReadReq 512 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
    LnkCap: Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <512ns, L1 <4us
    ClockPM+ Surprise- LLActRep- BwNot-
    LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- CommClk+
    ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 2.5GT/s, Width x8, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
    DevCap2: Completion Timeout: Range AB, TimeoutDis+, LTR-, OBFF Not Supported
    DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled
    LnkCtl2: Target Link Speed: 8GT/s, EnterCompliance- SpeedDis-
    Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
    Compliance De-emphasis: -6dB
    LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete+, EqualizationPhase1+
    EqualizationPhase2+, EqualizationPhase3+, LinkEqualizationRequest+
    Capabilities: [b4] Vendor Specific Information: Len=14 <?>
    Capabilities: [100 v1] Virtual Channel
    Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
    Arb: Fixed- WRR32- WRR64- WRR128-
    Ctrl: ArbSelect=Fixed
    Status: InProgress-
    VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
    Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
    Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
    Status: NegoPending- InProgress-
    Capabilities: [128 v1] Power Budgeting <?>
    Capabilities: [600 v1] Vendor Specific Information: ID=0001 Rev=1 Len=024 <?>
    Capabilities: [900 v1] #19
    Kernel driver in use: nvidia
    Kernel modules: nouveau, nvidia
    /etc/X11/xorg.conf
    Section "ServerLayout"
    Identifier "layout"
    Screen 0 "nvidia"
    Inactive "intel"
    EndSection
    Section "Device"
    Identifier "nvidia"
    Driver "nvidia"
    BusID "PCI:PCI address determined earlier"
    # e.g. BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "nvidia"
    Device "nvidia"
    Option "AllowEmptyInitialConfiguration"
    EndSection
    Section "Device"
    Identifier "intel"
    Driver "modesetting"
    EndSection
    Section "Screen"
    Identifier "intel"
    Device "intel"
    EndSection
    systemctl status:
    ● feynman
    State: running
    Jobs: 0 queued
    Failed: 0 units
    Since: Mon 2014-09-29 22:49:32 BST; 7min ago
    CGroup: /
    ├─1 /sbin/init
    ├─system.slice
    │ ├─dbus.service
    │ │ └─394 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation
    │ ├─system-netctl\x2dauto.slice
    │ │ └─[email protected]
    │ │ ├─418 wpa_supplicant -B -P /run/wpa_supplicant_wlp3s0.pid -i wlp3s0 -D nl80211,wext -c/run/network/wpa_supplicant_wlp3s0.conf -W
    │ │ ├─420 wpa_actiond -p /run/wpa_supplicant -i wlp3s0 -P /run/network/wpa_actiond_wlp3s0.pid -a /usr/lib/network/auto.action
    │ │ └─545 dhcpcd -4 -q -t 30 -K -L wlp3s0
    │ ├─systemd-journald.service
    │ │ └─192 /usr/lib/systemd/systemd-journald
    │ ├─systemd-logind.service
    │ │ └─393 /usr/lib/systemd/systemd-logind
    │ ├─systemd-udevd.service
    │ │ └─222 /usr/lib/systemd/systemd-udevd
    │ ├─kdm.service
    │ │ ├─408 /usr/bin/kdm -nodaemon
    │ │ ├─410 /usr/bin/Xorg.bin -br -novtswitch -quiet :0 vt7 -nolisten tcp -auth /var/run/xauth/A:0-XeCSpb
    │ │ ├─493 -:0
    │ │ └─494 /usr/lib/kde4/libexec/kdm_greet
    │ └─gpm.service
    │ └─395 /usr/bin/gpm -m /dev/input/mice -t imps2
    └─user.slice
    └─user-0.slice
    ├─[email protected]
    │ ├─547 /usr/lib/systemd/systemd --user
    │ └─549 (sd-pam)
    └─session-c1.scope
    ├─407 login -- root
    ├─551 -bash
    └─591 systemctl status

  • Error ORA-01152: file 1 was not restored from a sufficiently old backup

    Its also not thread just to share info with oracle gurus here.If my findings for the below workaround is wrong then please do correct me.
    Sometime you get the error after performing restoring controlfile when you don't have autobackup controlfile on
    error ORA-01152: file 1 was not restored from a sufficiently old backup
    why?
    Cause When you shutdown the database with using the normal,transactional or immediate options not abort a full checkpoint occurs.A full checkpoint ensures that all of the dirty blocks contained in the buffer cache are written to the data files,the database comes into synchronized state at this time i.e controlfile CKPT SCN=databasefile CKPT.
    Like in this demo i am not taking backup the database in opened mode
    Demo 1
    SQL> archive log list
    Database log mode              No Archive Mode
    Automatic archival             Disabled
    Archive destination            USE_DB_RECOVERY_FILE_DEST
    Oldest online log sequence     9
    Current log sequence           11
    SQL> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup mount
    ORACLE instance started.
    Total System Global Area  171966464 bytes
    Fixed Size                   787988 bytes
    Variable Size             145488364 bytes
    Database Buffers           25165824 bytes
    Redo Buffers                 524288 bytes
    Database mounted.
    SQL> alter database archivelog
      2  /
    Database altered.
    SQL> archive log list
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            USE_DB_RECOVERY_FILE_DEST
    Oldest online log sequence     9
    Next log sequence to archive   11
    Current log sequence           11
    Recovery Manager: Release 10.1.0.2.0 - Production
    Copyright (c) 1995, 2004, Oracle.  All rights reserved.
    RMAN> connect target sys/sys
    connected to target database: ORCL1 (DBID=1024798223)
    RMAN> list backup
    2> ;
    using target database controlfile instead of recovery catalog
    RMAN> backup database
    2> ;
    Starting backup at 08-DEC-07
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting full datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    input datafile fno=00001 name=C:\ORACLE10G\ORACLE\ORADATA\ORCL1\ORCL1\SYSTEM01.DBF
    input datafile fno=00003 name=C:\ORACLE10G\ORACLE\ORADATA\ORCL1\ORCL1\SYSAUX01.DBF
    input datafile fno=00002 name=C:\ORACLE10G\ORACLE\ORADATA\ORCL1\ORCL1\UNDOTBS01.DBF
    input datafile fno=00004 name=C:\ORACLE10G\ORACLE\ORADATA\ORCL1\ORCL1\USERS01.DBF
    channel ORA_DISK_1: starting piece 1 at 08-DEC-07
    channel ORA_DISK_1: finished piece 1 at 08-DEC-07
    piece handle=C:\ORACLE\FLASH_RECOVERY_AREA\ORCL1\ORCL1\BACKUPSET\2007_12_08\O1_MF_NNNDF_TAG20071208T143558_3ONSCZBY_.BKP
    comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:45
    channel ORA_DISK_1: starting full datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    including current controlfile in backupset
    including current SPFILE in backupset
    channel ORA_DISK_1: starting piece 1 at 08-DEC-07
    channel ORA_DISK_1: finished piece 1 at 08-DEC-07
    piece handle=C:\ORACLE\FLASH_RECOVERY_AREA\ORCL1\ORCL1\BACKUPSET\2007_12_08\O1_MF_NCSNF_TAG20071208T143558_3ONSFGN7_.BKP
    comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:05
    Finished backup at 08-DEC-07
    SQL> shutdown immediate
    ORA-01109: database not open
    Database dismounted.
    ORACLE instance shut down.Now i delete the controlfile from OS command.
    SQL> startup
    ORACLE instance started.
    Total System Global Area  171966464 bytes
    Fixed Size                   787988 bytes
    Variable Size             145488364 bytes
    Database Buffers           25165824 bytes
    Redo Buffers                 524288 bytes
    ORA-00205: error in identifying controlfile, check alert log for more infoi don't have automatized control file backup neither i have control file copy.What i will do
    to recover control file i will restore controlfile from backup.Before doing it that i will bring
    the database in mount state.
    SQL> shutdown immediate
    ORA-01507: database not mounted
    ORACLE instance shut down.
    SQL> startup mount
    ORACLE instance started.
    Total System Global Area  171966464 bytes
    Fixed Size                   787988 bytes
    Variable Size             145488364 bytes
    Database Buffers           25165824 bytes
    Redo Buffers                 524288 bytes
    ORA-00205: error in identifying controlfile, check alert log for more infoi have two backup piece in my backupset folder you cant check control file backup
    existence with list backup controlfile at RMAN prompt cause it needs database in
    mount state.You will have to test both backup set pieces.
    RMAN> restore controlfile from
    'C:\oracle\flash_recovery_area\orcl1\ORCL1\BACKUPSET\2007_12_08\O1_MF_NCSNF_TAG20071208T143558_3ONSFGN7_.BKP';
    Starting restore at 08-DEC-07
    using channel ORA_DISK_1
    channel ORA_DISK_1: restoring controlfile
    channel ORA_DISK_1: restore complete
    output filename=C:\ORACLE10G\ORACLE\ORADATA\ORCL1\ORCL1\CONTROL01.CTL
    output filename=C:\ORACLE10G\ORACLE\ORADATA\ORCL1\ORCL1\CONTROL02.CTL
    output filename=C:\ORACLE10G\ORACLE\ORADATA\ORCL1\ORCL1\CONTROL03.CTL
    Finished restore at 08-DEC-07
    SQL> startup
    ORACLE instance started.
    Total System Global Area  171966464 bytes
    Fixed Size                   787988 bytes
    Variable Size             145488364 bytes
    Database Buffers           25165824 bytes
    Redo Buffers                 524288 bytes
    Database mounted.
    ORA-01589: must use RESETLOGS or NORESETLOGS option for database open
    SQL> alter database open resetlogs
      2  /
    Database altered.You can see database now comes into open mode without raising error error
    ORA-01152: file 1 was not restored from a sufficiently old backup,you can see that
    database shutdown with immediate which synchronized the control file with database
    file.
    Demo 2
    ------------Now in this demo i am taking backup the database in opened mode before backup
    database i have deleted alls previous backup.
    Database is in opened moder if i take the backup in database opened mode
    (i.e full checkpoint will not occur controlfile CKPT SCN<>datafile CKPT SCN)
    you will get the error when you will restore controlfile from backup set.
    error ORA-01152: file 1 was not restored from a sufficiently old backup
    Reason is that CKPT SCN in the datafiles will be ahead of the backupset control file no
    full checkpoint occuring. You are not taking backup in consistent state and the
    backupset will not be in consistent state.When you will restore the control file from
    backupset then yours restored control file SCN will be lesser then yours datafile
    checkpoint SCN.
    SQL> startup
    ORACLE instance started.
    Total System Global Area  171966464 bytes
    Fixed Size                   787988 bytes
    Variable Size             145488364 bytes
    Database Buffers           25165824 bytes
    Redo Buffers                 524288 bytes
    Database mounted.
    Database opened.
    RMAN> backup database
    2> ;
    Starting backup at 11-DEC-07
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting full datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    input datafile fno=00001 name=C:\ORACLE10G\ORACLE\ORADATA\ORCL1\ORCL1\SYSTEM01.D
    BF
    input datafile fno=00003 name=C:\ORACLE10G\ORACLE\ORADATA\ORCL1\ORCL1\SYSAUX01.D
    BF
    input datafile fno=00002 name=C:\ORACLE10G\ORACLE\ORADATA\ORCL1\ORCL1\UNDOTBS01.
    DBF
    input datafile fno=00004 name=C:\ORACLE10G\ORACLE\ORADATA\ORCL1\ORCL1\USERS01.DB
    F
    channel ORA_DISK_1: starting piece 1 at 11-DEC-07
    channel ORA_DISK_1: finished piece 1 at 11-DEC-07
    piece handle=C:\ORACLE\FLASH_RECOVERY_AREA\ORCL1\ORCL1\BACKUPSET\2007_12_11\O1_M
    F_NNNDF_TAG20071211T125123_3OWJD0V5_.BKP comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:56
    channel ORA_DISK_1: starting full datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    including current controlfile in backupset
    including current SPFILE in backupset
    channel ORA_DISK_1: starting piece 1 at 11-DEC-07
    channel ORA_DISK_1: finished piece 1 at 11-DEC-07
    piece handle=C:\ORACLE\FLASH_RECOVERY_AREA\ORCL1\ORCL1\BACKUPSET\2007_12_11\O1_M
    F_NCSNF_TAG20071211T125123_3OWJFT97_.BKP comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:09
    Finished backup at 11-DEC-07now i shut down the database in order to delete the control file from os command
    SQL> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> deleting the controlfile from oradata folder
    SQL> startup
    ORACLE instance started.
    Total System Global Area  171966464 bytes
    Fixed Size                   787988 bytes
    Variable Size             145488364 bytes
    Database Buffers           25165824 bytes
    Redo Buffers                 524288 bytes
    ORA-00205: error in identifying controlfile, check alert log for more infonow i would restore the controlfile from backupset.
    RMAN> restore controlfile from 'C:\oracle\flash_recovery_area\orcl1\ORCL1\BACKUP
    SET\2007_12_11\O1_MF_NCSNF_TAG20071211T125123_3OWJFT97_.BKP'
    2> ;
    Starting restore at 11-DEC-07
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=159 devtype=DISK
    channel ORA_DISK_1: restoring controlfile
    channel ORA_DISK_1: restore complete
    output filename=C:\ORACLE10G\ORACLE\ORADATA\ORCL1\ORCL1\CONTROL01.CTL
    output filename=C:\ORACLE10G\ORACLE\ORADATA\ORCL1\ORCL1\CONTROL02.CTL
    output filename=C:\ORACLE10G\ORACLE\ORADATA\ORCL1\ORCL1\CONTROL03.CTL
    Finished restore at 11-DEC-07
    SQL> shutdown immediate
    ORA-01507: database not mounted
    ORACLE instance shut down.
    SQL> startup
    ORACLE instance started.
    Total System Global Area  171966464 bytes
    Fixed Size                   787988 bytes
    Variable Size             145488364 bytes
    Database Buffers           25165824 bytes
    Redo Buffers                 524288 bytes
    Database mounted.
    ORA-01589: must use RESETLOGS or NORESETLOGS option for database open
    SQL> alter database open resetlogs
      2  /
    alter database open resetlogs
    ERROR at line 1:
    ORA-01152: file 1 was not restored from a sufficiently old backup
    ORA-01110: data file 1: 'C:\ORACLE10G\ORACLE\ORADATA\ORCL1\ORCL1\SYSTEM01.DBF'what would you do that now you have lost controlfile ,you dont have copy either you dont
    have autobackup on for controlfile,you need to create the control file
    SQL> shutdown immediate
    ORA-01109: database not open
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup nomount
    ORACLE instance started.
    Total System Global Area  171966464 bytes
    Fixed Size                   787988 bytes
    Variable Size             145488364 bytes
    Database Buffers           25165824 bytes
    Redo Buffers                 524288 bytes
    SQL> create controlfile reuse database orcl1 noresetlogs archivelog
      2  MAXLOGFILES 50
      3  MAXLOGMEMBERS 3
      4  MAXDATAFILES 300
      5  MAXINSTANCES 8
      6  MAXLOGHISTORY 500
      7  LOGFILE
      8                     GROUP 1 'C:\oracle10g\oracle\oradata\orcl1\orcl1\redo01.LOG',
      9                     GROUP 2 'C:\oracle10g\oracle\oradata\orcl1\orcl1\redo02.LOG',
    10                     GROUP 3 'C:\oracle10g\oracle\oradata\orcl1\orcl1\redo03.LOG'
    11  DATAFILE
    12                     'C:\oracle10g\oracle\oradata\orcl1\orcl1\SYSAUX01.DBF',
    13                     'C:\oracle10g\oracle\oradata\orcl1\orcl1\SYSTEM01.DBF',
    14                     'C:\oracle10g\oracle\oradata\orcl1\orcl1\UNDOTBS01.DBF',
    15                     'C:\oracle10g\oracle\oradata\orcl1\orcl1\USERS01.DBF'
    16 
    SQL> /
    Control file created.
    SQL> alter database open
      2  /
    Database altered.Khurram

    No need to manually recreate the controlfile. Simply issue RECOVER DATABASE prior to opening database.
    E:\>rman target /
    Recovery Manager: Release 10.2.0.1.0 - Production on Sun Dec 30 01:22:34 2007
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    connected to target database (not started)
    RMAN> startup
    Oracle instance started
    database mounted
    database opened
    Total System Global Area     612368384 bytes
    Fixed Size                     2006192 bytes
    Variable Size                239076176 bytes
    Database Buffers             364904448 bytes
    Redo Buffers                   6381568 bytes
    RMAN> backup database;
    Starting backup at 30-DEC-07
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=148 devtype=DISK
    channel ORA_DISK_1: starting full datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    input datafile fno=00001 name=E:\ORACLE\ORADATA\ORA10G\SYSTEM01.DBF
    input datafile fno=00002 name=E:\ORACLE\ORADATA\ORA10G\UNDOTBS01.DBF
    input datafile fno=00003 name=E:\ORACLE\ORADATA\ORA10G\SYSAUX01.DBF
    input datafile fno=00004 name=E:\ORACLE\ORADATA\ORA10G\USERS01.DBF
    channel ORA_DISK_1: starting piece 1 at 30-DEC-07
    channel ORA_DISK_1: finished piece 1 at 30-DEC-07
    piece handle=D:\DB_BACKUPS\12J4S23M_1_1.BKP tag=TAG20071230T012302 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:01:35
    channel ORA_DISK_1: starting full datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    including current control file in backupset
    including current SPFILE in backupset
    channel ORA_DISK_1: starting piece 1 at 30-DEC-07
    channel ORA_DISK_1: finished piece 1 at 30-DEC-07
    piece handle=D:\DB_BACKUPS\13J4S26L_1_1.BKP tag=TAG20071230T012302 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:03
    Finished backup at 30-DEC-07
    RMAN> shutdown immediate
    database closed
    database dismounted
    Oracle instance shut down
    RMAN> exit
    Recovery Manager complete.
    E:\>del e:\oracle\oradata\ora10g\*.ctl
    E:\>rman target /
    Recovery Manager: Release 10.2.0.1.0 - Production on Sun Dec 30 01:25:39 2007
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    connected to target database (not started)
    RMAN> startup
    Oracle instance started
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of startup command at 12/30/2007 01:25:56
    ORA-00205: error in identifying control file, check alert log for more info
    RMAN> restore controlfile from 'D:\DB_BACKUPS\13J4S26L_1_1.BKP';
    Starting restore at 30-DEC-07
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=157 devtype=DISK
    channel ORA_DISK_1: restoring control file
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:03
    output filename=E:\ORACLE\ORADATA\ORA10G\CONTROL01.CTL
    output filename=E:\ORACLE\ORADATA\ORA10G\CONTROL02.CTL
    output filename=E:\ORACLE\ORADATA\ORA10G\CONTROL03.CTL
    Finished restore at 30-DEC-07
    RMAN> alter database mount;
    database mounted
    released channel: ORA_DISK_1
    RMAN> alter database open resetlogs;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of alter db command at 12/30/2007 01:27:33
    ORA-01152: file 1 was not restored from a sufficiently old backup
    ORA-01110: data file 1: 'E:\ORACLE\ORADATA\ORA10G\SYSTEM01.DBF'
    RMAN> recover database;
    Starting recover at 30-DEC-07
    Starting implicit crosscheck backup at 30-DEC-07
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=156 devtype=DISK
    Crosschecked 1 objects
    Finished implicit crosscheck backup at 30-DEC-07
    Starting implicit crosscheck copy at 30-DEC-07
    using channel ORA_DISK_1
    Finished implicit crosscheck copy at 30-DEC-07
    searching for all files in the recovery area
    cataloging files...
    no files cataloged
    using channel ORA_DISK_1
    starting media recovery
    archive log thread 1 sequence 1 is already on disk as file E:\ORACLE\ORADATA\ORA10G\REDO03.LOG
    archive log filename=E:\ORACLE\ORADATA\ORA10G\REDO03.LOG thread=1 sequence=1
    media recovery complete, elapsed time: 00:00:02
    Finished recover at 30-DEC-07
    RMAN> alter database open resetlogs;
    database opened
    RMAN> shutdown immediate
    database closed
    database dismounted
    Oracle instance shut down
    RMAN> startup
    connected to target database (not started)
    Oracle instance started
    database mounted
    database opened
    Total System Global Area     612368384 bytes
    Fixed Size                     2006192 bytes
    Variable Size                247464784 bytes
    Database Buffers             356515840 bytes
    Redo Buffers                   6381568 bytes
    RMAN>

  • Performance Question on Time dimension.

    Hi all,
    I have a cube with a date dimension, which represents a snapshot date for open orders on the system ( 5 other dimensions apart from this one ) - this is updated daily.
    Should I:
    (1) build all dates for the foreseeable future
    (2) add each new snapshot date in day by day.
    Each seems to have pros & cons, 1 doesnt need to restructure every dimension build, but the calculation seems to take longer, 2 seems to restructure the outline every time which takes longer but the calculation is quicker.
    I'd value anyone's thoughts or experience on this.
    Essbase 11.1.1 on redhat LINUX.
    Thanks

    Why not just build the dimension (every two years?) and incorporate a defrag routine in your data load -- I'm guessing that something is fragmenting your db although a sparse restructure shouldn't be fixing that?
    This would be easy to test -- try the first approach and look at PAG file size, then try the second and look at the same. Again, a sparse restructure causes Essbase to rewrite the .IND file -- the .PAG file just gets added to as new sparse member data comes in. That should be the same behavior to .PAG whether the members exist or not -- Essbase doesn't create or rewrite to existing blocks until there's data.
    Or is it possible that you're using Intelligent Calc and Essbase is only calculating the dirty blocks? That sort-of, kind-of makes sense although I have to wonder why the number of dirty blocks would be different between the two approaches.
    Regards,
    Cameron Lackpour

  • Tables stored in memory but may be accessed from other sessions

    Dear Oracle experts,
    it may be a stupid question but I'm searching for the best possibility to create a kind of temporary table which may be accessed from other sessions.
    Could you provide some hints/ catchwords to speed up my recherches.
    Thank you very much,
    Daniel

    danielwetzler wrote:
    danielwetzler wrote:
    I fear that the caching is not suitable for my case because of the reasons decribed in my other postings...First of all I don't think that you need to worry about the effectiveness of the caching in your particular case. In addition Oracle is very clever at when to actually write the dirty blocks from the buffer cache to the disks, so if your amount of data written to the result table is fairly small and no other activity is going on your system it won't get written to disk immediately anyway but stay in memory until any of the conditions are met that trigger the database writer to flush the blocks to disk.
    But there are options you could consider if you want to avoid as much of the overhead as possible and to write the results of your calculation to the result table as fast as possible.
    You could use direct-path inserts (INSERT /*+ APPEND */) and set the result table to "NOLOGGING". This way no undo and minimum redo is generated.
    Note however that there are certain caveats and restrictions to consider when using such an approach, e.g. your result table won't be recoverable (which you say is OK), only one direct-path insert is allowed simultaneously (it blocks the table exclusively, no other DML possible until you commit/rollback the transaction), and the direct-path insert has some restrictions. If any of these apply that prevent the direct-path operation then it silently falls back to "conventional" insert mode which generates undo and redo. One of the more annoying restrictions is that you can't read from a table that has been written to in direct-path mode within the same transaction, you first have to commit the transaction, otherwise you get "ORA-12838: cannot read/modify an object after modifying it in parallel". This means by simply adding the APPEND hint you might break existing logic.
    Finally the direct-path insert never re-uses free space in blocks below the current high-water mark, which means if you perform a direct-path insert and afterwards delete rows from the table and repeat again a direct-path insert operation your segment will grow and the empty space in the already used blocks won't get re-used. Best way would be to truncate the table rather than deleting rows from it.
    There are workarounds available to overcome some of these direct-path insert limitations (exclusive lock, truncate instead of delete etc.), like using a partitioned table (if you have a suitable edition/license), because direct-path inserts can be restricted to partitions. In this case you can do simultaneous direct-path inserts if you use different partitions, but you need then some kind of logic that determines which partition to use.
    Regards,
    Randolf
    Oracle related stuff blog:
    http://oracle-randolf.blogspot.com/
    SQLTools++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676/
    http://sourceforge.net/projects/sqlt-pp/

  • Question which really disturbs you

    Hi experts,
    I have a question which is really tempting me to ask somebody. But due to its
    silly nature I never ask anyone. anyway im posting it now.
    I'm inserting million of rows in a table which generates enormous Redo records
    which makes redo buffer to fill. At one stage( possibly 1/3'rd of redo buffer) it is transferred to redologs, i.e. even uncommited transaction also gets logged in it.
    I didn't commit any transaction untill now. My transaction never ends, i continue to insert more and more million records which makes the redolog file to fill and tends to switch the logfile. My database is in archive log mode.
    my question is,
    1. whether the uncommited transaction is written to archived logs.
    2. what will be the status of the controlfile at this point of time.
    3. If i issue rollback, will i retrieve data from undo.
    4. How is the transaction gets synchronized in database.
    please reply me
    Thanks
    SM

    Oracle will 'empty' the redo buffer to theredo log file:
    - when it has filled to 1M
    - when it is 1/2 full
    - when a commit happens
    - every 3 seconds
    - when the DBWR is called to move out dirty blocks.
    This is documented at
    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14220/process.htm#i7261
    One of the benefits - we can minimize the time required to return from a commit request.
    Remember that a commit request is simply a confirmation that the last remaining portion of a transaction's redo has been written to the redo log file. Once the commit has returned, we know that the redo information is safely tucked away, so other processes can use the resources we had been using.
    (At the same time - we do not 'release' any resources as part of a commit. Others will come along and look whether the resources are in use, will note that we no longer need them, and will release the resources for us. So a commit can happen really fast.)
    One common myth is that the tablespace's data files are important. They are nothing more than a backup (or materialized view) of the most recent contents of the database buffer cache plus any changes in the redo log file. By calling up the backup in the data files, we can avoid recreating a block from the initial format state and applying all redo. In an extreme case (called crash recovery) we actually do use a previous known image of the database blocks and apply redo.
    Oracle will create an archive copy of a redo log after switching from the redo log and before reusing it. It does not matter whether a commit has happened.
    During a transaction, the person making a change updates the block in place. A copy of the before image of the changed parts of the block (changed parts of the row) is placed in the UNDO or ROLLBACK area. Therefore, when a commit happens, the change is already in the block.
    When a person 'A' wants to roll back, the block is rebuilt to the 'start of transaction' state. This is expensive - Oracle is built on the assumption that commits must be fast and commits happen a lot more often than rollbacks.
    If person 'B' starts a a long query (say a table scan) on the same table as person 'A' is updating, but the scan gets to the block after person 'A' has updated the block, a 'consistent read' copy of the block will be created and the rollback will be applied to tyhe block. This ensures that person 'B' will always see the block the way it looked when his query started.
    This consistent read process fails with an ORA-01555 "snapshot too old" error, if:
    - person 'A' has committed before person 'B' could rebuild the block, and
    - there is not enough rollback space to keep person 'A's undo lying around, and
    - someone else grabbed the rollback because they needed it for an update.

Maybe you are looking for