Installation with LVM and gpg-encrypted key, what to tell Grub

Hi,
after years of using Gentoo Linux I grew tired of the compilation effort, so I decided to give Arch Linux a shot. I like the idea of a basic system which I can fit to my needs instead of a bloated distribution.
I want to encrypt my disk and did this with the following tutorials:
Official Arch Linux Install Guide
DM Crypt with LUKS
Basic Cryptsetup
Gentoo DM-Crypt with LUKS
So far, the installation worked well, but I'm stuck with this problem:
I have a gpg encrypted key stored on a SD-Card.
My mkinitcpio.conf has the hook line:
HOOKS="base udev autodetect pata scsi sata mmc usbinput fsck keymap encrypt lvm2 filesystems
/etc/default/grub contains:
GRUB_CMDLINE_LINUX="cryptdevice=/dev/sda6:vg root=/dev-mapper/vg-root ro cryptkey=/dev/mmcblk0p1:jfs:/Key.gpg"
However, if I am booting, there are the following outputs:
No key available with this passphrase.
Invalid keyfile. Reverting to passphrase.
A password is required to access the vg volume:
Enter passphrase for /dev/sda6:
So, obviously, he isn't able to gpg-decrypt the key, or am I missing something?
I do really need some help at this point.

On my gentoo installation, I had to tell cryptsetup to use the decrypted key as password for the new key. In fact
gpg -q -d <GPG-Keyfile> | cryptsetup luksOpen /dev/<encryptedPartition> <cryptContainer>
did exactly what I wanted.
I wanted to have my system highly secured, so a password-protected keyfile on an extern medium was the best choice.
Edit: There has been another tutorial: System encryption with gpg encrypted keys, but it's out of date.
Last edited by iarumas (2012-12-05 22:50:34)

Similar Messages

  • System encryption using LUKS and GPG encrypted keys for arch linux

    Update: As of 2012-03-28, arch changed from gnupg 1.4 to 2.x which uses pinentry for the password dialog. The "etwo" hook described here doesn't work with gnupg 2. Either use the openssl hook below or use a statically compiled version of gnupg 1.4.
    Update: As of 2012-12-19, the mkinitcpio is not called during boot, unless the "install" file for the hook contains "add_runscript". This resulted in an unbootable system for me. Also, the method name was changed from install () to build ().
    Update: 2013-01-13: Updated the hook files using the corrections by Deth.
    Note: This guide is a bit dated now, in particular the arch installation might be different now. But essentially, the approach stays the same. Please also take a look at the posts further down, specifically the alternative hooks that use openssl.
    I always wanted to set up a fully encrypted arch linux server that uses gpg encrypted keyfiles on an external usb stick and luks for root filesystem encryption. I already did it once in gentoo using this guide. For arch, I had to play alot with initcpio hooks and after one day of experimentation, I finally got it working. I wrote a little guide for myself which I'm going to share here for anyone that might be interested. There might be better or easier ways, like I said this is just how I did it. I hope it might help someone else. Constructive feedback is always welcome
    Intro
    Using arch linux mkinitcpio's encrypt hook, one can easily use encrypted root partitions with LUKS. It's also possible to use key files stored on an external drive, like an usb stick. However, if someone steals your usb stick, he can just copy the key and potentially access the system. I wanted to have a little extra security by additionally encrypting the key file with gpg using a symmetric cipher and a passphrase.
    Since the encrypt hook doesn't support this scenario, I created a modifed hook called “etwo” (silly name I know, it was the first thing that came to my mind). It will simply look if the key file has the extension .gpg and, if yes, use gpg to decrypt it, then pipe the result into cryptsetup.
    Conventions
    In this short guide, I use the following disk/partition names:
    /dev/sda: is the hard disk that will contain an encrypted swap (/dev/sda1), /var (/dev/sda2) and root (/dev/sda3) partition.
    /dev/sdb is the usb stick that will contain the gpg encrypted luks keys, the kernel and grub. It will have one partition /dev/sdb1 formatted with ext2.
    /dev/mapper/root, /dev/mapper/swap and /dev/mapper/var will be the encrypted devices.
    Credits
    Thanks to the authors of SECURITY_System_Encryption_DM-Crypt_with_LUKS (gentoo wiki), System Encryption with LUKS (arch wiki), mkinitcpio (arch wiki) and Early Userspace in Arch Linux (/dev/brain0 blog)!
    Guide
    1. Boot the arch live cd
    I had to use a newer testing version, because the 2010.05 cd came with a broken gpg. You can download one here: http://releng.archlinux.org/isos/. I chose the “core“ version. Go ahead and boot the live cd, but don't start the setup yet.
    2. Set keymap
    Use km to set your keymap. This is important for non-qwerty keyboards to avoid suprises with passphrases...
    3. Wipe your discs
    ATTENTION: this will DELETE everything on /dev/sda and /dev/sdb forever! Do not blame me for any lost data!
    Before encrypting the hard disc, it has to be completely wiped and overwritten with random data. I used shred for this. Others use badblocks or dd with /dev/urandom. Either way, this will take a long time, depending on the size of your disc. I also wiped my usb stick just to be sure.
    shred -v /dev/sda
    shred -v /dev/sdb
    4. Partitioning
    Fire up fdisk and create the following partitions:
    /dev/sda1, type linux swap.
    /dev/sda2: type linux
    /dev/sda3: type linux
    /dev/sdb1, type linux
    Of course you can choose a different layout, this is just how I did it. Keep in mind that only the root filesystem will be decrypted by the initcpio. The rest will be decypted during normal init boot using /etc/crypttab, the keys being somewhere on the root filesystem.
    5. Format  and mount the usb stick
    Create an ext2 filesystem on /dev/sdb1:
    mkfs.ext2 /dev/sdb1
    mkdir /root/usb
    mount /dev/sdb1 /root/usb
    cd /root/usb # this will be our working directory for now.
    Do not mount anything to /mnt, because the arch installer will use that directory later to mount the encrypted root filesystem.
    6. Configure the network (if not already done automatically)
    ifconfig eth0 192.168.0.2 netmask 255.255.255.0
    route add default gw 192.168.0.1
    echo "nameserver 192.168.0.1" >> /etc/resolv.conf
    (this is just an example, your mileage may vary)
    7. Install gnupg
    pacman -Sy
    pacman -S gnupg
    Verify that gnupg works by launching gpg.
    8. Create the keys
    Just to be sure, make sure swap is off:
    cat /proc/swaps
    should return no entries.
    Create gpg encrypted keys (remember, we're still in our working dir /root/usb):
    dd if=/dev/urandom bs=512 count=4 | gpg -v --cipher-algo aes256 --digest-algo sha512 -c -a > root.gpg
    dd if=/dev/urandom bs=512 count=4 | gpg -v --cipher-algo aes256 --digest-algo sha512 -c -a > var.gpg
    Choose a strong password!!
    Don't do this in two steps, e.g don't do dd to a file and then gpg on that file. The key should never be stored in plain text on an unencrypted device, except if that device is wiped on system restart (ramfs)!
    Note that the default cipher for gpg is cast5, I just chose to use a different one.
    9. Create the encrypted devices with cryptsetup
    Create encrypted swap:
    cryptsetup -c aes-cbc-essiv:sha256 -s 256 -h whirlpool -d /dev/urandom create swap /dev/sda1
    You should see /dev/mapper/swap now. Don't format nor turn it on for now. This will be done by the arch installer.
    Important: From the Cryptsetup 1.1.2 Release notes:
    Cryptsetup can accept passphrase on stdin (standard input). Handling of new line (\n) character is defined by input specification:
        if keyfile is specified as "-" (using --key-file=- or by positional argument in luksFormat and luksAddKey, like cat file | cryptsetup --key-file=- <action> ), input is processed
          as normal binary file and no new line is interpreted.
        if there is no key file specification (with default input from stdin pipe like echo passphrase | cryptsetup <action> ) input is processed as input from terminal, reading will
          stop after new line is detected.
    If I understand this correctly, since the randomly generated key can contain a newline early on, piping the key into cryptsetup without specifying --key-file=- could result in a big part of the key to be ignored by cryptsetup. Example: if the random key was "foo\nandsomemorebaratheendofthekey", piping it directly into cryptsetup without --key-file=- would result in cryptsetup using only "foo" as key which would have big security implications. We should therefor ALWAYS pipe the key into cryptsetup using --key-file=- which ignores newlines.
    gpg -q -d root.gpg 2>/dev/null | cryptsetup -v -–key-file=- -c aes-cbc-essiv:sha256 -s 256 -h whirlpool luksFormat /dev/sda3
    gpg -q -d var.gpg 2>/dev/null | cryptsetup -v –-key-file=- -c aes-cbc-essiv:sha256 -s 256 -h whirlpool -v luksFormat /dev/sda2
    Check for any errors.
    10. Open the luks devices
    gpg -d root.gpg 2>/dev/null | cryptsetup -v –-key-file=- luksOpen /dev/sda3 root
    gpg -d var.gpg 2>/dev/null | cryptsetup -v –-key-file=- luksOpen /dev/sda2 var
    If you see /dev/mapper/root and /dev/mapper/var now, everything is ok.
    11. Start the installer /arch/setup
    Follow steps 1 to 3.
    At step 4 (Prepare hard drive(s), select “3 – Manually Configure block devices, filesystems and mountpoints. Choose /dev/sdb1 (the usb stick) as /boot, /dev/mapper/swap for swap, /dev/mapper/root for / and /dev/mapper/var for /var.
    Format all drives (choose “yes” when asked “do you want to have this filesystem (re)created”) EXCEPT for /dev/sdb1, choose “no”. Choose the correct filesystem for /dev/sdb1, ext2 in my case. Use swap for /dev/mapper/swap. For the rest, I chose ext4.
    Select DONE to start formatting.
    At step 5 (Select packages), select grub as boot loader. Select the base group. Add mkinitcpio.
    Start step 6 (Install packages).
    Go to step 7 (Configure System).
    By sure to set the correct KEYMAP, LOCALE and TIMEZONE in /etc/rc.conf.
    Edit /etc/fstab:
    /dev/mapper/root / ext4 defaults 0 1
    /dev/mapper/swap swap swap defaults 0 0
    /dev/mapper/var /var ext4 defaults 0 1
    # /dev/sdb1 /boot ext2 defaults 0 1
    Configure the rest normally. When you're done, setup will launch mkinitcpio. We'll manually launch this again later.
    Go to step 8 (install boot loader).
    Be sure to change the kernel line in menu.lst:
    kernel /vmlinuz26 root=/dev/mapper/root cryptdevice=/dev/sda3:root cryptkey=/dev/sdb1:ext2:/root.gpg
    Don't forget the :root suffix in cryptdevice!
    Also, my root line was set to (hd1,0). Had to change that to
    root (hd0,0)
    Install grub to /dev/sdb (the usb stick).
    Now, we can exit the installer.
    12. Install mkinitcpio with the etwo hook.
    Create /mnt/lib/initcpio/hooks/etwo:
    #!/usr/bin/ash
    run_hook() {
    /sbin/modprobe -a -q dm-crypt >/dev/null 2>&1
    if [ -e "/sys/class/misc/device-mapper" ]; then
    if [ ! -e "/dev/mapper/control" ]; then
    /bin/mknod "/dev/mapper/control" c $(cat /sys/class/misc/device-mapper/dev | sed 's|:| |')
    fi
    [ "${quiet}" = "y" ] && CSQUIET=">/dev/null"
    # Get keyfile if specified
    ckeyfile="/crypto_keyfile"
    usegpg="n"
    if [ "x${cryptkey}" != "x" ]; then
    ckdev="$(echo "${cryptkey}" | cut -d: -f1)"
    ckarg1="$(echo "${cryptkey}" | cut -d: -f2)"
    ckarg2="$(echo "${cryptkey}" | cut -d: -f3)"
    if poll_device "${ckdev}" ${rootdelay}; then
    case ${ckarg1} in
    *[!0-9]*)
    # Use a file on the device
    # ckarg1 is not numeric: ckarg1=filesystem, ckarg2=path
    if [ "${ckarg2#*.}" = "gpg" ]; then
    ckeyfile="${ckeyfile}.gpg"
    usegpg="y"
    fi
    mkdir /ckey
    mount -r -t ${ckarg1} ${ckdev} /ckey
    dd if=/ckey/${ckarg2} of=${ckeyfile} >/dev/null 2>&1
    umount /ckey
    # Read raw data from the block device
    # ckarg1 is numeric: ckarg1=offset, ckarg2=length
    dd if=${ckdev} of=${ckeyfile} bs=1 skip=${ckarg1} count=${ckarg2} >/dev/null 2>&1
    esac
    fi
    [ ! -f ${ckeyfile} ] && echo "Keyfile could not be opened. Reverting to passphrase."
    fi
    if [ -n "${cryptdevice}" ]; then
    DEPRECATED_CRYPT=0
    cryptdev="$(echo "${cryptdevice}" | cut -d: -f1)"
    cryptname="$(echo "${cryptdevice}" | cut -d: -f2)"
    else
    DEPRECATED_CRYPT=1
    cryptdev="${root}"
    cryptname="root"
    fi
    warn_deprecated() {
    echo "The syntax 'root=${root}' where '${root}' is an encrypted volume is deprecated"
    echo "Use 'cryptdevice=${root}:root root=/dev/mapper/root' instead."
    if poll_device "${cryptdev}" ${rootdelay}; then
    if /sbin/cryptsetup isLuks ${cryptdev} >/dev/null 2>&1; then
    [ ${DEPRECATED_CRYPT} -eq 1 ] && warn_deprecated
    dopassphrase=1
    # If keyfile exists, try to use that
    if [ -f ${ckeyfile} ]; then
    if [ "${usegpg}" = "y" ]; then
    # gpg tty fixup
    if [ -e /dev/tty ]; then mv /dev/tty /dev/tty.backup; fi
    cp -a /dev/console /dev/tty
    while [ ! -e /dev/mapper/${cryptname} ];
    do
    sleep 2
    /usr/bin/gpg -d "${ckeyfile}" 2>/dev/null | cryptsetup --key-file=- luksOpen ${cryptdev} ${cryptname} ${CSQUIET}
    dopassphrase=0
    done
    rm /dev/tty
    if [ -e /dev/tty.backup ]; then mv /dev/tty.backup /dev/tty; fi
    else
    if eval /sbin/cryptsetup --key-file ${ckeyfile} luksOpen ${cryptdev} ${cryptname} ${CSQUIET}; then
    dopassphrase=0
    else
    echo "Invalid keyfile. Reverting to passphrase."
    fi
    fi
    fi
    # Ask for a passphrase
    if [ ${dopassphrase} -gt 0 ]; then
    echo ""
    echo "A password is required to access the ${cryptname} volume:"
    #loop until we get a real password
    while ! eval /sbin/cryptsetup luksOpen ${cryptdev} ${cryptname} ${CSQUIET}; do
    sleep 2;
    done
    fi
    if [ -e "/dev/mapper/${cryptname}" ]; then
    if [ ${DEPRECATED_CRYPT} -eq 1 ]; then
    export root="/dev/mapper/root"
    fi
    else
    err "Password succeeded, but ${cryptname} creation failed, aborting..."
    exit 1
    fi
    elif [ -n "${crypto}" ]; then
    [ ${DEPRECATED_CRYPT} -eq 1 ] && warn_deprecated
    msg "Non-LUKS encrypted device found..."
    if [ $# -ne 5 ]; then
    err "Verify parameter format: crypto=hash:cipher:keysize:offset:skip"
    err "Non-LUKS decryption not attempted..."
    return 1
    fi
    exe="/sbin/cryptsetup create ${cryptname} ${cryptdev}"
    tmp=$(echo "${crypto}" | cut -d: -f1)
    [ -n "${tmp}" ] && exe="${exe} --hash \"${tmp}\""
    tmp=$(echo "${crypto}" | cut -d: -f2)
    [ -n "${tmp}" ] && exe="${exe} --cipher \"${tmp}\""
    tmp=$(echo "${crypto}" | cut -d: -f3)
    [ -n "${tmp}" ] && exe="${exe} --key-size \"${tmp}\""
    tmp=$(echo "${crypto}" | cut -d: -f4)
    [ -n "${tmp}" ] && exe="${exe} --offset \"${tmp}\""
    tmp=$(echo "${crypto}" | cut -d: -f5)
    [ -n "${tmp}" ] && exe="${exe} --skip \"${tmp}\""
    if [ -f ${ckeyfile} ]; then
    exe="${exe} --key-file ${ckeyfile}"
    else
    exe="${exe} --verify-passphrase"
    echo ""
    echo "A password is required to access the ${cryptname} volume:"
    fi
    eval "${exe} ${CSQUIET}"
    if [ $? -ne 0 ]; then
    err "Non-LUKS device decryption failed. verify format: "
    err " crypto=hash:cipher:keysize:offset:skip"
    exit 1
    fi
    if [ -e "/dev/mapper/${cryptname}" ]; then
    if [ ${DEPRECATED_CRYPT} -eq 1 ]; then
    export root="/dev/mapper/root"
    fi
    else
    err "Password succeeded, but ${cryptname} creation failed, aborting..."
    exit 1
    fi
    else
    err "Failed to open encryption mapping: The device ${cryptdev} is not a LUKS volume and the crypto= paramater was not specified."
    fi
    fi
    rm -f ${ckeyfile}
    fi
    Create /mnt/lib/initcpio/install/etwo:
    #!/bin/bash
    build() {
    local mod
    add_module dm-crypt
    if [[ $CRYPTO_MODULES ]]; then
    for mod in $CRYPTO_MODULES; do
    add_module "$mod"
    done
    else
    add_all_modules '/crypto/'
    fi
    add_dir "/dev/mapper"
    add_binary "cryptsetup"
    add_binary "dmsetup"
    add_binary "/usr/bin/gpg"
    add_file "/usr/lib/udev/rules.d/10-dm.rules"
    add_file "/usr/lib/udev/rules.d/13-dm-disk.rules"
    add_file "/usr/lib/udev/rules.d/95-dm-notify.rules"
    add_file "/usr/lib/initcpio/udev/11-dm-initramfs.rules" "/usr/lib/udev/rules.d/11-dm-initramfs.rules"
    add_runscript
    help ()
    cat<<HELPEOF
    This hook allows for an encrypted root device with support for gpg encrypted key files.
    To use gpg, the key file must have the extension .gpg and you have to install gpg and add /usr/bin/gpg
    to your BINARIES var in /etc/mkinitcpio.conf.
    HELPEOF
    Edit /mnt/etc/mkinitcpio.conf (only relevant sections displayed):
    MODULES=”ext2 ext4” # not sure if this is really nessecary.
    BINARIES=”/usr/bin/gpg” # this could probably be done in install/etwo...
    HOOKS=”base udev usbinput keymap autodetect pata scsi sata usb etwo filesystems” # (usbinput is only needed if you have an usb keyboard)
    Copy the initcpio stuff over to the live cd:
    cp /mnt/lib/initcpio/hooks/etwo /lib/initcpio/hooks/
    cp /mnt/lib/initcpio/install/etwo /lib/initcpio/install/
    cp /mnt/etc/mkinitcpio.conf /etc/
    Verify your LOCALE, KEYMAP and TIMEZONE in /etc/rc.conf!
    Now reinstall the initcpio:
    mkinitcpio -g /mnt/boot/kernel26.img
    Make sure there were no errors and that all hooks were included.
    13. Decrypt the "var" key to the encrypted root
    mkdir /mnt/keys
    chmod 500 /mnt/keys
    gpg –output /mnt/keys/var -d /mnt/boot/var.gpg
    chmod 400 /mnt/keys/var
    14. Setup crypttab
    Edit /mnt/etc/crypttab:
    swap /dev/sda1 SWAP -c aes-cbc-essiv:sha256 -s 256 -h whirlpool
    var /dev/sda2 /keys/var
    15. Reboot
    We're done, you may reboot. Make sure you select the usb stick as the boot device in your bios and hope for the best. . If it didn't work, play with grub's settings or boot from the live cd, mount your encrypted devices and check all settings. You might also have less trouble by using uuid's instead of device names.  I chose device names to keep things as simple as possible, even though it's not the optimal way to do it.
    Make backups of your data and your usb stick and do not forget your password(s)! Or you can say goodbye to your data forever...
    Last edited by fabriceb (2013-01-15 22:36:23)

    I'm trying to run my install script that is based on https://bbs.archlinux.org/viewtopic.php?id=129885
    Decrypting the gpg key after grub works, but then "Devce root already exists." appears every second.
    any idea ?
    #!/bin/bash
    # This script is designed to be run in conjunction with a UEFI boot using Archboot intall media.
    # prereqs:
    # EFI "BIOS" set to boot *only* from EFI
    # successful EFI boot of Archboot USB
    # mount /dev/sdb1 /src
    set -o nounset
    #set -o errexit
    # Host specific configuration
    # this whole script needs to be customized, particularly disk partitions
    # and configuration, but this section contains global variables that
    # are used during the system configuration phase for convenience
    HOSTNAME=daniel
    USERNAME=user
    # Globals
    # We don't need to set these here but they are used repeatedly throughout
    # so it makes sense to reuse them and allow an easy, one-time change if we
    # need to alter values such as the install target mount point.
    INSTALL_TARGET="/install"
    HR="--------------------------------------------------------------------------------"
    PACMAN="pacman --noconfirm --config /tmp/pacman.conf"
    TARGET_PACMAN="pacman --noconfirm --config /tmp/pacman.conf -r ${INSTALL_TARGET}"
    CHROOT_PACMAN="pacman --noconfirm --cachedir /var/cache/pacman/pkg --config /tmp/pacman.conf -r ${INSTALL_TARGET}"
    FILE_URL="file:///packages/core-$(uname -m)/pkg"
    FTP_URL='ftp://mirrors.kernel.org/archlinux/$repo/os/$arch'
    HTTP_URL='http://mirrors.kernel.org/archlinux/$repo/os/$arch'
    # Functions
    # I've avoided using functions in this script as they aren't required and
    # I think it's more of a learning tool if you see the step-by-step
    # procedures even with minor duplciations along the way, but I feel that
    # these functions clarify the particular steps of setting values in config
    # files.
    SetValue () {
    # EXAMPLE: SetValue VARIABLENAME '\"Quoted Value\"' /file/path
    VALUENAME="$1" NEWVALUE="$2" FILEPATH="$3"
    sed -i "s+^#\?\(${VALUENAME}\)=.*$+\1=${NEWVALUE}+" "${FILEPATH}"
    CommentOutValue () {
    VALUENAME="$1" FILEPATH="$2"
    sed -i "s/^\(${VALUENAME}.*\)$/#\1/" "${FILEPATH}"
    UncommentValue () {
    VALUENAME="$1" FILEPATH="$2"
    sed -i "s/^#\(${VALUENAME}.*\)$/\1/" "${FILEPATH}"
    # Initialize
    # Warn the user about impending doom, set up the network on eth0, mount
    # the squashfs images (Archboot does this normally, we're just filling in
    # the gaps resulting from the fact that we're doing a simple scripted
    # install). We also create a temporary pacman.conf that looks for packages
    # locally first before sourcing them from the network. It would be better
    # to do either *all* local or *all* network but we can't for two reasons.
    # 1. The Archboot installation image might have an out of date kernel
    # (currently the case) which results in problems when chrooting
    # into the install mount point to modprobe efivars. So we use the
    # package snapshot on the Archboot media to ensure our kernel is
    # the same as the one we booted with.
    # 2. Ideally we'd source all local then, but some critical items,
    # notably grub2-efi variants, aren't yet on the Archboot media.
    # Warn
    timer=9
    echo -e "\n\nMAC WARNING: This script is not designed for APPLE MAC installs and will potentially misconfigure boot to your existing OS X installation. STOP NOW IF YOU ARE ON A MAC.\n\n"
    echo -n "GENERAL WARNING: This procedure will completely format /dev/sda. Please cancel with ctrl-c to cancel within $timer seconds..."
    while [[ $timer -gt 0 ]]
    do
    sleep 1
    let timer-=1
    echo -en "$timer seconds..."
    done
    echo "STARTING"
    # Get Network
    echo -n "Waiting for network address.."
    #dhclient eth0
    dhcpcd -p eth0
    echo -n "Network address acquired."
    # Mount packages squashfs images
    umount "/packages/core-$(uname -m)"
    umount "/packages/core-any"
    rm -rf "/packages/core-$(uname -m)"
    rm -rf "/packages/core-any"
    mkdir -p "/packages/core-$(uname -m)"
    mkdir -p "/packages/core-any"
    modprobe -q loop
    modprobe -q squashfs
    mount -o ro,loop -t squashfs "/src/packages/archboot_packages_$(uname -m).squashfs" "/packages/core-$(uname -m)"
    mount -o ro,loop -t squashfs "/src/packages/archboot_packages_any.squashfs" "/packages/core-any"
    # Create temporary pacman.conf file
    cat << PACMANEOF > /tmp/pacman.conf
    [options]
    Architecture = auto
    CacheDir = ${INSTALL_TARGET}/var/cache/pacman/pkg
    CacheDir = /packages/core-$(uname -m)/pkg
    CacheDir = /packages/core-any/pkg
    [core]
    Server = ${FILE_URL}
    Server = ${FTP_URL}
    Server = ${HTTP_URL}
    [extra]
    Server = ${FILE_URL}
    Server = ${FTP_URL}
    Server = ${HTTP_URL}
    #Uncomment to enable pacman -Sy yaourt
    [archlinuxfr]
    Server = http://repo.archlinux.fr/\$arch
    PACMANEOF
    # Prepare pacman
    [[ ! -d "${INSTALL_TARGET}/var/cache/pacman/pkg" ]] && mkdir -m 755 -p "${INSTALL_TARGET}/var/cache/pacman/pkg"
    [[ ! -d "${INSTALL_TARGET}/var/lib/pacman" ]] && mkdir -m 755 -p "${INSTALL_TARGET}/var/lib/pacman"
    ${PACMAN} -Sy
    ${TARGET_PACMAN} -Sy
    # Install prereqs from network (not on archboot media)
    echo -e "\nInstalling prereqs...\n$HR"
    #sed -i "s/^#S/S/" /etc/pacman.d/mirrorlist # Uncomment all Server lines
    UncommentValue S /etc/pacman.d/mirrorlist # Uncomment all Server lines
    ${PACMAN} --noconfirm -Sy gptfdisk btrfs-progs-unstable libusb-compat gnupg
    # Configure Host
    # Here we create three partitions:
    # 1. efi and /boot (one partition does double duty)
    # 2. swap
    # 3. our encrypted root
    # Note that all of these are on a GUID partition table scheme. This proves
    # to be quite clean and simple since we're not doing anything with MBR
    # boot partitions and the like.
    echo -e "format\n"
    # shred -v /dev/sda
    # disk prep
    sgdisk -Z /dev/sda # zap all on disk
    #sgdisk -Z /dev/mmcb1k0 # zap all on sdcard
    sgdisk -a 2048 -o /dev/sda # new gpt disk 2048 alignment
    #sgdisk -a 2048 -o /dev/mmcb1k0
    # create partitions
    sgdisk -n 1:0:+200M /dev/sda # partition 1 (UEFI BOOT), default start block, 200MB
    sgdisk -n 2:0:+4G /dev/sda # partition 2 (SWAP), default start block, 200MB
    sgdisk -n 3:0:0 /dev/sda # partition 3, (LUKS), default start, remaining space
    #sgdisk -n 1:0:1800M /dev/mmcb1k0 # root.gpg
    # set partition types
    sgdisk -t 1:ef00 /dev/sda
    sgdisk -t 2:8200 /dev/sda
    sgdisk -t 3:8300 /dev/sda
    #sgdisk -t 1:0700 /dev/mmcb1k0
    # label partitions
    sgdisk -c 1:"UEFI Boot" /dev/sda
    sgdisk -c 2:"Swap" /dev/sda
    sgdisk -c 3:"LUKS" /dev/sda
    #sgdisk -c 1:"Key" /dev/mmcb1k0
    echo -e "create gpg file\n"
    # create gpg file
    dd if=/dev/urandom bs=512 count=4 | gpg -v --cipher-algo aes256 --digest-algo sha512 -c -a > /root/root.gpg
    echo -e "format LUKS on root\n"
    # format LUKS on root
    gpg -q -d /root/root.gpg 2>/dev/null | cryptsetup -v --key-file=- -c aes-xts-plain -s 512 --hash sha512 luksFormat /dev/sda3
    echo -e "open LUKS on root\n"
    gpg -d /root/root.gpg 2>/dev/null | cryptsetup -v --key-file=- luksOpen /dev/sda3 root
    # NOTE: make sure to add dm_crypt and aes_i586 to MODULES in rc.conf
    # NOTE2: actually this isn't required since we're mounting an encrypted root and grub2/initramfs handles this before we even get to rc.conf
    # make filesystems
    # following swap related commands not used now that we're encrypting our swap partition
    #mkswap /dev/sda2
    #swapon /dev/sda2
    #mkfs.ext4 /dev/sda3 # this is where we'd create an unencrypted root partition, but we're using luks instead
    echo -e "\nCreating Filesystems...\n$HR"
    # make filesystems
    mkfs.ext4 /dev/mapper/root
    mkfs.vfat -F32 /dev/sda1
    #mkfs.vfat -F32 /dev/mmcb1k0p1
    echo -e "mount targets\n"
    # mount target
    #mount /dev/sda3 ${INSTALL_TARGET} # this is where we'd mount the unencrypted root partition
    mount /dev/mapper/root ${INSTALL_TARGET}
    # mount target
    mkdir ${INSTALL_TARGET}
    # mkdir ${INSTALL_TARGET}/key
    # mount -t vfat /dev/mmcb1k0p1 ${INSTALL_TARGET}/key
    mkdir ${INSTALL_TARGET}/boot
    mount -t vfat /dev/sda1 ${INSTALL_TARGET}/boot
    # Install base, necessary utilities
    mkdir -p ${INSTALL_TARGET}/var/lib/pacman
    ${TARGET_PACMAN} -Sy
    ${TARGET_PACMAN} -Su base
    # curl could be installed later but we want it ready for rankmirrors
    ${TARGET_PACMAN} -S curl
    ${TARGET_PACMAN} -S libusb-compat gnupg
    ${TARGET_PACMAN} -R grub
    rm -rf ${INSTALL_TARGET}/boot/grub
    ${TARGET_PACMAN} -S grub2-efi-x86_64
    # Configure new system
    SetValue HOSTNAME ${HOSTNAME} ${INSTALL_TARGET}/etc/rc.conf
    sed -i "s/^\(127\.0\.0\.1.*\)$/\1 ${HOSTNAME}/" ${INSTALL_TARGET}/etc/hosts
    SetValue CONSOLEFONT Lat2-Terminus16 ${INSTALL_TARGET}/etc/rc.conf
    #following replaced due to netcfg
    #SetValue interface eth0 ${INSTALL_TARGET}/etc/rc.conf
    # write fstab
    # You can use UUID's or whatever you want here, of course. This is just
    # the simplest approach and as long as your drives aren't changing values
    # randomly it should work fine.
    cat > ${INSTALL_TARGET}/etc/fstab <<FSTAB_EOF
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    tmpfs /tmp tmpfs nodev,nosuid 0 0
    /dev/sda1 /boot vfat defaults 0 0
    /dev/mapper/cryptswap none swap defaults 0 0
    /dev/mapper/root / ext4 defaults,noatime 0 1
    FSTAB_EOF
    # write etwo
    mkdir -p /lib/initcpio/hooks/
    mkdir -p /lib/initcpio/install/
    cp /src/etwo_hooks /lib/initcpio/hooks/etwo
    cp /src/etwo_install /lib/initcpio/install/etwo
    mkdir -p ${INSTALL_TARGET}/lib/initcpio/hooks/
    mkdir -p ${INSTALL_TARGET}/lib/initcpio/install/
    cp /src/etwo_hooks ${INSTALL_TARGET}/lib/initcpio/hooks/etwo
    cp /src/etwo_install ${INSTALL_TARGET}/lib/initcpio/install/etwo
    # write crypttab
    # encrypted swap (random passphrase on boot)
    echo cryptswap /dev/sda2 SWAP "-c aes-xts-plain -h whirlpool -s 512" >> ${INSTALL_TARGET}/etc/crypttab
    # copy configs we want to carry over to target from install environment
    mv ${INSTALL_TARGET}/etc/resolv.conf ${INSTALL_TARGET}/etc/resolv.conf.orig
    cp /etc/resolv.conf ${INSTALL_TARGET}/etc/resolv.conf
    mkdir -p ${INSTALL_TARGET}/tmp
    cp /tmp/pacman.conf ${INSTALL_TARGET}/tmp/pacman.conf
    # mount proc, sys, dev in install root
    mount -t proc proc ${INSTALL_TARGET}/proc
    mount -t sysfs sys ${INSTALL_TARGET}/sys
    mount -o bind /dev ${INSTALL_TARGET}/dev
    echo -e "umount boot\n"
    # we have to remount /boot from inside the chroot
    umount ${INSTALL_TARGET}/boot
    # Create install_efi script (to be run *after* chroot /install)
    touch ${INSTALL_TARGET}/install_efi
    chmod a+x ${INSTALL_TARGET}/install_efi
    cat > ${INSTALL_TARGET}/install_efi <<EFI_EOF
    # functions (these could be a library, but why overcomplicate things
    SetValue () { VALUENAME="\$1" NEWVALUE="\$2" FILEPATH="\$3"; sed -i "s+^#\?\(\${VALUENAME}\)=.*\$+\1=\${NEWVALUE}+" "\${FILEPATH}"; }
    CommentOutValue () { VALUENAME="\$1" FILEPATH="\$2"; sed -i "s/^\(\${VALUENAME}.*\)\$/#\1/" "\${FILEPATH}"; }
    UncommentValue () { VALUENAME="\$1" FILEPATH="\$2"; sed -i "s/^#\(\${VALUENAME}.*\)\$/\1/" "\${FILEPATH}"; }
    echo -e "mount boot\n"
    # remount here or grub et al gets confused
    mount -t vfat /dev/sda1 /boot
    # mkinitcpio
    # NOTE: intel_agp drm and i915 for intel graphics
    SetValue MODULES '\\"dm_mod dm_crypt aes_x86_64 ext2 ext4 vfat intel_agp drm i915\\"' /etc/mkinitcpio.conf
    SetValue HOOKS '\\"base udev pata scsi sata usb usbinput keymap consolefont etwo encrypt filesystems\\"' /etc/mkinitcpio.conf
    SetValue BINARIES '\\"/usr/bin/gpg\\"' /etc/mkinitcpio.conf
    mkinitcpio -p linux
    # kernel modules for EFI install
    modprobe efivars
    modprobe dm-mod
    # locale-gen
    UncommentValue de_AT /etc/locale.gen
    locale-gen
    # install and configure grub2
    # did this above
    #${CHROOT_PACMAN} -Sy
    #${CHROOT_PACMAN} -R grub
    #rm -rf /boot/grub
    #${CHROOT_PACMAN} -S grub2-efi-x86_64
    # you can be surprisingly sloppy with the root value you give grub2 as a kernel option and
    # even omit the cryptdevice altogether, though it will wag a finger at you for using
    # a deprecated syntax, so we're using the correct form here
    # NOTE: take out i915.modeset=1 unless you are on intel graphics
    SetValue GRUB_CMDLINE_LINUX '\\"cryptdevice=/dev/sda3:root cryptkey=/dev/sda1:vfat:/root.gpg add_efi_memmap i915.i915_enable_rc6=1 i915.i915_enable_fbc=1 i915.lvds_downclock=1 pcie_aspm=force quiet\\"' /etc/default/grub
    # set output to graphical
    SetValue GRUB_TERMINAL_OUTPUT gfxterm /etc/default/grub
    SetValue GRUB_GFXMODE 960x600x32,auto /etc/default/grub
    SetValue GRUB_GFXPAYLOAD_LINUX keep /etc/default/grub # comment out this value if text only mode
    # install the actual grub2. Note that despite our --boot-directory option we will still need to move
    # the grub directory to /boot/grub during grub-mkconfig operations until grub2 gets patched (see below)
    grub_efi_x86_64-install --bootloader-id=grub --no-floppy --recheck
    # create our EFI boot entry
    # bug in the HP bios firmware (F.08)
    efibootmgr --create --gpt --disk /dev/sda --part 1 --write-signature --label "ARCH LINUX" --loader "\\\\grub\\\\grub.efi"
    # copy font for grub2
    cp /usr/share/grub/unicode.pf2 /boot/grub
    # generate config file
    grub-mkconfig -o /boot/grub/grub.cfg
    exit
    EFI_EOF
    # Install EFI using script inside chroot
    chroot ${INSTALL_TARGET} /install_efi
    rm ${INSTALL_TARGET}/install_efi
    # Post install steps
    # anything you want to do post install. run the script automatically or
    # manually
    touch ${INSTALL_TARGET}/post_install
    chmod a+x ${INSTALL_TARGET}/post_install
    cat > ${INSTALL_TARGET}/post_install <<POST_EOF
    set -o errexit
    set -o nounset
    # functions (these could be a library, but why overcomplicate things
    SetValue () { VALUENAME="\$1" NEWVALUE="\$2" FILEPATH="\$3"; sed -i "s+^#\?\(\${VALUENAME}\)=.*\$+\1=\${NEWVALUE}+" "\${FILEPATH}"; }
    CommentOutValue () { VALUENAME="\$1" FILEPATH="\$2"; sed -i "s/^\(\${VALUENAME}.*\)\$/#\1/" "\${FILEPATH}"; }
    UncommentValue () { VALUENAME="\$1" FILEPATH="\$2"; sed -i "s/^#\(\${VALUENAME}.*\)\$/\1/" "\${FILEPATH}"; }
    # root password
    echo -e "${HR}\\nNew root user password\\n${HR}"
    passwd
    # add user
    echo -e "${HR}\\nNew non-root user password (username:${USERNAME})\\n${HR}"
    groupadd sudo
    useradd -m -g users -G audio,lp,optical,storage,video,games,power,scanner,network,sudo,wheel -s /bin/bash ${USERNAME}
    passwd ${USERNAME}
    # mirror ranking
    echo -e "${HR}\\nRanking Mirrors (this will take a while)\\n${HR}"
    cp /etc/pacman.d/mirrorlist /etc/pacman.d/mirrorlist.orig
    mv /etc/pacman.d/mirrorlist /etc/pacman.d/mirrorlist.all
    sed -i "s/#S/S/" /etc/pacman.d/mirrorlist.all
    rankmirrors -n 5 /etc/pacman.d/mirrorlist.all > /etc/pacman.d/mirrorlist
    # temporary fix for locale.sh update conflict
    mv /etc/profile.d/locale.sh /etc/profile.d/locale.sh.preupdate || true
    # yaourt repo (add to target pacman, not tmp pacman.conf, for ongoing use)
    echo -e "\\n[archlinuxfr]\\nServer = http://repo.archlinux.fr/\\\$arch" >> /etc/pacman.conf
    echo -e "\\n[haskell]\\nServer = http://www.kiwilight.com/\\\$repo/\\\$arch" >> /etc/pacman.conf
    # additional groups and utilities
    pacman --noconfirm -Syu
    pacman --noconfirm -S base-devel
    pacman --noconfirm -S yaourt
    # sudo
    pacman --noconfirm -S sudo
    cp /etc/sudoers /tmp/sudoers.edit
    sed -i "s/#\s*\(%wheel\s*ALL=(ALL)\s*ALL.*$\)/\1/" /tmp/sudoers.edit
    sed -i "s/#\s*\(%sudo\s*ALL=(ALL)\s*ALL.*$\)/\1/" /tmp/sudoers.edit
    visudo -qcsf /tmp/sudoers.edit && cat /tmp/sudoers.edit > /etc/sudoers
    # power
    pacman --noconfirm -S acpi acpid acpitool cpufrequtils
    yaourt --noconfirm -S powertop2
    sed -i "/^DAEMONS/ s/)/ @acpid)/" /etc/rc.conf
    sed -i "/^MODULES/ s/)/ acpi-cpufreq cpufreq_ondemand cpufreq_powersave coretemp)/" /etc/rc.conf
    # following requires my acpi handler script
    echo "/etc/acpi/handler.sh boot" > /etc/rc.local
    # time
    pacman --noconfirm -S ntp
    sed -i "/^DAEMONS/ s/hwclock /!hwclock @ntpd /" /etc/rc.conf
    # wireless (wpa supplicant should already be installed)
    pacman --noconfirm -S iw wpa_supplicant rfkill
    pacman --noconfirm -S netcfg wpa_actiond ifplugd
    mv /etc/wpa_supplicant.conf /etc/wpa_supplicant.conf.orig
    echo -e "ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=network\nupdate_config=1" > /etc/wpa_supplicant.conf
    # make sure to copy /etc/network.d/examples/wireless-wpa-config to /etc/network.d/home and edit
    sed -i "/^DAEMONS/ s/)/ @net-auto-wireless @net-auto-wired)/" /etc/rc.conf
    sed -i "/^DAEMONS/ s/ network / /" /etc/rc.conf
    echo -e "\nWIRELESS_INTERFACE=wlan0" >> /etc/rc.conf
    echo -e "WIRED_INTERFACE=eth0" >> /etc/rc.conf
    echo "options iwlagn led_mode=2" > /etc/modprobe.d/iwlagn.conf
    # sound
    pacman --noconfirm -S alsa-utils alsa-plugins
    sed -i "/^DAEMONS/ s/)/ @alsa)/" /etc/rc.conf
    mv /etc/asound.conf /etc/asound.conf.orig || true
    #if alsamixer isn't working, try alsamixer -Dhw and speaker-test -Dhw -c 2
    # video
    pacman --noconfirm -S base-devel mesa mesa-demos
    # x
    #pacman --noconfirm -S xorg xorg-xinit xorg-utils xorg-server-utils xdotool xorg-xlsfonts
    #yaourt --noconfirm -S xf86-input-wacom-git # NOT NEEDED? input-wacom-git
    #TODO: cut down the install size
    #pacman --noconfirm -S xorg-server xorg-xinit xorg-utils xorg-server-utils
    # TODO: wacom
    # environment/wm/etc.
    #pacman --noconfirm -S xfce4 compiz ccsm
    #pacman --noconfirm -S xcompmgr
    #yaourt --noconfirm -S physlock unclutter
    #pacman --noconfirm -S rxvt-unicode urxvt-url-select hsetroot
    #pacman --noconfirm -S gtk2 #gtk3 # for taffybar?
    #pacman --noconfirm -S ghc
    # note: try installing alex and happy from cabal instead
    #pacman --noconfirm -S haskell-platform haskell-hscolour
    #yaourt --noconfirm -S xmonad-darcs xmonad-contrib-darcs xcompmgr
    #yaourt --noconfirm -S xmobar-git
    # TODO: edit xfce to use compiz
    # TODO: xmonad, but deal with video tearing
    # TODO: xmonad-darcs fails to install from AUR. haskell dependency hell.
    # switching to cabal
    # fonts
    pacman --noconfirm -S terminus-font
    yaourt --noconfirm -S webcore-fonts
    yaourt --noconfirm -S fontforge libspiro
    yaourt --noconfirm -S freetype2-git-infinality
    # TODO: sed infinality and change to OSX or OSX2 mode
    # and create the sym link from /etc/fonts/conf.avail to conf.d
    # misc apps
    #pacman --noconfirm -S htop openssh keychain bash-completion git vim
    #pacman --noconfirm -S chromium flashplugin
    #pacman --noconfirm -S scrot mypaint bc
    #yaourt --noconfirm -S task-git stellarium googlecl
    # TODO: argyll
    POST_EOF
    # Post install in chroot
    #echo "chroot and run /post_install"
    chroot /install /post_install
    rm /install/post_install
    # copy grub.efi file to the default HP EFI boot manager path
    mkdir -p ${INSTALL_TARGET}/boot/EFI/Microsoft/BOOT/
    mkdir -p ${INSTALL_TARGET}/boot/EFI/BOOT/
    cp ${INSTALL_TARGET}/boot/grub/grub.efi ${INSTALL_TARGET}/boot/EFI/Microsoft/BOOT/bootmgfw.efi
    cp ${INSTALL_TARGET}/boot/grub/grub.efi ${INSTALL_TARGET}/boot/EFI/BOOT/BOOTX64.EFI
    cp /root/root.gpg ${INSTALL_TARGET}/boot/
    # NOTES/TODO

  • Fulldisk encryption with a gpg encrypted key?

    Hi all, anyone know if it is possible to encrypt a root partition using a gpg encrypted key?
    To create it and open it I would use something like this.
    #dd if=/dev/urandom bs=512 count=4|gpg –symmetric –a > ./rootkey.gpg
    #gpg --quiet --decrypt rootkey.gpg | cryptsetup -v --cipher serpent-cbc-essiv:sha256 --key-size 256 luksFormat /dev/sda3
    #gpg --decrypt key.gpg 2>/dev/null | cryptsetup luksOpen /dev/sda3 root
    which works, if i can manually enter the commands to decrypt the drive, but how would i do that at boot? i was reading a article on the gentoo wiki about creating custom scripts etc etc to handle it all. can something similar be applied in arch linux? if this is at all possible is there somewhere where i can find some documentation regarding doing this?
    cheers.

    Nothing wrong with using LUKS, and in a way I am still using LUKS but what I am doing here is having a key file encrypted using GnuPG and stored between the MBR and first partition. In my modified /lib/initcpio/hooks/encrypt script it will ask for the password for the keyfile to decrypt the root partition and if an incorrect password is entered more than say 3 times it will shred the keyfile making the root partition impossible to ever decrypt. For a backup for myself I will have a copy of the gpg encrypted key stored somewhere on the web.
    So basically adding a whole new layer of security to the system. The more layers of security you can add the better.
    I do know this is a little over board, but its more for the fun of doing it. In a strange sort of nerdy way
    But back to what you were saying about the libraries? From the archlinux wiki
    These options allow users to add files to the image. Both BINARIES and FILES are added before hooks are run, and may be used to override files used or provided by a hook. BINARIES are dependency-parsed, meaning any required libraries will also be added. FILES are added as-is. For example:
    So I shouldn't have to worry about them.

  • LVM+LUKS+GPG-encrypted keyfile?

    Hello everyone!
    I'm coming from Gentoo (just can't handle the compiling-without-distcc anymore!), where I had an LVM+LUKS+GPG-encrypted keyfile setup for my root partition, and would like to continue that with Arch here.
    I know with LUKS you can append keys/passwords, so I just went ahead with the "password" install method that was well documented. 
    Is there any current easy-method for going about the route I'm looking for?  I've been searching around and mostly finding "it can be done" but not necessarily how to do it.   Would anyone have any information for me on this? 
    Thanks in advance!

    The best info on LVM2/Luks I have found so far:
    http://sunoano.name/ws/public_xhtml/lvm.html
    http://sunoano.name/ws/public_xhtml/dm-crypt_luks.html

  • My Question is: I have a Lightroom 5 software buyed single on my MAC. If now I buy a CC Pack with Lightroom and Photoshop...what happened? How I can install AGAIN a other version of lightroom 5 ?! and this is necessary because the version included in pack

    My Question is: I have a Lightroom 5 software buyed single on my MAC. If now I buy a CC Pack with Lightroom and Photoshop...what happened? How I can install AGAIN a other version of lightroom 5 ?! and this is necessary because the version included in pack has a mobile function that my actual version don't has.  Thanks to help.
    Can live two version equal of lightroom on same MAC ?
    mmm .... I Doubt...
    Suggestion.. ?

    My Question is: I have a Lightroom 5 software buyed single on my MAC. If now I buy a CC Pack with Lightroom and Photoshop...what happened? How I can install AGAIN a other version of lightroom 5 ?! and this is necessary because the version included in pack has a mobile function that my actual version don't has.  Thanks to help.
    Can live two version equal of lightroom on same MAC ?
    mmm .... I Doubt...
    Suggestion.. ?

  • [solved] Can't boot with LVM and usb external disk

    I successfully installed Archlinux on my first computer, using LVM on two internal Hard Drives.
    I'm trying to do exactly the same on my second computer, but I got a problem: the LVM volume is not found at boot, so that the root partition can't be mounted and the boot fails.
    The only difference is that, on my second computer, the second hard drive is connected through USB.
    Some hints: my second computer boots perfectly with LVM and Ubuntu. Archlinux needs to be configured adequately.
    I tried to add rootdelay=30 in menu.lst, but it changes nothing. Of course, in /etc/rc.conf I have USELVM="yes" and in /etc/mkinitcpio.conf I have HOOKS="base udev autodetect pata scsi sata keymap lvm2 filesystems"
    Thank you for helping me to keep Archlinux on my second computer!
    Last edited by Achille (2008-06-29 21:59:09)

    I finally solved my problem!
    In the file /etc/mkinitcpio.conf, I modified the MODULES loaded:
    MODULES="pata_acpi ata_generic ata_piix usbcore usb_storage uhci_hcd ehci_hcd sg scsi_mod sd_mod dm_mod"
    I also add in the file /lib/initcpio/hooks/lvm2 the line /bin/sleep 10
    /bin/sleep 10
    msg "Scanning logical volumes..."
    And finally, I ran the command:
    mkinitcpio -p kernel26

  • After itunes finishes restoring my ipod touch 8gb, itunes still says itunes has detected an ipod touch recovery mode. You must restore it before using it with itunes. and i dont knwo what to do

    after itunes finishes restoring my ipod touch 8gb, itunes still says itunes has detected an ipod touch recovery mode. You must restore it before using it with itunes. and i dont know what to do

    Are you sure it is 1043? I've never seen that error before. But you can try disabling your security software, connecting the phone to a USB port directly on the computer (not a hub), and trying to restore again.

  • MBP early 2007 model having issues with volume and brightness control keys (f1-f9)

    My MBP, early 2007 (came with tiger 10.4 in the box) and now running Snow Leopard 10.6.8 is having some weird problems with its f1-f9 keys.
    For about 2 weeks now I have noticed that I cannot change the brightness and volume (especially) using these keys.
    The layout of the keys on my MBP are as attached:
    I tried to google the problem and tried a few diy fix-its, however nothing seems to work... and there seems to be no clear answer either. One day, during these two weeks it suddenly worked for about 2 minutes then stopped again and hasn't worked since.
    Anyone experienced any similar problems? or have any idea what I can do to fix it?
    As a last resort, I would eventually get a wireless keyboard to use with the MBP.

    dominicandsumi wrote:
    Thanks tjk, I tried that but it did not help. However over these last 2 days I noticed something more.
    When I go to the keyboard setting, the 'use all f1 keys..." was off (as it was supposed to be) and then I click to turn it on and then off again and then the keys are ok and working perfectly till...
    The next time I shut down and restart my computer, the key problem is back again. And again I do the same procedure above to fix it and so on...
    Hmmm, it sounds like a corrupt preference.
    Open Console and let's see if there's anything in there to help us.

  • I am trying to find an app that will track the usage on my iphone with times and dates to see what was accessed on my phone when I was away from it and what if anything was done eg deleted messages viewed facebook etc?

    Hi! I am trying to find an app that with track everything that is done on my phone with times and dates? im not really woried about call usage and texts sent I need it to view what has been done - for example:
    Messages received
    Messages deleted
    Facebook viewed
    Messages viewed
    Internet viewed and what?
    I just have an issue with someone using my phone - I used to track this through double clicking the home button and roughly knowing in what order I had been on things but they have sussed this one!
    Thank you!!

    No way to do that on a non-jailbroken iPhone. Why don't you just passcode protect your phone? That way no one but you can use it...unless they know your passcode.

  • Office Administrative Template installation with 32 and 64 bits clients

    Hello,
    I would like to install the Office Administrative Templates (2007, 2010, 2013) but I don't really understand how.
    I have several clients computers :
    -Windows XP and 7 (the XP will disappear but not now so I have to handle with)
    - 32 and 64 bits (OS and associate Office version)
    - two Office languages (English and French)
    In this case, what I have to put in the domain controllers (or in the central store for GPO, not matters), to cover all the cases ?
    I do not understand the x86 or x64 Office administrative templates versions neither how the languages are managed.
    Thanks a lot.

    The Office2013 Admin Templates+OCT is available in both 32bit and 64bit formats
    http://www.microsoft.com/en-us/download/details.aspx?id=35554
    Because the download contains the Templates *and* the OCT (OPAX/OPAL and various DLLs etc), and, the OCT itself and also the OCT output file (a customization MSPfile) is architecture-specific, that is why there is a 32bit and a 64bit download.
    The ADMX/ADML files themselves, are not architecture-specific.
    ADMX and OPAX, is language-neutral, the language-specific details are contained within ADML/OPAL.
    https://technet.microsoft.com/en-us/library/cc178992.aspx#section2
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Is there something very wrong with Lion and Fcp x or what?

    I have just spent a very frustrating two weeks editing a one hour fifteen minute project on FCP X with Lion as the operating system. Every edit session has been plagued with crashes. My mac is a 21.2 inch, with an I7 processor and 12gig of ram which I bought the middle of this year. I had set my computer up with two partitions, one with Lion and the other with Snow leopard. This morning, in an effort to improve the terrible instability of FCP X under Lion I decided to try it under Snow Leopard......What an unbelievable difference.....I've been editing for the last three hours now throwing all kinds of clips and effects and so forth at the timeline and have not experienced one crash. What is going on here? How can Lion and FCP X be so incompatible?

    dpcam1 wrote:
    I have just spent a very frustrating two weeks editing a one hour fifteen minute project on FCP X with Lion as the operating system.
    You don't mention whether this one hour and fifteen minutes long project consisted of just one FCP X project when you experienced problems with FCP X and Lion?
    You also don't mention how long the project was that you edited successfully with Snow Leopard. If, as I suspect, this was a very short 'test' project, that would make sense. FCP X does not cope well with long projects.
    I use Lion exclusively but I keep my projects to a maximum of 30 minutes (preferably no more than 20 mins). If the total programme is longer, I make create several FCP X projects - each being a 'chapter' of the main programme. When finished, I make compound clips of all the 'chapters' then I paste them into a new (full length) project.
    I'm not pretending FCP X is perfect, but for me at least, it's very workable as long as you understand it's weaknesses. I have 16 GB RAM and since I upgraded from the 8 GB I had previously, it's made a huge difference.
    If you are getting crashes, there is some conflict on the OS. Create a new (admin) user account on your system and use FCP X from there - if it runs a lot better, there's a conflict and a clean install would be recommended.
    Other ways to improve performance:
    Create optimised media.
    Hide Waveforms at all times when you don't need them (both in Browser and Storyline / Timeline). They take up a lot of processor power.
    Create folders in the Project library and put any projects you are not working on currently, in there. (Twirl it closed to hide them).
    Move your Projects and Events to an external HD (make sure it's formatted OS Extended - with journaled on or off) and run from there.
    Andy

  • I have an I mac with Lion and the curser freezes, what can be done.

    I have an I mac with Lion and the curser freezes. It froze in Word, Safari, Iphoto, and photoshop, what can be done?.

    4GB of RAM is not very much RAM these days particularly if you tend to have many windows open at one time. For example if you are working in Safari and have several tabs open and then work on a Photoshop project that will eat a lot of RAM. One simple way to check is open Activity Monitor (Applications - Utilities - Activity Monitor) and click the System Memory tab. Run this under typical use and check the amount of FREE RAM. It will look something like:
    I can see from my example I am dangerously low on RAM by the amount of free RAM I have. I suspect if you upgrade to 8, 12 or even 16GB of RAM your machine would work much better. BTW ...my MacBook Air is limited to 4GB so it's up to me to manage my RAM better.

  • When I am switching my Mac-book on, it shows "No bootable device -- insert boot device and press any key" what to doe

    I was using YouTube in morning and left macbook in sleep mode. Since its battery was dead in evening I connected the power cord and restarted the system. Since then I am facing the error "No bootable device -- insert boot device and press any key".
    Please let me know what should be done..

    Reboot and hold the alt key. Select the drive you want to boot to. Once successfully booted go to System Preferences>Startup Disk and make sure your system is booting to your Mac partition on startup.

  • I have a fairly new mac book pro with retina display- I have not tried installing anything other OS on it. In spite of that yesterday when I turned it on, I got the error: no bootable device insert boot disk and press any key. what is the reason for this?

    I swithced it on by clicking on options when I start up and then clicked on Macintosh HD. the other option was a question mark and network drive.
    Is there a way to ensure it never happens again, what is the cause for this problem, if I need to uninstall some application, i am happy to do it as long as I know what is causing this conflict.
    many thanks!

    Something is not making sense here.
    You claim this is a brand new machine and you have not tried to install Windows or Boot Camp.
    Then why would you ever even go into System Preferences > Startup Disk and choose Macintosh HD? It should have automatically booted into Macintosh HD.
    You're probably going to have to reinstall Mac OS X.

  • Issue with LVM and 2 volume groups.

    I have 2 physical disks with one volume group on each of them. First contains root and /home. Second one contains /var and swap. After update I got "Timeout error" for /var and swap. I can boot in emergency systemd mode and can clearly see /var and swap partitions. I have lvm2 hook after udev and before fiesystems. I done latest changes to LVM long before and everything worked fine.
    Any advice? Thank you.
    Last edited by Gonzih (2013-05-03 13:33:15)

    Yep, I can see them and mount them (logical volumes). I booted with debug log level for systemd and log target to kmsg. But I can't find anything interesting in logs.
    here is dmesg output:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.8.10-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.0 20130411 (prerelease) (GCC) ) #1 SMP PREEMPT Sat Apr 27 12:36:59 CEST 2013
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/SSDVolGroup-root ro resume=/dev/mapper/MainVolGroup-swap systemd.log_level=debug systemd.log_target=kmsg log_buf_len=1M
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009e7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009e800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000040200000-0x00000000aac0bfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000aac0c000-0x00000000aad8dfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000aad8e000-0x00000000aad93fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000aad94000-0x00000000aad94fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000aad95000-0x00000000aad95fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000aad96000-0x00000000aadb7fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000aadb8000-0x00000000aadc5fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000aadc6000-0x00000000aade7fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000aade8000-0x00000000aae21fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000aae22000-0x00000000aafe7fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000aafe8000-0x00000000aaffcfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000aaffd000-0x00000000aaffffff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000ab000000-0x00000000afffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000e3ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff980000-0x00000000ffbfffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffd80000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000024f7fffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] SMBIOS 2.6 present.
    [ 0.000000] DMI: ASUSTeK Computer Inc. N55SL/N55SL, BIOS N55SL.201 11/10/2011
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x24f800 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-BFFFF uncachable
    [ 0.000000] C0000-CFFFF write-protect
    [ 0.000000] D0000-E7FFF uncachable
    [ 0.000000] E8000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FE0000000 write-back
    [ 0.000000] 2 base 0A0000000 mask FF8000000 write-back
    [ 0.000000] 3 base 0A8000000 mask FFC000000 write-back
    [ 0.000000] 4 base 0AB000000 mask FFF000000 uncachable
    [ 0.000000] 5 base 100000000 mask F00000000 write-back
    [ 0.000000] 6 base 200000000 mask FC0000000 write-back
    [ 0.000000] 7 base 240000000 mask FF0000000 write-back
    [ 0.000000] 8 base 24F800000 mask FFF800000 uncachable
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xab000000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xaaffd max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fcc80-0x000fcc8f] mapped at [ffff8800000fcc80]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
    [ 0.000000] reserving inaccessible SNB gfx pages
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0xaaffcfff]
    [ 0.000000] [mem 0x00000000-0xaadfffff] page 2M
    [ 0.000000] [mem 0xaae00000-0xaaffcfff] page 4k
    [ 0.000000] kernel direct mapping tables up to 0xaaffcfff @ [mem 0x1fffb000-0x1fffffff]
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x24f7fffff]
    [ 0.000000] [mem 0x100000000-0x24f7fffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0x24f7fffff @ [mem 0xaaff6000-0xaaffcfff]
    [ 0.000000] log_buf_len: 1048576
    [ 0.000000] early log buf free: 519132(99%)
    [ 0.000000] RAMDISK: [mem 0x378d0000-0x37c5ffff]
    [ 0.000000] ACPI: RSDP 00000000000f0430 00024 (v02 _ASUS_)
    [ 0.000000] ACPI: XSDT 00000000aaffee18 00074 (v01 _ASUS_ Notebook 06222004 MSFT 00010013)
    [ 0.000000] ACPI: FACP 00000000aaf9ad98 000F4 (v04 _ASUS_ Notebook 06222004 MSFT 00010013)
    [ 0.000000] ACPI Warning: 32/64 FACS address mismatch in FADT - two FACS tables! (20121018/tbfadt-394)
    [ 0.000000] ACPI BIOS Bug: Warning: 32/64X FACS address mismatch in FADT - 0xAAFE4E40/0x00000000AAFE4D40, using 32 (20121018/tbfadt-521)
    [ 0.000000] ACPI: DSDT 00000000aaf85018 14057 (v01 _ASUS_ Notebook 00000000 INTL 20091112)
    [ 0.000000] ACPI: FACS 00000000aafe4e40 00040
    [ 0.000000] ACPI: APIC 00000000aaffdf18 000CC (v02 _ASUS_ Notebook 06222004 MSFT 00010013)
    [ 0.000000] ACPI: DBGP 00000000aaffff18 00034 (v01 _ASUS_ Notebook 06222004 MSFT 00010013)
    [ 0.000000] ACPI: ECDT 00000000aafe4b18 000C1 (v01 _ASUS_ Notebook 06222004 AMI. 00000003)
    [ 0.000000] ACPI: SLIC 00000000aaf9be18 00176 (v01 _ASUS_ Notebook 06222004 ASUS 00000001)
    [ 0.000000] ACPI: HPET 00000000aafe5d18 00038 (v01 _ASUS_ Notebook 06222004 AMI. 00000003)
    [ 0.000000] ACPI: MCFG 00000000aafe5c98 0003C (v01 _ASUS_ Notebook 06222004 MSFT 00000097)
    [ 0.000000] ACPI: SSDT 00000000aaf84018 00955 (v01 PmRef Cpu0Ist 00003000 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000aaf83018 00996 (v01 PmRef CpuPm 00003000 INTL 20091112)
    [ 0.000000] ACPI: ASF! 00000000aafe4a18 000A0 (v32 INTEL HCG 00000001 TFSM 000F4240)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000024f7fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x24f7fffff]
    [ 0.000000] NODE_DATA [mem 0x24f6fb000-0x24f6fffff]
    [ 0.000000] [ffffea0000000000-ffffea00093fffff] PMD -> [ffff880246e00000-ffff88024edfffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x24f7fffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009dfff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x3fffffff]
    [ 0.000000] node 0: [mem 0x40200000-0xaac0bfff]
    [ 0.000000] node 0: [mem 0xaad8e000-0xaad93fff]
    [ 0.000000] node 0: [mem 0xaad95000-0xaad95fff]
    [ 0.000000] node 0: [mem 0xaadb8000-0xaadc5fff]
    [ 0.000000] node 0: [mem 0xaade8000-0xaae21fff]
    [ 0.000000] node 0: [mem 0xaafe8000-0xaaffcfff]
    [ 0.000000] node 0: [mem 0x100000000-0x24f7fffff]
    [ 0.000000] On node 0 totalpages: 2072574
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 142 pages reserved
    [ 0.000000] DMA zone: 3776 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 10850 pages used for memmap
    [ 0.000000] DMA32 zone: 683534 pages, LIFO batch:31
    [ 0.000000] Normal zone: 21472 pages used for memmap
    [ 0.000000] Normal zone: 1352736 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[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x04] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x06] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x05] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x08] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x09] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0a] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x0b] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x0c] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x0d] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x0e] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x10] lapic_id[0x0f] disabled)
    [ 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: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 16 CPUs, 8 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 000000000009f000
    [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
    [ 0.000000] PM: Registered nosave memory: 0000000040000000 - 0000000040200000
    [ 0.000000] PM: Registered nosave memory: 00000000aac0c000 - 00000000aad8e000
    [ 0.000000] PM: Registered nosave memory: 00000000aad94000 - 00000000aad95000
    [ 0.000000] PM: Registered nosave memory: 00000000aad96000 - 00000000aadb8000
    [ 0.000000] PM: Registered nosave memory: 00000000aadc6000 - 00000000aade8000
    [ 0.000000] PM: Registered nosave memory: 00000000aae22000 - 00000000aafe8000
    [ 0.000000] PM: Registered nosave memory: 00000000aaffd000 - 00000000ab000000
    [ 0.000000] PM: Registered nosave memory: 00000000ab000000 - 00000000b0000000
    [ 0.000000] PM: Registered nosave memory: 00000000b0000000 - 00000000e0000000
    [ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000e4000000
    [ 0.000000] PM: Registered nosave memory: 00000000e4000000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000
    [ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed14000
    [ 0.000000] PM: Registered nosave memory: 00000000fed14000 - 00000000fed18000
    [ 0.000000] PM: Registered nosave memory: 00000000fed18000 - 00000000fed1a000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
    [ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
    [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    [ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ff980000
    [ 0.000000] PM: Registered nosave memory: 00000000ff980000 - 00000000ffc00000
    [ 0.000000] PM: Registered nosave memory: 00000000ffc00000 - 00000000ffd80000
    [ 0.000000] PM: Registered nosave memory: 00000000ffd80000 - 0000000100000000
    [ 0.000000] e820: [mem 0xb0000000-0xdfffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:16 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88024f400000 s85184 r8192 d21312 u131072
    [ 0.000000] pcpu-alloc: s85184 r8192 d21312 u131072 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2040046
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=/dev/mapper/SSDVolGroup-root ro resume=/dev/mapper/MainVolGroup-swap systemd.log_level=debug systemd.log_target=kmsg log_buf_len=1M
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] 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: 8074672k/9691136k available (4908k kernel code, 1400840k absent, 215624k reserved, 4024k data, 820k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=16, 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=64 to nr_cpu_ids=16.
    [ 0.000000] NR_IRQS:4352 nr_irqs:808 16
    [ 0.000000] Extended CMOS year: 2000
    [ 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.003333] tsc: Detected 2194.984 MHz processor
    [ 0.000003] Calibrating delay loop (skipped), value calculated using timer frequency.. 4391.88 BogoMIPS (lpj=7316613)
    [ 0.000006] pid_max: default: 32768 minimum: 301
    [ 0.000039] Security Framework initialized
    [ 0.000045] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000573] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.002327] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.003081] Mount-cache hash table entries: 256
    [ 0.003260] Initializing cgroup subsys cpuacct
    [ 0.003262] Initializing cgroup subsys memory
    [ 0.003269] Initializing cgroup subsys devices
    [ 0.003271] Initializing cgroup subsys freezer
    [ 0.003272] Initializing cgroup subsys net_cls
    [ 0.003274] Initializing cgroup subsys blkio
    [ 0.003298] CPU: Physical Processor ID: 0
    [ 0.003299] CPU: Processor Core ID: 0
    [ 0.003304] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.003307] mce: CPU supports 9 MCE banks
    [ 0.003321] CPU0: Thermal monitoring enabled (TM1)
    [ 0.003330] process: using mwait in idle threads
    [ 0.003333] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
    tlb_flushall_shift: 5
    [ 0.003497] Freeing SMP alternatives: 20k freed
    [ 0.004779] ACPI: Core revision 20121018
    [ 0.048855] ftrace: allocating 19313 entries in 76 pages
    [ 0.059156] Switched APIC routing to physical flat.
    [ 0.059575] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.092543] smpboot: CPU0: Intel(R) Core(TM) i7-2670QM CPU @ 2.20GHz (fam: 06, model: 2a, stepping: 07)
    [ 0.092551] TSC deadline timer enabled
    [ 0.092554] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, Intel PMU driver.
    [ 0.092560] perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
    [ 0.092562] ... version: 3
    [ 0.092563] ... bit width: 48
    [ 0.092564] ... generic registers: 4
    [ 0.092565] ... value mask: 0000ffffffffffff
    [ 0.092567] ... max period: 000000007fffffff
    [ 0.092568] ... fixed-purpose events: 3
    [ 0.092569] ... event mask: 000000070000000f
    [ 0.145921] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.132666] smpboot: Booting Node 0, Processors #1 #2 #3 #4 #5 #6 #7
    [ 0.252559] Brought up 8 CPUs
    [ 0.252563] smpboot: Total of 8 processors activated (35133.06 BogoMIPS)
    [ 0.260397] devtmpfs: initialized
    [ 0.261702] PM: Registering ACPI NVS region [mem 0xaae22000-0xaafe7fff] (1859584 bytes)
    [ 0.262489] RTC time: 13:35:47, date: 05/03/13
    [ 0.262533] NET: Registered protocol family 16
    [ 0.262683] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.262685] ACPI: bus type pci registered
    [ 0.262752] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
    [ 0.262754] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in E820
    [ 0.271626] PCI: Using configuration type 1 for base access
    [ 0.271915] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.271916] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.271917] mtrr: corrected configuration.
    [ 0.272339] bio: create slab <bio-0> at 0
    [ 0.272400] ACPI: Added _OSI(Module Device)
    [ 0.272402] ACPI: Added _OSI(Processor Device)
    [ 0.272403] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.272405] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.274772] ACPI: EC: EC description table is found, configuring boot EC
    [ 0.274777] ACPI: EC: Look up EC in DSDT
    [ 0.277260] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.280704] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.334137] ACPI: SSDT 00000000aadca798 0073F (v01 PmRef Cpu0Cst 00003001 INTL 20091112)
    [ 0.334721] ACPI: Dynamic OEM Table Load:
    [ 0.334724] ACPI: SSDT (null) 0073F (v01 PmRef Cpu0Cst 00003001 INTL 20091112)
    [ 0.335028] ACPI: SSDT 00000000aadcba98 00303 (v01 PmRef ApIst 00003000 INTL 20091112)
    [ 0.335636] ACPI: Dynamic OEM Table Load:
    [ 0.335639] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20091112)
    [ 0.335809] ACPI: SSDT 00000000aadc9d98 00119 (v01 PmRef ApCst 00003000 INTL 20091112)
    [ 0.336390] ACPI: Dynamic OEM Table Load:
    [ 0.336393] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20091112)
    [ 0.337542] ACPI: Interpreter enabled
    [ 0.337547] ACPI: (supports S0 S3 S4 S5)
    [ 0.337567] ACPI: Using IOAPIC for interrupt routing
    [ 0.343600] ACPI: EC: GPE = 0x1b, I/O: command/status = 0x66, data = 0x62
    [ 0.343756] ACPI: No dock devices found.
    [ 0.343760] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.343970] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.343973] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.344693] PCI host bridge to bus 0000:00
    [ 0.344696] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 0.344698] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.344700] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.344702] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.344704] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.344706] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.344708] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.344709] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.344711] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.344713] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.344715] pci_bus 0000:00: root bus resource [mem 0xb0000000-0xfeafffff]
    [ 0.344717] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
    [ 0.344725] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
    [ 0.344763] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
    [ 0.344796] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    [ 0.344816] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
    [ 0.344827] pci 0000:00:02.0: reg 10: [mem 0xdc400000-0xdc7fffff 64bit]
    [ 0.344834] pci 0000:00:02.0: reg 18: [mem 0xb0000000-0xbfffffff 64bit pref]
    [ 0.344839] pci 0000:00:02.0: reg 20: [io 0xe000-0xe03f]
    [ 0.344895] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
    [ 0.344920] pci 0000:00:16.0: reg 10: [mem 0xdf00b000-0xdf00b00f 64bit]
    [ 0.344999] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.345035] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
    [ 0.345058] pci 0000:00:1a.0: reg 10: [mem 0xdf008000-0xdf0083ff]
    [ 0.345152] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [ 0.345180] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
    [ 0.345197] pci 0000:00:1b.0: reg 10: [mem 0xdf000000-0xdf003fff 64bit]
    [ 0.345268] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.345294] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
    [ 0.345376] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.345403] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
    [ 0.345486] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.345517] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
    [ 0.345598] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.345627] pci 0000:00:1c.5: [8086:1c1a] type 01 class 0x060400
    [ 0.345709] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    [ 0.345744] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
    [ 0.345766] pci 0000:00:1d.0: reg 10: [mem 0xdf007000-0xdf0073ff]
    [ 0.345860] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.345889] pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
    [ 0.346019] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
    [ 0.346039] pci 0000:00:1f.2: reg 10: [io 0xe0b0-0xe0b7]
    [ 0.346048] pci 0000:00:1f.2: reg 14: [io 0xe0a0-0xe0a3]
    [ 0.346056] pci 0000:00:1f.2: reg 18: [io 0xe090-0xe097]
    [ 0.346065] pci 0000:00:1f.2: reg 1c: [io 0xe080-0xe083]
    [ 0.346074] pci 0000:00:1f.2: reg 20: [io 0xe060-0xe07f]
    [ 0.346082] pci 0000:00:1f.2: reg 24: [mem 0xdf006000-0xdf0067ff]
    [ 0.346131] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.346151] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
    [ 0.346167] pci 0000:00:1f.3: reg 10: [mem 0xdf005000-0xdf0050ff 64bit]
    [ 0.346189] pci 0000:00:1f.3: reg 20: [io 0xe040-0xe05f]
    [ 0.346253] pci 0000:01:00.0: [10de:1247] type 00 class 0x030000
    [ 0.346266] pci 0000:01:00.0: reg 10: [mem 0xda000000-0xdbffffff]
    [ 0.346279] pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.346292] pci 0000:01:00.0: reg 1c: [mem 0xd0000000-0xd3ffffff 64bit pref]
    [ 0.346301] pci 0000:01:00.0: reg 24: [io 0xd000-0xd07f]
    [ 0.346310] pci 0000:01:00.0: reg 30: [mem 0xdc000000-0xdc07ffff pref]
    [ 0.353417] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.353425] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 0.353432] pci 0000:00:01.0: bridge window [mem 0xda000000-0xdc0fffff]
    [ 0.353442] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd3ffffff 64bit pref]
    [ 0.353540] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.353544] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 0.353549] pci 0000:00:1c.0: bridge window [mem 0xde600000-0xdeffffff]
    [ 0.353556] pci 0000:00:1c.0: bridge window [mem 0xd6200000-0xd6bfffff 64bit pref]
    [ 0.353763] pci 0000:03:00.0: [8086:008a] type 00 class 0x028000
    [ 0.353907] pci 0000:03:00.0: reg 10: [mem 0xddc00000-0xddc01fff 64bit]
    [ 0.354584] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 0.363542] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.363546] pci 0000:00:1c.1: bridge window [io 0xb000-0xbfff]
    [ 0.363551] pci 0000:00:1c.1: bridge window [mem 0xddc00000-0xde5fffff]
    [ 0.363557] pci 0000:00:1c.1: bridge window [mem 0xd5700000-0xd60fffff 64bit pref]
    [ 0.363641] pci 0000:04:00.0: [1b21:1042] type 00 class 0x0c0330
    [ 0.363678] pci 0000:04:00.0: reg 10: [mem 0xdd200000-0xdd207fff 64bit]
    [ 0.363870] pci 0000:04:00.0: PME# supported from D3hot D3cold
    [ 0.373416] pci 0000:00:1c.3: PCI bridge to [bus 04]
    [ 0.373426] pci 0000:00:1c.3: bridge window [io 0xa000-0xafff]
    [ 0.373435] pci 0000:00:1c.3: bridge window [mem 0xdd200000-0xddbfffff]
    [ 0.373449] pci 0000:00:1c.3: bridge window [mem 0xd4c00000-0xd55fffff 64bit pref]
    [ 0.373564] pci 0000:05:00.0: [1969:1083] type 00 class 0x020000
    [ 0.373593] pci 0000:05:00.0: reg 10: [mem 0xdc800000-0xdc83ffff 64bit]
    [ 0.373608] pci 0000:05:00.0: reg 18: [io 0x9000-0x907f]
    [ 0.373738] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.383416] pci 0000:00:1c.5: PCI bridge to [bus 05]
    [ 0.383425] pci 0000:00:1c.5: bridge window [io 0x9000-0x9fff]
    [ 0.383434] pci 0000:00:1c.5: bridge window [mem 0xdc800000-0xdd1fffff]
    [ 0.383448] pci 0000:00:1c.5: bridge window [mem 0xd4100000-0xd4afffff 64bit pref]
    [ 0.383531] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG0._PRT]
    [ 0.383599] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    [ 0.383633] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    [ 0.383666] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
    [ 0.383698] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP06._PRT]
    [ 0.383884] pci0000:00: Requesting ACPI _OSC control (0x1d)
    [ 0.384170] pci0000:00: ACPI _OSC control (0x1d) granted
    [ 0.385076] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12)
    [ 0.385119] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 12)
    [ 0.385160] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 10 12)
    [ 0.385199] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 10 12)
    [ 0.385240] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 12) *0, disabled.
    [ 0.385282] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 12) *0, disabled.
    [ 0.385326] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 10 12)
    [ 0.385366] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 *5 6 7 10 12)
    [ 0.385442] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.385446] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    [ 0.385448] vgaarb: loaded
    [ 0.385449] vgaarb: bridge control possible 0000:01:00.0
    [ 0.385450] vgaarb: no bridge control possible 0000:00:02.0
    [ 0.385484] PCI: Using ACPI for IRQ routing
    [ 0.387021] PCI: pci_cache_line_size set to 64 bytes
    [ 0.387097] e820: reserve RAM buffer [mem 0x0009e800-0x0009ffff]
    [ 0.387099] e820: reserve RAM buffer [mem 0xaac0c000-0xabffffff]
    [ 0.387102] e820: reserve RAM buffer [mem 0xaad94000-0xabffffff]
    [ 0.387104] e820: reserve RAM buffer [mem 0xaad96000-0xabffffff]
    [ 0.387105] e820: reserve RAM buffer [mem 0xaadc6000-0xabffffff]
    [ 0.387107] e820: reserve RAM buffer [mem 0xaae22000-0xabffffff]
    [ 0.387109] e820: reserve RAM buffer [mem 0xaaffd000-0xabffffff]
    [ 0.387110] e820: reserve RAM buffer [mem 0x24f800000-0x24fffffff]
    [ 0.387195] NetLabel: Initializing
    [ 0.387197] NetLabel: domain hash size = 128
    [ 0.387198] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.387208] NetLabel: unlabeled traffic allowed by default
    [ 0.387231] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.387236] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.389244] Switching to clocksource hpet
    [ 0.393649] pnp: PnP ACPI init
    [ 0.393662] ACPI: bus type pnp registered
    [ 0.393721] pnp 00:00: [dma 4]
    [ 0.393744] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.393766] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.393863] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.393893] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.393936] system 00:04: [io 0x0680-0x069f] has been reserved
    [ 0.393939] system 00:04: [io 0x1000-0x100f] has been reserved
    [ 0.393941] system 00:04: [io 0xffff] has been reserved
    [ 0.393943] system 00:04: [io 0xffff] has been reserved
    [ 0.393945] system 00:04: [io 0x0400-0x0453] has been reserved
    [ 0.393947] system 00:04: [io 0x0458-0x047f] has been reserved
    [ 0.393949] system 00:04: [io 0x0500-0x057f] has been reserved
    [ 0.393951] system 00:04: [io 0x164e-0x164f] has been reserved
    [ 0.393954] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.393978] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.394018] system 00:06: [io 0x0454-0x0457] has been reserved
    [ 0.394021] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.394050] system 00:07: [io 0x0240-0x0259] has been reserved
    [ 0.394053] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.394103] pnp 00:08: Plug and Play ACPI device, IDs SYN0a17 SYN0a00 SYN0002 PNP0f13 (active)
    [ 0.394137] pnp 00:09: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    [ 0.394358] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.394360] system 00:0a: [mem 0xfed10000-0xfed17fff] could not be reserved
    [ 0.394362] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.394364] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.394367] system 00:0a: [mem 0xe0000000-0xe3ffffff] has been reserved
    [ 0.394369] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.394371] system 00:0a: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.394372] system 00:0a: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.394375] system 00:0a: [mem 0xff000000-0xffffffff] could not be reserved
    [ 0.394377] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.394380] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.394450] system 00:0b: [mem 0xd6c00000-0xd6c00fff] has been reserved
    [ 0.394453] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.394580] system 00:0c: [mem 0x20000000-0x201fffff] has been reserved
    [ 0.394582] system 00:0c: [mem 0x40000000-0x401fffff] has been reserved
    [ 0.394585] system 00:0c: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.394610] pnp: PnP ACPI: found 13 devices
    [ 0.394612] ACPI: ACPI bus type pnp unregistered
    [ 0.400997] pci 0000:00:01.0: PCI bridge to [bus 01]
    [ 0.401001] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
    [ 0.401004] pci 0000:00:01.0: bridge window [mem 0xda000000-0xdc0fffff]
    [ 0.401007] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd3ffffff 64bit pref]
    [ 0.401011] pci 0000:00:1c.0: PCI bridge to [bus 02]
    [ 0.401014] pci 0000:00:1c.0: bridge window [io 0xc000-0xcfff]
    [ 0.401020] pci 0000:00:1c.0: bridge window [mem 0xde600000-0xdeffffff]
    [ 0.401024] pci 0000:00:1c.0: bridge window [mem 0xd6200000-0xd6bfffff 64bit pref]
    [ 0.401031] pci 0000:00:1c.1: PCI bridge to [bus 03]
    [ 0.401034] pci 0000:00:1c.1: bridge window [io 0xb000-0xbfff]
    [ 0.401040] pci 0000:00:1c.1: bridge window [mem 0xddc00000-0xde5fffff]
    [ 0.401044] pci 0000:00:1c.1: bridge window [mem 0xd5700000-0xd60fffff 64bit pref]
    [ 0.401051] pci 0000:00:1c.3: PCI bridge to [bus 04]
    [ 0.401054] pci 0000:00:1c.3: bridge window [io 0xa000-0xafff]
    [ 0.401059] pci 0000:00:1c.3: bridge window [mem 0xdd200000-0xddbfffff]
    [ 0.401064] pci 0000:00:1c.3: bridge window [mem 0xd4c00000-0xd55fffff 64bit pref]
    [ 0.401070] pci 0000:00:1c.5: PCI bridge to [bus 05]
    [ 0.401074] pci 0000:00:1c.5: bridge window [io 0x9000-0x9fff]
    [ 0.401079] pci 0000:00:1c.5: bridge window [mem 0xdc800000-0xdd1fffff]
    [ 0.401084] pci 0000:00:1c.5: bridge window [mem 0xd4100000-0xd4afffff 64bit pref]
    [ 0.401125] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.401127] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.401129] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.401131] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [ 0.401133] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [ 0.401134] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [ 0.401136] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff]
    [ 0.401138] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff]
    [ 0.401140] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff]
    [ 0.401142] pci_bus 0000:00: resource 13 [mem 0xb0000000-0xfeafffff]
    [ 0.401143] pci_bus 0000:00: resource 14 [mem 0xfed40000-0xfed44fff]
    [ 0.401145] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
    [ 0.401147] pci_bus 0000:01: resource 1 [mem 0xda000000-0xdc0fffff]
    [ 0.401149] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd3ffffff 64bit pref]
    [ 0.401151] pci_bus 0000:02: resource 0 [io 0xc000-0xcfff]
    [ 0.401152] pci_bus 0000:02: resource 1 [mem 0xde600000-0xdeffffff]
    [ 0.401154] pci_bus 0000:02: resource 2 [mem 0xd6200000-0xd6bfffff 64bit pref]
    [ 0.401156] pci_bus 0000:03: resource 0 [io 0xb000-0xbfff]
    [ 0.401158] pci_bus 0000:03: resource 1 [mem 0xddc00000-0xde5fffff]
    [ 0.401160] pci_bus 0000:03: resource 2 [mem 0xd5700000-0xd60fffff 64bit pref]
    [ 0.401162] pci_bus 0000:04: resource 0 [io 0xa000-0xafff]
    [ 0.401163] pci_bus 0000:04: resource 1 [mem 0xdd200000-0xddbfffff]
    [ 0.401165] pci_bus 0000:04: resource 2 [mem 0xd4c00000-0xd55fffff 64bit pref]
    [ 0.401167] pci_bus 0000:05: resource 0 [io 0x9000-0x9fff]
    [ 0.401169] pci_bus 0000:05: resource 1 [mem 0xdc800000-0xdd1fffff]
    [ 0.401170] pci_bus 0000:05: resource 2 [mem 0xd4100000-0xd4afffff 64bit pref]
    [ 0.401203] NET: Registered protocol family 2
    [ 0.401386] TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.401597] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.401732] TCP: Hash tables configured (established 65536 bind 65536)
    [ 0.401751] TCP: reno registered
    [ 0.401763] UDP hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.401796] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    [ 0.401871] NET: Registered protocol family 1
    [ 0.401882] pci 0000:00:02.0: Boot video device
    [ 0.649137] PCI: CLS 64 bytes, default 64
    [ 0.649172] Unpacking initramfs...
    [ 0.717214] Freeing initrd memory: 3648k freed
    [ 0.717643] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.717647] software IO TLB [mem 0xa6c0c000-0xaac0c000] (64MB) mapped at [ffff8800a6c0c000-ffff8800aac0bfff]
    [ 0.718142] audit: initializing netlink socket (disabled)
    [ 0.718152] type=2000 audit(1367588147.679:1): initialized
    [ 0.730817] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.732352] VFS: Disk quotas dquot_6.5.2
    [ 0.732401] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.732571] msgmni has been set to 15778
    [ 0.732780] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.732809] io scheduler noop registered
    [ 0.732810] io scheduler deadline registered
    [ 0.732815] io scheduler cfq registered (default)
    [ 0.732906] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    [ 0.733001] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
    [ 0.733106] pcieport 0000:00:1c.1: irq 42 for MSI/MSI-X
    [ 0.733210] pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X
    [ 0.733313] pcieport 0000:00:1c.5: irq 44 for MSI/MSI-X
    [ 0.733390] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
    [ 0.733392] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
    [ 0.733395] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
    [ 0.733413] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
    [ 0.733417] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
    [ 0.733434] pcieport 0000:00:1c.1: Signaling PME through PCIe PME interrupt
    [ 0.733436] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
    [ 0.733440] pcie_pme 0000:00:1c.1:pcie01: service driver pcie_pme loaded
    [ 0.733461] pcieport 0000:00:1c.3: Signaling PME through PCIe PME interrupt
    [ 0.733463] pci 0000:04:00.0: Signaling PME through PCIe PME interrupt
    [ 0.733467] pcie_pme 0000:00:1c.3:pcie01: service driver pcie_pme loaded
    [ 0.733484] pcieport 0000:00:1c.5: Signaling PME through PCIe PME interrupt
    [ 0.733486] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
    [ 0.733491] pcie_pme 0000:00:1c.5:pcie01: service driver pcie_pme loaded
    [ 0.733537] vesafb: mode is 1280x1024x32, linelength=5120, pages=0
    [ 0.733538] vesafb: scrolling: redraw
    [ 0.733540] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.734311] vesafb: framebuffer at 0xb0000000, mapped to 0xffffc90004f00000, using 5120k, total 5120k
    [ 0.834874] Console: switching to colour frame buffer device 160x64
    [ 0.935388] fb0: VESA VGA frame buffer device
    [ 0.935400] intel_idle: MWAIT substates: 0x21120
    [ 0.935401] intel_idle: v0.4 model 0x2A
    [ 0.935403] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.935440] GHES: HEST is not enabled!
    [ 0.935483] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.935911] Linux agpgart interface v0.103
    [ 0.935990] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 0.937667] i8042: Detected active multiplexing controller, rev 1.1
    [ 0.938451] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.938474] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    [ 0.938494] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    [ 0.938515] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    [ 0.938532] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    [ 0.938616] mousedev: PS/2 mouse device common for all mice
    [ 0.938686] rtc_cmos 00:05: RTC can wake from S4
    [ 0.938811] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    [ 0.938838] rtc0: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
    [ 0.938991] cpuidle: using governor ladder
    [ 0.939190] cpuidle: using governor menu
    [ 0.939192] EFI Variables Facility v0.08 2004-May-17
    [ 0.939237] drop_monitor: Initializing network drop monitor service
    [ 0.939306] TCP: cubic registered
    [ 0.939395] NET: Registered protocol family 10
    [ 0.939535] NET: Registered protocol family 17
    [ 0.939543] Key type dns_resolver registered
    [ 0.939844] PM: Checking hibernation image partition /dev/mapper/MainVolGroup-swap
    [ 0.972538] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 1.084950] PM: Hibernation image not present or could not be loaded.
    [ 1.084974] registered taskstats version 1
    [ 1.085749] Magic number: 13:624:583
    [ 1.085763] pci_bus 0000:04: hash matches
    [ 1.085842] rtc_cmos 00:05: setting system clock to 2013-05-03 13:35:48 UTC (1367588148)
    [ 1.087384] Freeing unused kernel memory: 820k freed
    [ 1.087474] Write protecting the kernel read-only data: 8192k
    [ 1.091223] Freeing unused kernel memory: 1224k freed
    [ 1.092704] Freeing unused kernel memory: 440k freed
    [ 1.100348] systemd-udevd[79]: starting version 202
    [ 1.104141] device-mapper: uevent: version 1.0.3
    [ 1.104302] device-mapper: ioctl: 4.23.1-ioctl (2012-12-18) initialised: [email protected]
    [ 1.125733] ACPI: bus type usb registered
    [ 1.125784] usbcore: registered new interface driver usbfs
    [ 1.125818] usbcore: registered new interface driver hub
    [ 1.125883] usbcore: registered new device driver usb
    [ 1.126941] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.127436] ehci-pci: EHCI PCI platform driver
    [ 1.127537] xhci_hcd 0000:04:00.0: xHCI Host Controller
    [ 1.127539] ehci-pci 0000:00:1a.0: setting latency timer to 64
    [ 1.127543] ehci-pci 0000:00:1a.0: EHCI Host Controller
    [ 1.127557] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 1.127567] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 2
    [ 1.127587] ehci-pci 0000:00:1a.0: debug port 2
    [ 1.127598] SCSI subsystem initialized
    [ 1.128985] ACPI: bus type scsi registered
    [ 1.129170] libata version 3.00 loaded.
    [ 1.131512] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
    [ 1.131535] ehci-pci 0000:00:1a.0: irq 16, io mem 0xdf008000
    [ 1.132114] xhci_hcd 0000:04:00.0: irq 45 for MSI/MSI-X
    [ 1.132121] xhci_hcd 0000:04:00.0: irq 46 for MSI/MSI-X
    [ 1.132127] xhci_hcd 0000:04:00.0: irq 47 for MSI/MSI-X
    [ 1.132133] xhci_hcd 0000:04:00.0: irq 48 for MSI/MSI-X
    [ 1.132138] xhci_hcd 0000:04:00.0: irq 49 for MSI/MSI-X
    [ 1.132143] xhci_hcd 0000:04:00.0: irq 50 for MSI/MSI-X
    [ 1.132149] xhci_hcd 0000:04:00.0: irq 51 for MSI/MSI-X
    [ 1.132154] xhci_hcd 0000:04:00.0: irq 52 for MSI/MSI-X
    [ 1.132484] xHCI xhci_add_endpoint called for root hub
    [ 1.132487] xHCI xhci_check_bandwidth called for root hub
    [ 1.132548] hub 2-0:1.0: USB hub found
    [ 1.132561] hub 2-0:1.0: 2 ports detected
    [ 1.132717] xhci_hcd 0000:04:00.0: xHCI Host Controller
    [ 1.132725] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 3
    [ 1.132884] xHCI xhci_add_endpoint called for root hub
    [ 1.132886] xHCI xhci_check_bandwidth called for root hub
    [ 1.132937] hub 3-0:1.0: USB hub found
    [ 1.132946] hub 3-0:1.0: 2 ports detected
    [ 1.138468] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [ 1.138852] hub 1-0:1.0: USB hub found
    [ 1.138856] hub 1-0:1.0: 2 ports detected
    [ 1.139004] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 1.139008] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 1.139013] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
    [ 1.139027] ehci-pci 0000:00:1d.0: debug port 2
    [ 1.142933] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 1.142950] ehci-pci 0000:00:1d.0: irq 23, io mem 0xdf007000
    [ 1.151785] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 1.152053] hub 4-0:1.0: USB hub found
    [ 1.152057] hub 4-0:1.0: 2 ports detected
    [ 1.152155] ahci 0000:00:1f.2: version 3.0
    [ 1.152226] ahci 0000:00:1f.2: irq 53 for MSI/MSI-X
    [ 1.165142] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x5 impl SATA mode
    [ 1.165152] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
    [ 1.165162] ahci 0000:00:1f.2: setting latency timer to 64
    [ 1.172449] scsi0 : ahci
    [ 1.172628] scsi1 : ahci
    [ 1.172789] scsi2 : ahci
    [ 1.172947] scsi3 : ahci
    [ 1.173104] scsi4 : ahci
    [ 1.173232] scsi5 : ahci
    [ 1.173279] ata1: SATA max UDMA/133 abar m2048@0xdf006000 port 0xdf006100 irq 53
    [ 1.173281] ata2: DUMMY
    [ 1.173284] ata3: SATA max UDMA/133 abar m2048@0xdf006000 port 0xdf006200 irq 53
    [ 1.173285] ata4: DUMMY
    [ 1.173287] ata5: DUMMY
    [ 1.173288] ata6: DUMMY
    [ 1.491471] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.491534] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.492344] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.492383] ata3.00: ATA-9: OCZ-VERTEX4, 1.5, max UDMA/133
    [ 1.492386] ata3.00: 250069680 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.493193] ata3.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.493231] ata3.00: configured for UDMA/133
    [ 1.493884] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.493970] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.494053] ata1.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.494756] usb 2-2: new high-speed USB device number 2 using xhci_hcd
    [ 1.496558] ata1.00: ATA-8: WDC WD7500BPKT-80PK4T0, 01.01A01, max UDMA/133
    [ 1.496567] ata1.00: 1465149168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 1.499166] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 1.499312] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.499465] ata1.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
    [ 1.501976] ata1.00: configured for UDMA/133
    [ 1.502207] scsi 0:0:0:0: Direct-Access ATA WDC WD7500BPKT-8 01.0 PQ: 0 ANSI: 5
    [ 1.502554] scsi 2:0:0:0: Direct-Access ATA OCZ-VERTEX4 1.5 PQ: 0 ANSI: 5
    [ 1.506105] sd 0:0:0:0: [sda] 1465149168 512-byte logical blocks: (750 GB/698 GiB)
    [ 1.506109] sd 0:0:0:0: [sda] 4096-byte physical blocks
    [ 1.506148] sd 0:0:0:0: [sda] Write Protect is off
    [ 1.506151] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 1.506154] sd 2:0:0:0: [sdb] 250069680 512-byte logical blocks: (128 GB/119 GiB)
    [ 1.506169] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.506212] sd 2:0:0:0: [sdb] Write Protect is off
    [ 1.506216] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
    [ 1.506243] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.506699] sdb: sdb1 sdb2
    [ 1.506982] sd 2:0:0:0: [sdb] Attached SCSI disk
    [ 1.515208] Initializing USB Mass Storage driver...
    [ 1.515403] scsi6 : usb-storage 2-2:1.0
    [ 1.515477] usbcore: registered new interface driver usb-storage
    [ 1.515479] USB Mass Storage support registered.
    [ 1.559813] sda: sda1 sda2 sda3 sda4
    [ 1.560554] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 1.568887] bio: create slab <bio-1> at 1
    [ 1.617994] usb 1-1: new high-speed USB device number 2 using ehci-pci
    [ 1.717847] tsc: Refined TSC clocksource calibration: 2195.013 MHz
    [ 1.717860] Switching to clocksource tsc
    [ 1.741822] hub 1-1:1.0: USB hub found
    [ 1.741901] hub 1-1:1.0: 6 ports detected
    [ 1.847695] usb 4-1: new high-speed USB device number 2 using ehci-pci
    [ 1.971554] hub 4-1:1.0: USB hub found
    [ 1.971646] hub 4-1:1.0: 6 ports detected
    [ 2.050951] usb 1-1.1: new full-speed USB device number 3 using ehci-pci
    [ 2.204028] usb 1-1.2: new high-speed USB device number 4 using ehci-pci
    [ 2.334884] PM: Starting manual resume from disk
    [ 2.334889] PM: Hibernation image partition 254:3 present
    [ 2.334890] PM: Looking for hibernation image.
    [ 2.335066] PM: Image not found (code -22)
    [ 2.335071] PM: Hibernation image not present or could not be loaded.
    [ 2.354107] EXT4-fs (dm-0): INFO: recovery required on readonly filesystem
    [ 2.354110] EXT4-fs (dm-0): write access will be enabled during recovery
    [ 2.359269] EXT4-fs (dm-0): recovery complete
    [ 2.360870] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
    [ 2.433463] systemd[1]: Mounting cgroup to /sys/fs/cgroup/cpuset of type cgroup with options cpuset.
    [ 2.443949] systemd[1]: Mounting cgroup to /sys/fs/cgroup/cpu,cpuacct of type cgroup with options cpu,cpuacct.
    [ 2.447276] systemd[1]: Mounting cgroup to /sys/fs/cgroup/memory of type cgroup with options memory.
    [ 2.450612] systemd[1]: Mounting cgroup to /sys/fs/cgroup/devices of type cgroup with options devices.
    [ 2.453928] systemd[1]: Mounting cgroup to /sys/fs/cgroup/freezer of type cgroup with options freezer.
    [ 2.457242] systemd[1]: Mounting cgroup to /sys/fs/cgroup/net_cls of type cgroup with options net_cls.
    [ 2.460576] systemd[1]: Mounting cgroup to /sys/fs/cgroup/blkio of type cgroup with options blkio.
    [ 2.463921] systemd[1]: systemd 202 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 2.466588] systemd[1]: Set hostname to <laptop>.
    [ 2.468578] systemd[1]: Using cgroup controller name=systemd. File system hierarchy is at /sys/fs/cgroup/systemd/system.
    [ 2.468640] systemd[1]: Installed release agent.
    [ 2.470573] systemd[1]: Using notification socket @/org/freedesktop/systemd1/notify
    [ 2.470586] systemd[1]: Set up TFD_TIMER_CANCEL_ON_SET timerfd.
    [ 2.470700] systemd[1]: Successfully created private D-Bus server.
    [ 2.471882] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-fstab-generator as 176
    [ 2.471962] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-efi-boot-generator as 177
    [ 2.472047] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-system-update-generator as 178
    [ 2.472156] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-getty-generator as 179
    [ 2.472263] systemd[1]: Spawned /usr/lib/systemd/system-generators/systemd-cryptsetup-generator as 180
    [ 2.476365] systemd[1]: /usr/lib/systemd/system-generators/systemd-fstab-generator exited successfully.
    [ 2.476378] systemd[1]: /usr/lib/systemd/system-generators/systemd-efi-boot-generator exited successfully.
    [ 2.476385] systemd[1]: /usr/lib/systemd/system-generators/systemd-system-update-generator exited successfully.
    [ 2.476391] systemd[1]: /usr/lib/systemd/system-generators/systemd-getty-generator exited successfully.
    [ 2.476397] systemd[1]: /usr/lib/systemd/system-generators/systemd-cryptsetup-generator exited successfully.
    [ 2.476871] systemd[1]: Looking for unit files in (higher priority first):
    [ 2.476876] systemd[1]: /etc/systemd/system
    [ 2.476878] systemd[1]: /run/systemd/system
    [ 2.476880] systemd[1]: /run/systemd/generator
    [ 2.476882] systemd[1]: /usr/local/lib/systemd/system
    [ 2.476884] systemd[1]: /usr/lib/systemd/system
    [ 2.476887] systemd[1]: SysV init scripts and rcN.d links support disabled
    [ 2.493752] systemd[1]: Failed to load configuration for syslog.target: No such file or directory
    [ 2.495520] systemd[1]: Failed to load configuration for plymouth-quit.service: No such file or directory
    [ 2.496386] systemd[1]: Failed to load configuration for plymouth-quit-wait.service: No such file or directory
    [ 2.496999] systemd[1]: Failed to load configuration for plymouth-start.service: No such file or directory
    [ 2.504860] systemd[1]: Failed to load configuration for ypbind.service: No such file or directory
    [ 2.517488] systemd[1]: Failed to load configuration for syslog.service: No such file or directory
    [ 2.520082] scsi 6:0:0:0: Direct-Access 1.00 PQ: 0 ANSI: 4
    [ 2.520543] systemd[1]: Failed to load configuration for runlevel5.target: No such file or directory
    [ 2.520551] systemd[1]: Failed to load configuration for runlevel4.target: No such file or directory
    [ 2.520556] systemd[1]: Failed to load configuration for runlevel3.target: No such file or directory
    [ 2.520561] systemd[1]: Failed to load configuration for runlevel2.target: No such file or directory
    [ 2.520566] systemd[1]: Failed to load configuration for runlevel1.target: No such file or directory
    [ 2.520571] systemd[1]: Failed to load configuration for auditd.service: No such file or directory
    [ 2.521264] sd 6:0:0:0: [sdc] 30343168 512-byte logical blocks: (15.5 GB/14.4 GiB)
    [ 2.522318] sd 6:0:0:0: [sdc] Write Protect is off
    [ 2.522320] sd 6:0:0:0: [sdc] Mode Sense: 2f 00 00 00
    [ 2.523352] sd 6:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.523974] systemd[1]: -.mount changed dead -> mounted
    [ 2.524009] systemd[1]: Activating default unit: default.target
    [ 2.524016] systemd[1]: Trying to enqueue job graphical.target/start/isolate
    [ 2.524119] systemd[1]: Looking at job [email protected]/stop conflicted_by=yes
    [ 2.524122] systemd[1]: Looking at job [email protected]/start conflicted_by=no
    [ 2.524125] systemd[1]: Fixing conflicting jobs by deleting job [email protected]/start
    [ 2.524129] systemd[1]: Looking at job gdm.service/start conflicted_by=no
    [ 2.524132] systemd[1]: Looking at job gdm.service/stop conflicted_by=no
    [ 2.524134] systemd[1]: Fixing conflicting jobs by deleting job gdm.service/stop
    [ 2.524147] systemd[1]: Installed new job graphical.target/start as 1
    [ 2.524151] systemd[1]: Installed new job multi-user.target/start as 2
    [ 2.524155] systemd[1]: Installed new job basic.target/start as 3
    [ 2.524158] systemd[1]: Installed new job sysinit.target/start as 4
    [ 2.524162] systemd[1]: Installed new job local-fs.target/start as 5
    [ 2.524165] systemd[1]: Installed new job var-cache-fontconfig.automount/start as 6
    [ 2.524168] systemd[1]: Installed new job var.mount/start as 7
    [ 2.524171] systemd[1]: Installed new job systemd-fsck@dev-mapper-MainVolGroup\x2dvar.service/start as 8
    [ 2.524174] systemd[1]: Installed new job dev-mapper-MainVolGroup\x2dvar.device/start as 9
    [ 2.524183] systemd[1]: Installed new job mnt-hdd\x2dhome.automount/start as 12
    [ 2.524186] systemd[1]: Installed new job mnt-hdd\x2droot.automount/start as 13
    [ 2.524189] systemd[1]: Installed new job var.automount/start as 14
    [ 2.524192] systemd[1]: Installed new job boot.automount/start as 15
    [ 2.524195] systemd[1]: Installed new job home.automount/start as 16
    [ 2.524198] systemd[1]: Installed new job systemd-fsck-root.service/start as 17
    [ 2.524201] systemd[1]: Installed new job systemd-remount-fs.service/start as 18
    [ 2.524204] systemd[1]: Installed new job local-fs-pre.target/start as 19
    [ 2.524207] systemd[1]: Installed new job tmp.mount/start as 21
    [ 2.524210] systemd[1]: Installed new job swap.target/start as 22
    [ 2.524213] systemd[1]: Installed new job dev-mapper-MainVolGroup\x2dswap.swap/start as 23
    [ 2.524216] systemd[1]: Installed new job dev-mapper-MainVolGroup\x2dswap.device/start as 24
    [ 2.524222] systemd[1]: Installed new job debug-shell.service/start as 25
    [ 2.524225] systemd[1]: Installed new job systemd-tmpfiles-setup.service/start as 26
    [ 2.524228] systemd[1]: Installed new job systemd-journal-flush.service/start as 27
    [ 2.524231] systemd[1]: Installed new job systemd-journald.service/start as 28
    [ 2.524234] systemd[1]: Installed new job systemd-journald.socket/start as 29
    [ 2.524237] systemd[1]: Installed new job cryptsetup.target/start as 30
    [ 2.524240] systemd[1]: Installed new job systemd-vconsole-setup.service/start as 31
    [ 2.524243] systemd[1]: Installed new job systemd-static-nodes.service/start as 32
    [ 2.524245] systemd[1]: Installed new job systemd-modules-load.service/start as 33
    [ 2.524248] systemd[1]: Installed new job dev-mqueue.mount/start as 34
    [ 2.524251] systemd[1]: Installed new job systemd-ask-password-console.path/start as 35
    [ 2.524254] systemd[1]: Installed new job systemd-binfmt.service/start as 36
    [ 2.524257] systemd[1]: Installed new job sys-kernel-debug.mount/start as 37
    [ 2.524260] systemd[1]: Installed new job systemd-random-seed-load.service/start as 38
    [ 2.524263] systemd[1]: Installed new job systemd-udevd.service/start as 39
    [ 2.524266] systemd[1]: Installed new job systemd-udevd-control.socket/start as 40
    [ 2.524269] systemd[1]: Installed new job systemd-udevd-kernel.socket/start as 41
    [ 2.524272] systemd[1]: Installed new job dev-hugepages.mount/start as 42
    [ 2.524275] systemd[1]: Installed new job proc-sys-fs-binfmt_misc.automount/start as 43
    [ 2.524278] systemd[1]: Installed new job sys-kernel-config.mount/start as 44
    [ 2.524281] systemd[1]: Installed new job systemd-udev-trigger.service/start as 45
    [ 2.524283] systemd[1]: Installed new job systemd-sysctl.service/start as 46
    [ 2.524286] systemd[1]: Installed new job sys-fs-fuse-connections.mount/start as 47
    [ 2.524289] systemd[1]: Installed new job sockets.target/start as 50
    [ 2.524292] systemd[1]: Installed new job systemd-initctl.socket/start as 51
    [ 2.524295] systemd[1]: Installed new job systemd-shutdownd.socket/start as 52
    [ 2.524298] systemd[1]: Installed new job lvmetad.socket/start as 53
    [ 2.524301] systemd[1]: Installed new job dmeventd.socket/start as 54
    [ 2.524304] systemd[1]: Installed new job dbus.socket/start as 55
    [ 2.524307] systemd[1]: Installed new job timers.target/start as 56
    [ 2.524310] systemd[1]: Installed new job systemd-tmpfiles-clean.timer/start as 57
    [ 2.524313] systemd[1]: Installed new job paths.target/start as 58
    [ 2.524316] systemd[1]: Installed new job alsa-restore.service/start as 59
    [ 2.524319] systemd[1]: Installed new job alsa-state.service/start as 60
    [ 2.524322] systemd[1]: Installed new job NetworkManager.service/start as 61
    [ 2.524325] systemd[1]: Installed new job network.target/start as 62
    [ 2.524327] systemd[1]: Installed new job [email protected]/start as 63
    [ 2.524330] systemd[1]: Installed new job laptop-mode.service/start as 64
    [ 2.524333] systemd[1]: Installed new job ntpd.service/start as 65
    [ 2.524336] systemd[1]: Installed new job postfix.service/start as 66
    [ 2.524339] systemd[1]: Installed new job autofs.service/start as 67
    [ 2.524342] systemd[1]: Installed new job psd.service/start as 68
    [ 2.524345] systemd[1]: Installed new job cronie.service/start as 69
    [ 2.524347] systemd[1]: Installed new job hddtemp.service/start as 70
    [ 2.524350] systemd[1]: Installed new job remote-fs.target/start as 71
    [ 2.524353] systemd[1]: Installed new job sshd.service/start as 72
    [ 2.524356] systemd[1]: Installed new job sshdgenkeys.service/start as 73
    [ 2.524359] systemd[1]: Installed new job systemd-user-sessions.service/start as 74
    [ 2.524362] systemd[1]: Installed new job getty.target/start as 75
    [ 2.524364] systemd[1]: Installed new job gdm.service/start as 83
    [ 2.524367] systemd[1]: Installed new job systemd-logind.service/start as 78
    [ 2.524370] systemd[1]: Installed new job dbus.service/start as 79
    [ 2.524373] systemd[1]: Installed new job systemd-ask-password-wall.path/start as 80
    [ 2.524376] systemd[1]: Installed new job bumblebeed.service/start as 86
    [ 2.524381] systemd[1]: Enqueued job graphical.target/start as 1
    [ 2.524388] systemd[1]: Loaded units and determined initial transaction in 53.717ms.
    [ 2.524451] systemd[1]: Got SIGCHLD for process 175 (switch_root)
    [ 2.524487] systemd[1]: Child 175 died (code=exited, status=0/SUCCESS)
    [ 2.524506] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 2.524557] systemd[1]: systemd-ask-password-wall.path changed dead -> waiting
    [ 2.524562] systemd[1]: Job systemd-ask-password-wall.path/start finished, result=done
    [ 2.524570] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 2.524581] systemd[1]: Starting Login Prompts.
    [ 2.524584] systemd[1]: getty.target changed dead -> active
    [ 2.524587] systemd[1]: Job getty.target/start finished, result=done
    [ 2.525191] systemd[1]: Reached target Login Prompts.
    [ 2.525200] systemd[1]: Starting Remote File Systems.
    [ 2.525203] systemd[1]: remote-fs.target changed dead -> active
    [ 2.525207] systemd[1]: Job remote-fs.target/start finished, result=done
    [ 2.525847] systemd[1]: Reached target Remote File Systems.
    [ 2.525857] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 2.525880] systemd[1]: dmeventd.socket changed dead -> listening
    [ 2.525884] systemd[1]: Job dmeventd.socket/start finished, result=done
    [ 2.526631] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 2.526640] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 2.526658] systemd[1]: lvmetad.socket changed dead -> listening
    [ 2.526662] systemd[1]: Job lvmetad.socket/start finished, result=done
    [ 2.527368] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 2.527377] systemd[1]: Starting Delayed Shutdown Socket.
    [ 2.527392] systemd[1]: systemd-shutdownd.socket changed dead -> listening
    [ 2.527396] systemd[1]: Job systemd-shutdownd.socket/start finished, result=done
    [ 2.527773] sdc: sdc1
    [ 2.528062] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 2.528071] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 2.528085] systemd[1]: systemd-initctl.socket changed dead -> listening
    [ 2.528089] systemd[1]: Job systemd-initctl.socket/start finished, result=done
    [ 2.528886] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 2.528913] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 2.528928] systemd[1]: Autofs kernel version 1.0
    [ 2.528999] systemd[1]: Autofs protocol version 5.2
    [ 2.529006] systemd[1]: proc-sys-fs-binfmt_misc.automount changed dead -> waiting
    [ 2.529010] systemd[1]: Job proc-sys-fs-binfmt_misc.automount/start finished, result=done
    [ 2.530088] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 2.530148] systemd[1]: Starting udev Kernel Socket.
    [ 2.530162] systemd[1]: systemd-udevd-kernel.socket changed dead -> listening
    [ 2.530166] systemd[1]: Job systemd-udevd-kernel.socket/start finished, result=done
    [ 2.530792] systemd[1]: Listening on udev Kernel Socket.
    [ 2.530842] systemd[1]: Starting udev Control Socket.
    [ 2.530861] systemd[1]: systemd-udevd-control.socket changed dead -> listening
    [ 2.530865] systemd[1]: Job systemd-udevd-control.socket/start finished, result=done
    [ 2.531232] sd 6:0:0:0: [sdc] Attached SCSI removable disk
    [ 2.531491] systemd[1]: Listening on udev Control Socket.
    [ 2.531505] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 2.531537] systemd[1]: systemd-ask-password-console.path changed dead -> waiting
    [ 2.531542] systemd[1]: Job systemd-ask-password-console.path/start finished, result=done
    [ 2.531548] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 2.531556] systemd[1]: Starting Paths.
    [ 2.531559] systemd[1]: paths.target changed dead -> active
    [ 2.531562] systemd[1]: Job paths.target/start finished, result=done
    [ 2.532064] systemd[1]: Reached target Paths.
    [ 2.532073] systemd[1]: Starting Encrypted Volumes.
    [ 2.532076] systemd[1]: cryptsetup.target changed dead -> active
    [ 2.532079] systemd[1]: Job cryptsetup.target/start finished, result=done
    [ 2.532698] systemd[1]: Reached target Encrypted Volumes.
    [ 2.532708] systemd[1]: Starting Journal Socket.
    [ 2.532744] systemd[1]: systemd-journald.socket changed dead -> listening
    [ 2.532748] systemd[1]: Job systemd-journald.socket/start finished, result=done
    [ 2.533319] systemd[1]: Listening on Journal Socket.
    [ 2.533332] systemd[1]: Starting Setup Virtual Console...
    [ 2.533931] systemd[1]: About to execute: /usr/lib/systemd/systemd-vconsole-setup
    [ 2.534187] systemd[1]: Forked /usr/lib/systemd/systemd-vconsole-setup as 184
    [ 2.547297] systemd[1]: systemd-vconsole-setup.service changed dead -> start
    [ 2.547302] systemd[184]: Executing: /usr/lib/systemd/systemd-vconsole-setup
    [ 2.547373] systemd[1]: Starting Create static device nodes in /dev...
    [ 2.548118] systemd[1]: About to execute: /usr/bin/systemd-tmpfiles --prefix=/dev --create
    [ 2.548361] systemd[1]: Forked /usr/bin/systemd-tmpfiles as 185
    [ 2.560348] systemd[185]: Executing: /usr/bin/systemd-tmpfiles --prefix=/dev --create
    [ 2.560365] systemd[1]: systemd-static-nodes.service changed dead -> start
    [ 2.562192] systemd[1]: Starting Load Kernel Modules...
    [ 2.562760] systemd[1]: About to execute: /usr/lib/systemd/systemd-modules-load
    [ 2.562937] systemd[1]: Forked /usr/lib/systemd/systemd-modules-load as 190
    [ 2.563964] systemd[190]: Executing: /usr/lib/systemd/systemd-modules-load
    [ 2.563973] systemd[1]: systemd-modules-load.service changed dead -> start
    [ 2.564002] systemd[1]: Mounting POSIX Message Queue File System...
    [ 2.564818] systemd[1]: About to execute: /bin/mount mqueue /dev/mqueue -t mqueue
    [ 2.565013] systemd[1]: Forked /bin/mount as 191
    [ 2.570344] systemd[1]: dev-mqueue.mount changed dead -> mounting
    [ 2.570404] systemd[191]: Executing: /bin/mount mqueue /dev/mqueue -t mqueue
    [ 2.571513] systemd[1]: Starting of systemd-binfmt.service requested but condition failed. Ignoring.
    [ 2.571519] systemd[1]: Job systemd-binfmt.service/start finished, result=done
    [ 2.571532] systemd[1]: Started Set Up Additional Binary Formats.
    [ 2.571556] systemd[1]: Mounting Debug File System...
    [ 2.572101] systemd[1]: About to execute: /bin/mount debugfs /sys/kernel/debug -t debugfs
    [ 2.572284] systemd[1]: Forked /bin/mount as 192
    [ 2.573859] systemd[1]: sys-kernel-debug.mount changed dead -> mounting
    [ 2.573900] systemd[1]: Mounting Huge Pages File System...
    [ 2.573939] systemd[192]: Ex

Maybe you are looking for