Require Sun AMD Server with VGA card = 16M  - HELP

Hi everybody,
Right now, Sun has the AMD Servers: V40z, X4100, X4200.
These products are very good with high performance and quite cheap.
But I find out that the integrated VGA of all AMD Servers has only 8MB.
For my job, I need graphic card with at least 16MB.
Can I buy a VGA card with 16M/32M from Sun?
Tks a lot,

Joe's information is pointing to the correct direction.
1280x1024 at 32bit color depth needs less than 8MB of video RAM.
(... actually, less than 6MB)
Glance at this page at the P.C. Guide web site.
http://pcguide.com/ref/video/modesBuffer-c.html
The PCGUIDE.COM web site has been around since 1997 and I often find its information of value.
That video memory requirement link is a part of that web site's topic list.
http://pcguide.com/topic.html
I've saved the topic list as a bookmark, then use it to find
whatever sub-topic might be of interest-du-jour.
However, all those systems are servers, not desktop workstations.
You shouldn't need any remarkable graphics capabilities to administer them.
That's why there are no qualified graphics upgrade options.

Similar Messages

  • I have apple id but in this week i see this error : you must verify your payment info befor you can make purchases. please help me. i have not credit card but i buying apps with gift card. please help me

    i have apple id but in this week i see this error : you must verify your payment info befor you can make purchases. please help me. i have not credit card but i buying apps with gift card. please help me

    Why do you keep making multiple posts with this issue? You have now posted it three times in the last hour and have two different people helping you in two different threads!
    https://discussions.apple.com/message/18606895
    https://discussions.apple.com/message/18606685
    This is bad internet manners.

  • Replace Quotes, Connection Pooling, and Sun Web Server with MySQL, Oracle

    This is code I use to insert data into my MySQL and Oracle databases.
    I takes care of quotes and shows use of context, i.e. when you use Sun Web Server's
    ConnectionPooling. This code works. Feel free to reply if you have questions on how to set up connection pooling using Sun Web Server 6.1SP - it took quite a long time to learn and I couldn't find much information throughout the web, so I hope this helps...
    This is not a question and I am not looking for an answer, but please post comments or suggestions.
    dailysun
    This is in one class where I have a hashtable containing the
    column name / value pairs that I want to enter into my table.
    This class simply creates the SQL string from the values in the
    hashtable. It then passes that hashtable including the database
    name to a class which executes that sql statement (second code
    portion).
    /* Insert data into sf_parts. Create the column strings from
             * the provided hash table. Be sure to parse out hash elements which
             * are used for the createTemplate process
            StringBuffer values = new StringBuffer();
            StringBuffer fields = new StringBuffer();
            Enumeration keys = fieldHash.keys();
            while(keys.hasMoreElements()){
                Object currentKey = keys.nextElement();
                    String fieldValue = (String) fieldHash.get(currentKey);
                    if(values.length() >0){
                        values.append(",");
                    values.append("'"+fieldValue.replaceAll("'","''")+"'"); // Takes care of quotes and various other special characters!
                    if(fields.length() >0){
                        fields.append(",");
                    fields.append(currentKey);
            sql = "INSERT INTO myTable (" + fields.toString() + ") VALUES (" + values.toString() + ");";
            String insertResult = caq.getInsertDelete(sql,"myDatabaseName"); // your database name is defined in web.xml and sun-web.xml when you use Sun Web Server's Connection Pooling.
            returnValue += "<br><br><b>Rows inserted into table(myTable): </b>" + insertResult + "<br>\n";
            And, like I describe above, this method executes the sql statement.
         * Takes care of insert, update and delete requests.
         * Must have set both dbName as well as the sql String.
         * Will return number of rows affected as String.
         * @return String Number of rows affected
         * @exception SQLException
         * @exception Exception
        public String getInsertDelete() {
            checkData(); // this simply checks if the variables dbName and sql are not empty ;-)
            InitialContext initContext = null;
            int rv = 0;
            try{
                // Get connection from configured pool
                initContext = new InitialContext();
                source = (DataSource) initContext.lookup("java:comp/env/jdbc/" + dbName); // I have this set up in web.xml and sun-web.xml (I use Sun Web Server 6.1SP which does connection pooling for me)
                conn = source.getConnection();
                if(conn != null){
                    stmt = conn.createStatement();
                    rv = stmt.executeUpdate(sql);
            }catch (SQLException e){
                // do something
            }catch (Exception e){
                // do something
            }finally{
                try{
                    stmt.close();
                }catch(Exception e){
                    // do something
                try{
                    conn.close();
                }catch(Exception e){
                    // do something
                try{
                    initContext.close();
                }catch(Exception e){
                    // do something
            return rv+"";
        }  

    This is code I use to insert data into my MySQL and
    Oracle databases.
    I takes care of quotes and shows use of context, i.e.
    when you use Sun Web Server's
    ConnectionPooling. This code works. Feel free to
    reply if you have questions on how to set up
    connection pooling using Sun Web Server 6.1SP - it
    took quite a long time to learn and I couldn't find
    much information throughout the web, so I hope this
    helps...
    This is not a question and I am not looking for an
    answer, but please post comments or suggestions.Using prepared statements would mean that you wouldn't have to worry about quotes.
    You should be closing the result set.
    You are handling all fields as strings. That won't work with time fields and might not work for numeric fields.
    Presumably most of your variables are member variables. They should be local variables because that is the scope of the usage.
    You must do something with the exceptions.
    Hashtables although convienent mean that problems with usage can only be resolved at run time rather than compile time.

  • Integrating Sun App Server with WebSphere MQ

    Hi,
    I am using Sun App server V8.1 . I also have a websphere MQ v5.3 installed in my system. I want to integrate this MQ with the App server.
    I created a queueManager and a Queue in MQ and using the JMSAdmin console of the Mq, i created jndi lookup resources using INITIAL_CONTEXT_FACTORY=com.sun.jndi.fscontext.RefFSContextFactory
    In the application server side, i created a Resource adapter using the command:
    create-resource-adapter-config --property SupportsXA=true:ProviderIntegrationMode=jndi:RMPolicy=OnePerPhysicalConnection:JndiProperties=java.naming.factory.url.pkgs\\=com.ibm.mq.jms.naming,java.naming.factory.initial\\=com.sun.jndi.fscontext.RefFSContextFactory,java.naming.provider.url\\=file\\:D\\:\\MQ:LogLevel=finest mqra
    Then i deployed this resource adaptor using the command :
    deploy name mqra target server "D:\Sun\AppServer\lib\addons\resourceadapters\genericjmsra\genericra.rar"
    Using this resource adapter i created a connection pool, connector resource and an admin object using the commands
    create-connector-connection-pool raname mqra connectiondefinition javax.jms.QueueConnectionFactory transactionsupport  XATransaction property ConnectionFactoryJndiName=MQQCF mymqpool
    create-connector-resource --poolname mymqpool jms/MyMqQCF
    create-admin-object raname mqra restype javax.jms.Queue --property DestinationJndiName=RTQueue jms/MyMqQueue
    After that, i wrote a java code to lookup these resources and put a message into the queue.
    This is the snippet of my java code
    InitialContext ic = new InitialContext();
    QueueConnectionFactory cnxFact = (QueueConnectionFactory)ic.lookup("jms/MyMqQCF");
    Queue qu = (Queue)ic.lookup("jms/MyMqQueue");
    try {               
    QueueConnection qConn = cnxFact.createQueueConnection();
    QueueSession qSess = qConn.createQueueSession(false,Session.AUTO_ACKNOWLEDGE);
    QueueSender qSend = qSess.createSender(qu);
    TextMessage msg = qSess.createTextMessage();
    msg.setText("1");
    qSend.send(msg);
    qConn.close();
    I am getting an exception in the line, QueueConnection qConn = cnxFact.createQueueConnection();
    here is the stack trace
    java.lang.ClassCastException: com.ibm.mq.jms.MQQueueConnectionFactory
    at com.sun.genericra.outbound.ManagedQueueConnectionFactory.createXAConnection(ManagedQueueConnectionFactory.java:45)
    at com.sun.genericra.outbound.AbstractManagedConnectionFactory.createPhysicalConnection(AbstractManagedConnectionFactory.java:127)
    at com.sun.genericra.outbound.AbstractManagedConnectionFactory.createManagedConnection(AbstractManagedConnectionFactory.java:111)
    at com.sun.enterprise.resource.ConnectorAllocator.createResource(ConnectorAllocator.java:90)
    at com.sun.enterprise.resource.IASNonSharedResourcePool.getUnenlistedResource(IASNonSharedResourcePool.java:437)
    at com.sun.enterprise.resource.IASNonSharedResourcePool.internalGetResource(IASNonSharedResourcePool.java:355)
    at com.sun.enterprise.resource.IASNonSharedResourcePool.getResource(IASNonSharedResourcePool.java:250)
    at com.sun.enterprise.resource.PoolManagerImpl.getResourceFromPool(PoolManagerImpl.java:213)
    at com.sun.enterprise.resource.PoolManagerImpl.getResource(PoolManagerImpl.java:174)
    at com.sun.enterprise.connectors.ConnectionManagerImpl.internalGetConnection(ConnectionManagerImpl.java:286)
    at com.sun.enterprise.connectors.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:145)
    at com.sun.enterprise.connectors.ConnectionManagerImpl.allocateConnection(ConnectionManagerImpl.java:121)
    at com.sun.genericra.outbound.ConnectionFactory.createConnection(ConnectionFactory.java:69)
    at com.sun.genericra.outbound.ConnectionFactory.createQueueConnection(ConnectionFactory.java:101)
    Can anybody help???

    bump
    update:
    So to avoid this problem I added spring.jar to the server classpath. that got rid of this message but then it started complaining that its missing struts2 core jar..i added that in server classpath as well...I did same for 4 other files and in the end it said 'bean for xwork has already been initialized' (because all these jars are in the application as well).
    So I am stuck. if I add all jars to server classpath..it says beans have already been initialized. If I take out the jars from server classpath then it says that stuff is missing (eg. contextLoader.properties missing - orig post)
    again, all this goes away when I restart the server..so i am just trying to avoid having to restart server every code change.

  • Cannot install Sun Application Server with JSC 2

    Hello :)
    I have been installed JSC 2 update 1 for first time, 2 month ago, but I got a problem so I have to reinstall the JSC 2. I did uninstall and then delete the JSC 2 directory and directory under my Document and Setting/user1/Creator21/
    But when I reinstall the JSC 2, I couldnt get Sun App Server to be installed. I tried it 3 times already but I got the same problem, still couldnt install JSC 2.
    (Installation was success ,... not error message during installation). I thought it has problem with the registry, so please tell me how to fix this problem.
    Thank You !

    Sorry, the reply is not related to your query,
    but you could try the latest netbeans 5.5 and use the visual web pack plugin..

  • Problem with VGA card

    Hi,
    I just bought an MSI 865 Neo2FISR MOBO and a Asus 9600 XT VGA card.
    As someone said to me on this forum, i install first the intel INF files (april 2003 version)from the MSI CD. The screen was OK (only try with XP not with Games).
    Next I install the Asus drivers and reboot the system. Since I've done that, my screen is complety black and i only can have XP in a special mode ("sans echec") in french.
    2 days ago i instal first the Asus drivers, Direct X 9 and next the Intel INF and the result was the same.
    Can someone Help Me ?
    Thanks!
    Configuration :
    P 4 2.8 Gh HT
    MSI 865 Pe neo 2FISR
    Seagate 7200.7 120 Go
    2*256 DDR 3200 Twin X LL Corsaire
    Asus 9600 XT
    XP Pro
    Sony DVD Player
    Pionneer DVD R 106 Burner
    Screen : Hercule 920 Pro DVI

    Try with ATI reference driver instead.

  • Can't  fix error 404 in sun application server 8 2005Q1 and need help......

    i am using sun application server 8 2005Q1.........
    i an getting the err 404(requested resources not available......)
    I have did the following:
    the following are my files
    employeedetails.java(which implements the servlet class)
    findemployee.html(which gets the employee id)
    1.First I have designed the interface with URL as
    http://localhost:1050(which is my port no)/emp_details/servlet/EmployeeDetails
    2.Then I have coded the servlet with class name as EmployeeDetails
    3.I have compiled it in the following manner:
    e:\>path=%path%;c:\j2sdk1.4.2_12\bin;
    e:\>set classpath=%classpath%;e:\sun\Appserver\lib\j2ee.jar;
    e:\>javac e:\Employee\EmployeeDetails.java
    It compiled successfully without any errors
    4.Then I have started the sun application server
    5.I have also opened the deploy tool
    6.In that,
    New->Application
    the application wizard opens.......
    then I browsed and given the new application name as e:\Employee\EmployeeDetails.jar
    The application display name appears as EmployeeDetails
    7.It also appears at the left end of the tree structure
    8.Then I opened the New->Web Component
    the web component wizard appears
    9.I have clicked next
    10.In that panel I have chosen the option
    Create new WAR Module in application
    I have given the WAR display name as Emp
    11.Then in the bottom I have clicked the option 'edit contents'
    12.The edit contents pane opens.......
    13.In that I have selected EmployeeDetails.class and FindEmployee.html and clicked 'Add'
    14.It gets added in the content pane
    15.Then I have chosen the component type as Servlet
    16.In the next wizard ,the servlet class name,web component name and display name,everything
    is given as EmployeeDetails
    17.With this I have finished the web component wizard
    18.Then the context root name is given as emp_details and saved
    19.Then I have chosen the Tools->deploy
    20.In that wizard,
    I have typed the admin user name and pswd
    21.It gets deployed successfully.
    22.Then I have opened th browser and typed the following URL
    http://localhost:1050/emp_details/FindEmployee.html
    23.The html form appears.....
    24.I have kept oracle as my backend with datasource name Mine
    and in the servlet I have changed the datasource name with user name and pswd scott & tiger
    25.But when i click the submit button,it gives the error
    http status 404 -/emp_details/servlet/EmployeeDetails
    the requested resource not available
    anybody who knows the anwser plz reply me soon and help me to get rid of this error..........................

    Your code looks fine. Unless you actually made a typo in the URL I can't explain this problem. To verify this I even copied your web.xml and the SimpleServlet without any changes to my playground environment and it ran just flawlessly at http://localhost:8080/playground/servlets/HelloWorld
    To exclude things, have you tried another applicationserver (Tomcat 6? Glassfish? Jetty?) or maybe another OS?

  • Teaming setup on Sun X4140 Server with nVidia ethernet cards

    Hello to all,
    I would like to enable the Teaming of my Ethernet cards.
    OS: Windows 2003 R2 SP2
    Platform: Sun server X4140 with 4 ethernet cards NET0,1,2,3
    When I use the nforceware program i get this error message when attempting to enable Teaming.
    Eror in NV_LBFO_OnOff.TeamingEnableDisable: Resolve failed, object does not exist
    It asks for a reboot and after the reboot the Teaming is still not enabled !
    Please let me know if you have any solutions for this.
    Thank you

    Hello to all,
    I would like to enable the Teaming of my Ethernet cards.
    OS: Windows 2003 R2 SP2
    Platform: Sun server X4140 with 4 ethernet cards NET0,1,2,3
    When I use the nforceware program i get this error message when attempting to enable Teaming.
    Eror in NV_LBFO_OnOff.TeamingEnableDisable: Resolve failed, object does not exist
    It asks for a reboot and after the reboot the Teaming is still not enabled !
    Please let me know if you have any solutions for this.
    Thank you

  • [SOLVED] Can't launch X server with nvidia card

    I am having difficulties setting up X on my computer. Hardware is Nvidia Geforce 970 GTX. I keep getting the error:
    modprobe: ERROR: could not insert 'nvidia': No such device
    (EE) Fatal server error: no screens found
    Here's some additional info. Help is much appreciated.
    lspci:
    00:00.0 Host bridge: Intel Corporation 4th Gen Core Processor DRAM Controller (rev 06)
    00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor PCI Express x16 Controller (rev 06)
    00:14.0 USB controller: Intel Corporation 9 Series Chipset Family USB xHCI Controller
    00:16.0 Communication controller: Intel Corporation 9 Series Chipset Family ME Interface #1
    00:19.0 Ethernet controller: Intel Corporation Ethernet Connection (2) I218-LM
    00:1a.0 USB controller: Intel Corporation 9 Series Chipset Family USB EHCI Controller #2
    00:1b.0 Audio device: Intel Corporation 9 Series Chipset Family HD Audio Controller
    00:1c.0 PCI bridge: Intel Corporation 9 Series Chipset Family PCI Express Root Port 1 (rev d0)
    00:1c.3 PCI bridge: Intel Corporation 9 Series Chipset Family PCI Express Root Port 4 (rev d0)
    00:1c.4 PCI bridge: Intel Corporation 9 Series Chipset Family PCI Express Root Port 5 (rev d0)
    00:1c.6 PCI bridge: Intel Corporation 9 Series Chipset Family PCI Express Root Port 7 (rev d0)
    00:1d.0 USB controller: Intel Corporation 9 Series Chipset Family USB EHCI Controller #1
    00:1f.0 ISA bridge: Intel Corporation 9 Series Chipset Family Z97 LPC Controller
    00:1f.2 SATA controller: Intel Corporation 9 Series Chipset Family SATA Controller [AHCI Mode]
    00:1f.3 SMBus: Intel Corporation 9 Series Chipset Family SMBus Controller
    01:00.0 PCI bridge: PLX Technology, Inc. PEX 8747 48-Lane, 5-Port PCI Express Gen 3 (8.0 GT/s) Switch (rev ca)
    02:08.0 PCI bridge: PLX Technology, Inc. PEX 8747 48-Lane, 5-Port PCI Express Gen 3 (8.0 GT/s) Switch (rev ca)
    02:10.0 PCI bridge: PLX Technology, Inc. PEX 8747 48-Lane, 5-Port PCI Express Gen 3 (8.0 GT/s) Switch (rev ca)
    03:00.0 VGA compatible controller: NVIDIA Corporation GM204 [GeForce GTX 970] (rev a1)
    03:00.1 Audio device: NVIDIA Corporation GM204 High Definition Audio Controller (rev a1)
    06:00.0 PCI bridge: ASMedia Technology Inc. Device 1187
    07:01.0 PCI bridge: ASMedia Technology Inc. Device 1187
    07:02.0 PCI bridge: ASMedia Technology Inc. Device 1187
    07:03.0 PCI bridge: ASMedia Technology Inc. Device 1187
    07:04.0 PCI bridge: ASMedia Technology Inc. Device 1187
    07:05.0 PCI bridge: ASMedia Technology Inc. Device 1187
    07:06.0 PCI bridge: ASMedia Technology Inc. Device 1187
    07:07.0 PCI bridge: ASMedia Technology Inc. Device 1187
    0a:00.0 SATA controller: ASMedia Technology Inc. ASM1062 Serial ATA Controller (rev 02)
    0d:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03)
    0e:00.0 FireWire (IEEE 1394): VIA Technologies, Inc. VT6315 Series Firewire Controller (rev 01)
    0f:00.0 SATA controller: ASMedia Technology Inc. ASM1062 Serial ATA Controller (rev 02)
    10:00.0 USB controller: ASMedia Technology Inc. ASM1042A USB 3.0 Host Controller
    20-nvidia.conf:
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BusID "PCI:3:0:0"
    Option "NoLogo" "true"
    EndSection
    Xorg.0.log:
    [ 258.707]
    X.Org X Server 1.16.3
    Release Date: 2014-12-20
    [ 258.707] X Protocol Version 11, Revision 0
    [ 258.707] Build Operating System: Linux 3.18.1-1-ARCH x86_64
    [ 258.707] Current Operating System: Linux Bastet 3.17.6-1-ARCH #1 SMP PREEMPT Sun Dec 7 23:43:32 UTC 2014 x86_64
    [ 258.707] Kernel command line: initrd=\initramfs-linux.img root=/dev/sda4 rw acpi=off
    [ 258.707] Build Date: 29 December 2014 01:09:58PM
    [ 258.707]
    [ 258.707] Current version of pixman: 0.32.6
    [ 258.707] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 258.707] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 258.707] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Dec 30 00:53:53 2014
    [ 258.707] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 258.707] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 258.707] (==) No Layout section. Using the first Screen section.
    [ 258.707] (==) No screen section available. Using defaults.
    [ 258.707] (**) |-->Screen "Default Screen Section" (0)
    [ 258.707] (**) | |-->Monitor "<default monitor>"
    [ 258.707] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 258.707] (**) | |-->Device "Device0"
    [ 258.707] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 258.707] (==) Automatically adding devices
    [ 258.707] (==) Automatically enabling devices
    [ 258.707] (==) Automatically adding GPU devices
    [ 258.708] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
    [ 258.708] Entry deleted from font path.
    [ 258.708] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 258.708] Entry deleted from font path.
    [ 258.708] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 258.708] Entry deleted from font path.
    [ 258.708] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 258.708] Entry deleted from font path.
    [ 258.708] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 258.708] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 258.708] Entry deleted from font path.
    [ 258.708] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 258.708] (==) FontPath set to:
    /usr/share/fonts/misc/
    [ 258.708] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 258.708] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 258.708] (II) Loader magic: 0x818d80
    [ 258.708] (II) Module ABI versions:
    [ 258.708] X.Org ANSI C Emulation: 0.4
    [ 258.708] X.Org Video Driver: 18.0
    [ 258.708] X.Org XInput driver : 21.0
    [ 258.708] X.Org Server Extension : 8.0
    [ 258.708] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
    [ 258.709] (--) PCI:*(0:3:0:0) 10de:13c2:1043:8508 rev 161, Mem @ 0xde000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
    [ 258.709] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 258.709] (II) LoadModule: "glx"
    [ 258.709] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 258.714] (II) Module glx: vendor="NVIDIA Corporation"
    [ 258.714] compiled for 4.0.2, module version = 1.0.0
    [ 258.714] Module class: X.Org Server Extension
    [ 258.714] (II) NVIDIA GLX Module 343.36 Mon Dec 1 15:50:02 PST 2014
    [ 258.714] (II) LoadModule: "nvidia"
    [ 258.714] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 258.714] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 258.714] compiled for 4.0.2, module version = 1.0.0
    [ 258.714] Module class: X.Org Video Driver
    [ 258.714] (II) NVIDIA dlloader X Driver 343.36 Mon Dec 1 15:28:39 PST 2014
    [ 258.714] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 258.714] (++) using VT number 1
    [ 258.714] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 258.714] (II) Loading sub module "fb"
    [ 258.714] (II) LoadModule: "fb"
    [ 258.714] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 258.714] (II) Module fb: vendor="X.Org Foundation"
    [ 258.714] compiled for 1.16.3, module version = 1.0.0
    [ 258.714] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 258.714] (II) Loading sub module "wfb"
    [ 258.714] (II) LoadModule: "wfb"
    [ 258.714] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 258.715] (II) Module wfb: vendor="X.Org Foundation"
    [ 258.715] compiled for 1.16.3, module version = 1.0.0
    [ 258.715] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 258.715] (II) Loading sub module "ramdac"
    [ 258.715] (II) LoadModule: "ramdac"
    [ 258.715] (II) Module "ramdac" already built-in
    [ 258.779] (EE) NVIDIA: Failed to initialize the NVIDIA kernel module. Please see the
    [ 258.779] (EE) NVIDIA: system's kernel log for additional error messages and
    [ 258.779] (EE) NVIDIA: consult the NVIDIA README for details.
    [ 258.779] (EE) No devices detected.
    [ 258.779] (EE)
    Fatal server error:
    [ 258.779] (EE) no screens found(EE)
    [ 258.779] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 258.779] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 258.779] (EE)
    Last edited by Nepherte (2014-12-30 10:05:05)

    dmesg (check the last messages):
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.17.6-1-ARCH (builduser@foutrelis) (gcc version 4.9.2 (GCC) ) #1 SMP PREEMPT Sun Dec 7 23:43:32 UTC 2014
    [ 0.000000] Command line: initrd=\initramfs-linux.img root=/dev/sda4 rw acpi=off pci=biosirq
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000000fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000001000-0x0000000000057fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000008ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000000090000-0x0000000000090fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000091000-0x000000000009dfff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000009e51ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009e520000-0x000000009e526fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x000000009e527000-0x000000009e984fff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000009e985000-0x000000009edeffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x000000009edf0000-0x00000000bd921fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bd922000-0x00000000bdc8efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bdc8f000-0x00000000bdcaffff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bdcb0000-0x00000000be1d8fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000be1d9000-0x00000000beffefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000befff000-0x00000000beffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000043effffff] usable
    [ 0.000000] PCI: Unknown option `biosirq'
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] e820: update [mem 0x9c598018-0x9c5b9a57] usable ==> usable
    [ 0.000000] extended physical RAM map:
    [ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000000fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000000001000-0x0000000000057fff] usable
    [ 0.000000] reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000000059000-0x000000000008ffff] usable
    [ 0.000000] reserve setup_data: [mem 0x0000000000090000-0x0000000000090fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000000091000-0x000000000009dfff] usable
    [ 0.000000] reserve setup_data: [mem 0x000000000009e000-0x000000000009ffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000009c598017] usable
    [ 0.000000] reserve setup_data: [mem 0x000000009c598018-0x000000009c5b9a57] usable
    [ 0.000000] reserve setup_data: [mem 0x000000009c5b9a58-0x000000009e51ffff] usable
    [ 0.000000] reserve setup_data: [mem 0x000000009e520000-0x000000009e526fff] ACPI NVS
    [ 0.000000] reserve setup_data: [mem 0x000000009e527000-0x000000009e984fff] usable
    [ 0.000000] reserve setup_data: [mem 0x000000009e985000-0x000000009edeffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x000000009edf0000-0x00000000bd921fff] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000bd922000-0x00000000bdc8efff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000bdc8f000-0x00000000bdcaffff] ACPI data
    [ 0.000000] reserve setup_data: [mem 0x00000000bdcb0000-0x00000000be1d8fff] ACPI NVS
    [ 0.000000] reserve setup_data: [mem 0x00000000be1d9000-0x00000000beffefff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000befff000-0x00000000beffffff] usable
    [ 0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000043effffff] usable
    [ 0.000000] efi: EFI v2.31 by American Megatrends
    [ 0.000000] efi: ACPI 2.0=0xbdc95000 ACPI=0xbdc95000 SMBIOS=0xbef4e498
    [ 0.000000] efi: mem00: type=6, attr=0x800000000000000f, range=[0x0000000000000000-0x0000000000001000) (0MB)
    [ 0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000001000-0x0000000000007000) (0MB)
    [ 0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000007000-0x0000000000058000) (0MB)
    [ 0.000000] efi: mem03: type=0, attr=0xf, range=[0x0000000000058000-0x0000000000059000) (0MB)
    [ 0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000000059000-0x0000000000090000) (0MB)
    [ 0.000000] efi: mem05: type=5, attr=0x800000000000000f, range=[0x0000000000090000-0x0000000000091000) (0MB)
    [ 0.000000] efi: mem06: type=7, attr=0xf, range=[0x0000000000091000-0x000000000009e000) (0MB)
    [ 0.000000] efi: mem07: type=0, attr=0xf, range=[0x000000000009e000-0x00000000000a0000) (0MB)
    [ 0.000000] efi: mem08: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
    [ 0.000000] efi: mem09: type=2, attr=0xf, range=[0x0000000001000000-0x0000000001f4f000) (15MB)
    [ 0.000000] efi: mem10: type=7, attr=0xf, range=[0x0000000001f4f000-0x000000007fcb9000) (2013MB)
    [ 0.000000] efi: mem11: type=2, attr=0xf, range=[0x000000007fcb9000-0x0000000080000000) (3MB)
    [ 0.000000] efi: mem12: type=7, attr=0xf, range=[0x0000000080000000-0x000000009ae13000) (430MB)
    [ 0.000000] efi: mem13: type=2, attr=0xf, range=[0x000000009ae13000-0x000000009af13000) (1MB)
    [ 0.000000] efi: mem14: type=7, attr=0xf, range=[0x000000009af13000-0x000000009c598000) (22MB)
    [ 0.000000] efi: mem15: type=2, attr=0xf, range=[0x000000009c598000-0x000000009c5ba000) (0MB)
    [ 0.000000] efi: mem16: type=1, attr=0xf, range=[0x000000009c5ba000-0x000000009e520000) (31MB)
    [ 0.000000] efi: mem17: type=10, attr=0xf, range=[0x000000009e520000-0x000000009e527000) (0MB)
    [ 0.000000] efi: mem18: type=4, attr=0xf, range=[0x000000009e527000-0x000000009e688000) (1MB)
    [ 0.000000] efi: mem19: type=3, attr=0xf, range=[0x000000009e688000-0x000000009e94a000) (2MB)
    [ 0.000000] efi: mem20: type=4, attr=0xf, range=[0x000000009e94a000-0x000000009e94f000) (0MB)
    [ 0.000000] efi: mem21: type=3, attr=0xf, range=[0x000000009e94f000-0x000000009e953000) (0MB)
    [ 0.000000] efi: mem22: type=4, attr=0xf, range=[0x000000009e953000-0x000000009e968000) (0MB)
    [ 0.000000] efi: mem23: type=3, attr=0xf, range=[0x000000009e968000-0x000000009e97a000) (0MB)
    [ 0.000000] efi: mem24: type=4, attr=0xf, range=[0x000000009e97a000-0x000000009e985000) (0MB)
    [ 0.000000] efi: mem25: type=6, attr=0x800000000000000f, range=[0x000000009e985000-0x000000009edf0000) (4MB)
    [ 0.000000] efi: mem26: type=4, attr=0xf, range=[0x000000009edf0000-0x000000009ee03000) (0MB)
    [ 0.000000] efi: mem27: type=7, attr=0xf, range=[0x000000009ee03000-0x000000009ee07000) (0MB)
    [ 0.000000] efi: mem28: type=2, attr=0xf, range=[0x000000009ee07000-0x000000009ee12000) (0MB)
    [ 0.000000] efi: mem29: type=7, attr=0xf, range=[0x000000009ee12000-0x00000000b903e000) (418MB)
    [ 0.000000] efi: mem30: type=4, attr=0xf, range=[0x00000000b903e000-0x00000000b919d000) (1MB)
    [ 0.000000] efi: mem31: type=7, attr=0xf, range=[0x00000000b919d000-0x00000000b91ab000) (0MB)
    [ 0.000000] efi: mem32: type=4, attr=0xf, range=[0x00000000b91ab000-0x00000000b91c7000) (0MB)
    [ 0.000000] efi: mem33: type=7, attr=0xf, range=[0x00000000b91c7000-0x00000000b91ce000) (0MB)
    [ 0.000000] efi: mem34: type=4, attr=0xf, range=[0x00000000b91ce000-0x00000000b91fe000) (0MB)
    [ 0.000000] efi: mem35: type=7, attr=0xf, range=[0x00000000b91fe000-0x00000000b9211000) (0MB)
    [ 0.000000] efi: mem36: type=4, attr=0xf, range=[0x00000000b9211000-0x00000000b9292000) (0MB)
    [ 0.000000] efi: mem37: type=7, attr=0xf, range=[0x00000000b9292000-0x00000000b92b7000) (0MB)
    [ 0.000000] efi: mem38: type=4, attr=0xf, range=[0x00000000b92b7000-0x00000000b92d3000) (0MB)
    [ 0.000000] efi: mem39: type=7, attr=0xf, range=[0x00000000b92d3000-0x00000000b92e0000) (0MB)
    [ 0.000000] efi: mem40: type=4, attr=0xf, range=[0x00000000b92e0000-0x00000000b9315000) (0MB)
    [ 0.000000] efi: mem41: type=7, attr=0xf, range=[0x00000000b9315000-0x00000000b9330000) (0MB)
    [ 0.000000] efi: mem42: type=4, attr=0xf, range=[0x00000000b9330000-0x00000000b9375000) (0MB)
    [ 0.000000] efi: mem43: type=7, attr=0xf, range=[0x00000000b9375000-0x00000000b9398000) (0MB)
    [ 0.000000] efi: mem44: type=4, attr=0xf, range=[0x00000000b9398000-0x00000000b93cd000) (0MB)
    [ 0.000000] efi: mem45: type=7, attr=0xf, range=[0x00000000b93cd000-0x00000000b93ea000) (0MB)
    [ 0.000000] efi: mem46: type=4, attr=0xf, range=[0x00000000b93ea000-0x00000000b93f0000) (0MB)
    [ 0.000000] efi: mem47: type=7, attr=0xf, range=[0x00000000b93f0000-0x00000000b9408000) (0MB)
    [ 0.000000] efi: mem48: type=4, attr=0xf, range=[0x00000000b9408000-0x00000000b9455000) (0MB)
    [ 0.000000] efi: mem49: type=7, attr=0xf, range=[0x00000000b9455000-0x00000000b947d000) (0MB)
    [ 0.000000] efi: mem50: type=4, attr=0xf, range=[0x00000000b947d000-0x00000000b951b000) (0MB)
    [ 0.000000] efi: mem51: type=7, attr=0xf, range=[0x00000000b951b000-0x00000000b9529000) (0MB)
    [ 0.000000] efi: mem52: type=4, attr=0xf, range=[0x00000000b9529000-0x00000000b9545000) (0MB)
    [ 0.000000] efi: mem53: type=7, attr=0xf, range=[0x00000000b9545000-0x00000000b954c000) (0MB)
    [ 0.000000] efi: mem54: type=4, attr=0xf, range=[0x00000000b954c000-0x00000000b957a000) (0MB)
    [ 0.000000] efi: mem55: type=7, attr=0xf, range=[0x00000000b957a000-0x00000000b958d000) (0MB)
    [ 0.000000] efi: mem56: type=4, attr=0xf, range=[0x00000000b958d000-0x00000000b960f000) (0MB)
    [ 0.000000] efi: mem57: type=7, attr=0xf, range=[0x00000000b960f000-0x00000000b9634000) (0MB)
    [ 0.000000] efi: mem58: type=4, attr=0xf, range=[0x00000000b9634000-0x00000000b9651000) (0MB)
    [ 0.000000] efi: mem59: type=7, attr=0xf, range=[0x00000000b9651000-0x00000000b965e000) (0MB)
    [ 0.000000] efi: mem60: type=4, attr=0xf, range=[0x00000000b965e000-0x00000000b9692000) (0MB)
    [ 0.000000] efi: mem61: type=7, attr=0xf, range=[0x00000000b9692000-0x00000000b96ad000) (0MB)
    [ 0.000000] efi: mem62: type=4, attr=0xf, range=[0x00000000b96ad000-0x00000000b96f2000) (0MB)
    [ 0.000000] efi: mem63: type=7, attr=0xf, range=[0x00000000b96f2000-0x00000000b9715000) (0MB)
    [ 0.000000] efi: mem64: type=4, attr=0xf, range=[0x00000000b9715000-0x00000000b974c000) (0MB)
    [ 0.000000] efi: mem65: type=7, attr=0xf, range=[0x00000000b974c000-0x00000000b9769000) (0MB)
    [ 0.000000] efi: mem66: type=4, attr=0xf, range=[0x00000000b9769000-0x00000000b981e000) (0MB)
    [ 0.000000] efi: mem67: type=7, attr=0xf, range=[0x00000000b981e000-0x00000000b986b000) (0MB)
    [ 0.000000] efi: mem68: type=4, attr=0xf, range=[0x00000000b986b000-0x00000000b9898000) (0MB)
    [ 0.000000] efi: mem69: type=7, attr=0xf, range=[0x00000000b9898000-0x00000000b98a6000) (0MB)
    [ 0.000000] efi: mem70: type=4, attr=0xf, range=[0x00000000b98a6000-0x00000000b98c1000) (0MB)
    [ 0.000000] efi: mem71: type=7, attr=0xf, range=[0x00000000b98c1000-0x00000000b98c8000) (0MB)
    [ 0.000000] efi: mem72: type=4, attr=0xf, range=[0x00000000b98c8000-0x00000000b998d000) (0MB)
    [ 0.000000] efi: mem73: type=7, attr=0xf, range=[0x00000000b998d000-0x00000000b999f000) (0MB)
    [ 0.000000] efi: mem74: type=4, attr=0xf, range=[0x00000000b999f000-0x00000000b99d0000) (0MB)
    [ 0.000000] efi: mem75: type=7, attr=0xf, range=[0x00000000b99d0000-0x00000000b99d5000) (0MB)
    [ 0.000000] efi: mem76: type=4, attr=0xf, range=[0x00000000b99d5000-0x00000000b9a0f000) (0MB)
    [ 0.000000] efi: mem77: type=7, attr=0xf, range=[0x00000000b9a0f000-0x00000000b9a17000) (0MB)
    [ 0.000000] efi: mem78: type=4, attr=0xf, range=[0x00000000b9a17000-0x00000000b9ac9000) (0MB)
    [ 0.000000] efi: mem79: type=7, attr=0xf, range=[0x00000000b9ac9000-0x00000000b9ad3000) (0MB)
    [ 0.000000] efi: mem80: type=4, attr=0xf, range=[0x00000000b9ad3000-0x00000000b9c16000) (1MB)
    [ 0.000000] efi: mem81: type=7, attr=0xf, range=[0x00000000b9c16000-0x00000000b9c24000) (0MB)
    [ 0.000000] efi: mem82: type=4, attr=0xf, range=[0x00000000b9c24000-0x00000000b9c40000) (0MB)
    [ 0.000000] efi: mem83: type=7, attr=0xf, range=[0x00000000b9c40000-0x00000000b9c47000) (0MB)
    [ 0.000000] efi: mem84: type=4, attr=0xf, range=[0x00000000b9c47000-0x00000000b9c77000) (0MB)
    [ 0.000000] efi: mem85: type=7, attr=0xf, range=[0x00000000b9c77000-0x00000000b9c7c000) (0MB)
    [ 0.000000] efi: mem86: type=4, attr=0xf, range=[0x00000000b9c7c000-0x00000000b9d4e000) (0MB)
    [ 0.000000] efi: mem87: type=7, attr=0xf, range=[0x00000000b9d4e000-0x00000000b9d5b000) (0MB)
    [ 0.000000] efi: mem88: type=4, attr=0xf, range=[0x00000000b9d5b000-0x00000000b9d8d000) (0MB)
    [ 0.000000] efi: mem89: type=7, attr=0xf, range=[0x00000000b9d8d000-0x00000000b9d95000) (0MB)
    [ 0.000000] efi: mem90: type=4, attr=0xf, range=[0x00000000b9d95000-0x00000000b9fc0000) (2MB)
    [ 0.000000] efi: mem91: type=7, attr=0xf, range=[0x00000000b9fc0000-0x00000000b9fc7000) (0MB)
    [ 0.000000] efi: mem92: type=4, attr=0xf, range=[0x00000000b9fc7000-0x00000000ba0cd000) (1MB)
    [ 0.000000] efi: mem93: type=7, attr=0xf, range=[0x00000000ba0cd000-0x00000000ba0da000) (0MB)
    [ 0.000000] efi: mem94: type=4, attr=0xf, range=[0x00000000ba0da000-0x00000000ba288000) (1MB)
    [ 0.000000] efi: mem95: type=7, attr=0xf, range=[0x00000000ba288000-0x00000000ba293000) (0MB)
    [ 0.000000] efi: mem96: type=4, attr=0xf, range=[0x00000000ba293000-0x00000000ba341000) (0MB)
    [ 0.000000] efi: mem97: type=7, attr=0xf, range=[0x00000000ba341000-0x00000000ba348000) (0MB)
    [ 0.000000] efi: mem98: type=4, attr=0xf, range=[0x00000000ba348000-0x00000000ba40c000) (0MB)
    [ 0.000000] efi: mem99: type=7, attr=0xf, range=[0x00000000ba40c000-0x00000000ba416000) (0MB)
    [ 0.000000] efi: mem100: type=4, attr=0xf, range=[0x00000000ba416000-0x00000000ba44f000) (0MB)
    [ 0.000000] efi: mem101: type=7, attr=0xf, range=[0x00000000ba44f000-0x00000000ba45c000) (0MB)
    [ 0.000000] efi: mem102: type=4, attr=0xf, range=[0x00000000ba45c000-0x00000000ba821000) (3MB)
    [ 0.000000] efi: mem103: type=7, attr=0xf, range=[0x00000000ba821000-0x00000000ba822000) (0MB)
    [ 0.000000] efi: mem104: type=4, attr=0xf, range=[0x00000000ba822000-0x00000000ba8da000) (0MB)
    [ 0.000000] efi: mem105: type=7, attr=0xf, range=[0x00000000ba8da000-0x00000000ba8dc000) (0MB)
    [ 0.000000] efi: mem106: type=4, attr=0xf, range=[0x00000000ba8dc000-0x00000000baa8c000) (1MB)
    [ 0.000000] efi: mem107: type=7, attr=0xf, range=[0x00000000baa8c000-0x00000000baa91000) (0MB)
    [ 0.000000] efi: mem108: type=4, attr=0xf, range=[0x00000000baa91000-0x00000000bab22000) (0MB)
    [ 0.000000] efi: mem109: type=7, attr=0xf, range=[0x00000000bab22000-0x00000000bab23000) (0MB)
    [ 0.000000] efi: mem110: type=4, attr=0xf, range=[0x00000000bab23000-0x00000000baba2000) (0MB)
    [ 0.000000] efi: mem111: type=7, attr=0xf, range=[0x00000000baba2000-0x00000000baba3000) (0MB)
    [ 0.000000] efi: mem112: type=4, attr=0xf, range=[0x00000000baba3000-0x00000000bac04000) (0MB)
    [ 0.000000] efi: mem113: type=7, attr=0xf, range=[0x00000000bac04000-0x00000000bac07000) (0MB)
    [ 0.000000] efi: mem114: type=4, attr=0xf, range=[0x00000000bac07000-0x00000000bac5c000) (0MB)
    [ 0.000000] efi: mem115: type=7, attr=0xf, range=[0x00000000bac5c000-0x00000000bac5e000) (0MB)
    [ 0.000000] efi: mem116: type=4, attr=0xf, range=[0x00000000bac5e000-0x00000000baef6000) (2MB)
    [ 0.000000] efi: mem117: type=7, attr=0xf, range=[0x00000000baef6000-0x00000000baf04000) (0MB)
    [ 0.000000] efi: mem118: type=4, attr=0xf, range=[0x00000000baf04000-0x00000000baf2a000) (0MB)
    [ 0.000000] efi: mem119: type=7, attr=0xf, range=[0x00000000baf2a000-0x00000000baf30000) (0MB)
    [ 0.000000] efi: mem120: type=4, attr=0xf, range=[0x00000000baf30000-0x00000000baf4a000) (0MB)
    [ 0.000000] efi: mem121: type=7, attr=0xf, range=[0x00000000baf4a000-0x00000000baf4f000) (0MB)
    [ 0.000000] efi: mem122: type=4, attr=0xf, range=[0x00000000baf4f000-0x00000000bb3e4000) (4MB)
    [ 0.000000] efi: mem123: type=7, attr=0xf, range=[0x00000000bb3e4000-0x00000000bb3e6000) (0MB)
    [ 0.000000] efi: mem124: type=4, attr=0xf, range=[0x00000000bb3e6000-0x00000000bb3ed000) (0MB)
    [ 0.000000] efi: mem125: type=7, attr=0xf, range=[0x00000000bb3ed000-0x00000000bb3ef000) (0MB)
    [ 0.000000] efi: mem126: type=4, attr=0xf, range=[0x00000000bb3ef000-0x00000000bb3f5000) (0MB)
    [ 0.000000] efi: mem127: type=7, attr=0xf, range=[0x00000000bb3f5000-0x00000000bb3f8000) (0MB)
    [ 0.000000] efi: mem128: type=4, attr=0xf, range=[0x00000000bb3f8000-0x00000000bb40c000) (0MB)
    [ 0.000000] efi: mem129: type=7, attr=0xf, range=[0x00000000bb40c000-0x00000000bb410000) (0MB)
    [ 0.000000] efi: mem130: type=4, attr=0xf, range=[0x00000000bb410000-0x00000000bb445000) (0MB)
    [ 0.000000] efi: mem131: type=7, attr=0xf, range=[0x00000000bb445000-0x00000000bb448000) (0MB)
    [ 0.000000] efi: mem132: type=4, attr=0xf, range=[0x00000000bb448000-0x00000000bb462000) (0MB)
    [ 0.000000] efi: mem133: type=7, attr=0xf, range=[0x00000000bb462000-0x00000000bb464000) (0MB)
    [ 0.000000] efi: mem134: type=4, attr=0xf, range=[0x00000000bb464000-0x00000000bb469000) (0MB)
    [ 0.000000] efi: mem135: type=7, attr=0xf, range=[0x00000000bb469000-0x00000000bb46b000) (0MB)
    [ 0.000000] efi: mem136: type=4, attr=0xf, range=[0x00000000bb46b000-0x00000000bb473000) (0MB)
    [ 0.000000] efi: mem137: type=7, attr=0xf, range=[0x00000000bb473000-0x00000000bb474000) (0MB)
    [ 0.000000] efi: mem138: type=4, attr=0xf, range=[0x00000000bb474000-0x00000000bb489000) (0MB)
    [ 0.000000] efi: mem139: type=7, attr=0xf, range=[0x00000000bb489000-0x00000000bb48a000) (0MB)
    [ 0.000000] efi: mem140: type=4, attr=0xf, range=[0x00000000bb48a000-0x00000000bcf39000) (26MB)
    [ 0.000000] efi: mem141: type=7, attr=0xf, range=[0x00000000bcf39000-0x00000000bd015000) (0MB)
    [ 0.000000] efi: mem142: type=3, attr=0xf, range=[0x00000000bd015000-0x00000000bd922000) (9MB)
    [ 0.000000] efi: mem143: type=0, attr=0xf, range=[0x00000000bd922000-0x00000000bd9e4000) (0MB)
    [ 0.000000] efi: mem144: type=0, attr=0xf, range=[0x00000000bd9e4000-0x00000000bdc8f000) (2MB)
    [ 0.000000] efi: mem145: type=9, attr=0xf, range=[0x00000000bdc8f000-0x00000000bdc95000) (0MB)
    [ 0.000000] efi: mem146: type=9, attr=0xf, range=[0x00000000bdc95000-0x00000000bdcb0000) (0MB)
    [ 0.000000] efi: mem147: type=10, attr=0xf, range=[0x00000000bdcb0000-0x00000000bddb8000) (1MB)
    [ 0.000000] efi: mem148: type=10, attr=0xf, range=[0x00000000bddb8000-0x00000000be1d9000) (4MB)
    [ 0.000000] efi: mem149: type=6, attr=0x800000000000000f, range=[0x00000000be1d9000-0x00000000be488000) (2MB)
    [ 0.000000] efi: mem150: type=6, attr=0x800000000000000f, range=[0x00000000be488000-0x00000000beeaf000) (10MB)
    [ 0.000000] efi: mem151: type=6, attr=0x800000000000000f, range=[0x00000000beeaf000-0x00000000beeb2000) (0MB)
    [ 0.000000] efi: mem152: type=6, attr=0x800000000000000f, range=[0x00000000beeb2000-0x00000000bef50000) (0MB)
    [ 0.000000] efi: mem153: type=5, attr=0x800000000000000f, range=[0x00000000bef50000-0x00000000bef74000) (0MB)
    [ 0.000000] efi: mem154: type=5, attr=0x800000000000000f, range=[0x00000000bef74000-0x00000000befff000) (0MB)
    [ 0.000000] efi: mem155: type=4, attr=0xf, range=[0x00000000befff000-0x00000000bf000000) (0MB)
    [ 0.000000] efi: mem156: type=7, attr=0xf, range=[0x0000000100000000-0x000000043f000000) (13296MB)
    [ 0.000000] efi: mem157: type=11, attr=0x8000000000000001, range=[0x00000000e0000000-0x00000000f0000000) (256MB)
    [ 0.000000] efi: mem158: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
    [ 0.000000] efi: mem159: type=11, attr=0x8000000000000001, range=[0x00000000fed00000-0x00000000fed04000) (0MB)
    [ 0.000000] efi: mem160: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    [ 0.000000] efi: mem161: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
    [ 0.000000] efi: mem162: type=11, attr=0x8000000000000001, range=[0x00000000ff000000-0x0000000100000000) (16MB)
    [ 0.000000] SMBIOS 2.8 present.
    [ 0.000000] DMI: ASUS All Series/Z97-WS, BIOS 1204 07/07/2014
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] AGP: No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x43f000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-DFFFF uncachable
    [ 0.000000] E0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask 7C00000000 write-back
    [ 0.000000] 1 base 0400000000 mask 7FE0000000 write-back
    [ 0.000000] 2 base 0420000000 mask 7FF0000000 write-back
    [ 0.000000] 3 base 0430000000 mask 7FF8000000 write-back
    [ 0.000000] 4 base 0438000000 mask 7FFC000000 write-back
    [ 0.000000] 5 base 043C000000 mask 7FFE000000 write-back
    [ 0.000000] 6 base 043E000000 mask 7FFF000000 write-back
    [ 0.000000] 7 base 00C0000000 mask 7FC0000000 uncachable
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xbf000 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x01b2b000, 0x01b2bfff] PGTABLE
    [ 0.000000] BRK [0x01b2c000, 0x01b2cfff] PGTABLE
    [ 0.000000] BRK [0x01b2d000, 0x01b2dfff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x43ee00000-0x43effffff]
    [ 0.000000] [mem 0x43ee00000-0x43effffff] page 2M
    [ 0.000000] BRK [0x01b2e000, 0x01b2efff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x43c000000-0x43edfffff]
    [ 0.000000] [mem 0x43c000000-0x43edfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x400000000-0x43bffffff]
    [ 0.000000] [mem 0x400000000-0x43bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0x9e51ffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0x7fffffff] page 1G
    [ 0.000000] [mem 0x80000000-0x9e3fffff] page 2M
    [ 0.000000] [mem 0x9e400000-0x9e51ffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x9e527000-0x9e984fff]
    [ 0.000000] [mem 0x9e527000-0x9e5fffff] page 4k
    [ 0.000000] [mem 0x9e600000-0x9e7fffff] page 2M
    [ 0.000000] [mem 0x9e800000-0x9e984fff] page 4k
    [ 0.000000] BRK [0x01b2f000, 0x01b2ffff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x9edf0000-0xbd921fff]
    [ 0.000000] [mem 0x9edf0000-0x9edfffff] page 4k
    [ 0.000000] [mem 0x9ee00000-0xbd7fffff] page 2M
    [ 0.000000] [mem 0xbd800000-0xbd921fff] page 4k
    [ 0.000000] BRK [0x01b30000, 0x01b30fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xbefff000-0xbeffffff]
    [ 0.000000] [mem 0xbefff000-0xbeffffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x3ffffffff]
    [ 0.000000] [mem 0x100000000-0x3ffffffff] page 1G
    [ 0.000000] RAMDISK: [mem 0x7fcb9000-0x7fffffff]
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000043effffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x43effffff]
    [ 0.000000] NODE_DATA [mem 0x43eff8000-0x43effbfff]
    [ 0.000000] [ffffea0000000000-ffffea0010ffffff] PMD -> [ffff88042e600000-ffff88043e5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x43effffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x00057fff]
    [ 0.000000] node 0: [mem 0x00059000-0x0008ffff]
    [ 0.000000] node 0: [mem 0x00091000-0x0009dfff]
    [ 0.000000] node 0: [mem 0x00100000-0x9e51ffff]
    [ 0.000000] node 0: [mem 0x9e527000-0x9e984fff]
    [ 0.000000] node 0: [mem 0x9edf0000-0xbd921fff]
    [ 0.000000] node 0: [mem 0xbefff000-0xbeffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x43effffff]
    [ 0.000000] On node 0 totalpages: 4179020
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 21 pages reserved
    [ 0.000000] DMA zone: 3995 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 12051 pages used for memmap
    [ 0.000000] DMA32 zone: 771249 pages, LIFO batch:31
    [ 0.000000] Normal zone: 53184 pages used for memmap
    [ 0.000000] Normal zone: 3403776 pages, LIFO batch:31
    [ 0.000000] SFI: Simple Firmware Interface v0.81 http://simplefirmware.org
    [ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
    [ 0.000000] PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x00090000-0x00090fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9c598000-0x9c598fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9c5b9000-0x9c5b9fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9e520000-0x9e526fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x9e985000-0x9edeffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbd922000-0xbdc8efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbdc8f000-0xbdcaffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbdcb0000-0xbe1d8fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbe1d9000-0xbeffefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xbf000000-0xdfffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
    [ 0.000000] e820: [mem 0xbf000000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:1 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88043ec00000 s82752 r8192 d23744 u2097152
    [ 0.000000] pcpu-alloc: s82752 r8192 d23744 u2097152 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4113700
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: initrd=\initramfs-linux.img root=/dev/sda4 rw acpi=off pci=biosirq
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
    [ 0.000000] AGP: Checking aperture...
    [ 0.000000] AGP: No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 16297060K/16716080K available (5386K kernel code, 897K rwdata, 1712K rodata, 1136K init, 1176K bss, 419020K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=1.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
    [ 0.000000] NR_IRQS:8448 nr_irqs:24 0
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 67108864 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 3598.042 MHz processor
    [ 0.000019] Calibrating delay loop (skipped), value calculated using timer frequency.. 7198.92 BogoMIPS (lpj=11993473)
    [ 0.000021] pid_max: default: 32768 minimum: 301
    [ 0.001187] Security Framework initialized
    [ 0.001191] Yama: becoming mindful.
    [ 0.001802] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
    [ 0.003720] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.004536] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
    [ 0.004547] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
    [ 0.004689] Initializing cgroup subsys memory
    [ 0.004693] Initializing cgroup subsys devices
    [ 0.004694] Initializing cgroup subsys freezer
    [ 0.004695] Initializing cgroup subsys net_cls
    [ 0.004696] Initializing cgroup subsys blkio
    [ 0.004710] CPU: Physical Processor ID: 0
    [ 0.004711] CPU: Processor Core ID: 0
    [ 0.004713] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.005425] mce: CPU supports 9 MCE banks
    [ 0.005435] CPU0: Thermal monitoring enabled (TM1)
    [ 0.005443] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
    Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
    [ 0.007800] Freeing SMP alternatives memory: 20K (ffffffff819fe000 - ffffffff81a03000)
    [ 0.009280] ftrace: allocating 20687 entries in 81 pages
    [ 0.014722] smpboot: weird, boot CPU (#0) not listed by the BIOS
    [ 0.014723] smpboot: SMP motherboard not detected
    [ 0.014743] TSC deadline timer enabled
    [ 0.014744] smpboot: SMP disabled
    [ 0.014756] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [ 0.014768] ... version: 3
    [ 0.014769] ... bit width: 48
    [ 0.014769] ... generic registers: 4
    [ 0.014770] ... value mask: 0000ffffffffffff
    [ 0.014770] ... max period: 0000ffffffffffff
    [ 0.014771] ... fixed-purpose events: 3
    [ 0.014771] ... event mask: 000000070000000f
    [ 0.031484] x86: Booted up 1 node, 1 CPUs
    [ 0.031486] smpboot: Total of 1 processors activated (7198.92 BogoMIPS)
    [ 0.031509] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.031540] devtmpfs: initialized
    [ 0.033214] PM: Registering ACPI NVS region [mem 0x9e520000-0x9e526fff] (28672 bytes)
    [ 0.033215] PM: Registering ACPI NVS region [mem 0xbdcb0000-0xbe1d8fff] (5410816 bytes)
    [ 0.033692] pinctrl core: initialized pinctrl subsystem
    [ 0.033718] RTC time: 1:46:17, date: 12/30/14
    [ 0.033767] NET: Registered protocol family 16
    [ 0.033828] cpuidle: using governor ladder
    [ 0.033830] cpuidle: using governor menu
    [ 0.033891] PCI: Using configuration type 1 for base access
    [ 0.045003] ACPI: Interpreter disabled.
    [ 0.045040] vgaarb: loaded
    [ 0.045084] PCI: Probing PCI hardware
    [ 0.045085] PCI: root bus 00: using default resources
    [ 0.045085] PCI: Probing PCI hardware (bus 00)
    [ 0.045098] PCI host bridge to bus 0000:00
    [ 0.045099] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
    [ 0.045100] pci_bus 0000:00: root bus resource [mem 0x00000000-0x7fffffffff]
    [ 0.045101] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
    [ 0.045106] pci 0000:00:00.0: [8086:0c00] type 00 class 0x060000
    [ 0.045142] pci 0000:00:01.0: [8086:0c01] type 01 class 0x060400
    [ 0.045163] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.045208] pci 0000:00:14.0: [8086:8cb1] type 00 class 0x0c0330
    [ 0.045223] pci 0000:00:14.0: reg 0x10: [mem 0xdf720000-0xdf72ffff 64bit]
    [ 0.045269] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.045297] pci 0000:00:16.0: [8086:8cba] type 00 class 0x078000
    [ 0.045312] pci 0000:00:16.0: reg 0x10: [mem 0xdf73a000-0xdf73a00f 64bit]
    [ 0.045362] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.045396] pci 0000:00:19.0: [8086:15a0] type 00 class 0x020000
    [ 0.045409] pci 0000:00:19.0: reg 0x10: [mem 0xdf700000-0xdf71ffff]
    [ 0.045415] pci 0000:00:19.0: reg 0x14: [mem 0xdf738000-0xdf738fff]
    [ 0.045421] pci 0000:00:19.0: reg 0x18: [io 0xf040-0xf05f]
    [ 0.045467] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [ 0.045499] pci 0000:00:1a.0: [8086:8cad] type 00 class 0x0c0320
    [ 0.045514] pci 0000:00:1a.0: reg 0x10: [mem 0xdf737000-0xdf7373ff]
    [ 0.045585] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.045618] pci 0000:00:1b.0: [8086:8ca0] type 00 class 0x040300
    [ 0.045626] pci 0000:00:1b.0: reg 0x10: [mem 0xdf730000-0xdf733fff 64bit]
    [ 0.045669] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.045696] pci 0000:00:1c.0: [8086:8c90] type 01 class 0x060400
    [ 0.045745] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.045774] pci 0000:00:1c.3: [8086:8c96] type 01 class 0x060400
    [ 0.045823] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.045851] pci 0000:00:1c.4: [8086:8c98] type 01 class 0x060400
    [ 0.045900] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.045929] pci 0000:00:1c.6: [8086:8c9c] type 01 class 0x060400
    [ 0.045978] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
    [ 0.046011] pci 0000:00:1d.0: [8086:8ca6] type 00 class 0x0c0320
    [ 0.046027] pci 0000:00:1d.0: reg 0x10: [mem 0xdf736000-0xdf7363ff]
    [ 0.046098] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.046130] pci 0000:00:1f.0: [8086:8cc4] type 00 class 0x060100
    [ 0.046239] pci 0000:00:1f.2: [8086:8c82] type 00 class 0x010601
    [ 0.046251] pci 0000:00:1f.2: reg 0x10: [io 0xf090-0xf097]
    [ 0.046256] pci 0000:00:1f.2: reg 0x14: [io 0xf080-0xf083]
    [ 0.046261] pci 0000:00:1f.2: reg 0x18: [io 0xf070-0xf077]
    [ 0.046266] pci 0000:00:1f.2: reg 0x1c: [io 0xf060-0xf063]
    [ 0.046271] pci 0000:00:1f.2: reg 0x20: [io 0xf020-0xf03f]
    [ 0.046276] pci 0000:00:1f.2: reg 0x24: [mem 0xdf735000-0xdf7357ff]
    [ 0.046304] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.046328] pci 0000:00:1f.3: [8086:8ca2] type 00 class 0x0c0500
    [ 0.046338] pci 0000:00:1f.3: reg 0x10: [mem 0xdf734000-0xdf7340ff 64bit]
    [ 0.046354] pci 0000:00:1f.3: reg 0x20: [io 0xf000-0xf01f]
    [ 0.046407] pci 0000:01:00.0: [10b5:8747] type 01 class 0x060400
    [ 0.046413] pci 0000:01:00.0: reg 0x10: [mem 0xdf100000-0xdf13ffff]
    [ 0.046446] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
    [ 0.051564] pci 0000:00:01.0: PCI bridge to [bus 01-04]
    [ 0.051566] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.051567] pci 0000:00:01.0: bridge window [mem 0xde000000-0xdf1fffff]
    [ 0.051570] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.051606] pci 0000:02:08.0: [10b5:8747] type 01 class 0x060400
    [ 0.051645] pci 0000:02:08.0: PME# supported from D0 D3hot D3cold
    [ 0.051677] pci 0000:02:10.0: [10b5:8747] type 01 class 0x060400
    [ 0.051716] pci 0000:02:10.0: PME# supported from D0 D3hot D3cold
    [ 0.051745] pci 0000:01:00.0: PCI bridge to [bus 02-04]
    [ 0.051748] pci 0000:01:00.0: bridge window [io 0xe000-0xefff]
    [ 0.051750] pci 0000:01:00.0: bridge window [mem 0xde000000-0xdf0fffff]
    [ 0.051753] pci 0000:01:00.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.051779] pci 0000:02:08.0: PCI bridge to [bus 04]
    [ 0.051821] pci 0000:03:00.0: [10de:13c2] type 00 class 0x030000
    [ 0.051830] pci 0000:03:00.0: reg 0x10: [mem 0xde000000-0xdeffffff]
    [ 0.051840] pci 0000:03:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.051851] pci 0000:03:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    [ 0.051858] pci 0000:03:00.0: reg 0x24: [io 0xe000-0xe07f]
    [ 0.051865] pci 0000:03:00.0: reg 0x30: [mem 0xdf000000-0xdf07ffff pref]
    [ 0.051918] vgaarb: device added: PCI:0000:03:00.0,decodes=io+mem,owns=none,locks=none
    [ 0.051931] pci 0000:03:00.1: [10de:0fbb] type 00 class 0x040300
    [ 0.051938] pci 0000:03:00.1: reg 0x10: [mem 0xdf080000-0xdf083fff]
    [ 0.058252] pci 0000:02:10.0: PCI bridge to [bus 03]
    [ 0.058255] pci 0000:02:10.0: bridge window [io 0xe000-0xefff]
    [ 0.058257] pci 0000:02:10.0: bridge window [mem 0xde000000-0xdf0fffff]
    [ 0.058260] pci 0000:02:10.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.058300] pci 0000:00:1c.0: PCI bridge to [bus 05]
    [ 0.058349] pci 0000:06:00.0: [1b21:1187] type 01 class 0x060400
    [ 0.058430] pci 0000:06:00.0: PME# supported from D0 D3hot D3cold
    [ 0.064932] pci 0000:00:1c.3: PCI bridge to [bus 06-0e]
    [ 0.064934] pci 0000:00:1c.3: bridge window [io 0xa000-0xcfff]
    [ 0.064936] pci 0000:00:1c.3: bridge window [mem 0xdf200000-0xdf4fffff]
    [ 0.065000] pci 0000:07:01.0: [1b21:1187] type 01 class 0x060400
    [ 0.065083] pci 0000:07:01.0: PME# supported from D0 D3hot D3cold
    [ 0.065126] pci 0000:07:02.0: [1b21:1187] type 01 class 0x060400
    [ 0.065209] pci 0000:07:02.0: PME# supported from D0 D3hot D3cold
    [ 0.065254] pci 0000:07:03.0: [1b21:1187] type 01 class 0x060400
    [ 0.065337] pci 0000:07:03.0: PME# supported from D0 D3hot D3cold
    [ 0.065382] pci 0000:07:04.0: [1b21:1187] type 01 class 0x060400
    [ 0.065464] pci 0000:07:04.0: PME# supported from D0 D3hot D3cold
    [ 0.065510] pci 0000:07:05.0: [1b21:1187] type 01 class 0x060400
    [ 0.065593] pci 0000:07:05.0: PME# supported from D0 D3hot D3cold
    [ 0.065641] pci 0000:07:06.0: [1b21:1187] type 01 class 0x060400
    [ 0.065724] pci 0000:07:06.0: PME# supported from D0 D3hot D3cold
    [ 0.065772] pci 0000:07:07.0: [1b21:1187] type 01 class 0x060400
    [ 0.065855] pci 0000:07:07.0: PME# supported from D0 D3hot D3cold
    [ 0.065918] pci 0000:06:00.0: PCI bridge to [bus 07-0e]
    [ 0.065923] pci 0000:06:00.0: bridge window [io 0xa000-0xcfff]
    [ 0.065926] pci 0000:06:00.0: bridge window [mem 0xdf200000-0xdf4fffff]
    [ 0.065979] pci 0000:07:01.0: PCI bridge to [bus 08]
    [ 0.066038] pci 0000:07:02.0: PCI bridge to [bus 09]
    [ 0.066117] pci 0000:0a:00.0: [1b21:0612] type 00 class 0x010601
    [ 0.066134] pci 0000:0a:00.0: reg 0x10: [io 0xc050-0xc057]
    [ 0.066147] pci 0000:0a:00.0: reg 0x14: [io 0xc040-0xc043]
    [ 0.066160] pci 0000:0a:00.0: reg 0x18: [io 0xc030-0xc037]
    [ 0.066172] pci 0000:0a:00.0: reg 0x1c: [io 0xc020-0xc023]
    [ 0.066185] pci 0000:0a:00.0: reg 0x20: [io 0xc000-0xc01f]
    [ 0.066198] pci 0000:0a:00.0: reg 0x24: [mem 0xdf400000-0xdf4001ff]
    [ 0.071619] pci 0000:07:03.0: PCI bridge to [bus 0a]
    [ 0.071625] pci 0000:07:03.0: bridge window [io 0xc000-0xcfff]
    [ 0.071628] pci 0000:07:03.0: bridge window [mem 0xdf400000-0xdf4fffff]
    [ 0.071681] pci 0000:07:04.0: PCI bridge to [bus 0b]
    [ 0.071741] pci 0000:07:05.0: PCI bridge to [bus 0c]
    [ 0.071832] pci 0000:0d:00.0: [8086:1533] type 00 class 0x020000
    [ 0.071853] pci 0000:0d:00.0: reg 0x10: [mem 0xdf300000-0xdf37ffff]
    [ 0.071886] pci 0000:0d:00.0: reg 0x18: [io 0xb000-0xb01f]
    [ 0.071903] pci 0000:0d:00.0: reg 0x1c: [mem 0xdf380000-0xdf383fff]
    [ 0.072047] pci 0000:0d:00.0: PME# supported from D0 D3hot D3cold
    [ 0.078303] pci 0000:07:06.0: PCI bridge to [bus 0d]
    [ 0.078309] pci 0000:07:06.0: bridge window [io 0xb000-0xbfff]
    [ 0.078312] pci 0000:07:06.0: bridge window [mem 0xdf300000-0xdf3fffff]
    [ 0.078387] pci 0000:0e:00.0: [1106:3403] type 00 class 0x0c0010
    [ 0.078414] pci 0000:0e:00.0: reg 0x10: [mem 0xdf200000-0xdf2007ff 64bit]
    [ 0.078429] pci 0000:0e:00.0: reg 0x18: [io 0xa000-0xa0ff]
    [ 0.078555] pci 0000:0e:00.0: supports D2
    [ 0.078556] pci 0000:0e:00.0: PME# supported from D2 D3hot D3cold
    [ 0.084986] pci 0000:07:07.0: PCI bridge to [bus 0e]
    [ 0.084991] pci 0000:07:07.0: bridge window [io 0xa000-0xafff]
    [ 0.084994] pci 0000:07:07.0: bridge window [mem 0xdf200000-0xdf2fffff]
    [ 0.085083] pci 0000:0f:00.0: [1b21:0612] type 00 class 0x010601
    [ 0.085095] pci 0000:0f:00.0: reg 0x10: [io 0xd050-0xd057]
    [ 0.085104] pci 0000:0f:00.0: reg 0x14: [io 0xd040-0xd043]
    [ 0.085113] pci 0000:0f:00.0: reg 0x18: [io 0xd030-0xd037]
    [ 0.085122] pci 0000:0f:00.0: reg 0x1c: [io 0xd020-0xd023]
    [ 0.085132] pci 0000:0f:00.0: reg 0x20: [io 0xd000-0xd01f]
    [ 0.085141] pci 0000:0f:00.0: reg 0x24: [mem 0xdf600000-0xdf6001ff]
    [ 0.091661] pci 0000:00:1c.4: PCI bridge to [bus 0f]
    [ 0.091663] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff]
    [ 0.091665] pci 0000:00:1c.4: bridge window [mem 0xdf600000-0xdf6fffff]
    [ 0.091720] pci 0000:10:00.0: [1b21:1142] type 00 class 0x0c0330
    [ 0.091739] pci 0000:10:00.0: reg 0x10: [mem 0xdf500000-0xdf507fff 64bit]
    [ 0.091849] pci 0000:10:00.0: PME# supported from D3cold
    [ 0.098344] pci 0000:00:1c.6: PCI bridge to [bus 10]
    [ 0.098347] pci 0000:00:1c.6: bridge window [mem 0xdf500000-0xdf5fffff]
    [ 0.098364] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 10
    [ 0.098440] PCI: pci_cache_line_size set to 64 bytes
    [ 0.098515] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
    [ 0.098516] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
    [ 0.098517] e820: reserve RAM buffer [mem 0x9c598018-0x9fffffff]
    [ 0.098517] e820: reserve RAM buffer [mem 0x9e520000-0x9fffffff]
    [ 0.098518] e820: reserve RAM buffer [mem 0x9e985000-0x9fffffff]
    [ 0.098519] e820: reserve RAM buffer [mem 0xbd922000-0xbfffffff]
    [ 0.098520] e820: reserve RAM buffer [mem 0xbf000000-0xbfffffff]
    [ 0.098520] e820: reserve RAM buffer [mem 0x43f000000-0x43fffffff]
    [ 0.098569] NetLabel: Initializing
    [ 0.098570] NetLabel: domain hash size = 128
    [ 0.098570] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.098576] NetLabel: unlabeled traffic allowed by default
    [ 0.098594] Switched to clocksource refined-jiffies
    [ 0.100961] pnp: PnP ACPI: disabled
    [ 0.101632] pci 0000:02:08.0: PCI bridge to [bus 04]
    [ 0.101639] pci 0000:02:10.0: PCI bridge to [bus 03]
    [ 0.101640] pci 0000:02:10.0: bridge window [io 0xe000-0xefff]
    [ 0.101643] pci 0000:02:10.0: bridge window [mem 0xde000000-0xdf0fffff]
    [ 0.101645] pci 0000:02:10.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.101648] pci 0000:01:00.0: PCI bridge to [bus 02-04]
    [ 0.101649] pci 0000:01:00.0: bridge window [io 0xe000-0xefff]
    [ 0.101652] pci 0000:01:00.0: bridge window [mem 0xde000000-0xdf0fffff]
    [ 0.101654] pci 0000:01:00.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.101657] pci 0000:00:01.0: PCI bridge to [bus 01-04]
    [ 0.101661] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
    [ 0.101662] pci 0000:00:01.0: bridge window [mem 0xde000000-0xdf1fffff]
    [ 0.101664] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.101666] pci 0000:00:1c.0: PCI bridge to [bus 05]
    [ 0.101674] pci 0000:07:01.0: PCI bridge to [bus 08]
    [ 0.101685] pci 0000:07:02.0: PCI bridge to [bus 09]
    [ 0.101696] pci 0000:07:03.0: PCI bridge to [bus 0a]
    [ 0.101698] pci 0000:07:03.0: bridge window [io 0xc000-0xcfff]
    [ 0.101702] pci 0000:07:03.0: bridge window [mem 0xdf400000-0xdf4fffff]
    [ 0.101710] pci 0000:07:04.0: PCI bridge to [bus 0b]
    [ 0.101721] pci 0000:07:05.0: PCI bridge to [bus 0c]
    [ 0.101733] pci 0000:07:06.0: PCI bridge to [bus 0d]
    [ 0.101735] pci 0000:07:06.0: bridge window [io 0xb000-0xbfff]
    [ 0.101739] pci 0000:07:06.0: bridge window [mem 0xdf300000-0xdf3fffff]
    [ 0.101747] pci 0000:07:07.0: PCI bridge to [bus 0e]
    [ 0.101748] pci 0000:07:07.0: bridge window [io 0xa000-0xafff]
    [ 0.101753] pci 0000:07:07.0: bridge window [mem 0xdf200000-0xdf2fffff]
    [ 0.101761] pci 0000:06:00.0: PCI bridge to [bus 07-0e]
    [ 0.101762] pci 0000:06:00.0: bridge window [io 0xa000-0xcfff]
    [ 0.101767] pci 0000:06:00.0: bridge window [mem 0xdf200000-0xdf4fffff]
    [ 0.101774] pci 0000:00:1c.3: PCI bridge to [bus 06-0e]
    [ 0.101776] pci 0000:00:1c.3: bridge window [io 0xa000-0xcfff]
    [ 0.101779] pci 0000:00:1c.3: bridge window [mem 0xdf200000-0xdf4fffff]
    [ 0.101783] pci 0000:00:1c.4: PCI bridge to [bus 0f]
    [ 0.101785] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff]
    [ 0.101788] pci 0000:00:1c.4: bridge window [mem 0xdf600000-0xdf6fffff]
    [ 0.101793] pci 0000:00:1c.6: PCI bridge to [bus 10]
    [ 0.101796] pci 0000:00:1c.6: bridge window [mem 0xdf500000-0xdf5fffff]
    [ 0.101801] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
    [ 0.101802] pci_bus 0000:00: resource 5 [mem 0x00000000-0x7fffffffff]
    [ 0.101803] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
    [ 0.101804] pci_bus 0000:01: resource 1 [mem 0xde000000-0xdf1fffff]
    [ 0.101805] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.101806] pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
    [ 0.101807] pci_bus 0000:02: resource 1 [mem 0xde000000-0xdf0fffff]
    [ 0.101807] pci_bus 0000:02: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.101808] pci_bus 0000:03: resource 0 [io 0xe000-0xefff]
    [ 0.101809] pci_bus 0000:03: resource 1 [mem 0xde000000-0xdf0fffff]
    [ 0.101810] pci_bus 0000:03: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.101811] pci_bus 0000:06: resource 0 [io 0xa000-0xcfff]
    [ 0.101812] pci_bus 0000:06: resource 1 [mem 0xdf200000-0xdf4fffff]
    [ 0.101813] pci_bus 0000:07: resource 0 [io 0xa000-0xcfff]
    [ 0.101813] pci_bus 0000:07: resource 1 [mem 0xdf200000-0xdf4fffff]
    [ 0.101814] pci_bus 0000:0a: resource 0 [io 0xc000-0xcfff]
    [ 0.101815] pci_bus 0000:0a: resource 1 [mem 0xdf400000-0xdf4fffff]
    [ 0.101816] pci_bus 0000:0d: resource 0 [io 0xb000-0xbfff]
    [ 0.101817] pci_bus 0000:0d: resource 1 [mem 0xdf300000-0xdf3fffff]
    [ 0.101818] pci_bus 0000:0e: resource 0 [io 0xa000-0xafff]
    [ 0.101819] pci_bus 0000:0e: resource 1 [mem 0xdf200000-0xdf2fffff]
    [ 0.101819] pci_bus 0000:0f: resource 0 [io 0xd000-0xdfff]
    [ 0.101820] pci_bus 0000:0f: resource 1 [mem 0xdf600000-0xdf6fffff]
    [ 0.101821] pci_bus 0000:10: resource 1 [mem 0xdf500000-0xdf5fffff]
    [ 0.101833] NET: Registered protocol family 2
    [ 0.101941] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.102058] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.102147] TCP: Hash tables configured (established 131072 bind 65536)
    [ 0.102157] TCP: reno registered
    [ 0.102165] UDP hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.102195] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
    [ 0.102236] NET: Registered protocol family 1
    [ 0.102251] pci 0000:00:14.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.103443] pci 0000:00:1a.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.121537] PCI: CLS mismatch (64 != 128), using 64 bytes
    [ 0.121543] pci 0000:00:1d.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.139571] pci 0000:00:1c.6: can't find IRQ for PCI INT C; please try using pci=biosirq
    [ 0.139579] pci 0000:10:00.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.140768] Unpacking initramfs...
    [ 0.175981] Freeing initrd memory: 3356K (ffff88007fcb9000 - ffff880080000000)
    [ 0.175987] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.175989] software IO TLB [mem 0xb503e000-0xb903e000] (64MB) mapped at [ffff8800b503e000-ffff8800b903dfff]
    [ 0.176028] platform rtc_cmos: registered platform RTC device (no PNP device found)
    [ 0.176077] RAPL PMU detected, hw unit 2^-14 Joules, API unit is 2^-32 Joules, 4 fixed counters 655360 ms ovfl timer
    [ 0.176092] microcode: CPU0 sig=0x306c3, pf=0x2, revision=0x19
    [ 0.176112] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 0.176126] Scanning for low memory corruption every 60 seconds
    [ 0.176233] futex hash table entries: 256 (order: 2, 16384 bytes)
    [ 0.176239] Initialise system trusted keyring
    [ 0.176423] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.177103] zpool: loaded
    [ 0.177104] zbud: loaded
    [ 0.177193] VFS: Disk quotas dquot_6.5.2
    [ 0.177209] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.177270] msgmni has been set to 31984
    [ 0.177299] Key type big_key registered
    [ 0.177354] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.177366] io scheduler noop registered
    [ 0.177367] io scheduler deadline registered
    [ 0.177381] io scheduler cfq registered (default)
    [ 0.177420] pcieport 0000:00:01.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177430] pcieport 0000:00:01.0: irq 16 for MSI/MSI-X
    [ 0.177454] pcieport 0000:00:1c.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177464] pcieport 0000:00:1c.0: irq 17 for MSI/MSI-X
    [ 0.177498] pcieport 0000:00:1c.3: can't find IRQ for PCI INT D; please try using pci=biosirq
    [ 0.177509] pcieport 0000:00:1c.3: irq 18 for MSI/MSI-X
    [ 0.177543] pcieport 0000:00:1c.4: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177553] pcieport 0000:00:1c.4: irq 19 for MSI/MSI-X
    [ 0.177595] pcieport 0000:00:1c.6: irq 20 for MSI/MSI-X
    [ 0.177629] pcieport 0000:01:00.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177651] pcieport 0000:02:08.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177673] pcieport 0000:02:10.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177697] pcieport 0000:06:00.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177740] pcieport 0000:07:01.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177786] pcieport 0000:07:02.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177830] pcieport 0000:07:03.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177875] pcieport 0000:07:04.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177920] pcieport 0000:07:05.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.177964] pcieport 0000:07:06.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.178009] pcieport 0000:07:07.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.178063] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
    [ 0.178064] pcieport 0000:01:00.0: Signaling PME through PCIe PME interrupt
    [ 0.178065] pcieport 0000:02:08.0: Signaling PME through PCIe PME interrupt
    [ 0.178066] pcieport 0000:02:10.0: Signaling PME through PCIe PME interrupt
    [ 0.178066] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
    [ 0.178067] pci 0000:03:00.1: Signaling PME through PCIe PME interrupt
    [ 0.178069] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
    [ 0.178078] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    [ 0.178081] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    [ 0.178089] pcieport 0000:00:1c.3: Signaling PME through PCIe PME interrupt
    [ 0.178090] pcieport 0000:06:00.0: Signaling PME through PCIe PME interrupt
    [ 0.178091] pcieport 0000:07:01.0: Signaling PME through PCIe PME interrupt
    [ 0.178092] pcieport 0000:07:02.0: Signaling PME through PCIe PME interrupt
    [ 0.178093] pcieport 0000:07:03.0: Signaling PME through PCIe PME interrupt
    [ 0.178093] pci 0000:0a:00.0: Signaling PME through PCIe PME interrupt
    [ 0.178094] pcieport 0000:07:04.0: Signaling PME through PCIe PME interrupt
    [ 0.178095] pcieport 0000:07:05.0: Signaling PME through PCIe PME interrupt
    [ 0.178095] pcieport 0000:07:06.0: Signaling PME through PCIe PME interrupt
    [ 0.178096] pci 0000:0d:00.0: Signaling PME through PCIe PME interrupt
    [ 0.178097] pcieport 0000:07:07.0: Signaling PME through PCIe PME interrupt
    [ 0.178098] pci 0000:0e:00.0: Signaling PME through PCIe PME interrupt
    [ 0.178100] pcie_pme 0000:00:1c.3:pcie01: service driver pcie_pme loaded
    [ 0.178109] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
    [ 0.178109] pci 0000:0f:00.0: Signaling PME through PCIe PME interrupt
    [ 0.178112] pcie_pme 0000:00:1c.4:pcie01: service driver pcie_pme loaded
    [ 0.178121] pcieport 0000:00:1c.6: Signaling PME through PCIe PME interrupt
    [ 0.178122] pci 0000:10:00.0: Signaling PME through PCIe PME interrupt
    [ 0.178124] pcie_pme 0000:00:1c.6:pcie01: service driver pcie_pme loaded
    [ 0.178132] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.178140] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.178157] efifb: probing for efifb
    [ 0.178163] efifb: framebuffer at 0xc0000000, mapped to 0xffffc90001b80000, using 3072k, total 3072k
    [ 0.178164] efifb: mode is 1024x768x32, linelength=4096, pages=1
    [ 0.178165] efifb: scrolling: redraw
    [ 0.178165] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.179350] Console: switching to colour frame buffer device 128x48
    [ 0.180418] fb0: EFI VGA frame buffer device
    [ 0.180422] intel_idle: MWAIT substates: 0x42120
    [ 0.180423] intel_idle: v0.4 model 0x3C
    [ 0.180424] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.180487] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.201010] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
    [ 0.201132] Linux agpgart interface v0.103
    [ 0.201221] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
    [ 0.201236] rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
    [ 0.201241] Intel P-state driver initializing.
    [ 0.201260] ledtrig-cpu: registered to indicate activity on CPUs
    [ 0.201311] TCP: cubic registered
    [ 0.201359] NET: Registered protocol family 10
    [ 0.201460] NET: Registered protocol family 17
    [ 0.201549] Loading compiled-in X.509 certificates
    [ 0.201556] registered taskstats version 1
    [ 0.201938] Magic number: 10:630:762
    [ 0.201974] rtc_cmos rtc_cmos: setting system clock to 2014-12-30 01:46:17 UTC (1419903977)
    [ 0.202020] PM: Hibernation image not present or could not be loaded.
    [ 0.202422] Freeing unused kernel memory: 1136K (ffffffff818e2000 - ffffffff819fe000)
    [ 0.202423] Write protecting the kernel read-only data: 8192k
    [ 0.203481] Freeing unused kernel memory: 748K (ffff880001545000 - ffff880001600000)
    [ 0.203917] Freeing unused kernel memory: 336K (ffff8800017ac000 - ffff880001800000)
    [ 0.206804] random: systemd-tmpfile urandom read with 1 bits of entropy available
    [ 0.214973] usbcore: registered new interface driver usbfs
    [ 0.215012] usbcore: registered new interface driver hub
    [ 0.218047] SCSI subsystem initialized
    [ 0.221736] libata version 3.00 loaded.
    [ 0.222022] ahci 0000:00:1f.2: version 3.0
    [ 0.222027] ahci 0000:00:1f.2: can't find IRQ for PCI INT B; please try using pci=biosirq
    [ 0.222053] ahci 0000:00:1f.2: irq 21 for MSI/MSI-X
    [ 0.222081] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0xb impl SATA mode
    [ 0.222082] ahci 0000:00:1f.2: flags: 64bit ncq led clo pio slum part ems apst
    [ 0.222421] usbcore: registered new device driver usb
    [ 0.222622] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.222688] ehci-pci: EHCI PCI platform driver
    [ 0.224499] firewire_ohci 0000:0e:00.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.224527] genirq: Flags mismatch irq 0. 00000080 (firewire_ohci) vs. 00015a00 (timer)
    [ 0.224549] firewire_ohci 0000:0e:00.0: failed to allocate interrupt 0
    [ 0.224572] firewire_ohci: probe of 0000:0e:00.0 failed with error -5
    [ 0.234786] scsi host0: ahci
    [ 0.234841] scsi host1: ahci
    [ 0.234886] scsi host2: ahci
    [ 0.234929] scsi host3: ahci
    [ 0.234972] scsi host4: ahci
    [ 0.235014] scsi host5: ahci
    [ 0.235035] ata1: SATA max UDMA/133 abar m2048@0xdf735000 port 0xdf735100 irq 21
    [ 0.235037] ata2: SATA max UDMA/133 abar m2048@0xdf735000 port 0xdf735180 irq 21
    [ 0.235037] ata3: DUMMY
    [ 0.235039] ata4: SATA max UDMA/133 abar m2048@0xdf735000 port 0xdf735280 irq 21
    [ 0.235039] ata5: DUMMY
    [ 0.235039] ata6: DUMMY
    [ 0.235058] ahci 0000:0a:00.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.235097] ahci 0000:0a:00.0: irq 22 for MSI/MSI-X
    [ 0.235109] ahci 0000:0a:00.0: SSS flag set, parallel bus scan disabled
    [ 0.235146] ahci 0000:0a:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
    [ 0.235147] ahci 0000:0a:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc sxs
    [ 0.235275] ehci-pci 0000:00:1a.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.235278] ehci-pci 0000:00:1a.0: Found HC with no IRQ. Check BIOS/PCI 0000:00:1a.0 setup!
    [ 0.235297] ehci-pci 0000:00:1a.0: init 0000:00:1a.0 fail, -19
    [ 0.235316] ehci-pci 0000:00:1d.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.235318] ehci-pci 0000:00:1d.0: Found HC with no IRQ. Check BIOS/PCI 0000:00:1d.0 setup!
    [ 0.235338] ehci-pci 0000:00:1d.0: init 0000:00:1d.0 fail, -19
    [ 0.235400] xhci_hcd 0000:00:14.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.235411] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.235414] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
    [ 0.235476] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 0.235486] xhci_hcd 0000:00:14.0: irq 23 for MSI/MSI-X
    [ 0.235714] hub 1-0:1.0: USB hub found
    [ 0.235728] hub 1-0:1.0: 14 ports detected
    [ 0.235898] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.235900] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [ 0.235973] hub 2-0:1.0: USB hub found
    [ 0.235998] hub 2-0:1.0: 6 ports detected
    [ 0.236094] xhci_hcd 0000:10:00.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.236104] xhci_hcd 0000:10:00.0: xHCI Host Controller
    [ 0.236106] xhci_hcd 0000:10:00.0: new USB bus registered, assigned bus number 3
    [ 0.244565] scsi host6: ahci
    [ 0.251214] scsi host7: ahci
    [ 0.251240] ata7: SATA max UDMA/133 abar m512@0xdf400000 port 0xdf400100 irq 22
    [ 0.251242] ata8: SATA max UDMA/133 abar m512@0xdf400000 port 0xdf400180 irq 22
    [ 0.251285] ahci 0000:0f:00.0: can't find IRQ for PCI INT A; please try using pci=biosirq
    [ 0.251314] ahci 0000:0f:00.0: irq 24 for MSI/MSI-X
    [ 0.251323] ahci 0000:0f:00.0: SSS flag set, parallel bus scan disabled
    [ 0.251350] ahci 0000:0f:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
    [ 0.251351] ahci 0000:0f:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc
    [ 0.257910] scsi host8: ahci
    [ 0.264602] scsi host9: ahci
    [ 0.264625] ata9: SATA max UDMA/133 abar m512@0xdf600000 port 0xdf600100 irq 24
    [ 0.264627] ata10: SATA max UDMA/133 abar m512@0xdf600000 port 0xdf600180 irq 24
    [ 0.296576] xhci_hcd 0000:10:00.0: irq 25 for MSI/MSI-X
    [ 0.296578] xhci_hcd 0000:10:00.0: irq 26 for MSI/MSI-X
    [ 0.296710] hub 3-0:1.0: USB hub found
    [ 0.296716] hub 3-0:1.0: 2 ports detected
    [ 0.296759] xhci_hcd 0000:10:00.0: xHCI Host Controller
    [ 0.296761] xhci_hcd 0000:10:00.0: new USB bus registered, assigned bus number 4
    [ 0.296875] hub 4-0:1.0: USB hub found
    [ 0.296880] hub 4-0:1.0: 2 ports detected
    [ 0.556696] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 0.558535] ata1.00: supports DRM functions and may not be fully accessible
    [ 0.558561] ata1.00: failed to get NCQ Send/Recv Log Emask 0x1
    [ 0.558562] ata1.00: ATA-9: Samsung SSD 850 PRO 256GB, EXM01B6Q, max UDMA/133
    [ 0.558563] ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
    [ 0.558738] ata1.00: supports DRM functions and may not be fully accessible
    [ 0.558763] ata1.00: failed to get NCQ Send/Recv Log Emask 0x1
    [ 0.558806] ata1.00: configured for UDMA/133
    [ 0.563429] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 0.563472] scsi 0:0:0:0: Direct-Access ATA Samsung SSD 850 1B6Q PQ: 0 ANSI: 5
    [ 0.564753] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
    [ 0.564771] sd 0:0:0:0: [sda] Write Protect is off
    [ 0.564772] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 0.564777] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 0.565118] ata2.00: ATAPI: ASUS BC-12D2HT, 1.00, max UDMA/100
    [ 0.565571] sda: sda1 sda2 sda3 sda4
    [ 0.565688] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 0.565740] ata2.00: configured for UDMA/100
    [ 0.566048] scsi 1:0:0:0: CD-ROM ASUS BC-12D2HT 1.00 PQ: 0 ANSI: 5
    [ 0.566799] ata4: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 0.567259] ata4.00: ATA-9: WDC WD3003FZEX-00Z4SA0, 01.01A01, max UDMA/133
    [ 0.567260] ata4.00: 5860533168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 0.568491] ata4.00: configured for UDMA/133
    [ 0.573548] ata7: SATA link down (SStatus 0 SControl 300)
    [ 0.575040] scsi 3:0:0:0: Direct-Access ATA WDC WD3003FZEX-0 1A01 PQ: 0 ANSI: 5
    [ 0.575102] sd 3:0:0:0: [sdb] 5860533168 512-byte logical blocks: (3.00 TB/2.72 TiB)
    [ 0.575103] sd 3:0:0:0: [sdb] 4096-byte physical blocks
    [ 0.575115] sd 3:0:0:0: [sdb] Write Protect is off
    [ 0.575116] sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 0.575121] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 0.587016] ata9: SATA link down (SStatus 0 SControl 300)
    [ 0.588472] sr 1:0:0:0: [sr0] scsi3-mmc drive: 1x/1x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 0.588473] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 0.588524] sr 1:0:0:0: Attached scsi CD-ROM sr0
    [ 0.597116] usb 1-2: new high-speed USB device number 2 using xhci_hcd
    [ 0.602136] sdb: sdb1 sdb2
    [ 0.602224] sd 3:0:0:0: [sdb] Attached SCSI disk
    [ 0.796333] hub 1-2:1.0: USB hub found
    [ 0.796476] hub 1-2:1.0: 4 ports detected
    [ 0.897881] ata8: SATA link down (SStatus 0 SControl 300)
    [ 0.958892] usb 1-7: new full-speed USB device number 3 using xhci_hcd
    [ 1.138972] hidraw: raw HID events driver (C) Jiri Kosina
    [ 1.142463] usbcore: registered new interface driver usbhid
    [ 1.142465] usbhid: USB HID core driver
    [ 1.143465] logitech-djreceiver 0003:046D:C52B.0003: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-7/input2
    [ 1.198065] input: Logitech Unifying Device. Wireless PID:101a as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.2/0003:046D:C52B.0003/0003:046D:C52B.0004/input/input0
    [ 1.198082] logitech-djdevice 0003:046D:C52B.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech Unifying Device. Wireless PID:101a] on usb-0000:00:14.0-7:1
    [ 1.207130] Switched to clocksource tsc
    [ 1.223905] ata10: SATA link down (SStatus 0 SControl 300)
    [ 1.254898] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
    [ 1.297340] usb 1-8: new high-speed USB device number 4 using xhci_hcd
    [ 1.343905] systemd[1]: systemd 218 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD +IDN)
    [ 1.343953] systemd[1]: Detected architecture 'x86-64'.
    [ 1.344230] systemd[1]: Set hostname to <Bastet>.
    [ 1.387480] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory.
    [ 1.387651] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 1.387678] systemd[1]: Started Forward Passwor

  • Minimum hardware requirement for Report server with 4 engines ??

    Hello all ,
    Can someone please tell what is the minimun Hardware requirement to be able to run a Oracle 91 AS with report server having 4 engines ??
    and where I can find this kind of documentation.
    We have a Oracle9iAS Containers for J2EE running on a machine with under 1 ghz power and around 300 mb RAM
    , but the report server seems to keep crashing ..
    Can anyone pls advice
    Thanks

    Hi,
    For calculating the minimum hardware requirements, you may need to look at various factors:
    1. No of reports requests that need to be processed per second
    2. Whether all these requests are synchronous or asynchronous
    3. Response time required
    4. Type of reports - large amounts of data, large no of images, etc
    5. How much caching you are using
    6. No of queries in your report
    7. Simple / complex layout of the report
    and so on.
    So just the information of 4 engines may not be sufficient for trying to calculate the hardware requirements. One useful reference point for you may be the Oracle9i Reports Scalability whitepaper:
    http://otn.oracle.com/products/reports/index.html
    It lists the number of users supported on some pre-defined hardware configurations, and the average response time for the reports server.
    You might also want to take a look at the paper on "Tuning Oracle Reports":
    http://otn.oracle.com/products/reports/htdocs/search.html?cat=SAP&col=ALC&submit=Search
    However, it is also possible that your Reports Server is crashing due to some other problem (not the hardware configuration).
    By the way, your RAM seems to be too low for Oracle9iAS installation. See the installation guide for minimum hardware requirements.
    Navneet.

  • 10.6 Server with 10.5 Macs - help please!

    Hi everyone,
    We're currently running 10.5 on all our macs and 10.5 server too. If we just upgraded our Mac's to 10.6 Snow Leopard and keep the server running 10.5 Leopard, would we experience any compatibility issues or syncing issues etc if we didn't upgrade the server too?
    Don't really want to shell out for the server upgrade too you see, so if there's no problems we're just gonna do that.
    Thanks in advance for your help!
    Mark

    http://discussions.apple.com/category.jspa?categoryID=96

  • "Message Driven Bean" doesn't work with Sun App Server

    Hello all,
    i have a little bit problems, running a simple "Message Driven Bean" under the Sun App Server. The deployment of it works fine, but after starting the SUN App Server i get the following error message:
    An error occurred during the message-driven beancontainer initialization at runtime. The most common cause for this is that the physical resource(e.g. Queue) from which the message-driven bean is consuming either does not exist or has been configured incorrectly. Another common error is that the message-driven bean implementation class does not correctly implement the required javax.ejb.MessageBean or MessageListener interfaces.
    Has anybody a workaround for this problem?
    The queue seems to be correctly installed. A simple client programm from the Sun Tutorial (Consumer & Producer) works fine without any Errors or Exceptions.
    I am a little bit confused, because the queue seems to work with the client programms but not with a MDB running on the SUN App Server.
    Thanks for you help!
    Greetings
    Manuel

    Hello Mr Manuel!
    could you plz help me with the steps for creating a message driven bean using netbeans ver 5.0(with Sun Java� System Application Server Platform Edition 8.2 )
    I just know how to work with Session beans & Entity Bean, and am try to learn to work on Message Driven Beans too. there are no proper tutorials where i can find steps for creating these..
    I need the steps from the scratch.,like creating QueueConnection Factory & Destination etc..
    It will be gr8 if you can help me with this at the earliest .
    Thank you
    Bye

  • JBoss 4 to Sun Application Server...where to start

    Hi there...
    I'm charged with making sure my company's product, which has mostly been running on JBoss, works w/ Sun Application Server.
    I've been trying to use the Migration Tool with poor results...I know some of it is because it's for JBoss 3 and not 4....
    giving it the entire .EAR for our product tells me that it doesn't handle webservices...diving into the EAR's JAR containing our services and removing webservices.xml gives the same result of various permutations of putting in source code / xml leads , namely it runs and then freezes with
    DefaultValidationEventHandler: [FATAL_ERROR]: Premature end of file.
    Location:
    DefaultValidationEventHandler: [ERROR]: Unexpected element {}:ejb-local-ref
    Location:
    back on the console I launched the UI from
    To possibly oversimplify, I copied out some of the most relevant .xml we have,
    ejb-jar.xml
    jboss.xml
    jbosscmp-jdbc.xml
    jboss-web.xml
    web.xml
    and put them in a single directory...now the Migration tool runs, leaves most of the files unchanged, and for our ejb-jar.xml it fails, and says
    Unknown error.
    EjbJar is Null
    Admittedly our ejb-jar.xml is handcrafted and maybe suspect, but still.
    So I guess right now I'm not too optimistic about this tool.
    Some of the problem is my understanding of what all goes in an EAR in terms of DD is weak. I'm trying to smarten up, but haven't found a good description of "these are the typical DD files for Sun Application Server", with examples or precise descriptions of the contents...and the migration tool doesn't get to the point where it's making some of the files i expected based on
    http://java.sun.com/j2ee/tools/migration/doc/JBOSS3.0_S1AS7.html
    (for example sun-cmp-mappings.xml doesn't appear anywhere in the AppServer\docs directory... )
    Any pointers or advice appreciated...

    There is an article, while it is for Application Server 7, it still could be useful:
    http://developers.sun.com/prodtech/javatools/jsenterprise/reference/docs/jse7/jse7_jboss_plugin.html

  • Visibroker Bind Error When Using Sun Application Server

    I have a servlet that utilizes Visibroker 3.4 to access CORBA objects. My servlet works fine when using Tomcat; however, when using the Sun Application Server 8.2 PE, the same code does not work. After a few second delay (timout?) then the following exception is thrown.
    org.omg.CORBA.NO_IMPLEMENT:
    Could not locate the following object:
         repository id : IDL:A3Server:1.0
         object name : mobile5A3Server
    vmcid: 0x0 minor code: 0 completed: No
         com.visigenic.vbroker.orb.ORB.bind(ORB.java:1282)
         com.visigenic.vbroker.orb.ORB.bind(ORB.java:1361)
         com.visigenic.vbroker.orb.ORB.bind(ORB.java:1171)
         A3AppGen.A3ServerHelper.bind(A3ServerHelper.java:31)
         A3AppGen.A3ServerHelper.bind(A3ServerHelper.java:27)
         A3SessionConnection.connect(A3SessionConnection.java:74)
    Has anyone experienced this and better, found the solution. Interesting fact is that this only occurs when using the .bind(orb(), serverName); call.
    Another servlet packaged in the same .war file receives an IOR and is able to successfully access the CORBA object using orb().string_to_object(serverIOR); with both Tomcat and Sun Application Server.
    Thanks for the help.

    Please list the content of 'asadminenv.conf'
    Alternatively, you could just manually create the instance as follows:
    asadmin.bat create-domain user admin adminport 4849 domaindir C:\Sun\AppServer\domains instanceport 8080 domain1

  • Logging into Windows Server 2012 from Remote Desktop requires "Connect with Smart Card"; how do I disable this?

    I am using pretty much the default setup. I cannot figure out how to disable this. I do not want to use smart cards.
    Any ideas?

    Does this mean you're trying to RDP from an XP box, therfore have the Remote Desktop feature on the server set to "less secure"? Sounds like thats what disables network authentication, prompting the Smart Card request.
    If you simply click to login as a different user, you can login without a smart card, to include the same user as was being prompted for the card.
    I expect if you choose the Remote Desktop feature requires network authentication on the server, the smart card requirement goes away, but you'll need to login from Win7 or newer clients. Not sure where Vista falls, probably okay too.

Maybe you are looking for

  • How do you call a java class from the main method in another class?

    Hi all, How do you call a java class from the main() method in another class? Assuming the two class are in the same package. Thanks SI Edited by: okun on May 16, 2010 8:40 PM Edited by: okun on May 16, 2010 8:41 PM Edited by: okun on May 16, 2010 8:

  • Repository Access

    Hello All, I have a question. I can't find the SAP HANA Development when I go to windows --> Preferences in my SAP HANA Studio. I am trying to get to the Repository Access. Can someone help me out? Thank you. Onero.

  • Leopard is a problem in general

    we have 5 macs but only installed Leopard on one, the new macbook (1 gb memory), because we experienced many problems. The Tiger mac book was fast, the Leopard Macbook is slow. Appleworks does not function, Quickbooks freezes (a problem for the offic

  • BAPI Structure populating using field name and field value frm internal tbl

    Hi Experts,                  Need your help, my requirement is to populate BAPI import structure using its field name and filed value  stored in a internal table.  Please advise the best approach. Regards Ram.

  • Analog surround sound on Mac -what does work?

    okay, I'm sure this has been covered before, if so- i haven't really heard of it. Are there any options for analog surround sound on the Mac currently , that is, surround sound using the 3 stereo plugs, and not the optical/coaxial digital plug? the l