Beginners Guide "Create an initial ramdisk environment" hooks needed

In the guide at this location:
https://wiki.archlinux.org/index.php/Be … nvironment
it addresses when the mkinitcpio.conf hooks line needs changes. Is it really the case that installing to a external USB spinning drive with root there,  requires a change to the default hooks? It seems like the default hooks line includes the "block" already. It is block that handles USB, right?
I am talking about an installation, not copying the install media, etc.
Here is my hooks line:
base udev autodetect modconf block lvm2 filesystems keyboard fsck
which I believe is stock except for the LVM entry.
I ask because I wanted to test installing to an external USB3.0 drive to judge performance.
Thanks in advance.
Steve.

That sentence looks like it predates the block hook (when there was a usb hook for exactly that reason).
You can test it easily enough

Similar Messages

  • Arch Linux Beginners Guide

    Remembering the days when I installed Arch Linux for the first time I still feel that Arch misses a guide for beginners. I started one at the Wiki. Its intention is to show how you install and configure Arch Linux until you have a fully working desktop system for multimedia and office purpose. I'm still heavily improving it. If you have any suggestions or critics feel free to drop me a note or add the content to the wiki. If you find some spelling or grammar errors do the same or fix them, I'm no native speaker

    iphitus wrote:article is too big. provide links to existing wiki pages and documentation. If things change and you dont know, your article will be broken.
    Sure...but you will have this problem with all wiki pages. If you don't have a maintainer for bigger articles, the whole idea of the wiki won't work well.
    iphitus wrote:For example, change the install documentation to the install guide. Same goes for network, link to existing pages, and if there isnt one, create one.
    I disagree with this one. I personally like the idea of having one basic guide which will led in most cases to a fully working system and does not stop right after the installation, which will leave you with a single prompt. I tried to explain the "basic things" and give links for digging deeper (I may have failed at this, but I tried and will try again).
    Therefore you are right about linking, but as you may have seen I tried to link to existing pages if they exist and give more than just a basic information. As far as I know no install guide for voodoo exists yet.
    What I really don't want to do, is to create just a meta page that only links to other pages, for three reasons:
    * It's annoying to read if you have to follow a link, get back and follow the next link...
    * Because there is no single maintainer for all the sub pages, you can only link to pages that are known stable, otherwise the beginner will be totally lost fast
    * Some of the other pages are way too technically for a beginner, they quickly start with special things for exotic purposes (mainly because experienced people don't like writing about basic things I believe)
    iphitus wrote:Some of it seems a bit overkill too, you give a newbie style how to for tiny things, but completely gloss over even a basic description of what the "daemons line" is. Newbies using this beginners guide learn bugger all, as they just copy from the beginner guide. When things go wrong, they come to the forums rather than use initiative. I guess the installation and configuration acts as a form of natural selection.
    I think we have a different opinion how a wiki works, I always thought you start with something and improve it over time, when questions or suggestions arrive.
    A wiki will get better if more than one people is involved, therefore sharing and discussing at an early point of time is reasonable.
    On the other hand you are absolutely right about the daemons line, which should be explained for a beginner (EDIT: I added a paragraph about daemons a few moments ago).
    But I think differently about the natural selection. I never felt that Arch Linux aims to be an elitist distribution and that an acceptance test is needed if you want to use it...what I have seen from the community so far, Arch seems in fact to be the opposite. I like Arch for being clean, simple and logical constructed, not for being complicated. I'm too old to get     self-confidence just from installing an operating system.
    If users use the forum to ask the same questions again and again, our beginners guide is incomplete and we should fix it.
    iphitus wrote:Things like:
    http://wiki.archlinux.org/index.php/Arc … or_newbies
    and a better FAQ, would be more useful than yet another blow by blow install tutorial that falls out of date in 6 months.
    James
    This may not be representative, but a better FAQ and Jargon for Newbies (damn, I really love this elite attitude ) wouldn't helped him:
    Someone at my blog wrote:Thanks for the guide! I tried installing Arch over Christmas and had the worst time trying to figure that out. So I of course went back to my trusty Gentoo. I always liked Gentoo because even though its an "advanced distro" they provide you with plenty of documentation. Arch on the other hand does not and that really bothered me. But now that I have a Gentoo style guide, I think I'll try it again!
    Don't get me wrong, I really appreciate your criticism because it makes me think twice about some things and will most probably lead to a better guide.

  • Stuck on "Loading initial ramdisk"

    From time to time I was encountering problem with my laptop/installation - occasionally Arch stopped booting just after printing "Loading initial ramdisk". Recently after installing new disk drive (SSD one) the problem appears often. I have totally no idea how to handle it.  My old disk was Westen Digital WD3200BEVT and new one is Samsung 850 PRO. And like I said I have impression that with new drive I can't boot my machine more often than before.

    cat /etc/mkinitcpio.conf
    # vim:set ft=sh
    # MODULES
    # The following modules are loaded before any boot hooks are
    # run. Advanced users may wish to specify all system modules
    # in this array. For instance:
    # MODULES="piix ide_disk reiserfs"
    MODULES=""
    # BINARIES
    # This setting includes any additional binaries a given user may
    # wish into the CPIO image. This is run last, so it may be used to
    # override the actual binaries included by a given hook
    # BINARIES are dependency parsed, so you may safely ignore libraries
    BINARIES=""
    # FILES
    # This setting is similar to BINARIES above, however, files are added
    # as-is and are not parsed in any way. This is useful for config files.
    FILES=""
    # HOOKS
    # This is the most important setting in this file. The HOOKS control the
    # modules and scripts added to the image, and what happens at boot time.
    # Order is important, and it is recommended that you do not change the
    # order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
    # help on a given hook.
    # 'base' is _required_ unless you know precisely what you are doing.
    # 'udev' is _required_ in order to automatically load modules
    # 'filesystems' is _required_ unless you specify your fs modules in MODULES
    # Examples:
    ## This setup specifies all modules in the MODULES setting above.
    ## No raid, lvm2, or encrypted root is needed.
    # HOOKS="base"
    ## This setup will autodetect all modules for your system and should
    ## work as a sane default
    # HOOKS="base udev autodetect block filesystems"
    ## This setup will generate a 'full' image which supports most systems.
    ## No autodetection is done.
    # HOOKS="base udev block filesystems"
    ## This setup assembles a pata mdadm array with an encrypted root FS.
    ## Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
    # HOOKS="base udev block mdadm encrypt filesystems"
    ## This setup loads an lvm2 volume group on a usb device.
    # HOOKS="base udev block lvm2 filesystems"
    ## NOTE: If you have /usr on a separate partition, you MUST include the
    # usr, fsck and shutdown hooks.
    HOOKS="base udev autodetect modconf block filesystems keyboard fsck keymap consolefont"
    # COMPRESSION
    # Use this to compress the initramfs image. By default, gzip compression
    # is used. Use 'cat' to create an uncompressed image.
    #COMPRESSION="gzip"
    #COMPRESSION="bzip2"
    #COMPRESSION="lzma"
    #COMPRESSION="xz"
    #COMPRESSION="lzop"
    #COMPRESSION="lz4"
    # COMPRESSION_OPTIONS
    # Additional options for the compressor
    #COMPRESSION_OPTIONS=""
    I used mkinitcpio -p linux as far as I remember....
    I think that connectors should be just fine. Otherwise grub wouldn't load at all, right?

  • Lenovo W530 - Stuck at "Loading initial ramdisk" GRUB Discrete graphic

    As in the thread https://bbs.archlinux.org/viewtopic.php?id=146006 (only that I do not have any encryption on my drive) I cannot get my ThinkPad W530 booting (I have installed via EFI) with Discrete graphics mode (set in BIOS). NVIDIA Optimus works with optirun and Integrated graphics works fine but I cannot start with Discrete graphics.
    I want to do this since I cannot connect an external monitor to my computer at all right now (the Mini DisplayPort and VGA adapter are only physically connected to the NVIDIA card). I have tried following several more or less incomplete guides on how to start a second X server with bumblebee but I cannot get those working and do not see two X servers a a good solution. I want a virtual display that spans over two monitors. I tried booting the computer with an Ubuntu Live USB stick and it automatically connected and used both monitors (when I set Discrete graphics in the BIOS) even in the installation process, and I can run games like StarCraft II just fine on my Arch install with optirun (when I set NVIDIA Optimus in the BIOS) so the hardware seems to work just fine.
    When I boot the regular Arch linux kernel (3.17.1-1-ARCH) with Discrete graphics I get to the message "Loading initial ramdisk...", then the screen turns black. My system is using GDM for login and Gnome as window manager.
    I managed to login blindly (not sure if it was through GDM or Ctrl + Alt + F2 since I tried both) during the black screen and execute a command that I later found in my .zsh_history file and I also can see that the drive access led is blinking a while after the black screen so it seems that the system has not hanged entirely. If I disable GDM the screen does not turn black but freezes at the "Loading initial ramdisk..." output.
    My /boot/grub/grub.cfg file is (I am not trying to boot with the linux-ck or linux-rt kernel that I also have installed):
    # 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="4"
    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,gpt3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3 25086a9b-a542-4018-9f71-4f492f09be91
    else
    search --no-floppy --fs-uuid --set=root 25086a9b-a542-4018-9f71-4f492f09be91
    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=sv_SE
    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/10_linux ###
    menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-25086a9b-a542-4018-9f71-4f492f09be91' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod fat
    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 B1C0-6D51
    else
    search --no-floppy --fs-uuid --set=root B1C0-6D51
    fi
    echo 'Läser in Linux linux-rt ...'
    linux /vmlinuz-linux-rt root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
    echo 'Läser in initial ramdisk ...'
    initrd /intel-ucode.img /initramfs-linux-rt.img
    submenu 'Avancerade flaggor för Arch Linux' $menuentry_id_option 'gnulinux-advanced-25086a9b-a542-4018-9f71-4f492f09be91' {
    menuentry 'Arch Linux, med Linux linux-rt' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-rt-advanced-25086a9b-a542-4018-9f71-4f492f09be91' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod fat
    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 B1C0-6D51
    else
    search --no-floppy --fs-uuid --set=root B1C0-6D51
    fi
    echo 'Läser in Linux linux-rt ...'
    linux /vmlinuz-linux-rt root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
    echo 'Läser in initial ramdisk ...'
    initrd /intel-ucode.img /initramfs-linux-rt.img
    menuentry 'Arch Linux, with Linux linux-rt (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-rt-fallback-25086a9b-a542-4018-9f71-4f492f09be91' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod fat
    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 B1C0-6D51
    else
    search --no-floppy --fs-uuid --set=root B1C0-6D51
    fi
    echo 'Läser in Linux linux-rt ...'
    linux /vmlinuz-linux-rt root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
    echo 'Läser in initial ramdisk ...'
    initrd /intel-ucode.img /initramfs-linux-rt-fallback.img
    menuentry 'Arch Linux, med Linux linux-ck' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-ck-advanced-25086a9b-a542-4018-9f71-4f492f09be91' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod fat
    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 B1C0-6D51
    else
    search --no-floppy --fs-uuid --set=root B1C0-6D51
    fi
    echo 'Läser in Linux linux-ck ...'
    linux /vmlinuz-linux-ck root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
    echo 'Läser in initial ramdisk ...'
    initrd /intel-ucode.img /initramfs-linux-ck.img
    menuentry 'Arch Linux, with Linux linux-ck (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-ck-fallback-25086a9b-a542-4018-9f71-4f492f09be91' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod fat
    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 B1C0-6D51
    else
    search --no-floppy --fs-uuid --set=root B1C0-6D51
    fi
    echo 'Läser in Linux linux-ck ...'
    linux /vmlinuz-linux-ck root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
    echo 'Läser in initial ramdisk ...'
    initrd /intel-ucode.img /initramfs-linux-ck-fallback.img
    menuentry 'Arch Linux, med Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-25086a9b-a542-4018-9f71-4f492f09be91' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod fat
    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 B1C0-6D51
    else
    search --no-floppy --fs-uuid --set=root B1C0-6D51
    fi
    echo 'Läser in Linux linux ...'
    linux /vmlinuz-linux root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
    echo 'Läser in initial ramdisk ...'
    initrd /intel-ucode.img /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-25086a9b-a542-4018-9f71-4f492f09be91' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod fat
    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 B1C0-6D51
    else
    search --no-floppy --fs-uuid --set=root B1C0-6D51
    fi
    echo 'Läser in Linux linux ...'
    linux /vmlinuz-linux root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
    echo 'Läser in initial ramdisk ...'
    initrd /intel-ucode.img /initramfs-linux-fallback.img
    ### END /etc/grub.d/10_linux ###
    ### 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+ ###
    Is the error with GRUB, with the kernel, with the NVIDIA drivers or with Xorg? How can I debug and fix this once and for all?
    UPDATE:
    I have managed to login to the computer when it has reached the black screen via SSH with my phone and got the dmesg output:
    [ 0.000000] CPU0 microcode updated early to revision 0x1b, date = 2014-05-29
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.17.1-1-ARCH (nobody@var-lib-archbuild-testing-x86_64-tobias) (gcc version 4.9.1 20140903 (prerelease) (GCC) ) #1 SMP PREEMPT Wed Oct 15 15:04:35 CEST 2014
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009cfff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d000-0x00000000000bffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cbc6ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000cbc70000-0x00000000cbe71fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000cbe72000-0x00000000db14efff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000db14f000-0x00000000db34efff] type 20
    [ 0.000000] BIOS-e820: [mem 0x00000000db34f000-0x00000000df69efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000df69f000-0x00000000df79efff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000df79f000-0x00000000df7fefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000df7ff000-0x00000000df7fffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000df800000-0x00000000dfffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f80f8000-0x00000000f80f8fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000021dffffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] efi: EFI v2.31 by Lenovo
    [ 0.000000] efi: ACPI 2.0=0xdf7fe014 ACPI=0xdf7fe000 SMBIOS=0xdf69e000
    [ 0.000000] efi: mem00: type=7, attr=0xf, range=[0x0000000000000000-0x0000000000087000) (0MB)
    [ 0.000000] efi: mem01: type=4, attr=0xf, range=[0x0000000000087000-0x0000000000088000) (0MB)
    [ 0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000088000-0x000000000009d000) (0MB)
    [ 0.000000] efi: mem03: type=0, attr=0xf, range=[0x000000000009d000-0x00000000000a0000) (0MB)
    [ 0.000000] efi: mem04: type=2, attr=0xf, range=[0x0000000000100000-0x0000000001053000) (15MB)
    [ 0.000000] efi: mem05: type=7, attr=0xf, range=[0x0000000001053000-0x0000000002000000) (15MB)
    [ 0.000000] efi: mem06: type=2, attr=0xf, range=[0x0000000002000000-0x0000000002f53000) (15MB)
    [ 0.000000] efi: mem07: type=7, attr=0xf, range=[0x0000000002f53000-0x0000000037834000) (840MB)
    [ 0.000000] efi: mem08: type=2, attr=0xf, range=[0x0000000037834000-0x0000000037c12000) (3MB)
    [ 0.000000] efi: mem09: type=7, attr=0xf, range=[0x0000000037c12000-0x0000000093e96000) (1474MB)
    [ 0.000000] efi: mem10: type=2, attr=0xf, range=[0x0000000093e96000-0x00000000c9841000) (857MB)
    [ 0.000000] efi: mem11: type=4, attr=0xf, range=[0x00000000c9841000-0x00000000c9861000) (0MB)
    [ 0.000000] efi: mem12: type=7, attr=0xf, range=[0x00000000c9861000-0x00000000cbc5a000) (35MB)
    [ 0.000000] efi: mem13: type=4, attr=0xf, range=[0x00000000cbc5a000-0x00000000cbc70000) (0MB)
    [ 0.000000] efi: mem14: type=0, attr=0xf, range=[0x00000000cbc70000-0x00000000cbe72000) (2MB)
    [ 0.000000] efi: mem15: type=4, attr=0xf, range=[0x00000000cbe72000-0x00000000cc831000) (9MB)
    [ 0.000000] efi: mem16: type=7, attr=0xf, range=[0x00000000cc831000-0x00000000ccce0000) (4MB)
    [ 0.000000] efi: mem17: type=1, attr=0xf, range=[0x00000000ccce0000-0x00000000cccfd000) (0MB)
    [ 0.000000] efi: mem18: type=7, attr=0xf, range=[0x00000000cccfd000-0x00000000cec6f000) (31MB)
    [ 0.000000] efi: mem19: type=4, attr=0xf, range=[0x00000000cec6f000-0x00000000cec70000) (0MB)
    [ 0.000000] efi: mem20: type=7, attr=0xf, range=[0x00000000cec70000-0x00000000cec81000) (0MB)
    [ 0.000000] efi: mem21: type=4, attr=0xf, range=[0x00000000cec81000-0x00000000d0974000) (28MB)
    [ 0.000000] efi: mem22: type=7, attr=0xf, range=[0x00000000d0974000-0x00000000d0986000) (0MB)
    [ 0.000000] efi: mem23: type=4, attr=0xf, range=[0x00000000d0986000-0x00000000d254f000) (27MB)
    [ 0.000000] efi: mem24: type=7, attr=0xf, range=[0x00000000d254f000-0x00000000dac78000) (135MB)
    [ 0.000000] efi: mem25: type=2, attr=0xf, range=[0x00000000dac78000-0x00000000dac82000) (0MB)
    [ 0.000000] efi: mem26: type=3, attr=0xf, range=[0x00000000dac82000-0x00000000db14f000) (4MB)
    [ 0.000000] efi: mem27: type=5, attr=0x800000000000000f, range=[0x00000000db14f000-0x00000000db228000) (0MB)
    [ 0.000000] efi: mem28: type=5, attr=0x800000000000000f, range=[0x00000000db228000-0x00000000db34f000) (1MB)
    [ 0.000000] efi: mem29: type=6, attr=0x800000000000000f, range=[0x00000000db34f000-0x00000000dbef8000) (11MB)
    [ 0.000000] efi: mem30: type=6, attr=0x800000000000000f, range=[0x00000000dbef8000-0x00000000ded9f000) (46MB)
    [ 0.000000] efi: mem31: type=0, attr=0xf, range=[0x00000000ded9f000-0x00000000df3f0000) (6MB)
    [ 0.000000] efi: mem32: type=0, attr=0xf, range=[0x00000000df3f0000-0x00000000df69b000) (2MB)
    [ 0.000000] efi: mem33: type=0, attr=0xf, range=[0x00000000df69b000-0x00000000df69d000) (0MB)
    [ 0.000000] efi: mem34: type=0, attr=0xf, range=[0x00000000df69d000-0x00000000df69f000) (0MB)
    [ 0.000000] efi: mem35: type=10, attr=0xf, range=[0x00000000df69f000-0x00000000df6f0000) (0MB)
    [ 0.000000] efi: mem36: type=10, attr=0xf, range=[0x00000000df6f0000-0x00000000df79f000) (0MB)
    [ 0.000000] efi: mem37: type=9, attr=0xf, range=[0x00000000df79f000-0x00000000df7d7000) (0MB)
    [ 0.000000] efi: mem38: type=9, attr=0xf, range=[0x00000000df7d7000-0x00000000df7ff000) (0MB)
    [ 0.000000] efi: mem39: type=4, attr=0xf, range=[0x00000000df7ff000-0x00000000df800000) (0MB)
    [ 0.000000] efi: mem40: type=7, attr=0xf, range=[0x0000000100000000-0x000000021e000000) (4576MB)
    [ 0.000000] efi: mem41: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
    [ 0.000000] efi: mem42: type=0, attr=0x0, range=[0x00000000df800000-0x00000000e0000000) (8MB)
    [ 0.000000] efi: mem43: type=11, attr=0x8000000000000001, range=[0x00000000f80f8000-0x00000000f80f9000) (0MB)
    [ 0.000000] efi: mem44: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: LENOVO 244759G/244759G, BIOS G5ET92WW (2.52 ) 02/27/2013
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] AGP: No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x21e000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-FFFFF uncachable
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0FFC00000 mask FFFC00000 write-protect
    [ 0.000000] 1 base 000000000 mask F80000000 write-back
    [ 0.000000] 2 base 080000000 mask FC0000000 write-back
    [ 0.000000] 3 base 0C0000000 mask FE0000000 write-back
    [ 0.000000] 4 base 0DF800000 mask FFF800000 uncachable
    [ 0.000000] 5 base 100000000 mask F00000000 write-back
    [ 0.000000] 6 base 200000000 mask FE0000000 write-back
    [ 0.000000] 7 base 21E000000 mask FFE000000 uncachable
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0xdf800 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x02b2f000, 0x02b2ffff] PGTABLE
    [ 0.000000] BRK [0x02b30000, 0x02b30fff] PGTABLE
    [ 0.000000] BRK [0x02b31000, 0x02b31fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x21de00000-0x21dffffff]
    [ 0.000000] [mem 0x21de00000-0x21dffffff] page 2M
    [ 0.000000] BRK [0x02b32000, 0x02b32fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x21c000000-0x21ddfffff]
    [ 0.000000] [mem 0x21c000000-0x21ddfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x200000000-0x21bffffff]
    [ 0.000000] [mem 0x200000000-0x21bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0xcbc6ffff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0xcbbfffff] page 2M
    [ 0.000000] [mem 0xcbc00000-0xcbc6ffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xcbe72000-0xdb14efff]
    [ 0.000000] [mem 0xcbe72000-0xcbffffff] page 4k
    [ 0.000000] [mem 0xcc000000-0xdaffffff] page 2M
    [ 0.000000] [mem 0xdb000000-0xdb14efff] page 4k
    [ 0.000000] BRK [0x02b33000, 0x02b33fff] PGTABLE
    [ 0.000000] BRK [0x02b34000, 0x02b34fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xdf7ff000-0xdf7fffff]
    [ 0.000000] [mem 0xdf7ff000-0xdf7fffff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
    [ 0.000000] [mem 0x100000000-0x1ffffffff] page 2M
    [ 0.000000] RAMDISK: [mem 0x37834000-0x37c11fff]
    [ 0.000000] ACPI: Early table checksum verification disabled
    [ 0.000000] ACPI: RSDP 0x00000000DF7FE014 000024 (v02 LENOVO)
    [ 0.000000] ACPI: XSDT 0x00000000DF7FE170 0000CC (v01 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: FACP 0x00000000DF7E6000 00010C (v05 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: DSDT 0x00000000DF7E8000 010A68 (v01 LENOVO TP-G5 00002520 INTL 20061109)
    [ 0.000000] ACPI: FACS 0x00000000DF754000 000040
    [ 0.000000] ACPI: SLIC 0x00000000DF7FD000 000176 (v01 LENOVO TP-G5 00002520 PTL 00000001)
    [ 0.000000] ACPI: TCPA 0x00000000DF7FC000 000032 (v02 PTL LENOVO 06040000 LNVO 00000001)
    [ 0.000000] ACPI: SSDT 0x00000000DF7FB000 000408 (v01 LENOVO TP-SSDT2 00000200 INTL 20061109)
    [ 0.000000] ACPI: SSDT 0x00000000DF7FA000 000033 (v01 LENOVO TP-SSDT1 00000100 INTL 20061109)
    [ 0.000000] ACPI: SSDT 0x00000000DF7F9000 000797 (v01 LENOVO SataAhci 00001000 INTL 20061109)
    [ 0.000000] ACPI: HPET 0x00000000DF7E4000 000038 (v01 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: APIC 0x00000000DF7E3000 000098 (v01 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: MCFG 0x00000000DF7E2000 00003C (v01 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: ECDT 0x00000000DF7E1000 000052 (v01 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: FPDT 0x00000000DF7E0000 000064 (v01 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: ASF! 0x00000000DF7E7000 0000A5 (v32 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: UEFI 0x00000000DF7DF000 00003E (v01 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: UEFI 0x00000000DF7DE000 000042 (v01 PTL COMBUF 00000001 PTL 00000001)
    [ 0.000000] ACPI: MSDM 0x00000000DF7DD000 000055 (v03 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: SSDT 0x00000000DF7DC000 000D23 (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
    [ 0.000000] ACPI: SSDT 0x00000000DF7DB000 000A83 (v01 PmRef CpuPm 00003000 INTL 20061109)
    [ 0.000000] ACPI: DMAR 0x00000000DF7DA000 000080 (v01 INTEL SNB 00000001 INTL 00000001)
    [ 0.000000] ACPI: UEFI 0x00000000DF7D9000 0002A6 (v01 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: DBG2 0x00000000DF7D8000 0000E9 (v00 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: BGRT 0x00000000DF7D7000 000038 (v00 LENOVO TP-G5 00002520 PTL 00000002)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000021dffffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x21dffffff]
    [ 0.000000] NODE_DATA [mem 0x21dff3000-0x21dff6fff]
    [ 0.000000] [ffffea0000000000-ffffea00087fffff] PMD -> [ffff880215600000-ffff88021d5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x21dffffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
    [ 0.000000] node 0: [mem 0x00100000-0xcbc6ffff]
    [ 0.000000] node 0: [mem 0xcbe72000-0xdb14efff]
    [ 0.000000] node 0: [mem 0xdf7ff000-0xdf7fffff]
    [ 0.000000] node 0: [mem 0x100000000-0x21dffffff]
    [ 0.000000] On node 0 totalpages: 2068202
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 23 pages reserved
    [ 0.000000] DMA zone: 3996 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 13950 pages used for memmap
    [ 0.000000] DMA32 zone: 892750 pages, LIFO batch:31
    [ 0.000000] Normal zone: 18304 pages used for memmap
    [ 0.000000] Normal zone: 1171456 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x000bffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xcbc70000-0xcbe71fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdb14f000-0xdb34efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdb34f000-0xdf69efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdf69f000-0xdf79efff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdf79f000-0xdf7fefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdf800000-0xdfffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xf80f7fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf80f8000-0xf80f8fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf80f9000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xffffffff]
    [ 0.000000] e820: [mem 0xe0000000-0xf80f7fff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88021dc00000 s86848 r8192 d23744 u262144
    [ 0.000000] pcpu-alloc: s86848 r8192 d23744 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2035861
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=25086a9b-a542-4018-9f71-4f492f09be91 rw quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
    [ 0.000000] AGP: Checking aperture...
    [ 0.000000] AGP: No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 7985704K/8272808K available (5381K kernel code, 909K rwdata, 1712K rodata, 1140K init, 1176K bss, 287104K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
    [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
    [ 0.000000] NR_IRQS:8448 nr_irqs:488 0
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33554432 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 2793.799 MHz processor
    [ 0.000031] Calibrating delay loop (skipped), value calculated using timer frequency.. 5589.41 BogoMIPS (lpj=9312663)
    [ 0.000033] pid_max: default: 32768 minimum: 301
    [ 0.000039] ACPI: Core revision 20140724
    [ 0.009889] ACPI: All ACPI Tables successfully acquired
    [ 0.041073] Security Framework initialized
    [ 0.041080] Yama: becoming mindful.
    [ 0.041501] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.043224] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.044022] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.044030] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
    [ 0.044222] Initializing cgroup subsys memory
    [ 0.044227] Initializing cgroup subsys devices
    [ 0.044229] Initializing cgroup subsys freezer
    [ 0.044231] Initializing cgroup subsys net_cls
    [ 0.044232] Initializing cgroup subsys blkio
    [ 0.044251] CPU: Physical Processor ID: 0
    [ 0.044251] CPU: Processor Core ID: 0
    [ 0.044256] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.044576] mce: CPU supports 9 MCE banks
    [ 0.044587] CPU0: Thermal monitoring enabled (TM1)
    [ 0.044597] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
    [ 0.044696] Freeing SMP alternatives memory: 20K (ffffffff81a02000 - ffffffff81a07000)
    [ 0.047190] ftrace: allocating 20674 entries in 81 pages
    [ 0.055722] dmar: Host address width 36
    [ 0.055724] dmar: DRHD base: 0x000000fed90000 flags: 0x1
    [ 0.055728] dmar: IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c9008020660262 ecap f0105a
    [ 0.055729] dmar: RMRR base: 0x000000debba000 end: 0x000000debd0fff
    [ 0.055802] IOAPIC id 2 under DRHD base 0xfed90000 IOMMU 0
    [ 0.055803] HPET id 0 under DRHD base 0xfed90000
    [ 0.055804] Queued invalidation will be enabled to support x2apic and Intr-remapping.
    [ 0.055890] Enabled IRQ remapping in x2apic mode
    [ 0.055891] Enabling x2apic
    [ 0.055892] Enabled x2apic
    [ 0.055900] Switched APIC routing to cluster x2apic.
    [ 0.056343] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.089389] smpboot: CPU0: Intel(R) Core(TM) i7-3840QM CPU @ 2.80GHz (fam: 06, model: 3a, stepping: 09)
    [ 0.089397] TSC deadline timer enabled
    [ 0.089416] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
    [ 0.089433] ... version: 3
    [ 0.089434] ... bit width: 48
    [ 0.089435] ... generic registers: 4
    [ 0.089436] ... value mask: 0000ffffffffffff
    [ 0.089436] ... max period: 0000ffffffffffff
    [ 0.089437] ... fixed-purpose events: 3
    [ 0.089438] ... event mask: 000000070000000f
    [ 0.109521] x86: Booting SMP configuration:
    [ 0.109522] .... node #0, CPUs: #1
    [ 0.123229] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.129911] #2
    [ 0.140575] CPU2 microcode updated early to revision 0x1b, date = 2014-05-29
    [ 0.150115] #3
    [ 0.166977] #4
    [ 0.177626] CPU4 microcode updated early to revision 0x1b, date = 2014-05-29
    [ 0.187180] #5
    [ 0.207384] #6
    [ 0.218032] CPU6 microcode updated early to revision 0x1b, date = 2014-05-29
    [ 0.227588] #7
    [ 0.241051] x86: Booted up 1 node, 8 CPUs
    [ 0.241055] smpboot: Total of 8 processors activated (44718.31 BogoMIPS)
    [ 0.248684] devtmpfs: initialized
    [ 0.250902] PM: Registering ACPI NVS region [mem 0xdf69f000-0xdf79efff] (1048576 bytes)
    [ 0.251609] pinctrl core: initialized pinctrl subsystem
    [ 0.251647] RTC time: 16:26:11, date: 10/27/14
    [ 0.251717] NET: Registered protocol family 16
    [ 0.251810] cpuidle: using governor ladder
    [ 0.251813] cpuidle: using governor menu
    [ 0.251841] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.251843] ACPI: bus type PCI registered
    [ 0.251844] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.252033] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.252035] PCI: not using MMCONFIG
    [ 0.252036] PCI: Using configuration type 1 for base access
    [ 0.265514] ACPI: Added _OSI(Module Device)
    [ 0.265515] ACPI: Added _OSI(Processor Device)
    [ 0.265516] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.265517] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.266718] ACPI : EC: EC description table is found, configuring boot EC
    [ 0.270105] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.309157] ACPI: Dynamic OEM Table Load:
    [ 0.309168] ACPI: SSDT 0xFFFF880211C58000 000A01 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    [ 0.325525] ACPI: Dynamic OEM Table Load:
    [ 0.325534] ACPI: SSDT 0xFFFF880211D29000 000303 (v01 PmRef ApIst 00003000 INTL 20061109)
    [ 0.338781] ACPI: Dynamic OEM Table Load:
    [ 0.338789] ACPI: SSDT 0xFFFF880211FBC000 000119 (v01 PmRef ApCst 00003000 INTL 20061109)
    [ 0.352988] ACPI: Interpreter enabled
    [ 0.352993] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
    [ 0.352997] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
    [ 0.353007] ACPI: (supports S0 S3 S4 S5)
    [ 0.353008] ACPI: Using IOAPIC for interrupt routing
    [ 0.353019] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.362314] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources
    [ 0.362393] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.364496] ACPI: Power Resource [PUBS] (on)
    [ 0.365000] acpi PNP0C0A:01: ACPI dock station (docks/bays count: 1)
    [ 0.365725] acpi LNXIOBAY:00: ACPI dock station (docks/bays count: 2)
    [ 0.367751] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.367805] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.367859] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.367910] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.367961] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.368011] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.368064] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.368114] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [ 0.368182] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
    [ 0.368186] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    [ 0.368265] acpi PNP0A08:00: _OSC: platform does not support [PCIeCapability]
    [ 0.368301] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
    [ 0.368303] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
    [ 0.368305] acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER]
    [ 0.368306] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
    [ 0.368436] PCI host bridge to bus 0000:00
    [ 0.368438] pci_bus 0000:00: root bus resource [bus 00-3f]
    [ 0.368440] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.368441] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.368443] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.368444] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    [ 0.368445] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    [ 0.368446] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    [ 0.368448] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
    [ 0.368449] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.368450] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.368451] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.368452] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.368454] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.368455] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.368456] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
    [ 0.368457] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
    [ 0.368459] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfebfffff]
    [ 0.368460] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff]
    [ 0.368466] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
    [ 0.368530] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
    [ 0.368561] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.368637] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
    [ 0.368661] pci 0000:00:14.0: reg 0x10: [mem 0xf4220000-0xf422ffff 64bit]
    [ 0.368730] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.368759] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.368797] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
    [ 0.368821] pci 0000:00:16.0: reg 0x10: [mem 0xf4235000-0xf423500f 64bit]
    [ 0.368896] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.368954] pci 0000:00:16.3: [8086:1e3d] type 00 class 0x070002
    [ 0.368972] pci 0000:00:16.3: reg 0x10: [io 0x5070-0x5077]
    [ 0.368981] pci 0000:00:16.3: reg 0x14: [mem 0xf423c000-0xf423cfff]
    [ 0.369103] pci 0000:00:19.0: [8086:1502] type 00 class 0x020000
    [ 0.369120] pci 0000:00:19.0: reg 0x10: [mem 0xf4200000-0xf421ffff]
    [ 0.369127] pci 0000:00:19.0: reg 0x14: [mem 0xf423b000-0xf423bfff]
    [ 0.369135] pci 0000:00:19.0: reg 0x18: [io 0x5040-0x505f]
    [ 0.369194] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [ 0.369219] pci 0000:00:19.0: System wakeup disabled by ACPI
    [ 0.369256] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
    [ 0.369276] pci 0000:00:1a.0: reg 0x10: [mem 0xf423a000-0xf423a3ff]
    [ 0.369363] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.369389] pci 0000:00:1a.0: System wakeup disabled by ACPI
    [ 0.369426] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
    [ 0.369442] pci 0000:00:1b.0: reg 0x10: [mem 0xf4230000-0xf4233fff 64bit]
    [ 0.369514] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.369544] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.369581] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
    [ 0.369718] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.369792] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
    [ 0.369927] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.370005] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
    [ 0.370025] pci 0000:00:1d.0: reg 0x10: [mem 0xf4239000-0xf42393ff]
    [ 0.370111] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.370137] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.370171] pci 0000:00:1f.0: [8086:1e55] type 00 class 0x060100
    [ 0.370322] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
    [ 0.370339] pci 0000:00:1f.2: reg 0x10: [io 0x5068-0x506f]
    [ 0.370346] pci 0000:00:1f.2: reg 0x14: [io 0x507c-0x507f]
    [ 0.370354] pci 0000:00:1f.2: reg 0x18: [io 0x5060-0x5067]
    [ 0.370361] pci 0000:00:1f.2: reg 0x1c: [io 0x5078-0x507b]
    [ 0.370368] pci 0000:00:1f.2: reg 0x20: [io 0x5020-0x503f]
    [ 0.370376] pci 0000:00:1f.2: reg 0x24: [mem 0xf4238000-0xf42387ff]
    [ 0.370419] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.370472] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
    [ 0.370487] pci 0000:00:1f.3: reg 0x10: [mem 0xf4234000-0xf42340ff 64bit]
    [ 0.370507] pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf]
    [ 0.370616] pci 0000:01:00.0: [10de:0ffb] type 00 class 0x030000
    [ 0.370627] pci 0000:01:00.0: reg 0x10: [mem 0xf2000000-0xf2ffffff]
    [ 0.370637] pci 0000:01:00.0: reg 0x14: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.370646] pci 0000:01:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
    [ 0.370653] pci 0000:01:00.0: reg 0x24: [io 0x4000-0x407f]
    [ 0.370660] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
    [ 0.370746] pci 0000:01:00.1: [10de:0e1b] type 00 class 0x040300
    [ 0.370756] pci 0000:01:00.1: reg 0x10: [mem 0xf3000000-0xf3003fff]
    [ 1.377401] pci 0000:00:01.0: ASPM: Could not configure common clock
    [ 1.377430] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 1.377435] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
    [ 1.377440] pci 0000:00:01.0: bridge window [mem 0xf2000000-0xf30fffff]
    [ 1.377454] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
    [ 1.377615] pci 0000:02:00.0: [1180:e823] type 00 class 0x088001
    [ 1.377638] pci 0000:02:00.0: MMC controller base frequency changed to 50Mhz.
    [ 1.377665] pci 0000:02:00.0: reg 0x10: [mem 0xf3a00000-0xf3a000ff]
    [ 1.377889] pci 0000:02:00.0: supports D1 D2
    [ 1.377890] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 1.384191] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 1.384195] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    [ 1.384198] pci 0000:00:1c.0: bridge window [mem 0xf3a00000-0xf41fffff]
    [ 1.384207] pci 0000:00:1c.0: bridge window [mem 0xf3100000-0xf38fffff 64bit pref]
    [ 1.384435] pci 0000:03:00.0: [8086:4238] type 00 class 0x028000
    [ 1.384618] pci 0000:03:00.0: reg 0x10: [mem 0xf3900000-0xf3901fff 64bit]
    [ 1.385377] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 1.390878] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 1.390887] pci 0000:00:1c.1: bridge window [mem 0xf3900000-0xf39fffff]
    [ 1.391702] ACPI: Enabled 4 GPEs in block 00 to 3F
    [ 1.391749] ACPI : EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
    [ 1.391838] vgaarb: setting as boot device: PCI:0000:01:00.0
    [ 1.391840] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
    [ 1.391841] vgaarb: loaded
    [ 1.391842] vgaarb: bridge control possible 0000:01:00.0
    [ 1.391888] PCI: Using ACPI for IRQ routing
    [ 1.393360] PCI: pci_cache_line_size set to 64 bytes
    [ 1.393563] e820: reserve RAM buffer [mem 0x0009d000-0x0009ffff]
    [ 1.393565] e820: reserve RAM buffer [mem 0xcbc70000-0xcbffffff]
    [ 1.393566] e820: reserve RAM buffer [mem 0xdb14f000-0xdbffffff]
    [ 1.393567] e820: reserve RAM buffer [mem 0xdf800000-0xdfffffff]
    [ 1.393568] e820: reserve RAM buffer [mem 0x21e000000-0x21fffffff]
    [ 1.393651] NetLabel: Initializing
    [ 1.393652] NetLabel: domain hash size = 128
    [ 1.393653] NetLabel: protocols = UNLABELED CIPSOv4
    [ 1.393662] NetLabel: unlabeled traffic allowed by default
    [ 1.393685] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 1.393689] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 1.396725] Switched to clocksource hpet
    [ 1.400615] pnp: PnP ACPI init
    [ 1.400875] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 1.400878] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
    [ 1.400879] system 00:00: [mem 0x00100000-0xdfffffff] could not be reserved
    [ 1.400881] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
    [ 1.400883] system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
    [ 1.400885] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 1.400948] pnp 00:01: disabling [mem 0xfffff000-0xffffffff] because it overlaps 0000:01:00.0 BAR 6 [mem 0xfff80000-0xffffffff pref]
    [ 1.400954] pnp 00:01: [Firmware Bug]: PNP resource [mem 0xfed10000-0xfed13fff] covers only part of 0000:00:00.0 Intel MCH; extending to [mem 0xfed10000-0xfed17fff]
    [ 1.400969] system 00:01: [io 0x0400-0x047f] could not be reserved
    [ 1.400971] system 00:01: [io 0x0500-0x057f] has been reserved
    [ 1.400972] system 00:01: [io 0x0800-0x080f] has been reserved
    [ 1.400974] system 00:01: [io 0x15e0-0x15ef] has been reserved
    [ 1.400975] system 00:01: [io 0x1600-0x167f] has been reserved
    [ 1.400977] system 00:01: [mem 0xf8000000-0xfbffffff] could not be reserved
    [ 1.400979] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 1.400980] system 00:01: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 1.400982] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 1.400983] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 1.400985] system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved
    [ 1.400987] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 1.401030] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 1.401057] pnp 00:03: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active)
    [ 1.401080] pnp 00:04: Plug and Play ACPI device, IDs LEN0015 PNP0f13 (active)
    [ 1.401117] pnp 00:05: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active)
    [ 1.401508] pnp: PnP ACPI: found 6 devices
    [ 1.408246] pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
    [ 1.408283] pci 0000:01:00.0: BAR 6: assigned [mem 0xf3080000-0xf30fffff pref]
    [ 1.408285] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 1.408288] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
    [ 1.408290] pci 0000:00:01.0: bridge window [mem 0xf2000000-0xf30fffff]
    [ 1.408292] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
    [ 1.408295] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 1.408301] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    [ 1.408308] pci 0000:00:1c.0: bridge window [mem 0xf3a00000-0xf41fffff]
    [ 1.408313] pci 0000:00:1c.0: bridge window [mem 0xf3100000-0xf38fffff 64bit pref]
    [ 1.408320] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 1.408327] pci 0000:00:1c.1: bridge window [mem 0xf3900000-0xf39fffff]
    [ 1.408339] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 1.408340] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 1.408342] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 1.408343] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 1.408344] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 1.408346] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 1.408347] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
    [ 1.408348] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
    [ 1.408349] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
    [ 1.408351] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
    [ 1.408352] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
    [ 1.408353] pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff]
    [ 1.408355] pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff]
    [ 1.408356] pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff]
    [ 1.408357] pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff]
    [ 1.408358] pci_bus 0000:00: resource 19 [mem 0xe0000000-0xfebfffff]
    [ 1.408360] pci_bus 0000:00: resource 20 [mem 0xfed40000-0xfed4bfff]
    [ 1.408361] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
    [ 1.408362] pci_bus 0000:01: resource 1 [mem 0xf2000000-0xf30fffff]
    [ 1.408364] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xf1ffffff 64bit pref]
    [ 1.408365] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
    [ 1.408366] pci_bus 0000:02: resource 1 [mem 0xf3a00000-0xf41fffff]
    [ 1.408368] pci_bus 0000:02: resource 2 [mem 0xf3100000-0xf38fffff 64bit pref]
    [ 1.408369] pci_bus 0000:03: resource 1 [mem 0xf3900000-0xf39fffff]
    [ 1.408391] NET: Registered protocol family 2
    [ 1.408550] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
    [ 1.408683] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 1.408851] TCP: Hash tables configured (established 65536 bind 65536)
    [ 1.408867] TCP: reno registered
    [ 1.408875] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 1.408903] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 1.408956] NET: Registered protocol family 1
    [ 1.409307] pci 0000:01:00.0: Video device with shadowed ROM
    [ 1.409390] PCI: CLS 64 bytes, default 64
    [ 1.409431] Unpacking initramfs...
    [ 1.456654] Freeing initrd memory: 3960K (ffff880037834000 - ffff880037c12000)
    [ 1.456675] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 1.456678] software IO TLB [mem 0xd6c82000-0xdac82000] (64MB) mapped at [ffff8800d6c82000-ffff8800dac81fff]
    [ 1.457012] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
    [ 1.457059] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x1b
    [ 1.457066] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x1b
    [ 1.457072] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x1b
    [ 1.457077] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x1b
    [ 1.457085] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x1b
    [ 1.457092] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x1b
    [ 1.457098] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x1b
    [ 1.457105] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x1b
    [ 1.457147] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 1.457167] Scanning for low memory corruption every 60 seconds
    [ 1.457402] futex hash table entries: 2048 (order: 5, 131072 bytes)
    [ 1.457428] Initialise system trusted keyring
    [ 1.457761] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 1.458800] zpool: loaded
    [ 1.458802] zbud: loaded
    [ 1.458947] VFS: Disk quotas dquot_6.5.2
    [ 1.458972] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 1.459072] msgmni has been set to 15747
    [ 1.459118] Key type big_key registered
    [ 1.459270] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 1.459324] io scheduler noop registered
    [ 1.459326] io scheduler deadline registered
    [ 1.459347] io scheduler cfq registered (default)
    [ 1.459465] pcieport 0000:00:01.0: irq 25 for MSI/MSI-X
    [ 1.459740] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 1.459753] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 1.459780] efifb: invalid framebuffer address
    [ 1.459787] intel_idle: MWAIT substates: 0x21120
    [ 1.459788] intel_idle: v0.4 model 0x3A
    [ 1.459789] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 1.460069] GHES: HEST is not enabled!
    [ 1.460132] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 1.480906] 0000:00:16.3: ttyS0 at I/O 0x5070 (irq = 19, base_baud = 115200) is a 16550A
    [ 1.481036] Linux agpgart interface v0.103
    [ 1.481100] rtc_cmos 00:02: RTC can wake from S4
    [ 1.481222] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    [ 1.481253] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 1.481261] Intel P-state driver initializing.
    [ 1.481419] ledtrig-cpu: registered to indicate activity on CPUs
    [ 1.481599] TCP: cubic registered
    [ 1.481764] NET: Registered protocol family 10
    [ 1.482132] NET: Registered protocol family 17
    [ 1.482732] Loading compiled-in X.509 certificates
    [ 1.482753] registered taskstats version 1
    [ 1.483687] Magic number: 2:127:440
    [ 1.483695] clockevents broadcast: hash matches
    [ 1.483710] pcieport 0000:00:1c.1: hash matches
    [ 1.483810] rtc_cmos 00:02: setting system clock to 2014-10-27 16:26:12 UTC (1414427172)
    [ 1.483917] PM: Hibernation image not present or could not be loaded.
    [ 1.485343] Freeing unused kernel memory: 1140K (ffffffff818e5000 - ffffffff81a02000)
    [ 1.485346] Write protecting the kernel read-only data: 8192k
    [ 1.488857] Freeing unused kernel memory: 752K (ffff880002544000 - ffff880002600000)
    [ 1.490323] Freeing unused kernel memory: 336K (ffff8800027ac000 - ffff880002800000)
    [ 1.500877] random: systemd-tmpfile urandom read with 7 bits of entropy available
    [ 1.502894] systemd-udevd[79]: starting version 216
    [ 1.511492] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
    [ 1.513508] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 1.513799] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 1.516752] ACPI: bus type USB registered
    [ 1.516776] usbcore: registered new interface driver usbfs
    [ 1.516791] usbcore: registered new interface driver hub
    [ 1.516980] usbcore: registered new device driver usb
    [ 1.517579] sdhci: Secure Digital Host Controller Interface driver
    [ 1.517580] sdhci: Copyright(c) Pierre Ossman
    [ 1.517794] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.517896] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 1.517906] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
    [ 1.518010] sdhci-pci 0000:02:00.0: SDHCI controller found [1180:e823] (rev 5)
    [ 1.518069] SCSI subsystem initialized
    [ 1.518079] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 1.518158] xhci_hcd 0000:00:14.0: irq 26 for MSI/MSI-X
    [ 1.518215] sdhci-pci 0000:02:00.0: No vmmc regulator found
    [ 1.518217] sdhci-pci 0000:02:00.0: No vqmmc regulator found
    [ 1.518225] ehci-pci: EHCI PCI platform driver
    [ 1.518342] mmc0: SDHCI controller on PCI [0000:02:00.0] using DMA
    [ 1.518499] hub 1-0:1.0: USB hub found
    [ 1.518510] hub 1-0:1.0: 4 ports detected
    [ 1.518776] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 1.518778] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [ 1.518958] hub 2-0:1.0: USB hub found
    [ 1.518969] hub 2-0:1.0: 4 ports detected
    [ 1.519036] libata version 3.00 loaded.
    [ 1.519376] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 1.519383] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 3
    [ 1.519397] ehci-pci 0000:00:1a.0: debug port 2
    [ 1.523293] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 1.523300] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf423a000
    [ 1.528153] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.530239] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 1.530357] hub 3-0:1.0: USB hub found
    [ 1.530361] hub 3-0:1.0: 3 ports detected
    [ 1.530512] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 1.530515] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
    [ 1.530528] ehci-pci 0000:00:1d.0: debug port 2
    [ 1.534415] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 1.534428] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf4239000
    [ 1.543624] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 1.543867] hub 4-0:1.0: USB hub found
    [ 1.543871] hub 4-0:1.0: 3 ports detected
    [ 1.544002] ahci 0000:00:1f.2: version 3.0
    [ 1.544111] ahci 0000:00:1f.2: irq 27 for MSI/MSI-X
    [ 1.544153] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3 impl SATA mode
    [ 1.544155] ahci 0000:00:1f.2: flags: 64bit ncq ilck pm led clo pio slum part ems apst
    [ 1.550818] scsi host0: ahci
    [ 1.551275] scsi host1: ahci
    [ 1.551751] scsi host2: ahci
    [ 1.552085] scsi host3: ahci
    [ 1.552361] scsi host4: ahci
    [ 1.552561] scsi host5: ahci
    [ 1.552602] ata1: SATA max UDMA/133 abar m2048@0xf4238000 port 0xf4238100 irq 27
    [ 1.552605] ata2: SATA max UDMA/133 abar m2048@0xf4238000 port 0xf4238180 irq 27
    [ 1.552606] ata3: DUMMY
    [ 1.552606] ata4: DUMMY
    [ 1.552607] ata5: DUMMY
    [ 1.552608] ata6: DUMMY
    [ 1.837361] usb 3-1: new high-speed USB device number 2 using ehci-pci
    [ 1.870771] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 1.882191] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.882199] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.892187] ata1.00: ATA-9: INTEL SSDSC2BW240A3L, LF1i, max UDMA/133
    [ 1.892194] ata1.00: 468862128 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.902211] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.902220] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.912240] ata1.00: configured for UDMA/133
    [ 1.912585] scsi 0:0:0:0: Direct-Access ATA INTEL SSDSC2BW24 LF1i PQ: 0 ANSI: 5
    [ 1.924185] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.926015] ata2.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.926024] ata2.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.927460] ata2.00: ATA-8: WDC WD10JPVT-08A1YT2, 01.01A01, max UDMA/133
    [ 1.927467] ata2.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.929353] ata2.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.929362] ata2.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.930787] ata2.00: configured for UDMA/133
    [ 1.931112] scsi 1:0:0:0: Direct-Access ATA WDC WD10JPVT-08A 1A01 PQ: 0 ANSI: 5
    [ 1.936614] sd 0:0:0:0: [sda] 468862128 512-byte logical blocks: (240 GB/223 GiB)
    [ 1.936637] sd 1:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
    [ 1.936640] sd 1:0:0:0: [sdb] 4096-byte physical blocks
    [ 1.936653] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.936655] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.936664] sd 1:0:0:0: [sdb] Write Protect is off
    [ 1.936666] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 1.936667] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.936684] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.937479] sda: sda1 sda2 sda3 sda4
    [ 1.937778] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.962137] hub 3-1:1.0: USB hub found
    [ 1.962324] hub 3-1:1.0: 6 ports detected
    [ 2.065022] sdb: sdb1 sdb2
    [ 2.065588] sd 1:0:0:0: [sdb] Attached SCSI disk
    [ 2.067665] usb 4-1: new high-speed USB device number 2 using ehci-pci
    [ 2.192302] hub 4-1:1.0: USB hub found
    [ 2.192454] hub 4-1:1.0: 8 ports detected
    [ 2.261319] usb 3-1.6: new high-speed USB device number 3 using ehci-pci
    [ 2.344660] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 2.458157] tsc: Refined TSC clocksource calibration: 2793.661 MHz
    [ 2.461737] usb 4-1.7: new low-speed USB device number 3 using ehci-pci
    [ 2.741966] systemd[1]: Cannot add dependency job for unit httpd.service, ignoring: Unit httpd.service failed to load: No such file or directory.
    [ 2.741977] systemd[1]: Cannot add dependency job for unit [email protected], ignoring: Unit [email protected] failed to load: No such file or directory.
    [ 2.766662] EXT4-fs (sda3): re-mounted. Opts: data=ordered
    [ 2.797195] systemd-udevd[209]: starting version 216
    [ 2.994729] pps_core: LinuxPPS API ver. 1 registered
    [ 2.994732] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
    [ 2.994980] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\_SB_.PCI0.LPC_.PMIO) (20140724/utaddress-258)
    [ 2.994985] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.994991] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.LPC_.LPIO) (20140724/utaddress-258)
    [ 2.994994] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.994995] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.LPC_.LPIO) (20140724/utaddress-258)
    [ 2.994997] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.994998] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.LPC_.LPIO) (20140724/utaddress-258)
    [ 2.995000] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 2.995001] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 2.995905] PTP clock support registered
    [ 2.996690] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 2.997968] mei_me 0000:00:16.0: irq 28 for MSI/MSI-X
    [ 3.000008] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
    [ 3.000009] e1000e: Copyright(c) 1999 - 2014 Intel Corporation.
    [ 3.004652] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
    [ 3.004707] e1000e 0000:00:19.0: irq 29 for MSI/MSI-X
    [ 3.011387] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
    [ 3.011549] ACPI: Lid Switch [LID]
    [ 3.011606] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
    [ 3.011610] ACPI: Sleep Button [SLPB]
    [ 3.011685] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 3.011688] ACPI: Power Button [PWRF]
    [ 3.011823] ACPI: Video Device [VID1] (multi-head: yes rom: yes post: no)
    [ 3.033484] acpi device:0a: registered as cooling_device8
    [ 3.033554] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09/LNXVIDEO:01/input/input5
    [ 3.037383] Non-volatile memory driver v1.3
    [ 3.042174] tpm_tis 00:05: 1.2 TPM (device-id 0x0, rev-id 78)
    [ 3.042375] wmi: Mapper loaded
    [ 3.042586] thinkpad_acpi: ThinkPad ACPI Extras v0.25
    [ 3.042588] thinkpad_acpi: http://ibm-acpi.sf.net/
    [ 3.042590] thinkpad_acpi: ThinkPad BIOS G5ET92WW (2.52 ), EC unknown
    [ 3.042591] thinkpad_acpi: Lenovo ThinkPad W530, model 244759G
    [ 3.043058] cfg80211: Calling CRDA to update world regulatory domain
    [ 3.043279] thinkpad_acpi: Unsupported brightness interface, please contact [email protected]
    [ 3.044385] thinkpad_acpi: radio switch found; radios are enabled
    [ 3.044398] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
    [ 3.044399] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
    [ 3.045054] ACPI: Battery Slot [BAT0] (battery present)
    [ 3.046083] thermal LNXTHERM:00: registered as thermal_zone0
    [ 3.046085] ACPI: Thermal Zone [THM0] (48 C)
    [ 3.046124] ACPI: AC Adapter [AC] (on-line)
    [ 3.046223] random: nonblocking pool is initialized
    [ 3.047273] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
    [ 3.050109] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input6
    [ 3.056235] rtc-efi rtc-efi: rtc core: registered rtc-efi as rtc1
    [ 3.056771] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 3.056772] Copyright(c) 2003- 2014 Intel Corporation
    [ 3.056924] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 3.057166] iwlwifi 0000:03:00.0: irq 30 for MSI/MSI-X
    [ 3.058976] iwlwifi 0000:03:00.0: Direct firmware load for iwlwifi-6000-6.ucode failed with error -2
    [ 3.058992] iwlwifi 0000:03:00.0: Direct firmware load for iwlwifi-6000-5.ucode failed with error -2
    [ 3.059556] input: PC Speaker as /devices/platform/pcspkr/input/input7
    [ 3.062216] iwlwifi 0000:03:00.0: loaded firmware version 9.221.4.1 build 25532 op_mode iwldvm
    [ 3.065041] AVX version of gcm_enc/dec engaged.
    [ 3.073560] Adding 8388604k swap on /dev/sda2. Priority:-1 extents:1 across:8388604k SSFS
    [ 3.102267] tpm_tis 00:05: TPM is disabled/deactivated (0x6)
    [ 3.105383] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled
    [ 3.105387] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
    [ 3.105388] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
    [ 3.105390] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Ultimate-N 6300 AGN, REV=0x74
    [ 3.105491] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
    [ 3.116970] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 3.119500] media: Linux media interface: v0.10
    [ 3.123002] Linux video capture interface: v2.00
    [ 3.126296] iTCO_vendor_support: vendor-support=0
    [ 3.127001] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
    [ 3.127038] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
    [ 3.127120] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 3.152895] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [ 3.157388] uvcvideo: Found UVC 1.00 device Integrated Camera (04f2:b2eb)
    [ 3.161446] input: Integrated Camera as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.6/3-1.6:1.0/input/input9
    [ 3.161525] usbcore: registered new interface driver uvcvideo
    [ 3.161527] USB Video Class driver (1.1.1)
    [ 3.163015] intel_rapl: Found RAPL domain package
    [ 3.163018] intel_rapl: Found RAPL domain core
    [ 3.174342] iwlwifi 0000:03:00.0 wlp3s0: renamed from wlan0
    [ 3.180951] systemd-journald[183]: Received request to flush runtime journal from PID 1
    [ 3.195849] systemd-udevd[212]: renamed network interface wlan0 to wlp3s0
    [ 3.196309] hidraw: raw HID events driver (C) Jiri Kosina
    [ 3.207108] usbcore: registered new interface driver usbhid
    [ 3.207115] usbhid: USB HID core driver
    [ 3.234434] hid-generic 0003:0765:5010.0001: hiddev0,hidraw0: USB HID v1.11 Device [HID 0765:5010] on usb-0000:00:1d.0-1.7/input0
    [ 3.279807] e1000e 0000:00:19.0 eth0: registered PHC clock
    [ 3.279810] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 3c:97:0e:96:b3:ae
    [ 3.279811

    According to the wiki adding rcutree.rcu_idle_gp_delay=1 as a kernel parameter should mitigate this:  "NVRM: GPU at 0000:01:00.0 has fallen off the bus."
    https://wiki.archlinux.org/index.php/NV … iled.21.29
    Adding nolapic stops my monitors from going black, but then I only have one cpu core, and probably other problems...

  • Total beginners guide

    I am interested in SAP BI and installed the trial version of Netweaver 2004s with BI.
    I wanted to play a bit around with info cubes etc and see what SAP BI can do. But I am already stuck at a very beginners point: no logical system
    And the standard users ddic etc do not have the privileges to create on.
    Is there somewhere a beginners guide to SAP in general and SAP BI in special?
    A quick how-to for a quick success and merely for try-out!
    Thanks in advance for your help,
    Karsten.

    There is a lot of documentation on SDN, Please go through these presentations & screencams which will give you clear idea of NW 2004s...
    https://www.sdn.sap.com/irj/sdn/developerareas/bi?rid=/webcontent/uuid/e78a5148-0701-0010-7da9-a6c721c6112e

  • Intepreting the beginners guide on UEFI

    hi..
    perhaps someone could clarify for me the meaning on the following text on the beginners guide.
    under Gumminboot instructions it states:
    You will need to manually create a configuration file to add an entry for Arch Linux to the gummiboot manager. Create /boot/loader/entries/arch.conf and add the following contents, replacing /dev/sdaX with your root partition, usually /dev/sda2:
    followed by the command line:
    # nano /boot/loader/entries/arch.conf
    followed by the text:
    title          Arch Linux
    linux          /vmlinuz-linux
    initrd         /initramfs-linux.img
    options        root=/dev/sdaX rw
    Am I meant to write the above four lines into the menu/screen that opens?
    I suspect there may have been an earlier instances where the same 'instruction' was given but as it's not implicit .. it wasn't done.
    similarly I get the following error message on attempting to install gummiboot
    File System /boot is not a fat EFI system Partition (ESP) file system.
    Now I have windows 8 and lubuntu currently installed and they were loading prior to start of this Arch install from a Fat 32 drive labelled /boot/efi.
    I wasn't however sure (as the instruction wasn't clear in the installation guide) but was I meant to format a new efi boot or just mount the existing..
    I mounted the existing as I was assuming that the ESP is basically a list of boot loaders and I didn't want to lose the win8 just yet.
    anymore useful suggestions?
    regards
    malcolm
    I further suspect that this install isn't going too well....
    regards

    with respect any installation I do is only as good as the tutorial I am using. I have in the past installed moderately complex set ups only 6-12 months later unable to repeat the exercise because the same tutorial is not available. and therein lies the problem.. I like many perform installations at this depth too infrequently to retain the method and thus rely entirely on tutorials.
    However the real problem is the 'black box' the bios has become as a consequence of UEFI.. and that's down to a complete lack of documentation (not a linux issue but a PC manufacturers or a failure of to provide documentation) ... one is extremely cautious to do anything that might corrupt the UEFI and require a back to base exercise for the electric brick that might result.
    With that in mind I rebooted the PC and whilst no Arch both the win8 and lubuntu partitions and bootloaders were unaffected.. so at least I can repeat my errors to date without destroying my machine (assuming that's possible)...
    we will get there in the end and whilst it may not be the walk in the park I'd like it to be .. I will hopefully get a linux OS running that uses all the hardware available and has just the nec configuration to run the programs and local server set up I want...
    back to square one in the morning...

  • Beginners Guide

    Hi all!
    First off, I'd like to congratulate the Arch team on doing a superb job in creating this distribution.
    I've installed Archlinux for the first time following the Beginners Guide and thought it might be helpful to point out a few mistakes (to me its a mistake - if not - then I'm sorry)
    In section 2.4 - documentation it says
    Change to vc/2 with <ALT>+F1 and invoke /usr/bin/less
    I believe it should have read
    Change to vc/2 with <ALT>+F1 and invoke /bin/less
    basically - take out "/usr" part.
    In section 2.10.4 - /etc/fstab where it gives you the code to list partitions by uuid
    As per the documentation - it gives
    ls -lF /dev/disk/by-uuid/
    to me - it should have said
    ls -lF /dev/disk/by-id
    That's it!  Other than the above - excellent documentation and I look forward to learning more and hopefully be able to contribute to Arch by helping others.
    Crackerjack

    Duologic wrote:crackerjack: I think it was with ALT + F2, and if you think there is a mistake in the guide, then edit it on the wiki. :-)
    I don't think beginners should be encouraged to change the Beginners Guide before the "mistake" has been confirmed by other users. I think crackerjack's idea to double-check first on the forum is a very sensible idea.
    Let us not forget this incident either.

  • Beginners Guide handbook

    I have created a handbook/booklet with the Beginners Guide, in a much more readable format instead of messy paragraphs and links when it is printed out normally. I will be selling them in my shop, Software Care (see my sig) for £1.99 + P&P.
    See
    http://shop.archux.com/content/arch-lin … ners-guide
    For more information.

    Cool
    Perhaps keep a link there to the "oldversion" page of the Beginner's Guide that you will be buying? After all, it will get outdated.

  • A few doubts in the 'beginners guide'

    Hello, I'm trying out arch (still with virtualbox), and I'm following the 'beginners guide' on the wiki.
    I managed to install it but ended up with a few doubts, about some parts of the installation.
    On the "Partition Hard Drives" part, it says that there are 3 types of disk partitions (primary, extended, logical), but when I'm creating the partitions with cfdisk, I can only choose between primary and logical. Does the extended gets created automatically when I create some logical partitions?
    When I have to set the filesystem mountpoints, I think that I don't do anything to the /dev/sda (I only set the ones with numbers at the end - the partitions), but I don't think the wiki is clear on this, the only thing I see there is this part: "Recall that partitions end in a number. Therefore, sda is not itself a partition, but rather, signifies an entire drive" which is easily overlooked when you don't understand much.
    When you need to choose the mirrors (/etc/pacman.d/mirrorlist), the wiki doesn't tell much. For example, what is the difference between choosing ftp or http servers? do you choose both? In the beginning there's a server that has as a comment #any, does this mean it will choose automatically which server it will use?
    that's it... for now :)

    moosie wrote:For the hard drive part, someone correct me if I'm wrong, but sda refers to the whole drive where as sda# refers to a partition, one might say portion, of this drive; i.e sda1 would be the first partition sda2 the second and so on. As for the mirrors for the difference between ftp and http refer to this link: http://daniel.haxx.se/docs/ftp-vs-http.html  I haven't read this but it seems to be a good source of knowledge. Also for the mirrors and the install as a whole I recommend watching this youtube video: http://www.youtube.com/watch?v=RjTTl_9aUXc in the video the reflector and curl are used to come up with the fastest mirrors based on your location and he goes through the whole installation process all the way to the point where he installs gnome.
    In general, if you're not sure of something, better not to post it. Also, don't do googling for someone else, Arch users are expected to be competent to do their own research. Else you end up feeding help vampires (not necessarily saying the OP is one).

  • HT1040 trying to make an ibook and have 800 photos, want format of 8 photos/page, but default is not that- "create" the initial book from iphoto "album" it loads less than 800 pics and then when i change layout i have blanks.

    trying to make an ibook and have 800 photos, want format of 8 photos/page, but default is not that- "create" the initial book from iphoto "album" it loads less than 800 pics and then when i change layout i have blanks.
    if i clear the book so that it is all blanks and then try to load in the pictures i have it loses the chronology of the pictures that i had established in the album.
    is there a way to import photos into an ibook template and keep the original order of the photos without having to do them one at a time?
    also, is there a way to insert a photo rather than just dragging it? i have tried the cut and paste funciton but it doesn't seem to work, the target site doesn't seem to register with iphoto.
    many thanks for your help.

    Photos are added to book in chronological order.  So if you want to add them to a book in the order you have placed them manually in an album do the following:
    1 - select all the photos in the album.
    2 - use the Photos ➙ Batch Change ➙ Date menu option as shown here. Select any date and add 1 minute between photos.
    3 - select just one photo from the album and create a book from it.
    4 - in the book click on the Options button ➙ Book Settings button and make sure the checkbox for Auto-layout pages is unchecked.
    5 - drag the album with your book photos onto the book icon and they will be imported into the Photos tray of the book in your pre-determined order but not into the pages themselves.
    OT

  • Any beginners' guide to Project Online?

    Hi all,
    My company has recently subscribed to Office 365 Pro and Project Online was included in the package. From what I can tell, Project Online is a really powerful tool that can be useful in many situations. As someone who has zero experience or exposure
    to Microsoft Project or Project Online, I find it extremely challenging to use it. Thus, I would appreciate your help in pointing me to the right direction in my attempt to learn how to use Project Online. Are there any books that I can refer to get started
    (some sort of beginners' guide would be really useful)?
    Thanks for your help.

    Hello,
    There are lots of really good books and blogs out there. Some links are below.
    A series I wrote myself:
    http://pwmather.wordpress.com/2014/07/22/getting-started-with-projectonline-round-up-ps2013-office365-project-ppm-sharepointonline-pm-sp2013/
    From Microsoft:
    https://support.office.com/client/Get-started-with-Project-Online-e3e5f64f-ada5-4f9d-a578-130b2d4e5f11
    See how you get on with those plus use your favourite search engine - you will find lots!
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS |
    MVP | Downloads

  • [SOLVED] Beginners' Guide stumped on pacman -Syyu curl

    I'm a total green noob on Arch and am going through the Beginners' Guide. I'm on the section about rankmirrors and am at pacman -Syyu curl and am getting the following:
    Is this normal? Is this the part where I continue to edit my mirrorlist and comment and uncomment servers until I don't get the Unauthorized error any longer?
    Thanks.
    Last edited by EdTheUniqueGeek (2012-04-27 23:53:53)

    EdTheUniqueGeek wrote:I'm a total green noob on Arch [...] I'm on the section about rankmirrors [...]
    If you're new to Arch don't you think that sticking to basic bulletproof setup would be wise and then learn new stuff? If you try all things that are not necessary there is high risk of breaking system and you wont even have a clue where start to look for solution. Back in my first days with Arch I didn't even consider such things like mirror rank - goal was to setup working system. My advice is - choose manually mirror that have low sync delay from http://www.archlinux.org/mirrors/status/ and focus on major things. Good luck and feel welcome on the forum
    EdTheUniqueGeek wrote:I am in the process I trying the shell script from adamrehard suggestion.
    Again - pick rit or kernel.org mirror - you can be pretty sure they are working right now, for troubleshooting you can even choose archlinux.org (but change it for real usage) find out if it's not the http/ftp thing like people earlier noticed and work the problem with your configuration, the problem is not mirror choosing
    Last edited by masteryod (2012-04-27 14:53:33)

  • [SOLVED] Configure The System (Beginners Guide) Question

    Hello!
    I'm currently working my way through the beginners guide, from the wiki.  All going ok so far and I've reached the Configure The System section. Which is where I'm a bit stuck.
    Beginners Guide wrote:You will be presented with a menu including the most important configuration files for your system. If you want to look up the available options as stated in /etc/rc.conf just press Alt+F2 to get a shell, look it up, and switch back to the installer with Alt+F1.
    The problem I have is looking up the available options. For example, to find my locale it states I should run locale -a, however when I hit Alt+f2 and enter the command at the bash shell ([Arch Linux: /]# ) I get the following error
    -bash: locale: command not found
    When I attempt to lookup other items I'm also unable to find those (such as timezone in /usr/share/zoneinfo).
    Can anyone let me know what I'm doing wrong, I'm missing something very obvious here, but sadly I just can't work it out!
    Last edited by Laatia (2008-03-23 08:56:38)

    dyscoria wrote:
    I wouldn't skip all of the steps, particularly adding your hostname to /etc/hosts. Just fill in as much as you can, and edit the rest after you've finished installing, though I think the defaults are safe enough to have a running system.
    If you typed in 'km' and chose your locale before you ran the /arch/setup command to start the installation, it should automatically enter in the locale you selected earlier (if you press yes in the dialog box that pops up).
    Confirm this as that's what happended in this location on 2 recent install.

  • [Solved] Mounting Partitions from Beginners Guide

    Hi everyone. I've setup Arch before, but I see that the installer has been removed. I had a question on some of the documentation from the Beginners Guide...
    From the section "Prepare the storage drive" it states to setup the partitions like so:
    Name Flags Part Type FS Type [Label] Size (MB)
    sda1 Boot Primary Linux 15440
    sda2 Primary Linux swap / Solaris 1024
    sda3 Primary Linux 133000*
    In the section below it ("Mount the partitions ") it explains to "mount any other separate partition" like so:
    # mkdir /mnt/home
    # mount /dev/sda4 /mnt/home
    # mkdir /mnt/boot
    # mount /dev/sda1 /mnt/boot
    However, I set my partitions up just how it was above, when I put in the syntax "mount /dev/sda4 /mnt/home" I receive an error that sda4 doesn't exist. Using my best judgement I put in "mount /dev/sda3 /mnt/home" as I set my partitions exactly the way from the storage drive section (minus some storage space for sda3). I'd just like to be sure that I set this up right and not doing anything extremely wrong. For some reason, Arch won't boot after I have the system setup in virtualbox, and I'm trying to narrow down the issue.
    Thanks.
    Last edited by Quill (2012-09-01 04:16:22)

    Trilby wrote:
    It says to do that if you have any additional partitions.  You do not.
    Sda3 should not be mounted as home, it should be your root partition right?  You should have already done
    mount /dev/sda3 /mnt
    You should not remount sda3 as something else (in fact I suspect it should give an error).
    That partition scheme does not have a separate home parition.
    Cool, thanks for the info. Yeah, sda3 is set as my root partition. It's solved.

  • Suggested edit to the Beginners Guide.

    I tried to edit the Beginners guide but don't have permission.
    The section headed 'Manual connection at boot using systemd' [1] is now a dead link, it should point to the new systemd-networkd way of doing things [2].
    Does anyone with permission fancy makng the edit?
    [1] https://wiki.archlinux.org/index.php/Be … #Static_IP
    [2] https://wiki.archlinux.org/index.php/Ne … d-networkd
    Last edited by slithery (2014-03-07 15:18:38)

    kynikos wrote:In think slithery tried to edit the Beginners' Guide article itself, which is indeed protected, but because it's only a meta-article that transcludes 3 sub-articles with the real content: Beginners' Guide/Preparation, Beginners' Guide/Installation and Beginners' Guide/Post-installation; these are the articles that users are supposed to edit.
    I too discovered this the hard way...

Maybe you are looking for