3.14 announced as Greg's next LTS kernel. linux-lts -- 3.14?

As the title says, Greg has announced officially that 3.14 will be the next LTS kernel he is maintaining. Will ArchLinux be moving the linux-lts branch to 3.14? (Should I have posted this on the Arch Mailing Lists?)
Last edited by clfarron4 (2014-07-03 19:54:24)

Indeed it is. I'll request for this to be closed.

Similar Messages

  • [Unsolved, closed] Grub not showing other kernel (linux-lts)

    Hi,
    Stuck with Grub not showing other kernel, started with willing to keep two kernels.
    grub config file shows both kernels correctly but still not appearing at boot (it's like pale black/blue, seems I am stuck with grub legacy? tried reinstallation etc but didn't work):
    Boot menu
    Arch Linux
    Arch Linux Fallback
    HDT
    Reboot
    Power
    Sorry can't produce screenshot.
    Disk info
    Device Type
    /dev/sda1 Linux filesystem
    /dev/sda2 Linux swap
    /dev/sda3 Linux home
    Note: gparted shows 'legacy_boot' flag on /sda1
    Config/files/output are:
    # update-grub
    Generating grub configuration file ...
    Found linux image: /boot/vmlinuz-linux-lts
    Found initrd image: /boot/initramfs-linux-lts.img
    Found fallback initramfs image: /boot/initramfs-linux-lts-fallback.img
    Found linux image: /boot/vmlinuz-linux
    Found initrd image: /boot/initramfs-linux.img
    Found fallback initramfs image: /boot/initramfs-linux-fallback.img
    No volume groups found
    done
    # cat /boot/grub/grub.cfg:
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    if [ "${next_entry}" ] ; then
    set default="${next_entry}"
    set next_entry=
    save_env next_entry
    set boot_once=true
    else
    set default="0"
    fi
    if [ x"${feature_menuentry_id}" = xy ]; then
    menuentry_id_option="--id"
    else
    menuentry_id_option=""
    fi
    export menuentry_id_option
    if [ "${prev_saved_entry}" ]; then
    set saved_entry="${prev_saved_entry}"
    save_env saved_entry
    set prev_saved_entry=
    save_env prev_saved_entry
    set boot_once=true
    fi
    function savedefault {
    if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
    fi
    function load_video {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    fi
    if [ x$feature_default_font_path = xy ] ; then
    font=unicode
    else
    insmod part_gpt
    insmod ext2
    set root='hd0,gpt1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 c5349960-1eb2-4af6-a5c0-6b4356da4ae1
    else
    search --no-floppy --fs-uuid --set=root c5349960-1eb2-4af6-a5c0-6b4356da4ae1
    fi
    font="/usr/share/grub/unicode.pf2"
    fi
    if loadfont $font ; then
    set gfxmode=auto
    load_video
    insmod gfxterm
    set locale_dir=$prefix/locale
    set lang=en_US
    insmod gettext
    fi
    terminal_input console
    terminal_output gfxterm
    if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=5
    # Fallback normal timeout code in case the timeout_style feature is
    # unavailable.
    else
    set timeout=5
    fi
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/01_grub-customizer_menu_color_helper ###
    ### END /etc/grub.d/01_grub-customizer_menu_color_helper ###
    ### BEGIN /etc/grub.d/10_linux_proxy ###
    menuentry "Arch Linux" --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-c5349960-1eb2-4af6-a5c0-6b4356da4ae1' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod ext2
    set root='hd0,gpt1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 c5349960-1eb2-4af6-a5c0-6b4356da4ae1
    else
    search --no-floppy --fs-uuid --set=root c5349960-1eb2-4af6-a5c0-6b4356da4ae1
    fi
    echo 'Loading Linux linux-lts ...'
    linux /boot/vmlinuz-linux-lts root=UUID=c5349960-1eb2-4af6-a5c0-6b4356da4ae1 rw quiet
    echo 'Loading initial ramdisk ...'
    initrd /boot/initramfs-linux-lts.img
    menuentry "Arch Linux, with Linux linux-lts" --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-lts-advanced-c5349960-1eb2-4af6-a5c0-6b4356da4ae1' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod ext2
    set root='hd0,gpt1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 c5349960-1eb2-4af6-a5c0-6b4356da4ae1
    else
    search --no-floppy --fs-uuid --set=root c5349960-1eb2-4af6-a5c0-6b4356da4ae1
    fi
    echo 'Loading Linux linux-lts ...'
    linux /boot/vmlinuz-linux-lts root=UUID=c5349960-1eb2-4af6-a5c0-6b4356da4ae1 rw quiet
    echo 'Loading initial ramdisk ...'
    initrd /boot/initramfs-linux-lts.img
    menuentry "Arch Linux, with Linux linux-lts (fallback initramfs)" --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-lts-fallback-c5349960-1eb2-4af6-a5c0-6b4356da4ae1' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod ext2
    set root='hd0,gpt1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 c5349960-1eb2-4af6-a5c0-6b4356da4ae1
    else
    search --no-floppy --fs-uuid --set=root c5349960-1eb2-4af6-a5c0-6b4356da4ae1
    fi
    echo 'Loading Linux linux-lts ...'
    linux /boot/vmlinuz-linux-lts root=UUID=c5349960-1eb2-4af6-a5c0-6b4356da4ae1 rw quiet
    echo 'Loading initial ramdisk ...'
    initrd /boot/initramfs-linux-lts-fallback.img
    submenu "Advanced options for Arch Linux"{
    menuentry "Arch Linux, with Linux linux" --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-c5349960-1eb2-4af6-a5c0-6b4356da4ae1' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod ext2
    set root='hd0,gpt1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 c5349960-1eb2-4af6-a5c0-6b4356da4ae1
    else
    search --no-floppy --fs-uuid --set=root c5349960-1eb2-4af6-a5c0-6b4356da4ae1
    fi
    echo 'Loading Linux linux ...'
    linux /boot/vmlinuz-linux root=UUID=c5349960-1eb2-4af6-a5c0-6b4356da4ae1 rw quiet
    echo 'Loading initial ramdisk ...'
    initrd /boot/initramfs-linux.img
    menuentry "Arch Linux, with Linux linux (fallback initramfs)" --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-c5349960-1eb2-4af6-a5c0-6b4356da4ae1' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod ext2
    set root='hd0,gpt1'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 c5349960-1eb2-4af6-a5c0-6b4356da4ae1
    else
    search --no-floppy --fs-uuid --set=root c5349960-1eb2-4af6-a5c0-6b4356da4ae1
    fi
    echo 'Loading Linux linux ...'
    linux /boot/vmlinuz-linux root=UUID=c5349960-1eb2-4af6-a5c0-6b4356da4ae1 rw quiet
    echo 'Loading initial ramdisk ...'
    initrd /boot/initramfs-linux-fallback.img
    ### END /etc/grub.d/10_linux_proxy ###
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    ### END /etc/grub.d/40_custom ###
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f ${config_directory}/custom.cfg ]; then
    source ${config_directory}/custom.cfg
    elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
    source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    ### BEGIN /etc/grub.d/60_memtest86+ ###
    ### END /etc/grub.d/60_memtest86+ ###
    cat /etc/default/grub shows:
    GRUB_DEFAULT="0"
    GRUB_TIMEOUT="5"
    GRUB_DISTRIBUTOR="Arch"
    GRUB_CMDLINE_LINUX_DEFAULT="quiet"
    GRUB_CMDLINE_LINUX=""
    # Preload both GPT and MBR modules so that they are not missed
    GRUB_PRELOAD_MODULES="part_gpt part_msdos"
    # Uncomment to enable Hidden Menu, and optionally hide the timeout count
    #GRUB_HIDDEN_TIMEOUT="5"
    #GRUB_HIDDEN_TIMEOUT_QUIET="true"
    # Uncomment to use basic console
    GRUB_TERMINAL_INPUT="console"
    # Uncomment to disable graphical terminal
    #GRUB_TERMINAL_OUTPUT="console"
    # The resolution used on graphical terminal
    # note that you can use only modes which your graphic card supports via VBE
    # you can see them in real GRUB with the command `vbeinfo'
    GRUB_GFXMODE="auto"
    # Uncomment to allow the kernel use the same resolution used by grub
    GRUB_GFXPAYLOAD_LINUX="keep"
    # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
    # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
    #GRUB_DISABLE_LINUX_UUID="true"
    # Uncomment to disable generation of recovery mode menu entries
    GRUB_DISABLE_RECOVERY="true"
    # Uncomment and set to the desired menu colors. Used by normal and wallpaper
    # modes only. Entries specified as foreground/background.
    #GRUB_COLOR_NORMAL="light-blue/black"
    #GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
    # Uncomment one of them for the gfx desired, a image background or a gfxtheme
    #GRUB_BACKGROUND="/path/to/wallpaper"
    #GRUB_THEME="/path/to/gfxtheme"
    # Uncomment to get a beep at GRUB start
    #GRUB_INIT_TUNE="480 440 1"
    #GRUB_SAVEDEFAULT="true"
    Last edited by jackpot (2014-08-20 07:53:27)

    clfarron4 wrote:Did you install os-prober? Try running that and then running the other commands.
    Yes, did. Same result.
    Sanity Check: Is it booting from LiveUSB/CD? I would not expect HDT/Reboot or Power Off entries from a generated grub config. I would expect those entries from a LiveUSB/CD.
    From system itself, but tried all options (I knew) like 1) using fallback to install LTS and run commands, 2) live-CD, 3) kernel parameter systemd.unit etc
    No worries, I am giving up on issue for some time.
    EDIT:
    Thanks
    Last edited by jackpot (2014-08-20 11:14:32)

  • Skills marketplace - announce availability

    I'd like to make the following suggestion for Skills Marketplace:
    Provide an "Announce Availability" section, where oracle professionals - permanent and contract - announce availablity for their next job. Details would include availability date, primary skills and certifications, experience level, geographies, desired work type, and contact information. Prospective employers, hirers and agents can search on these attributes.

    Thank you for your feedback. We will forward your comments over to the OTN Team member in charge of SkillsMarketplace.
    Best Regards, OTN Team

  • Oracle8i for Linux Release announcement

    I received a copy of this Oracle marketing announcement today:
    The Linux tidal wave continues and Oracle is right at the
    forefront. We have
    been experiencing tremendous demand on Linux since Oracle8 was
    announced for
    that platform last October. Over 50,000 developers have
    downloaded Oracle8
    for Linux from Oracle Technology Network (OTN) since March, with
    the first
    20,000 coming in just the first 10 days! We now have over 800
    paying
    customers with over half the orders coming from enterprise
    accounts and most
    of the remainder orders from mid-sized businesses.
    This week Oracle is announcing the shipping of Oracle8i for
    Linux. Already,
    20,000 developers have registered for early access. With new
    internet
    technologies like Java and XML built right into Oracle8i for
    Linux, this
    release promises to be the hottest yet.
    Read on for more information about:
    - What are we announcing?
    - What are the key messages?
    - What is the pricing for Oracle8i on Linux?
    - Why does Oracle care about Linux?
    - Who are Oracle's major Linux Partners?
    - Which products are available on Linux?
    - Who is driving the Oracle on Linux effort and what are we
    doing?
    - Where to find more information about Oracle on Linux?
    What are we announcing?
    Oracle is announcing today that it has been receiving extremely
    strong demand
    for its Linux based products over the past quarter and is also
    shipping
    Oracle8i for Linux to manufacturing.
    What are the key messages?
    Linux represents the ultimate commodity operating system -- its
    fast, reliable
    and almost free! Businesses can now spend their time focusing on
    the higher
    value software they buy to run their businesses (such as
    databases and applications).
    With over 800 customers paying for Oracle on Linux, Linux is
    progressing from
    its roots as a student and developer operating system to a viable
    deployment
    environment in large business.
    Oracle has the best database on Linux. With over 50,000 people
    using Oracle8
    and over 20,000 people registered through Oracle Technology
    Network (OTN) for
    Oracle8i, Oracle is the overwhelming choice for the Linux
    operating system.
    What is the pricing for Oracle8i on Linux?
    Pricing of Oracle8i on Linux follows the standard Oracle price
    list (see
    http://appsweb.us.oracle.com/amapp/). Linux may be a freeware
    operating
    system, but Oracle on Linux is not free. Oracle does offer
    developer licenses
    through Oracle Technology Network (OTN) which allows developers
    to use Oracle
    software for non-commercial use.
    Why does Oracle care about Linux?
    Linux is hot! It is rapidly becoming the preferred platform for
    small ISP's
    and is used extensively by many of the internet's largest portal
    sites. For
    Oracle, Linux is the fastest growing operating system, growing at
    three times
    that of WindowsNT. Oracle on Linux presents customers a viable
    low-cost, yet
    highly stable alternative to WindowsNT. That said, with 46% of
    the NT market,
    Oracle is also the best selling database on NT!
    Oracle now has over 800 customers on Linux. This statistic alone
    strongly
    contradicts the common perception that Linux is solely used by
    students and
    developers. Linux has already established a foothold in many
    Fortune 100
    companies and although deployments are still currently small
    compared to NT
    and Solaris, they are accelerating rapidly.
    Which products are available on Linux?
    Currently available on Linux are:
    - Oracle8.0.5 Standard and Enterprise Edition
    - Oracle8i Release 8.1.5
    - Oracle Application Server 4.0.7 (40 Bit)
    - Oracle Application Server 3.0.2 (40 Bit)
    - Oracle WebDB 2.0.5.6.1
    Who are Oracle's major Linux Partners?
    Redhat Software - Linux distributors. Oracle has also made an
    equity
    investment in RedHat. (http://www.redhat.com)
    Caldera System - Linux distributors. Novell spin-off, focus
    primarily on
    enterprise customers. (http://www.caldera.com)
    Turbolinux - Linux distributor. Has a mostly Asia presence.
    (http://www.turbolinux.com)
    VA Linux Systems - Hardware vendor, making Linux systems.
    (http://www.linux.com)
    Linuxcare - Linux support provider. (http://www.linuxcare.com)
    Who is driving the Oracle on Linux effort?
    There are two teams within Oracle working closely to drive the
    Oracle strategy
    and goals on Linux: Internet Platform Marketing and the Linux SBU
    (Strategic
    Business Unit).
    Where to find more information about Oracle on Linux?
    Internal: http://worldwide-marketing.us.oracle.com/iPlatform
    External: http://platforms.oracle.com/linux
    http://technet.oracle.com
    Email [email protected]
    Contacts: Hongwei Lu ([email protected])
    David Lee ([email protected])
    Press Release
    ORACLE CAPITALIZES ON ENTERPRISE DEMAND FOR LINUX OFFERINGS WITH
    ANNOUNCEMENT
    OF ORACLE8i ON LINUX
    Early Adopters Programs Draws Nearly 20,000 Developers
    REDWOOD SHORES, Calif., July 19, 1999--Oracle Corporation, the
    number one
    choice for e-business, today announced dramatic growth and demand
    for Oracle
    on Linux with strong adoption in both enterprise and general
    business markets.
    Oracle also announced the general availability of Oracle8i on
    Linux, after a
    successful early adopter's program.
    Since Oracle Corp. announced Oracle8 on Linux, there have been
    over 50,000
    downloads from Oracle Technology Network
    (http://technet.oracle.com/ ). Now,
    after the announcement of Oracle8i, there have been nearly 20,000
    registrants
    for early access in the first few weeks. Outside the development
    community,
    Oracle has also seen overwhelming customer adoption with an
    excess of 800
    paying customers today -- over half of these orders from
    enterprise accounts
    and the remainder from small to mid-sized businesses and
    organizations.
    "Until the availability of Oracle database on Linux, we either
    had to rely on
    NT or use one of the shareware database servers available for
    Linux," says
    Jonathan August, President and CEO of Internection, Inc., a
    company providing
    customized Internet services solutions to businesses, including
    web hosting
    and e-commerce solutions. "Neither solution provided us the
    security,
    performance, manageability or reliability required by our
    customers. Oracle
    brings enterprise credibility and robustness to our products. As
    a result,
    we've gained access to customers ranging from small businesses to
    Fortune 100
    enterprises like Prudential and Pfizer. Our total revenue since
    the addition
    of Oracle on Linux has increased by 250%."
    "Oracle on Linux combines enterprise level reliability,
    scalability and
    performance with a free, robust and well-supported operating
    system," says
    Nick Marden, technical director of e-commerce, Xoom.com, and
    e-commerce
    service provider. "It enables Xoom.com to better understand our
    members'
    needs and respond to them quickly. Oracle on Linux represents an
    extraordinary value and it gets the job done."
    "Oracle is committed to bringing superior technology to the Linux
    community,"
    says Chuck Rozwat, senior vice president of Server Technologies
    at Oracle.
    "Oracle8i on Linux comes with both Java and XML built right in.
    Together they
    offer the most cost-effective way to deploy scalable Internet
    applications."
    Oracle8i is the first and only database specifically designed for
    the
    Internet. Oracle8i extends Oracle's long-standing technology
    leadership in
    the areas of data management, transaction processing and data
    warehousing to
    the new medium of the Internet. Oracle8i is the centerpiece of
    Oracle's
    Internet Platform, which also includes Oracle Application Server
    and Oracle's
    Internet development tools.
    Oracle Corporation is the world's leading supplier of software
    for information
    management, and the world's second largest software company.
    With annual
    revenues of more than $8.8 billion, the company offers its
    database,
    application server, tools and application products, along with
    related
    consulting, education and support services, in more than 145
    countries around
    the world.
    For more information about Oracle, please call 650/506-7000.
    Oracle's World
    Wide Web address is (URL) http://www.oracle.com/.
    Trademarks
    Oracle is a registered trademark and Oracle8i is a trademark or
    registered
    trademark of Oracle corporation. Other names may be trademarks
    of their
    respective owners.
    Oracle Worldwide Marketing
    null

    Yeah, I got a couple of those....but if you go to Oracle, there
    is nothing about it, and nothing new on the OTN download...
    We can hope...
    DAVID
    Jamie Kinney (guest) wrote:
    : I received a copy of this Oracle marketing announcement today:
    : The Linux tidal wave continues and Oracle is right at the
    : forefront. We have
    : been experiencing tremendous demand on Linux since Oracle8 was
    : announced for
    : that platform last October. Over 50,000 developers have
    : downloaded Oracle8
    : for Linux from Oracle Technology Network (OTN) since March,
    with
    : the first
    : 20,000 coming in just the first 10 days! We now have over 800
    : paying
    : customers with over half the orders coming from enterprise
    : accounts and most
    : of the remainder orders from mid-sized businesses.
    : This week Oracle is announcing the shipping of Oracle8i for
    : Linux. Already,
    : 20,000 developers have registered for early access. With new
    : internet
    : technologies like Java and XML built right into Oracle8i for
    : Linux, this
    : release promises to be the hottest yet.
    : Read on for more information about:
    : - What are we announcing?
    : - What are the key messages?
    : - What is the pricing for Oracle8i on Linux?
    : - Why does Oracle care about Linux?
    : - Who are Oracle's major Linux Partners?
    : - Which products are available on Linux?
    : - Who is driving the Oracle on Linux effort and what are we
    : doing?
    : - Where to find more information about Oracle on Linux?
    : What are we announcing?
    : Oracle is announcing today that it has been receiving extremely
    : strong demand
    : for its Linux based products over the past quarter and is also
    : shipping
    : Oracle8i for Linux to manufacturing.
    : What are the key messages?
    : Linux represents the ultimate commodity operating system -- its
    : fast, reliable
    : and almost free! Businesses can now spend their time focusing
    on
    : the higher
    : value software they buy to run their businesses (such as
    : databases and applications).
    : With over 800 customers paying for Oracle on Linux, Linux is
    : progressing from
    : its roots as a student and developer operating system to a
    viable
    : deployment
    : environment in large business.
    : Oracle has the best database on Linux. With over 50,000 people
    : using Oracle8
    : and over 20,000 people registered through Oracle Technology
    : Network (OTN) for
    : Oracle8i, Oracle is the overwhelming choice for the Linux
    : operating system.
    : What is the pricing for Oracle8i on Linux?
    : Pricing of Oracle8i on Linux follows the standard Oracle price
    : list (see
    : http://appsweb.us.oracle.com/amapp/). Linux may be a freeware
    : operating
    : system, but Oracle on Linux is not free. Oracle does offer
    : developer licenses
    : through Oracle Technology Network (OTN) which allows developers
    : to use Oracle
    : software for non-commercial use.
    : Why does Oracle care about Linux?
    : Linux is hot! It is rapidly becoming the preferred platform
    for
    : small ISP's
    : and is used extensively by many of the internet's largest
    portal
    : sites. For
    : Oracle, Linux is the fastest growing operating system, growing
    at
    : three times
    : that of WindowsNT. Oracle on Linux presents customers a viable
    : low-cost, yet
    : highly stable alternative to WindowsNT. That said, with 46% of
    : the NT market,
    : Oracle is also the best selling database on NT!
    : Oracle now has over 800 customers on Linux. This statistic
    alone
    : strongly
    : contradicts the common perception that Linux is solely used by
    : students and
    : developers. Linux has already established a foothold in many
    : Fortune 100
    : companies and although deployments are still currently small
    : compared to NT
    : and Solaris, they are accelerating rapidly.
    : Which products are available on Linux?
    : Currently available on Linux are:
    : - Oracle8.0.5 Standard and Enterprise Edition
    : - Oracle8i Release 8.1.5
    : - Oracle Application Server 4.0.7 (40 Bit)
    : - Oracle Application Server 3.0.2 (40 Bit)
    : - Oracle WebDB 2.0.5.6.1
    : Who are Oracle's major Linux Partners?
    : Redhat Software - Linux distributors. Oracle has also made an
    : equity
    : investment in RedHat. (http://www.redhat.com)
    : Caldera System - Linux distributors. Novell spin-off, focus
    : primarily on
    : enterprise customers. (http://www.caldera.com)
    : Turbolinux - Linux distributor. Has a mostly Asia presence.
    : (http://www.turbolinux.com)
    : VA Linux Systems - Hardware vendor, making Linux systems.
    : (http://www.linux.com)
    : Linuxcare - Linux support provider. (http://www.linuxcare.com)
    : Who is driving the Oracle on Linux effort?
    : There are two teams within Oracle working closely to drive the
    : Oracle strategy
    : and goals on Linux: Internet Platform Marketing and the Linux
    SBU
    : (Strategic
    : Business Unit).
    : Where to find more information about Oracle on Linux?
    : Internal: http://worldwide-marketing.us.oracle.com/iPlatform
    : External: http://platforms.oracle.com/linux
    : http://technet.oracle.com
    : Email [email protected]
    : Contacts: Hongwei Lu ([email protected])
    : David Lee ([email protected])
    : Press Release
    : ORACLE CAPITALIZES ON ENTERPRISE DEMAND FOR LINUX OFFERINGS
    WITH
    : ANNOUNCEMENT
    : OF ORACLE8i ON LINUX
    : Early Adopters Programs Draws Nearly 20,000 Developers
    : REDWOOD SHORES, Calif., July 19, 1999--Oracle Corporation, the
    : number one
    : choice for e-business, today announced dramatic growth and
    demand
    : for Oracle
    : on Linux with strong adoption in both enterprise and general
    : business markets.
    : Oracle also announced the general availability of Oracle8i on
    : Linux, after a
    : successful early adopter's program.
    : Since Oracle Corp. announced Oracle8 on Linux, there have been
    : over 50,000
    : downloads from Oracle Technology Network
    : (http://technet.oracle.com/ ). Now,
    : after the announcement of Oracle8i, there have been nearly
    20,000
    : registrants
    : for early access in the first few weeks. Outside the
    development
    : community,
    : Oracle has also seen overwhelming customer adoption with an
    : excess of 800
    : paying customers today -- over half of these orders from
    : enterprise accounts
    : and the remainder from small to mid-sized businesses and
    : organizations.
    : "Until the availability of Oracle database on Linux, we either
    : had to rely on
    : NT or use one of the shareware database servers available for
    : Linux," says
    : Jonathan August, President and CEO of Internection, Inc., a
    : company providing
    : customized Internet services solutions to businesses, including
    : web hosting
    : and e-commerce solutions. "Neither solution provided us the
    : security,
    : performance, manageability or reliability required by our
    : customers. Oracle
    : brings enterprise credibility and robustness to our products.
    As
    : a result,
    : we've gained access to customers ranging from small businesses
    to
    : Fortune 100
    : enterprises like Prudential and Pfizer. Our total revenue
    since
    : the addition
    : of Oracle on Linux has increased by 250%."
    : "Oracle on Linux combines enterprise level reliability,
    : scalability and
    : performance with a free, robust and well-supported operating
    : system," says
    : Nick Marden, technical director of e-commerce, Xoom.com, and
    : e-commerce
    : service provider. "It enables Xoom.com to better understand
    our
    : members'
    : needs and respond to them quickly. Oracle on Linux represents
    an
    : extraordinary value and it gets the job done."
    : "Oracle is committed to bringing superior technology to the
    Linux
    : community,"
    : says Chuck Rozwat, senior vice president of Server Technologies
    : at Oracle.
    : "Oracle8i on Linux comes with both Java and XML built right in.
    : Together they
    : offer the most cost-effective way to deploy scalable Internet
    : applications."
    : Oracle8i is the first and only database specifically designed
    for
    : the
    : Internet. Oracle8i extends Oracle's long-standing technology
    : leadership in
    : the areas of data management, transaction processing and data
    : warehousing to
    : the new medium of the Internet. Oracle8i is the centerpiece of
    : Oracle's
    : Internet Platform, which also includes Oracle Application
    Server
    : and Oracle's
    : Internet development tools.
    : Oracle Corporation is the world's leading supplier of software
    : for information
    : management, and the world's second largest software company.
    : With annual
    : revenues of more than $8.8 billion, the company offers its
    : database,
    : application server, tools and application products, along with
    : related
    : consulting, education and support services, in more than 145
    : countries around
    : the world.
    : For more information about Oracle, please call 650/506-7000.
    : Oracle's World
    : Wide Web address is (URL) http://www.oracle.com/.
    : Trademarks
    : Oracle is a registered trademark and Oracle8i is a trademark or
    : registered
    : trademark of Oracle corporation. Other names may be trademarks
    : of their
    : respective owners.
    : Oracle Worldwide Marketing
    null

  • [SOLVED] Keyboard & Resume with Laptop (MBP 6,2 w/ linux & linux-lts)

    I am using a frequently updated Arch install on a Macbook Pro 6,2.  I have an intermittent problem for the last week or two.  I am not sure how to troubleshoot.  I could be missing something, but I am not sure what.  I use systemd power features to suspend my laptop (systemctl hibernate).  I tried with current linux (3.15.7-1) and even started using linux-lts (3.14.15-1).  It does not happen every resume, but very frequently I can boot, go past refind, select the boot entry (keyboard works in grub2), enter the LUKS passphrase (keyboard works), and after resume I can get the password prompt in xscreensaver.  At this point, the mouse works but not the keyboard.  I plug in a spare external USB keyboard, and then I reload hid_apple with rmmod and modprobe, and fix the X keyboard settings.  Only then does the Macbook discrete keyboard work.  Does anyone have ideas how to fix this?
    Mkinitcpio hooks:
    HOOKS="base udev autodetect modconf keymap block encrypt lvm2 resume filesystems keyboard fsck shutdown modconf consolefont"
    Grub kernel parameters (I only recently added nmi_watchdog=0, as this was causing other failed resumes and I thought it was inter-related, the keyboard issue occurs regardless however):
    GRUB_CMDLINE_LINUX_DEFAULT="quiet"
    GRUB_CMDLINE_LINUX="cryptdevice=/dev/disk/by-uuid/00000000-0000-0000-0000-000000000000:vgmain resume=/dev/mapper/vgmain-lvswap i915.lvds_channel_mode=2 i915.lvds_use_ssc=0 i915.lvds_downclock=1 i915.i915_enable_rc6=7 i915.i915_enable_fbc=1 i915.modeset=1 radeon.modeset=0 nouveau.modeset=0 pcie_aspm=force video=efifb nmi_watchdog=0"
    Possibly related error messages from dmesg:
    [ 9564.919858] PM: Hibernation mode set to 'platform'
    [ 9565.302231] PM: Syncing filesystems ... done.
    [ 9565.530733] Freezing user space processes ... (elapsed 0.001 seconds) done.after
    [ 9565.532007] PM: Marking nosave pages: [mem 0x0008e000-0x0008ffff]
    [ 9565.532013] PM: Marking nosave pages: [mem 0x000a0000-0x000fffff]
    [ 9565.532018] PM: Marking nosave pages: [mem 0x8b673000-0x8b6eefff]
    [ 9565.532024] PM: Marking nosave pages: [mem 0x8b6f5000-0x8b70efff]
    [ 9565.532027] PM: Marking nosave pages: [mem 0x8b737000-0x8b75efff]
    [ 9565.532030] PM: Marking nosave pages: [mem 0x8b785000-0x8b7aefff]
    [ 9565.532033] PM: Marking nosave pages: [mem 0x8b7f6000-0xffffffff]
    [ 9565.534539] PM: Basic memory bitmaps created
    [ 9565.534601] PM: Preallocating image memory... done (allocated 338927 pages)
    [ 9565.678930] PM: Allocated 1355708 kbytes in 0.14 seconds (9683.62 MB/s)
    [ 9565.678933] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
    [ 9565.680277] Suspending console(s) (use no_console_suspend to debug)
    [ 9565.680332] wlp3s0: deauthenticating from 20:4e:7f:47:df:7b by local choice (Reason: 3=DEAUTH_LEAVING)
    [ 9565.718955] cfg80211: Calling CRDA to update world regulatory domain
    [ 9565.719076] apple-gmux 00:08: System wakeup disabled by ACPI
    [ 9566.443463] ------------[ cut here ]------------
    [ 9566.443492] WARNING: CPU: 1 PID: 14868 at net/mac80211/util.c:662 ieee80211_can_queue_work.isra.11+0x35/0x40 [mac80211]()
    [ 9566.443493] queueing ieee80211 work while going to suspend
    [ 9566.443543] Modules linked in: ctr ccm bnep sysdig_probe(O) xt_LOG xt_limit ipt_REJECT xt_tcpudp nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack iptable_filter ip_tables x_tables nls_iso8859_
    1 nls_cp437 vfat fat ecb btusb bluetooth uvcvideo videobuf2_vmalloc videobuf2_memops videobuf2_core 6lowpan_iphc videodev media bcm5974 mousedev hid_generic arc4 b43 nvram mac80211 cfg80211 ssb mmc_core rf
    kill rng_core pcmcia pcmcia_core tg3 apple_gmux joydev snd_hda_codec_cirrus snd_hda_codec_generic iTCO_wdt iTCO_vendor_support snd_hda_intel coretemp intel_powerclamp snd_hda_controller snd_hda_codec snd_h
    wdep snd_pcm ptp snd_timer pps_core snd libphy applesmc led_class input_polldev bcma soundcore hwmon intel_ips sbs microcode pcspkr i2c_i801 lpc_ich shpchp sbshc ac apple_bl mac_hid evdev battery
    [ 9566.443586] acpi_cpufreq processor fuse nfs lockd sunrpc fscache kvm_intel kvm ext4 crc16 mbcache jbd2 algif_skcipher af_alg hid_appleir uas usb_storage hid_apple usbhid hid dm_crypt dm_mod sr_mod sd_m
    od cdrom crc_t10dif crct10dif_pclmul crct10dif_common crc32_pclmul crc32c_intel ghash_clmulni_intel aesni_intel aes_x86_64 lrw gf128mul glue_helper ablk_helper cryptd ahci libahci libata scsi_mod uhci_hcd
    ehci_pci firewire_ohci ehci_hcd firewire_core crc_itu_t usbcore usb_common intel_agp i915 video button i2c_algo_bit drm_kms_helper intel_gtt drm i2c_core
    [ 9566.443590] CPU: 1 PID: 14868 Comm: kworker/u16:5 Tainted: G O 3.15.7-1-ARCH #1
    [ 9566.443591] Hardware name: Apple Inc. MacBookPro6,2/Mac-F22586C8, BIOS MBP61.88Z.0057.B0C.1007261552 07/26/10
    [ 9566.443597] Workqueue: events_unbound async_run_entry_fn
    [ 9566.443601] 0000000000000000 00000000ccdafa76 ffff88016bc43d88 ffffffff8150880e
    [ 9566.443603] ffff88016bc43dd0 ffff88016bc43dc0 ffffffff81069b2d 0000000000000000
    [ 9566.443606] ffff880163cbff58 0000000000000000 ffffffffa096b1a0 ffff880163cbf9d8
    [ 9566.443607] Call Trace:
    [ 9566.443616] <IRQ> [<ffffffff8150880e>] dump_stack+0x4d/0x6f
    [ 9566.443622] [<ffffffff81069b2d>] warn_slowpath_common+0x7d/0xa0
    [ 9566.443629] [<ffffffffa096b1a0>] ? led_classdev_register+0x160/0x160 [led_class]
    [ 9566.443632] [<ffffffff81069bac>] warn_slowpath_fmt+0x5c/0x80
    [ 9566.443645] [<ffffffffa0bdfb35>] ieee80211_can_queue_work.isra.11+0x35/0x40 [mac80211]
    [ 9566.443657] [<ffffffffa0bdfb65>] ieee80211_queue_work+0x25/0x50 [mac80211]
    [ 9566.443667] [<ffffffffa0ca334c>] b43_led_brightness_set+0x2c/0x30 [b43]
    [ 9566.443672] [<ffffffffa096b2a6>] led_timer_function+0x106/0x120 [led_class]
    [ 9566.443677] [<ffffffff81076dd6>] call_timer_fn+0x36/0x160
    [ 9566.443682] [<ffffffffa096b1a0>] ? led_classdev_register+0x160/0x160 [led_class]
    [ 9566.443685] [<ffffffff81077804>] run_timer_softirq+0x274/0x320
    [ 9566.443689] [<ffffffff8106edca>] __do_softirq+0xfa/0x2f0
    [ 9566.443693] [<ffffffff81517ddc>] do_softirq_own_stack+0x1c/0x30
    [ 9566.443697] <EOI> [<ffffffff8106ec0d>] do_softirq.part.19+0x3d/0x40
    [ 9566.443700] [<ffffffff8106ecb8>] __local_bh_enable_ip+0xa8/0xc0
    [ 9566.443705] [<ffffffff8150dc6a>] _raw_spin_unlock_bh+0x1a/0x20
    [ 9566.443712] [<ffffffffa0aa3dc6>] tg3_suspend+0x1f6/0x360 [tg3]
    [ 9566.443715] [<ffffffff812cff40>] ? pci_pm_poweroff+0x100/0x100
    [ 9566.443719] [<ffffffff812cff9e>] pci_pm_freeze+0x5e/0xf0
    [ 9566.443721] [<ffffffff812cff40>] ? pci_pm_poweroff+0x100/0x100
    [ 9566.443726] [<ffffffff8139ce19>] dpm_run_callback+0x49/0xa0
    [ 9566.443728] [<ffffffff8139e33b>] __device_suspend+0xfb/0x2b0
    [ 9566.443731] [<ffffffff8139e50f>] async_suspend+0x1f/0xa0
    [ 9566.443733] [<ffffffff81093787>] async_run_entry_fn+0x37/0x130
    [ 9566.443737] [<ffffffff810861e8>] process_one_work+0x168/0x450
    [ 9566.443740] [<ffffffff81086c42>] worker_thread+0x132/0x3e0
    [ 9566.443743] [<ffffffff81086b10>] ? manage_workers.isra.23+0x2d0/0x2d0
    [ 9566.443746] [<ffffffff8108d44a>] kthread+0xea/0x100
    [ 9566.443749] [<ffffffff8108d360>] ? kthread_create_on_node+0x1b0/0x1b0
    [ 9566.443753] [<ffffffff815164fc>] ret_from_fork+0x7c/0xb0
    [ 9566.443756] [<ffffffff8108d360>] ? kthread_create_on_node+0x1b0/0x1b0
    [ 9566.443758] ---[ end trace e9560e484cbfef3b ]---
    [ 9567.261054] PM: freeze of devices complete after 1579.740 msecs
    [ 9567.261448] PM: late freeze of devices complete after 0.390 msecs
    [ 9567.262389] PM: noirq freeze of devices complete after 0.937 msecs
    [ 9567.262569] ACPI: Preparing to enter system sleep state S4
    [ 9567.276351] PM: Saving platform NVS memory
    [ 9567.276876] Disabling non-boot CPUs ...
    [ 9567.278176] kvm: disabling virtualization on CPU1
    [ 9567.379702] smpboot: CPU 1 is now offline
    [ 9567.381291] kvm: disabling virtualization on CPU2
    [ 9567.483139] smpboot: CPU 2 is now offline
    [ 9567.484729] kvm: disabling virtualization on CPU3
    [ 9567.586502] smpboot: CPU 3 is now offline
    [ 9567.586996] PM: Creating hibernation image:
    [ 9567.640053] PM: Need to copy 337375 pages
    [ 9567.640056] PM: Normal pages needed: 337375 + 1024, available pages: 675936
    [ 9567.587643] PM: Restoring platform NVS memory
    [ 9567.588236] microcode: CPU0 sig=0x20655, pf=0x10, revision=0x4
    [ 9567.588271] Enabling non-boot CPUs ...
    [ 9567.588320] x86: Booting SMP configuration:
    [ 9567.588321] smpboot: Booting Node 0 Processor 1 APIC 0x1
    [ 9567.599478] Disabled fast string operations
    [ 9567.599519] kvm: enabling virtualization on CPU1
    [ 9567.602166] microcode: CPU1 sig=0x20655, pf=0x10, revision=0x2
    [ 9567.602562] microcode: CPU1 updated to revision 0x4, date = 2013-06-28
    [ 9567.602568] CPU1 is up
    [ 9567.602590] smpboot: Booting Node 0 Processor 2 APIC 0x4
    [ 9567.613731] Disabled fast string operations
    [ 9567.613775] kvm: enabling virtualization on CPU2
    [ 9567.616181] microcode: CPU2 sig=0x20655, pf=0x10, revision=0x2
    [ 9567.616357] microcode: CPU2 updated to revision 0x4, date = 2013-06-28
    [ 9567.616364] CPU2 is up
    [ 9567.616385] smpboot: Booting Node 0 Processor 3 APIC 0x5
    [ 9567.627524] Disabled fast string operations
    [ 9567.627562] kvm: enabling virtualization on CPU3
    [ 9567.629966] microcode: CPU3 sig=0x20655, pf=0x10, revision=0x4
    [ 9567.629972] CPU3 is up
    [ 9567.632259] ACPI: Waking up from system sleep state S4
    [ 9568.101705] PM: noirq restore of devices complete after 13.521 msecs
    [ 9568.103860] PM: early restore of devices complete after 2.129 msecs
    [ 9568.159681] usb usb1: root hub lost power or was reset
    [ 9568.159683] usb usb2: root hub lost power or was reset
    [ 9568.163585] ehci-pci 0000:00:1a.7: cache line size of 256 is not supported
    [ 9568.163587] ehci-pci 0000:00:1d.7: cache line size of 256 is not supported
    [ 9568.163753] snd_hda_intel 0000:00:1b.0: irq 44 for MSI/MSI-X
    [ 9568.165119] sd 0:0:0:0: [sda] Starting disk
    [ 9568.488542] usb 1-1: reset high-speed USB device number 2 using ehci-pci
    [ 9568.511909] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 9568.548586] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 9568.655284] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 9568.655462] ata1.00: configured for UDMA/100
    [ 9568.721990] usb 2-1: reset high-speed USB device number 2 using ehci-pci
    [ 9568.925612] usb 1-1.1: reset full-speed USB device number 3 using ehci-pci
    [ 9569.082203] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 9569.102320] usb 1-1.2: reset full-speed USB device number 4 using ehci-pci
    [ 9569.279226] usb 1-1.3: reset high-speed USB device number 5 using ehci-pci
    [ 9569.369104] ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 9569.402447] ata2.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 9569.402457] ata2.00: configured for UDMA/100
    [ 9569.455945] usb 2-1.1: reset high-speed USB device number 3 using ehci-pci
    [ 9569.809584] usb 2-1.2: reset low-speed USB device number 4 using ehci-pci
    [ 9570.149810] usb 1-1.1.3: reset full-speed USB device number 8 using ehci-pci
    [ 9571.230289] b43-phy0: Loading firmware version 666.2 (2011-02-23 01:15:07)
    [ 9571.334093] PM: restore of devices complete after 3172.436 msecs
    [ 9571.335004] input: bcm5974 as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.2/1-1.2:1.2/input/input16
    [ 9571.335325] PM: Image restored successfully.
    [ 9571.335345] PM: Basic memory bitmaps freed
    [ 9571.335347] Restarting tasks ... done.
    [ 9571.345405] cfg80211: World regulatory domain updated:
    [ 9571.345410] cfg80211: DFS Master region: unset
    [ 9571.345411] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
    [ 9571.345414] cfg80211: (2402000 KHz - 2472000 KHz @ 0 KHz), (N/A, 2000 mBm), (N/A)
    [ 9571.345417] cfg80211: (2457000 KHz - 2482000 KHz @ 0 KHz), (N/A, 2000 mBm), (N/A)
    [ 9571.345419] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
    [ 9571.345421] cfg80211: (5170000 KHz - 5250000 KHz @ 160000 KHz), (N/A, 2000 mBm), (N/A)
    [ 9571.345423] cfg80211: (5250000 KHz - 5330000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
    [ 9571.345425] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
    [ 9571.345427] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
    [ 9571.345429] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
    [ 9571.345454] cfg80211: Calling CRDA for country: US
    [ 9571.368186] cfg80211: Regulatory domain changed to country: US
    [ 9571.368196] cfg80211: DFS Master region: FCC
    [ 9571.368198] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
    [ 9571.368202] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 3000 mBm), (N/A)
    [ 9571.368204] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 1700 mBm), (N/A)
    [ 9571.368206] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2300 mBm), (0 s)
    [ 9571.368208] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 3000 mBm), (N/A)
    [ 9571.368210] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
    [ 9572.331504] wlp3s0: authenticate with 20:4e:7f:47:df:7b
    [ 9572.331723] wlp3s0: send auth to 20:4e:7f:47:df:7b (try 1/3)
    [ 9572.333593] wlp3s0: authenticated
    [ 9572.334294] wlp3s0: associate with 20:4e:7f:47:df:7b (try 1/3)
    [ 9572.338042] wlp3s0: RX AssocResp from 20:4e:7f:47:df:7b (capab=0x411 status=0 aid=2)
    [ 9572.338623] wlp3s0: associated
    [ 9572.339026] cfg80211: Calling CRDA for country: US
    [ 9572.342328] cfg80211: Regulatory domain changed to country: US
    [ 9572.342336] cfg80211: DFS Master region: FCC
    [ 9572.342340] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
    [ 9572.342346] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 3000 mBm), (N/A)
    [ 9572.342352] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 1700 mBm), (N/A)
    [ 9572.342358] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2300 mBm), (0 s)
    [ 9572.342362] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 3000 mBm), (N/A)
    [ 9572.342367] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
    [ 9590.146154] usb 1-1.4: new low-speed USB device number 9 using ehci-pci
    [ 9590.253729] input: Dell Dell USB Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.4/1-1.4:1.0/0003:413C:2003.0006/input/input17
    [ 9590.253956] hid-generic 0003:413C:2003.0006: input,hidraw3: USB HID v1.10 Keyboard [Dell Dell USB Keyboard] on usb-0000:00:1a.7-1.4/input0
    [ 9631.148436] input: Apple Inc. Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.2/1-1.2:1.0/0003:05AC:0236.0001/input/input18
    [ 9631.148613] apple 0003:05AC:0236.0001: input,hidraw0: USB HID v1.11 Keyboard [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:1a.7-1.2/input0
    [ 9631.150341] apple 0003:05AC:0236.0002: hidraw1: USB HID v1.11 Device [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:1a.7-1.2/input1
    [ 9633.751435] usb 1-1.4: USB disconnect, device number 9
    Dump from journalctl --this-boot --no-pager (I see some ehci and usb bus errors, but not sure if this is related and/or why it is problematic now):
    -- Logs begin at Thu 2014-03-27 12:56:02 AST, end at Sat 2014-08-16 13:55:40 AST. --
    Aug 16 09:08:23 mbp62 systemd-journal[224]: Runtime journal is using 8.0M (max allowed 250.0M, trying to leave 286.5M free of 1.8G available → current limit 250.0M).
    Aug 16 09:08:23 mbp62 systemd-journal[224]: Runtime journal is using 8.0M (max allowed 250.0M, trying to leave 286.5M free of 1.8G available → current limit 250.0M).
    Aug 16 09:08:23 mbp62 kernel: Initializing cgroup subsys cpuset
    Aug 16 09:08:23 mbp62 kernel: Initializing cgroup subsys cpu
    Aug 16 09:08:23 mbp62 kernel: Initializing cgroup subsys cpuacct
    Aug 16 09:08:23 mbp62 kernel: Linux version 3.15.7-1-ARCH (nobody@var-lib-archbuild-extra-x86_64-thomas) (gcc version 4.9.1 (GCC) ) #1 SMP PREEMPT Mon Jul 28 20:06:17 CEST 2014
    Aug 16 09:08:23 mbp62 kernel: Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=982a60fb-4e98-4afc-b1a6-86d84ec44d10 rw cryptdevice=/dev/disk/by-uuid/298d8263-0546-4329-9ed0-a52c021f949f:vgmain resume=/dev/mapper/vgmain-lvswap i915.lvds_channel_mode=2 i915.lvds_use_ssc=0 i915.lvds_downclock=1 i915.i915_enable_rc6=7 i915.i915_enable_fbc=1 i915.modeset=1 radeon.modeset=0 nouveau.modeset=0 pcie_aspm=force video=efifb nmi_watchdog=0 quiet
    Aug 16 09:08:23 mbp62 kernel: Disabled fast string operations
    Aug 16 09:08:23 mbp62 kernel: e820: BIOS-provided physical RAM map:
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000008dfff] usable
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x000000000008e000-0x000000000008efff] reserved
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x00000000000a0000-0x00000000000bffff] reserved
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x0000000000100000-0x000000008b672fff] usable
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x000000008b673000-0x000000008b6eefff] ACPI NVS
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x000000008b6ef000-0x000000008b6f4fff] usable
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x000000008b6f5000-0x000000008b70efff] ACPI data
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x000000008b70f000-0x000000008b736fff] usable
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x000000008b737000-0x000000008b75efff] reserved
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x000000008b75f000-0x000000008b784fff] usable
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x000000008b785000-0x000000008b7aefff] type 20
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x000000008b7af000-0x000000008b7f5fff] usable
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x000000008b7f6000-0x000000008bffffff] reserved
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x000000008de00000-0x000000008fffffff] reserved
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x00000000e00f8000-0x00000000e00f8fff] reserved
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x00000000ffec4000-0x00000000ffee7fff] reserved
    Aug 16 09:08:23 mbp62 kernel: BIOS-e820: [mem 0x0000000100000000-0x000000016bffffff] usable
    Aug 16 09:08:23 mbp62 kernel: NX (Execute Disable) protection: active
    Aug 16 09:08:23 mbp62 kernel: efi: EFI v1.10 by Apple
    Aug 16 09:08:23 mbp62 kernel: efi: ACPI=0x8b70e000 ACPI 2.0=0x8b70e014 SMBIOS=0x8b674000
    Aug 16 09:08:23 mbp62 kernel: efi: mem00: type=7, attr=0xf, range=[0x0000000000000000-0x000000000008e000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem01: type=0, attr=0xf, range=[0x000000000008e000-0x000000000008f000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem02: type=10, attr=0xf, range=[0x000000000008f000-0x0000000000090000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem03: type=7, attr=0xf, range=[0x0000000000090000-0x00000000000a0000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem04: type=2, attr=0xf, range=[0x0000000000100000-0x0000000001060000) (15MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem05: type=7, attr=0xf, range=[0x0000000001060000-0x0000000002000000) (15MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem06: type=2, attr=0xf, range=[0x0000000002000000-0x0000000002f60000) (15MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem07: type=7, attr=0xf, range=[0x0000000002f60000-0x0000000037702000) (839MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem08: type=2, attr=0xf, range=[0x0000000037702000-0x0000000037b79000) (4MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem09: type=7, attr=0xf, range=[0x0000000037b79000-0x000000006683e000) (748MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem10: type=2, attr=0xf, range=[0x000000006683e000-0x0000000088b1c000) (546MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem11: type=4, attr=0xf, range=[0x0000000088b1c000-0x0000000088f1f000) (4MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem12: type=7, attr=0xf, range=[0x0000000088f1f000-0x0000000088f22000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem13: type=4, attr=0xf, range=[0x0000000088f22000-0x0000000089166000) (2MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem14: type=7, attr=0xf, range=[0x0000000089166000-0x0000000089167000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem15: type=4, attr=0xf, range=[0x0000000089167000-0x000000008967f000) (5MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem16: type=3, attr=0xf, range=[0x000000008967f000-0x0000000089682000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem17: type=4, attr=0xf, range=[0x0000000089682000-0x0000000089dad000) (7MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem18: type=7, attr=0xf, range=[0x0000000089dad000-0x0000000089dce000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem19: type=1, attr=0xf, range=[0x0000000089dce000-0x0000000089dec000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem20: type=7, attr=0xf, range=[0x0000000089dec000-0x0000000089e0b000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem21: type=4, attr=0xf, range=[0x0000000089e0b000-0x0000000089f5d000) (1MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem22: type=3, attr=0xf, range=[0x0000000089f5d000-0x0000000089f8f000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem23: type=4, attr=0xf, range=[0x0000000089f8f000-0x0000000089f96000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem24: type=3, attr=0xf, range=[0x0000000089f96000-0x0000000089f97000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem25: type=4, attr=0xf, range=[0x0000000089f97000-0x0000000089f98000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem26: type=3, attr=0xf, range=[0x0000000089f98000-0x0000000089f99000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem27: type=4, attr=0xf, range=[0x0000000089f99000-0x0000000089f9d000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem28: type=3, attr=0xf, range=[0x0000000089f9d000-0x0000000089fa4000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem29: type=4, attr=0xf, range=[0x0000000089fa4000-0x0000000089fad000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem30: type=3, attr=0xf, range=[0x0000000089fad000-0x0000000089fb0000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem31: type=4, attr=0xf, range=[0x0000000089fb0000-0x0000000089fcb000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem32: type=3, attr=0xf, range=[0x0000000089fcb000-0x000000008a000000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem33: type=4, attr=0xf, range=[0x000000008a000000-0x000000008a003000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem34: type=3, attr=0xf, range=[0x000000008a003000-0x000000008a02f000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem35: type=4, attr=0xf, range=[0x000000008a02f000-0x000000008a033000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem36: type=3, attr=0xf, range=[0x000000008a033000-0x000000008a038000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem37: type=4, attr=0xf, range=[0x000000008a038000-0x000000008a03d000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem38: type=3, attr=0xf, range=[0x000000008a03d000-0x000000008a041000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem39: type=4, attr=0xf, range=[0x000000008a041000-0x000000008a045000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem40: type=3, attr=0xf, range=[0x000000008a045000-0x000000008a059000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem41: type=4, attr=0xf, range=[0x000000008a059000-0x000000008a05b000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem42: type=3, attr=0xf, range=[0x000000008a05b000-0x000000008a05e000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem43: type=4, attr=0xf, range=[0x000000008a05e000-0x000000008a061000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem44: type=3, attr=0xf, range=[0x000000008a061000-0x000000008a062000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem45: type=4, attr=0xf, range=[0x000000008a062000-0x000000008a063000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem46: type=3, attr=0xf, range=[0x000000008a063000-0x000000008a065000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem47: type=4, attr=0xf, range=[0x000000008a065000-0x000000008a068000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem48: type=3, attr=0xf, range=[0x000000008a068000-0x000000008a069000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem49: type=4, attr=0xf, range=[0x000000008a069000-0x000000008a06a000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem50: type=3, attr=0xf, range=[0x000000008a06a000-0x000000008a06b000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem51: type=4, attr=0xf, range=[0x000000008a06b000-0x000000008a06d000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem52: type=3, attr=0xf, range=[0x000000008a06d000-0x000000008a06e000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem53: type=4, attr=0xf, range=[0x000000008a06e000-0x000000008a070000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem54: type=3, attr=0xf, range=[0x000000008a070000-0x000000008a07c000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem55: type=4, attr=0xf, range=[0x000000008a07c000-0x000000008a07f000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem56: type=3, attr=0xf, range=[0x000000008a07f000-0x000000008a082000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem57: type=4, attr=0xf, range=[0x000000008a082000-0x000000008a083000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem58: type=3, attr=0xf, range=[0x000000008a083000-0x000000008a08d000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem59: type=4, attr=0xf, range=[0x000000008a08d000-0x000000008a08f000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem60: type=3, attr=0xf, range=[0x000000008a08f000-0x000000008a095000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem61: type=4, attr=0xf, range=[0x000000008a095000-0x000000008a097000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem62: type=3, attr=0xf, range=[0x000000008a097000-0x000000008a099000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem63: type=4, attr=0xf, range=[0x000000008a099000-0x000000008a09c000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem64: type=3, attr=0xf, range=[0x000000008a09c000-0x000000008a0aa000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem65: type=4, attr=0xf, range=[0x000000008a0aa000-0x000000008a0b1000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem66: type=3, attr=0xf, range=[0x000000008a0b1000-0x000000008a0b9000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem67: type=4, attr=0xf, range=[0x000000008a0b9000-0x000000008a0bb000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem68: type=3, attr=0xf, range=[0x000000008a0bb000-0x000000008a0bd000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem69: type=4, attr=0xf, range=[0x000000008a0bd000-0x000000008a0c1000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem70: type=3, attr=0xf, range=[0x000000008a0c1000-0x000000008a0c4000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem71: type=4, attr=0xf, range=[0x000000008a0c4000-0x000000008a0c7000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem72: type=3, attr=0xf, range=[0x000000008a0c7000-0x000000008a0cb000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem73: type=4, attr=0xf, range=[0x000000008a0cb000-0x000000008a0cc000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem74: type=3, attr=0xf, range=[0x000000008a0cc000-0x000000008a0cf000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem75: type=4, attr=0xf, range=[0x000000008a0cf000-0x000000008a0d0000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem76: type=3, attr=0xf, range=[0x000000008a0d0000-0x000000008a0e5000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem77: type=4, attr=0xf, range=[0x000000008a0e5000-0x000000008a0e7000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem78: type=3, attr=0xf, range=[0x000000008a0e7000-0x000000008a0f3000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem79: type=4, attr=0xf, range=[0x000000008a0f3000-0x000000008a0f5000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem80: type=3, attr=0xf, range=[0x000000008a0f5000-0x000000008a0fb000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem81: type=4, attr=0xf, range=[0x000000008a0fb000-0x000000008a0fc000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem82: type=3, attr=0xf, range=[0x000000008a0fc000-0x000000008a100000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem83: type=4, attr=0xf, range=[0x000000008a100000-0x000000008a101000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem84: type=3, attr=0xf, range=[0x000000008a101000-0x000000008a103000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem85: type=4, attr=0xf, range=[0x000000008a103000-0x000000008a104000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem86: type=3, attr=0xf, range=[0x000000008a104000-0x000000008a105000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem87: type=4, attr=0xf, range=[0x000000008a105000-0x000000008a107000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem88: type=3, attr=0xf, range=[0x000000008a107000-0x000000008a10e000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem89: type=4, attr=0xf, range=[0x000000008a10e000-0x000000008a10f000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem90: type=3, attr=0xf, range=[0x000000008a10f000-0x000000008a118000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem91: type=4, attr=0xf, range=[0x000000008a118000-0x000000008a119000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem92: type=3, attr=0xf, range=[0x000000008a119000-0x000000008a126000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem93: type=4, attr=0xf, range=[0x000000008a126000-0x000000008a127000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem94: type=3, attr=0xf, range=[0x000000008a127000-0x000000008a12a000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem95: type=4, attr=0xf, range=[0x000000008a12a000-0x000000008a12c000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem96: type=3, attr=0xf, range=[0x000000008a12c000-0x000000008a12d000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem97: type=4, attr=0xf, range=[0x000000008a12d000-0x000000008a131000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem98: type=3, attr=0xf, range=[0x000000008a131000-0x000000008a135000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem99: type=4, attr=0xf, range=[0x000000008a135000-0x000000008a136000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem100: type=3, attr=0xf, range=[0x000000008a136000-0x000000008a139000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem101: type=4, attr=0xf, range=[0x000000008a139000-0x000000008a13b000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem102: type=3, attr=0xf, range=[0x000000008a13b000-0x000000008a13e000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem103: type=4, attr=0xf, range=[0x000000008a13e000-0x000000008a144000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem104: type=3, attr=0xf, range=[0x000000008a144000-0x000000008a14b000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem105: type=4, attr=0xf, range=[0x000000008a14b000-0x000000008a157000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem106: type=3, attr=0xf, range=[0x000000008a157000-0x000000008a158000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem107: type=4, attr=0xf, range=[0x000000008a158000-0x000000008a15a000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem108: type=3, attr=0xf, range=[0x000000008a15a000-0x000000008a15c000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem109: type=4, attr=0xf, range=[0x000000008a15c000-0x000000008a164000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem110: type=3, attr=0xf, range=[0x000000008a164000-0x000000008a168000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem111: type=4, attr=0xf, range=[0x000000008a168000-0x000000008a16e000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem112: type=3, attr=0xf, range=[0x000000008a16e000-0x000000008a16f000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem113: type=4, attr=0xf, range=[0x000000008a16f000-0x000000008a171000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem114: type=3, attr=0xf, range=[0x000000008a171000-0x000000008a174000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem115: type=4, attr=0xf, range=[0x000000008a174000-0x000000008a176000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem116: type=3, attr=0xf, range=[0x000000008a176000-0x000000008a178000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem117: type=4, attr=0xf, range=[0x000000008a178000-0x000000008a1fc000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem118: type=3, attr=0xf, range=[0x000000008a1fc000-0x000000008a21b000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem119: type=4, attr=0xf, range=[0x000000008a21b000-0x000000008a21d000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem120: type=3, attr=0xf, range=[0x000000008a21d000-0x000000008a228000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem121: type=4, attr=0xf, range=[0x000000008a228000-0x000000008a240000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem122: type=3, attr=0xf, range=[0x000000008a240000-0x000000008a244000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem123: type=4, attr=0xf, range=[0x000000008a244000-0x000000008a24e000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem124: type=3, attr=0xf, range=[0x000000008a24e000-0x000000008a24f000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem125: type=4, attr=0xf, range=[0x000000008a24f000-0x000000008a251000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem126: type=3, attr=0xf, range=[0x000000008a251000-0x000000008a255000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem127: type=4, attr=0xf, range=[0x000000008a255000-0x000000008a256000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem128: type=3, attr=0xf, range=[0x000000008a256000-0x000000008a257000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem129: type=4, attr=0xf, range=[0x000000008a257000-0x000000008a25b000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem130: type=3, attr=0xf, range=[0x000000008a25b000-0x000000008a25c000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem131: type=4, attr=0xf, range=[0x000000008a25c000-0x000000008a25f000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem132: type=3, attr=0xf, range=[0x000000008a25f000-0x000000008a270000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem133: type=4, attr=0xf, range=[0x000000008a270000-0x000000008a273000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem134: type=3, attr=0xf, range=[0x000000008a273000-0x000000008a27b000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem135: type=4, attr=0xf, range=[0x000000008a27b000-0x000000008a27c000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem136: type=3, attr=0xf, range=[0x000000008a27c000-0x000000008a27e000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem137: type=4, attr=0xf, range=[0x000000008a27e000-0x000000008a280000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem138: type=3, attr=0xf, range=[0x000000008a280000-0x000000008a281000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem139: type=4, attr=0xf, range=[0x000000008a281000-0x000000008a282000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem140: type=3, attr=0xf, range=[0x000000008a282000-0x000000008a283000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem141: type=4, attr=0xf, range=[0x000000008a283000-0x000000008a285000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem142: type=3, attr=0xf, range=[0x000000008a285000-0x000000008a287000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem143: type=4, attr=0xf, range=[0x000000008a287000-0x000000008a71b000) (4MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem144: type=3, attr=0xf, range=[0x000000008a71b000-0x000000008a720000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem145: type=4, attr=0xf, range=[0x000000008a720000-0x000000008a721000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem146: type=3, attr=0xf, range=[0x000000008a721000-0x000000008a72a000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem147: type=4, attr=0xf, range=[0x000000008a72a000-0x000000008a72c000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem148: type=3, attr=0xf, range=[0x000000008a72c000-0x000000008a72f000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem149: type=4, attr=0xf, range=[0x000000008a72f000-0x000000008a731000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem150: type=3, attr=0xf, range=[0x000000008a731000-0x000000008a732000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem151: type=4, attr=0xf, range=[0x000000008a732000-0x000000008a7a5000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem152: type=3, attr=0xf, range=[0x000000008a7a5000-0x000000008a7a6000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem153: type=4, attr=0xf, range=[0x000000008a7a6000-0x000000008a7a7000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem154: type=3, attr=0xf, range=[0x000000008a7a7000-0x000000008a7a8000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem155: type=4, attr=0xf, range=[0x000000008a7a8000-0x000000008a7cc000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem156: type=3, attr=0xf, range=[0x000000008a7cc000-0x000000008a7cd000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem157: type=4, attr=0xf, range=[0x000000008a7cd000-0x000000008b5ef000) (14MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem158: type=7, attr=0xf, range=[0x000000008b5ef000-0x000000008b673000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem159: type=10, attr=0xf, range=[0x000000008b673000-0x000000008b6ef000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem160: type=7, attr=0xf, range=[0x000000008b6ef000-0x000000008b6f5000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem161: type=9, attr=0xf, range=[0x000000008b6f5000-0x000000008b70f000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem162: type=7, attr=0xf, range=[0x000000008b70f000-0x000000008b737000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem163: type=6, attr=0x800000000000000f, range=[0x000000008b737000-0x000000008b75f000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem164: type=7, attr=0xf, range=[0x000000008b75f000-0x000000008b785000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem165: type=5, attr=0x800000000000000f, range=[0x000000008b785000-0x000000008b7af000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem166: type=7, attr=0xf, range=[0x000000008b7af000-0x000000008b7e9000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem167: type=2, attr=0xf, range=[0x000000008b7e9000-0x000000008b7f6000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem168: type=0, attr=0xf, range=[0x000000008b7f6000-0x000000008b7ff000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem169: type=6, attr=0x800000000000000f, range=[0x000000008b7ff000-0x000000008b800000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem170: type=7, attr=0xf, range=[0x0000000100000000-0x000000016c000000) (1728MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem171: type=0, attr=0x8000000000000000, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem172: type=0, attr=0x8000000000000000, range=[0x000000008b800000-0x000000008c000000) (8MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem173: type=0, attr=0x8000000000000000, range=[0x000000008de00000-0x0000000090000000) (34MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem174: type=11, attr=0x8000000000000000, range=[0x00000000e00f8000-0x00000000e00f9000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem175: type=11, attr=0x8000000000000000, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: efi: mem176: type=11, attr=0x8000000000000000, range=[0x00000000ffec4000-0x00000000ffee8000) (0MB)
    Aug 16 09:08:23 mbp62 kernel: SMBIOS 2.4 present.
    Aug 16 09:08:23 mbp62 kernel: DMI: Apple Inc. MacBookPro6,2/Mac-F22586C8, BIOS MBP61.88Z.0057.B0C.1007261552 07/26/10
    Aug 16 09:08:23 mbp62 kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Aug 16 09:08:23 mbp62 kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Aug 16 09:08:23 mbp62 kernel: No AGP bridge found
    Aug 16 09:08:23 mbp62 kernel: e820: last_pfn = 0x16c000 max_arch_pfn = 0x400000000
    Aug 16 09:08:23 mbp62 kernel: MTRR default type: write-back
    Aug 16 09:08:23 mbp62 kernel: MTRR fixed ranges enabled:
    Aug 16 09:08:23 mbp62 kernel: 00000-9FFFF write-back
    Aug 16 09:08:23 mbp62 kernel: A0000-BFFFF uncachable
    Aug 16 09:08:23 mbp62 kernel: C0000-DFFFF write-protect
    Aug 16 09:08:23 mbp62 kernel: E0000-FFFFF uncachable
    Aug 16 09:08:23 mbp62 kernel: MTRR variable ranges enabled:
    Aug 16 09:08:23 mbp62 kernel: 0 base 0C0000000 mask FC0000000 uncachable
    Aug 16 09:08:23 mbp62 kernel: 1 base 0A0000000 mask FE0000000 uncachable
    Aug 16 09:08:23 mbp62 kernel: 2 base 090000000 mask FF0000000 uncachable
    Aug 16 09:08:23 mbp62 kernel: 3 base 08C000000 mask FFC000000 uncachable
    Aug 16 09:08:23 mbp62 kernel: 4 disabled
    Aug 16 09:08:23 mbp62 kernel: 5 disabled
    Aug 16 09:08:23 mbp62 kernel: 6 disabled
    Aug 16 09:08:23 mbp62 kernel: 7 disabled
    Aug 16 09:08:23 mbp62 kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Aug 16 09:08:23 mbp62 kernel: e820: last_pfn = 0x8b7f6 max_arch_pfn = 0x400000000
    Aug 16 09:08:23 mbp62 kernel: Scanning 1 areas for low memory corruption
    Aug 16 09:08:23 mbp62 kernel: Base memory trampoline at [ffff880000099000] 99000 size 24576
    Aug 16 09:08:23 mbp62 kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Aug 16 09:08:23 mbp62 kernel: [mem 0x00000000-0x000fffff] page 4k
    Aug 16 09:08:23 mbp62 kernel: BRK [0x02b3e000, 0x02b3efff] PGTABLE
    Aug 16 09:08:23 mbp62 kernel: BRK [0x02b3f000, 0x02b3ffff] PGTABLE
    Aug 16 09:08:23 mbp62 kernel: BRK [0x02b40000, 0x02b40fff] PGTABLE
    Aug 16 09:08:23 mbp62 kernel: init_memory_mapping: [mem 0x16be00000-0x16bffffff]
    Aug 16 09:08:23 mbp62 kernel: [mem 0x16be00000-0x16bffffff] page 2M
    Aug 16 09:08:23 mbp62 kernel: BRK [0x02b41000, 0x02b41fff] PGTABLE
    Aug 16 09:08:23 mbp62 kernel: init_memory_mapping: [mem 0x168000000-0x16bdfffff]
    Aug 16 09:08:23 mbp62 kernel: [mem 0x168000000-0x16bdfffff] page 2M
    Aug 16 09:08:23 mbp62 kernel: init_memory_mapping: [mem 0x100000000-0x167ffffff]
    Aug 16 09:08:23 mbp62 kernel: [mem 0x100000000-0x167ffffff] page 2M
    Aug 16 09:08:23 mbp62 kernel: BRK [0x02b42000, 0x02b42fff] PGTABLE
    Aug 16 09:08:23 mbp62 kernel: init_memory_mapping: [mem 0x00100000-0x8b672fff]
    Aug 16 09:08:23 mbp62 kernel: [mem 0x00100000-0x001fffff] page 4k
    Aug 16 09:08:23 mbp62 kernel: [mem 0x00200000-0x8b5fffff] page 2M
    Aug 16 09:08:23 mbp62 kernel: [mem 0x8b600000-0x8b672fff] page 4k
    Aug 16 09:08:23 mbp62 kernel: init_memory_mapping: [mem 0x8b6ef000-0x8b6f4fff]
    Aug 16 09:08:23 mbp62 kernel: [mem 0x8b6ef000-0x8b6f4fff] page 4k
    Aug 16 09:08:23 mbp62 kernel: init_memory_mapping: [mem 0x8b70f000-0x8b736fff]
    Aug 16 09:08:23 mbp62 kernel: [mem 0x8b70f000-0x8b736fff] page 4k
    Aug 16 09:08:23 mbp62 kernel: init_memory_mapping: [mem 0x8b75f000-0x8b784fff]
    Aug 16 09:08:23 mbp62 kernel: [mem 0x8b75f000-0x8b784fff] page 4k
    Aug 16 09:08:23 mbp62 kernel: init_memory_mapping: [mem 0x8b7af000-0x8b7f5fff]
    Aug 16 09:08:23 mbp62 kernel: [mem 0x8b7af000-0x8b7f5fff] page 4k
    Aug 16 09:08:23 mbp62 kernel: RAMDISK: [mem 0x37702000-0x37b78fff]
    Aug 16 09:08:23 mbp62 kernel: ACPI: RSDP 0x000000008B70E014 000024 (v02 APPLE )
    Aug 16 09:08:23 mbp62 kernel: ACPI: XSDT 0x000000008B70E1C0 00007C (v01 APPLE Apple00 00000057 01000013)
    Aug 16 09:08:23 mbp62 kernel: ACPI: FACP 0x000000008B70B000 0000F4 (v04 APPLE Apple00 00000057 Loki 0000005F)
    Aug 16 09:08:23 mbp62 kernel: ACPI: DSDT 0x000000008B6FD000 00746E (v01 APPLE MacBookP 00060001 INTL 20061109)
    Aug 16 09:08:23 mbp62 kernel: ACPI: FACS 0x000000008B67A000 000040
    Aug 16 09:08:23 mbp62 kernel: ACPI: ASF! 0x000000008B70D000 0000A5 (v32 APPLE Apple00 00000001 Loki 0000005F)
    Aug 16 09:08:23 mbp62 kernel: ACPI: HPET 0x000000008B70A000 000038 (v01 APPLE Apple00 00000001 Loki 0000005F)
    Aug 16 09:08:23 mbp62 kernel: ACPI: APIC 0x000000008B709000 0000BC (v01 APPLE Apple00 00000001 Loki 0000005F)
    Aug 16 09:08:23 mbp62 kernel: ACPI: APIC 0x000000008B708000 0000BC (v02 APPLE Apple00 00000001 Loki 0000005F)
    Aug 16 09:08:23 mbp62 kernel: ACPI: SBST 0x000000008B706000 000030 (v01 APPLE Apple00 00000001 Loki 0000005F)
    Aug 16 09:08:23 mbp62 kernel: ACPI: ECDT 0x000000008B705000 000053 (v01 APPLE Apple00 00000001 Loki 0000005F)
    Aug 16 09:08:23 mbp62 kernel: ACPI: SSDT 0x000000008B6FA000 00020D (v01 APPLE SataAhci 00001000 INTL 20061109)
    Aug 16 09:08:23 mbp62 kernel: ACPI: SSDT 0x000000008B6F7000 000522 (v01 APPLE UsbNoRmh 00001000 INTL 20061109)
    Aug 16 09:08:23 mbp62 kernel: ACPI: SSDT 0x000000008B6F5000 000A10 (v01 PmRef CpuPm 00003000 INTL 20061109)
    Aug 16 09:08:23 mbp62 kernel: ACPI: MCFG 0x000000008B707000 00003C (v01 APPLE Apple00 00000001 Loki 0000005F)
    Aug 16 09:08:23 mbp62 kernel: ACPI: BIOS bug: multiple APIC/MADT found, using 0
    Aug 16 09:08:23 mbp62 kernel: ACPI: If "acpi_apic_instance=2" works better, notify [email protected]
    Aug 16 09:08:23 mbp62 kernel: ACPI: Local APIC address 0xfee00000
    Aug 16 09:08:23 mbp62 kernel: No NUMA configuration found
    Aug 16 09:08:23 mbp62 kernel: Faking a node at [mem 0x0000000000000000-0x000000016bffffff]
    Aug 16 09:08:23 mbp62 kernel: Initmem setup node 0 [mem 0x00000000-0x16bffffff]
    Aug 16 09:08:23 mbp62 kernel: NODE_DATA [mem 0x16bff8000-0x16bffcfff]
    Aug 16 09:08:23 mbp62 kernel: [ffffea0000000000-ffffea0005bfffff] PMD -> [ffff880167600000-ffff88016b5fffff] on node 0
    Aug 16 09:08:23 mbp62 kernel: Zone ranges:
    Aug 16 09:08:23 mbp62 kernel: DMA [mem 0x00001000-0x00ffffff]
    Aug 16 09:08:23 mbp62 kernel: DMA32 [mem 0x01000000-0xffffffff]
    Aug 16 09:08:23 mbp62 kernel: Normal [mem 0x100000000-0x16bffffff]
    Aug 16 09:08:23 mbp62 kernel: Movable zone start for each node
    Aug 16 09:08:23 mbp62 kernel: Early memory node ranges
    Aug 16 09:08:23 mbp62 kernel: node 0: [mem 0x00001000-0x0008dfff]
    Aug 16 09:08:23 mbp62 kernel: node 0: [mem 0x00090000-0x0009ffff]
    Aug 16 09:08:23 mbp62 kernel: node 0: [mem 0x00100000-0x8b672fff]
    Aug 16 09:08:23 mbp62 kernel: node 0: [mem 0x8b6ef000-0x8b6f4fff]
    Aug 16 09:08:23 mbp62 kernel: node 0: [mem 0x8b70f000-0x8b736fff]
    Aug 16 09:08:23 mbp62 kernel: node 0: [mem 0x8b75f000-0x8b784fff]
    Aug 16 09:08:23 mbp62 kernel: node 0: [mem 0x8b7af000-0x8b7f5fff]
    Aug 16 09:08:23 mbp62 kernel: node 0: [mem 0x100000000-0x16bffffff]
    Aug 16 09:08:23 mbp62 kernel: On node 0 totalpages: 1013419
    Aug 16 09:08:23 mbp62 kernel: DMA zone: 64 pages used for memmap
    Aug 16 09:08:23 mbp62 kernel: DMA zone: 25 pages reserved
    Aug 16 09:08:23 mbp62 kernel: DMA zone: 3997 pages, LIFO batch:0
    Aug 16 09:08:23 mbp62 kernel: DMA32 zone: 8861 pages used for memmap
    Aug 16 09:08:23 mbp62 kernel: DMA32 zone: 567054 pages, LIFO batch:31
    Aug 16 09:08:23 mbp62 kernel: Normal zone: 6912 pages used for memmap
    Aug 16 09:08:23 mbp62 kernel: Normal zone: 442368 pages, LIFO batch:31
    Aug 16 09:08:23 mbp62 kernel: Reserving Intel graphics stolen memory at 0x8e000000-0x8fffffff
    Aug 16 09:08:23 mbp62 kernel: ACPI: PM-Timer IO Port: 0x408
    Aug 16 09:08:23 mbp62 kernel: ACPI: Local APIC address 0xfee00000
    Aug 16 09:08:23 mbp62 kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Aug 16 09:08:23 mbp62 kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Aug 16 09:08:23 mbp62 kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    Aug 16 09:08:23 mbp62 kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x05] enabled)
    Aug 16 09:08:23 mbp62 kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    Aug 16 09:08:23 mbp62 kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    Aug 16 09:08:23 mbp62 kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    Aug 16 09:08:23 mbp62 kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    Aug 16 09:08:23 mbp62 kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Aug 16 09:08:23 mbp62 kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    Aug 16 09:08:23 mbp62 kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    Aug 16 09:08:23 mbp62 kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
    Aug 16 09:08:23 mbp62 kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
    Aug 16 09:08:23 mbp62 kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
    Aug 16 09:08:23 mbp62 kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
    Aug 16 09:08:23 mbp62 kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
    Aug 16 09:08:23 mbp62 kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Aug 16 09:08:23 mbp62 kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    Aug 16 09:08:23 mbp62 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Aug 16 09:08:23 mbp62 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Aug 16 09:08:23 mbp62 kernel: ACPI: IRQ0 used by override.
    Aug 16 09:08:23 mbp62 kernel: ACPI: IRQ2 used by override.
    Aug 16 09:08:23 mbp62 kernel: ACPI: IRQ9 used by override.
    Aug 16 09:08:23 mbp62 kernel: Using ACPI (MADT) for SMP configuration information
    Aug 16 09:08:23 mbp62 kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
    Aug 16 09:08:23 mbp62 kernel: smpboot: Allowing 8 CPUs, 4 hotplug CPUs
    Aug 16 09:08:23 mbp62 kernel: nr_irqs_gsi: 40
    Aug 16 09:08:23 mbp62 kernel: PM: Registered nosave memory: [mem 0x0008e000-0x0008efff]
    Aug 16 09:08:23 mbp62 kernel: PM: Registered nosave memory: [mem 0x0008f000-0x0008ffff]
    Aug 16 09:08:23 mbp62 kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000bffff]
    Aug 16 09:08:23 mbp62 kernel: PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
    Aug 16 09:08:23 mbp62 kernel: PM: Registered nosave memory: [mem 0x8b673000-0x8b6eefff]
    Aug 16 09:08:23 mbp62 kernel: PM: Registered nosave memory: [mem 0x8b6f5000-0x8b70efff]
    Aug 16 09:08:23 mbp62 kernel: PM: Registered nosave memory: [mem 0x8b737000-0x8b75efff]
    Aug 16 09:08:23 mbp62 kernel: PM: Registered nosave memory: [mem 0x8b785000-0x8b7aefff]
    Aug 16 09:08:23 mbp62 kernel: PM: Registered nosave memory: [mem 0x8b7f6000-0x8bffffff]
    Aug 16 09:08:23 mbp62 kernel: PM: Registered nosave memory: [mem 0x8c000000-0x8ddfffff]
    Aug 16 09:08:23 mbp62 kernel: PM: Registered nosave memory: [mem 0x8de00000-0x8fffffff]
    Aug 16 09:08:23 mbp62 kernel: PM: Registered nosave memory: [mem 0x90000000-0xe00f7fff]
    Aug 16 09:08:23 mbp62 kernel: PM: Registered nosave memory: [mem 0xe00f8000-0xe00f8fff]
    Aug 16 09:08:23 mbp62 kernel: PM: Registered nosave memory: [mem 0xe00f9000-0xfed1bfff]
    Aug 16 09:08:23 mbp62 kernel: PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    Aug 16 09:08:23 mbp62 kernel: PM: Registered nosave memory: [mem 0xfed20000-0xffec3fff]
    Aug 16 09:08:23 mbp62 kernel: PM: Registered nosave memory: [mem 0xffec4000-0xffee7fff]
    Aug 16 09:08:23 mbp62 kernel: PM: Registered nosave memory: [mem 0xffee8000-0xffffffff]
    Aug 16 09:08:23 mbp62 kernel: e820: [mem 0x90000000-0xe00f7fff] available for PCI devices
    Aug 16 09:08:23 mbp62 kernel: Booting paravirtualized kernel on bare hardware
    Aug 16 09:08:23 mbp62 kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    Aug 16 09:08:23 mbp62 kernel: PERCPU: Embedded 29 pages/cpu @ffff88016bc00000 s87168 r8192 d23424 u262144
    Aug 16 09:08:23 mbp62 kernel: pcpu-alloc: s87168 r8192 d23424 u262144 alloc=1*2097152
    Aug 16 09:08:23 mbp62 kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    Aug 16 09:08:23 mbp62 kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 997557
    Aug 16 09:08:23 mbp62 kernel: Policy zone: Normal
    Aug 16 09:08:23 mbp62 kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=982a60fb-4e98-4afc-b1a6-86d84ec44d10 rw cryptdevice=/dev/disk/by-uuid/298d8263-0546-4329-9ed0-a52c021f949f:vgmain resume=/dev/mapper/vgmain-lvswap i915.lvds_channel_mode=2 i915.lvds_use_ssc=0 i915.lvds_downclock=1 i915.i915_enable_rc6=7 i915.i915_enable_fbc=1 i915.modeset=1 radeon.modeset=0 nouveau.modeset=0 pcie_aspm=force video=efifb nmi_watchdog=0 quiet
    Aug 16 09:08:23 mbp62 kernel: PCIe ASPM is forcibly enabled
    Aug 16 09:08:23 mbp62 kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Aug 16 09:08:23 mbp62 kernel: Checking aperture...
    Aug 16 09:08:23 mbp62 kernel: No AGP bridge found
    Aug 16 09:08:23 mbp62 kernel: Calgary: detecting Calgary via BIOS EBDA area
    Aug 16 09:08:23 mbp62 kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Aug 16 09:08:23 mbp62 kernel: Memory: 3861208K/4053676K available (5225K kernel code, 886K rwdata, 1644K rodata, 1116K init, 1284K bss, 192468K reserved)
    Aug 16 09:08:23 mbp62 kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    Aug 16 09:08:23 mbp62 kernel: Preemptible hierarchical RCU implementation.
    Aug 16 09:08:23 mbp62 kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Aug 16 09:08:23 mbp62 kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Aug 16 09:08:23 mbp62 kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    Aug 16 09:08:23 mbp62 kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
    Aug 16 09:08:23 mbp62 kernel: NR_IRQS:8448 nr_irqs:744 16
    Aug 16 09:08:23 mbp62 kernel: Console: colour dummy device 80x25
    Aug 16 09:08:23 mbp62 kernel: console [tty0] enabled
    Aug 16 09:08:23 mbp62 kernel: allocated 16777216 bytes of page_cgroup
    Aug 16 09:08:23 mbp62 kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Aug 16 09:08:23 mbp62 kernel: hpet clockevent registered
    Aug 16 09:08:23 mbp62 kernel: tsc: Fast TSC calibration using PIT
    Aug 16 09:08:23 mbp62 kernel: tsc: Detected 2394.230 MHz processor
    Aug 16 09:08:23 mbp62 kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4790.97 BogoMIPS (lpj=7980766)
    Aug 16 09:08:23 mbp62 kernel: pid_max: default: 32768 minimum: 301
    Aug 16 09:08:23 mbp62 kernel: ACPI: Core revision 20140214
    Aug 16 09:08:23 mbp62 kernel: ACPI: All ACPI Tables successfully acquired
    Aug 16 09:08:23 mbp62 kernel: Security Framework initialized
    Aug 16 09:08:23 mbp62 kernel: Yama: becoming mindful.
    Aug 16 09:08:23 mbp62 kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Aug 16 09:08:23 mbp62 kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Aug 16 09:08:23 mbp62 kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
    Aug 16 09:08:23 mbp62 kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
    Aug 16 09:08:23 mbp62 kernel: Initializing cgroup subsys memory
    Aug 16 09:08:23 mbp62 kernel: Initializing cgroup subsys devices
    Aug 16 09:08:23 mbp62 kernel: Initializing cgroup subsys freezer
    Aug 16 09:08:23 mbp62 kernel: Initializing cgroup subsys net_cls
    Aug 16 09:08:23 mbp62 kernel: Initializing cgroup subsys blkio
    Aug 16 09:08:23 mbp62 kernel: Disabled fast string operations
    Aug 16 09:08:23 mbp62 kernel: CPU: Physical Processor ID: 0
    Aug 16 09:08:23 mbp62 kernel: CPU: Processor Core ID: 0
    Aug 16 09:08:23 mbp62 kernel: mce: CPU supports 9 MCE banks
    Aug 16 09:08:23 mbp62 kernel: CPU0: Thermal monitoring enabled (TM1)
    Aug 16 09:08:23 mbp62 kernel: Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
    tlb_flushall_shift: 6
    Aug 16 09:08:23 mbp62 kernel: Freeing SMP alternatives memory: 20K (ffffffff819f6000 - ffffffff819fb000)
    Aug 16 09:08:23 mbp62 kernel: ftrace: allocating 20230 entries in 80 pages
    Aug 16 09:08:23 mbp62 kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Aug 16 09:08:23 mbp62 kernel: smpboot: CPU0: Intel(R) Core(TM) i5 CPU M 520 @ 2.40GHz (fam: 06, model: 25, stepping: 05)
    Aug 16 09:08:23 mbp62 kernel: Performance Events: PEBS fmt1+, 16-deep LBR, Westmere events, Intel PMU driver.
    Aug 16 09:08:23 mbp62 kernel: perf_event_intel: CPUID marked event: 'bus cycles' unavailable
    Aug 16 09:08:23 mbp62 kernel: ... version: 3
    Aug 16 09:08:23 mbp62 kernel: ... bit width: 48
    Aug 16 09:08:23 mbp62 kernel: ... generic registers: 4
    Aug 16 09:08:23 mbp62 kernel: ... value mask: 0000ffffffffffff
    Aug 16 09:08:23 mbp62 kernel: ... max period: 000000007fffffff
    Aug 16 09:08:23 mbp62 kernel: ... fixed-purpose events: 3
    Aug 16 09:08:23 mbp62 kernel: ... event mask: 000000070000000f
    Aug 16 09:08:23 mbp62 kernel: x86: Booting SMP configuration:
    Aug 16 09:08:23 mbp62 kernel: .... node #0, CPUs: #1
    Aug 16 09:08:23 mbp62 kernel: Disabled fast string operations
    Aug 16 09:08:23 mbp62 kernel: #2
    Aug 16 09:08:23 mbp62 kernel: Disabled fast string operations
    Aug 16 09:08:23 mbp62 kernel: #3
    Aug 16 09:08:23 mbp62 kernel: Disabled fast string operations
    Aug 16 09:08:23 mbp62 kernel: x86: Booted up 1 node, 4 CPUs
    Aug 16 09:08:23 mbp62 kernel: smpboot: Total of 4 processors activated (19161.91 BogoMIPS)
    Aug 16 09:08:23 mbp62 kernel: devtmpfs: initialized
    Aug 16 09:08:23 mbp62 kernel: PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
    Aug 16 09:08:23 mbp62 kernel: PM: Registering ACPI NVS region [mem 0x8b673000-0x8b6eefff] (507904 bytes)
    Aug 16 09:08:23 mbp62 kernel: pinctrl core: initialized pinctrl subsystem
    Aug 16 09:08:23 mbp62 kernel: RTC time: 6:07:46, date: 08/16/14
    Aug 16 09:08:23 mbp62 kernel: NET: Registered protocol family 16
    Aug 16 09:08:23 mbp62 kernel: cpuidle: using governor ladder
    Aug 16 09:08:23 mbp62 kernel: cpuidle: using governor menu
    Aug 16 09:08:23 mbp62 kernel: ACPI: bus type PCI registered
    Aug 16 09:08:23 mbp62 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Aug 16 09:08:23 mbp62 kernel: PCI: MMCONFIG for domain 0000 [bus 00-06] at [mem 0xe0000000-0xe06fffff] (base 0xe0000000)
    Aug 16 09:08:23 mbp62 kernel: PCI: not using MMCONFIG
    Aug 16 09:08:23 mbp62 kernel: PCI: Using configuration type 1 for base access
    Aug 16 09:08:23 mbp62 kernel: ACPI: Added _OSI(Module Device)
    Aug 16 09:08:23 mbp62 kernel: ACPI: Added _OSI(Processor Device)
    Aug 16 09:08:23 mbp62 kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Aug 16 09:08:23 mbp62 kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Aug 16 09:08:23 mbp62 kernel: ACPI : EC: EC description table is found, configuring boot EC
    Aug 16 09:08:23 mbp62 kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Aug 16 09:08:23 mbp62 kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    Aug 16 09:08:23 mbp62 kernel: ACPI: SSDT 0x000000008B7F9918 0003F7 (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
    Aug 16 09:08:23 mbp62 kernel: ACPI: Dynamic OEM Table Load:
    Aug 16 09:08:23 mbp62 kernel: ACPI: SSDT 0x0000000000000000 0003F7 (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
    Aug 16 09:08:23 mbp62 kernel: ACPI: SSDT 0x000000008B7F7798 0006E5 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    Aug 16 09:08:23 mbp62 kernel: ACPI: Dynamic OEM Table Load:
    Aug 16 09:08:23 mbp62 kernel: ACPI: SSDT 0x0000000000000000 0006E5 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    Aug 16 09:08:23 mbp62 kernel: ACPI: SSDT 0x000000008B7F8C18 0003A4 (v01 PmRef ApIst 00003000 INTL 20061109)
    Aug 16 09:08:23 mbp62 kernel: ACPI: Dynamic OEM Table Load:
    Aug 16 09:08:23 mbp62 kernel: ACPI: SSDT 0x0000000000000000 0003A4 (v01 PmRef ApIst 00003000 INTL 20061109)
    Aug 16 09:08:23 mbp62 kernel: ACPI: SSDT 0x000000008B7F6D98 000119 (v01 PmRef ApCst 00003000 INTL 20061109)
    Aug 16 09:08:23 mbp62 kernel: ACPI: Dynamic OEM Table Load:
    Aug 16 09:08:23 mbp62 kernel: ACPI: SSDT 0x0000000000000000 000119 (v01 PmRef ApCst 00003000 INTL 20061109)
    Aug 16 09:08:23 mbp62 kernel: ACPI: Interpreter enabled
    Aug 16 09:08:23 mbp62 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140214/hwxface-580)
    Aug 16 09:08:23 mbp62 kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140214/hwxface-580)
    Aug 16 09:08:23 mbp62 kernel: ACPI: (supports S0 S3 S4 S5)
    Aug 16 09:08:23 mbp62 kernel: ACPI: Using IOAPIC for interrupt routing
    Aug 16 09:08:23 mbp62 kernel: PCI: MMCONFIG for domain 0000 [bus 00-06] at [mem 0xe0000000-0xe06fffff] (base 0xe0000000)
    Aug 16 09:08:23 mbp62 kernel: PCI: MMCONFIG at [mem 0xe0000000-0xe06fffff] reserved in ACPI motherboard resources
    Aug 16 09:08:23 mbp62 kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Aug 16 09:08:23 mbp62 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
    Aug 16 09:08:23 mbp62 kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    Aug 16 09:08:23 mbp62 kernel: \_SB_.PCI0:_OSC invalid UUID
    Aug 16 09:08:23 mbp62 kernel: _OSC request data:1 1f 0
    Aug 16 09:08:23 mbp62 kernel: acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
    Aug 16 09:08:23 mbp62 kernel: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-06] only partially covers this bridge
    Aug 16 09:08:23 mbp62 kernel: PCI host bridge to bus 0000:00
    Aug 16 09:08:23 mbp62 kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
    Aug 16 09:08:23 mbp62 kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Aug 16 09:08:23 mbp62 kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Aug 16 09:08:23 mbp62 kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Aug 16 09:08:23 mbp62 kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    Aug 16 09:08:23 mbp62 kernel: pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    Aug 16 09:08:23 mbp62 kernel: pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    Aug 16 09:08:23 mbp62 kernel: pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
    Aug 16 09:08:23 mbp62 kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    Aug 16 09:08:23 mbp62 kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    Aug 16 09:08:23 mbp62 kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    Aug 16 09:08:23 mbp62 kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    Aug 16 09:08:23 mbp62 kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    Aug 16 09:08:23 mbp62 kernel: pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    Aug 16 09:08:23 mbp62 kernel: pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
    Aug 16 09:08:23 mbp62 kernel: pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
    Aug 16 09:08:23 mbp62 kernel: pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff]
    Aug 16 09:08:23 mbp62 kernel: pci_bus 0000:00: root bus resource [mem 0x90000000-0xfeafffff]
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:00.0: [8086:0044] type 00 class 0x060000
    Aug 16 09:08:23 mbp62 kernel: DMAR: BIOS has allocated no shadow GTT; disabling IOMMU for graphics
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:01.0: [8086:0045] type 01 class 0x060400
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:01.0: System wakeup disabled by ACPI
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:02.0: [8086:0046] type 00 class 0x030000
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:02.0: reg 0x10: [mem 0xc1400000-0xc17fffff 64bit]
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:02.0: reg 0x20: [io 0x3130-0x3137]
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1a.0: [8086:3b3b] type 00 class 0x0c0300
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1a.0: reg 0x20: [io 0x3100-0x311f]
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1a.7: [8086:3b3c] type 00 class 0x0c0320
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1a.7: reg 0x10: [mem 0xc1d05c00-0xc1d05fff]
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1a.7: System wakeup disabled by ACPI
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xc1d00000-0xc1d03fff 64bit]
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1b.0: System wakeup disabled by ACPI
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1c.1: System wakeup disabled by ACPI
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1c.2: [8086:3b46] type 01 class 0x060400
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1c.2: System wakeup disabled by ACPI
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1c.3: [8086:3b48] type 01 class 0x060400
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1c.3: System wakeup disabled by ACPI
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1d.0: [8086:3b36] type 00 class 0x0c0300
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1d.0: reg 0x20: [io 0x30a0-0x30bf]
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1d.7: [8086:3b34] type 00 class 0x0c0320
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1d.7: reg 0x10: [mem 0xc1d05800-0xc1d05bff]
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1d.7: System wakeup disabled by ACPI
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1f.0: [8086:3b09] type 00 class 0x060100
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1f.2: [8086:3b29] type 00 class 0x010601
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1f.2: reg 0x10: [io 0x3128-0x312f]
    Aug 16 09:08:23 mbp62 kernel: pci 0000:00:1f.2: reg 0x14: [io 0x313c-0x313f]

    I am not sure what happened, but the issue resolved after upgrading my kernels (vanilla linux and linux-lts) and other deps.  I had to move off pacget and moved back to default.  When I was using pacget I found no updates for a week or more, so I knew something must be up if this is an Arch laptop.
    Anyone, the updated kernels seemed to have resolved the issue.  It was exacerbated by this kernel version apparently.

  • Trouble installing ZFS in archlinux kernel 3.6.3-1-ARCH

    I've been trying to install ZFS on my system, and i can't get past a building error for SPL, here is my install output:
    ==> Downloading zfs PKGBUILD from AUR...
    x zfs_preempt.patch
    x zfs.install
    x PKGBUILD
    Comment by: modular on Wed, 24 Oct 2012 03:09:04 +0000
    @demizer
    I don't/won't run ZFS as a root file system. I'm getting the following build error:
    http://pastebin.com/ZcWiaViK
    Comment by: demizer on Wed, 24 Oct 2012 04:11:54 +0000
    @modular, You're trying to build with the 3.6.2 kernel. The current version (rc11) does not work with the 3.6.2 kernel. If you want to use it, you will have to downgrade to the 3.5.6 kernel (linux and linux-headers). https://wiki.archlinux.org/index.php/Downgrading_Packages
    Thanks!
    Comment by: MilanKnizek on Wed, 24 Oct 2012 08:07:19 +0000
    @demizer: there still seemed to be a problem during upgrading - zfs/spl requires kernel of certain version (hard-coded) and this blocks the upgrade (the old installed zfs/spl requires the old kernel and kernel can't be upgraded w/o breaking dependency of zfs/spl and therefore build of the new zfs/spl fails, too).
    So far, I have had to remove zpl/spl, upgrade kernel, rebuild + install spl/zfs and manually run depmod against the new kernel (i.e. the postinst: depmod -a does not work until next reboot) and only then reboot to load the new kernel zfs modules successfully.
    That is quite clumsy and error-prone - I hope it will be resolved via DMKS.
    Comment by: srf21c on Sun, 28 Oct 2012 04:00:31 +0000
    All, if you're suffering zfs kernel upgrade pain fatigue, seriously consider going with the LTS (long term support) kernel. I just successfully built zfs on a system that I switched to the linux-lts 3.0.48-1. All you have to do is install the linux-lts and linux-lts-headers packages, reboot to the lts kernel, and change any instances of depends= or makedepends= lines in the package build file like so:
    Before:
    depends=('linux=3.5' "spl=${pkgver}" "zfs-utils=${pkgver}")
    makedepends=('linux-headers=3.5')
    After:
    depends=('linux-lts=3.0' "spl=${pkgver}" "zfs-utils=${pkgver}")
    makedepends=('linux-lts-headers=3.0')
    Then build and install each package in this order: spl-utils,spl,zfs-utils,zfs.
    Worked like a champ for me.
    Comment by: stoone on Mon, 29 Oct 2012 12:09:29 +0000
    If you keep the linux, and linux-headers packages while using the LTS you don't need to modify the PKGBUILDs. Because the checks will pass but it will build the packages to your current runnning kernel.
    Comment by: demizer on Mon, 29 Oct 2012 15:56:27 +0000
    Hey everybody, just a quick update. The new build tool I have been working on is now in master, https://github.com/demizer/aur-zfs. With it you can build and package two different groups of packages one for aur and one for split. Again, building the split packages is more efficient. I still have a lot of work to be done, but it is progressing. I will be adding git, dkms, and lts packages after I setup my repo. My next step is to add unofficial repository support to my build tool so I can easily setup a repo with precompiled binaries. I will be hosting the repo on my website at http://demizerone.com/archzfs. Initially it will only be for 64bit code since the ZOL FAQ states that ZOL is very unstable with 32bit code due to memory management differences in Solaris and Linux. I will notify you all in the future when that is ready to go.
    @MilanKnizek, Yes updating is a pain. ZFS itself is hard-coded to linux versions at build time. The ZFS build tool puts the modules in "/usr/lib/modules/3.5.6-1-ARCH/addon/zfs/", and this the primary reason it has to be rebuilt each upgrade, even minor point releases. Nvidia for example puts their module in "/usr/lib/modules/extramodules-3.5-ARCH/", so minor point releases are still good and the nvidia package doesn't need to be re-installed. A possible reason for ZOL to be hard-coded like this because ZOL is still technically very beta code.
    I do have a question for the community, does anyone use ZFS on a 32bit system?
    Thanks!
    First Submitted: Thu, 23 Sep 2010 08:50:51 +0000
    zfs 0.6.0_rc11-2
    ( Unsupported package: Potentially dangerous ! )
    ==> Edit PKGBUILD ? [Y/n] ("A" to abort)
    ==> ------------------------------------
    ==> n
    ==> zfs dependencies:
    - linux>=3.5 (already installed)
    - linux-headers>=3.5 (already installed)
    - spl>=0.6.0_rc11 (building from AUR)
    - zfs-utils>=0.6.0_rc11 (building from AUR)
    ==> Edit zfs.install ? [Y/n] ("A" to abort)
    ==> ---------------------------------------
    n
    ==> Continue building zfs ? [Y/n]
    ==> -----------------------------
    ==>
    ==> Building and installing package
    ==> Install or build missing dependencies for zfs:
    ==> Downloading spl PKGBUILD from AUR...
    x spl.install
    x PKGBUILD
    Comment by: timemaster on Mon, 15 Oct 2012 22:42:32 +0000
    I am not able to compile this package after the upgrade to the 3.6 kernel. Anyone else ? any idea?
    Comment by: mikers on Mon, 15 Oct 2012 23:34:17 +0000
    rc11 doesn't support Linux 3.6; there are some patches on GitHub that might apply against it (I've not done it myself), see:
    https://github.com/zfsonlinux/spl/pull/179
    https://github.com/zfsonlinux/zfs/pull/1039
    Otherwise downgrade to Linux 3.5.x or linux-lts and wait for rc12.
    Comment by: timemaster on Mon, 15 Oct 2012 23:54:03 +0000
    Yes, I saw that too late.
    https://github.com/zfsonlinux/zfs/commit/ee7913b644a2c812a249046f56eed39d1977d706
    Comment by: demizer on Tue, 16 Oct 2012 07:00:16 +0000
    Looks like the patches have been merged, now we wait for rc12.
    Comment by: vroomanj on Fri, 26 Oct 2012 17:07:19 +0000
    @demizer: 3.6 support is available in the master builds, which are stable but not officially released yet. Can't the build be updated to use the master tars?
    https://github.com/zfsonlinux/spl/tarball/master
    https://github.com/zfsonlinux/zfs/tarball/master
    Comment by: demizer on Fri, 26 Oct 2012 17:51:42 +0000
    @vroomanj, I plan on working on the git packages this weekend. All I have to figure out if it is going to be based on an actual git clone or if its just going to be the download links you provided. They are pretty much the same, but i'm not really clear what the Arch Package Guidelines say about this yet. Also, I don't think the current packages in AUR now should be based off of git master. They should be based off of the ZOL stable releases (rc10, rc11, ...). That's why I am making git packages so people can use them if they want to upgrade to the latest kernel and the stable release hasn't been made yet. As is the case currently.
    First Submitted: Sat, 26 Apr 2008 14:34:31 +0000
    spl 0.6.0_rc11-2
    ( Unsupported package: Potentially dangerous ! )
    ==> Edit PKGBUILD ? [Y/n] ("A" to abort)
    ==> ------------------------------------
    ==> n
    ==> spl dependencies:
    - linux>=3.5 (already installed)
    - spl-utils>=0.6.0_rc11 (already installed)
    - linux-headers>=3.5 (already installed)
    ==> Edit spl.install ? [Y/n] ("A" to abort)
    ==> ---------------------------------------
    ==> n
    ==> Continue building spl ? [Y/n]
    ==> -----------------------------
    ==>
    ==> Building and installing package
    ==> Making package: spl 0.6.0_rc11-2 (Tue Oct 30 11:34:13 CET 2012)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Downloading spl-0.6.0-rc11.tar.gz...
    % Total % Received % Xferd Average Speed Time Time Time Current
    Dload Upload Total Spent Left Speed
    0 178 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
    100 136 100 136 0 0 154 0 --:--:-- --:--:-- --:--:-- 293
    100 508k 100 508k 0 0 357k 0 0:00:01 0:00:01 --:--:-- 1245k
    ==> Validating source files with md5sums...
    spl-0.6.0-rc11.tar.gz ... Passed
    ==> Extracting Sources...
    -> Extracting spl-0.6.0-rc11.tar.gz with bsdtar
    ==> Starting build()...
    configure.ac:34: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see:
    configure.ac:34: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_INIT_AUTOMAKE-invocation
    checking metadata... yes
    checking build system type... i686-pc-linux-gnu
    checking host system type... i686-pc-linux-gnu
    checking target system type... i686-pc-linux-gnu
    checking whether to enable maintainer-specific portions of Makefiles... no
    checking whether make supports nested variables... yes
    checking for a BSD-compatible install... /usr/bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking for gcc... gcc
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking for style of include used by make... GNU
    checking dependency style of gcc... gcc3
    checking how to print strings... printf
    checking for a sed that does not truncate output... /bin/sed
    checking for grep that handles long lines and -e... /usr/bin/grep
    checking for egrep... /usr/bin/grep -E
    checking for fgrep... /usr/bin/grep -F
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking whether ln -s works... yes
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking how to convert i686-pc-linux-gnu file names to i686-pc-linux-gnu format... func_convert_file_noop
    checking how to convert i686-pc-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... no
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for sysroot... no
    checking for mt... no
    checking if : is a manifest tool... no
    checking how to run the C preprocessor... gcc -E
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC -DPIC
    checking if gcc PIC flag -fPIC -DPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking if gcc supports -c -o file.o... (cached) yes
    checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... yes
    checking spl license... GPL
    checking linux distribution... arch
    checking default package type... arch
    checking whether rpm is available... no
    checking whether rpmbuild is available... no
    checking whether dpkg is available... no
    checking whether dpkg-buildpackage is available... no
    checking whether alien is available... no
    checking whether pacman is available... yes (4.0.3)
    checking whether makepkg is available... yes (4.0.3)
    checking spl config... kernel
    checking kernel source directory... /usr/src/linux-3.6.3-1-ARCH
    checking kernel build directory... /usr/src/linux-3.6.3-1-ARCH
    checking kernel source version... 3.6.3-1-ARCH
    checking kernel file name for module symbols... Module.symvers
    checking whether debugging is enabled... no
    checking whether basic debug logging is enabled... yes
    checking whether basic kmem accounting is enabled... yes
    checking whether detailed kmem tracking is enabled... no
    checking whether modules can be built... yes
    checking whether atomic types use spinlocks... no
    checking whether kernel defines atomic64_t... yes
    checking whether kernel defines atomic64_cmpxchg... no
    checking whether kernel defines atomic64_xchg... yes
    checking whether kernel defines uintptr_t... yes
    checking whether INIT_WORK wants 3 args... no
    checking whether register_sysctl_table() wants 2 args... no
    checking whether set_shrinker() available... no
    checking whether shrinker callback wants 3 args... no
    checking whether struct path used in struct nameidata... yes
    checking whether task_curr() is available... no
    checking whether unnumbered sysctl support exists... no
    checking whether struct ctl_table has ctl_name... no
    checking whether fls64() is available... yes
    checking whether device_create() is available... yes
    checking whether device_create() wants 5 args... yes
    checking whether class_device_create() is available... no
    checking whether set_normalized_timespec() is available as export... yes
    checking whether set_normalized_timespec() is an inline... yes
    checking whether timespec_sub() is available... yes
    checking whether init_utsname() is available... yes
    checking whether header linux/fdtable.h exists... yes
    checking whether files_fdtable() is available... yes
    checking whether __clear_close_on_exec() is available... yes
    checking whether header linux/uaccess.h exists... yes
    checking whether kmalloc_node() is available... yes
    checking whether monotonic_clock() is available... no
    checking whether struct inode has i_mutex... yes
    checking whether struct mutex has owner... yes
    checking whether struct mutex owner is a task_struct... yes
    checking whether mutex_lock_nested() is available... yes
    checking whether on_each_cpu() wants 3 args... yes
    checking whether kallsyms_lookup_name() is available... yes
    checking whether get_vmalloc_info() is available... no
    checking whether symbol *_pgdat exist... yes
    checking whether first_online_pgdat() is available... no
    checking whether next_online_pgdat() is available... no
    checking whether next_zone() is available... no
    checking whether pgdat_list is available... no
    checking whether global_page_state() is available... yes
    checking whether page state NR_FREE_PAGES is available... yes
    checking whether page state NR_INACTIVE is available... no
    checking whether page state NR_INACTIVE_ANON is available... yes
    checking whether page state NR_INACTIVE_FILE is available... yes
    checking whether page state NR_ACTIVE is available... no
    checking whether page state NR_ACTIVE_ANON is available... yes
    checking whether page state NR_ACTIVE_FILE is available... yes
    checking whether symbol get_zone_counts is needed... no
    checking whether user_path_dir() is available... yes
    checking whether set_fs_pwd() is available... no
    checking whether set_fs_pwd() wants 2 args... yes
    checking whether vfs_unlink() wants 2 args... yes
    checking whether vfs_rename() wants 4 args... yes
    checking whether vfs_fsync() is available... yes
    checking whether vfs_fsync() wants 2 args... yes
    checking whether struct fs_struct uses spinlock_t... yes
    checking whether struct cred exists... yes
    checking whether groups_search() is available... no
    checking whether __put_task_struct() is available... yes
    checking whether proc_handler() wants 5 args... yes
    checking whether kvasprintf() is available... yes
    checking whether rwsem_is_locked() acquires sem->wait_lock... no
    checking whether invalidate_inodes() is available... no
    checking whether invalidate_inodes_check() is available... no
    checking whether invalidate_inodes() wants 2 args... yes
    checking whether shrink_dcache_memory() is available... no
    checking whether shrink_icache_memory() is available... no
    checking whether symbol kern_path_parent exists in header... no
    checking whether kern_path_parent() is available... no
    checking whether zlib_deflate_workspacesize() wants 2 args... yes
    checking whether struct shrink_control exists... yes
    checking whether struct rw_semaphore member wait_lock is raw... yes
    checking that generated files are newer than configure... done
    configure: creating ./config.status
    config.status: creating Makefile
    config.status: creating lib/Makefile
    config.status: creating cmd/Makefile
    config.status: creating module/Makefile
    config.status: creating module/spl/Makefile
    config.status: creating module/splat/Makefile
    config.status: creating include/Makefile
    config.status: creating scripts/Makefile
    config.status: creating spl.spec
    config.status: creating spl-modules.spec
    config.status: creating PKGBUILD-spl
    config.status: creating PKGBUILD-spl-modules
    config.status: creating spl.release
    config.status: creating dkms.conf
    config.status: creating spl_config.h
    config.status: executing depfiles commands
    config.status: executing libtool commands
    make all-recursive
    make[1]: Entering directory `/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11'
    Making all in module
    make[2]: Entering directory `/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module'
    make -C /usr/src/linux-3.6.3-1-ARCH SUBDIRS=`pwd` CONFIG_SPL=m modules
    make[3]: Entering directory `/usr/src/linux-3.6.3-1-ARCH'
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-debug.o
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-proc.o
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-kmem.o
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-thread.o
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-taskq.o
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-rwlock.o
    CC [M] /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-vnode.o
    /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-vnode.c: In function 'vn_remove':
    /tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-vnode.c:327:2: error: implicit declaration of function 'path_lookup' [-Werror=implicit-function-declaration]
    cc1: some warnings being treated as errors
    make[5]: *** [/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl/../../module/spl/spl-vnode.o] Error 1
    make[4]: *** [/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module/spl] Error 2
    make[3]: *** [_module_/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module] Error 2
    make[3]: Leaving directory `/usr/src/linux-3.6.3-1-ARCH'
    make[2]: *** [modules] Error 2
    make[2]: Leaving directory `/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11/module'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/tmp/yaourt-tmp-alex/aur-spl/src/spl-0.6.0-rc11'
    make: *** [all] Error 2
    ==> ERROR: A failure occurred in build().
    Aborting...
    ==> ERROR: Makepkg was unable to build spl.
    ==> Restart building spl ? [y/N]
    ==> ----------------------------
    ... i'm stuck here, can anyone help me with this one? please !

    Did you read the comments, either on the AUR page or in the output that you posted? They explain it.

  • [SOLVED] Losing network connection after suspend

    Lately I'm having this peculiar problem.  When resuming after suspend (specifically, pm-suspend), I have no network connection.  I first noticed this on March 31st.  The only thing that changed was that I upgraded these packages:
    openssl-1.0.1-2-x86_64.pkg.tar.xz
    xf86-video-ati-6.14.4-2-x86_64.pkg.tar.xz
    lib32-libdrm-2.4.33-1-x86_64.pkg.tar.xz
    libnotify-0.7.5-1-x86_64.pkg.tar.xz
    xz-5.0.3-2-x86_64.pkg.tar.xz
    vim-taglist-45-5-any.pkg.tar.xz
    But I'm pretty sure I would have suspended and resumed successfully at least once after that upgrade.
    Can anyone suggest what I should look at to try to diagnose this?
    Thanks
    Last edited by ibrunton (2012-04-06 11:26:03)

    Same issue here. Looks like dhcpcd crashes during or after running /usr/lib/dhcpcd/dhcpcd-run-hooks on resume from suspend. I'll try downgrading until this is fixed.
    $ uname -s -v -r -m
    Linux 3.2.13-1-ARCH #1 SMP PREEMPT Sat Mar 24 09:10:39 CET 2012 x86_64
    $ pacman -Qi dhcpcd
    Name : dhcpcd
    Version : 5.5.5-1
    URL : http://roy.marples.name/dhcpcd/
    Licenses : BSD
    Groups : base
    Provides : None
    Depends On : glibc sh
    Optional Deps : None
    Required By : networkmanager
    Conflicts With : None
    Replaces : None
    Installed Size : 256.00 KiB
    Packager : Ronald van Haren <[email protected]>
    Architecture : x86_64
    Build Date : Fri Mar 23 17:25:47 2012
    Install Date : Thu Mar 29 23:36:13 2012
    Install Reason : Explicitly installed
    Install Script : No
    Description : RFC2131 compliant DHCP client daemon
    # dhcpcd -d -B eth0
    dhcpcd[1865]: version 5.5.5 starting
    dhcpcd[1865]: eth0: using hwaddr bc:ae:c5:75:36:8e
    dhcpcd[1865]: eth0: executing `/usr/lib/dhcpcd/dhcpcd-run-hooks', reason PREINIT
    dhcpcd[1865]: eth0: executing `/usr/lib/dhcpcd/dhcpcd-run-hooks', reason CARRIER
    dhcpcd[1865]: eth0: sending IPv6 Router Solicitation
    dhcpcd[1865]: eth0: reading lease `/var/lib/dhcpcd/dhcpcd-eth0.lease'
    dhcpcd[1865]: eth0: rebinding lease of 192.168.1.100
    dhcpcd[1865]: eth0: sending REQUEST (xid 0x36169f23), next in 3.93 seconds
    dhcpcd[1865]: eth0: acknowledged 192.168.1.100 from 192.168.1.1
    dhcpcd[1865]: eth0: checking for 192.168.1.100
    dhcpcd[1865]: eth0: sending ARP probe (1 of 3), next in 2.00 seconds
    dhcpcd[1865]: eth0: sending ARP probe (2 of 3), next in 1.81 seconds
    dhcpcd[1865]: eth0: sending IPv6 Router Solicitation
    dhcpcd[1865]: eth0: sending ARP probe (3 of 3), next in 2.00 seconds
    dhcpcd[1865]: eth0: leased 192.168.1.100 for 3600 seconds
    dhcpcd[1865]: eth0: adding IP address 192.168.1.100/24
    dhcpcd[1865]: eth0: adding route to 192.168.1.0/24
    dhcpcd[1865]: eth0: adding default route via 192.168.1.1
    dhcpcd[1865]: eth0: writing lease `/var/lib/dhcpcd/dhcpcd-eth0.lease'
    dhcpcd[1865]: eth0: executing `/usr/lib/dhcpcd/dhcpcd-run-hooks', reason BOUND
    dhcpcd[1865]: eth0: sending ARP announce (1 of 2), next in 2.00 seconds
    dhcpcd[1865]: eth0: sending IPv6 Router Solicitation
    dhcpcd[1865]: eth0: sending ARP announce (2 of 2)
    dhcpcd[1865]: eth0: sending IPv6 Router Solicitation
    dhcpcd[1865]: eth0: no IPv6 Routers available
    dhcpcd[1865]: eth0: carrier lost
    dhcpcd[1865]: eth0: deleting default route via 192.168.1.1
    dhcpcd[1865]: eth0: deleting route to 192.168.1.0/24
    dhcpcd[1865]: eth0: deleting IP address 192.168.1.100/24
    dhcpcd[1865]: eth0: executing `/usr/lib/dhcpcd/dhcpcd-run-hooks', reason NOCARRIER
    dhcpcd[1865]: eth0: carrier acquired
    dhcpcd[1865]: eth0: using hwaddr bc:ae:c5:75:36:8e
    dhcpcd[1865]: eth0: executing `/usr/lib/dhcpcd/dhcpcd-run-hooks', reason CARRIER
    *** glibc detected *** dhcpcd: double free or corruption (fasttop): 0x0000000000ac2860 ***
    ======= Backtrace: =========
    /lib/libc.so.6(+0x78a56)[0x7f9b6a794a56]
    dhcpcd[0x40cdd0]
    dhcpcd[0x40e597]
    dhcpcd[0x4093f0]
    dhcpcd[0x411ba7]
    dhcpcd[0x411563]
    dhcpcd[0x40768f]
    dhcpcd[0x40aa6b]
    dhcpcd[0x4028a8]
    /lib/libc.so.6(__libc_start_main+0xf5)[0x7f9b6a73d455]
    dhcpcd[0x402d1d]
    ======= Memory map: ========
    00400000-00419000 r-xp 00000000 fe:02 4590719 /sbin/dhcpcd
    00619000-0061a000 r--p 00019000 fe:02 4590719 /sbin/dhcpcd
    0061a000-0061b000 rw-p 0001a000 fe:02 4590719 /sbin/dhcpcd
    0061b000-0061c000 rw-p 00000000 00:00 0
    00ac1000-00ae3000 rw-p 00000000 00:00 0 [heap]
    7f9b6a2eb000-7f9b6a300000 r-xp 00000000 fe:02 1063993 /usr/lib/libgcc_s.so.1
    7f9b6a300000-7f9b6a4ff000 ---p 00015000 fe:02 1063993 /usr/lib/libgcc_s.so.1
    7f9b6a4ff000-7f9b6a500000 rw-p 00014000 fe:02 1063993 /usr/lib/libgcc_s.so.1
    7f9b6a500000-7f9b6a517000 r-xp 00000000 fe:02 3014810 /lib/libpthread-2.15.so
    7f9b6a517000-7f9b6a716000 ---p 00017000 fe:02 3014810 /lib/libpthread-2.15.so
    7f9b6a716000-7f9b6a717000 r--p 00016000 fe:02 3014810 /lib/libpthread-2.15.so
    7f9b6a717000-7f9b6a718000 rw-p 00017000 fe:02 3014810 /lib/libpthread-2.15.so
    7f9b6a718000-7f9b6a71c000 rw-p 00000000 00:00 0
    7f9b6a71c000-7f9b6a8b3000 r-xp 00000000 fe:02 3018245 /lib/libc-2.15.so
    7f9b6a8b3000-7f9b6aab3000 ---p 00197000 fe:02 3018245 /lib/libc-2.15.so
    7f9b6aab3000-7f9b6aab7000 r--p 00197000 fe:02 3018245 /lib/libc-2.15.so
    7f9b6aab7000-7f9b6aab9000 rw-p 0019b000 fe:02 3018245 /lib/libc-2.15.so
    7f9b6aab9000-7f9b6aabd000 rw-p 00000000 00:00 0
    7f9b6aabd000-7f9b6aac4000 r-xp 00000000 fe:02 3014856 /lib/librt-2.15.so
    7f9b6aac4000-7f9b6acc3000 ---p 00007000 fe:02 3014856 /lib/librt-2.15.so
    7f9b6acc3000-7f9b6acc4000 r--p 00006000 fe:02 3014856 /lib/librt-2.15.so
    7f9b6acc4000-7f9b6acc5000 rw-p 00007000 fe:02 3014856 /lib/librt-2.15.so
    7f9b6acc5000-7f9b6ace6000 r-xp 00000000 fe:02 3018769 /lib/ld-2.15.so
    7f9b6aea5000-7f9b6aea9000 rw-p 00000000 00:00 0
    7f9b6aee4000-7f9b6aee6000 rw-p 00000000 00:00 0
    7f9b6aee6000-7f9b6aee7000 r--p 00021000 fe:02 3018769 /lib/ld-2.15.so
    7f9b6aee7000-7f9b6aee8000 rw-p 00022000 fe:02 3018769 /lib/ld-2.15.so
    7f9b6aee8000-7f9b6aee9000 rw-p 00000000 00:00 0
    7ffff8b93000-7ffff8bb4000 rw-p 00000000 00:00 0 [stack]
    7ffff8bc9000-7ffff8bca000 r-xp 00000000 00:00 0 [vdso]
    ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]

  • How can I add text "slides" between photos in a slideshow?

    I'm making a presentation to a group. I want to use two or three photos, together, to illustrate a point (and be able to back up and go forward for clarity). But I would like a simple text (white on black background) announcement of what the next topic is, before showing the photos.
    I have no idea what such panels/slides would be called, which makes it a little tricky to find them in the missing manual . . . or anywhere else.
    Is it possible to do this in iPhoto? Or do I have to create the notices/titles/topics in another program (like Photoshop Elements) first?
    Thanks up front. The presentation isn't for over a week yet, so there's time to play.

    If you can create your slide in any text editor, Pages, Word, whatever, all you need to to is type Command+P(to start a print job) , then click on the PDF button in the next window and select Save PDF to iPhoto in the menu that appears. 
    Click to view full size
    This creates a jpeg version of the document and imports it into iPhoto.  From there you can add it to the slideshow.
    With Pages and other apps that let you use a color background you can make very nice title slides. Even Powerpoint.  Make a PP page as a slide and then print that one page as I outlined above.  User the landscape orientation with any application you use.
    OT

  • T400s Linux/Windows dual boot with Linux from Esata Flash Drive

    This project is about a dual boot Windows/Linux system without using the normal dual boot changes in the bootloader of the windows hard drive. When I started this I found bits and pieces of information on the web but no complete description so I wrote this post.
    I have done a dual boot system on my previous Thinkpad where I had partitioned the hard drive between Linux and windows. For this project I wanted to leave the windows hard drive absolutely intact and unaltered, and boot Linux from a flash drive in the esata port on the back of the T400s. Obviously this uses the F12 boot list function key to boot from the flash. The advantage of this is that Windows is totally unaltered and when I need Linux, I plug in the esata flash drive, hit F12 during the boot cycle and select booting from the esata flash drive. The reason for Esata rather than USB is simply speed. I have a nice fast Linux installation.
    I used the OCZ esata flash drive but suspect any of the alternatives will work. It did not need the accessory usb cable because the Thinkpad powered the esata flash directly.
    To boot from the esata drive I had to make the following changes in the bios
        I left the esata flash plugged in as I went into the bios
        Bios>config>Serial ATA and changed the Sata controller mode option to compatibility
        Restart and back into the Bios
        Bios>startup>boot - in my case the esata flash drive showed up as ATA HDD2 and was excluded from the boot order so I had to un-exclude it and move it to the point in the boot order that I wanted.
    Next I downloaded a linux installation iso and put it on a CD - in my case opensuse. Then booted from the CD
    From now on this instructions are specific to opensuse and yast but can be generalized to whatever Linux is being used.
    In my case yast came up with a good set of suggestions for automatically partitioning the flash drive but then crashed during the partitioning itself. So I rebooted and specified the partitions manually.
        A fat32 partition left as a partition which both windows and Linux could see (in my case about 20% of the drive) (/dev/sdb1)
        An extended partition with the remainder of the drive (/dev/sdb2) which contains the following logical partitions
        A linux Swap partition of 2GB (/dev/sdb5)
        A linux /home partition –the remainder of the drive (/dev/sdb6)
        A linux /root partition of 8GB (/dev/sdb7)
    Yast automatically suggested mount points of C,D,E for the windows partitions. Unfortunately because of the way the Thinkpad hard drive was laid out Yast had C assigned the ThinkPad Service partition and D assigned to the SW_Preload (or main windows partition). However there was an edit function that allows for the reversal of those mount points so that the windows C drive is mounted in Linux as Windows/C thereby avoiding confusion. I had already backed up and removed the Thinkpad factory install data so I did not have to deal with that. Yast suggested Windows/E for the mount point of the FAT32 partition on the flash drive, which I accepted.
    The yast install configurator made all this manual selection easy, and after the manual configuration the partitioning worked perfectly.
    Next step was Linux user configuration which went fine
    Next was booting.
    In the section management tab
        delete the windows 1 and 2 options (since we are not dual booting directly)
    In the boot loader installation tab
        uncheck boot from mbr ( this stops the install from installing Grub and dual boot on the windows c drive
        check boot from root partition (this installs grub and all associated files in the Linux root partition (/dev/sdb6)
    I believe that the correct procedure at this point is to click Boot Loader installation details which will bring up the Grub device map. In the device map there will be a line for the fixed hard drive (aka the windows drive) and a line for the esata flash drive. When the installer started up these were in hard drive and esata drive order. However when we boot directly from the flash the esata drive will be grub drive hd0 and the fixed hard drive will be grub hd1. The device map order needs to be changed to reflect this ie the esata drive should be first not second.
    I did not do this and ended up initially doing Grub command line editing to boot and later manually editing the grub files using information I had previously learned the hard way and through google.
    At this point let the installer go ahead and install Linux. After doing this it should come back and tell you to reboot. Do not do it yet because we need to install the MBR into the flash drive.
    I suspect that there is a way of doing this in Yast running from the Live CD but it was not obvious to me so I used the manual method that I have used before.
    Open a root terminal
    Mount /dev/sdb6 to /mnt/sdb6 (my linux root)
    Touch /mnt/sdb6/boot/grub/flag
    The purpose of this is when we go looking later at the grub command prompt we need an easy to find unique file
    Start grub and do the following
    #grub
                grub> find /boot/grub/flag
                    (hd1,5)    -- the result of the find in my example
                grub> root (hd1,5)   -- using the result of the find in my example
                grub> setup (hd1)   -- install mbr -- my example parameters - if you get this wrong you will trash some other drive!!!
                      hopefully grub announces success
                grub> quit
    Reboot and select the flash drive. In my case I still had the grub devicemap wrong and had to edit the grub commands during boot to tell grub how to find the correct partition and then edit them again after booting
    Typical linux install issues that we all always seem to have and can be solved with a little (or a lot of) google research.
    As I said at the beginning I now have an untouched windows installation and a nice fast Linux installation. I hope that this will be of some use to someone.

    Hi chrissh
    i tried this exact procedure... on the exact same notebook (T400s). However, as soon as I set the 
        Bios>config>Serial ATA to "compatibility", I cannot use my default Windows installation! I immediately get the "blue screen of death".
    I doubt I did anything differently since this is the first step of your procedure and my laptop is brand new!
    any idea? 

  • I have Macbook Pro on order, should I wait for new "iBook"?

    I'll be using the mac for the iLife software mostly. iMovie, iPhoto and Garageband. How much do you think the price difference and speed difference will be? I'm pretty sure I'm sticking with the MacBook Pro. I've got the stock 1.83 on order, after rebates it will cost me about $1890.

    If the Intel iBook (or non-"pro" MacBook) is announced at apples anouncement next week people should be able to know more specifically about how it compares and what the price should be.
    Many speculate a 13" widescreen MacBook with a single intel processor will be comeing out that should be comperable in speed to the current powerbook (or faster). This is all spec but people do know its coming.
    People also think it is going to be annoucned at the event and availble around april. I am keeping my MBP on order and then if something peaks my interest at the annoucement I have time to switch.
    I think it depends on price and actual performance, since noone knows exactly what the new iBook is yet its hard to speculate at this time.

  • Logic 7.2 and the new MBP or Dual/Quad MacPros

    Hello,
    I'm at a cross roads at the moment and I'm just wondering if you guys would be able to help me out?
    My G5 is kinda noisey, hot, annoyingly overloaded (especially with NI Massive..lol) and its time for a change. I'm toying with the idea of a new MBP or if/when Apple announce new MacPro's next week a MacPro/2.66.
    I'm just after some opinions on Logic and MBP's, if its a stable and useable platform to work on? I like the look of the new 2.4ghz MBP's and the possibility of integrating Ableton Live with my DJ setups. But Logic is my "wow" (no offence) and I'm undecided if moving from the G5 1.8DP to the MBP would be a big improvement. I imagine the laptop would be a lot more quieter than the MacPro.
    I was thinking of going for the 2.4 15" with the faster 7200.2 HD (i dont mind the 4-6 week wait) and buying a Motu Ultralite and a firewire caddy/hd for a 320gb Seagate.
    Then with the MacPro, its going to be really more powerful but then there's no portability.
    Hope you guys can help,
    Cheers.
    Simon
    Powermac G5 1.8DP   Mac OS X (10.4.9)  

    Thanks for the link. My G5 resulted in 1504. Did some searching around on that link and sound some very interesting speeds.
    Mac Pro [8 Core] - 8688 - http://browse.geekbench.ca/geekbench2/view/7508
    Mac Pro [3Ghz] - 5557 - http://browse.geekbench.ca/geekbench2/view/7222
    Mac Pro [2.66Ghz] - 4891 - http://browse.geekbench.ca/geekbench2/view/7577
    MacBook Pro [2.4Ghz] - 3236 - http://browse.geekbench.ca/geekbench2/view/7534
    MacBook Pro [2.2Ghz] - 2991 - http://browse.geekbench.ca/geekbench2/view/7451
    Hmmm... MacPro's are a big jump.
    Powermac G5 1.8DP   Mac OS X (10.4.9)  

  • Show one picture of a presentation - then back to menu. How?

    I provide an autoindex-menu of all pictures of a presentation. The activation of the respective little menu-picture is to indicate the picture and jump after 6 seconds back to the autoindex-menu.
    The respective picture is also indicated, but after the 6 seconds the announcement changes on the next in each case picture of the presentation. This is then played up to the end. Only then again the autoindex menu appears.
    How can I achieve my goal?
    Yours sincerely
    Klaus

    Excuse my bad English please.
    On the menu are all pictures like a thumbnail. Each "thumbnail" links on the original picture and show it. After some seconds the view should change back to the "Thumbnail"-menu, the user can select another picture and so on. Only one picture of the presentation and then back to the menu. I hope you understand me.

  • What other TV manufacturers will deliver support for Adobe AIR 2.5.1?

    Adobe is excited that the Samsung Smart TV platform will be the first platform to be enabled with AIR 2.5.1. Adobe looks forward to announcing additional TV partners next year.

    Could you please open a new bug report on this over at bugbase.adobe.com? Please include the air app or download URL to help us reproduce the problem.

  • Re: BIOS version 3.30 Tecra A11/M11: Problems with Ubuntu systems?

    I just got the invitation to update to BIOS version 3.30 on my Tecra A11/M11.
    I'm still running Win7 right now but plan to add a dual boot with Ubuntu when the next LTS hits in April.
    Is anyone having trouble with the new BIOS?
    Should I upgrade, or leave 3.20 intact?
    I find no evidence of trouble with 3.20.

    Why to upgrade the BIOS if everything is OK?
    Furthermore as far as I know Toshiba does not support the Linux OS and I doubt the new BIOS would improve any Linux performance so if you are happy with the v3.20, stay with that

  • CS3 and CS4

    Hi,
    I have recently downloaded DW CS3 and as the trial was
    running out I decided
    to go for the CS4 beta version. A few days later it's already
    asking me for
    a valid serial number and I'm a little puzzled by this. (I
    guess it's to do
    with the Cs3 version installed which was on it's last few
    days).
    I have no problem in buying the upgrade however all I can see
    on line is an
    upgrade for CS3 and nothing about CS4. How does this work? I
    don't want to
    buy a CS3 upgrade and find shortly that Cs4 comes out.
    Thanks for any help
    Brian

    Thanks Malcolm,
    What am I missing? How does one be involved as a beta tester
    if expected to
    have to pay for it! Seems odd to me. Maybe if I purchase a
    upgrade for CS3,
    CS4 will work too!
    I have to say I love both versions and find it's a tall
    learning curve from
    DW2004.
    Thanks for the reply.
    Brian
    >>Hi,
    >>I have recently downloaded DW CS3 and as the trial
    was running out I
    >>decided
    >>to go for the CS4 beta version. A few days later it's
    already asking me
    >>for
    >>a valid serial number and I'm a little puzzled by
    this. (I guess it's to
    >>do
    >>with the Cs3 version installed which was on it's last
    few days).
    >>
    > The CS4 Beta web page clearly explains that it is valid
    initially for
    > two days, until you apply for a valid CS3 license
    number. Once this is
    > done - it will be valid until CS4 is actually released.
    >
    > Seems fair enough for me.
    >
    >>I have no problem in buying the upgrade however all I
    can see on line is
    >>an
    >>upgrade for CS3 and nothing about CS4. How does this
    work? I don't want
    >>to
    >>buy a CS3 upgrade and find shortly that Cs4 comes
    out.
    >
    > No one has made any formal statements when CS4 will be
    released, and
    > anyone here who may know - is gagged by a confidentially
    agreement. (
    > I'm not one of these people )
    >
    > Unfortunately Adobe do not allow free updates to
    software unless
    > bought after the announce date of the next edition.
    >
    >
    > --
    >
    > ~Malcolm~*...
    > ~*

Maybe you are looking for

  • I've exported a video from iMovie but it's not showing in my pictures. Why is this happening?

    I recently made a video for my YouTube channel, but with this happening, I can't get videos out on time. I planned a video for today but it's been set back by a day. So, iCommunity, why is my video not showing in my pictures (where videos can go too)

  • What will CC cost me after the trial period is over?

    What will CC cost me after the trial period is over? All I want to do is download some of the plug-ins since my Flickr plug-in doesn't seem to work.

  • How do I set up LabView RealTime ETS on a desktop computer?

    I have been trying to set up the LabVIEW Real-Time 8.0 OS on a desktop computer.  I have read the the "Requirements for a Desktop PC as a LabVIEW Real-Time target and followed the instruction in the installation manual "Using Desktop PCs as RT Target

  • SHARING INTERNET CONNECTION

    I'm trying to share my internet connection. I access the internet over my airport express, I want to share the internet connection via my ethernet port. Can anyone tell what are the procedures.

  • Mac OS X 10.4.10 installation failure

    I downloaded the Mac OS X 10.4.10 combo update for PPC at apple's webpage and then when I tried to install it the installation program failed and I had to "force to quit" it, now the installer doesn't opens, neither safari, MSN messenger nor "softwar