Generic RMI Loader

Hello,
I'm trying to build a generic RMI loader object, i have for example 2 Remote Objects with 2 interfaces
Interface_A and Interface_B
then in my load code i have to define
private Interface_A objA;
private void someLoadMethod() {
objA = (interface_A) Naming.lookup(some_url);
the idea is to have a class where:
you define a generic objec:
private Object obj;
private Object ifaceObj;
private void someLoadMethod() {
obj = (ifaceObj) Naming.lookup(some_url);
ifaceObj must be the remote object interface..
with this you can load multiple RMI objecs with one class so can i use something like this or try with class.forName and some config files to specify a list of interfaces provided by the server?
hope you understant my question,
Thanks,
Martin Hermosilla

Hello Martin,
If I understand your question, I think I may be able to help.
I host a free software project at Sun's java.net:
https://cajo.dev.java.net
It deals with loading any type of object using RMI, all thorough a single interface. The project site has lots of documentation, examples, Javadocs, and of course full free source code.
I hope it can help you,
John

Similar Messages

  • Generic extraction loading and performances issues

    hi,
          any one can give the details about the generic extraction loading as well as performance issues.
    advance thanks
    regards
    praveen

    Hi,
    when there is no suitable business content datasource we go for creating generic data source.
    by using generic data source we can extract data present in single or multiple tables.
    If the data is present in the single table we go for generic data source extracting from table.
    If the data that is to be extracted is present in multiple tables and the relation between the tables is one to one and if there is a common field in both the tables we create a view on these tables and create a generic data source extracting from view.
    if you want to extract data from different tables and there is no common field we create a info set on these tables and create a generic datasource extracting from query.
    if you want to extarc the data from different tables and the relation is one to many  or many to many we create a generic data source from function module.
    If we extarct from function module ,at run time it has to execute the code and brings the data to BW.so it degrades the loading performance.
    regards,

  • RMI load Balancing -Any recommendations !

    Hi all ,
    Any Suggestions to manage and optimize RMI load balancing in a cluster environment ?

    first thing to remember, an rmi "server" is simply the receiving end of an rmi call (the box which exported a remote object). in a complex distributed system, a box is often both an rmi "client" and an rmi "server". your basic design sounds good. you have one "master" box which is pulling data from the db and distributing the work to one or more "worker" boxes. at the very least, your worker boxes will probably be rmi servers. depending on how you handle job completion (pull vs. push) your master box may also be an rmi server (at the very least, it will be an rmi client).
    in terms of overall design, depending on how you pull the data from the database, you could potentially move the database pull to the worker boxes (since pulling data from a db is often a bottleneck as well). if you can define the data to be processed for a single job as a simple query, then you could just send the query info to a worker box and it could pull the data directly from the db and then process it. this could be potentially be much more performant than having one box pull the data and distribute it (for a variety of reasons).

  • Generic file load

    Option Explicit
    Dim Row, FilePath, Folder
    Const ExcelFileName = "curve linear final limits  ECE-AIS.xls"
    Const ExcelSheetIdx = 1
    Const StpFileName = "curve linear final limits  ECE-AIS.stp"
    Call Data.Root.Clear
    'get FilePath from dialog
    Call FileNameGet("ANY", "FileRead", DataDrvUser, "DAT files (*.dat),*.dat", "", 0, "Select File to Process...")
    If DlgState = "IDCancel" Then Call AutoQuit
    FilePath = FileDlgName
    'Load dat file
    FilePath = AutoActPath & "C100227-6.DAT"
    Folder = NameSplit(FilePath, "P")
    Call DataFileLoad(FilePath)
    'import limit channels from Excel file
    Call ExcelImport(Folder & ExcelFileName, ExcelSheetIdx, 0, Folder & StpFileName)
    'load the VIEW layout to show the data and (eventually) the envelope curves
    Call View.LoadLayout(AutoActPath & "TUV.TDV")
    'Search for the first Row where the value in channel 2 has exceeded 1.0, add 0s to shift the envelope curves
    Row = Find("Ch(2) > 1.0")
    IF Row > 0 THEN
      Call ChnAreaInsert0(3, 1, Row+1)
      Call ChnAreaInsert0(4, 1, Row+1)
    END IF
    'Come to report panel, refresh it to see the 3 curves
    Call PicLoad(AutoActPath & "TUV.TDR")
    Call PicUpdate(0)
    Hi all, 
    In the above script, what ever the dat file i load, the same C100227-6.DAT's is appearing in the graph. I tried doing it for any other file. But getting some errors and cant trace it out.
    Can any one tell me how can i make this script to plot graph for any other file other than C100227-6.DAT mentioned in the script.
    Also please let me know how do i learn loading generic file, generic channel referenceing, All generic things, etc etc. Instead of mentioning a specific file in a script . Any material to learn this available please guide me. 
    Thanks in advance.
    Rash
    Solved!
    Go to Solution.
    Attachments:
    New Folder.zip ‏29 KB

    Hi Rash,
    Sure, just remove this line from the script:
    FilePath = AutoActPath & "C100227-6.DAT"
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • Rmi load balancer

    hey,
    i've started writing a basic rmi dispatcher to distribute the work of a search engine and i was wondering what the best way to balance load among available machines on the network would be. does rmi have any built in methods to calculate the workload of a server?
    cheers
    paul

    I know people don't bother to search the forum before posting a question, but this is too much. There is another load-balance thread just above yours. At least you could take the time to look in the current day's threads before posting a new question.

  • RMI - loading a class across a network

    Hi,
    I've written a client-server program which uses RMI. I can run the server where I put a class into the RMI registry on port 4301 and connect to it from my client with the url : "//hostname:4301/rmi_name".
    This all works fine if I run it all on the same physical machine, as soon as I try to connect my client from a different machine I get "Unable to connect to //hostname:4301/rmi_name".
    However, I can ping the hostname, so the network is active. I've tried changing the hostname to the ip address with no difference. I'm sure the rmi name matches because I can connect on the same physical machine. I've also tried prefixing the url with "http:" and "file:" - then I just get invalid url.
    Anybody know what's wrong here?
    Cheers
    Tomas

    I tried the same thing but still got the error.
    I've discovered what I'm acutally getting is a java.rmi.UnmarshalException where the nested exception is java.lang.ClassNotFoundException.
    I can connect to the remote registry and get a correct list of the bindings. But I get the above error when I try to actually look the object up, either with Naming.lookup or with LocateRegistry.getRegistry(host, port).lookup(name);
    I think it's a codebase issue now. The two properties I'm setting are:
    java.rmi.server.hostname to "<hostname>" java.rmi.server.codebase to "file:/<full pathname>"
    I know this works locally, 'cos if I change the code base the local client won't find the _stub class (or other classes). I've also tried:
    java.rmi.server.codebase "file://<hostname>/<path>" but that just gives a class loader permission error. I can get over that by setting the policy file, but then I just come back to the original error again.
    Cheers
    Tomas
    btw generally to all: This isn't an applet. It's just an application running on the command line. Oh, and I was being a bit dumb, the "Unable to connect..." part is actually in my code. Sorry! ;-) Well spotted previous replier!

  • Regarding Generic DataSource loading transaction data

    What I have done:
    Create a Generic DataSource  from a table, replicate it to BW.
    Create a standard DataStore object, and create InfoPackage, and DTP.
    Now I want to load data,  What's the steps I need to do?
    Start InfoPackage and execute DTP. But  I can't see data in the DataStore. What's Wrong?
    And Another Questions
    I want to load data partially. I find  Data Selection  in InfoPackage, and enter values, and then what?
    <removed by moderator>.
    Thanks and Regards.
    Edited by: Siegfried Szameitat on Aug 25, 2010 11:28 AM

    Hi,
    You did right, but please check whether data is available in the table for which you created generic data source.
    If data is available in the table, then schedule the info package and check whether data came to PSA or not.
    If data is available till PSA then execute DTP.
    To load data partially:
    We can do at 2 levels. a) at infopackage level  and b) DTP level
    a) To load data selectively give particular selections at PSA level, which will brings the data to BW as per our selection.
    b) We can load all the data till PSA without any selections at infopackage level and give selections at DTP level which will load data to the particular DSO/CUBE as per selection.
    Hope this helps you.
    Thanks,
    Sai Chand.S

  • RMI load balancing

    hi all,
    can we do load balancing for BPEL process using RMI calls?
    Regards,
    terry
    Edited by: user11092657 on 29 Apr, 2009 5:38 PM

    first thing to remember, an rmi "server" is simply the receiving end of an rmi call (the box which exported a remote object). in a complex distributed system, a box is often both an rmi "client" and an rmi "server". your basic design sounds good. you have one "master" box which is pulling data from the db and distributing the work to one or more "worker" boxes. at the very least, your worker boxes will probably be rmi servers. depending on how you handle job completion (pull vs. push) your master box may also be an rmi server (at the very least, it will be an rmi client).
    in terms of overall design, depending on how you pull the data from the database, you could potentially move the database pull to the worker boxes (since pulling data from a db is often a bottleneck as well). if you can define the data to be processed for a single job as a simple query, then you could just send the query info to a worker box and it could pull the data directly from the db and then process it. this could be potentially be much more performant than having one box pull the data and distribute it (for a variety of reasons).

  • Configuring "Generic File Loading Overrides" in Weblogic 9.2

    I'm having difficulties utilizing file overrides for applications in weblogic 9.2.
    To test I created a test war file, packaged in an ear file.
    All that's in the war are files: index.jsp and a test.properties
    index.jsp just displays a variable from the properties file:
    <body>
    <%
    Properties myAppProps = new Properties();
    InputStream iostream =Thread.currentThread().getContextClassLoader().getResourceAsStream("test.properties");
    myAppProps.load(iostream);
    %>
    <%= myAppProps.getProperty("test")%>
    </body>
    As packaged in the war, the "test" property is set to "original"
    I created the following directories:
    c:\test\app\test.ear
    c:\test\plan\Plan.xml
    c:\test\plan\AppFileOverrides\test.properties
    This properties file has the "test" property set to "override"
    When I deploy this in WL 9.2 the JSP always displays "original". I've tried various other directory structures, tried it outside of the ear as just a war file, and other guesses as to what might be going wrong, but can't get the test.properties file override to work.
    I am using XSD deployment descriptors (not DTD files). I changed the Session Invalidation Interval value through the Plan.xml to verify that it is being recognized by Weblogic, and the new value is displayed through the console. My Plan.xml file has the config-root set: <config-root>c:\test\plan</config-root>
    Any ideas on what else I can try or can someone post a complete example that works for me to play with?
    Thanks!

    Thanks for the response, but I'm still getting the "original" value from the packaged properties file instead of the "override"
    I've also noticed that if I change a value through the console (just updated the Session Invalidation Interval) weblogic saves the new value to the plan.xml file, but changes my config-root to: *<config-root xsi:nil="true"></config-root>*
    I deleted the deployment, changed the config-root back to the directory, and deployed the application again. It does use the value for the Session invalidation but still doesn't use the override test.properties file. Is it not recognizing the config-root property correctly?
    Current directory structure:*
    c:\test\
    c:\test\app\
    c:\test\app\test.ear
    c:\test\plan\
    c:\test\plan\plan.xml
    c:\test\plan\AppFileOverrides\
    c:\test\plan\AppFileOverrides\test.war\ (directory, not file)
    c:\test\plan\AppFileOverrides\test.war\test.properties
    Deployment*
    Attempted through the console to deploy c:\test
    Attempted through the console to deploy c:\test\app\test.ear
    Attempted the command line:
    java weblogic.Deployer -user weblogic -password weblogic -deploy -name test -source /test/app/test.ear -plan /test/plan/plan.xml
    All attempts read the original properties file, not the override.
    File Contents*
    c:\test\plan\AppFileOverrides\test.war\test.properties
    test=override
    c:\test\plan\plan.xml
    <?xml version='1.0' encoding='UTF-8'?>
    <deployment-plan xmlns="http://www.bea.com/ns/weblogic/90" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/90/weblogic-deployment-plan.xsd" global-variables="false">
    <application-name>test.ear</application-name>
    <variable-definition>
    <variable>
    <name>SessionDescriptor_invalidationIntervalSecs_12744548675600</name>
    <value>77</value>
    </variable>
    </variable-definition>
    <module-override>
    <module-name>test.ear</module-name>
    <module-type>ear</module-type>
    <module-descriptor external="false">
    <root-element>weblogic-application</root-element>
    <uri>META-INF/weblogic-application.xml</uri>
    <variable-assignment>
    <name>SessionDescriptor_invalidationIntervalSecs_12744548675600</name>
    <xpath>/weblogic-application/session-descriptor/invalidation-interval-secs</xpath>
    </variable-assignment>
    </module-descriptor>
    <module-descriptor external="false">
    <root-element>application</root-element>
    <uri>META-INF/application.xml</uri>
    </module-descriptor>
    </module-override>
    <module-override>
    <module-name>test.war</module-name>
    <module-type>war</module-type>
    <module-descriptor external="false">
    <root-element>weblogic-web-app</root-element>
    <uri>WEB-INF/weblogic.xml</uri>
    </module-descriptor>
    <module-descriptor external="false">
    <root-element>web-app</root-element>
    <uri>WEB-INF/web.xml</uri>
    </module-descriptor>
    </module-override>
    <config-root>C:\test\plan</config-root>
    </deployment-plan>
    c:\test\app\test.ear
    APP-INF\
    APP-INF\classes\
    APP-INF\lib\
    META-INF\
    META-INF\MANIFEST.MF
    META-INF\weblogic-application.xml
    META-INF\application.xml
    test.war
    test.war (inside test.ear)
    META-INF\
    META-INF\MANIFEST.MF
    WEB-INF\
    WEB-INF\classes\
    WEB-INF\classes\test.properties (+test=override+)
    WEB-INF\lib\
    WEB-INF\web.xml
    WEB-INF\weblogic.xml
    ** all the .xml files except the plan.xml above were generated by eclipse using the defaults and have very little in them, but I can post those too if you think the problem might be in them.

  • Generic File  Loading Overrides In Cluster

    We followed the instructions in http://download.oracle.com/docs/cd/E12840_01/wls/docs103/deployment/config.html#wp1066442 to setup the deployment plan and file structure under AppFileOverrides directory in order to load the properties file from our application in the cluster.
    The properties were loaded successfully by the managed servers running on the same machine where the deployment was executed, but the properties were not loaded by the remote managed servers. We checked the stage directory from the remote managed server, which was populated with the AppFileOverrides directory along with the properties file, so we are confused why the remote managed server can not load the properties. Is there a bug that the ClassFinder of the AppFileOverrides directory is not added in front of the application's ClassLoader for the remote managed server? Or is there some configuration error in our part for the clustering environment?
    We are using WLS 10.3.2.0.
    Thanks,
    Daniel

    Daniel,
    Since this is a relatively new feature, I recommend a support case. I have yet to try this feature, but your description that it works on a local server, but not a remote one might be a bug and Support can validate.

  • I have igoogle for a home page but the personalized page does not load, only the generic page loads; why?

    I have built a personal iGoogle home page. I have checked 'stay logged in'. when I open the home page in Firefox it goes to the frontdoor instead of the page I built.

    I have built a personal iGoogle home page. I have checked 'stay logged in'. when I open the home page in Firefox it goes to the frontdoor instead of the page I built.

  • ConsoleKit takes 20seconds to time out on GDM load

    My GDM is really slow and I tracked it down to ConsoleKit. Anyone have any suggestion on how to fix it?
    Please take a look at my messages.log to get some idea of what's happening:
    Search for ConsoleKit to see that it's taking 20secs to timeout.
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Initializing cgroup subsys cpuset
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Initializing cgroup subsys cpu
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Linux version 3.2.2-1-ARCH (tobias@T-POWA-LX) (gcc version 4.6.2 20120120 (prerelease) (GCC) ) #1 SMP PREEMPT Thu Jan 26 08:40:20 CET 2012
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Command line: root=/dev/sda2 ro initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-provided physical RAM map:
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009d800 (usable)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 000000000009d800 - 00000000000a0000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 00000000cd71e000 (usable)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cd71e000 - 00000000cd772000 (ACPI NVS)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cd772000 - 00000000cd77b000 (ACPI data)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cd77b000 - 00000000cdada000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdada000 - 00000000cdaeb000 (ACPI NVS)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdaeb000 - 00000000cdafe000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdafe000 - 00000000cdb00000 (ACPI NVS)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdb00000 - 00000000cdb09000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdb09000 - 00000000cdb0f000 (ACPI NVS)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdb0f000 - 00000000cdb71000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdb71000 - 00000000cdd74000 (ACPI NVS)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000cdd74000 - 00000000cdf00000 (usable)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fec10000 - 00000000fec11000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fec20000 - 00000000fec21000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fed00000 - 00000000fed01000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fed61000 - 00000000fed71000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fed80000 - 00000000fed90000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 00000000fef00000 - 0000000100000000 (reserved)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] BIOS-e820: 0000000100001000 - 000000022f000000 (usable)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] NX (Execute Disable) protection: active
    Feb 1 20:31:48 localhost kernel: [ 0.000000] DMI 2.7 present.
    Feb 1 20:31:48 localhost kernel: [ 0.000000] No AGP bridge found
    Feb 1 20:31:48 localhost kernel: [ 0.000000] last_pfn = 0x22f000 max_arch_pfn = 0x400000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Feb 1 20:31:48 localhost kernel: [ 0.000000] last_pfn = 0xcdf00 max_arch_pfn = 0x400000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Using GB pages for direct mapping
    Feb 1 20:31:48 localhost kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000cdf00000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] init_memory_mapping: 0000000100000000-000000022f000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] RAMDISK: 7fd5a000 - 7ffff000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: RSDP 00000000000f0450 00024 (v02 ALASKA)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: XSDT 00000000cd772068 00054 (v01 ALASKA A M I 01072009 AMI 00010013)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: FACP 00000000cd779340 000F4 (v04 ALASKA A M I 01072009 AMI 00010013)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20110623/tbfadt-560)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: DSDT 00000000cd772150 071EC (v02 ALASKA A M I 00000000 INTL 20051117)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: FACS 00000000cdb09f80 00040
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: APIC 00000000cd779438 0009E (v03 ALASKA A M I 01072009 AMI 00010013)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: MCFG 00000000cd7794d8 0003C (v01 ALASKA A M I 01072009 MSFT 00010013)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: HPET 00000000cd779518 00038 (v01 ALASKA A M I 01072009 AMI 00000004)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: IVRS 00000000cd779550 000D8 (v01 AMD RD890S 00202031 AMD 00000000)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: SSDT 00000000cd779628 00D3C (v01 AMD POWERNOW 00000001 AMD 00000001)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] No NUMA configuration found
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Faking a node at 0000000000000000-000000022f000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Initmem setup node 0 0000000000000000-000000022f000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] NODE_DATA [000000022effb000 - 000000022effffff]
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Zone PFN ranges:
    Feb 1 20:31:48 localhost kernel: [ 0.000000] DMA 0x00000010 -> 0x00001000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] DMA32 0x00001000 -> 0x00100000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Normal 0x00100000 -> 0x0022f000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Movable zone start PFN for each node
    Feb 1 20:31:48 localhost kernel: [ 0.000000] early_node_map[4] active PFN ranges
    Feb 1 20:31:48 localhost kernel: [ 0.000000] 0: 0x00000010 -> 0x0000009d
    Feb 1 20:31:48 localhost kernel: [ 0.000000] 0: 0x00000100 -> 0x000cd71e
    Feb 1 20:31:48 localhost kernel: [ 0.000000] 0: 0x000cdd74 -> 0x000cdf00
    Feb 1 20:31:48 localhost kernel: [ 0.000000] 0: 0x00100001 -> 0x0022f000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x808
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x10] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x11] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x12] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x13] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x14] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x15] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x16] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x17] enabled)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: IOAPIC (id[0x09] address[0xfec00000] gsi_base[0])
    Feb 1 20:31:48 localhost kernel: [ 0.000000] IOAPIC[0]: apic_id 9, version 33, address 0xfec00000, GSI 0-23
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: IOAPIC (id[0x0a] address[0xfec20000] gsi_base[24])
    Feb 1 20:31:48 localhost kernel: [ 0.000000] IOAPIC[1]: apic_id 10, version 33, address 0xfec20000, GSI 24-55
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
    Feb 1 20:31:48 localhost kernel: [ 0.000000] ACPI: HPET id: 0xffffffff base: 0xfed00000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] SMP: Allowing 8 CPUs, 0 hotplug CPUs
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cd71e000 - 00000000cd772000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cd772000 - 00000000cd77b000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cd77b000 - 00000000cdada000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdada000 - 00000000cdaeb000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdaeb000 - 00000000cdafe000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdafe000 - 00000000cdb00000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdb00000 - 00000000cdb09000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdb09000 - 00000000cdb0f000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdb0f000 - 00000000cdb71000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdb71000 - 00000000cdd74000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000cdf00000 - 00000000f8000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fec10000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec10000 - 00000000fec11000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec11000 - 00000000fec20000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec20000 - 00000000fec21000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fec21000 - 00000000fed00000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed00000 - 00000000fed01000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed01000 - 00000000fed61000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed61000 - 00000000fed71000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed71000 - 00000000fed80000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed80000 - 00000000fed90000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fed90000 - 00000000fef00000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 00000000fef00000 - 0000000100000000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PM: Registered nosave memory: 0000000100000000 - 0000000100001000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Allocating PCI resources starting at cdf00000 (gap: cdf00000:2a100000)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware
    Feb 1 20:31:48 localhost kernel: [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88022ec00000 s82048 r8192 d24448 u262144
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2047089
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Policy zone: Normal
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Kernel command line: root=/dev/sda2 ro initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    Feb 1 20:31:48 localhost kernel: [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Checking aperture...
    Feb 1 20:31:48 localhost kernel: [ 0.000000] No AGP bridge found
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Node 0: aperture @ f8000000 size 64 MB
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Memory: 8119580k/9158656k available (4281k kernel code, 827176k absent, 211900k reserved, 4599k data, 728k init)
    Feb 1 20:31:48 localhost kernel: [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Preemptible hierarchical RCU implementation.
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Verbose stalled-CPUs detection is disabled.
    Feb 1 20:31:48 localhost kernel: [ 0.000000] NR_IRQS:4352 nr_irqs:1288 16
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Extended CMOS year: 2000
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Console: colour VGA+ 80x25
    Feb 1 20:31:48 localhost kernel: [ 0.000000] console [tty0] enabled
    Feb 1 20:31:48 localhost kernel: [ 0.000000] allocated 67108864 bytes of page_cgroup
    Feb 1 20:31:48 localhost kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Fast TSC calibration using PIT
    Feb 1 20:31:48 localhost kernel: [ 0.000000] Detected 3110.742 MHz processor.
    Feb 1 20:31:48 localhost kernel: [ 0.003336] Calibrating delay loop (skipped), value calculated using timer frequency.. 6223.71 BogoMIPS (lpj=10369140)
    Feb 1 20:31:48 localhost kernel: [ 0.003339] pid_max: default: 32768 minimum: 301
    Feb 1 20:31:48 localhost kernel: [ 0.003361] Security Framework initialized
    Feb 1 20:31:48 localhost kernel: [ 0.003365] AppArmor: AppArmor disabled by boot time parameter
    Feb 1 20:31:48 localhost kernel: [ 0.004126] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.007900] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.008745] Mount-cache hash table entries: 256
    Feb 1 20:31:48 localhost kernel: [ 0.008854] Initializing cgroup subsys cpuacct
    Feb 1 20:31:48 localhost kernel: [ 0.008859] Initializing cgroup subsys memory
    Feb 1 20:31:48 localhost kernel: [ 0.008866] Initializing cgroup subsys devices
    Feb 1 20:31:48 localhost kernel: [ 0.008868] Initializing cgroup subsys freezer
    Feb 1 20:31:48 localhost kernel: [ 0.008869] Initializing cgroup subsys net_cls
    Feb 1 20:31:48 localhost kernel: [ 0.008870] Initializing cgroup subsys blkio
    Feb 1 20:31:48 localhost kernel: [ 0.008896] CPU: Physical Processor ID: 0
    Feb 1 20:31:48 localhost kernel: [ 0.008897] CPU: Processor Core ID: 0
    Feb 1 20:31:48 localhost kernel: [ 0.008899] mce: CPU supports 7 MCE banks
    Feb 1 20:31:48 localhost kernel: [ 0.009566] ACPI: Core revision 20110623
    Feb 1 20:31:48 localhost kernel: [ 0.013346] ftrace: allocating 16779 entries in 66 pages
    Feb 1 20:31:48 localhost kernel: [ 0.020327] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Feb 1 20:31:48 localhost kernel: [ 0.053341] CPU0: AMD FX(tm)-8120 Eight-Core Processor stepping 02
    Feb 1 20:31:48 localhost kernel: [ 0.056663] Performance Events: AMD Family 15h PMU driver.
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... version: 0
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... bit width: 48
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... generic registers: 6
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... value mask: 0000ffffffffffff
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... max period: 00007fffffffffff
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... fixed-purpose events: 0
    Feb 1 20:31:48 localhost kernel: [ 0.056663] ... event mask: 000000000000003f
    Feb 1 20:31:48 localhost kernel: [ 0.073374] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.100015] Booting Node 0, Processors #1
    Feb 1 20:31:48 localhost kernel: [ 0.196673] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.216689] #2
    Feb 1 20:31:48 localhost kernel: [ 0.313331] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.333338] #3
    Feb 1 20:31:48 localhost kernel: [ 0.429988] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.449998] #4
    Feb 1 20:31:48 localhost kernel: [ 0.546652] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.566662] #5
    Feb 1 20:31:48 localhost kernel: [ 0.663312] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.683316] #6
    Feb 1 20:31:48 localhost kernel: [ 0.779965] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.799971] #7 Ok.
    Feb 1 20:31:48 localhost kernel: [ 0.896625] NMI watchdog enabled, takes one hw-pmu counter.
    Feb 1 20:31:48 localhost kernel: [ 0.903288] Brought up 8 CPUs
    Feb 1 20:31:48 localhost kernel: [ 0.903291] Total of 8 processors activated (49786.82 BogoMIPS).
    Feb 1 20:31:48 localhost kernel: [ 0.906788] devtmpfs: initialized
    Feb 1 20:31:48 localhost kernel: [ 0.908166] PM: Registering ACPI NVS region at cd71e000 (344064 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.908166] PM: Registering ACPI NVS region at cdada000 (69632 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.908166] PM: Registering ACPI NVS region at cdafe000 (8192 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.908166] PM: Registering ACPI NVS region at cdb09000 (24576 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.908166] PM: Registering ACPI NVS region at cdb71000 (2109440 bytes)
    Feb 1 20:31:48 localhost kernel: [ 0.910376] print_constraints: dummy:
    Feb 1 20:31:48 localhost kernel: [ 0.910415] NET: Registered protocol family 16
    Feb 1 20:31:48 localhost kernel: [ 0.910507] Extended Config Space enabled on 1 nodes
    Feb 1 20:31:48 localhost kernel: [ 0.910549] ACPI: bus type pci registered
    Feb 1 20:31:48 localhost kernel: [ 0.910607] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Feb 1 20:31:48 localhost kernel: [ 0.910610] PCI: not using MMCONFIG
    Feb 1 20:31:48 localhost kernel: [ 0.910612] PCI: Using configuration type 1 for base access
    Feb 1 20:31:48 localhost kernel: [ 0.910613] PCI: Using configuration type 1 for extended access
    Feb 1 20:31:48 localhost kernel: [ 0.911157] bio: create slab <bio-0> at 0
    Feb 1 20:31:48 localhost kernel: [ 0.911157] ACPI: Added _OSI(Module Device)
    Feb 1 20:31:48 localhost kernel: [ 0.911157] ACPI: Added _OSI(Processor Device)
    Feb 1 20:31:48 localhost kernel: [ 0.911157] ACPI: Added _OSI(3.0 _SCP Extensions)
    Feb 1 20:31:48 localhost kernel: [ 0.911157] ACPI: Added _OSI(Processor Aggregator Device)
    Feb 1 20:31:48 localhost kernel: [ 0.913406] ACPI: Executed 2 blocks of module-level executable AML code
    Feb 1 20:31:48 localhost kernel: [ 0.923431] ACPI Error: [RAMB] Namespace lookup failure, AE_NOT_FOUND (20110623/psargs-359)
    Feb 1 20:31:48 localhost kernel: [ 0.923438] ACPI Exception: AE_NOT_FOUND, Could not execute arguments for [RAMW] (Region) (20110623/nsinit-349)
    Feb 1 20:31:48 localhost kernel: [ 0.923740] ACPI: Interpreter enabled
    Feb 1 20:31:48 localhost kernel: [ 0.923743] ACPI: (supports S0 S1 S3 S4 S5)
    Feb 1 20:31:48 localhost kernel: [ 0.923766] ACPI: Using IOAPIC for interrupt routing
    Feb 1 20:31:48 localhost kernel: [ 0.923907] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Feb 1 20:31:48 localhost kernel: [ 0.923945] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    Feb 1 20:31:48 localhost kernel: [ 0.972366] ACPI: EC: GPE = 0xa, I/O: command/status = 0x66, data = 0x62
    Feb 1 20:31:48 localhost kernel: [ 0.972499] ACPI: No dock devices found.
    Feb 1 20:31:48 localhost kernel: [ 0.972500] HEST: Table not found.
    Feb 1 20:31:48 localhost kernel: [ 0.972503] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Feb 1 20:31:48 localhost kernel: [ 0.972680] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Feb 1 20:31:48 localhost kernel: [ 0.972959] pci_root PNP0A03:00: host bridge window [io 0x0000-0x03af]
    Feb 1 20:31:48 localhost kernel: [ 0.972962] pci_root PNP0A03:00: host bridge window [io 0x03e0-0x0cf7]
    Feb 1 20:31:48 localhost kernel: [ 0.972964] pci_root PNP0A03:00: host bridge window [io 0x03b0-0x03df]
    Feb 1 20:31:48 localhost kernel: [ 0.972966] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff]
    Feb 1 20:31:48 localhost kernel: [ 0.972968] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
    Feb 1 20:31:48 localhost kernel: [ 0.972970] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
    Feb 1 20:31:48 localhost kernel: [ 0.972972] pci_root PNP0A03:00: host bridge window [mem 0xd0000000-0xffffffff]
    Feb 1 20:31:48 localhost kernel: [ 0.974557] pci 0000:01:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
    Feb 1 20:31:48 localhost kernel: [ 0.974564] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    Feb 1 20:31:48 localhost kernel: [ 0.979960] pci 0000:00:04.0: PCI bridge to [bus 02-02]
    Feb 1 20:31:48 localhost kernel: [ 0.986619] pci 0000:00:05.0: PCI bridge to [bus 03-03]
    Feb 1 20:31:48 localhost kernel: [ 0.993283] pci 0000:00:06.0: PCI bridge to [bus 04-04]
    Feb 1 20:31:48 localhost kernel: [ 0.999948] pci 0000:00:07.0: PCI bridge to [bus 05-05]
    Feb 1 20:31:48 localhost kernel: [ 1.006616] pci 0000:00:09.0: PCI bridge to [bus 06-06]
    Feb 1 20:31:48 localhost kernel: [ 1.006676] pci 0000:00:14.4: PCI bridge to [bus 07-07] (subtractive decode)
    Feb 1 20:31:48 localhost kernel: [ 1.007075] pci0000:00: Requesting ACPI _OSC control (0x1d)
    Feb 1 20:31:48 localhost kernel: [ 1.007078] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    Feb 1 20:31:48 localhost kernel: [ 1.007080] ACPI _OSC control for PCIe not granted, disabling ASPM
    Feb 1 20:31:48 localhost kernel: [ 1.013835] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.013895] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.013957] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.014018] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.014066] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.014103] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.014141] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.014178] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 7 10 11 14 15) *0
    Feb 1 20:31:48 localhost kernel: [ 1.014248] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    Feb 1 20:31:48 localhost kernel: [ 1.014248] vgaarb: loaded
    Feb 1 20:31:48 localhost kernel: [ 1.014248] vgaarb: bridge control possible 0000:01:00.0
    Feb 1 20:31:48 localhost kernel: [ 1.014248] PCI: Using ACPI for IRQ routing
    Feb 1 20:31:48 localhost kernel: [ 1.020997] NetLabel: Initializing
    Feb 1 20:31:48 localhost kernel: [ 1.020999] NetLabel: domain hash size = 128
    Feb 1 20:31:48 localhost kernel: [ 1.021000] NetLabel: protocols = UNLABELED CIPSOv4
    Feb 1 20:31:48 localhost kernel: [ 1.021013] NetLabel: unlabeled traffic allowed by default
    Feb 1 20:31:48 localhost kernel: [ 1.021026] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    Feb 1 20:31:48 localhost kernel: [ 1.021030] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    Feb 1 20:31:48 localhost kernel: [ 1.023074] Switching to clocksource hpet
    Feb 1 20:31:48 localhost kernel: [ 1.025725] pnp: PnP ACPI init
    Feb 1 20:31:48 localhost kernel: [ 1.025737] ACPI: bus type pnp registered
    Feb 1 20:31:48 localhost kernel: [ 1.026037] system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026620] system 00:02: [io 0x040b] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026623] system 00:02: [io 0x04d6] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026625] system 00:02: [io 0x0c00-0x0c01] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026627] system 00:02: [io 0x0c14] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026629] system 00:02: [io 0x0c50-0x0c51] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026632] system 00:02: [io 0x0c52] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026634] system 00:02: [io 0x0c6c] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026636] system 00:02: [io 0x0c6f] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026638] system 00:02: [io 0x0cd0-0x0cd1] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026640] system 00:02: [io 0x0cd2-0x0cd3] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026642] system 00:02: [io 0x0cd4-0x0cd5] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026644] system 00:02: [io 0x0cd6-0x0cd7] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026646] system 00:02: [io 0x0cd8-0x0cdf] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026649] system 00:02: [io 0x0800-0x089f] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026651] system 00:02: [io 0x0b20-0x0b3f] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026653] system 00:02: [io 0x0900-0x090f] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026656] system 00:02: [io 0x0910-0x091f] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026658] system 00:02: [io 0xfe00-0xfefe] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026661] system 00:02: [mem 0xfec00000-0xfec00fff] could not be reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026664] system 00:02: [mem 0xfee00000-0xfee00fff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026677] system 00:02: [mem 0xfed80000-0xfed8ffff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026680] system 00:02: [mem 0xfed61000-0xfed70fff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026682] system 00:02: [mem 0xfec10000-0xfec10fff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026685] system 00:02: [mem 0xfed00000-0xfed00fff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026688] system 00:02: [mem 0xffc00000-0xffffffff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.026854] system 00:03: [io 0x0290-0x02af] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.027074] system 00:07: [io 0x04d0-0x04d1] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.027343] system 00:0a: [mem 0xfeb20000-0xfeb23fff] has been reserved
    Feb 1 20:31:48 localhost kernel: [ 1.027480] system 00:0b: [mem 0xfec20000-0xfec200ff] could not be reserved
    Feb 1 20:31:48 localhost kernel: [ 1.027648] pnp: PnP ACPI: found 13 devices
    Feb 1 20:31:48 localhost kernel: [ 1.027650] ACPI: ACPI bus type pnp unregistered
    Feb 1 20:31:48 localhost kernel: [ 1.034572] pci 0000:00:02.0: PCI bridge to [bus 01-01]
    Feb 1 20:31:48 localhost kernel: [ 1.034575] pci 0000:00:02.0: bridge window [io 0xe000-0xefff]
    Feb 1 20:31:48 localhost kernel: [ 1.034578] pci 0000:00:02.0: bridge window [mem 0xf4000000-0xf70fffff]
    Feb 1 20:31:48 localhost kernel: [ 1.034581] pci 0000:00:02.0: bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
    Feb 1 20:31:48 localhost kernel: [ 1.034585] pci 0000:00:04.0: PCI bridge to [bus 02-02]
    Feb 1 20:31:48 localhost kernel: [ 1.034587] pci 0000:00:04.0: bridge window [io 0xd000-0xdfff]
    Feb 1 20:31:48 localhost kernel: [ 1.034590] pci 0000:00:04.0: bridge window [mem 0xf7500000-0xf75fffff]
    Feb 1 20:31:48 localhost kernel: [ 1.034594] pci 0000:00:05.0: PCI bridge to [bus 03-03]
    Feb 1 20:31:48 localhost kernel: [ 1.034597] pci 0000:00:05.0: bridge window [io 0xc000-0xcfff]
    Feb 1 20:31:48 localhost kernel: [ 1.034599] pci 0000:00:05.0: bridge window [mem 0xf7400000-0xf74fffff]
    Feb 1 20:31:48 localhost kernel: [ 1.034604] pci 0000:00:06.0: PCI bridge to [bus 04-04]
    Feb 1 20:31:48 localhost kernel: [ 1.034606] pci 0000:00:06.0: bridge window [mem 0xf7300000-0xf73fffff]
    Feb 1 20:31:48 localhost kernel: [ 1.034611] pci 0000:00:07.0: PCI bridge to [bus 05-05]
    Feb 1 20:31:48 localhost kernel: [ 1.034613] pci 0000:00:07.0: bridge window [mem 0xf7200000-0xf72fffff]
    Feb 1 20:31:48 localhost kernel: [ 1.034617] pci 0000:00:09.0: PCI bridge to [bus 06-06]
    Feb 1 20:31:48 localhost kernel: [ 1.034620] pci 0000:00:09.0: bridge window [mem 0xf7100000-0xf71fffff]
    Feb 1 20:31:48 localhost kernel: [ 1.034624] pci 0000:00:14.4: PCI bridge to [bus 07-07]
    Feb 1 20:31:48 localhost kernel: [ 1.034641] pci 0000:00:02.0: PCI INT A -> GSI 52 (level, low) -> IRQ 52
    Feb 1 20:31:48 localhost kernel: [ 1.034649] pci 0000:00:04.0: PCI INT A -> GSI 52 (level, low) -> IRQ 52
    Feb 1 20:31:48 localhost kernel: [ 1.034656] pci 0000:00:05.0: PCI INT A -> GSI 52 (level, low) -> IRQ 52
    Feb 1 20:31:48 localhost kernel: [ 1.034666] pci 0000:00:06.0: PCI INT A -> GSI 53 (level, low) -> IRQ 53
    Feb 1 20:31:48 localhost kernel: [ 1.034673] pci 0000:00:07.0: PCI INT A -> GSI 53 (level, low) -> IRQ 53
    Feb 1 20:31:48 localhost kernel: [ 1.034679] pci 0000:00:09.0: PCI INT A -> GSI 53 (level, low) -> IRQ 53
    Feb 1 20:31:48 localhost kernel: [ 1.034759] NET: Registered protocol family 2
    Feb 1 20:31:48 localhost kernel: [ 1.035011] IP route cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Feb 1 20:31:48 localhost kernel: [ 1.036243] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    Feb 1 20:31:48 localhost kernel: [ 1.037985] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Feb 1 20:31:48 localhost kernel: [ 1.038182] TCP: Hash tables configured (established 524288 bind 65536)
    Feb 1 20:31:48 localhost kernel: [ 1.038184] TCP reno registered
    Feb 1 20:31:48 localhost kernel: [ 1.038200] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    Feb 1 20:31:48 localhost kernel: [ 1.038241] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    Feb 1 20:31:48 localhost kernel: [ 1.038330] NET: Registered protocol family 1
    Feb 1 20:31:48 localhost kernel: [ 2.103599] Unpacking initramfs...
    Feb 1 20:31:48 localhost kernel: [ 2.145316] Freeing initrd memory: 2708k freed
    Feb 1 20:31:48 localhost kernel: [ 2.145978] pci 0000:00:00.2: PCI INT A -> GSI 55 (level, low) -> IRQ 55
    Feb 1 20:31:48 localhost kernel: [ 2.146104] AMD-Vi: Enabling IOMMU at 0000:00:00.2 cap 0x40
    Feb 1 20:31:48 localhost kernel: [ 2.213957] AMD-Vi: Lazy IO/TLB flushing enabled
    Feb 1 20:31:48 localhost kernel: [ 2.213960] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Feb 1 20:31:48 localhost kernel: [ 2.213962] Placing 64MB software IO TLB between ffff8800c971e000 - ffff8800cd71e000
    Feb 1 20:31:48 localhost kernel: [ 2.213965] software IO TLB at phys 0xc971e000 - 0xcd71e000
    Feb 1 20:31:48 localhost kernel: [ 2.214583] perf: AMD IBS detected (0x000000ff)
    Feb 1 20:31:48 localhost kernel: [ 2.214717] audit: initializing netlink socket (disabled)
    Feb 1 20:31:48 localhost kernel: [ 2.214725] type=2000 audit(1328128291.213:1): initialized
    Feb 1 20:31:48 localhost kernel: [ 2.226263] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Feb 1 20:31:48 localhost kernel: [ 2.249701] VFS: Disk quotas dquot_6.5.2
    Feb 1 20:31:48 localhost kernel: [ 2.249754] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Feb 1 20:31:48 localhost kernel: [ 2.249833] msgmni has been set to 15863
    Feb 1 20:31:48 localhost kernel: [ 2.250009] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    Feb 1 20:31:48 localhost kernel: [ 2.250041] io scheduler noop registered
    Feb 1 20:31:48 localhost kernel: [ 2.250042] io scheduler deadline registered
    Feb 1 20:31:48 localhost kernel: [ 2.250071] io scheduler cfq registered (default)
    Feb 1 20:31:48 localhost kernel: [ 2.250407] ERST: Table is not found!
    Feb 1 20:31:48 localhost kernel: [ 2.250409] GHES: HEST is not enabled!
    Feb 1 20:31:48 localhost kernel: [ 2.250463] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Feb 1 20:31:48 localhost kernel: [ 2.463583] Linux agpgart interface v0.103
    Feb 1 20:31:48 localhost kernel: [ 2.463656] i8042: PNP: No PS/2 controller found. Probing ports directly.
    Feb 1 20:31:48 localhost kernel: [ 2.463999] serio: i8042 KBD port at 0x60,0x64 irq 1
    Feb 1 20:31:48 localhost kernel: [ 2.464021] serio: i8042 AUX port at 0x60,0x64 irq 12
    Feb 1 20:31:48 localhost kernel: [ 2.464164] mousedev: PS/2 mouse device common for all mice
    Feb 1 20:31:48 localhost kernel: [ 2.464197] rtc_cmos 00:05: RTC can wake from S4
    Feb 1 20:31:48 localhost kernel: [ 2.464319] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    Feb 1 20:31:48 localhost kernel: [ 2.464343] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    Feb 1 20:31:48 localhost kernel: [ 2.464357] cpuidle: using governor ladder
    Feb 1 20:31:48 localhost kernel: [ 2.464359] cpuidle: using governor menu
    Feb 1 20:31:48 localhost kernel: [ 2.464584] TCP cubic registered
    Feb 1 20:31:48 localhost kernel: [ 2.464586] NET: Registered protocol family 17
    Feb 1 20:31:48 localhost kernel: [ 2.464591] Registering the dns_resolver key type
    Feb 1 20:31:48 localhost kernel: [ 2.464716] registered taskstats version 1
    Feb 1 20:31:48 localhost kernel: [ 2.476065] rtc_cmos 00:05: setting system clock to 2012-02-01 20:31:32 UTC (1328128292)
    Feb 1 20:31:48 localhost kernel: [ 2.476133] Initializing network drop monitor service
    Feb 1 20:31:48 localhost kernel: [ 2.478077] Freeing unused kernel memory: 728k freed
    Feb 1 20:31:48 localhost kernel: [ 2.478200] Write protecting the kernel read-only data: 8192k
    Feb 1 20:31:48 localhost kernel: [ 2.486030] Freeing unused kernel memory: 1844k freed
    Feb 1 20:31:48 localhost kernel: [ 2.489293] Freeing unused kernel memory: 692k freed
    Feb 1 20:31:48 localhost [ 2.496933] udevd[63]: starting version 179
    Feb 1 20:31:48 localhost kernel: [ 2.519274] SCSI subsystem initialized
    Feb 1 20:31:48 localhost kernel: [ 2.522067] usbcore: registered new interface driver usbfs
    Feb 1 20:31:48 localhost kernel: [ 2.522092] usbcore: registered new interface driver hub
    Feb 1 20:31:48 localhost kernel: [ 2.522136] usbcore: registered new device driver usb
    Feb 1 20:31:48 localhost kernel: [ 2.525268] xhci_hcd 0000:04:00.0: PCI INT A -> GSI 51 (level, low) -> IRQ 51
    Feb 1 20:31:48 localhost kernel: [ 2.525310] xhci_hcd 0000:04:00.0: xHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.525333] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 1
    Feb 1 20:31:48 localhost kernel: [ 2.532052] ahci 0000:00:11.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
    Feb 1 20:31:48 localhost kernel: [ 2.532191] ahci 0000:00:11.0: AHCI 0001.0200 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
    Feb 1 20:31:48 localhost kernel: [ 2.532195] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part sxs
    Feb 1 20:31:48 localhost kernel: [ 2.534149] scsi0 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.534430] scsi1 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.534950] scsi2 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.534973] xhci_hcd 0000:04:00.0: irq 51, io mem 0xf7300000
    Feb 1 20:31:48 localhost kernel: [ 2.535368] scsi3 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.535611] hub 1-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.535617] hub 1-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.535667] scsi4 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.535735] xhci_hcd 0000:04:00.0: xHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.535743] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 2
    Feb 1 20:31:48 localhost kernel: [ 2.535809] scsi5 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.535956] hub 2-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.535963] hub 2-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.536253] ata1: SATA max UDMA/133 abar m1024@0xf760b000 port 0xf760b100 irq 19
    Feb 1 20:31:48 localhost kernel: [ 2.536257] ata2: SATA max UDMA/133 abar m1024@0xf760b000 port 0xf760b180 irq 19
    Feb 1 20:31:48 localhost kernel: [ 2.536260] ata3: SATA max UDMA/133 abar m1024@0xf760b000 port 0xf760b200 irq 19
    Feb 1 20:31:48 localhost kernel: [ 2.536263] ata4: SATA max UDMA/133 abar m1024@0xf760b000 port 0xf760b280 irq 19
    Feb 1 20:31:48 localhost kernel: [ 2.536266] ata5: SATA max UDMA/133 abar m1024@0xf760b000 port 0xf760b300 irq 19
    Feb 1 20:31:48 localhost kernel: [ 2.536269] ata6: SATA max UDMA/133 abar m1024@0xf760b000 port 0xf760b380 irq 19
    Feb 1 20:31:48 localhost kernel: [ 2.536304] ahci 0000:02:00.0: PCI INT A -> GSI 44 (level, low) -> IRQ 44
    Feb 1 20:31:48 localhost kernel: [ 2.536361] ahci: SSS flag set, parallel bus scan disabled
    Feb 1 20:31:48 localhost kernel: [ 2.536390] ahci 0000:02:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
    Feb 1 20:31:48 localhost kernel: [ 2.536393] ahci 0000:02:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc sxs
    Feb 1 20:31:48 localhost kernel: [ 2.537576] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Feb 1 20:31:48 localhost kernel: [ 2.537596] scsi6 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.537620] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    Feb 1 20:31:48 localhost kernel: [ 2.537653] ehci_hcd 0000:00:12.2: EHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.537672] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 3
    Feb 1 20:31:48 localhost kernel: [ 2.537681] ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Feb 1 20:31:48 localhost kernel: [ 2.537719] ehci_hcd 0000:00:12.2: debug port 1
    Feb 1 20:31:48 localhost kernel: [ 2.537734] scsi7 : ahci
    Feb 1 20:31:48 localhost kernel: [ 2.537740] ehci_hcd 0000:00:12.2: irq 17, io mem 0xf7609000
    Feb 1 20:31:48 localhost kernel: [ 2.537799] ata7: SATA max UDMA/133 abar m512@0xf7500000 port 0xf7500100 irq 81
    Feb 1 20:31:48 localhost kernel: [ 2.537803] ata8: SATA max UDMA/133 abar m512@0xf7500000 port 0xf7500180 irq 81
    Feb 1 20:31:48 localhost kernel: [ 2.550064] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
    Feb 1 20:31:48 localhost kernel: [ 2.550194] hub 3-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.550198] hub 3-0:1.0: 5 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.550282] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 21 (level, low) -> IRQ 21
    Feb 1 20:31:48 localhost kernel: [ 2.550313] ehci_hcd 0000:00:13.2: EHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.550320] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4
    Feb 1 20:31:48 localhost kernel: [ 2.550326] ehci_hcd 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Feb 1 20:31:48 localhost kernel: [ 2.550345] ehci_hcd 0000:00:13.2: debug port 1
    Feb 1 20:31:48 localhost kernel: [ 2.550362] ehci_hcd 0000:00:13.2: irq 21, io mem 0xf7607000
    Feb 1 20:31:48 localhost kernel: [ 2.553402] xhci_hcd 0000:05:00.0: PCI INT A -> GSI 50 (level, low) -> IRQ 50
    Feb 1 20:31:48 localhost kernel: [ 2.553438] xhci_hcd 0000:05:00.0: xHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.553447] xhci_hcd 0000:05:00.0: new USB bus registered, assigned bus number 5
    Feb 1 20:31:48 localhost kernel: [ 2.555089] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    Feb 1 20:31:48 localhost kernel: [ 2.560049] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
    Feb 1 20:31:48 localhost kernel: [ 2.560188] hub 4-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.560191] hub 4-0:1.0: 5 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.560280] ehci_hcd 0000:00:16.2: PCI INT B -> GSI 23 (level, low) -> IRQ 23
    Feb 1 20:31:48 localhost kernel: [ 2.560314] ehci_hcd 0000:00:16.2: EHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.560321] ehci_hcd 0000:00:16.2: new USB bus registered, assigned bus number 6
    Feb 1 20:31:48 localhost kernel: [ 2.560329] ehci_hcd 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Feb 1 20:31:48 localhost kernel: [ 2.560349] ehci_hcd 0000:00:16.2: debug port 1
    Feb 1 20:31:48 localhost kernel: [ 2.560367] ehci_hcd 0000:00:16.2: irq 23, io mem 0xf7604000
    Feb 1 20:31:48 localhost kernel: [ 2.563065] xhci_hcd 0000:05:00.0: irq 50, io mem 0xf7200000
    Feb 1 20:31:48 localhost kernel: [ 2.563367] hub 5-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.563373] hub 5-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.563437] xhci_hcd 0000:05:00.0: xHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.563443] xhci_hcd 0000:05:00.0: new USB bus registered, assigned bus number 7
    Feb 1 20:31:48 localhost kernel: [ 2.563617] hub 7-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.563625] hub 7-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.573392] ehci_hcd 0000:00:16.2: USB 2.0 started, EHCI 1.00
    Feb 1 20:31:48 localhost kernel: [ 2.573722] hub 6-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.573728] hub 6-0:1.0: 4 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.574021] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
    Feb 1 20:31:48 localhost kernel: [ 2.574050] ohci_hcd 0000:00:12.0: OHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.574059] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 8
    Feb 1 20:31:48 localhost kernel: [ 2.574083] ohci_hcd 0000:00:12.0: irq 18, io mem 0xf760a000
    Feb 1 20:31:48 localhost kernel: [ 2.580067] xhci_hcd 0000:06:00.0: PCI INT A -> GSI 48 (level, low) -> IRQ 48
    Feb 1 20:31:48 localhost kernel: [ 2.580106] xhci_hcd 0000:06:00.0: xHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.580121] xhci_hcd 0000:06:00.0: new USB bus registered, assigned bus number 9
    Feb 1 20:31:48 localhost kernel: [ 2.589735] xhci_hcd 0000:06:00.0: irq 48, io mem 0xf7100000
    Feb 1 20:31:48 localhost kernel: [ 2.590047] hub 9-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.590052] hub 9-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.590111] xhci_hcd 0000:06:00.0: xHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.590116] xhci_hcd 0000:06:00.0: new USB bus registered, assigned bus number 10
    Feb 1 20:31:48 localhost kernel: [ 2.590227] hub 10-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.590232] hub 10-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.634184] hub 8-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.634190] hub 8-0:1.0: 5 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.634310] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    Feb 1 20:31:48 localhost kernel: [ 2.634324] ohci_hcd 0000:00:13.0: OHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.634331] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 11
    Feb 1 20:31:48 localhost kernel: [ 2.634353] ohci_hcd 0000:00:13.0: irq 20, io mem 0xf7608000
    Feb 1 20:31:48 localhost kernel: [ 2.690863] hub 11-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.690869] hub 11-0:1.0: 5 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.690964] ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
    Feb 1 20:31:48 localhost kernel: [ 2.690977] ohci_hcd 0000:00:14.5: OHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.690984] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 12
    Feb 1 20:31:48 localhost kernel: [ 2.691000] ohci_hcd 0000:00:14.5: irq 18, io mem 0xf7606000
    Feb 1 20:31:48 localhost kernel: [ 2.747523] hub 12-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.747528] hub 12-0:1.0: 2 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.747611] ohci_hcd 0000:00:16.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    Feb 1 20:31:48 localhost kernel: [ 2.747623] ohci_hcd 0000:00:16.0: OHCI Host Controller
    Feb 1 20:31:48 localhost kernel: [ 2.747631] ohci_hcd 0000:00:16.0: new USB bus registered, assigned bus number 13
    Feb 1 20:31:48 localhost kernel: [ 2.747651] ohci_hcd 0000:00:16.0: irq 22, io mem 0xf7605000
    Feb 1 20:31:48 localhost kernel: [ 2.804198] hub 13-0:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 2.804204] hub 13-0:1.0: 4 ports detected
    Feb 1 20:31:48 localhost kernel: [ 2.846739] ata5: SATA link down (SStatus 0 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 2.853415] ata6: SATA link down (SStatus 0 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 2.853422] ata7: SATA link down (SStatus 0 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 2.860071] usb 3-3: new high-speed USB device number 2 using ehci_hcd
    Feb 1 20:31:48 localhost kernel: [ 3.013403] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 3.013934] ata2.00: ATAPI: Optiarc DVD RW AD-7170S, 1.00, max UDMA/66
    Feb 1 20:31:48 localhost kernel: [ 3.014751] ata2.00: configured for UDMA/66
    Feb 1 20:31:48 localhost kernel: [ 3.020037] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 3.020063] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 3.020360] ata1.00: ATA-8: INTEL SSDSA2CW120G3, 4PC10362, max UDMA/133
    Feb 1 20:31:48 localhost kernel: [ 3.020362] ata1.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 31/32)
    Feb 1 20:31:48 localhost kernel: [ 3.020690] ata1.00: configured for UDMA/133
    Feb 1 20:31:48 localhost kernel: [ 3.020813] scsi 0:0:0:0: Direct-Access ATA INTEL SSDSA2CW12 4PC1 PQ: 0 ANSI: 5
    Feb 1 20:31:48 localhost kernel: [ 3.022190] scsi 1:0:0:0: CD-ROM Optiarc DVD RW AD-7170S 1.00 PQ: 0 ANSI: 5
    Feb 1 20:31:48 localhost kernel: [ 3.074092] ata3.00: ATA-7: ST3500641AS, 3.AGE, max UDMA/133
    Feb 1 20:31:48 localhost kernel: [ 3.074095] ata3.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    Feb 1 20:31:48 localhost kernel: [ 3.140722] ata3.00: configured for UDMA/133
    Feb 1 20:31:48 localhost kernel: [ 3.140825] scsi 2:0:0:0: Direct-Access ATA ST3500641AS 3.AG PQ: 0 ANSI: 5
    Feb 1 20:31:48 localhost kernel: [ 3.216724] Refined TSC clocksource calibration: 3110.408 MHz.
    Feb 1 20:31:48 localhost kernel: [ 3.216733] Switching to clocksource tsc
    Feb 1 20:31:48 localhost kernel: [ 3.263391] usb 4-3: new high-speed USB device number 2 using ehci_hcd
    Feb 1 20:31:48 localhost kernel: [ 3.395804] hub 4-3:1.0: USB hub found
    Feb 1 20:31:48 localhost kernel: [ 3.395894] hub 4-3:1.0: 3 ports detected
    Feb 1 20:31:48 localhost kernel: [ 3.553384] usb 4-5: new high-speed USB device number 4 using ehci_hcd
    Feb 1 20:31:48 localhost kernel: [ 4.046721] usb 11-4: new low-speed USB device number 2 using ohci_hcd
    Feb 1 20:31:48 localhost kernel: [ 4.273663] usb 4-3.2: new low-speed USB device number 5 using ehci_hcd
    Feb 1 20:31:48 localhost kernel: [ 4.420186] input: Western Digital My Book as /devices/pci0000:00/0000:00:12.2/usb3/3-3/3-3:1.1/input/input0
    Feb 1 20:31:48 localhost kernel: [ 4.420237] generic-usb 0003:1058:1102.0001: input,hidraw0: USB HID v1.11 Device [Western Digital My Book] on usb-0000:00:12.2-3/input1
    Feb 1 20:31:48 localhost kernel: [ 4.426121] input: Microsoft Microsoft Optical Mouse with Tilt Wheel as /devices/pci0000:00/0000:00:13.0/usb11/11-4/11-4:1.0/input/input1
    Feb 1 20:31:48 localhost kernel: [ 4.426201] generic-usb 0003:045E:00D1.0002: input,hidraw1: USB HID v1.11 Mouse [Microsoft Microsoft Optical Mouse with Tilt Wheel] on usb-0000:00:13.0-4/input0
    Feb 1 20:31:48 localhost kernel: [ 4.426298] usbcore: registered new interface driver usbhid
    Feb 1 20:31:48 localhost kernel: [ 4.426300] usbhid: USB HID core driver
    Feb 1 20:31:48 localhost kernel: [ 4.430576] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:13.2/usb4/4-3/4-3.2/4-3.2:1.0/input/input2
    Feb 1 20:31:48 localhost kernel: [ 4.430693] apple 0003:05AC:0221.0003: input,hidraw2: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:00:13.2-3.2/input0
    Feb 1 20:31:48 localhost kernel: [ 4.433681] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:13.2/usb4/4-3/4-3.2/4-3.2:1.1/input/input3
    Feb 1 20:31:48 localhost kernel: [ 4.433739] apple 0003:05AC:0221.0004: input,hidraw3: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:00:13.2-3.2/input1
    Feb 1 20:31:48 localhost kernel: [ 12.293392] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 12.309096] ata4.00: ATA-8: WDC WD3000GLFS-01F8U0, 03.03V01, max UDMA/133
    Feb 1 20:31:48 localhost kernel: [ 12.309099] ata4.00: 586072368 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
    Feb 1 20:31:48 localhost kernel: [ 12.312342] ata4.00: configured for UDMA/133
    Feb 1 20:31:48 localhost kernel: [ 12.312441] scsi 3:0:0:0: Direct-Access ATA WDC WD3000GLFS-0 03.0 PQ: 0 ANSI: 5
    Feb 1 20:31:48 localhost kernel: [ 12.630028] ata8: SATA link down (SStatus 0 SControl 300)
    Feb 1 20:31:48 localhost kernel: [ 12.635871] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB)
    Feb 1 20:31:48 localhost kernel: [ 12.635950] sd 2:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    Feb 1 20:31:48 localhost kernel: [ 12.635957] sd 0:0:0:0: [sda] Write Protect is off
    Feb 1 20:31:48 localhost kernel: [ 12.635976] sd 3:0:0:0: [sdc] 586072368 512-byte logical blocks: (300 GB/279 GiB)
    Feb 1 20:31:48 localhost kernel: [ 12.635985] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Feb 1 20:31:48 localhost kernel: [ 12.636034] sd 3:0:0:0: [sdc] Write Protect is off
    Feb 1 20:31:48 localhost kernel: [ 12.636045] sd 2:0:0:0: [sdb] Write Protect is off
    Feb 1 20:31:48 localhost kernel: [ 12.636066] sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Feb 1 20:31:48 localhost kernel: [ 12.636079] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Feb 1 20:31:48 localhost kernel: [ 12.636749] sda: sda1 sda2 sda3 sda4
    Feb 1 20:31:48 localhost kernel: [ 12.637439] sd 0:0:0:0: [sda] Attached SCSI disk
    Feb 1 20:31:48 localhost kernel: [ 12.640917] sdc: sdc1
    Feb 1 20:31:48 localhost kernel: [ 12.641165] sd 3:0:0:0: [sdc] Attached SCSI disk
    Feb 1 20:31:48 localhost kernel: [ 12.651794] sdb: sdb1 sdb2
    Feb 1 20:31:48 localhost kernel: [ 12.652085] sd 2:0:0:0: [sdb] Attached SCSI disk
    Feb 1 20:31:48 localhost kernel: [ 12.655644] sr0: scsi3-mmc drive: 125x/125x writer dvd-ram cd/rw xa/form2 cdda tray
    Feb 1 20:31:48 localhost kernel: [ 12.655648] cdrom: Uniform CD-ROM driver Revision: 3.20
    Feb 1 20:31:48 localhost kernel: [ 13.048056] Btrfs loaded
    Feb 1 20:31:48 localhost kernel: [ 13.048506] device fsid 699d671b-7064-441d-95ec-c616049fe287 devid 1 transid 3976 /dev/sda2
    Feb 1 20:31:48 localhost kernel: [ 13.056208] Btrfs detected SSD devices, enabling SSD mode
    Feb 1 20:31:48 localhost [ 13.490114] udevd[216]: starting version 180
    Feb 1 20:31:48 localhost kernel: [ 13.539060] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4
    Feb 1 20:31:48 localhost kernel: [ 13.539066] ACPI: Power Button [PWRB]
    Feb 1 20:31:48 localhost kernel: [ 13.539864] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
    Feb 1 20:31:48 localhost kernel: [ 13.539869] ACPI: Power Button [PWRF]
    Feb 1 20:31:48 localhost kernel: [ 13.540851] wmi: Mapper loaded
    Feb 1 20:31:48 localhost kernel: [ 13.558916] SP5100 TCO timer: SP5100 TCO WatchDog Timer Driver v0.01
    Feb 1 20:31:48 localhost kernel: [ 13.560394] e1000e: Intel(R) PRO/1000 Network Driver - 1.5.1-k
    Feb 1 20:31:48 localhost kernel: [ 13.560397] e1000e: Copyright(c) 1999 - 2011 Intel Corporation.
    Feb 1 20:31:48 localhost kernel: [ 13.560422] e1000e 0000:03:00.0: Disabling ASPM L0s
    Feb 1 20:31:48 localhost kernel: [ 13.560446] e1000e 0000:03:00.0: PCI INT A -> GSI 46 (level, low) -> IRQ 46
    Feb 1 20:31:48 localhost kernel: [ 13.561584] ACPI: resource piix4_smbus [io 0x0b00-0x0b07] conflicts with ACPI region SMRG [io 0xb00-0xb2f]
    Feb 1 20:31:48 localhost kernel: [ 13.561588] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Feb 1 20:31:48 localhost kernel: [ 13.566248] [drm] Initialized drm 1.1.0 20060810
    Feb 1 20:31:48 localhost kernel: [ 13.574620] input: PC Speaker as /devices/platform/pcspkr/input/input6
    Feb 1 20:31:48 localhost kernel: [ 13.578148] EDAC MC: Ver: 2.1.0
    Feb 1 20:31:48 localhost kernel: [ 13.580298] MCE: In-kernel MCE decoding enabled.
    Feb 1 20:31:48 localhost kernel: [ 13.584054] snd_hda_intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    Feb 1 20:31:48 localhost kernel: [ 13.585205] AMD64 EDAC driver v3.4.0
    Feb 1 20:31:48 localhost kernel: [ 13.592440] MXM: GUID detected in BIOS
    Feb 1 20:31:48 localhost kernel: [ 13.592532] nouveau 0000:01:00.0: PCI INT A -> GSI 24 (level, low) -> IRQ 24
    Feb 1 20:31:48 localhost kernel: [ 13.594790] [drm] nouveau 0000:01:00.0: Detected an NV50 generation card (0x450300a3)
    Feb 1 20:31:48 localhost kernel: [ 13.599879] [drm] nouveau 0000:01:00.0: Attempting to load BIOS image from PRAMIN
    Feb 1 20:31:48 localhost kernel: [ 13.617652] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Feb 1 20:31:48 localhost kernel: [ 13.618816] asus_wmi: ASUS WMI generic driver loaded
    Feb 1 20:31:48 localhost kernel: [ 13.619138] hda_codec: ALC889: BIOS auto-probing.
    Feb 1 20:31:48 localhost kernel: [ 13.620044] asus_wmi: Initialization: 0x0
    Feb 1 20:31:48 localhost kernel: [ 13.620072] asus_wmi: BIOS WMI version: 0.9
    Feb 1 20:31:48 localhost kernel: [ 13.620130] asus_wmi: SFUN value: 0x0
    Feb 1 20:31:48 localhost kernel: [ 13.620447] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input7
    Feb 1 20:31:48 localhost kernel: [ 13.622424] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input8
    Feb 1 20:31:48 localhost kernel: [ 13.631444] input: HDA ATI SB Headphone as /devices/pci0000:00/0000:00:14.2/sound/card0/input9
    Feb 1 20:31:48 localhost kernel: [ 13.631636] EDAC amd64: DRAM ECC disabled.
    Feb 1 20:31:48 localhost kernel: [ 13.631648] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
    Feb 1 20:31:48 localhost kernel: [ 13.631650] Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
    Feb 1 20:31:48 localhost kernel: [ 13.631651] (Note that use of the override may cause unknown side effects.)
    Feb 1 20:31:48 localhost kernel: [ 13.663236] e1000e 0000:03:00.0: eth0: (PCI Express:2.5GT/s:Width x1) 14:da:e9:13:96:a9
    Feb 1 20:31:48 localhost kernel: [ 13.663239] e1000e 0000:03:00.0: eth0: Intel(R) PRO/1000 Network Connection
    Feb 1 20:31:48 localhost kernel: [ 13.663331] e1000e 0000:03:00.0: eth0: MAC: 4, PHY: 8, PBA No: FFFFFF-0FF
    Feb 1 20:31:48 localhost kernel: [ 13.672185] [drm] nouveau 0000:01:00.0: ... appears to be valid
    Feb 1 20:31:48 localhost kernel: [ 13.672188] [drm] nouveau 0000:01:00.0: BIT BIOS found
    Feb 1 20:31:48 localhost kernel: [ 13.672190] [drm] nouveau 0000:01:00.0: Bios version 60.80.18.00
    Feb 1 20:31:48 localhost kernel: [ 13.672193] [drm] nouveau 0000:01:00.0: TMDS table version 2.0
    Feb 1 20:31:48 localhost kernel: [ 13.672195] [drm] nouveau 0000:01:00.0: Found Display Configuration Block version 4.0
    Feb 1 20:31:48 localhost kernel: [ 13.672197] [drm] nouveau 0000:01:00.0: Raw DCB entry 0: 04000320 00000028
    Feb 1 20:31:48 localhost kernel: [ 13.672199] [drm] nouveau 0000:01:00.0: Raw DCB entry 1: 01000322 00000030
    Feb 1 20:31:48 localhost kernel: [ 13.672201] [drm] nouveau 0000:01:00.0: Raw DCB entry 2: 02011310 00000028
    Feb 1 20:31:48 localhost kernel: [ 13.672203] [drm] nouveau 0000:01:00.0: Raw DCB entry 3: 02011312 00000030
    Feb 1 20:31:48 localhost kernel: [ 13.672204] [drm] nouveau 0000:01:00.0: Raw DCB entry 4: 010223f1 00c1c023
    Feb 1 20:31:48 localhost kernel: [ 13.672207] [drm] nouveau 0000:01:00.0: DCB connector table: VHER 0x40 5 14 2
    Feb 1 20:31:48 localhost kernel: [ 13.672209] [drm] nouveau 0000:01:00.0: 0: 0x00001030: type 0x30 idx 0 tag 0x07
    Feb 1 20:31:48 localhost kernel: [ 13.672211] [drm] nouveau 0000:01:00.0: 1: 0x00002130: type 0x30 idx 1 tag 0x08
    Feb 1 20:31:48 localhost kernel: [ 13.672213] [drm] nouveau 0000:01:00.0: 2: 0x00000210: type 0x10 idx 2 tag 0xff
    Feb 1 20:31:48 localhost kernel: [ 13.672214] [drm] nouveau 0000:01:00.0: 3: 0x00000211: type 0x11 idx 3 tag 0xff
    Feb 1 20:31:48 localhost kernel: [ 13.672216] [drm] nouveau 0000:01:00.0: 4: 0x00000213: type 0x13 idx 4 tag 0xff
    Feb 1 20:31:48 localhost kernel: [ 13.672220] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 0 at offset 0xBFB4
    Feb 1 20:31:48 localhost kernel: [ 13.694453] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 1 at offset 0xC1BF
    Feb 1 20:31:48 localhost kernel: [ 13.711299] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 2 at offset 0xD37B
    Feb 1 20:31:48 localhost kernel: [ 13.711307] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 3 at offset 0xD46A
    Feb 1 20:31:48 localhost kernel: [ 13.712376] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table 4 at offset 0xD621
    Feb 1 20:31:48 localhost kernel: [ 13.712378] [drm] nouveau 0000:01:00.0: Parsing VBIOS init table at offset 0xD686
    Feb 1 20:31:48 localhost kernel: [ 13.732383] [drm] nouveau 0000:01:00.0: 0xD686: Condition still not met after 20ms, skipping following opcodes
    Feb 1 20:31:48 localhost kernel: [ 13.774080] adt7475 0-002e: ADT7473 device, revision 0
    Feb 1 20:31:48 localhost kernel: [ 13.774082] adt7475 0-002e: Optional features: fan4
    Feb 1 20:31:48 localhost kernel: [ 13.783928] [drm] nouveau 0000:01:00.0: Detected monitoring device: adt7473
    Feb 1 20:31:48 localhost kernel: [ 13.783931] [drm] nouveau 0000:01:00.0: 1 available performance level(s)
    Feb 1 20:31:48 localhost kernel: [ 13.783935] [drm] nouveau 0000:01:00.0: 0: core 513MHz shader 1188MHz memory 792MHz voltage 1300mV fanspeed 100%
    Feb 1 20:31:48 localhost kernel: [ 13.783950] [drm] nouveau 0000:01:00.0: c: core 198MHz shader 1188MHz memory 396MHz
    Feb 1 20:31:48 localhost kernel: [ 13.785323] [TTM] Zone kernel: Available graphics memory: 4062776 kiB.
    Feb 1 20:31:48 localhost kernel: [ 13.785325] [TTM] Zone dma32: Available graphics memory: 2097152 kiB.
    Feb 1 20:31:48 localhost kernel: [ 13.785327] [TTM] Initializing pool allocator.
    Feb 1 20:31:48 localhost kernel: [ 13.785341] [drm] nouveau 0000:01:00.0: Detected 320MiB VRAM
    Feb 1 20:31:48 localhost kernel: [ 13.799226] [drm] nouveau 0000:01:00.0: 512 MiB GART (aperture)
    Feb 1 20:31:48 localhost kernel: [ 13.806974] [drm] nouveau 0000:01:00.0: DCB encoder 1 unknown
    Feb 1 20:31:48 localhost kernel: [ 13.806977] [drm] nouveau 0000:01:00.0: TV-1 has no encoders, removing
    Feb 1 20:31:48 localhost kernel: [ 13.817239] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    Feb 1 20:31:48 localhost kernel: [ 13.817241] [drm] No driver support for vblank timestamp query.
    Feb 1 20:31:48 localhost kernel: [ 13.918245] usbcore: registered new interface driver uas
    Feb 1 20:31:48 localhost kernel: [ 13.919398] Linux media interface: v0.10
    Feb 1 20:31:48 localhost kernel: [ 13.921493] Initializing USB Mass Storage driver...
    Feb 1 20:31:48 localhost kernel: [ 13.921642] scsi8 : usb-storage 3-3:1.0
    Feb 1 20:31:48 localhost kernel: [ 13.922317] usbcore: registered new interface driver usb-storage
    Feb 1 20:31:48 localhost kernel: [ 13.922320] USB Mass Storage support registered.
    Feb 1 20:31:48 localhost kernel: [ 13.925326] Linux video capture interface: v2.00
    Feb 1 20:31:48 localhost kernel: [ 13.927942] uvcvideo: Found UVC 1.00 device <unnamed> (046d:080f)
    Feb 1 20:31:48 localhost kernel: [ 13.942174] input: UVC Camera (046d:080f) as /devices/pci0000:00/0000:00:13.2/usb4/4-5/4-5:1.0/input/input10
    Feb 1 20:31:48 localhost kernel: [ 13.942248] usbcore: registered new interface driver uvcvideo
    Feb 1 20:31:48 localhost kernel: [ 13.942251] USB Video Class driver (1.1.1)
    Feb 1 20:31:48 localhost kernel: [ 13.976590] [drm] nouveau 0000:01:00.0: allocated 1680x1050 fb: 0x310000, bo ffff88021ea78000
    Feb 1 20:31:48 localhost kernel: [ 13.976738] fbcon: nouveaufb (fb0) is primary device
    Feb 1 20:31:48 localhost kernel: [ 14.021548] Console: switching to colour frame buffer device 210x65
    Feb 1 20:31:48 localhost kernel: [ 14.025974] fb0: nouveaufb frame buffer device
    Feb 1 20:31:48 localhost kernel: [ 14.025976] drm: registered panic notifier
    Feb 1 20:31:48 localhost kernel: [ 14.025979] [drm] Initialized nouveau 0.0.16 20090420 for 0000:01:00.0 on minor 0
    Feb 1 20:31:48 localhost kernel: [ 14.946307] scsi 8:0:0:0: Direct-Access WD My Book 1028 PQ: 0 ANSI: 4
    Feb 1 20:31:48 localhost kernel: [ 14.969040] sd 8:0:0:0: [sdd] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    Feb 1 20:31:48 localhost kernel: [ 14.982159] sd 8:0:0:0: [sdd] Write Protect is off
    Feb 1 20:31:48 localhost kernel: [ 14.996032] sd 8:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Feb 1 20:31:48 localhost kernel: [ 15.619105] sdd: sdd1
    Feb 1 20:31:48 localhost kernel: [ 15.730813] sd 8:0:0:0: [sdd] Attached SCSI disk
    Feb 1 20:31:48 localhost kernel: [ 17.625282] device fsid 699d671b-7064-441d-95ec-c616049fe287 devid 1 transid 3976 /dev/sda2
    Feb 1 20:31:48 localhost kernel: [ 17.625855] device label home devid 1 transid 8074 /dev/sda3
    Feb 1 20:31:48 localhost kernel: [ 17.927687] btrfs: use ssd allocation scheme
    Feb 1 20:31:48 localhost kernel: [ 17.930204] device label home devid 1 transid 8074 /dev/sda3
    Feb 1 20:31:48 localhost kernel: [ 17.940362] Btrfs detected SSD devices, enabling SSD mode
    Feb 1 20:31:48 localhost kernel: [ 17.976566] kjournald starting. Commit interval 5 seconds
    Feb 1 20:31:48 localhost kernel: [ 17.976619] EXT3-fs (sdb2): warning: maximal mount count reached, running e2fsck is recommended
    Feb 1 20:31:48 localhost kernel: [ 17.976813] EXT3-fs (sdb2): using internal journal
    Feb 1 20:31:48 localhost kernel: [ 17.976816] EXT3-fs (sdb2): mounted filesystem with ordered data mode
    Feb 1 20:31:48 localhost kernel: [ 18.018513] kjournald starting. Commit interval 5 seconds
    Feb 1 20:31:48 localhost kernel: [

    User,
    Refer this
    http://oracleintelligence.blogspot.com/2008/08/obiee-time-to-expire-for-idle.html
    thanks,
    Saichand.v

  • Classnotfound when loading report

    Post Author: Codeamazon
    CA Forum: Deployment
    &#91;I've searched and don't see an answer to this...be happy to be proven wrong.  Also not sure if this should go here, or to the Java forum.&#93;I'm trying to get the Java Reporting Component working.  My environment is OpenVMS, and we've installed Tomcat specifically for this project.  I do have JSPs working with beans with database connections, so the underlying Java side seems to be functional, however I get a classnotfound error when I try to load a report.Here is basic.jsp, the sample JSP that I got from online documentation : http://www.businessobjects.com/pdf/dev_zone/crxi_java_startup_guide.pdf , along with the error it generates.  I have debugged the report path by commenting out the CRConfig.xml report-path option and using an absolute approach.  REPORT1.RPT is in the web-inf/classes directory of my app.  Here is my code:  &#91;HTML STUFF HERE&#93;<%@page import="com.crystaldecisions.reports.sdk." %><%@page import="com.crystaldecisions.sdk.occa.report.reportsource." %><%@page import="com.crystaldecisions.sdk.report.lib.*" %><%    String reportName="REPORT1.RPT";    try    {      //check to see if report source already exists      Object reportSource = session.getAttribute("reportSource");      //if not yet opened      if (reportSource == null)      {        ReportClientDocument oReportClientDocument = new ReportClientDocument();        oReportClientDocument.open(reportName, 0);======more stuff, but the code fails on this line==========Error:root cause java.lang.NoClassDefFoundError     java.lang.Class.forName0(Native Method)     java.lang.Class.forName(Class.java:141)     com.crystaldecisions.proxy.remoteagent.z.a(Unknown Source)     com.crystaldecisions.sdk.occa.report.application.ReportAppSession.int(Unknown Source)     com.crystaldecisions.sdk.occa.report.application.ReportAppSession.initialize(Unknown Source)     com.crystaldecisions.sdk.occa.report.application.ClientDocument.for(Unknown Source)     com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.for(Unknown Source)     com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(Unknown Source)     com.crystaldecisions.reports.sdk.ReportClientDocument.open(Unknown Source)     org.apache.jsp.basic_jsp._jspService(org.apache.jsp.basic_jsp:79)     org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:322)     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:291)     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)     javax.servlet.http.HttpServlet.service(HttpServlet.java:802) Looks to me like somewhere in the report loader, it isn't finding a class it needs, which suggests a missing .jar, but I can't find one missing based on the documentation.  I've installed these .jars in the apps' web-inf/lib directory:
    CONCURRENT.JAR;2  
    CrystalCharting.jar;1                  
    CRYSTALCOMMON.JAR;1
    CRYSTALCONTENTMODELS.JAR;1             
    CrystalExporters.jar;1
    CrystalExportingBase.jar;1             
    CRYSTALFORMULAS.JAR;1
    CRYSTALQUERYENGINE.JAR;1               
    CRYSTALREPORTENGINE.JAR;1
    CRYSTALREPORTINGCOMMON.JAR;1           
    ICU4J.JAR;2        
    ICU4J.JAR;1
    JRCEROM.JAR;1      
    KEYCODEDECODER.JAR;1                   
    LOG4J.JAR;2
    LOG4J.JAR;1        
    METAFILERENDERER.JAR;1                 
    RASAPP.JAR;1
    RASCORE.JAR;1      
    RPOIFS.JAR;1       
    SERIALIZATION.JAR;1
    URIUtil.jar;1
    webreporting-jsf.jar;1                 
    webreporting.jar;1
    XERCESIMPL.JAR;1
    XML-APIS.JAR;2     
    XML-APIS.JAR;1
    I based this list on Crystal Reports 11/Developer
    Files/Help/chs/JavaReportingComponent_docs/reference/default.htm ,
    "required components" list.  Can anyone help me solve this or suggest how I can debug it or get more information about what it's not finding?Thanks,Shasta 

    Thanks for helping me! I'm starting the rmiregistry in
    a clean environment (according to the Sun tutorial)
    by:
    set CLASSPATH=; //Just to make sure all paths are
    viped out
    rmiregistry -J-Dsun.rmi.loader.logLevel=VERBOSE
    If I echo the current CLASSPATH, I can see it's empty.
    However, I'm starting the registry in the root
    directory of the RMI-server application. Bad idea? As
    I understand it, the registry shall be started in an
    environment without any references to stub-files or
    anything else involving the RMI-server. Still
    confused...Looking at your explanation you could run it in two ways
    1) Run it in an environrmrnt where classpath is not null and where the java.rmi.codebase property is set appropriately.
    2) Run it in an environment where the applications classes are not on the classpath.
    The requirements for 2) are
    a) CLASSPATH is not null and doesnot include any entry of the your application classes.
    b) CLASSPATH is null and working directory (".") is not the root your applications packages structure. The reason being that the null CLASSPATH is interpreted as "."
    Or else in case you dont wanna set the codebase property u can acquire a required class via RMIClassLoader.loadClass method.

  • RMI class paths

    I'm a noob to RMI, J2EE etc, but not to Java or network programming.
    I have been studying RMI on my own and tried to get the Tutorial to work. It works properly when I build the server on Solaris, but I can't get past a ClassNotFound error on W2K. Both systems are running JDK1.4.2 and I'm using the same code. I followed most of the instructions in the tutorial (except that I used rmic -v1.2 to build the stub, so no skel.)
    The error is the most frequently reported in this forum. I read many previous posts and found no truly useful replies. Here's the error text
    E:\Javadev\Trouble>java CalculatorServer
    Trouble: java.rmi.ServerException: Server RemoteException; nested exception is: java.rmi.UnmarshalException: error unmarshalling arguments; nested excep
    tion is: java.lang.ClassNotFoundException: CalculatorImpl_Stub
    I've tried the following:
    rmiregistry run with no classpath
    rmiregistry run in the same directory as the code (this worked on Solaris)
    -Djava.rmi.server.codebase=file:///e:\javadev\Trouble (and several other variations, both types of slashes, trailing slash)
    -Djava.rmi.server.codebase=http://mysun/java etc.
    -Dsun.rmi.server.logLevel=VERBOSE -Dsun.rmi.loader.logLevel=VERBOSE
    Can someone who understands this please explain how RMI finds the code for the stub. Its far from obvious. I really don't want to believe the following quote from "Apache, The Definitive Guide" about Tomcat, but this is leading me in that direction.
    "In the authors' experience, installing anything to do with Java is a very tiresome process, and this was no exception. The assumption seems to be that Java is so fascinating that proper explanations are unnecessary -- devotees will immerse themselves in the holy stream and all will become clear after many days beneath the surface."

    ifrs,
    Thanks for the link, I've read it and will give it a try later today. You get 2 dukes
    ejp,
    Yes, I knew that, but you get a duke for correcting my compatriot.
    devyn_
    I installed all the software on both those systems and they are both running 1.4.2. You get 1 duke for suggesting that I check out system differences.
    The only differences that I know about are:
    - W2K has CLASSPATH set in the environment, Solaris doesn't, but I ran set CLASSPATH= in the command window on W2K to clear it.
    - The build versions of 1.4.2. are slightly different
    - file based URL's are easier in Unix.
    Does anyone know a good reference for URL formats?

  • How to use SQL*loader in oracle9i???

    Hi,
    I have installed oracle9i, and want to use sql*loader to load text data into table.
    However, I can not find a tool called SQL*loader anywhere on the manu.
    It will be appreciated if some experts can give me an advice where I can find it, and how to use it to load text data.
    Thanks.
    Chuck

    When I go to tahiti.oracle.com and search on "external table", I get dozens of hits that explain how to create an external table and give numerous examples. If you have specific questions, I'd be happy to try to go into more detail. A generic SQL*Loader guide, however, would be well bayond the scope of this forum.
    http://otn.oracle.com/pls/db92/db92.drilldown?remark=&word=external+table&book=&preference=
    Justin

Maybe you are looking for

  • Windows Vista Blue Screen on Startup

    I have an iMac 21". I've installed Windows Vista 32bit and Boot Camp 3.0 as directed, however I keep getting a blue screen whenever Windows starts. It's hard to read it since the computer restarts so quickly, but I have the dump files from the blue s

  • Can't buen DVDs because of a "MacOS Error'

    I thought my Superdrive was failing.....but it appears it's a 'software error.' Any program (Toast, DVD2OneX, Disk Utility) that needs to burn DVDs, can't. However, CDs still burn just fine. This problem has been occuring over the last week. Before t

  • Barcode printing using dot matrix printer

    Hi, Can anyone let me know what all DOT Matrix printers support barcode printing (PDF 147 type), The barcode is printed in invoice when printout is taken using laser jet but when using dot matrix (Panasonic kx-p3696), the invoice gets printed  withou

  • Cant get my apps onto my itunes

    I recently upgraded my computer to windows 7 from windows XP. on the XP OS i could transfer my apps into itunes with no problem, just click "transfer purchases" and boom. done. The upgrade to 7 was done with a complete hard drive format, no windows.o

  • How can I create a screen a select option inside a screen

    Hello experts, I have a screen '0100' and i need to create a select-options inside how can i do this? thanks in advance'