Auto Start/Shutdown db on Linux (RHEL-4)

Hello,
I have posted a thread in Database General forum :
Auto Start/Shutdown db on RHEL 4
and there one suggestation i got that i have to raise my problem here itself only.
Kindly look into the issue and help me.
Thanks & Regards
Girish Sharma

I see you start this service at sequence "99". This is good, but there are other 99-level startup scripts as well. These are processed in alphabetical order. Do this:
$ ls /etc/rd5d.d/S99*
So, "dbora" will run even before rc.local and that may not be a good thing.
Also, checking:
$ ls /etc/rc5.d/K* | head -n15
will show you the order in which services are shut down, again in alphabetical order.
These steps may help:
# /sbin/chkconfig dbora off
# /sbin/service dbora stop
# cd /etc/init.d/
# /sbin/chkconfig --del dbora
# mv dbora xxx-dbora
# vi xxx-dbora
# /sbin/chkconfig --add xxx-dbora
# /sbin/chkconfig xxx-dbora on
# /sbin/service xxx-dbora start
What we are doing is:
1) Remove existing dbora service
2) Rename the service to something that shows last in an ls(1) command
3) Edit the xxx-dbora script to change the chkconfig info from "99 10" to "99 01"
4) Installed the service.
Now, the start-up is done as the very last action and shutdown as the very first.
Does this make any difference?

Similar Messages

  • Auto-start OC4J process after Linux reboot

    Oracle 11gR2, OC4J 10g (10.1.3.5.0), RHEL5 64 bit
    Hi All,
    I am trying to figure out how to get my oc4j process start at boot time. I already have a dbora script setup. I tried adding the following line to my dbora/dbstart script but it did not do anything:
    #!/bin/sh
    # chkconfig: 345 99 10
    description: Oracle auto start-stop script.
    ORACLE_OC4J_HOME=/u02/oc4j
    JAVA_HOME=/usr/java/jdk1.6.0_21/
    su - $ORACLE_OWNER -c "$ORACLE_OC4J_HOME/bin/oc4j -start"
    I read somewhere that I may need to put the entire path like:
    /usr/bin/java -jar /path/to/oc4j.jar &
    Just not sure where and how to put that path in the file.
    Thanks for your help all.
    JrOraDBA

    Hi,
    To run oc4j in the background, on Linux
    Execute the following command:
    nohup ./oc4j -start &
    to run oc4j in the background. The 'nohup' command ignores the hangup signal (closing the terminal window) and enables oc4j to continue running in the background.
    In rare cases, oc4j will not shutdown cleanly with the standard command:
    ./oc4j -shutdown -port 23791 -oc4jadmin <admin_pwd>
    In those cases, try the following command:
    java -jar admin_client.jar deployer:oc4j:localhost oc4jadmin <admin_pwd> -shutdown
    to stop the oc4j service.
    Thanks,
    Sharmela

  • Auto start Oracle instance in linux

    Can I configure oracle to auto start an oracle instance in linux environment ?

    Here are the steps to enable the oracle service start automatically during the system boot
    Login as root in Linux box to execute the following steps
    1. the flag set to Y in /etc/oratab file with the respective instance
    2. Copy the oracle script in /etc/init.d folder
    3. change the permission < chmod 755 <script filename>
    4. add the service <chkconfig --add <script filename>
    5 Put the service auto on <chkconfig <script filename> on >
    6. To verify the oracle service startup automatic < service <script filename> stop > < service <script filename> start >
    Regards
    N Jandial

  • Auto start listener & DB in Linux

    Hello, I have installed oracle 10g on Red Hat 2.1 Ent. Ed. I have also modified the /etc/oratab file for auto starting the service. The service start auto but i have two problems, 1) The listener does not start automatically 2) When trying to connect from SQL*PLUS, it says Shared Memory Realm does not exists. The Database has to be started manually connecting sys as sysdba. How can i configure the two things to start automatically? Any idea? Thanks.

    Follow steps at the end of this article:
    http://www.oraclebase.com/articles/9i/Oracle9iInstallationOnRedHat21.php
    Script will start DB automaticaly during boot and also stops database during OS shutdown.

  • Auto Start/Stop Oracle Database Lintener DBConslone on Linux

    Dear all
    I have install oracle 10.2.0 on redhat 4.7 every time i have to start manualy.
    it try with following scrip / process but database not starting automatically.
    Please any one can provide steps for auto start and stop oracel services on RedHat 4.7
    Once the instance is created, edit the "/etc/oratab" file setting the restart flag for each instance to 'Y'.
    TSH1:/u01/app/oracle/product/10.2.0:Y
    Next, create a file called "/etc/init.d/dbora" as the root user, containing the following.
    #!/bin/bash
    #chkconfig: 345 95 10
    #description: init script to start/stop oracle database 10g, TNS listener, EMS and isqlplus
    case $1 in
         start)
         su - oracle -c 'lsnrctl start'
         su - oracle -c 'dbstart'
    su - ora10g -c 'isqlplusctl start'
         su - oracle -c 'emctl start dbconsole'
         stop)
    su - oracle -c 'emctl stop dbconsole'
         su - oracle -c 'isqlplusctl stop'
    su - oracle -c 'dbshut'
    su - oracle -c 'lsnrctl stop'
         restart)
    su - oracle -c 'emctl stop dbconsole'
         su - oracle -c 'isqlplusctl stop'
    su - oracle -c 'dbshut'
    su - oracle -c 'lsnrctl stop'
         su - oracle -c 'lsnrctl start'
         su - oracle -c 'dbstart'
    su - ora10g -c 'isqlplusctl start'
         su - oracle -c 'emctl start dbconsole'
    esac
    create service on linux
    Actions >> System Settings >> Server Settings >> Services Then
    Actions >> Add Service Then
    Service Name = dbora Then Press Ok
    chmod a+x /etc/init.d/dbora
    Check is it running this service properly
    service dbora stop
    service dbora start
    showing error
    :bad interperter : no such file or directory
    Please forward me process/steps for auto start/stop oracel services

    :bad interperter : no such file or directorymeans that it could not find the interpreter which should be used to interpret the script.
    most probably this is caused by the shebang (#!/bin/bash)
    the default location of bash on RHEL (OEL/CentOS) is /bin/bash, which means that the shebang looks correct.
    can you make the shebang:
    #!/bin/bash -xso shelltracing is put on and execute script again?
    this will make clear if it is the shebang in your script, or in another script.

  • DB and listner  auto start with linux problem

    Dear all :
    i can't set DB auto start with linux
    my db version 10g linux 5
    I followed these steps :
    edit the "/etc/oratab" file setting the restart flag for each instance to 'Y'.
    TSH1:/u01/app/oracle/oracle/product/10.2.0/db_1:Y
    create a file called "/etc/init.d/dbora" as the root user, containing the following.
    #!/bin/sh
    # chkconfig: 345 99 10
    # description: Oracle auto start-stop script.
    # Set ORA_HOME to be equivalent to the $ORACLE_HOME
    # from which you wish to execute dbstart and dbshut;
    # Set ORA_OWNER to the user id of the owner of the
    # Oracle database in ORA_HOME.
    ORA_HOME=/u01/app/oracle/oracle/product/10.2.0/db_1
    ORA_OWNER=oracle
    if [ ! -f $ORA_HOME/bin/dbstart ]
    then
    echo "Oracle startup: cannot start"
    exit
    fi
    case "$1" in
    'start')
    # Start the Oracle databases:
    # The following command assumes that the oracle login
    # will not prompt the user for any values
    su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl start"
    su - $ORA_OWNER -c $ORA_HOME/bin/dbstart
    'stop')
    # Stop the Oracle databases:
    # The following command assumes that the oracle login
    # will not prompt the user for any values
    su - $ORA_OWNER -c $ORA_HOME/bin/dbshut
    su - $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl stop"
    esac
    chmod 750 /etc/init.d/dbora
    chkconfig --level 345 dbora on
    # ln -s /etc/init.d/dbora /etc/rc.d/rc3.d/K01dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc3.d/S99dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc5.d/K01dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc5.d/S99dbora

    Follow this part of Oracle Doc,
    Automating Shutdown and Startup
    http://download.oracle.com/docs/cd/B19306_01/server.102/b15658/strt_stp.htm#sthref249
    Also run your script manually see if it will run sucessfully.
    /etc/init.d/dbora start
    /etc/init.d/dbora stop

  • Auto start and shutdown 9iR2 on Mac OS X?

    Does anybody know how to set up Mac OS X to auto start and auto shutdown 9iR2 on Mac OS X?

    You may want to create an item in /Library/StartupItems.
    See the following links for information:
    http://developer.apple.com/techpubs/macosx/Essentials/SystemOverview/BootingLogin/Customization_Techniques.html
    http://developer.apple.com/techpubs/macosx/Darwin/howto/system_starter_howto/system_starter_howto.html
    http://developer.apple.com/techpubs/macosx/Essentials/SystemOverview/BootingLogin/The_Boot_Sequence.html
    I have not tried this as yet.

  • Auto start oracle in linux - error

    1. edited the "/etc/oratab" file setting flag to 'Y'.
    soni:/home/oracle/oracle/product/10.2.0/db_1:Y
    2 connect wih root user
    - created empty file (/etc/init.d/dbora)
    copied from (http://www.oracle-base.com/articles/linux/AutomatingDatabaseStartupAndShutdownOnLinux.php)
    #!/bin/sh
    # chkconfig: 345 99 10
    # description: Oracle auto start-stop script.
    # Change the value of ORACLE_HOME to specify the correct Oracle home
    # directory for your installation.
    ORACLE_HOME=/home/oracle/oracle/product/10.2.0/db_1
    # Change the value of ORACLE to the login name of the
    # oracle owner at your site.
    4.
    chmod 750 /etc/init.d/dbora
    5.
    chkconfig --add dbora
    When I try this root user i get error
    # /etc/init.d/dbora start
    /etc/profile: line 51: syntax error near unexpected token `then'
    /etc/profile: line 51: `if[ \$USER= "oracle" ]; then'
    -bash: c: No such file or directory
    I restarted the database, but DB didnt start automatically...
    Edited by: The_Rock on Jun 10, 2010 9:47 PM

    The_Rock wrote:
    # /etc/init.d/dbora start
    /etc/profile: line 51: syntax error near unexpected token `then'
    /etc/profile: line 51: `if[ \$USER= "oracle" ]; then'
    -bash: c: No such file or directoryThe /etc/profile line 51 seems to be incorrect. No space between the "+if+" and the bracket condition.
    E.g.
    /home/billy> if[ \$USER = "oracle" ]; then echo true;else echo false;fi
    bash: syntax error near unexpected token `then'
    /home/billy> if [ \$USER = "oracle" ]; then echo true;else echo false;fi
    falseWhy do you use a leading slash for the +$USER+ variable? It changes it from a variable to a literal.
    /home/billy> echo $USER
    billy
    /home/billy> echo \$USER
    $USERLiteral "+$USER+" will never equal literal "+oracle+".

  • How we can control auto start/stop of db/listener on Unix/linux?

    How we can control auto start/stop of db/listener on Unix/linux?

    http://download-uk.oracle.com/docs/html/B10812_01/chapter2.htm#BABGDGHF

  • Auto start/shut on oracle 9i in linux

    Hi all,
    I just finished the installation of oracle 9iR2 on RHEL4.
    Can u give me some information to configure auto start/shut option on RHEL4

    See the Oracle9i Installation Guide
    Release 2 (9.2.0.1.0) for UNIX Systems: AIX-Based Systems, Compaq Tru64 UNIX, HP 9000 Series HP-UX, Linux Intel, and Sun Solaris relevant section

  • 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

  • Skype/Pulse audio problem only if auto started

    Hi,
    I've an Arch/XFCE laptop including pulse audio and Skype (configured to use the pulse audio).
    Skype has been configured  (using XFCE startup menu) to auto start during boot ( we boot daily), and, till about 2 weeks ago, worked fine.
    Ever since, Skype starts but isn't functional (while trying to connect to the test service I can't hear anything, not even the dialing), and, after a few minutes, starts with a constant loud noise (which stops, once I quit Skype).
    Interesting, since the problem  has begun, once I do either of the following, Skype returns, and remains, to be fully functional without any noise:
    1. Quit the auto-started Skype, and immediately relaunch it.
    2. Cancel to Skype auto start, and manually start Skype after XFCE becomes visible.
    Looking at log files (below), I've seen some pulse audio related errors which I couldn't solve and may be related.
    I do a full system update (almost) daily.
    I'd be happy to return to the former state (functional auto-started Skype). Please advise
    Thanks
    ----------partial end of  journal------------------
    Jun 08 08:51:08 Ira-Lenovo lightdm[246]: ** (process:272): WARNING **: Error getting user list from org.freedesktop.Accounts: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Accounts was not provided by any .service files
    Jun 08 08:51:08 Ira-Lenovo lightdm[272]: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
    Jun 08 08:51:08 Ira-Lenovo systemd[1]: Starting user-620.slice.
    Jun 08 08:51:08 Ira-Lenovo systemd[1]: Created slice user-620.slice.
    Jun 08 08:51:08 Ira-Lenovo systemd[1]: Starting User Manager for UID 620...
    Jun 08 08:51:08 Ira-Lenovo systemd[1]: Starting Session c1 of user lightdm.
    Jun 08 08:51:08 Ira-Lenovo systemd-logind[234]: New session c1 of user lightdm.
    Jun 08 08:51:08 Ira-Lenovo systemd[1]: Started Session c1 of user lightdm.
    Jun 08 08:51:08 Ira-Lenovo systemd[275]: pam_unix(systemd-user:session): session opened for user lightdm by (uid=0)
    Jun 08 08:51:08 Ira-Lenovo systemd[275]: Starting Paths.
    Jun 08 08:51:08 Ira-Lenovo systemd[275]: Reached target Paths.
    Jun 08 08:51:08 Ira-Lenovo systemd[275]: Starting Timers.
    Jun 08 08:51:08 Ira-Lenovo systemd[275]: Reached target Timers.
    Jun 08 08:51:08 Ira-Lenovo systemd[275]: Starting Sockets.
    Jun 08 08:51:08 Ira-Lenovo systemd[275]: Reached target Sockets.
    Jun 08 08:51:08 Ira-Lenovo systemd[275]: Starting Basic System.
    Jun 08 08:51:08 Ira-Lenovo systemd[275]: Reached target Basic System.
    Jun 08 08:51:08 Ira-Lenovo systemd[275]: Starting Default.
    Jun 08 08:51:08 Ira-Lenovo systemd[275]: Reached target Default.
    Jun 08 08:51:08 Ira-Lenovo systemd[275]: Startup finished in 78ms.
    Jun 08 08:51:08 Ira-Lenovo systemd[1]: Started User Manager for UID 620.
    Jun 08 08:51:10 Ira-Lenovo org.a11y.Bus[284]: Activating service name='org.a11y.atspi.Registry'
    Jun 08 08:51:10 Ira-Lenovo org.a11y.Bus[284]: Successfully activated service 'org.a11y.atspi.Registry'
    Jun 08 08:51:10 Ira-Lenovo org.a11y.atspi.Registry[290]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
    Jun 08 08:51:10 Ira-Lenovo org.a11y.atspi.Registry[290]: ** (at-spi2-registryd:293): WARNING **: Failed to register client: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.gnome.SessionManager was not provided by any .service files
    Jun 08 08:51:10 Ira-Lenovo org.a11y.atspi.Registry[290]: ** (at-spi2-registryd:293): WARNING **: Unable to register client with session manager
    Jun 08 08:51:15 Ira-Lenovo lightdm[246]: ** (process:297): WARNING **: Error getting user list from org.freedesktop.Accounts: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Accounts was not provided by any .service files
    Jun 08 08:51:15 Ira-Lenovo lightdm[272]: pam_unix(lightdm-greeter:session): session closed for user lightdm
    Jun 08 08:51:15 Ira-Lenovo lightdm[297]: pam_unix(lightdm:session): session opened for user ira by (uid=0)
    Jun 08 08:51:15 Ira-Lenovo systemd[1]: Starting user-1000.slice.
    Jun 08 08:51:15 Ira-Lenovo systemd[1]: Created slice user-1000.slice.
    Jun 08 08:51:15 Ira-Lenovo systemd[1]: Starting User Manager for UID 1000...
    Jun 08 08:51:15 Ira-Lenovo systemd[302]: pam_unix(systemd-user:session): session opened for user ira by (uid=0)
    Jun 08 08:51:15 Ira-Lenovo systemd[1]: Starting Session c2 of user ira.
    Jun 08 08:51:15 Ira-Lenovo systemd-logind[234]: New session c2 of user ira.
    Jun 08 08:51:15 Ira-Lenovo systemd[1]: Started Session c2 of user ira.
    Jun 08 08:51:15 Ira-Lenovo systemd[302]: Starting Paths.
    Jun 08 08:51:15 Ira-Lenovo systemd[302]: Reached target Paths.
    Jun 08 08:51:15 Ira-Lenovo systemd[302]: Starting Timers.
    Jun 08 08:51:15 Ira-Lenovo systemd[302]: Reached target Timers.
    Jun 08 08:51:15 Ira-Lenovo systemd[302]: Starting Sockets.
    Jun 08 08:51:15 Ira-Lenovo systemd[302]: Reached target Sockets.
    Jun 08 08:51:15 Ira-Lenovo systemd[302]: Starting Basic System.
    Jun 08 08:51:15 Ira-Lenovo systemd[302]: Reached target Basic System.
    Jun 08 08:51:15 Ira-Lenovo systemd[302]: Starting Default.
    Jun 08 08:51:15 Ira-Lenovo systemd[302]: Reached target Default.
    Jun 08 08:51:15 Ira-Lenovo systemd[302]: Startup finished in 36ms.
    Jun 08 08:51:15 Ira-Lenovo systemd[1]: Started User Manager for UID 1000.
    Jun 08 08:51:18 Ira-Lenovo dbus[235]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service'
    Jun 08 08:51:18 Ira-Lenovo systemd[1]: Starting RealtimeKit Scheduling Policy Service...
    Jun 08 08:51:18 Ira-Lenovo dbus[235]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
    Jun 08 08:51:18 Ira-Lenovo systemd[1]: Started RealtimeKit Scheduling Policy Service.
    Jun 08 08:51:18 Ira-Lenovo rtkit-daemon[329]: Successfully called chroot.
    Jun 08 08:51:18 Ira-Lenovo rtkit-daemon[329]: Successfully dropped privileges.
    Jun 08 08:51:18 Ira-Lenovo rtkit-daemon[329]: Successfully limited resources.
    Jun 08 08:51:18 Ira-Lenovo rtkit-daemon[329]: Running.
    Jun 08 08:51:18 Ira-Lenovo rtkit-daemon[329]: Watchdog thread running.
    Jun 08 08:51:18 Ira-Lenovo rtkit-daemon[329]: Canary thread running.
    Jun 08 08:51:18 Ira-Lenovo rtkit-daemon[329]: Successfully made thread 328 of process 328 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Jun 08 08:51:18 Ira-Lenovo rtkit-daemon[329]: Supervising 1 threads of 1 processes of 1 users.
    Jun 08 08:51:19 Ira-Lenovo rtkit-daemon[329]: Supervising 1 threads of 1 processes of 1 users.
    Jun 08 08:51:19 Ira-Lenovo rtkit-daemon[329]: Successfully made thread 332 of process 328 (/usr/bin/pulseaudio) owned by '1000' RT at priority 5.
    Jun 08 08:51:19 Ira-Lenovo rtkit-daemon[329]: Supervising 2 threads of 1 processes of 1 users.
    Jun 08 08:51:19 Ira-Lenovo rtkit-daemon[329]: Supervising 2 threads of 1 processes of 1 users.
    Jun 08 08:51:19 Ira-Lenovo rtkit-daemon[329]: Successfully made thread 333 of process 328 (/usr/bin/pulseaudio) owned by '1000' RT at priority 5.
    Jun 08 08:51:19 Ira-Lenovo rtkit-daemon[329]: Supervising 3 threads of 1 processes of 1 users.
    Jun 08 08:51:19 Ira-Lenovo pulseaudio[328]: [pulseaudio] module-gconf.c: Unable to read or parse data from client.
    Jun 08 08:51:19 Ira-Lenovo pulseaudio[328]: [pulseaudio] module.c: Failed to load module "module-gconf" (argument: ""): initialization failed.
    Jun 08 08:51:19 Ira-Lenovo pulseaudio[328]: [pulseaudio] main.c: Module load failed.
    Jun 08 08:51:19 Ira-Lenovo pulseaudio[328]: [pulseaudio] bluez5-util.c: GetManagedObjects() failed: org.freedesktop.DBus.Error.ServiceUnknown: The name org.bluez was not provided by any .service files
    Jun 08 08:51:21 Ira-Lenovo org.freedesktop.thumbnails.Thumbnailer1[311]: (tumblerd:351): tumbler-WARNING **: Failed to load plugin "tumbler-odf-thumbnailer.so": libgsf-1.so.114: cannot open shared object file: No such file or directory
    Jun 08 08:51:21 Ira-Lenovo org.freedesktop.thumbnails.Thumbnailer1[311]: (tumblerd:351): tumbler-WARNING **: Failed to load plugin "tumbler-poppler-thumbnailer.so": libpoppler-glib.so.8: cannot open shared object file: No such file or directory
    Jun 08 08:51:21 Ira-Lenovo org.freedesktop.thumbnails.Thumbnailer1[311]: (tumblerd:351): tumbler-WARNING **: Failed to load plugin "tumbler-raw-thumbnailer.so": libopenrawgnome.so.1: cannot open shared object file: No such file or directory
    Jun 08 08:51:21 Ira-Lenovo org.freedesktop.thumbnails.Thumbnailer1[311]: (tumblerd:351): tumbler-WARNING **: Failed to load plugin "tumbler-ffmpeg-thumbnailer.so": libffmpegthumbnailer.so.4: cannot open shared object file: No such file or directory
    Jun 08 08:51:22 Ira-Lenovo kernel: fuse init (API version 7.22)
    Jun 08 08:51:22 Ira-Lenovo systemd[1]: Mounting FUSE Control File System...
    Jun 08 08:51:22 Ira-Lenovo systemd[1]: Mounted FUSE Control File System.
    Jun 08 08:51:22 Ira-Lenovo rtkit-daemon[329]: Successfully made thread 392 of process 392 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Jun 08 08:51:22 Ira-Lenovo rtkit-daemon[329]: Supervising 4 threads of 2 processes of 1 users.
    Jun 08 08:51:22 Ira-Lenovo pulseaudio[392]: Daemon already running.
    Jun 08 08:51:23 Ira-Lenovo dbus[235]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service'
    Jun 08 08:51:23 Ira-Lenovo systemd[1]: Starting Disk Manager...
    Jun 08 08:51:24 Ira-Lenovo udisksd[401]: udisks daemon version 2.1.3 starting
    Jun 08 08:51:24 Ira-Lenovo dbus[235]: [system] Successfully activated service 'org.freedesktop.UDisks2'
    Jun 08 08:51:24 Ira-Lenovo systemd[1]: Started Disk Manager.
    Jun 08 08:51:24 Ira-Lenovo udisksd[401]: Acquired the name org.freedesktop.UDisks2 on the system message bus
    Jun 08 08:51:25 Ira-Lenovo dbus[235]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service'
    Jun 08 08:51:25 Ira-Lenovo systemd[1]: Starting Daemon for power management...
    Jun 08 08:51:26 Ira-Lenovo dbus[235]: [system] Successfully activated service 'org.freedesktop.UPower'
    Jun 08 08:51:26 Ira-Lenovo systemd[1]: Started Daemon for power management.
    Jun 08 08:51:26 Ira-Lenovo NetworkManager[233]: <info> (enp6s0): carrier now ON (device state 20)
    Jun 08 08:51:26 Ira-Lenovo kernel: r8169 0000:06:00.0 enp6s0: link up
    Jun 08 08:51:26 Ira-Lenovo kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp6s0: link becomes ready
    Jun 08 08:51:26 Ira-Lenovo NetworkManager[233]: <info> (enp6s0): device state change: unavailable -> disconnected (reason 'carrier-changed') [20 30 40]
    Jun 08 08:51:26 Ira-Lenovo NetworkManager[233]: <info> Auto-activating connection 'Wired connection 1'.
    Jun 08 08:51:26 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) starting connection 'Wired connection 1'
    Jun 08 08:51:26 Ira-Lenovo NetworkManager[233]: <info> (enp6s0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
    Jun 08 08:51:26 Ira-Lenovo NetworkManager[233]: <info> NetworkManager state is now CONNECTING
    Jun 08 08:51:26 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) Stage 1 of 5 (Device Prepare) scheduled...
    Jun 08 08:51:26 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) Stage 1 of 5 (Device Prepare) started...
    Jun 08 08:51:26 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) Stage 2 of 5 (Device Configure) scheduled...
    Jun 08 08:51:26 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) Stage 1 of 5 (Device Prepare) complete.
    Jun 08 08:51:26 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) Stage 2 of 5 (Device Configure) starting...
    Jun 08 08:51:26 Ira-Lenovo NetworkManager[233]: <info> (enp6s0): device state change: prepare -> config (reason 'none') [40 50 0]
    Jun 08 08:51:26 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) Stage 2 of 5 (Device Configure) successful.
    Jun 08 08:51:26 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) Stage 3 of 5 (IP Configure Start) scheduled.
    Jun 08 08:51:26 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) Stage 2 of 5 (Device Configure) complete.
    Jun 08 08:51:26 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) Stage 3 of 5 (IP Configure Start) started...
    Jun 08 08:51:26 Ira-Lenovo NetworkManager[233]: <info> (enp6s0): device state change: config -> ip-config (reason 'none') [50 70 0]
    Jun 08 08:51:26 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) Beginning DHCPv4 transaction (timeout in 45 seconds)
    Jun 08 08:51:26 Ira-Lenovo upowerd[427]: (upowerd:427): UPower-Linux-WARNING **: Setting /sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0e/PNP0C0A:00/power_supply/BAT1 state empty as unknown and very low
    Jun 08 08:51:26 Ira-Lenovo upowerd[427]: (upowerd:427): UPower-Linux-WARNING **: Setting /sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0e/PNP0C0A:00/power_supply/BAT1 state empty as unknown and very low
    Jun 08 08:51:27 Ira-Lenovo NetworkManager[233]: <info> dhcpcd started with pid 440
    Jun 08 08:51:27 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) Beginning IP6 addrconf.
    Jun 08 08:51:27 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) Stage 3 of 5 (IP Configure Start) complete.
    Jun 08 08:51:27 Ira-Lenovo dbus[235]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedesktop.ModemManager1.service'
    Jun 08 08:51:27 Ira-Lenovo dbus[235]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedesktop.ModemManager1.service failed to load: No such file or directory.
    Jun 08 08:51:28 Ira-Lenovo dhcpcd[440]: version 6.3.2 starting
    Jun 08 08:51:28 Ira-Lenovo NetworkManager[233]: <info> (enp6s0): DHCPv4 state changed nbi -> preinit
    Jun 08 08:51:28 Ira-Lenovo dhcpcd[440]: DUID 00:01:00:01:1a:27:1d:43:1c:75:08:53:82:9a
    Jun 08 08:51:28 Ira-Lenovo dhcpcd[440]: enp6s0: IAID 08:53:82:9a
    Jun 08 08:51:28 Ira-Lenovo dhcpcd[440]: enp6s0: soliciting an IPv6 router
    Jun 08 08:51:28 Ira-Lenovo dhcpcd[440]: enp6s0: rebinding lease of 192.168.1.13
    Jun 08 08:51:34 Ira-Lenovo dhcpcd[440]: enp6s0: leased 192.168.1.13 for 3600 seconds
    Jun 08 08:51:34 Ira-Lenovo dhcpcd[440]: enp6s0: adding route to 192.168.1.0/24
    Jun 08 08:51:34 Ira-Lenovo NetworkManager[233]: <info> (enp6s0): DHCPv4 state changed preinit -> bound
    Jun 08 08:51:34 Ira-Lenovo NetworkManager[233]: <info> address 192.168.1.13
    Jun 08 08:51:34 Ira-Lenovo NetworkManager[233]: <info> prefix 24 (255.255.255.0)
    Jun 08 08:51:34 Ira-Lenovo NetworkManager[233]: <info> gateway 192.168.1.1
    Jun 08 08:51:34 Ira-Lenovo NetworkManager[233]: <info> nameserver '192.117.235.235'
    Jun 08 08:51:34 Ira-Lenovo NetworkManager[233]: <info> nameserver '62.219.186.7'
    Jun 08 08:51:34 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
    Jun 08 08:51:34 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) Stage 5 of 5 (IPv4 Commit) started...
    Jun 08 08:51:35 Ira-Lenovo dhcpcd[440]: enp6s0: removing route to 192.168.1.0/24
    Jun 08 08:51:35 Ira-Lenovo NetworkManager[233]: <info> (enp6s0): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
    Jun 08 08:51:35 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) Stage 5 of 5 (IPv4 Commit) complete.
    Jun 08 08:51:35 Ira-Lenovo NetworkManager[233]: <info> (enp6s0): device state change: secondaries -> activated (reason 'none') [90 100 0]
    Jun 08 08:51:35 Ira-Lenovo NetworkManager[233]: <info> NetworkManager state is now CONNECTED_GLOBAL
    Jun 08 08:51:35 Ira-Lenovo NetworkManager[233]: <info> Policy set 'Wired connection 1' (enp6s0) as default for IPv4 routing and DNS.
    Jun 08 08:51:35 Ira-Lenovo NetworkManager[233]: <info> Writing DNS information to /usr/bin/resolvconf
    Jun 08 08:51:36 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) successful, device activated.
    Jun 08 08:51:36 Ira-Lenovo dbus[235]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
    Jun 08 08:51:36 Ira-Lenovo systemd[1]: Starting Network Manager Script Dispatcher Service...
    Jun 08 08:51:36 Ira-Lenovo dbus[235]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
    Jun 08 08:51:36 Ira-Lenovo systemd[1]: Started Network Manager Script Dispatcher Service.
    Jun 08 08:51:41 Ira-Lenovo dhcpcd[440]: enp6s0: no IPv6 Routers available
    Jun 08 08:51:48 Ira-Lenovo NetworkManager[233]: <info> (enp6s0): IP6 addrconf timed out or failed.
    Jun 08 08:51:48 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
    Jun 08 08:51:48 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) Stage 4 of 5 (IPv6 Configure Timeout) started...
    Jun 08 08:51:48 Ira-Lenovo NetworkManager[233]: <info> Activation (enp6s0) Stage 4 of 5 (IPv6 Configure Timeout) complete.
    Jun 08 08:51:59 Ira-Lenovo su[587]: (to root) ira on pts/0
    Jun 08 08:51:59 Ira-Lenovo su[587]: pam_unix(su:session): session opened for user root by ira(uid=1000)

    See https://bbs.archlinux.org/viewtopic.php?id=182030
    Here's the change you recently applied: https://projects.archlinux.org/svntogit … 882c43178c.

  • Problem with auto start-stop script

    Hi to All,
    Logged as root. I have create in /etc/rc.d/init.d this file and saved as dbora (Oracle Linux 5.4):
    +#!/bin/sh+
    +# chkconfig: 345 99 10+
    +# description: Oracle auto start-stop script.+
    +#+
    +# Set ORA_HOME to be equivalent to the $ORACLE_HOME+
    +# from which you wish to execute dbstart and dbshut;+
    +#+
    +# Set ORA_OWNER to the user id of the owner of the+
    +# Oracle database in ORA_HOME.+
    ORA_HOME=/u01/app/oracle/product/10.2.0/db_1
    ORA_OWNER=oracle
    +if [ ! -f $ORA_HOME/bin/dbstart ]+
    then
    echo "Oracle startup: cannot start"
    exit
    fi
    case "$1" in
    +'start')+
    +# Start the Oracle databases:+
    +# The following command assumes that the oracle login+
    +# will not prompt the user for any values+
    su - $ORA_OWNER -c "$ORA_HOME/bin/dbstart $ORA_HOME"
    touch /var/lock/subsys/dbora
    +;;+
    +'stop')+
    +# Stop the Oracle databases:+
    +# The following command assumes that the oracle login+
    +# will not prompt the user for any values+
    su - $ORA_OWNER -c "$ORA_HOME/bin/dbshut $ORA_HOME"
    rm -f /var/lock/subsys/dbora
    +;;+
    esac
    After creation I have execute:
    *#chmod 750 /etc/rc.d/init.d/dbora*
    *#chkconfig --add /etc/rc.d/init.d/dbora*
    The last command return this message:
    +"service dbora does not support chkconfig"+.
    Can You help me? Have You an idea ?
    Thank You and best regards
    Gaetano

    sb92075 wrote:
    Oracle RDBMS needs to be started by process running at OS level as owner of Oracle software; typically OS user "oracle" & not as ROOT!Ok,
    But I have founded this script at [http://www.oracle-base.com/articles/linux/AutomatingDatabaseStartupAndShutdownOnLinux.php].
    The article report:
    Article
    When using RAC or ASM under Oracle 10g Release 2 or above, the Oracle Clusterware automatically starts and stops the Oracle database instances, so the following procedures are not necessary. For all other cases, you can use the methods described below.I must suppose, that the author has written an incorrect article?
    Best Regards
    Gaetano

  • Auto Start Dependencies?

    Hi,
    I have a quick question for Sun Cluster 3.2.
    I have a HAStoragePlus resource group, and a Logical Hostname resource group, which an NFS resource depends on the resources in both of those groups. How can I have it auto-start dependencies if all are offline?
    Ie, everything is in offline state, and I say to start nfs-rg resource group...it will complain, instead of bringing up the required resources from the other groups. Is there a way to make it do that?
    Thanks,
    -Matt

    Bringing this back from the dead.
    Because of various reasons, we only got this set up about 2 or so weeks ago.
    Here's my issue (mind you, it's getting late here, so please bear with me if I missed something obvious).
    I have 2 resource groups:
    zfs-rg:
    storage-rs (HAStoragePlus)
    zfs-rs (LogicalHostName)
    nfs-rg:
    nfs-rs (HA NFS)
    I'm going to be adding a third rg:
    samba-rg:
    samba-rs (HA SAMBA)
    Here's what I would like:
    To be able to bring up or down the NFS and / or SAMBA services without affecting each other, and without affecting the storage and logical hostname. However, both the storage and logical hostname need to be on the current node in order to start either service.
    Here's what I have:
    clresource create -g nfs-rg -t SUNW.nfs \
    -p Resource_dependencies=storage-rs,zfs-rs nfs-rs
    clresource create -g zfs-rg -t SUNW.HAStoragePlus \
    -p Zpools=HApool -p Resource_dependencies=zfs-rs storage-rs
    /usr/cluster/bin/clresourcegroup create -p nodelist=zfs-2,zfs-1 zfs-rg
    /usr/cluster/bin/clreslogicalhostname create -g zfs-rg -h zfs -N sc_ipmp0@zfs-2,sc_ipmp0@zfs-1 zfs-rs
    /usr/cluster/bin/clresourcegroup online -emM zfs-rg
    That's what was used to create everything, and I also set an affinity of zfs-rg:
    RG_affinities: ++nfs-rg
    Now, if zfs-rg is NOT running, it auto-starts upon trying to start nfs-rg (goal!).
    BUT, it auto STOPS upon shutdown of nfs-rg. Not what I want.
    Should it only be a nfs-rg? Am I doing this backwards? Will I have to add a + or +samba-rg to the zfs RG_affinities?
    I looked at those blog entries, understood some of it, but I would think this is fairly straightforward, but I don't see any examples of it that I can find...
    Thanks.
    -Matt

  • Auto-Start Tidal Agent services

    Hi all,
         Do you guys have an idea on how to auto-start the service of tidal agent in linux? Thanks!

    Thanks guys for the inputs.
    It is now working, this is what I did:
    I created "mystartup.sh" at etc/rc.d/init.d with this script inside:
    #!/bin/bash
    /opt/TIDAL/Agent/bin/tagent TIDALAGENT1 start
    #author: Lodz
    #chkconfig: 345 25 75
    #description: tidal agent auto startup
    then i added the shell script on boot using this commands:
    # chkconfig --add mystartup.sh
    # chkconfig mystratup.sh on

Maybe you are looking for