UnknownHostException in XP, not in Linux

I'm having some problems with this code:
                    URL url = new URL(DODConstants.SYSTEM_DOMAIN+DODConstants.FILE_SEPARATOR+urltopdf);
                    HttpURLConnection connection = (HttpURLConnection)url.openConnection();
                    connection.connect();
                    System.out.println("Connection made:"+connection);
                    InputStream input = null;
                    try {
                        input = connection.getInputStream();
                    } catch (IOException ioe) {
                        JOptionPane.showMessageDialog(finishpanel,
                                "There was an error establishing a connection to the server.\nThis may be due to firewall restrictions.\nPlease contact system administator.",
                                "Error connecting to server",
                                JOptionPane.ERROR_MESSAGE
                    if(input != null) {
                        FileOutputStream out = new FileOutputStream(outputFile);
                        System.out.println("Starting read..");
                        int c;
                        while ((c = input.read()) != -1)
                            bytesRead++;
                            out.write(c);
                        System.out.println("Read finished, closing..");
                        input.close();
                        out.close();
                        finishpanel.setCursor(CUR_DEF);
                        dldialog.dispose();
                } catch (IOException e1) {
                    e1.printStackTrace();  // Just print the stack trace
                    JOptionPane.showMessageDialog(finishpanel,
                            "There was an error downloading or saving the PDF to the local hard drive.\nMake sure you have write access to the location when you want to save the PDF.",
                            "Error downloading file",
                            JOptionPane.ERROR_MESSAGE);
                    return;
                }I'm sitting at the same location, testing it in Linux and XP. In Linux it will system out this:
Connection made:sun.net.www.protocol.http.HttpURLConnection:http://(..)wilst, on XP this will be System.out'd:
java.net.UnknownHostException: (..)
     at java.net.PlainSocketImpl.connect(Unknown Source)
     at java.net.Socket.connect(Unknown Source)
     at java.net.Socket.connect(Unknown Source)
     at sun.net.NetworkClient.doConnect(Unknown Source)
     at sun.net.www.http.HttpClient.openServer(Unknown Source)
     at sun.net.www.http.HttpClient.openServer(Unknown Source)
     at sun.net.www.http.HttpClient.<init>(Unknown Source)
     at sun.net.www.http.HttpClient.<init>(Unknown Source)
     at sun.net.www.http.HttpClient.New(Unknown Source)
     at sun.net.www.http.HttpClient.New(Unknown Source)
     at sun.net.www.http.HttpClient.New(Unknown Source)
     at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
     at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
     at no.xait.dod.customcomponents.FinishPanel$downloadFile.<init>(FinishPanel.java:1008)
     at no.xait.dod.customcomponents.FinishPanel$3.construct(FinishPanel.java:935)
     at no.xait.dod.utilities.SwingWorker$2.run(SwingWorker.java:110)
     at java.lang.Thread.run(Unknown Source)[domain replaced with (..)]
It can't be an Unknown Host, I'm sitting at the exact same location, and the software is working against that host most of the program.
So, anyone know what's going on here?

it cannot be an non-existing host as it works with linux... could be that the url-format is not supported in XP. printing of url.toString() before connecting and then trying to ping with that string might give a clue..
good luck!

Similar Messages

  • ORA-01034: ORACLE not available  Linux Error: 2: No such file or directory

    Hi,
    I have oracle 10.2.0 on Redhat 4 Linux. Yesterday i transport my database from windows to linux and it was working fine.
    but today when i try to log in it gives me error like,
    [oracle@satish bin]$ ./sqlplus sys as sysdba
    SQL*Plus: Release 10.2.0.1.0 - Production on Tue May 19 15:33:22 2009
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Enter password:
    ERROR:
    ORA-01031: insufficient privileges
    Enter user-name: system
    Enter password:
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux Error: 2: No such file or directory
    Enter user-name:My all environment variables are fine.
    According to me any file is missing by
    Linux Error: 2: No such file or directory
    but can't find out what.
    While i have another database on same system which is working fine.
    Thanks
    UMesh

    Thanks for reply
    I applied all the thing
    1. my user is already in dba group.
    2. I change the permission on orapwORCL and i recreate the same file.
    3. [oracle@satish bin]$ ./sqlplus / as sysdba
    SQL*Plus: Release 10.2.0.1.0 - Production on Tue May 19 16:06:25 2009
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    ERROR:
    ORA-01031: insufficient privilegesBut nothing works.
    any other suggestions.

  • Dlopen works on Solaris but not on Linux.

    Can anyone explain why this is happening? Save the 5 source files and run the 'build' script.
    On a Solaris system it works:
    SunOS wibble 5.11 snv_124 i86pc i386 i86pc
    g++ (GCC) 3.4.3 (csl-sol210-3_4-20050802)
    Copyright (C) 2004 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    Call dlopen
    In bar
    dlopen returns fecb0348
    After dlopen
    On a Linux system it does not work:
    Linux uce-build 2.6.9-34.ELsmp #1 SMP Fri Feb 24 16:54:53 EST 2006 i686 athlon i386 GNU/Linux
    g++ (GCC) 3.4.5 20051201 (Red Hat 3.4.5-2)
    Copyright (C) 2004 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    Call dlopen
    dlopen returns ./testlib.so: undefined symbol: f
    After dlopen
    foo.h
    class foo {
    public:
    foo();
    virtual ~foo();
    void bar();
    private:
    newClass.h
    class newClass {
    public:
    newClass();
    virtual ~newClass();
    private:
    foo.cpp
    #include "foo.h"
    #include <stdio.h>
    foo::foo() { }
    foo::~foo() { }
    void foo::bar() {
    printf("In bar\n");
    main.cpp
    #include <stdio.h>
    #include <cstdlib>
    #include "foo.h"
    #include <dlfcn.h>
    #include <link.h>
    using namespace std;
    foo f;
    int main(int argc, char** argv) {
    printf("Call dlopen\n");
    void *handle;
    if (handle = dlopen("./testlib.so", RTLD_NOW) ) {
    printf("dlopen returns %p \n", handle);
    } else {
    printf("dlopen returns %s \n", dlerror());
    printf("After dlopen\n");
    return 0;
    newClass.cpp
    #include "newClass.h"
    #include "foo.h"
    extern foo f;
    newClass n;
    newClass::newClass() {
    f.bar();
    newClass::~newClass() { }
    build
    uname -a
    g++ --version
    g++ -fpic -c -g -o newClass.o newClass.cpp
    g++ -shared -o testlib.so newClass.o
    g++ -c -g -o foo.o foo.cpp
    g++ -c -g -o main.o main.cpp
    g++ -ldl -o testcase main.o foo.o
    ./testcase

    Edit: I succeeded to solve it accidentally. I did the following: Sign the jar in Netbeans, clean and build, the jar didn't work, I wiped out the .ks from the jar and clean and build again. Now it worked.
    Edited by: Vitali.pom on Oct 30, 2011 1:28 AM

  • Hi, i have zte open c with Fos 1.3 and there is no russian keyboard in settings, how can i install it? (i do not use linux) may be there is firmware update?

    hi, i have zte open c with Fos 1.3 and there is no russian keyboard in settings (rus locale working fine), how can i install it? (i do not use linux) may be there is firmware update or something in market?

    To give an update on this issue, here is the latest information I have:
    "Indeed the current eBay Open C doesn't come with root privilege. Now ZTE is going to put an engineering build on their website for users to download and flash."
    I will update this thread as I know more information. Thank you for your patience.
    - Ralph

  • [Not Solved] linux 3.4.0 and internal microphone issues

    I'm happy with linux-ck, but since I've updated to 3.4 the internal microphone of my laptop (the webcam's) refuses to work, giving no sound or an awful noise. The snd_ modules loaded are exactly the same of a working 3.3.7 stock kernel, and I don't know if a similar problem happens with the 3.4 stock kernel as well, which is still in testing.
    Has anyone had a similar issue? Can you suggest something to narrow down the problem?
    I'll provide further details if needed.
    Thanks
    Moderator edit: Changed the mark from "CLOSED" to "Not Solved" (see below) --bernarcher
    Last edited by bernarcher (2012-06-04 12:10:41)

    hermes wrote:Neither of the previous two worked. The pre-compiled kernel has the same problem, and storing/restoring alsa state did nothing.
    I also tried removing options snd-hda-intel model=ACER. I'm wondering if it's a 3.4 problem with my hardware. I will try 3.4 in [testing] and maybe file a bug, if the mic still doesn't work.
    If you verify that Linux-ck is not to blame and that the bug is also present in the ARCH kernel package, please edit your first post's title to not include "Linux-ck."
    Thank you.

  • ORA-27101: shared memory realm does not exist Linux Error: 2: No such file

    hello i have a 10 Database R1 installed on Redhat linux AS 4.
    i'm having a problem connecting to my database, whenever i try to connect i get the error
    ORA-01034: Oracle not available.
    ORA-27101 shared memory realm does not exist
    Linux Error: 2: No such file or directory.
    i checked my startup.log and i found the following after issuing a dbstart.
    ORACLE instance started.
    Total System Global Area 130023424 bytes
    Fixed Size          1218100 bytes
    Variable Size          109054412 bytes
    Database Buffers     16777216 bytes
    Redo Buffers          2973696 bytes
    Database mounted.
    ORA-01092: ORACLE instance terminated
    on dbshut i get the same error message in the shutdown.log
    ORA-01034: Oracle not available.
    ORA-27101 shared memory realm does not exist
    Linux Error: 2: No such file or directory.
    my alert_ASYDB.log file has the following
    ORA-01534: rollback segment 'R01' doesn't exist
    Tue Feb 27 23:14:19 2007
    Error 1534 happened during db open, shutting down database
    USER: terminating instance due to error 1534
    Instance terminated by USER, pid = 3272
    ORA-1092 signalled during: ALTER DATABASE OPEN...
    in the database creation log, i noticed that this segment could not be created.
    i can mount the databse but cannot open it
    is there anyway to recreate these segments or any other solution for that?
    i have tried to comment the line in initASYDB.ora but dd not work.
    regards

    Hi,
    >>do you recommend using auto undo_management instead of RBS?
    Yes. To simplify management of rollback segments, the Oracle9i database introduced Automatic Undo Management (AUM) where the database automatically manages allocation and management of undo (rollback) space among various active sessions. In a database using AUM, all transactions share a single undo tablespace. Any executing transaction can consume free space in this tablespace. Undo space is dynamically transferred from committed transactions to executing transactions in the event of space scarcity in the undo tablespace..The AUM feature also provides a way for administrators to exert control on undo retention. You can specify the amount of undo to be retained in terms of wall clock time (number of seconds). With retention control, you can configure your systems to allow long running queries to execute successfully without encountering ORA-1555 (Snapshot too old) errors ...
    For more information, you can take a look on these links below:
    http://www.oracle.com/technology/obe/obe10gdb/manage/undoadv/undoadv.htm
    http://www.oracle-base.com/articles/9i/AutomaticUndoManagement.php
    Cheers

  • Slow Shutdown on all Linux kernels but not on Linux-lts kernel

    Been having this problem since the beginning of my Linux experience with Arch.
    This is my uname -r output:
    3.8.6-1-ARCH
    This problem only happens on Linux main kernel, and never happen in Linux-lts kernel. Tried using the method mentioned in the wiki to produce a shutdown log and this is what I got:
    [ 0.003774] Freeing SMP alternatives: 16k freed
    [ 0.004541] ACPI: Core revision 20121018
    [ 0.013344] ftrace: allocating 18216 entries in 36 pages
    [ 0.020098] Enabling APIC mode: Flat. Using 1 I/O APICs
    [ 0.020517] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.056047] smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU T5870 @ 2.00GHz (fam: 06, model: 0f, stepping: 0d)
    [ 0.056666] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    [ 0.056666] perf_event_intel: PEBS disabled due to CPU errata
    [ 0.056666] ... version: 2
    [ 0.056666] ... bit width: 40
    [ 0.056666] ... generic registers: 2
    [ 0.056666] ... value mask: 000000ffffffffff
    [ 0.056666] ... max period: 000000007fffffff
    [ 0.056666] ... fixed-purpose events: 3
    [ 0.056666] ... event mask: 0000000700000003
    [ 0.076717] CPU 1 irqstacks, hard=f64ba000 soft=f64bc000
    [ 0.076720] smpboot: Booting Node 0, Processors #1 OK
    [ 0.006666] Initializing CPU#1
    [ 0.006666] CPU1: Thermal monitoring handled by SMI
    [ 0.089933] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.089948] Brought up 2 CPUs
    [ 0.089951] smpboot: Total of 2 processors activated (7982.90 BogoMIPS)
    [ 0.090093] devtmpfs: initialized
    [ 0.090243] PM: Registering ACPI NVS region [mem 0x3f7c5400-0x3f7e7fb7] (142264 bytes)
    [ 0.091141] RTC time: 17:25:11, date: 04/14/13
    [ 0.091196] NET: Registered protocol family 16
    [ 0.091416] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.091419] ACPI: bus type pci registered
    [ 0.091492] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.091495] PCI: not using MMCONFIG
    [ 0.094229] PCI: PCI BIOS revision 2.10 entry at 0xf0322, last bus=48
    [ 0.094231] PCI: Using configuration type 1 for base access
    [ 0.094334] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.094336] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.094338] mtrr: corrected configuration.
    [ 0.095005] bio: create slab <bio-0> at 0
    [ 0.095005] ACPI: Added _OSI(Module Device)
    [ 0.095005] ACPI: Added _OSI(Processor Device)
    [ 0.095005] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.095005] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.097048] ACPI: EC: Look up EC in DSDT
    [ 0.111410] ACPI: SSDT 3f7db90c 0027F (v01 HP Cpu0Ist 00003000 INTL 20060317)
    [ 0.111870] ACPI: Dynamic OEM Table Load:
    [ 0.111873] ACPI: SSDT (null) 0027F (v01 HP Cpu0Ist 00003000 INTL 20060317)
    [ 0.112026] ACPI: SSDT 3f7dbc10 00619 (v01 HP Cpu0Cst 00003001 INTL 20060317)
    [ 0.112465] ACPI: Dynamic OEM Table Load:
    [ 0.112468] ACPI: SSDT (null) 00619 (v01 HP Cpu0Cst 00003001 INTL 20060317)
    [ 0.112715] ACPI: SSDT 3f7db844 000C8 (v01 HP Cpu1Ist 00003000 INTL 20060317)
    [ 0.113164] ACPI: Dynamic OEM Table Load:
    [ 0.113167] ACPI: SSDT (null) 000C8 (v01 HP Cpu1Ist 00003000 INTL 20060317)
    [ 0.113267] ACPI: SSDT 3f7dbb8b 00085 (v01 HP Cpu1Cst 00003000 INTL 20060317)
    [ 0.113713] ACPI: Dynamic OEM Table Load:
    [ 0.113716] ACPI: SSDT (null) 00085 (v01 HP Cpu1Cst 00003000 INTL 20060317)
    [ 0.150073] ACPI: Interpreter enabled
    [ 0.153341] ACPI: (supports S0 S3 S4 S5)
    [ 0.153361] ACPI: Using IOAPIC for interrupt routing
    [ 0.153384] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.153936] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources
    [ 0.153938] PCI: Using MMCONFIG for extended config space
    [ 0.155733] ACPI: Power Resource [C2A5] (on)
    [ 0.158672] ACPI: Power Resource [C1CE] (off)
    [ 0.160729] ACPI: Power Resource [C3C1] (off)
    [ 0.160799] ACPI: Power Resource [C3C2] (off)
    [ 0.160867] ACPI: Power Resource [C3C3] (off)
    [ 0.160935] ACPI: Power Resource [C3C4] (off)
    [ 0.161009] ACPI: Power Resource [C3C5] (off)
    [ 0.161845] ACPI: EC: GPE = 0x16, I/O: command/status = 0x66, data = 0x62
    [ 0.162025] ACPI: No dock devices found.
    [ 0.162033] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.165252] ACPI: PCI Root Bridge [C003] (domain 0000 [bus 00-ff])
    [ 0.165256] ACPI: PCI Interrupt Routing Table [\_SB_.C003._PRT]
    [ 0.165488] pci_root PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 0.165491] pci_root PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 0.171851] pci_root PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
    [ 0.171895] PCI host bridge to bus 0000:00
    [ 0.171899] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.171902] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.171905] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.171907] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.171910] pci_bus 0000:00: root bus resource [mem 0x3f800000-0xfedfffff]
    [ 0.171913] pci_bus 0000:00: root bus resource [mem 0xfee01000-0xffffffff]
    [ 0.171915] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000dffff]
    [ 0.171928] pci 0000:00:00.0: [8086:2a10] type 00 class 0x060000
    [ 0.171982] pci 0000:00:02.0: [8086:2a12] type 00 class 0x030000
    [ 0.171998] pci 0000:00:02.0: reg 10: [mem 0xe8400000-0xe84fffff 64bit]
    [ 0.172008] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.172015] pci 0000:00:02.0: reg 20: [io 0x6000-0x6007]
    [ 0.172059] pci 0000:00:02.1: [8086:2a13] type 00 class 0x038000
    [ 0.172072] pci 0000:00:02.1: reg 10: [mem 0xe8500000-0xe85fffff 64bit]
    [ 0.172169] pci 0000:00:1a.0: [8086:2834] type 00 class 0x0c0300
    [ 0.172229] pci 0000:00:1a.0: reg 20: [io 0x6020-0x603f]
    [ 0.172293] pci 0000:00:1a.7: [8086:283a] type 00 class 0x0c0320
    [ 0.172319] pci 0000:00:1a.7: reg 10: [mem 0xe8600000-0xe86003ff]
    [ 0.172433] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 0.172470] pci 0000:00:1b.0: [8086:284b] type 00 class 0x040300
    [ 0.172495] pci 0000:00:1b.0: reg 10: [mem 0xe8604000-0xe8607fff 64bit]
    [ 0.172607] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.172642] pci 0000:00:1c.0: [8086:283f] type 01 class 0x060400
    [ 0.172760] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.172798] pci 0000:00:1c.1: [8086:2841] type 01 class 0x060400
    [ 0.172915] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.172956] pci 0000:00:1c.4: [8086:2847] type 01 class 0x060400
    [ 0.173074] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.173111] pci 0000:00:1c.5: [8086:2849] type 01 class 0x060400
    [ 0.173229] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    [ 0.173264] pci 0000:00:1d.0: [8086:2830] type 00 class 0x0c0300
    [ 0.173324] pci 0000:00:1d.0: reg 20: [io 0x6040-0x605f]
    [ 0.173376] pci 0000:00:1d.1: [8086:2831] type 00 class 0x0c0300
    [ 0.173436] pci 0000:00:1d.1: reg 20: [io 0x6060-0x607f]
    [ 0.173482] pci 0000:00:1d.2: [8086:2832] type 00 class 0x0c0300
    [ 0.173543] pci 0000:00:1d.2: reg 20: [io 0x6080-0x609f]
    [ 0.173605] pci 0000:00:1d.7: [8086:2836] type 00 class 0x0c0320
    [ 0.173630] pci 0000:00:1d.7: reg 10: [mem 0xe8608000-0xe86083ff]
    [ 0.173744] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.173773] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 0.173877] pci 0000:00:1f.0: [8086:2815] type 00 class 0x060100
    [ 0.173997] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH6 ACPI/GPIO/TCO
    [ 0.174004] pci 0000:00:1f.0: quirk: [io 0x1100-0x113f] claimed by ICH6 GPIO
    [ 0.174009] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0500 (mask 007f)
    [ 0.174017] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 4 PIO at 02e8 (mask 0007)
    [ 0.174077] pci 0000:00:1f.1: [8086:2850] type 00 class 0x01018a
    [ 0.174096] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007]
    [ 0.174109] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003]
    [ 0.174122] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007]
    [ 0.174135] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003]
    [ 0.174148] pci 0000:00:1f.1: reg 20: [io 0x60a0-0x60af]
    [ 0.174206] pci 0000:00:1f.2: [8086:2829] type 00 class 0x010601
    [ 0.174235] pci 0000:00:1f.2: reg 10: [io 0x13f0-0x13f7]
    [ 0.174249] pci 0000:00:1f.2: reg 14: [io 0x15f4-0x15f7]
    [ 0.174262] pci 0000:00:1f.2: reg 18: [io 0x1370-0x1377]
    [ 0.174275] pci 0000:00:1f.2: reg 1c: [io 0x1574-0x1577]
    [ 0.174288] pci 0000:00:1f.2: reg 20: [io 0x60e0-0x60ff]
    [ 0.174301] pci 0000:00:1f.2: reg 24: [mem 0xe8609000-0xe86097ff]
    [ 0.174372] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.174462] pci 0000:00:1c.0: PCI bridge to [bus 08]
    [ 0.174643] pci 0000:10:00.0: [14e4:4315] type 00 class 0x028000
    [ 0.174715] pci 0000:10:00.0: reg 10: [mem 0xe8000000-0xe8003fff 64bit]
    [ 0.175106] pci 0000:10:00.0: supports D1 D2
    [ 0.175282] pci 0000:00:1c.1: PCI bridge to [bus 10]
    [ 0.175291] pci 0000:00:1c.1: bridge window [mem 0xe8000000-0xe80fffff]
    [ 0.175362] pci 0000:00:1c.4: PCI bridge to [bus 28]
    [ 0.175368] pci 0000:00:1c.4: bridge window [io 0x4000-0x5fff]
    [ 0.175374] pci 0000:00:1c.4: bridge window [mem 0xe4000000-0xe7ffffff]
    [ 0.175475] pci 0000:30:00.0: [11ab:4357] type 00 class 0x020000
    [ 0.175512] pci 0000:30:00.0: reg 10: [mem 0xe0000000-0xe0003fff 64bit]
    [ 0.175531] pci 0000:30:00.0: reg 18: [io 0x2000-0x20ff]
    [ 0.175690] pci 0000:30:00.0: supports D1 D2
    [ 0.175692] pci 0000:30:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.180023] pci 0000:00:1c.5: PCI bridge to [bus 30]
    [ 0.180029] pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff]
    [ 0.180035] pci 0000:00:1c.5: bridge window [mem 0xe0000000-0xe00fffff]
    [ 0.180143] pci 0000:00:1e.0: PCI bridge to [bus 02] (subtractive decode)
    [ 0.180157] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.180160] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.180163] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.180166] pci 0000:00:1e.0: bridge window [mem 0x3f800000-0xfedfffff] (subtractive decode)
    [ 0.180169] pci 0000:00:1e.0: bridge window [mem 0xfee01000-0xffffffff] (subtractive decode)
    [ 0.180171] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000dffff] (subtractive decode)
    [ 0.180207] pci_bus 0000:00: on NUMA node 0
    [ 0.180222] ACPI: PCI Interrupt Routing Table [\_SB_.C003.C0B6._PRT]
    [ 0.180309] ACPI: PCI Interrupt Routing Table [\_SB_.C003.C125._PRT]
    [ 0.180364] ACPI: PCI Interrupt Routing Table [\_SB_.C003.C139._PRT]
    [ 0.180423] ACPI: PCI Interrupt Routing Table [\_SB_.C003.C13C._PRT]
    [ 0.180512] ACPI: PCI Interrupt Routing Table [\_SB_.C003.C13D._PRT]
    [ 0.180573] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.181965] ACPI: PCI Interrupt Link [C135] (IRQs *10 11)
    [ 0.182059] ACPI: PCI Interrupt Link [C136] (IRQs *10 11)
    [ 0.182150] ACPI: PCI Interrupt Link [C137] (IRQs 10 *11)
    [ 0.182233] ACPI: PCI Interrupt Link [C138] (IRQs 10 11) *0, disabled.
    [ 0.182323] ACPI: PCI Interrupt Link [C148] (IRQs *10 11)
    [ 0.182412] ACPI: PCI Interrupt Link [C149] (IRQs *10 11)
    [ 0.182496] ACPI: PCI Interrupt Link [C14A] (IRQs 10 11) *0, disabled.
    [ 0.182536] ACPI Exception: AE_NOT_FOUND, Evaluating _PRS (20121018/pci_link-184)
    [ 0.182612] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.182612] vgaarb: loaded
    [ 0.182612] vgaarb: bridge control possible 0000:00:02.0
    [ 0.182612] PCI: Using ACPI for IRQ routing
    [ 0.184638] PCI: pci_cache_line_size set to 64 bytes
    [ 0.184796] Expanded resource reserved due to conflict with PCI Bus 0000:00
    [ 0.184799] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    [ 0.184802] e820: reserve RAM buffer [mem 0x3f7b0000-0x3fffffff]
    [ 0.184920] NetLabel: Initializing
    [ 0.184923] NetLabel: domain hash size = 128
    [ 0.184924] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.184940] NetLabel: unlabeled traffic allowed by default
    [ 0.184979] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    [ 0.184986] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.184991] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    [ 0.193343] Switching to clocksource hpet
    [ 0.200077] pnp: PnP ACPI init
    [ 0.200102] ACPI: bus type pnp registered
    [ 0.200287] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.200292] system 00:00: [mem 0x000e0000-0x000fffff] could not be reserved
    [ 0.200295] system 00:00: [mem 0x00100000-0x3f7fffff] could not be reserved
    [ 0.200301] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.200538] pnp 00:01: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.200553] pnp 00:02: [dma 4]
    [ 0.200582] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.200617] pnp 00:03: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.200661] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.200757] pnp 00:05: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.200799] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.200845] pnp 00:07: Plug and Play ACPI device, IDs SYN0159 SYN0100 SYN0002 PNP0f13 (active)
    [ 0.200982] system 00:08: [io 0x0500-0x057f] has been reserved
    [ 0.200986] system 00:08: [io 0x0800-0x080f] has been reserved
    [ 0.200990] system 00:08: [mem 0xffb00000-0xffbfffff] has been reserved
    [ 0.200993] system 00:08: [mem 0xfff00000-0xffffffff] has been reserved
    [ 0.200997] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.201713] system 00:09: [io 0x04d0-0x04d1] has been reserved
    [ 0.201717] system 00:09: [io 0x1000-0x107f] has been reserved
    [ 0.201720] system 00:09: [io 0x1100-0x113f] has been reserved
    [ 0.201723] system 00:09: [io 0x1200-0x121f] has been reserved
    [ 0.201727] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.201730] system 00:09: [mem 0xfec00000-0xfec000ff] could not be reserved
    [ 0.201734] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.201737] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.201740] system 00:09: [mem 0xfed90000-0xfed99fff] has been reserved
    [ 0.201745] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.202730] system 00:0a: [mem 0x000cec00-0x000cffff] has been reserved
    [ 0.202734] system 00:0a: [mem 0x000d1000-0x000d3fff] has been reserved
    [ 0.202738] system 00:0a: [mem 0xfeda0000-0xfedbffff] has been reserved
    [ 0.202741] system 00:0a: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.202746] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.202762] pnp: PnP ACPI: found 11 devices
    [ 0.202764] ACPI: ACPI bus type pnp unregistered
    [ 0.240177] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 08] add_size 1000
    [ 0.240183] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 08] add_size 200000
    [ 0.240187] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 08] add_size 200000
    [ 0.240200] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 10] add_size 1000
    [ 0.240204] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 10] add_size 200000
    [ 0.240217] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 28] add_size 200000
    [ 0.240230] pci 0000:00:1c.5: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 30] add_size 200000
    [ 0.240247] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.240250] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.240254] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.240257] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.240260] pci 0000:00:1c.5: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.240263] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.240266] pci 0000:00:1c.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.240272] pci 0000:00:1c.0: BAR 14: assigned [mem 0x40000000-0x401fffff]
    [ 0.240276] pci 0000:00:1c.0: BAR 15: assigned [mem 0x40200000-0x403fffff 64bit pref]
    [ 0.240279] pci 0000:00:1c.1: BAR 15: assigned [mem 0x40400000-0x405fffff 64bit pref]
    [ 0.240283] pci 0000:00:1c.4: BAR 15: assigned [mem 0x40600000-0x407fffff 64bit pref]
    [ 0.240286] pci 0000:00:1c.5: BAR 15: assigned [mem 0x40800000-0x409fffff 64bit pref]
    [ 0.240290] pci 0000:00:1c.0: BAR 13: assigned [io 0x3000-0x3fff]
    [ 0.240294] pci 0000:00:1c.1: BAR 13: assigned [io 0x7000-0x7fff]
    [ 0.240298] pci 0000:00:1c.0: PCI bridge to [bus 08]
    [ 0.240303] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    [ 0.240310] pci 0000:00:1c.0: bridge window [mem 0x40000000-0x401fffff]
    [ 0.240316] pci 0000:00:1c.0: bridge window [mem 0x40200000-0x403fffff 64bit pref]
    [ 0.240324] pci 0000:00:1c.1: PCI bridge to [bus 10]
    [ 0.240328] pci 0000:00:1c.1: bridge window [io 0x7000-0x7fff]
    [ 0.240336] pci 0000:00:1c.1: bridge window [mem 0xe8000000-0xe80fffff]
    [ 0.240341] pci 0000:00:1c.1: bridge window [mem 0x40400000-0x405fffff 64bit pref]
    [ 0.240350] pci 0000:00:1c.4: PCI bridge to [bus 28]
    [ 0.240354] pci 0000:00:1c.4: bridge window [io 0x4000-0x5fff]
    [ 0.240361] pci 0000:00:1c.4: bridge window [mem 0xe4000000-0xe7ffffff]
    [ 0.240366] pci 0000:00:1c.4: bridge window [mem 0x40600000-0x407fffff 64bit pref]
    [ 0.240375] pci 0000:00:1c.5: PCI bridge to [bus 30]
    [ 0.240379] pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff]
    [ 0.240386] pci 0000:00:1c.5: bridge window [mem 0xe0000000-0xe00fffff]
    [ 0.240392] pci 0000:00:1c.5: bridge window [mem 0x40800000-0x409fffff 64bit pref]
    [ 0.240400] pci 0000:00:1e.0: PCI bridge to [bus 02]
    [ 0.240458] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.240463] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.240466] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.240469] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.240472] pci_bus 0000:00: resource 7 [mem 0x3f800000-0xfedfffff]
    [ 0.240474] pci_bus 0000:00: resource 8 [mem 0xfee01000-0xffffffff]
    [ 0.240477] pci_bus 0000:00: resource 9 [mem 0x000d4000-0x000dffff]
    [ 0.240480] pci_bus 0000:08: resource 0 [io 0x3000-0x3fff]
    [ 0.240482] pci_bus 0000:08: resource 1 [mem 0x40000000-0x401fffff]
    [ 0.240485] pci_bus 0000:08: resource 2 [mem 0x40200000-0x403fffff 64bit pref]
    [ 0.240488] pci_bus 0000:10: resource 0 [io 0x7000-0x7fff]
    [ 0.240490] pci_bus 0000:10: resource 1 [mem 0xe8000000-0xe80fffff]
    [ 0.240493] pci_bus 0000:10: resource 2 [mem 0x40400000-0x405fffff 64bit pref]
    [ 0.240496] pci_bus 0000:28: resource 0 [io 0x4000-0x5fff]
    [ 0.240499] pci_bus 0000:28: resource 1 [mem 0xe4000000-0xe7ffffff]
    [ 0.240501] pci_bus 0000:28: resource 2 [mem 0x40600000-0x407fffff 64bit pref]
    [ 0.240504] pci_bus 0000:30: resource 0 [io 0x2000-0x2fff]
    [ 0.240507] pci_bus 0000:30: resource 1 [mem 0xe0000000-0xe00fffff]
    [ 0.240510] pci_bus 0000:30: resource 2 [mem 0x40800000-0x409fffff 64bit pref]
    [ 0.240513] pci_bus 0000:02: resource 4 [io 0x0000-0x0cf7]
    [ 0.240515] pci_bus 0000:02: resource 5 [io 0x0d00-0xffff]
    [ 0.240518] pci_bus 0000:02: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.240520] pci_bus 0000:02: resource 7 [mem 0x3f800000-0xfedfffff]
    [ 0.240523] pci_bus 0000:02: resource 8 [mem 0xfee01000-0xffffffff]
    [ 0.240525] pci_bus 0000:02: resource 9 [mem 0x000d4000-0x000dffff]
    [ 0.240571] NET: Registered protocol family 2
    [ 0.240755] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.240797] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.240838] TCP: Hash tables configured (established 8192 bind 8192)
    [ 0.240883] TCP: reno registered
    [ 0.240886] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.240898] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.240959] NET: Registered protocol family 1
    [ 0.240973] pci 0000:00:02.0: Boot video device
    [ 0.241213] PCI: CLS 64 bytes, default 64
    [ 0.241257] Unpacking initramfs...
    [ 0.315982] Freeing initrd memory: 2932k freed
    [ 0.317982] apm: BIOS not found.
    [ 0.318309] audit: initializing netlink socket (disabled)
    [ 0.318336] type=2000 audit(1365960311.316:1): initialized
    [ 0.330595] bounce pool size: 64 pages
    [ 0.330608] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 0.332558] VFS: Disk quotas dquot_6.5.2
    [ 0.332622] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 0.332855] msgmni has been set to 1739
    [ 0.333128] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.333159] io scheduler noop registered
    [ 0.333162] io scheduler deadline registered
    [ 0.333170] io scheduler cfq registered (default)
    [ 0.333331] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    [ 0.333503] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    [ 0.333644] pcieport 0000:00:1c.4: irq 42 for MSI/MSI-X
    [ 0.333787] pcieport 0000:00:1c.5: irq 43 for MSI/MSI-X
    [ 0.333960] vesafb: mode is 1024x768x32, linelength=4096, pages=0
    [ 0.333961] vesafb: scrolling: redraw
    [ 0.333964] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.334134] vesafb: framebuffer at 0xd0000000, mapped to 0xf8080000, using 3072k, total 3072k
    [ 0.358190] Console: switching to colour frame buffer device 128x48
    [ 0.382119] fb0: VESA VGA frame buffer device
    [ 0.382150] intel_idle: does not run on family 6 model 15
    [ 0.382186] GHES: HEST is not enabled!
    [ 0.382203] isapnp: Scanning for PnP cards...
    [ 0.695554] isapnp: No Plug & Play device found
    [ 0.695613] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.696373] i8042: PNP: PS/2 Controller [PNP0303:C2A2,PNP0f13:C2A3] at 0x60,0x64 irq 1,12
    [ 0.698008] i8042: Detected active multiplexing controller, rev 1.1
    [ 0.698778] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.698816] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    [ 0.698844] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    [ 0.698875] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    [ 0.698903] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    [ 0.699019] mousedev: PS/2 mouse device common for all mice
    [ 0.699102] rtc_cmos 00:04: RTC can wake from S4
    [ 0.699270] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 0.699304] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 0.699332] cpuidle: using governor ladder
    [ 0.699334] cpuidle: using governor menu
    [ 0.699336] EFI Variables Facility v0.08 2004-May-17
    [ 0.699364] drop_monitor: Initializing network drop monitor service
    [ 0.699462] TCP: cubic registered
    [ 0.699595] NET: Registered protocol family 10
    [ 0.699813] NET: Registered protocol family 17
    [ 0.699824] Key type dns_resolver registered
    [ 0.699983] Using IPI No-Shortcut mode
    [ 0.700118] PM: Checking hibernation image partition /dev/sda2
    [ 0.720765] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.732802] PM: Hibernation image not present or could not be loaded.
    [ 0.732814] registered taskstats version 1
    [ 0.733400] Magic number: 9:217:441
    [ 0.733488] rtc_cmos 00:04: setting system clock to 2013-04-14 17:25:12 UTC (1365960312)
    [ 0.733734] Freeing unused kernel memory: 556k freed
    [ 0.733954] Write protecting the kernel text: 4120k
    [ 0.733982] Write protecting the kernel read-only data: 1280k
    [ 0.741543] systemd-udevd[45]: starting version 201
    [ 0.743316] Linux agpgart interface v0.103
    [ 0.745096] [drm] Initialized drm 1.1.0 20060810
    [ 0.746117] agpgart-intel 0000:00:00.0: Intel 965GME/GLE Chipset
    [ 0.746174] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable
    [ 0.746731] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
    [ 0.747068] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    [ 0.747585] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
    [ 0.747592] ACPI: Sleep Button [C2BE]
    [ 0.747654] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
    [ 0.747709] ACPI: Lid Switch [C15B]
    [ 0.747774] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 0.747778] ACPI: Power Button [PWRF]
    [ 0.752747] checking generic (d0000000 300000) vs hw (d0000000 10000000)
    [ 0.752752] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 0.752775] Console: switching to colour dummy device 80x25
    [ 0.753012] i915 0000:00:02.0: setting latency timer to 64
    [ 0.753276] i915 0000:00:02.0: irq 44 for MSI/MSI-X
    [ 0.753291] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 0.753292] [drm] Driver supports precise vblank timestamp query.
    [ 0.753355] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 0.881041] [drm] initialized overlay support
    [ 1.048674] fbcon: inteldrmfb (fb0) is primary device
    [ 1.320023] tsc: Refined TSC clocksource calibration: 1994.999 MHz
    [ 1.320027] Switching to clocksource tsc
    [ 1.740025] Console: switching to colour frame buffer device 170x48
    [ 1.745248] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 1.745251] i915 0000:00:02.0: registered panic notifier
    [ 1.746676] ACPI Exception: AE_AML_PACKAGE_LIMIT, Index (0x0000000000000004) is beyond end of object (20121018/exoparg2-418)
    [ 1.746691] ACPI Error: Method parse/execution failed [\_SB_.C003.C09E._DOD] (Node f642d6d8), AE_AML_PACKAGE_LIMIT (20121018/psparse-537)
    [ 1.746700] ACPI Exception: AE_AML_PACKAGE_LIMIT, Evaluating _DOD (20121018/video-1163)
    [ 1.750049] acpi device:00: registered as cooling_device0
    [ 1.750335] ACPI: Video Device [C09E] (multi-head: yes rom: no post: no)
    [ 1.750395] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input4
    [ 1.750448] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 1.790556] ACPI: bus type usb registered
    [ 1.791412] usbcore: registered new interface driver usbfs
    [ 1.791430] usbcore: registered new interface driver hub
    [ 1.791721] usbcore: registered new device driver usb
    [ 1.792299] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.792666] uhci_hcd: USB Universal Host Controller Interface driver
    [ 1.792725] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 1.792730] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 1.792738] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 1.792794] uhci_hcd 0000:00:1a.0: irq 16, io base 0x00006020
    [ 1.793124] hub 1-0:1.0: USB hub found
    [ 1.793130] hub 1-0:1.0: 2 ports detected
    [ 1.793310] ehci-pci: EHCI PCI platform driver
    [ 1.793385] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 1.793390] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 1.793397] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 1.793442] uhci_hcd 0000:00:1d.0: irq 20, io base 0x00006040
    [ 1.794088] hub 2-0:1.0: USB hub found
    [ 1.794094] hub 2-0:1.0: 2 ports detected
    [ 1.794241] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 1.794246] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 1.794253] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
    [ 1.794297] uhci_hcd 0000:00:1d.1: irq 21, io base 0x00006060
    [ 1.795763] SCSI subsystem initialized
    [ 1.795952] hub 3-0:1.0: USB hub found
    [ 1.795958] hub 3-0:1.0: 2 ports detected
    [ 1.796119] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 1.796124] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 1.796132] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
    [ 1.796174] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00006080
    [ 1.796348] hub 4-0:1.0: USB hub found
    [ 1.796353] hub 4-0:1.0: 2 ports detected
    [ 1.796513] ehci-pci 0000:00:1a.7: setting latency timer to 64
    [ 1.796517] ehci-pci 0000:00:1a.7: EHCI Host Controller
    [ 1.796524] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 5
    [ 1.796540] ehci-pci 0000:00:1a.7: debug port 1
    [ 1.797842] ACPI: bus type scsi registered
    [ 1.800116] libata version 3.00 loaded.
    [ 1.800447] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
    [ 1.800459] ehci-pci 0000:00:1a.7: irq 18, io mem 0xe8600000
    [ 1.810053] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 1.810391] hub 5-0:1.0: USB hub found
    [ 1.810397] hub 5-0:1.0: 4 ports detected
    [ 1.810890] ahci 0000:00:1f.2: version 3.0
    [ 1.810969] ahci 0000:00:1f.2: irq 45 for MSI/MSI-X
    [ 1.811016] ahci: SSS flag set, parallel bus scan disabled
    [ 1.811050] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 3 Gbps 0x7 impl SATA mode
    [ 1.811054] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ccc
    [ 1.811061] ahci 0000:00:1f.2: setting latency timer to 64
    [ 1.812147] scsi0 : ahci
    [ 1.812347] scsi1 : ahci
    [ 1.813441] scsi2 : ahci
    [ 1.813516] ata1: SATA max UDMA/133 abar m2048@0xe8609000 port 0xe8609100 irq 45
    [ 1.813521] ata2: SATA max UDMA/133 abar m2048@0xe8609000 port 0xe8609180 irq 45
    [ 1.813524] ata3: SATA max UDMA/133 abar m2048@0xe8609000 port 0xe8609200 irq 45
    [ 1.813579] ata_piix 0000:00:1f.1: version 2.13
    [ 1.813637] ata_piix 0000:00:1f.1: setting latency timer to 64
    [ 1.814023] scsi3 : ata_piix
    [ 1.814701] scsi4 : ata_piix
    [ 1.814769] ata4: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x60a0 irq 14
    [ 1.814772] ata5: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x60a8 irq 15
    [ 1.814817] ehci-pci 0000:00:1d.7: setting latency timer to 64
    [ 1.814823] ehci-pci 0000:00:1d.7: EHCI Host Controller
    [ 1.814832] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 6
    [ 1.814850] ehci-pci 0000:00:1d.7: debug port 1
    [ 1.816913] ata5: port disabled--ignoring
    [ 1.818755] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
    [ 1.818763] ehci-pci 0000:00:1d.7: irq 20, io mem 0xe8608000
    [ 1.826689] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 1.826868] hub 6-0:1.0: USB hub found
    [ 1.826874] hub 6-0:1.0: 6 ports detected
    [ 2.133364] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.136122] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 2.136127] ata1.00: ACPI cmd b1/c1:00:00:00:00:a0 (DEVICE CONFIGURATION OVERLAY) filtered out
    [ 2.136187] ata1.00: ACPI cmd c6/00:10:00:00:00:a0 (SET MULTIPLE MODE) succeeded
    [ 2.136192] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 2.137657] ata1.00: ATA-8: WDC WD2500BEKT-60V5T1, 12.01A12, max UDMA/100
    [ 2.137660] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 2.140533] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 2.140537] ata1.00: ACPI cmd b1/c1:00:00:00:00:a0 (DEVICE CONFIGURATION OVERLAY) filtered out
    [ 2.140594] ata1.00: ACPI cmd c6/00:10:00:00:00:a0 (SET MULTIPLE MODE) succeeded
    [ 2.140598] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 2.142075] ata1.00: configured for UDMA/100
    [ 2.142209] scsi 0:0:0:0: Direct-Access ATA WDC WD2500BEKT-6 12.0 PQ: 0 ANSI: 5
    [ 2.186681] usb 6-5: new high-speed USB device number 3 using ehci-pci
    [ 2.460022] ata2: SATA link down (SStatus 0 SControl 300)
    [ 2.576678] usb 2-2: new low-speed USB device number 2 using uhci_hcd
    [ 2.780023] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.799106] ata3.00: ATAPI: hp CDDVDW TS-L633N, 0300, max UDMA/100
    [ 2.817428] ata3.00: configured for UDMA/100
    [ 2.819792] scsi 2:0:0:0: CD-ROM hp CDDVDW TS-L633N 0300 PQ: 0 ANSI: 5
    [ 2.823673] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    [ 2.823725] sd 0:0:0:0: [sda] Write Protect is off
    [ 2.823729] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.823751] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.829602] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 2.829606] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.829816] sr 2:0:0:0: Attached scsi CD-ROM sr0
    [ 2.892260] sda: sda1 sda2 sda3 sda4
    [ 2.892707] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 3.187140] PM: Starting manual resume from disk
    [ 3.187147] PM: Hibernation image partition 8:2 present
    [ 3.187149] PM: Looking for hibernation image.
    [ 3.190166] PM: Image not found (code -22)
    [ 3.190169] PM: Hibernation image not present or could not be loaded.
    [ 3.252550] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.836256] systemd[1]: systemd 201 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 3.849582] systemd[1]: Set hostname to <arch>.
    [ 4.191136] systemd[1]: Cannot add dependency job for unit cpupower.service, ignoring: Unit cpupower.service failed to load: No such file or directory. See system logs and 'systemctl status cpupower.service' for details.
    [ 4.191414] systemd[1]: Starting Login Prompts.
    [ 4.191433] systemd[1]: Reached target Login Prompts.
    [ 4.191449] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 4.191527] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 4.191541] systemd[1]: Starting Delayed Shutdown Socket.
    [ 4.191578] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 4.191590] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 4.191625] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 4.191637] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 4.191661] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 4.191673] systemd[1]: Starting Encrypted Volumes.
    [ 4.191686] systemd[1]: Reached target Encrypted Volumes.
    [ 4.191702] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 4.191749] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 4.191760] systemd[1]: Starting Paths.
    [ 4.191774] systemd[1]: Reached target Paths.
    [ 4.191807] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 4.191930] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 4.192007] systemd[1]: Starting udev Kernel Socket.
    [ 4.192035] systemd[1]: Listening on udev Kernel Socket.
    [ 4.192097] systemd[1]: Starting udev Control Socket.
    [ 4.192128] systemd[1]: Listening on udev Control Socket.
    [ 4.192143] systemd[1]: Starting Journal Socket.
    [ 4.192199] systemd[1]: Listening on Journal Socket.
    [ 4.199876] systemd[1]: Starting Set Up Additional Binary Formats...
    [ 4.203660] systemd[1]: Starting udev Coldplug all Devices...
    [ 4.257542] systemd[1]: Started Load Kernel Modules.
    [ 4.257608] systemd[1]: Starting udev Kernel Device Manager...
    [ 4.263615] systemd[1]: Mounting Configuration File System...
    [ 4.270954] systemd[1]: Mounting Huge Pages File System...
    [ 4.279309] systemd[1]: Starting Setup Virtual Console...
    [ 4.289528] systemd[1]: Starting Apply Kernel Variables...
    [ 4.293593] systemd[1]: Mounting Debug File System...
    [ 4.300920] systemd[1]: Mounting POSIX Message Queue File System...
    [ 4.310244] systemd[1]: Starting Journal Service...
    [ 4.318738] systemd[1]: Started Journal Service.
    [ 4.318802] systemd[1]: Mounted FUSE Control File System.
    [ 4.318827] systemd[1]: Expecting device dev-sda2.device...
    [ 4.318857] systemd[1]: Starting File System Check on Root Device...
    [ 4.344444] systemd[1]: Expecting device dev-sda4.device...
    [ 4.711991] systemd-udevd[101]: starting version 201
    [ 5.286858] EXT4-fs (sda3): re-mounted. Opts: (null)
    [ 5.571573] ACPI: Requesting acpi_cpufreq
    [ 5.605351] ACPI: Fan [C3C6] (off)
    [ 5.605428] ACPI: Fan [C3C7] (off)
    [ 5.605498] ACPI: Fan [C3C8] (off)
    [ 5.605569] ACPI: Fan [C3C9] (off)
    [ 5.605638] ACPI: Fan [C3CA] (off)
    [ 5.614901] ACPI: AC Adapter [C244] (on-line)
    [ 5.636608] thermal LNXTHERM:00: registered as thermal_zone0
    [ 5.636612] ACPI: Thermal Zone [TZ3] (41 C)
    [ 5.664141] ACPI: Battery Slot [C245] (battery present)
    [ 5.673128] thermal LNXTHERM:01: registered as thermal_zone1
    [ 5.673132] ACPI: Thermal Zone [TZ4] (27 C)
    [ 5.678874] thermal LNXTHERM:02: registered as thermal_zone2
    [ 5.678878] ACPI: Thermal Zone [TZ5] (20 C)
    [ 5.679888] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 5.692884] thermal LNXTHERM:03: registered as thermal_zone3
    [ 5.692888] ACPI: Thermal Zone [TZ0] (48 C)
    [ 5.697365] thermal LNXTHERM:04: registered as thermal_zone4
    [ 5.697369] ACPI: Thermal Zone [TZ1] (45 C)
    [ 5.702641] wmi: Mapper loaded
    [ 5.765684] sky2: driver version 1.30
    [ 5.765753] sky2 0000:30:00.0: Yukon-2 FE+ chip revision 0
    [ 5.765870] sky2 0000:30:00.0: irq 47 for MSI/MSI-X
    [ 5.766172] sky2 0000:30:00.0 eth0: addr d8:d3:85:02:ae:8a
    [ 5.823030] cfg80211: Calling CRDA to update world regulatory domain
    [ 5.842289] Monitor-Mwait will be used to enter C-1 state
    [ 5.842342] Monitor-Mwait will be used to enter C-2 state
    [ 5.842349] Monitor-Mwait will be used to enter C-3 state
    [ 5.842354] tsc: Marking TSC unstable due to TSC halts in idle
    [ 5.842373] ACPI: acpi_idle registered with cpuidle
    [ 5.842387] Switching to clocksource hpet
    [ 5.856977] lib80211: common routines for IEEE802.11 drivers
    [ 5.856981] lib80211_crypt: registered algorithm 'NULL'
    [ 6.090739] microcode: CPU0 sig=0x6fd, pf=0x80, revision=0xa3
    [ 6.105525] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input5
    [ 6.133580] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
    [ 6.133684] input: HDA Intel Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
    [ 6.135374] ACPI Warning: 0x00001028-0x0000102f SystemIO conflicts with Region \_SB_.C003.C004.C0D8 1 (20121018/utaddress-251)
    [ 6.135383] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.135388] ACPI Warning: 0x00001130-0x0000113f SystemIO conflicts with Region \_SB_.C003.C004.C0EA 1 (20121018/utaddress-251)
    [ 6.135392] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.135394] ACPI Warning: 0x00001100-0x0000112f SystemIO conflicts with Region \_SB_.C003.C004.C0EA 1 (20121018/utaddress-251)
    [ 6.135399] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.135401] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 6.158779] systemd-udevd[139]: renamed network interface eth0 to lan
    [ 6.229949] iTCO_vendor_support: vendor-support=0
    [ 6.251748] input: HP WMI hotkeys as /devices/virtual/input/input8
    [ 6.267907] microcode: CPU1 sig=0x6fd, pf=0x80, revision=0xa3
    [ 6.268519] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 6.336370] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 6.336404] iTCO_wdt: Found a ICH8M TCO device (Version=2, TCOBASE=0x1060)
    [ 6.337222] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 6.355895] wl: module license 'Mixed/Proprietary' taints kernel.
    [ 6.355901] Disabling lock debugging due to kernel taint
    [ 6.371194] INFO @wl_cfg80211_attach : Registered CFG80211 phy
    [ 6.465140] usbcore: registered new interface driver usbhid
    [ 6.465144] usbhid: USB HID core driver
    [ 6.466336] lib80211_crypt: registered algorithm 'TKIP'
    [ 6.466625] eth0: Broadcom BCM4315 802.11 Hybrid Wireless Controller 5.100.82.112
    [ 6.475157] input: SIGMACHIP Usb Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/input/input9
    [ 6.476275] hid-generic 0003:1C4F:0003.0001: input,hidraw0: USB HID v1.10 Mouse [SIGMACHIP Usb Mouse] on usb-0000:00:1d.0-2/input0
    [ 6.490253] systemd-udevd[140]: renamed network interface eth0 to wlan
    [ 6.563265] media: Linux media interface: v0.10
    [ 6.571119] Linux video capture interface: v2.00
    [ 6.592516] uvcvideo: Found UVC 1.00 device CNF8243 (04f2:b159)
    [ 6.650253] input: CNF8243 as /devices/pci0000:00/0000:00:1d.7/usb6/6-5/6-5:1.0/input/input10
    [ 6.650363] usbcore: registered new interface driver uvcvideo
    [ 6.650366] USB Video Class driver (1.1.1)
    [ 6.947552] psmouse serio4: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04733/0xa40000/0xa0000, board id: 3655, fw id: 582762
    [ 6.988984] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input11
    [ 7.014010] Adding 1023996k swap on /dev/sda2. Priority:-1 extents:1 across:1023996k
    [ 7.414465] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
    [ 17.413000] EXT4-fs (sda3): re-mounted. Opts: commit=0
    [ 17.418247] EXT4-fs (sda4): re-mounted. Opts: commit=0
    [ 17.434571] EXT4-fs (sda4): re-mounted. Opts: data=ordered,commit=0
    [ 17.439164] EXT4-fs (sda4): re-mounted. Opts: data=ordered,commit=0
    [ 22.143740] fuse init (API version 7.20)
    [ 24.877691] sky2 0000:30:00.0 lan: enabling interface
    [ 24.877796] IPv6: ADDRCONF(NETDEV_UP): lan: link is not ready
    [ 148.737343] cpufreq-nforce2: No nForce2 chipset.
    [ 407.922665] cfg80211: Calling CRDA to update world regulatory domain
    [ 408.230275] sky2 0000:30:00.0 lan: disabling interface
    [ 409.060592] systemd-journald[108]: Received SIGTERM
    [ 409.073407] systemd[1]: Unmounted FUSE Control File System.
    [ 409.073755] systemd[1]: Unmounted Configuration File System.
    [ 409.074064] systemd[1]: Unmounted Huge Pages File System.
    [ 409.076866] systemd[1]: Unmounted Debug File System.
    [ 409.080249] systemd[1]: Unmounted POSIX Message Queue File System.
    [ 409.083569] systemd[1]: Unmounted /media/budiman/Images/Dropbox-Uploads.
    [ 409.083785] systemd[1]: media-budiman-Images-Dropbox\x2dImages.mount mount process exited, code=exited status=32
    [ 409.083841] systemd[1]: Failed unmounting /media/budiman/Images/Dropbox-Images.
    [ 409.084742] systemd[1]: Unmounted /home/budiman/Pictures/Dropbox-Images.
    [ 409.084967] systemd[1]: home-budiman-Pictures-Dropbox\x2dUploads.mount mount process exited, code=exited status=32
    [ 409.085027] systemd[1]: Failed unmounting /home/budiman/Pictures/Dropbox-Uploads.
    [ 409.096913] systemd[1]: Unmounted /home/budiman/Dropbox.
    [ 409.097825] systemd[1]: Unmounted /home/budiman/Videos.
    [ 409.103734] systemd[1]: Unmounted /home/budiman/Music.
    [ 409.116944] systemd[1]: Unmounted /home/budiman/Downloads.
    [ 409.120111] systemd[1]: Unmounted /home/budiman/Documents.
    [ 409.120526] systemd[1]: Unmounted /tmp.
    [ 409.120550] systemd[1]: Unmounting /home/budiman/Pictures...
    [ 409.136765] systemd[1]: Unit media-budiman-Images-Dropbox\x2dImages.mount entered failed state
    [ 409.137341] systemd[1]: Unit home-budiman-Pictures-Dropbox\x2dUploads.mount entered failed state
    [ 409.150110] systemd[1]: Unmounted /home/budiman/Pictures.
    [ 409.150136] systemd[1]: Unmounting /media/budiman...
    [ 409.241379] systemd[1]: Stopped Journal Service.
    [ 409.246738] systemd[1]: Unmounted /media/budiman.
    [ 409.246774] systemd[1]: Starting Unmount All Filesystems.
    [ 409.246796] systemd[1]: Reached target Unmount All Filesystems.
    [ 409.246812] systemd[1]: Stopping Local File Systems (Pre).
    [ 409.246828] systemd[1]: Stopped target Local File Systems (Pre).
    [ 409.246840] systemd[1]: Stopping Remount Root and Kernel File Systems...
    [ 409.246938] systemd[1]: Stopped Remount Root and Kernel File Systems.
    [ 409.246969] systemd[1]: Stopping Journal Socket.
    [ 409.247013] systemd[1]: Closed Journal Socket.
    [ 409.247029] systemd[1]: Starting Store Sound Card State...
    [ 409.250674] systemd[1]: Unmounting /...
    [ 409.276838] systemd[1]: Started Store Sound Card State.
    [ 409.276933] systemd[1]: Starting Shutdown.
    [ 409.276952] systemd[1]: Reached target Shutdown.
    [ 409.276977] systemd[1]: Starting Final Step.
    [ 409.276992] systemd[1]: Reached target Final Step.
    [ 409.277012] systemd[1]: Starting Power-Off...
    [ 409.321924] systemd[1]: Shutting down.
    [ 409.488755] EXT4-fs (sda3): re-mounted. Opts: (null)
    [ 409.517972] EXT4-fs (sda3): re-mounted. Opts: (null)
    [ 409.518032] EXT4-fs (sda3): re-mounted. Opts: (null)
    [ 409.700368] EXT4-fs (sda3): re-mounted. Opts: (null)
    The problem is the log doesn't even print the error report as you can see it. The delay is not shown in the console either, it was just like:
    [ 10.0000] Power Down....
    and my laptop was halting there for like 30-40 seconds before completely shutdown.
    Systemctl output:
    UNIT LOAD ACTIVE SUB DESCRIPTION
    proc-sys...t_misc.automount loaded active running Arbitrary Executable File Fo
    sys-devi...und-card0.device loaded active plugged 82801H (ICH8 Family) HD Audi
    sys-devi...-net-wlan.device loaded active plugged BCM4312 802.11b/g LP-PHY
    sys-devi...0-net-lan.device loaded active plugged 88E8042 PCI-E Fast Ethernet
    sys-devi...-sda-sda1.device loaded active plugged WDC_WD2500BEKT-60V5T1
    sys-devi...-sda-sda2.device loaded active plugged WDC_WD2500BEKT-60V5T1
    sys-devi...-sda-sda3.device loaded active plugged WDC_WD2500BEKT-60V5T1
    sys-devi...-sda-sda4.device loaded active plugged WDC_WD2500BEKT-60V5T1
    sys-devi...block-sda.device loaded active plugged WDC_WD2500BEKT-60V5T1
    sys-devi...block-sr0.device loaded active plugged hp_CDDVDW_TS-L633N
    sys-devi...tty-ttyS0.device loaded active plugged /sys/devices/platform/serial
    sys-devi...tty-ttyS1.device loaded active plugged /sys/devices/platform/serial
    sys-devi...tty-ttyS2.device loaded active plugged /sys/devices/platform/serial
    sys-devi...tty-ttyS3.device loaded active plugged /sys/devices/platform/serial
    sys-module-configfs.device loaded active plugged /sys/module/configfs
    sys-module-fuse.device loaded active plugged /sys/module/fuse
    sys-subs...vices-lan.device loaded active plugged 88E8042 PCI-E Fast Ethernet
    sys-subs...ices-wlan.device loaded active plugged BCM4312 802.11b/g LP-PHY
    -.mount loaded active mounted /
    dev-hugepages.mount loaded active mounted Huge Pages File System
    dev-mqueue.mount loaded active mounted POSIX Message Queue File Sys
    home-bud...-Documents.mount loaded active mounted /home/budiman/Documents
    home-bud...-Downloads.mount loaded active mounted /home/budiman/Downloads
    home-budiman-Dropbox.mount loaded active mounted /home/budiman/Dropbox
    home-budiman-Music.mount loaded active mounted /home/budiman/Music
    home-bud...\x2dImages.mount loaded active mounted /home/budiman/Pictures/Dropb
    home-bud...x2dUploads.mount loaded active mounted /home/budiman/Pictures/Dropb
    home-budiman-Pictures.mount loaded active mounted /home/budiman/Pictures
    home-budiman-Videos.mount loaded active mounted /home/budiman/Videos
    media-bu...\x2dImages.mount loaded active mounted /media/budiman/Images/Dropbo
    media-bu...x2dUploads.mount loaded active mounted /media/budiman/Images/Dropbo
    media-budiman.mount loaded active mounted /media/budiman
    proc-sys...infmt_misc.mount loaded active mounted Arbitrary Executable File Fo
    run-user-1000-gvfs.mount loaded active mounted /run/user/1000/gvfs
    sys-kernel-config.mount loaded active mounted Configuration File System
    sys-kernel-debug.mount loaded active mounted Debug File System
    tmp.mount loaded active mounted /tmp
    systemd-...ord-console.path loaded active waiting Dispatch Password Requests t
    systemd-...ssword-wall.path loaded active waiting Forward Password Requests to
    cpupower.service loaded active exited Apply cpupower configuration
    dbus.service loaded active running D-Bus System Message Bus
    display-manager.service loaded active running Light Display Manager
    NetworkManager.service loaded active running Network Manager
    polkit.service loaded active running Authorization Manager
    preload.service loaded active running Adaptive readahead daemon
    rtkit-daemon.service loaded active running RealtimeKit Scheduling Polic
    systemd-binfmt.service loaded active exited Set Up Additional Binary For
    systemd-journald.service loaded active running Journal Service
    systemd-logind.service loaded active running Login Service
    systemd-remount-fs.service loaded active exited Remount Root and Kernel File
    systemd-sysctl.service loaded active exited Apply Kernel Variables
    systemd-...es-setup.service loaded active exited Recreate Volatile Files and
    systemd-...-trigger.service loaded active exited udev Coldplug all Devices
    systemd-udevd.service loaded active running udev Kernel Device Manager
    systemd-...sessions.service loaded active exited Permit User Sessions
    systemd-...le-setup.service loaded active exited Setup Virtual Console
    udisks2.service loaded active running Disk Manager
    upower.service loaded active running Daemon for power management
    wpa_supplicant.service loaded active running WPA supplicant
    dbus.socket loaded active running D-Bus System Message Bus Soc
    dmeventd.socket loaded active listening Device-mapper event daemon F
    systemd-initctl.socket loaded active listening /dev/initctl Compatibility N
    systemd-journald.socket loaded active running Journal Socket
    systemd-shutdownd.socket loaded active listening Delayed Shutdown Socket
    systemd-...d-control.socket loaded active listening udev Control Socket
    systemd-udevd-kernel.socket loaded active running udev Kernel Socket
    dev-sda2.swap loaded active active /dev/sda2
    basic.target loaded active active Basic System
    cryptsetup.target loaded active active Encrypted Volumes
    getty.target loaded active active Login Prompts
    graphical.target loaded active active Graphical Interface
    local-fs-pre.target loaded active active Local File Systems (Pre)
    local-fs.target loaded active active Local File Systems
    multi-user.target loaded active active Multi-User System
    network.target loaded active active Network
    paths.target loaded active active Paths
    sockets.target loaded active active Sockets
    sound.target loaded active active Sound Card
    swap.target loaded active active Swap
    sysinit.target loaded active active System Initialization
    timers.target loaded active active Timers
    systemd-...iles-clean.timer loaded active waiting Daily Cleanup of Temporary D
    LOAD = Reflects whether the unit definition was properly loaded.
    ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
    SUB = The low-level unit activation state, values depend on unit type.
    82 loaded units listed. Pass --all to see loaded but inactive units, too.
    To show all installed unit files use 'systemctl list-unit-files'.
    lines 68-90/90 (END)
    dev-sda2.swap loaded active active /dev/sda2
    basic.target loaded active active Basic System
    cryptsetup.target loaded active active Encrypted Volumes
    getty.target loaded active active Login Prompts
    graphical.target loaded active active Graphical Interface
    local-fs-pre.target loaded active active Local File Systems (Pre)
    local-fs.target loaded active active Local File Systems
    multi-user.target loaded active active Multi-User System
    network.target loaded active active Network
    paths.target loaded active active Paths
    sockets.target loaded active active Sockets
    sound.target loaded active active Sound Card
    swap.target loaded active active Swap
    sysinit.target loaded active active System Initialization
    timers.target loaded active active Timers
    systemd-...iles-clean.timer loaded active waiting Daily Cleanup of Temporary Directories
    This is my lsmod output:
    Module Size Used by
    cpufreq_userspace 2792 2
    fuse 59758 2
    cpufreq_powersave 962 0
    joydev 7403 0
    hid_generic 741 0
    uvcvideo 63656 0
    videobuf2_vmalloc 2636 1 uvcvideo
    videobuf2_memops 1715 1 videobuf2_vmalloc
    videobuf2_core 23893 1 uvcvideo
    lib80211_crypt_tkip 8078 0
    videodev 81179 2 uvcvideo,videobuf2_core
    media 8545 2 uvcvideo,videodev
    usbhid 35987 0
    hid 69458 2 hid_generic,usbhid
    wl 2426627 0
    sky2 43537 0
    lib80211 3037 2 wl,lib80211_crypt_tkip
    hp_wmi 6702 0
    coretemp 4990 0
    cfg80211 368786 1 wl
    snd_hda_codec_idt 47572 1
    sparse_keymap 2582 1 hp_wmi
    iTCO_wdt 4471 0
    iTCO_vendor_support 1545 1 iTCO_wdt
    psmouse 77896 0
    serio_raw 4001 0
    microcode 10864 0
    snd_hda_intel 28850 4
    snd_hda_codec 87310 2 snd_hda_codec_idt,snd_hda_intel
    rfkill 12625 3 cfg80211,hp_wmi
    lpc_ich 10077 0
    snd_hwdep 4746 1 snd_hda_codec
    snd_pcm 62883 2 snd_hda_codec,snd_hda_intel
    snd_page_alloc 6038 2 snd_pcm,snd_hda_intel
    snd_timer 14846 1 snd_pcm
    snd 44486 14 snd_hwdep,snd_timer,snd_hda_codec_idt,snd_pcm,snd_hda_codec,snd_hda_intel
    soundcore 4386 1 snd
    thermal 7045 0
    ac 1892 0
    fan 2133 0
    acpi_cpufreq 9166 1
    mperf 991 1 acpi_cpufreq
    battery 5658 0
    container 1993 0
    wmi 7163 1 hp_wmi
    evdev 7560 9
    processor 24359 3 acpi_cpufreq
    ext4 430663 2
    crc16 1091 1 ext4
    jbd2 65750 1 ext4
    mbcache 4322 1 ext4
    sr_mod 12924 0
    sd_mod 28242 4
    cdrom 30060 1 sr_mod
    ata_generic 2434 0
    pata_acpi 2367 0
    ata_piix 20760 0
    ahci 19268 3
    libahci 17379 1 ahci
    libata 146969 5 ahci,pata_acpi,libahci,ata_generic,ata_piix
    scsi_mod 110134 3 libata,sd_mod,sr_mod
    uhci_hcd 21448 0
    ehci_pci 3404 0
    ehci_hcd 42551 1 ehci_pci
    usbcore 148267 5 uhci_hcd,uvcvideo,ehci_hcd,ehci_pci,usbhid
    usb_common 622 1 usbcore
    i915 489921 3
    video 9834 1 i915
    button 3717 1 i915
    i2c_algo_bit 4583 1 i915
    intel_agp 8720 1 i915
    intel_gtt 10212 3 i915,intel_agp
    drm_kms_helper 31122 1 i915
    drm 181032 4 i915,drm_kms_helper
    agpgart 22207 3 drm,intel_agp,intel_gtt
    i2c_core 18994 5 drm,i915,drm_kms_helper,i2c_algo_bit,videodev
    My current hypotheses is the acpi_cpufreq that make this problem happens because when I booted into the lts kernel that module is not even loaded. But I can't even blacklist it because even if I make a modprobe.conf to disable it from loading it still be loaded automatically by the kernel. Any help here will be greatly appreciated, I'm not a "just post any problem before trying myself" person. I've tried every method by reading wikis and forums without any success, this is even my first post here . But this problem has been troubling me for a very long time. So please help me guys
    Tell me what information do I miss and I'll post it immediately.

    Did a fresh install and still having the same problem. Giving up now. Mod can now close this thread

  • Firefox is Already Running But Not Responding linux

    Hi,
    I am new to Linux, so know nothing about it. I try and open firefox from the desktop and it says that it is already running and not responding.
    How do I solve this problem - as I know nothing about Linux a dummies guide would be great.

    I get the same problem on my Linux system, it says firefox is running and I can't get online although my email is working and msn, does anyone know how I can get online

  • Filename is a wrong argument if not .pdf - Linux Acroread 9.5.1

    We recently installled acroread 9.5.1 on Linux .  When we try to convert a PDF file that does not have a .pdf extension, we get the error shown below.   This does not happen if the file has a .pdf extension or and does not happen with the 8.1.4 LINUX version that we have. 
    Is there a way to get the 9.5.1 version of acroread to not care what the name or extension of the input file is?
    uname -a
    Linux dev-bnc3-ctl-app-web 2.6.18-128.1.10.el5PAE #1 SMP Wed Apr 29 14:24:53 EDT 2009 i686 i686 i386 GNU/Linux
    acroread -v
    9.5.1
    acroread -toPostScript -level3 -pairs P10500079pdfdoc0375.001 P10500079pdfdoc0375.ps
    P10500079pdfdoc0375.001 : is a wrong argument. Please refer acroread -help for the correct usage
    acroread -toPostScript -level3 -pairs P10500079pdfdoc0375.pdf P10500079pdfdoc0375.ps
    /BSG/local/Adobe/Reader8/bin/acroread -toPostScript -level3 -pairs P10500079pdfdoc0375.001 P10500079pdfdoc0375.ps
    /BSG/local/Adobe/Reader8/bin/acroread -v
    8.1.4

    selway1: Did you ever find a solution? I'm having exactly the same problem in Acroread 9.5.5
    We've been looking for a cross-platform method of signing and verifying documents. gpg is the best I've seen so far, but a couple of the Windows boys and Mac-heads are worried about needing to type at a command prompt. Unfortunately, Acroread just seems too broken to be a serious contender, especially since it seems this particular issue has existed for over two years.

  • URL.openStream() works in Windows but not in Linux

    I am having a problem with this line:
    BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
    in the code sample further below.
    A simple program using this line works when compiled in my Windows XP:
    java version "1.6.0_03"
    Java(TM) SE Runtime Environment (build 1.6.0_03-b05)
    Java HotSpot(TM) Client VM (build 1.6.0_03-b05, mixed mode, sharing)
    but not when compiled on my RedHat FC 4 server:
    java version "1.4.2"
    gij (GNU libgcj) version 4.0.2 20051125 (Red Hat 4.0.2-8)
    The program (making using of a previous froum example and pared down to minimize tangent topics):
    The code works for all 3 URLs in Windows. In Linux it only works for the 1st one (bbc.co site)
    Error is listed below the code:
    import java.net.*;
    import java.io.*;
    public class BBC {
    public static void main(String[] args) throws Exception
    //    URL url = new URL("http://news.bbc.co.uk/sport1/hi/football/eng_prem/6205747.stm");
    //    URL url = new URL("http://www.weatherunderground.com/global/stations/71265.html");
        URL url = new URL("http://www.weatherunderground.com");
        BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
        int nLineCnt = 0;
        String inputLine;
        while ((inputLine = in.readLine()) != null)
            nLineCnt++;
        System.out.println("nLineCnt=" + nLineCnt);
    //--------------------------------------------------------------------------------------------------------------------------------------------Exception in thread "main" java.lang.StringIndexOutOfBoundsException
    at java.lang.String.substring(int, int) (/usr/lib/libgcj.so.6.0.0)
    at gnu.java.net.protocol.http.Request.readResponse(gnu.java.net.LineInputStream) (/usr/lib/libgcj.so.6.0.0)
    at gnu.java.net.protocol.http.Request.dispatch() (/usr/lib/libgcj.so.6.0.0)
    at gnu.java.net.protocol.http.HTTPURLConnection.connect() (/usr/lib/libgcj.so.6.0.0)
    at gnu.java.net.protocol.http.HTTPURLConnection.getInputStream() (/usr/lib/libgcj.so.6.0.0)
    at java.net.URL.openStream() (/usr/lib/libgcj.so.6.0.0)
    at BBC.main(java.lang.String[]) (Unknown Source)
    at gnu.java.lang.MainThread.call_main() (/usr/lib/libgcj.so.6.0.0)
    at gnu.java.lang.MainThread.run() (/usr/lib/libgcj.so.6.0.0)
    Can anyone please suggest what I can do to be able to process the weatherunderground URL?
    Claude

    To me it would suggest a bug in the VM that you are using.
    Solutions
    1. Use a different VM
    2. Write your own code to process the http code. Depending on licensing for the VM in use and the VM itself. you might be
    able to find the bug in that code, fix it yourself, and then use your fix (start up command line options for VM.) Otherwise
    you have to duplicate the functionality. You might look to jakarta commons, there might be code there that does that.

  • A exception is generated in Windows but not in Linux

    FULL PRODUCT VERSION :
    junmin@Linux:~/Workspace/JMessenger/build/classes$ java -version
    java version "1.6.0"
    Java(TM) SE Runtime Environment (build 1.6.0-b105)
    Java HotSpot(TM) Client VM (build 1.6.0-b105, mixed mode, sharing)
    E:\JMessenger\build\classes>java -version
    java version "1.6.0_01"
    Java(TM) SE Runtime Environment (build 1.6.0_01-b06)
    Java HotSpot(TM) Client VM (build 1.6.0_01-b06, mixed mode, sharing)
    ADDITIONAL OS VERSION INFORMATION :
    junmin@Linux:~/Workspace/JMessenger/build/classes$ uname -a
    Linux Linux 2.6.20-15-generic #2 SMP Sun Apr 15 07:36:31 UTC 2007 i686 GNU/Linux
    ubuntu feisty, installed sun-java-jre and jdk from the repository of ubuntu
    and
    Windows XP professional sp2
    java6 installed
    A DESCRIPTION OF THE PROBLEM :
    reader = new BufferedReader(new InputStreamReader(client.getInputStream())); // client is the socket in the server side
                 try{
                     while((incomingMessage = reader.readLine()) != null){
                 catch(Exception e){
                         System.out.println(e);
                 }       //serverthis is a client-server program, why in Windows it(server) throw the Exception when the client closes the program o the socket? and it doesnt throw any exception in Linux(ubuntu feisty/dapper) ??????
    here is the exception generated in Windows:
         java.net.SocketException: Connection reset
                 at java.net.SocketInputStream.read(Unknown Source)
                 at sun.nio.cs.StreamDecoder.readBytes(Unknown Source)
                 at sun.nio.cs.StreamDecoder.implRead(Unknown Source)
                 at sun.nio.cs.StreamDecoder.read(Unknown Source)
                 at java.io.InputStreamReader.read(Unknown Source)
                 at java.io.BufferedReader.fill(Unknown Source)
                 at java.io.BufferedReader.readLine(Unknown Source)
                 at java.io.BufferedReader.readLine(Unknown Source)
                 at Service.run(Service.java:37)is this could be considered a bug??? i hope java can throw the same exception in Linux too, cause this helps to check the statu of socket connection. thanks

    The following is mostly an educated guess, but it is based in some understanding of how the different OSs work.
    In linux sockets are handled by the driver(read: kernel part) that converts the actions on file descriptors to actions on network sockets. When a program shuts down, said driver continues to run, but receives a close request on the file descriptor, so it proceeds with a standard socket close.
    On windows, the sockets are the property of the program, not the network driver, and when the program shuts down the sockets simply abort as they are discarded. The network driver is not allowed to temporarily hold the socket until its operation completes. They are simply thrown away.
    Anyway, a proper solution that would be helpful for all OSs is to actually close the socket within the program, rather than hope the OS has a "garbage collector" for sockets. The same applies for all OS resources(files, pipes, GUI resources, etc). On certain OSs, certain resources may actually remain allocated after program shutdown, if not formally disposed.
    On a side note, socket libraries for windows usually support socket auto-close on disposing of the socket object. I'm surprised the Java library doesn't (seem to) follow the same pattern. Then again, I've seen programs(non-java, of course) cause system freezes over stuff like that.

  • Runtime Struts Exception on WinXP but not on Linux

    I have developed a Struts based application on a Red Hat EL WS machine with JDeveloper 9.5.0.2. Every thing works as expected when I run the application in JDev's OC4J. The views are tested in both Opera and Mozilla browsers.
    An other developer (my customer in this case) imports the application to his JDev 9.0.5.2 running on a Win XP box. The application compiles without errors or warnings. At runtime it fails at a Struts <html:form> element in both IE and Firefox with the same exception error 500 with a stack traces starting with:
    "javax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection"
    I have search the web for this exception and found several reasons, but no procurement.
    Here is the stack-trace:
    500 Internal Server Errorjavax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection
    at org.apache.struts.taglib.html.FormTag.lookup(FormTag.java:798)
    at org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:506)
    at ItemTester.jspService(ItemTester.jsp:13)
    [ItemTester.jsp]
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:139)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:349)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:604)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
    at java.lang.Thread.run(Thread.java:534)
    When the application initializes in JDev it throws an exception which I do not observe on the Linux box:
    19-08-2004 18:34:48 org.apache.struts.action.ActionServlet initServletSEVERE: nulljava.net.MalformedURLException: unknown protocol: classloader at java.net.URL.<init>(URL.java:544) at java.net.URL.<init>(URL.java) at java.net.URL.<init>(URL.java) at oracle.xml.parser.v2.NonValidatingParser.pushExternalDTD(NonValidatingParser.java:510) at oracle.xml.parser.v2.NonValidatingParser.parseDoctypeDecl(NonValidatingParser.java:454) at oracle.xml.parser.v2.NonValidatingParser.parseProlog(NonValidatingParser.java:287) at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:266) at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:149) at org.apache.commons.digester.Digester.parse(Digester.java:1568) at org.apache.struts.action.ActionServlet.initServlet(ActionServlet.java:1433) at org.apache.struts.action.ActionServlet.init(ActionServlet.java:466) at javax.servlet.GenericServlet.init(GenericServlet.java:259) at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.java:2094) at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4523) at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4617) at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:765) at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:497) at com.evermind.server.Application.getHttpApplication(Application.java:886) at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:688) at com.evermind.server.http.HttpSite.getApplication(HttpSite.java:420) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:422) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186) at java.lang.Thread.run(Thread.java:534)

    Frank,
    It is possible that he did use OC4J with SSL before this project, but I cannot say for sure.
    Could you point me to some resource on the issue?
    --Flemming                                                                                                                                                                                                                                                                                                                                                    

  • Simple Custom Identity Service running on windows OK, but not on linux, y?

    In <Oracle® BPEL Process Manager Developer's Guide 10g Release 2 (10.1.2)
    B14448-03>,
    Part III, 16<Oracle BPEL Process Manager Workflow
    Services, Identity Service, Creating a Custom Identity Service Plug-in>
    My pc, OS:windows 2003+BPEL PM Server10.1.2
    Server, OS:linux+ias+OC4J_BPEL, i can't make sure the version, may be:10.1.2
    In the Developer's Guide say:
    Identity Service has 3 provider:
    1, JAZN Provider
    2,Third-party LDAP Directories
    3,CUSTOM Repository LDAP-Based Plug-ins
    so i like the third one.
    1, i compile the project in Oracle_Home\integration\orabpel\samples\hw\isplugin\db.
    Then it create a jar file(IS-DBPlugin.jar) in Oracle_Home\integration\orabpel\system\services\lib
    2,Modify the provider config file: is_config.xml
    modify the config file: application.xml
    restart the Oracle BPEL server
    3,run the sql files it provider int the polsql.cmd
    OK, now the Identity Service work on Oracle lite database, it's my needs.
    add a user into the tables
    use the url:http://localhost:9700/integration/worklistapp/Login
    i can login the worklist service use my custom user and password.
    when the Identity Service use the JAZN Provider(XML), it's default choice.i add a user into the xml files, i mast restart my server if i want use the user login.
    use the database plugin,when i insert a user name into the tables,i can login the service use the username immediately.
    So i think it's easy to move it to my server(linux os). but when i copy the jar file to the folder,modify the config files,run ths sql files in the oracle database.
    but when i open the url :http://server_ip:port/integration/worklistapp/Login
    it can not work with a simple error message:Worklist service Identity Service error.
    in the log files i find some message like this :
    SOAP-ENV:Server.Exception
    BPEL-10551 can not load the Custom Identity Service Class:
    "IdentityServiceCustomPlugin.CustomIdentityService"
    it has wasted me one week time. and i can't find the reason now.
    who can help me ?
    thanks
    cnboy

    clemens,thanks.
    i'm sorry that my English is poor.so i can't understand you mean completely.
    you say it might be a linux jvm reason, can the metter be resolved?
    and you say extract the jar file .which files i would extract,can you say particular?
    thx!

  • Create table runs in Toad but not in Linux

    Hello,
    I've just started writing in SQL 3 days ago so I would like to apologize in advance for the shabby code and the stupid question. I'm hoping that somebody can help me with my problem.
    Anyway, this has been bugging me for 2 days now and I can't seem to find the problem. The code below is just a simple create table that I coded in Toad for Oracle by Quest Software and runs fine in it but when I try to copy it over to our linux server and run it using '@/home/user/atm_dc.sql', the table is not created.
    Can someone help me?
    Thanks.
    drop table atm_dc;
    CREATE TABLE atm_dc
    AS (
    SELECT
    'I' as action_code,
    rpad(' ',22,' ') as card_num,
    rpad(' ',24,' ') as client_cd,
    '000119' as inst_cd,
    rpad(sa01mast.brncd,6,' ') as branch_cd,
    ' ' as vip_flag,
    ' ' as owner_cd,
    '0' as basic_card_flag,
    rpad(' ',22,' ') as basic_card_num,
    rpad(' ',4,' ') as title,
    case when length(cf01cif.sname) > 0 then
    rpad(cf01cif.sname,20,' ') else
    rpad(' ',20,' ') end as family_name,
    rpad(' ',20,' ') as first_name,
    rpad(' ',26,' ') as embossed_name,
    rpad(' ',26,' ') as encoded_name,
    case when length(cf01cif.maritsts) > 0 then
    case when cf01cif.maritsts in ('M') then '2' else '1' end else
    ' ' end as marital_status,
    case when length(cf01cif.sex) > 0 then
    case when cf01cif.sex in ('F') then 'F' else 'M' end else
    ' ' end as gender,
    rpad(' ',15,' ') as legal_id,
    '608' as nationality_code,
    '00' as num_of_children,
    rpad('0',12,'0') as credit_limit,
    '0' as issuers_client,
    ' ' as lodging_period,
    ' ' as res_status,
    rpad('0',12,'0') as net_yearly_income,
    '00' as no_of_dependents,
    case when length(cf01cif.birthdt) > 0 then
    to_char(cf01cif.birthdt,'YYYYMMDD') else rpad(' ',8,' ')
    end as birth_date,
    rpad(' ',5,' ') as birth_city,
    case when length(cf01cif.cntry) > 0 then
    rpad(cf01cif.cntry,3,' ') else rpad(' ',3,' ')
    end as birth_cntry,
    case when length(cf01addr.addr1) > 0 then
    rpad(substr(cf01addr.addr1,1,30),30,' ') else rpad(' ',30,' ')
    end as address1,
    case when length(cf01addr.addr2) > 0 then
    rpad(substr(cf01addr.addr2,1,30),30,' ') else rpad(' ',30,' ')
    end as address2,
    case when length(cf01addr.addr3) > 0 then
    rpad(substr(cf01addr.addr3,1,30),30,' ') else rpad(' ',30,' ')
    end as address3,
    case when length(cf01addr.addr4) > 0 then
    rpad(substr(cf01addr.addr4,1,30),30,' ') else rpad(' ',30,' ')
    end as address4,
    case when length(cf01addr.city) > 0 then
    rpad(substr(cf01addr.city,1,5),5,' ') else rpad(' ',5,' ')
    end as city_code,
    case when length(cf01addr.postcd) > 0 then
    rpad(cf01addr.postcd,10,' ') else rpad(' ',10,' ')
    end as zip_code,
    case when length(cf01addr.cntry) > 0 then
    rpad(cf01addr.cntry,3,' ') else
    rpad(' ',3,' ') end as country_code,
    rpad(' ',15,' ') as phone_no1,
    rpad(' ',15,' ') as phone_no2,
    rpad(' ',15,' ') as mobile_phone,
    rpad(' ',50,' ') as email_id,
    rpad(' ',40,' ') as employer,
    rpad(' ',30,' ') as emp_addr1,
    rpad(' ',30,' ') as emp_addr2,
    rpad(' ',30,' ') as emp_addr3,
    rpad(' ',30,' ') as emp_addr4,
    rpad(' ',5,' ') as emp_city_cd,
    rpad(' ',10,' ') as emp_zip_cd,
    rpad(' ',3,' ') as emp_cntry_cd,
    rpad(' ',8,' ') as cont_start_dt,
    ' ' as emp_status,
    to_char(sa01mast2.opendt,'YYYYMMDD') as open_dt,
    rpad(' ',8,' ') as start_val_dt,
    '001' as prod_code,
    '0' as delivery_mode,
    rpad(sa01mast.brncd||sa01mast.modcd||lpad(sa01mast.acno,6,'0')||
    lpad(sa01mast.chkdgt,2,'0'),24,' ') as account1,
    'PHP' as acct1_currency,
    case when sa01mast.crline in ('SA') then '10' else '20'
    end as account1_type,
    rpad(' ',12,' ') as limit_cash_dom,
    rpad(' ',12,' ') as limit_purch_dom,
    rpad(' ',12,' ') as limit_te_dom,
    rpad(' ',12,' ') as reserved1,
    rpad(' ',12,' ') as limit_cash_int,
    rpad(' ',12,' ') as limit_purch_int,
    rpad(' ',12,' ') as limit_te_int,
    rpad(' ',12,' ') as reserved2,
    rpad(' ',12,' ') as autho_limit_dom,
    rpad(' ',12,' ') as autho_limit_int,
    rpad(' ',12,' ') as reserved3,
    rpad(' ',4,' ') as activity_cd,
    rpad(' ',4,' ') as socio_prof_code,
    '00' status_code,
    rpad(' ',10,' ') as staff_id,
    '0' as delivery_flag,
    rpad(' ',8,' ') as delivery_date,
    rpad(' ',14,' ') as bank_dsa_ref,
    rpad(' ',50,' ') as ud_field1,
    rpad(' ',50,' ') as ud_field2,
    rpad(' ',50,' ') as ud_field3,
    rpad(' ',50,' ') as ud_field4,
    rpad(' ',50,' ') as ud_field5,
    rpad(' ',26,' ') as emboss_line3,
    rpad(' ',45,' ') as mailing_addr1,
    rpad(' ',45,' ') as mailing_addr2,
    rpad(' ',45,' ') as mailing_addr3,
    rpad(' ',45,' ') as mailing_addr4,
    rpad(' ',10,' ') as mailing_zip_code,
    rpad(' ',5,' ') as mailing_city_code,
    rpad(' ',3,' ') as mailing_country_code,
    rpad(' ',15,' ') as phone_home,
    rpad(' ',15,' ') as phone_alt,
    rpad(' ',15,' ') as phone_mobile,
    '0' as photo_indicator,
    ' ' as language_indicator,
    rpad(' ',25,' ') as maiden_name,
    rpad('0',8,'0') as check_sum
    FROM cf01cif, sa01mast, cf01addr, sa01mast2
    WHERE cf01cif.cifkey=sa01mast.cifkey and
         cf01cif.cifkey=cf01addr.cifkey and
    sa01mast2.brncd = sa01mast.brncd and
    sa01mast2.modcd = sa01mast.modcd and
    sa01mast2.acno = sa01mast.acno and
    sa01mast2.chkdgt = sa01mast.chkdgt and
              sa01mast2.opendt < sysdate
    );

    You can use the SPOOL command to create a output file. Run the below script. This will create a file "output.log". Check in the file for any error messages
    set echo on
    spool output.log
    drop table atm_dc
    CREATE TABLE atm_dc
    AS (
    SELECT
    'I' as action_code,
    rpad(' ',22,' ') as card_num,
    rpad(' ',24,' ') as client_cd,
    '000119' as inst_cd,
    rpad(sa01mast.brncd,6,' ') as branch_cd,
    ' ' as vip_flag,
    ' ' as owner_cd,
    '0' as basic_card_flag,
    rpad(' ',22,' ') as basic_card_num,
    rpad(' ',4,' ') as title,
    case when length(cf01cif.sname) > 0 then
    rpad(cf01cif.sname,20,' ') else
    rpad(' ',20,' ') end as family_name,
    rpad(' ',20,' ') as first_name,
    rpad(' ',26,' ') as embossed_name,
    rpad(' ',26,' ') as encoded_name,
    case when length(cf01cif.maritsts) > 0 then
    case when cf01cif.maritsts in ('M') then '2' else '1' end else
    ' ' end as marital_status,
    case when length(cf01cif.sex) > 0 then
    case when cf01cif.sex in ('F') then 'F' else 'M' end else
    ' ' end as gender,
    rpad(' ',15,' ') as legal_id,
    '608' as nationality_code,
    '00' as num_of_children,
    rpad('0',12,'0') as credit_limit,
    '0' as issuers_client,
    ' ' as lodging_period,
    ' ' as res_status,
    rpad('0',12,'0') as net_yearly_income,
    '00' as no_of_dependents,
    case when length(cf01cif.birthdt) > 0 then
    to_char(cf01cif.birthdt,'YYYYMMDD') else rpad(' ',8,' ')
    end as birth_date,
    rpad(' ',5,' ') as birth_city,
    case when length(cf01cif.cntry) > 0 then
    rpad(cf01cif.cntry,3,' ') else rpad(' ',3,' ')
    end as birth_cntry,
    case when length(cf01addr.addr1) > 0 then
    rpad(substr(cf01addr.addr1,1,30),30,' ') else rpad(' ',30,' ')
    end as address1,
    case when length(cf01addr.addr2) > 0 then
    rpad(substr(cf01addr.addr2,1,30),30,' ') else rpad(' ',30,' ')
    end as address2,
    case when length(cf01addr.addr3) > 0 then
    rpad(substr(cf01addr.addr3,1,30),30,' ') else rpad(' ',30,' ')
    end as address3,
    case when length(cf01addr.addr4) > 0 then
    rpad(substr(cf01addr.addr4,1,30),30,' ') else rpad(' ',30,' ')
    end as address4,
    case when length(cf01addr.city) > 0 then
    rpad(substr(cf01addr.city,1,5),5,' ') else rpad(' ',5,' ')
    end as city_code,
    case when length(cf01addr.postcd) > 0 then
    rpad(cf01addr.postcd,10,' ') else rpad(' ',10,' ')
    end as zip_code,
    case when length(cf01addr.cntry) > 0 then
    rpad(cf01addr.cntry,3,' ') else
    rpad(' ',3,' ') end as country_code,
    rpad(' ',15,' ') as phone_no1,
    rpad(' ',15,' ') as phone_no2,
    rpad(' ',15,' ') as mobile_phone,
    rpad(' ',50,' ') as email_id,
    rpad(' ',40,' ') as employer,
    rpad(' ',30,' ') as emp_addr1,
    rpad(' ',30,' ') as emp_addr2,
    rpad(' ',30,' ') as emp_addr3,
    rpad(' ',30,' ') as emp_addr4,
    rpad(' ',5,' ') as emp_city_cd,
    rpad(' ',10,' ') as emp_zip_cd,
    rpad(' ',3,' ') as emp_cntry_cd,
    rpad(' ',8,' ') as cont_start_dt,
    ' ' as emp_status,
    to_char(sa01mast2.opendt,'YYYYMMDD') as open_dt,
    rpad(' ',8,' ') as start_val_dt,
    '001' as prod_code,
    '0' as delivery_mode,
    rpad(sa01mast.brncd||sa01mast.modcd||lpad(sa01mast.acno,6,'0')||
    lpad(sa01mast.chkdgt,2,'0'),24,' ') as account1,
    'PHP' as acct1_currency,
    case when sa01mast.crline in ('SA') then '10' else '20'
    end as account1_type,
    rpad(' ',12,' ') as limit_cash_dom,
    rpad(' ',12,' ') as limit_purch_dom,
    rpad(' ',12,' ') as limit_te_dom,
    rpad(' ',12,' ') as reserved1,
    rpad(' ',12,' ') as limit_cash_int,
    rpad(' ',12,' ') as limit_purch_int,
    rpad(' ',12,' ') as limit_te_int,
    rpad(' ',12,' ') as reserved2,
    rpad(' ',12,' ') as autho_limit_dom,
    rpad(' ',12,' ') as autho_limit_int,
    rpad(' ',12,' ') as reserved3,
    rpad(' ',4,' ') as activity_cd,
    rpad(' ',4,' ') as socio_prof_code,
    '00' status_code,
    rpad(' ',10,' ') as staff_id,
    '0' as delivery_flag,
    rpad(' ',8,' ') as delivery_date,
    rpad(' ',14,' ') as bank_dsa_ref,
    rpad(' ',50,' ') as ud_field1,
    rpad(' ',50,' ') as ud_field2,
    rpad(' ',50,' ') as ud_field3,
    rpad(' ',50,' ') as ud_field4,
    rpad(' ',50,' ') as ud_field5,
    rpad(' ',26,' ') as emboss_line3,
    rpad(' ',45,' ') as mailing_addr1,
    rpad(' ',45,' ') as mailing_addr2,
    rpad(' ',45,' ') as mailing_addr3,
    rpad(' ',45,' ') as mailing_addr4,
    rpad(' ',10,' ') as mailing_zip_code,
    rpad(' ',5,' ') as mailing_city_code,
    rpad(' ',3,' ') as mailing_country_code,
    rpad(' ',15,' ') as phone_home,
    rpad(' ',15,' ') as phone_alt,
    rpad(' ',15,' ') as phone_mobile,
    '0' as photo_indicator,
    ' ' as language_indicator,
    rpad(' ',25,' ') as maiden_name,
    rpad('0',8,'0') as check_sum
    FROM cf01cif, sa01mast, cf01addr, sa01mast2
    WHERE cf01cif.cifkey=sa01mast.cifkey and
    cf01cif.cifkey=cf01addr.cifkey and
    sa01mast2.brncd = sa01mast.brncd and
    sa01mast2.modcd = sa01mast.modcd and
    sa01mast2.acno = sa01mast.acno and
    sa01mast2.chkdgt = sa01mast.chkdgt and
    sa01mast2.opendt < sysdate
    spool off

  • Desktop Integration Suite, Lotus Notes and Linux

    Hello
    Can anybody answer my small question? Is there any possibility to use Lotus Notes client on Linux machines with UCM/ECM. Destkop Integration Suite components and client works with windows without any problems, but I can't find any information about Linux integration.
    Thanks in advance

    Desktop Integration Suite is a Windows-only client module. The client cannot be installed on a Linux desktop. From Windows, it should be able to connect and function with a UCM server installed on any supported OS including Linux.

Maybe you are looking for

  • 100+ Views & 0 Replies Can someone help me..?

    Hello There, Is it possible to delete Level 0 Members in a dimension using Rule files? I did read this thread (HOW can i delete the members in dim using MAXL and tried the Remove Unspecified option but it removes all the members in the dimension. For

  • Sync Photos

    I followed all instructions found under support to snync my photos. However after about 2 minutes with Ipod updating, I get back the Itunes message ' The Ipod cannot be updated. An uknown error occured (-50)'.When I press ok on the error message I ge

  • Sometimes the screen is full-screen or smaller than minimum, same for Thunderbird

    Every now and then the window-size is collapsed, and can only be maximized. (Firefox 8.0) This also happens at Thunderbird 8.0

  • Expand/Collapse All functionality in TREE UI Element

    Hi All, I'm using Tree UI Element in which Collapse All button is coming defaultly in that Tree Application . But i need to know how the function is taking place behind . Because i need to refer to do it for Expand All scenario for the same tree . Is

  • Browser Certificate problems

    Hi, Just got a Nokia x6 16gb phone it connects via wifi at home fine, but I want to connect to uni network and the admin guy said i need the User first hardware certificate" which the phone doesnt have. I have tried to download it but it wont add its