[SOLVED] Boot message: [ SKIP ] Ordering cycle found, skipping Timers

During boot I get this message:
[ SKIP ] Ordering cycle found, skipping Timers
What does this mean and do I have to do something?
Last edited by Markus00000 (2014-06-09 10:30:12)

It seems to have to do with NFS entries in /etc/fstab and a bug in systemd as indicated in this Debian bug report
Now, excuse me while I go find some brain bleach.  That search result was buried in a bunch of hits on the human reproductive cycle and failures of birth control methods

Similar Messages

  • [Solved] Boot messages waiting 10 secodns for device...

    Hello.
    When i'm boot my arch i got message waiting 10 secdonds for device /dev/sda1 (arch partition).
    I have in mkinitcpio this modules:
    ahci ext4 scsi_mod sd_mod libata.
    That's all what can i do run arch wihout waiting 10 secodns?
    Last edited by SpeedVin (2009-06-26 13:56:57)

    paranoos wrote:
    after a little digging, i realized this is caused by mkinitcpio. it defaults to 10 seconds, but most drives don't need to wait at all. this delay is available for people booting off usb devices which take a few seconds to initialize. the default should be no waiting, with an option for those who need it (by setting the kernel rootdelay manually).
    afaict this is a bug, here is the fix
    edit /lib/initcpio/init; where it says
    # If rootdelay is empty or not a non-negative integer, set it to 10
    if [ -z "${rootdelay}" -o ! "${rootdelay}" -ge 0 ]; then
    export rootdelay=10
    fi
    change it to export rootdelay=0 -- this way, the default is not to wait
    also edit /lib/initcpio/init_functions; where it says
    if [ "$2" -gt 0 ]; then
    seconds="$2"
    change -gt 0 to -ge 0 -- this way, it will accept a setting of 0 and not ignore it.
    Great that's working thamk you

  • [SOLVED] boot failure: No inittab file found

    Hi,
    While trying to upgrade my system according to the recent /usr/bin intervention, I managed to get into an unbootable state:
    INIT: No inittab file found
    Enter runlevel:
    This is because, stupidly, I'd simply removed initscripts. (I thought I'd properly completed the systemd and all previous migrations, considering my system up to date, and figured initscripts was an obsolete remnant.)
    pacman -Qqo /bin /sbin /usr/sbin | pacman -Qm -
    returned
    grub 0.97-21
    grub 0.97-21
    consolekit 0.4.6-4
    initscripts 2012.10.1-1
    So I (again, stupidly) removed consolekit and initscripts and upgraded GRUB (by installing grub-bios and following the guide). I then proceeded to upgrade as described in the intervention notice.
    This, of course, resulted in the following error on rebooting:
    INIT: No inittab file found
    Enter runlevel:
    I've since spent hours trying to repair the system with a live system (booting arch off a thumb drive) and arch-chroot - but
    I don't know what I should install to make things work again
    I haven't managed to figure out how to install packages while offline (despite reading through the guide)
    Any assistance would be immensely appreciated!
    Last edited by FND (2013-06-09 17:23:15)

    Thanks for the quick response!
    Frankly, I'm not quite sure what to make of that link (thus revealing my general ignorance... ).
    Here's my /etc/boot/grub.cfg:
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    set default="0"
    if [ x"${feature_menuentry_id}" = xy ]; then
    menuentry_id_option="--id"
    else
    menuentry_id_option=""
    fi
    export menuentry_id_option
    if [ "${prev_saved_entry}" ]; then
    set saved_entry="${prev_saved_entry}"
    save_env saved_entry
    set prev_saved_entry=
    save_env prev_saved_entry
    set boot_once=true
    fi
    function savedefault {
    if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
    fi
    function load_video {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    fi
    if [ x$feature_default_font_path = xy ] ; then
    font=unicode
    else
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos5'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 ad4103fa-d940-47ca-8506-301d8071d467
    else
    search --no-floppy --fs-uuid --set=root ad4103fa-d940-47ca-8506-301d8071d467
    fi
    font="/usr/share/grub/unicode.pf2"
    fi
    if loadfont $font ; then
    set gfxmode=auto
    load_video
    insmod gfxterm
    set locale_dir=$prefix/locale
    set lang=en_US
    insmod gettext
    fi
    terminal_input console
    terminal_output gfxterm
    set timeout=5
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/10_linux ###
    menuentry 'Arch Linux, with Linux core repo kernel' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-true-ad4103fa-d940-47ca-8506-301d8071d467' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos5'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 ad4103fa-d940-47ca-8506-301d8071d467
    else
    search --no-floppy --fs-uuid --set=root ad4103fa-d940-47ca-8506-301d8071d467
    fi
    echo 'Loading Linux core repo kernel ...'
    linux /boot/vmlinuz-linux root=UUID=ad4103fa-d940-47ca-8506-301d8071d467 ro quiet
    echo 'Loading initial ramdisk ...'
    initrd /boot/initramfs-linux.img
    menuentry 'Arch Linux, with Linux core repo kernel (Fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-fallback-ad4103fa-d940-47ca-8506-301d8071d467' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos5'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 ad4103fa-d940-47ca-8506-301d8071d467
    else
    search --no-floppy --fs-uuid --set=root ad4103fa-d940-47ca-8506-301d8071d467
    fi
    echo 'Loading Linux core repo kernel ...'
    linux /boot/vmlinuz-linux root=UUID=ad4103fa-d940-47ca-8506-301d8071d467 ro quiet
    echo 'Loading initial ramdisk ...'
    initrd /boot/initramfs-linux-fallback.img
    ### END /etc/grub.d/10_linux ###
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    ### BEGIN /etc/grub.d/20_memtest86+ ###
    ### END /etc/grub.d/20_memtest86+ ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    ### END /etc/grub.d/40_custom ###
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f ${config_directory}/custom.cfg ]; then
    source ${config_directory}/custom.cfg
    elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
    source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###

  • Issues with passing boot messages to Plymouth - absolutely no results!

    Lately I've made it my little project to fancy up my box with a nice Plymouth boot screen with scrolling boot messages.  I've found the following two pages that give a guide to setting up such a Plymouth theme:
    Plymouth: Create your own splash screen with scrolling boot messages
    Plymouth pulsating crunchbang logo with boot messages and progress bar
    I quickly realized when I tried to make the system changes needed to send boot messages to Plymouth that my system doesn't have either  /usr/share/initramfs-tools/scripts/functions (which I believe is very outdated) or /lib/lsb/init-functions which is brought up in the #! forums.  I'm assuming that #! uses Linux Standard Base and Arch does not - so I went looking for the files I needed.
    The two most likely candidates to me seem to be /lib/initcpio/init_functions and /lib/initcpio/functions.  However, changing either one of these files to contain
    if [ -x /bin/plymouth ]; then
    /bin/plymouth update --status="$@"
    fi
    or its equivalent produces absolutely no results on reboot, even after running
    mkinitcpio -p linux
    Are these the correct files?  Or am I barking up the wrong tree?  I've already tested my Plymouth theme by running the Plymouth daemon and opening up a splash screen in X and using Plymouth's --update=<string> option, and everything works great.  I'm kind of at my wit's end, and would rather not have to install LSB to get this working.  Has anyone else been successful with this, or perhaps knows which direction to point me in?
    Thanks in advance for any advice!!

    Bump.
    ^  No, only joking! 
    I'm posting again to say that I have found /etc/rc.d/functions - and this seems to be the file I'm looking for.  Maybe someone could confirm that before I start mucking around with a file that looks a little to easy to mess up?  And maybe perhaps someone knows and easier way to edit this for sending messages to Plymouth other then putting something similar to
    if [ -x /bin/plymouth ]; then
    /bin/plymouth update --status="$@"
    fi
    into every function (such as status(), stat_fail(), stat_done(), etc.)  I see that /etc/rc.d/functions is called by /etc/rc.sysinit.  Could I possibly change rc.sysinit to be
    #!/bin/bash
    # /etc/rc.sysinit
    . /etc/rc.conf
    # Call functions for Plymouth
    . /etc/rc.d/plymouth_functions
    . /etc/rc.d/functions
    ## Truncated ##
    And then create a /etc/rc.d/plymouth_functions file very similar to /etc/rc.d/functions, except running "plymouth update --status=$@" instead of echo commands?  Then it would be a simple matter of using gEdit's Replace tool (i.e.  "status() ==> status() & plymouth_status()") to edit /etc/rc.sysinit.
    Any ideas on whether or not this would work?

  • Isdelete program not found - Skipping Autocheck

    Hi everyone,
    After rejuvenating my T61p (Vista Home Premium) this message pops-up during booting:
    "Isdelete program not found  -  skipping Autocheck"
    The message appears for a few seconds and then disappears. Booting continues and I do not notice any other symptom on my system.
    Has anyone experienced this same issue or knows what the message is all about?
    What program is that "Isdelete" and what are the consequences of this "skipping Autocheck" warning?
    How serious is this?
    Please help.
    Solved!
    Go to Solution.

    OK, if anyone ever encounters this issue, I found a solution here:
    http://forums.techguy.org/windows-vista-7/583755-s​olved-solved-lsdelete-program-not.html
    It "missing" file seems related somehow to Ad-Aware, which I un-installed recently. The first two letters of the program name (LS) seem to stand for "LavaSoft", which is the publisher of Ad-Aware.
    The above linked solution seems to have worked for several other people and it certainly worked for me too  --  I got rid of that infamous message... 

  • After installing SL: autochk program not found - skipping auto check

    My MacBook was setup to dual boot Leopard/Win XP via Boot Camp, but I just formatted the Leopard partition and installed Snow Leopard in its place, which boots wonderfully, but now when I boot Win XP I get this error: "autochk program not found - skipping auto check"
    Seconds later the machine automatically reboots.
    I booted off the Win XP disk and ran chkdsk /p in the Recovery Console, but the "autochk not found" message still kills the Win XP boot.
    Snow Leopard and Win XP are in different partitions on the same drive. I only formatted and reinstalled the Mac OS partition, I did not format or reinstall the Win XP partition.
    Help?

    I have the same problem. I had decided not to upgrade Parallels from version 3.0 since hardly (or almost never) use windows programs any more. I did want the option of using Boot Camp and Windows if ever needed though.
    I installed Snow Leopard knowing that Parallels would no longer work and later did an uninstall. When I tried a restart to open Windows from Boot Camp I got the "autochk not found" message.
    Searching around I discovered that Parallels changes the disk table so that the OS can only boot from within Parallels. The problem appears to be a way of changing the disk table back to a setting that will make it boot normally. There is a utility available for doing this on a windows PC, but I've found nothing for the Mac yet.
    Without doing a complete re-install of Windows OS, I'm stuck for another solution.
    In the end I may just have to erase the drive (the Windows partition) and be done with it for good. What upsets me is that Parallels should have created an uninstall utility that reverted the disk table back to normal boot settings.

  • Too many recipients found for message type ORDERS in the ALE model

    Hi all ,
    please help me to solve this issue .
    i done with ale settings .
    orders message type is used in 2 different model view for 2 different systems
    when i create po it is giving error in output  "Too many recipients found for message type ORDERS in the ALE model"
    how can i rectify this error.
    Thanks

    > orders message type is used in 2 different model view for 2 different systems
    do both of them carter diffrent needs or is it the same idoc which is being sent to diffrent systems?
    if yes, then use a single model view with noth receiver systems defined in it.
    if not, i would suggest, copying the standard idoc and create a zidoc and then use different ones for diffrent receivers....
    or u can use diff versions of the orders message type...
    say orders05 for one.... receiver and orders02 for another one....
    hope this helps!!
    Cheers!!
    Sidharth

  • How do i solve the following problem. By starting up the message appears: could not found CoreFoundation.dll. Windows error 7

    By starting up the following message appaers: could not found CoreFoundation.dll.
    Windows Error 7
    How can I solve this problem?

    With Windows Explorer, navigate to your C:\Program Files\Common Files\Apple\Apple Application Support folder.
    Copy the SQLite3.dll that you should find there, navigate to the nearby Mobile Device Support folder, and Paste it in there also.
    Restart the programme all should be well
    In case that your OS is (64 bit)
    1. Open windows explorer, go to location C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    2. Copy file "SQLite3.dll"
    3. Now paste it in the folder  C:\Program Files (x86)\Common Files\Apple\Mobile Device Support
    4. Restart the programme, it should not display that message, it should be clear.
    Good Luck

  • Job nfs-server.service/start deleted to break ordering cycle [SOLVED]

    I have the following entries in my journal:
    Found ordering cycle on rpc-statd-notify.service/start
    Found dependency on nfs-server.service/start
    Found dependency on rpc-gssd.service/start
    Found dependency on nfs-client.target/start
    Found dependency on rpc-statd-notify.service/start
    Breaking ordering cycle by deleting job nfs-server.service/start
    Job nfs-server.service/start deleted to break ordering cycle starting with rpc-statd-notify.service/start
    and nfs-server does not start. So it would seem that the nfs services are starting in the wrong order. Could some kind person explain why and tell me how to fix this?
    Apart from following the arch wiki for nfs I don't believe that I have changed anything.
    Thanks
    Andrew
    Last edited by fdservices (2014-08-11 07:14:05)

    Thanks for the quick reply.
    So I just need to install this new file:
    # /etc/systemd/system/nfs-client.target.d/DefaultDependenciesFalse.conf
    [Unit]
    DefaultDependencies=False
    Andrew

  • Cycling and Skipping Activation Problem?

    Dear Group,
    I've just recently purchased Logic Studio and have worked my way through Chapters 1 and 2 of the book, Exploring Logic Pro.   On page 27, it provides instructions for how to initiate and shorten or lengthen a cycle in an audio region and track.  It tells you do click in the gray cycle area (up where you can see the bar numbers) to activate the cycle.  It also tells you that that activates the cycle between the left and right indicators.  In the booklet, it's showing the playhead as being located a few notes before bar 2, and that the Left and Right indicators are at bar 1 and bar 4, respectively, and that the activated area should show solid green (in the upper bar area).  Here's what's happening:
    I dont' seem to be able to get the cycling command activated consistently.  Sometimes, the area I click in the upper part of the bar actually goes to a diagonal gray-green stripe, instead of solid green, and instead of activating a cycling command that I can determine by moving the L/R indicators, I've activated a "Skip" command, wherein the section I've highlighted gets skipped, instead of played repeatedly.  How sensitive is the area into which I'm clicking?  Why can't I get the "cycle" command when I want to, and how on earth am I getting a "Skip" command instead?  I understand that both are highly useful for recording and mixing, but they're pointless if I don't know how to get to activate consistently.
    Thank you in advance.
    Joyce

    Hi
    To enable Cycle (or Skip Cycle) you only need to click in the gray area at the top of the Bar Ruler. A Skip Cycle area is created when the Right and Left ends of the Cycle region (Locators) are reversed (ie the 'right' is moved before the 'left' or vice versa.
    At some point, you must have reversed them somehow. A Control Click (and Hold) on the Cycle (Skip Cycle) area will bring up a contextual menu where you can "Swap Left and Right Locators".
    CCT

  • [SOLVED] Stop first 20 boot messages clearing

    How to stop the first 20 or so, boot messages clearing? Petty sure this happened after a previous systemd update.
    I know about changing TTYVTDisallocate to no - https://wiki.archlinux.org/index.php/Sy … er_boot.3F - but this only keeps the remaining messages on screen.
    Last edited by Colanco (2013-08-12 07:58:49)

    Colanco wrote:Solved this on my particular setup by doing the following:
    Thanks for posting this - really appreciate it.
    1. Enabled 'early KMS start' by adding radeon to MODULES line in /etc/mkinitcpio.conf:
    https://wiki.archlinux.org/index.php/KM … _KMS_start
    This was needed to stop console is being reset by the graphics module in Late KMS Start (default) thus clearing boot messages before module was loaded.
    OK. So I guess early KMS is not my problem .
    2. Change TTYVTDisallocate to no in [email protected] to stop boot message clearing:
    https://wiki.archlinux.org/index.php/Di … t_Messages
    This does not seem like the right way to do this but I'm not entirely sure what is. I think that what is in that directory should be just a symlink.
    The recommended way to edit unit files is at https://wiki.archlinux.org/index.php/Sy … unit_files. However, I'm not clear quite how to apply that in this case. What I'm currently trying is
    $ cat /etc/systemd/system/[email protected]/TTYVTDisallocate-BLOCK.conf
    [Service]
    TTYVTDisallocate=no
    However this will affect all VTs generated from the template. Does anybody know if it is bad to have TTYVTDisallocate set to false for tty{2,3,...}?
    EDIT: Or are the other VTs generated from something else? It makes no sense to me they'd be generated from the template in /usr/lib/systemd/system since surely TTYVTDisallocate is inappropriate for the other ttys? Doesn't disallocating it make it unavailable for login etc.? Or have I misunderstood?
    3. Increased scrollback for console by adding fbcon=scrollback:300k to /boot/syslinux/syslinux.cfg.
    https://wiki.archlinux.org/index.php/Scrollback_buffer
    Did you also append xxxfb as the wiki says? If so, what did you use? I'm confused because it mentions the name of your video driver but I'm not sure what that is since this is not concerned with X.
    Last edited by cfr (2013-08-12 23:35:57)

  • [Solved] [Xorg+KMS+Intel] Can't see login console / boot messages!

    Hi,
    My problem is that using an Intel video card (with KMS) after latest Xorg 1.8 update, I can't see boot messagges and the login console anymore.
    I've just noticed that after last Xorg update I can't access anymore to runlevel 3 on boot.
    I've got an Intel video card so KMS is enabled by default (and mandatory).
    I always used SLiM as a display manager, configured through /etc/inittab to go to runlevel 5 on boot:
    # /etc/inittab
    # Runlevels:
    # 0 Halt
    # 1(S) Single-user
    # 2 Not used
    # 3 Multi-user
    # 4 Not used
    # 5 X11
    # 6 Reboot
    ## Only one of the following two lines can be uncommented!
    # Boot to console
    #id:3:initdefault:
    # Boot to X11
    id:5:initdefault:
    rc::sysinit:/etc/rc.sysinit
    rs:S1:wait:/etc/rc.single
    rm:2345:wait:/etc/rc.multi
    rh:06:wait:/etc/rc.shutdown
    su:S:wait:/sbin/sulogin -p
    # -8 options fixes umlauts problem on login
    c1:2345:respawn:/sbin/agetty -8 38400 tty1 linux
    c2:2345:respawn:/sbin/agetty -8 38400 tty2 linux
    c3:2345:respawn:/sbin/agetty -8 38400 tty3 linux
    c4:2345:respawn:/sbin/agetty -8 38400 tty4 linux
    c5:2345:respawn:/sbin/agetty -8 38400 tty5 linux
    c6:2345:respawn:/sbin/agetty -8 38400 tty6 linux
    # Hypervisor Virtual Console for Xen and KVM
    #h0:2345:respawn:/sbin/agetty -8 38400 hvc0 linux
    ca::ctrlaltdel:/sbin/shutdown -t3 -r now
    # Example lines for starting a login manager
    #x:5:respawn:/usr/bin/xdm -nodaemon
    #x:5:respawn:/usr/sbin/gdm -nodaemon
    #x:5:respawn:/usr/bin/kdm -nodaemon
    x:5:respawn:/usr/bin/slim >& /dev/null
    To enable runlevel 3 at boot,  I commented the id:5:initdefault: and the x:5:respawn:/usr/bin/slim >& /dev/null lines and uncommented id:3:initdefault:.
    Now, during boot, the last thing I see is Loading UDev modules..., then the screen becomes dark gray and I can't see any other boot messages (actually this appened also before, after xorg update).
    The problem is that before slim started but now I can't see any login console.
    I also figured out that typing my username, password and then startx, starts X normally, so the problem is just that I can't see the tty console anymore.
    Once I am in X I can switch to ttys normally.
    What can I do?
    I just wanted to get rid of slim and start X automatically after console login but I can't see the console login!
    I hope to have been clear enough, thanks for your help!
    Last edited by rent0n (2010-07-04 11:36:38)

    rent0n wrote:
    Well, it seems I spoke too early. It doesn't work as expected at every startup, sometimes I still have the black screen.
    Now I'm trying with:
    video=SVIDEO-1:d
    that seems to work, but I just tested it one time and I'm starting to think that screen blanking happens randomly...
    Any hint is more than welcomed.
    After a few reboots, I can confirm this workaround seems to work.
    This is weird indeed as I don't have any SVIDEO-1 interface listed by xrandr -q, but still.
    Screen 0: minimum 320 x 200, current 1280 x 800, maximum 8192 x 8192
    VGA1 disconnected (normal left inverted right x axis y axis)
    LVDS1 connected 1280x800+0+0 (normal left inverted right x axis y axis) 331mm x 207mm
    1280x800 60.0*+
    1024x768 60.0
    800x600 60.3 56.2
    640x480 59.9
    TV1 disconnected (normal left inverted right x axis y axis)
    The only problem is that now boot lasts a lot of time  and, between UDev modules loading and disks checking, I have to wait for at least 30 seconds with a black screen and a central white dash flashing.
    Anyone experiencing the same thing?

  • [SOLVED] how to prevent Xorg from clearing boot messages in scrollback

    I have an updated Arch install with MATE and LightDM. LightDM autologin is enabled, so I normally boot directly to my desktop. I like seeing the messages that flash by during boot, so I deleted the word "quiet" from the linux line in my grub.cfg. Because I want all the messages to still be there after flashing by (in case I want to scroll through them later), I followed the advice here https://wiki.archlinux.org/index.php/Di … t_messages and I also increased the scrollback buffer and enabled early KMS start.
    Despite all the above, I can only scroll back to the beginning of the boot messages if I boot into non-graphical mode (e.g., by adding "systemd.unit=multi-user.target" to GRUB command line). If I allow a normal boot to my destkop and THEN go to non-graphical mode with "sudo systemctl isolate multi-user.target" to look at the boot messages, I notice that I cannot scroll back very far at all--most of the messages that flashed by during boot are gone. Therefore, it seems to me that either lightDM or Xorg is resetting the scrollback buffer and erasing all but the last few boot messages.
    So, how do I tell LightDM or Xorg (whichever one is the culprit) *not* to clear the scrollback buffer, so that when I get out of graphical mode and into non-graphical mode the boot messages are all still there?
    Last edited by bdantas (2014-08-01 14:19:06)

    Since the answer to my original question seems to be "it is not possible," I will make this my last post to prevent the thread from going off-topic.
    I came up with a simple workaround that (almost) recreates the old /var/boot/log:
    1) put "quiet" on grub2's kernel command line so that only* [FAIL] messages show up, so that I don't have to deal with the scrollback buffer
    2) create a startup script with the following contents (script or at least the setterm command must run as root because the setterm command needs to be able to read from /dev/vcs1):
    #!/bin/bash
    # this script will dump the text of tty1 to /var/log/boot, with same formatting as on the screen
    export TERM=xterm
    setterm -dump 1 -file /var/log/boot
    exit 0
    * Unfortunately, even in quiet mode grub2 starts printing all the boot status messages to screen once it encounters a [FAIL]. Therefore, if the [FAIL] occurs early enough in the boot process, the beginning of the messages will scroll off the screen and the workaround won't work. I spun off my two questions related to this nuisance into their own threads:
    a) How to make grub2 actually only print [FAIL] messages during boot? https://bbs.archlinux.org/viewtopic.php?id=184702
    b) How to print the contents of console's scrollback buffer to a file? https://bbs.archlinux.org/viewtopic.php … 9#p1439359
    I hope I can figure out how to do one of the above, because then the workaround would be perfect.
    Thanks for the help, guys!
    Last edited by bdantas (2014-08-15 02:16:38)

  • [Solved] Booting takes longer than usual

    Hi guys,
    ran into a little problem here.
    Hardware: Macbook 5,5 Arch on sdb which is a SDD, data stored on an HDD.
    So since yesterday, the booting process takes very long for a SSD system. I don't really get any messages while booting, so i'm a little bit confused.
    No USB devices connected, wired internet connection.
    Here is the output from dmesg:
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.8.6-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.0 (GCC) ) #1 SMP PREEMPT Sat Apr 6 07:27:01 CEST 2013
    [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=95744744-5122-437b-82a7-6eb85b3a6448 ro quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000008efff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000008f000-0x000000000008ffff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x0000000000090000-0x000000000009ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000acfecfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000acfed000-0x00000000acfedfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000acfee000-0x00000000ae700fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ae701000-0x00000000ae705fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ae706000-0x00000000ae710fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ae711000-0x00000000ae711fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ae712000-0x00000000ae720fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ae721000-0x00000000ae721fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ae722000-0x00000000ae72afff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ae72b000-0x00000000ae92bfff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000ae92c000-0x00000000aefbbfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000aefbc000-0x00000000aefbcfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000aefbd000-0x00000000aeffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000af000000-0x00000000beffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf000000-0x00000000bf015fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf016000-0x00000000bf016fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf017000-0x00000000bf0a9fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf0aa000-0x00000000bf0acfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf0ad000-0x00000000bf0aefff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf0af000-0x00000000bf0b0fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf0b1000-0x00000000bf0b2fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf0b3000-0x00000000bf0b7fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf0b8000-0x00000000bf0b9fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf0ba000-0x00000000bf0bafff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf0bb000-0x00000000bf0c2fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf0c3000-0x00000000bf0c4fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bf0c5000-0x00000000bf0c6fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf0c7000-0x00000000bf0c8fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bf0c9000-0x00000000bf10dfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf10e000-0x00000000bf111fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf112000-0x00000000bf119fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf11a000-0x00000000bf11cfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf11d000-0x00000000bf11efff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf11f000-0x00000000bf11ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf120000-0x00000000bf224fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf225000-0x00000000bf225fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf226000-0x00000000bf226fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf227000-0x00000000bf23cfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf23d000-0x00000000bf241fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf242000-0x00000000bf242fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf243000-0x00000000bf264fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf265000-0x00000000bf267fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf268000-0x00000000bf26ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf270000-0x00000000bf274fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf275000-0x00000000bf276fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf277000-0x00000000bf277fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf278000-0x00000000bf278fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf279000-0x00000000bf27bfff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf27c000-0x00000000bf27ffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf280000-0x00000000bf280fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf281000-0x00000000bf709fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf70a000-0x00000000bf70afff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf70b000-0x00000000bf714fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf715000-0x00000000bf716fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf717000-0x00000000bf718fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bf719000-0x00000000bf719fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bf71a000-0x00000000bfe92fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bfe93000-0x00000000bfe93fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bfe94000-0x00000000bfe9dfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bfe9e000-0x00000000bfe9efff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000bfe9f000-0x00000000bfec4fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bfec5000-0x00000000bfec6fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bfec7000-0x00000000bfec7fff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bfec8000-0x00000000bfec9fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bfeca000-0x00000000bfeccfff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bfecd000-0x00000000bfedefff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bfedf000-0x00000000bfeeefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bfeef000-0x00000000bfef8fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bfef9000-0x00000000bfefffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000d3400000-0x00000000d3400fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] efi: EFI v1.10 by Apple
    [ 0.000000] efi: ACPI=0xbfeee000 ACPI 2.0=0xbfeee014 SMBIOS=0xbfec6000
    [ 0.000000] efi: mem00: type=7, attr=0xf, range=[0x0000000000000000-0x000000000008f000) (0MB)
    [ 0.000000] efi: mem01: type=10, attr=0xf, range=[0x000000000008f000-0x0000000000090000) (0MB)
    [ 0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000090000-0x00000000000a0000) (0MB)
    [ 0.000000] efi: mem03: type=2, attr=0xf, range=[0x0000000000100000-0x0000000001001000) (15MB)
    [ 0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000001001000-0x0000000002000000) (15MB)
    [ 0.000000] efi: mem05: type=2, attr=0xf, range=[0x0000000002000000-0x0000000002f01000) (15MB)
    [ 0.000000] efi: mem06: type=7, attr=0xf, range=[0x0000000002f01000-0x0000000037a3a000) (843MB)
    [ 0.000000] efi: mem07: type=2, attr=0xf, range=[0x0000000037a3a000-0x0000000037d15000) (2MB)
    [ 0.000000] efi: mem08: type=7, attr=0xf, range=[0x0000000037d15000-0x0000000081bf3000) (1182MB)
    [ 0.000000] efi: mem09: type=2, attr=0xf, range=[0x0000000081bf3000-0x00000000acfb1000) (691MB)
    [ 0.000000] efi: mem10: type=1, attr=0xf, range=[0x00000000acfb1000-0x00000000acfcf000) (0MB)
    [ 0.000000] efi: mem11: type=4, attr=0xf, range=[0x00000000acfcf000-0x00000000acfd0000) (0MB)
    [ 0.000000] efi: mem12: type=7, attr=0xf, range=[0x00000000acfd0000-0x00000000acfed000) (0MB)
    [ 0.000000] efi: mem13: type=6, attr=0x800000000000000f, range=[0x00000000acfed000-0x00000000acfee000) (0MB)
    [ 0.000000] efi: mem14: type=4, attr=0xf, range=[0x00000000acfee000-0x00000000ae6c7000) (22MB)
    [ 0.000000] efi: mem15: type=3, attr=0xf, range=[0x00000000ae6c7000-0x00000000ae6f0000) (0MB)
    [ 0.000000] efi: mem16: type=4, attr=0xf, range=[0x00000000ae6f0000-0x00000000ae6f6000) (0MB)
    [ 0.000000] efi: mem17: type=3, attr=0xf, range=[0x00000000ae6f6000-0x00000000ae6f7000) (0MB)
    [ 0.000000] efi: mem18: type=4, attr=0xf, range=[0x00000000ae6f7000-0x00000000ae6f9000) (0MB)
    [ 0.000000] efi: mem19: type=3, attr=0xf, range=[0x00000000ae6f9000-0x00000000ae700000) (0MB)
    [ 0.000000] efi: mem20: type=4, attr=0xf, range=[0x00000000ae700000-0x00000000ae701000) (0MB)
    [ 0.000000] efi: mem21: type=5, attr=0x800000000000000f, range=[0x00000000ae701000-0x00000000ae706000) (0MB)
    [ 0.000000] efi: mem22: type=3, attr=0xf, range=[0x00000000ae706000-0x00000000ae709000) (0MB)
    [ 0.000000] efi: mem23: type=4, attr=0xf, range=[0x00000000ae709000-0x00000000ae711000) (0MB)
    [ 0.000000] efi: mem24: type=6, attr=0x800000000000000f, range=[0x00000000ae711000-0x00000000ae712000) (0MB)
    [ 0.000000] efi: mem25: type=4, attr=0xf, range=[0x00000000ae712000-0x00000000ae71b000) (0MB)
    [ 0.000000] efi: mem26: type=3, attr=0xf, range=[0x00000000ae71b000-0x00000000ae721000) (0MB)
    [ 0.000000] efi: mem27: type=5, attr=0x800000000000000f, range=[0x00000000ae721000-0x00000000ae722000) (0MB)
    [ 0.000000] efi: mem28: type=4, attr=0xf, range=[0x00000000ae722000-0x00000000ae729000) (0MB)
    [ 0.000000] efi: mem29: type=3, attr=0xf, range=[0x00000000ae729000-0x00000000ae72a000) (0MB)
    [ 0.000000] efi: mem30: type=4, attr=0xf, range=[0x00000000ae72a000-0x00000000ae72b000) (0MB)
    [ 0.000000] efi: mem31: type=10, attr=0xf, range=[0x00000000ae72b000-0x00000000ae92c000) (2MB)
    [ 0.000000] efi: mem32: type=4, attr=0xf, range=[0x00000000ae92c000-0x00000000aef9d000) (6MB)
    [ 0.000000] efi: mem33: type=3, attr=0xf, range=[0x00000000aef9d000-0x00000000aefad000) (0MB)
    [ 0.000000] efi: mem34: type=4, attr=0xf, range=[0x00000000aefad000-0x00000000aefb4000) (0MB)
    [ 0.000000] efi: mem35: type=3, attr=0xf, range=[0x00000000aefb4000-0x00000000aefb6000) (0MB)
    [ 0.000000] efi: mem36: type=4, attr=0xf, range=[0x00000000aefb6000-0x00000000aefb8000) (0MB)
    [ 0.000000] efi: mem37: type=3, attr=0xf, range=[0x00000000aefb8000-0x00000000aefba000) (0MB)
    [ 0.000000] efi: mem38: type=4, attr=0xf, range=[0x00000000aefba000-0x00000000aefbc000) (0MB)
    [ 0.000000] efi: mem39: type=6, attr=0x800000000000000f, range=[0x00000000aefbc000-0x00000000aefbd000) (0MB)
    [ 0.000000] efi: mem40: type=3, attr=0xf, range=[0x00000000aefbd000-0x00000000aefbe000) (0MB)
    [ 0.000000] efi: mem41: type=4, attr=0xf, range=[0x00000000aefbe000-0x00000000aefc0000) (0MB)
    [ 0.000000] efi: mem42: type=3, attr=0xf, range=[0x00000000aefc0000-0x00000000aefcb000) (0MB)
    [ 0.000000] efi: mem43: type=4, attr=0xf, range=[0x00000000aefcb000-0x00000000aefcc000) (0MB)
    [ 0.000000] efi: mem44: type=3, attr=0xf, range=[0x00000000aefcc000-0x00000000aefd1000) (0MB)
    [ 0.000000] efi: mem45: type=4, attr=0xf, range=[0x00000000aefd1000-0x00000000aefd3000) (0MB)
    [ 0.000000] efi: mem46: type=3, attr=0xf, range=[0x00000000aefd3000-0x00000000aefd4000) (0MB)
    [ 0.000000] efi: mem47: type=4, attr=0xf, range=[0x00000000aefd4000-0x00000000aefd6000) (0MB)
    [ 0.000000] efi: mem48: type=3, attr=0xf, range=[0x00000000aefd6000-0x00000000aefd8000) (0MB)
    [ 0.000000] efi: mem49: type=4, attr=0xf, range=[0x00000000aefd8000-0x00000000aefd9000) (0MB)
    [ 0.000000] efi: mem50: type=3, attr=0xf, range=[0x00000000aefd9000-0x00000000aefda000) (0MB)
    [ 0.000000] efi: mem51: type=4, attr=0xf, range=[0x00000000aefda000-0x00000000aefdd000) (0MB)
    [ 0.000000] efi: mem52: type=3, attr=0xf, range=[0x00000000aefdd000-0x00000000aefdf000) (0MB)
    [ 0.000000] efi: mem53: type=4, attr=0xf, range=[0x00000000aefdf000-0x00000000aefe1000) (0MB)
    [ 0.000000] efi: mem54: type=3, attr=0xf, range=[0x00000000aefe1000-0x00000000aefea000) (0MB)
    [ 0.000000] efi: mem55: type=4, attr=0xf, range=[0x00000000aefea000-0x00000000aefec000) (0MB)
    [ 0.000000] efi: mem56: type=3, attr=0xf, range=[0x00000000aefec000-0x00000000aefed000) (0MB)
    [ 0.000000] efi: mem57: type=4, attr=0xf, range=[0x00000000aefed000-0x00000000aefee000) (0MB)
    [ 0.000000] efi: mem58: type=3, attr=0xf, range=[0x00000000aefee000-0x00000000aeff1000) (0MB)
    [ 0.000000] efi: mem59: type=4, attr=0xf, range=[0x00000000aeff1000-0x00000000aeff3000) (0MB)
    [ 0.000000] efi: mem60: type=3, attr=0xf, range=[0x00000000aeff3000-0x00000000aeff7000) (0MB)
    [ 0.000000] efi: mem61: type=4, attr=0xf, range=[0x00000000aeff7000-0x00000000aeffb000) (0MB)
    [ 0.000000] efi: mem62: type=3, attr=0xf, range=[0x00000000aeffb000-0x00000000aeffc000) (0MB)
    [ 0.000000] efi: mem63: type=4, attr=0xf, range=[0x00000000aeffc000-0x00000000aeffd000) (0MB)
    [ 0.000000] efi: mem64: type=3, attr=0xf, range=[0x00000000aeffd000-0x00000000af000000) (0MB)
    [ 0.000000] efi: mem65: type=3, attr=0xf, range=[0x00000000bf000000-0x00000000bf004000) (0MB)
    [ 0.000000] efi: mem66: type=4, attr=0xf, range=[0x00000000bf004000-0x00000000bf006000) (0MB)
    [ 0.000000] efi: mem67: type=3, attr=0xf, range=[0x00000000bf006000-0x00000000bf00b000) (0MB)
    [ 0.000000] efi: mem68: type=4, attr=0xf, range=[0x00000000bf00b000-0x00000000bf013000) (0MB)
    [ 0.000000] efi: mem69: type=3, attr=0xf, range=[0x00000000bf013000-0x00000000bf015000) (0MB)
    [ 0.000000] efi: mem70: type=4, attr=0xf, range=[0x00000000bf015000-0x00000000bf016000) (0MB)
    [ 0.000000] efi: mem71: type=6, attr=0x800000000000000f, range=[0x00000000bf016000-0x00000000bf017000) (0MB)
    [ 0.000000] efi: mem72: type=3, attr=0xf, range=[0x00000000bf017000-0x00000000bf026000) (0MB)
    [ 0.000000] efi: mem73: type=4, attr=0xf, range=[0x00000000bf026000-0x00000000bf027000) (0MB)
    [ 0.000000] efi: mem74: type=3, attr=0xf, range=[0x00000000bf027000-0x00000000bf029000) (0MB)
    [ 0.000000] efi: mem75: type=4, attr=0xf, range=[0x00000000bf029000-0x00000000bf02b000) (0MB)
    [ 0.000000] efi: mem76: type=3, attr=0xf, range=[0x00000000bf02b000-0x00000000bf030000) (0MB)
    [ 0.000000] efi: mem77: type=4, attr=0xf, range=[0x00000000bf030000-0x00000000bf031000) (0MB)
    [ 0.000000] efi: mem78: type=3, attr=0xf, range=[0x00000000bf031000-0x00000000bf037000) (0MB)
    [ 0.000000] efi: mem79: type=4, attr=0xf, range=[0x00000000bf037000-0x00000000bf03a000) (0MB)
    [ 0.000000] efi: mem80: type=3, attr=0xf, range=[0x00000000bf03a000-0x00000000bf03e000) (0MB)
    [ 0.000000] efi: mem81: type=4, attr=0xf, range=[0x00000000bf03e000-0x00000000bf03f000) (0MB)
    [ 0.000000] efi: mem82: type=3, attr=0xf, range=[0x00000000bf03f000-0x00000000bf044000) (0MB)
    [ 0.000000] efi: mem83: type=4, attr=0xf, range=[0x00000000bf044000-0x00000000bf046000) (0MB)
    [ 0.000000] efi: mem84: type=3, attr=0xf, range=[0x00000000bf046000-0x00000000bf048000) (0MB)
    [ 0.000000] efi: mem85: type=4, attr=0xf, range=[0x00000000bf048000-0x00000000bf04a000) (0MB)
    [ 0.000000] efi: mem86: type=3, attr=0xf, range=[0x00000000bf04a000-0x00000000bf04b000) (0MB)
    [ 0.000000] efi: mem87: type=4, attr=0xf, range=[0x00000000bf04b000-0x00000000bf04c000) (0MB)
    [ 0.000000] efi: mem88: type=3, attr=0xf, range=[0x00000000bf04c000-0x00000000bf06b000) (0MB)
    [ 0.000000] efi: mem89: type=4, attr=0xf, range=[0x00000000bf06b000-0x00000000bf06d000) (0MB)
    [ 0.000000] efi: mem90: type=3, attr=0xf, range=[0x00000000bf06d000-0x00000000bf073000) (0MB)
    [ 0.000000] efi: mem91: type=4, attr=0xf, range=[0x00000000bf073000-0x00000000bf074000) (0MB)
    [ 0.000000] efi: mem92: type=3, attr=0xf, range=[0x00000000bf074000-0x00000000bf078000) (0MB)
    [ 0.000000] efi: mem93: type=4, attr=0xf, range=[0x00000000bf078000-0x00000000bf07a000) (0MB)
    [ 0.000000] efi: mem94: type=3, attr=0xf, range=[0x00000000bf07a000-0x00000000bf081000) (0MB)
    [ 0.000000] efi: mem95: type=4, attr=0xf, range=[0x00000000bf081000-0x00000000bf083000) (0MB)
    [ 0.000000] efi: mem96: type=3, attr=0xf, range=[0x00000000bf083000-0x00000000bf084000) (0MB)
    [ 0.000000] efi: mem97: type=4, attr=0xf, range=[0x00000000bf084000-0x00000000bf086000) (0MB)
    [ 0.000000] efi: mem98: type=3, attr=0xf, range=[0x00000000bf086000-0x00000000bf089000) (0MB)
    [ 0.000000] efi: mem99: type=4, attr=0xf, range=[0x00000000bf089000-0x00000000bf08a000) (0MB)
    [ 0.000000] efi: mem100: type=3, attr=0xf, range=[0x00000000bf08a000-0x00000000bf0a5000) (0MB)
    [ 0.000000] efi: mem101: type=4, attr=0xf, range=[0x00000000bf0a5000-0x00000000bf0a8000) (0MB)
    [ 0.000000] efi: mem102: type=3, attr=0xf, range=[0x00000000bf0a8000-0x00000000bf0a9000) (0MB)
    [ 0.000000] efi: mem103: type=4, attr=0xf, range=[0x00000000bf0a9000-0x00000000bf0aa000) (0MB)
    [ 0.000000] efi: mem104: type=6, attr=0x800000000000000f, range=[0x00000000bf0aa000-0x00000000bf0ab000) (0MB)
    [ 0.000000] efi: mem105: type=5, attr=0x800000000000000f, range=[0x00000000bf0ab000-0x00000000bf0ad000) (0MB)
    [ 0.000000] efi: mem106: type=4, attr=0xf, range=[0x00000000bf0ad000-0x00000000bf0af000) (0MB)
    [ 0.000000] efi: mem107: type=5, attr=0x800000000000000f, range=[0x00000000bf0af000-0x00000000bf0b1000) (0MB)
    [ 0.000000] efi: mem108: type=4, attr=0xf, range=[0x00000000bf0b1000-0x00000000bf0b3000) (0MB)
    [ 0.000000] efi: mem109: type=5, attr=0x800000000000000f, range=[0x00000000bf0b3000-0x00000000bf0b8000) (0MB)
    [ 0.000000] efi: mem110: type=3, attr=0xf, range=[0x00000000bf0b8000-0x00000000bf0b9000) (0MB)
    [ 0.000000] efi: mem111: type=4, attr=0xf, range=[0x00000000bf0b9000-0x00000000bf0ba000) (0MB)
    [ 0.000000] efi: mem112: type=5, attr=0x800000000000000f, range=[0x00000000bf0ba000-0x00000000bf0bb000) (0MB)
    [ 0.000000] efi: mem113: type=4, attr=0xf, range=[0x00000000bf0bb000-0x00000000bf0c0000) (0MB)
    [ 0.000000] efi: mem114: type=3, attr=0xf, range=[0x00000000bf0c0000-0x00000000bf0c2000) (0MB)
    [ 0.000000] efi: mem115: type=4, attr=0xf, range=[0x00000000bf0c2000-0x00000000bf0c3000) (0MB)
    [ 0.000000] efi: mem116: type=10, attr=0xf, range=[0x00000000bf0c3000-0x00000000bf0c5000) (0MB)
    [ 0.000000] efi: mem117: type=4, attr=0xf, range=[0x00000000bf0c5000-0x00000000bf0c7000) (0MB)
    [ 0.000000] efi: mem118: type=10, attr=0xf, range=[0x00000000bf0c7000-0x00000000bf0c9000) (0MB)
    [ 0.000000] efi: mem119: type=4, attr=0xf, range=[0x00000000bf0c9000-0x00000000bf10e000) (0MB)
    [ 0.000000] efi: mem120: type=5, attr=0x800000000000000f, range=[0x00000000bf10e000-0x00000000bf112000) (0MB)
    [ 0.000000] efi: mem121: type=4, attr=0xf, range=[0x00000000bf112000-0x00000000bf118000) (0MB)
    [ 0.000000] efi: mem122: type=3, attr=0xf, range=[0x00000000bf118000-0x00000000bf11a000) (0MB)
    [ 0.000000] efi: mem123: type=5, attr=0x800000000000000f, range=[0x00000000bf11a000-0x00000000bf11d000) (0MB)
    [ 0.000000] efi: mem124: type=4, attr=0xf, range=[0x00000000bf11d000-0x00000000bf11f000) (0MB)
    [ 0.000000] efi: mem125: type=6, attr=0x800000000000000f, range=[0x00000000bf11f000-0x00000000bf120000) (0MB)
    [ 0.000000] efi: mem126: type=4, attr=0xf, range=[0x00000000bf120000-0x00000000bf122000) (0MB)
    [ 0.000000] efi: mem127: type=3, attr=0xf, range=[0x00000000bf122000-0x00000000bf125000) (0MB)
    [ 0.000000] efi: mem128: type=4, attr=0xf, range=[0x00000000bf125000-0x00000000bf137000) (0MB)
    [ 0.000000] efi: mem129: type=3, attr=0xf, range=[0x00000000bf137000-0x00000000bf140000) (0MB)
    [ 0.000000] efi: mem130: type=4, attr=0xf, range=[0x00000000bf140000-0x00000000bf201000) (0MB)
    [ 0.000000] efi: mem131: type=3, attr=0xf, range=[0x00000000bf201000-0x00000000bf20e000) (0MB)
    [ 0.000000] efi: mem132: type=4, attr=0xf, range=[0x00000000bf20e000-0x00000000bf20f000) (0MB)
    [ 0.000000] efi: mem133: type=3, attr=0xf, range=[0x00000000bf20f000-0x00000000bf213000) (0MB)
    [ 0.000000] efi: mem134: type=4, attr=0xf, range=[0x00000000bf213000-0x00000000bf221000) (0MB)
    [ 0.000000] efi: mem135: type=3, attr=0xf, range=[0x00000000bf221000-0x00000000bf223000) (0MB)
    [ 0.000000] efi: mem136: type=4, attr=0xf, range=[0x00000000bf223000-0x00000000bf224000) (0MB)
    [ 0.000000] efi: mem137: type=3, attr=0xf, range=[0x00000000bf224000-0x00000000bf225000) (0MB)
    [ 0.000000] efi: mem138: type=5, attr=0x800000000000000f, range=[0x00000000bf225000-0x00000000bf226000) (0MB)
    [ 0.000000] efi: mem139: type=3, attr=0xf, range=[0x00000000bf226000-0x00000000bf227000) (0MB)
    [ 0.000000] efi: mem140: type=6, attr=0x800000000000000f, range=[0x00000000bf227000-0x00000000bf239000) (0MB)
    [ 0.000000] efi: mem141: type=5, attr=0x800000000000000f, range=[0x00000000bf239000-0x00000000bf23d000) (0MB)
    [ 0.000000] efi: mem142: type=4, attr=0xf, range=[0x00000000bf23d000-0x00000000bf23e000) (0MB)
    [ 0.000000] efi: mem143: type=3, attr=0xf, range=[0x00000000bf23e000-0x00000000bf23f000) (0MB)
    [ 0.000000] efi: mem144: type=4, attr=0xf, range=[0x00000000bf23f000-0x00000000bf242000) (0MB)
    [ 0.000000] efi: mem145: type=6, attr=0x800000000000000f, range=[0x00000000bf242000-0x00000000bf243000) (0MB)
    [ 0.000000] efi: mem146: type=4, attr=0xf, range=[0x00000000bf243000-0x00000000bf244000) (0MB)
    [ 0.000000] efi: mem147: type=3, attr=0xf, range=[0x00000000bf244000-0x00000000bf247000) (0MB)
    [ 0.000000] efi: mem148: type=4, attr=0xf, range=[0x00000000bf247000-0x00000000bf24d000) (0MB)
    [ 0.000000] efi: mem149: type=3, attr=0xf, range=[0x00000000bf24d000-0x00000000bf250000) (0MB)
    [ 0.000000] efi: mem150: type=4, attr=0xf, range=[0x00000000bf250000-0x00000000bf253000) (0MB)
    [ 0.000000] efi: mem151: type=3, attr=0xf, range=[0x00000000bf253000-0x00000000bf265000) (0MB)
    [ 0.000000] efi: mem152: type=5, attr=0x800000000000000f, range=[0x00000000bf265000-0x00000000bf268000) (0MB)
    [ 0.000000] efi: mem153: type=3, attr=0xf, range=[0x00000000bf268000-0x00000000bf26c000) (0MB)
    [ 0.000000] efi: mem154: type=4, attr=0xf, range=[0x00000000bf26c000-0x00000000bf26d000) (0MB)
    [ 0.000000] efi: mem155: type=3, attr=0xf, range=[0x00000000bf26d000-0x00000000bf26e000) (0MB)
    [ 0.000000] efi: mem156: type=4, attr=0xf, range=[0x00000000bf26e000-0x00000000bf270000) (0MB)
    [ 0.000000] efi: mem157: type=6, attr=0x800000000000000f, range=[0x00000000bf270000-0x00000000bf272000) (0MB)
    [ 0.000000] efi: mem158: type=5, attr=0x800000000000000f, range=[0x00000000bf272000-0x00000000bf274000) (0MB)
    [ 0.000000] efi: mem159: type=6, attr=0x800000000000000f, range=[0x00000000bf274000-0x00000000bf275000) (0MB)
    [ 0.000000] efi: mem160: type=4, attr=0xf, range=[0x00000000bf275000-0x00000000bf276000) (0MB)
    [ 0.000000] efi: mem161: type=3, attr=0xf, range=[0x00000000bf276000-0x00000000bf277000) (0MB)
    [ 0.000000] efi: mem162: type=5, attr=0x800000000000000f, range=[0x00000000bf277000-0x00000000bf278000) (0MB)
    [ 0.000000] efi: mem163: type=4, attr=0xf, range=[0x00000000bf278000-0x00000000bf279000) (0MB)
    [ 0.000000] efi: mem164: type=5, attr=0x800000000000000f, range=[0x00000000bf279000-0x00000000bf27c000) (0MB)
    [ 0.000000] efi: mem165: type=4, attr=0xf, range=[0x00000000bf27c000-0x00000000bf27d000) (0MB)
    [ 0.000000] efi: mem166: type=3, attr=0xf, range=[0x00000000bf27d000-0x00000000bf27e000) (0MB)
    [ 0.000000] efi: mem167: type=4, attr=0xf, range=[0x00000000bf27e000-0x00000000bf280000) (0MB)
    [ 0.000000] efi: mem168: type=6, attr=0x800000000000000f, range=[0x00000000bf280000-0x00000000bf281000) (0MB)
    [ 0.000000] efi: mem169: type=3, attr=0xf, range=[0x00000000bf281000-0x00000000bf282000) (0MB)
    [ 0.000000] efi: mem170: type=4, attr=0xf, range=[0x00000000bf282000-0x00000000bf6a4000) (4MB)
    [ 0.000000] efi: mem171: type=3, attr=0xf, range=[0x00000000bf6a4000-0x00000000bf6a8000) (0MB)
    [ 0.000000] efi: mem172: type=4, attr=0xf, range=[0x00000000bf6a8000-0x00000000bf70a000) (0MB)
    [ 0.000000] efi: mem173: type=6, attr=0x800000000000000f, range=[0x00000000bf70a000-0x00000000bf70b000) (0MB)
    [ 0.000000] efi: mem174: type=4, attr=0xf, range=[0x00000000bf70b000-0x00000000bf70c000) (0MB)
    [ 0.000000] efi: mem175: type=3, attr=0xf, range=[0x00000000bf70c000-0x00000000bf712000) (0MB)
    [ 0.000000] efi: mem176: type=4, attr=0xf, range=[0x00000000bf712000-0x00000000bf713000) (0MB)
    [ 0.000000] efi: mem177: type=3, attr=0xf, range=[0x00000000bf713000-0x00000000bf715000) (0MB)
    [ 0.000000] efi: mem178: type=5, attr=0x800000000000000f, range=[0x00000000bf715000-0x00000000bf717000) (0MB)
    [ 0.000000] efi: mem179: type=3, attr=0xf, range=[0x00000000bf717000-0x00000000bf718000) (0MB)
    [ 0.000000] efi: mem180: type=4, attr=0xf, range=[0x00000000bf718000-0x00000000bf719000) (0MB)
    [ 0.000000] efi: mem181: type=5, attr=0x800000000000000f, range=[0x00000000bf719000-0x00000000bf71a000) (0MB)
    [ 0.000000] efi: mem182: type=3, attr=0xf, range=[0x00000000bf71a000-0x00000000bf71b000) (0MB)
    [ 0.000000] efi: mem183: type=4, attr=0xf, range=[0x00000000bf71b000-0x00000000bfe93000) (7MB)
    [ 0.000000] efi: mem184: type=6, attr=0x800000000000000f, range=[0x00000000bfe93000-0x00000000bfe94000) (0MB)
    [ 0.000000] efi: mem185: type=4, attr=0xf, range=[0x00000000bfe94000-0x00000000bfe9e000) (0MB)
    [ 0.000000] efi: mem186: type=6, attr=0x800000000000000f, range=[0x00000000bfe9e000-0x00000000bfe9f000) (0MB)
    [ 0.000000] efi: mem187: type=7, attr=0xf, range=[0x00000000bfe9f000-0x00000000bfeba000) (0MB)
    [ 0.000000] efi: mem188: type=2, attr=0xf, range=[0x00000000bfeba000-0x00000000bfec5000) (0MB)
    [ 0.000000] efi: mem189: type=10, attr=0xf, range=[0x00000000bfec5000-0x00000000bfec7000) (0MB)
    [ 0.000000] efi: mem190: type=9, attr=0xf, range=[0x00000000bfec7000-0x00000000bfec8000) (0MB)
    [ 0.000000] efi: mem191: type=10, attr=0xf, range=[0x00000000bfec8000-0x00000000bfeca000) (0MB)
    [ 0.000000] efi: mem192: type=9, attr=0xf, range=[0x00000000bfeca000-0x00000000bfecd000) (0MB)
    [ 0.000000] efi: mem193: type=10, attr=0xf, range=[0x00000000bfecd000-0x00000000bfedf000) (0MB)
    [ 0.000000] efi: mem194: type=9, attr=0xf, range=[0x00000000bfedf000-0x00000000bfeef000) (0MB)
    [ 0.000000] efi: mem195: type=7, attr=0xf, range=[0x00000000bfeef000-0x00000000bfef9000) (0MB)
    [ 0.000000] efi: mem196: type=0, attr=0xf, range=[0x00000000bfef9000-0x00000000bfeff000) (0MB)
    [ 0.000000] efi: mem197: type=6, attr=0x800000000000000f, range=[0x00000000bfeff000-0x00000000bff00000) (0MB)
    [ 0.000000] efi: mem198: type=7, attr=0xf, range=[0x0000000100000000-0x0000000240000000) (5120MB)
    [ 0.000000] efi: mem199: type=0, attr=0x8000000000000000, range=[0x00000000af000000-0x00000000bf000000) (256MB)
    [ 0.000000] efi: mem200: type=11, attr=0x8000000000000000, range=[0x00000000d3400000-0x00000000d3401000) (0MB)
    [ 0.000000] efi: mem201: type=11, attr=0x8000000000000000, range=[0x00000000ffc00000-0x00000000ffc40000) (0MB)
    [ 0.000000] efi: mem202: type=11, attr=0x8000000000000000, range=[0x00000000ffc40000-0x00000000ffc80000) (0MB)
    [ 0.000000] efi: mem203: type=11, attr=0x8000000000000000, range=[0x00000000ffc80000-0x00000000ffca4000) (0MB)
    [ 0.000000] efi: mem204: type=11, attr=0x8000000000000000, range=[0x00000000ffca4000-0x00000000ffcb4000) (0MB)
    [ 0.000000] efi: mem205: type=11, attr=0x8000000000000000, range=[0x00000000ffcb4000-0x00000000ffffc000) (3MB)
    [ 0.000000] efi: mem206: type=11, attr=0x8000000000000000, range=[0x00000000ffffc000-0x0000000100000000) (0MB)
    [ 0.000000] SMBIOS 2.4 present.
    [ 0.000000] DMI: Apple Inc. MacBookPro5,5/Mac-F2268AC8, BIOS MBP55.88Z.00AC.B03.0906151708 06/15/09
    [ 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 = 0x240000 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-FFFFF uncachable
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 disabled
    [ 0.000000] 1 base 000000000 mask F80000000 write-back
    [ 0.000000] 2 base 080000000 mask FC0000000 write-back
    [ 0.000000] 3 base 100000000 mask F00000000 write-back
    [ 0.000000] 4 base 200000000 mask FC0000000 write-back
    [ 0.000000] 5 base 0BFF00000 mask FFFF00000 uncachable
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xbff00000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xbfef9 max_arch_pfn = 0x400000000
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0xbfef8fff]
    [ 0.000000] [mem 0x00000000-0xbfdfffff] page 2M
    [ 0.000000] [mem 0xbfe00000-0xbfef8fff] page 4k
    [ 0.000000] kernel direct mapping tables up to 0xbfef8fff @ [mem 0x1fffb000-0x1fffffff]
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x23fffffff]
    [ 0.000000] [mem 0x100000000-0x23fffffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0x23fffffff @ [mem 0xbfef3000-0xbfef8fff]
    [ 0.000000] RAMDISK: [mem 0x37a3a000-0x37d14fff]
    [ 0.000000] ACPI: RSDP 00000000bfeee014 00024 (v02 APPLE )
    [ 0.000000] ACPI: XSDT 00000000bfeee1c0 00074 (v01 APPLE Apple00 000000AC 01000013)
    [ 0.000000] ACPI: FACP 00000000bfeec000 000F4 (v04 APPLE Apple00 000000AC Loki 0000005F)
    [ 0.000000] ACPI: DSDT 00000000bfedf000 05B9E (v01 APPLE MacBookP 00050005 INTL 20061109)
    [ 0.000000] ACPI: FACS 00000000bfecd000 00040
    [ 0.000000] ACPI: HPET 00000000bfeeb000 00038 (v01 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: APIC 00000000bfeea000 00068 (v01 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: APIC 00000000bfee9000 00068 (v02 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: MCFG 00000000bfee8000 0003C (v01 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: ASF! 00000000bfee7000 000A5 (v32 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: SBST 00000000bfee6000 00030 (v01 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: ECDT 00000000bfee5000 00053 (v01 APPLE Apple00 00000001 Loki 0000005F)
    [ 0.000000] ACPI: SSDT 00000000bfeca000 0023A (v00 SataAhci 00001000 INTL 20061109)
    [ 0.000000] ACPI: SSDT 00000000bfec7000 004DC (v01 APPLE CpuPm 00003000 INTL 20061109)
    [ 0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0
    [ 0.000000] ACPI: If "acpi_apic_instance=2" works better, notify [email protected]
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000023fffffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x23fffffff]
    [ 0.000000] NODE_DATA [mem 0x23fffb000-0x23fffffff]
    [ 0.000000] [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880237800000-ffff88023f5fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x23fffffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0008efff]
    [ 0.000000] node 0: [mem 0x00090000-0x0009ffff]
    [ 0.000000] node 0: [mem 0x00100000-0xacfecfff]
    [ 0.000000] node 0: [mem 0xacfee000-0xae700fff]
    [ 0.000000] node 0: [mem 0xae706000-0xae710fff]
    [ 0.000000] node 0: [mem 0xae712000-0xae720fff]
    [ 0.000000] node 0: [mem 0xae722000-0xae72afff]
    [ 0.000000] node 0: [mem 0xae92c000-0xaefbbfff]
    [ 0.000000] node 0: [mem 0xaefbd000-0xaeffffff]
    [ 0.000000] node 0: [mem 0xbf000000-0xbf015fff]
    [ 0.000000] node 0: [mem 0xbf017000-0xbf0a9fff]
    [ 0.000000] node 0: [mem 0xbf0ad000-0xbf0aefff]
    [ 0.000000] node 0: [mem 0xbf0b1000-0xbf0b2fff]
    [ 0.000000] node 0: [mem 0xbf0b8000-0xbf0b9fff]
    [ 0.000000] node 0: [mem 0xbf0bb000-0xbf0c2fff]
    [ 0.000000] node 0: [mem 0xbf0c5000-0xbf0c6fff]
    [ 0.000000] node 0: [mem 0xbf0c9000-0xbf10dfff]
    [ 0.000000] node 0: [mem 0xbf112000-0xbf119fff]
    [ 0.000000] node 0: [mem 0xbf11d000-0xbf11efff]
    [ 0.000000] node 0: [mem 0xbf120000-0xbf224fff]
    [ 0.000000] node 0: [mem 0xbf226000-0xbf226fff]
    [ 0.000000] node 0: [mem 0xbf23d000-0xbf241fff]
    [ 0.000000] node 0: [mem 0xbf243000-0xbf264fff]
    [ 0.000000] node 0: [mem 0xbf268000-0xbf26ffff]
    [ 0.000000] node 0: [mem 0xbf275000-0xbf276fff]
    [ 0.000000] node 0: [mem 0xbf278000-0xbf278fff]
    [ 0.000000] node 0: [mem 0xbf27c000-0xbf27ffff]
    [ 0.000000] node 0: [mem 0xbf281000-0xbf709fff]
    [ 0.000000] node 0: [mem 0xbf70b000-0xbf714fff]
    [ 0.000000] node 0: [mem 0xbf717000-0xbf718fff]
    [ 0.000000] node 0: [mem 0xbf71a000-0xbfe92fff]
    [ 0.000000] node 0: [mem 0xbfe94000-0xbfe9dfff]
    [ 0.000000] node 0: [mem 0xbfe9f000-0xbfec4fff]
    [ 0.000000] node 0: [mem 0xbfeef000-0xbfef8fff]
    [ 0.000000] node 0: [mem 0x100000000-0x23fffffff]
    [ 0.000000] On node 0 totalpages: 2030609
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 10 pages reserved
    [ 0.000000] DMA zone: 3909 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 11187 pages used for memmap
    [ 0.000000] DMA32 zone: 704719 pages, LIFO batch:31
    [ 0.000000] Normal zone: 20480 pages used for memmap
    [ 0.000000] Normal zone: 1290240 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[0x00] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 1, version 17, 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: 0x10de8201 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000008f000 - 0000000000090000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 00000000acfed000 - 00000000acfee000
    [ 0.000000] PM: Registered nosave memory: 00000000ae701000 - 00000000ae706000
    [ 0.000000] PM: Registered nosave memory: 00000000ae711000 - 00000000ae712000
    [ 0.000000] PM: Registered nosave memory: 00000000ae721000 - 00000000ae722000
    [ 0.000000] PM: Registered nosave memory: 00000000ae72b000 - 00000000ae92c000
    [ 0.000000] PM: Registered nosave memory: 00000000aefbc000 - 00000000aefbd000
    [ 0.000000] PM: Registered nosave memory: 00000000af000000 - 00000000bf000000
    [ 0.000000] PM: Registered nosave memory: 00000000bf016000 - 00000000bf017000
    [ 0.000000] PM: Registered nosave memory: 00000000bf0aa000 - 00000000bf0ad000
    [ 0.000000] PM: Registered nosave memory: 00000000bf0af000 - 00000000bf0b1000
    [ 0.000000] PM: Registered nosave memory: 00000000bf0b3000 - 00000000bf0b8000
    [ 0.000000] PM: Registered nosave memory: 00000000bf0ba000 - 00000000bf0bb000
    [ 0.000000] PM: Registered nosave memory: 00000000bf0c3000 - 00000000bf0c5000
    [ 0.000000] PM: Registered nosave memory: 00000000bf0c7000 - 00000000bf0c9000
    [ 0.000000] PM: Registered nosave memory: 00000000bf10e000 - 00000000bf112000
    [ 0.000000] PM: Registered nosave memory: 00000000bf11a000 - 00000000bf11d000
    [ 0.000000] PM: Registered nosave memory: 00000000bf11f000 - 00000000bf120000
    [ 0.000000] PM: Registered nosave memory: 00000000bf225000 - 00000000bf226000
    [ 0.000000] PM: Registered nosave memory: 00000000bf227000 - 00000000bf23d000
    [ 0.000000] PM: Registered nosave memory: 00000000bf242000 - 00000000bf243000
    [ 0.000000] PM: Registered nosave memory: 00000000bf265000 - 00000000bf268000
    [ 0.000000] PM: Registered nosave memory: 00000000bf270000 - 00000000bf275000
    [ 0.000000] PM: Registered nosave memory: 00000000bf277000 - 00000000bf278000
    [ 0.000000] PM: Registered nosave memory: 00000000bf279000 - 00000000bf27c000
    [ 0.000000] PM: Registered nosave memory: 00000000bf280000 - 00000000bf281000
    [ 0.000000] PM: Registered nosave memory: 00000000bf70a000 - 00000000bf70b000
    [ 0.000000] PM: Registered nosave memory: 00000000bf715000 - 00000000bf717000
    [ 0.000000] PM: Registered nosave memory: 00000000bf719000 - 00000000bf71a000
    [ 0.000000] PM: Registered nosave memory: 00000000bfe93000 - 00000000bfe94000
    [ 0.000000] PM: Registered nosave memory: 00000000bfe9e000 - 00000000bfe9f000
    [ 0.000000] PM: Registered nosave memory: 00000000bfec5000 - 00000000bfec7000
    [ 0.000000] PM: Registered nosave memory: 00000000bfec7000 - 00000000bfec8000
    [ 0.000000] PM: Registered nosave memory: 00000000bfec8000 - 00000000bfeca000
    [ 0.000000] PM: Registered nosave memory: 00000000bfeca000 - 00000000bfecd000
    [ 0.000000] PM: Registered nosave memory: 00000000bfecd000 - 00000000bfedf000
    [ 0.000000] PM: Registered nosave memory: 00000000bfedf000 - 00000000bfeef000
    [ 0.000000] PM: Registered nosave memory: 00000000bfef9000 - 00000000bff00000
    [ 0.000000] PM: Registered nosave memory: 00000000bff00000 - 00000000d3400000
    [ 0.000000] PM: Registered nosave memory: 00000000d3400000 - 00000000d3401000
    [ 0.000000] PM: Registered nosave memory: 00000000d3401000 - 00000000ffc00000
    [ 0.000000] PM: Registered nosave memory: 00000000ffc00000 - 0000000100000000
    [ 0.000000] e820: [mem 0xd3401000-0xffbfffff] 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:2 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88023fc00000 s85184 r8192 d21312 u1048576
    [ 0.000000] pcpu-alloc: s85184 r8192 d21312 u1048576 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1
    [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1998868
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=95744744-5122-437b-82a7-6eb85b3a6448 ro quiet
    [ 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 0x3, cntxt size 0x240
    [ 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: 7867236k/9437184k available (4908k kernel code, 1314748k absent, 255200k reserved, 4024k data, 820k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, 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=2.
    [ 0.000000] NR_IRQS:4352 nr_irqs:512 16
    [ 0.000000] Extended CMOS year: 2000
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 33030144 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.000000] tsc: Detected 2520.552 MHz processor
    [ 0.006670] Calibrating delay loop (skipped), value calculated using timer frequency.. 5043.15 BogoMIPS (lpj=8401840)
    [ 0.006674] pid_max: default: 32768 minimum: 301
    [ 0.006728] init_memory_mapping: [mem 0xbfeff000-0xbfefffff]
    [ 0.006732] [mem 0xbfeff000-0xbfefffff] page 4k
    [ 0.108797] Security Framework initialized
    [ 0.108812] AppArmor: AppArmor disabled by boot time parameter
    [ 0.109405] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    [ 0.113644] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.115625] Mount-cache hash table entries: 256
    [ 0.115855] Initializing cgroup subsys cpuacct
    [ 0.115861] Initializing cgroup subsys memory
    [ 0.115872] Initializing cgroup subsys devices
    [ 0.115873] Initializing cgroup subsys freezer
    [ 0.115875] Initializing cgroup subsys net_cls
    [ 0.115876] Initializing cgroup subsys blkio
    [ 0.115906] CPU: Physical Processor ID: 0
    [ 0.115908] CPU: Processor Core ID: 0
    [ 0.115909] mce: CPU supports 6 MCE banks
    [ 0.115917] CPU0: Thermal monitoring enabled (TM2)
    [ 0.115921] process: using mwait in idle threads
    [ 0.115926] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
    Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32
    tlb_flushall_shift: -1
    [ 0.116037] Freeing SMP alternatives: 20k freed
    [ 0.117279] ACPI: Core revision 20121018
    [ 0.122421] ftrace: allocating 19310 entries in 76 pages
    [ 0.127205] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.162234] smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz (fam: 06, model: 17, stepping: 0a)
    [ 0.163333] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    [ 0.163333] ... version: 2
    [ 0.163333] ... bit width: 40
    [ 0.163333] ... generic registers: 2
    [ 0.163333] ... value mask: 000000ffffffffff
    [ 0.163333] ... max period: 000000007fffffff
    [ 0.163333] ... fixed-purpose events: 3
    [ 0.163333] ... event mask: 0000000700000003
    [ 0.183381] smpboot: Booting Node 0, Processors #1 OK
    [ 0.196585] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.196598] Brought up 2 CPUs
    [ 0.196600] smpboot: Total of 2 processors activated (10086.30 BogoMIPS)
    [ 0.196754] devtmpfs: initialized
    [ 0.200695] PM: Registering ACPI NVS region [mem 0x0008f000-0x0008ffff] (4096 bytes)
    [ 0.200695] PM: Registering ACPI NVS region [mem 0xae72b000-0xae92bfff] (2101248 bytes)
    [ 0.200695] PM: Registering ACPI NVS region [mem 0xbf0c3000-0xbf0c4fff] (8192 bytes)
    [ 0.200695] PM: Registering ACPI NVS region [mem 0xbf0c7000-0xbf0c8fff] (8192 bytes)
    [ 0.200695] PM: Registering ACPI NVS region [mem 0xbfec5000-0xbfec6fff] (8192 bytes)
    [ 0.200695] PM: Registering ACPI NVS region [mem 0xbfec8000-0xbfec9fff] (8192 bytes)
    [ 0.200695] PM: Registering ACPI NVS region [mem 0xbfecd000-0xbfedefff] (73728 bytes)
    [ 0.200695] reboot: PCI series board detected. Selecting Apple MacBookPro5-method for reboots.
    [ 0.200968] RTC time: 19:38:09, date: 04/10/13
    [ 0.201010] NET: Registered protocol family 16
    [ 0.201155] ACPI: bus type pci registered
    [ 0.201432] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xf0000000-0xffffffff] (base 0xf0000000)
    [ 0.201436] PCI: not using MMCONFIG
    [ 0.201437] PCI: Using configuration type 1 for base access
    [ 0.202036] bio: create slab <bio-0> at 0
    [ 0.202036] ACPI: Added _OSI(Module Device)
    [ 0.202036] ACPI: Added _OSI(Processor Device)
    [ 0.202036] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.202036] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.203975] ACPI: EC: EC description table is found, configuring boot EC
    [ 0.204980] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.205258] ACPI: SSDT 00000000bfec9c18 002BC (v01 APPLE Cpu0Ist 00003000 INTL 20061109)
    [ 0.206701] ACPI: Dynamic OEM Table Load:
    [ 0.206704] ACPI: SSDT (null) 002BC (v01 APPLE Cpu0Ist 00003000 INTL 20061109)
    [ 0.206781] ACPI: SSDT 00000000bfec9918 002AD (v01 APPLE Cpu0Cst 00003001 INTL 20061109)
    [ 0.207019] ACPI: Dynamic OEM Table Load:
    [ 0.207021] ACPI: SSDT (null) 002AD (v01 APPLE Cpu0Cst 00003001 INTL 20061109)
    [ 0.207035] ACPI: SSDT 00000000bfec9f18 000C8 (v01 APPLE Cpu1Ist 00003000 INTL 20061109)
    [ 0.207092] ACPI: Dynamic OEM Table Load:
    [ 0.207095] ACPI: SSDT (null) 000C8 (v01 APPLE Cpu1Ist 00003000 INTL 20061109)
    [ 0.207166] ACPI: SSDT 00000000bfec8f18 00085 (v01 APPLE Cpu1Cst 00003000 INTL 20061109)
    [ 0.207404] ACPI: Dynamic OEM Table Load:
    [ 0.207406] ACPI: SSDT (null) 00085 (v01 APPLE Cpu1Cst 00003000 INTL 20061109)
    [ 0.210187] ACPI: Interpreter enabled
    [ 0.210191] ACPI: (supports S0 S3 S4 S5)
    [ 0.210205] ACPI: Using IOAPIC for interrupt routing
    [ 0.210218] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xf0000000-0xffffffff] (base 0xf0000000)
    [ 0.211630] PCI: MMCONFIG at [mem 0xf0000000-0xffffffff] reserved in ACPI motherboard resources
    [ 0.211633] PCI: MMCONFIG for 0000 [bus00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000) (size reduced!)
    [ 0.250237] ACPI: EC: GPE = 0x3f, I/O: command/status = 0x66, data = 0x62
    [ 0.250366] ACPI: No dock devices found.
    [ 0.250370] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.250424] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    [ 0.250427] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.253481] pci_root PNP0A08:00: Requesting ACPI _OSC control (0x1d)
    [ 0.253598] pci_root PNP0A08:00: ACPI _OSC control (0x1d) granted
    [ 0.253674] pci_root PNP0A08:00: ignoring host bridge window [mem 0x000cc000-0x000cffff] (conflicts with Video ROM [mem 0x000c0000-0x000ce7ff])
    [ 0.253679] pci_root PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
    [ 0.253708] PCI host bridge to bus 0000:00
    [ 0.253711] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.253713] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.253715] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.253717] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.253719] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    [ 0.253721] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    [ 0.253723] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    [ 0.253725] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.253727] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.253729] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.253731] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.253733] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    [ 0.253735] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    [ 0.253737] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
    [ 0.253739] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
    [ 0.253741] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff]
    [ 0.253743] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff]
    [ 0.253757] pci 0000:00:00.0: [10de:0a82] type 00 class 0x060000
    [ 0.253858] pci 0000:00:00.1: [10de:0a88] type 00 class 0x050000
    [ 0.254001] pci 0000:00:03.0: [10de:0aae] type 00 class 0x060100
    [ 0.254010] pci 0000:00:03.0: reg 10: [io 0x2000-0x20ff]
    [ 0.254052] pci 0000:00:03.1: [10de:0aa4] type 00 class 0x050000
    [ 0.254130] pci 0000:00:03.2: [10de:0aa2] type 00 class 0x0c0500
    [ 0.254143] pci 0000:00:03.2: reg 10: [io 0x2180-0x21bf]
    [ 0.254163] pci 0000:00:03.2: reg 20: [io 0x2140-0x217f]
    [ 0.254169] pci 0000:00:03.2: reg 24: [io 0x2100-0x213f]
    [ 0.254203] pci 0000:00:03.2: PME# supported from D3hot D3cold
    [ 0.254225] pci 0000:00:03.3: [10de:0a89] type 00 class 0x050000
    [ 0.254362] pci 0000:00:03.4: [10de:0a98] type 00 class 0x050000
    [ 0.254418] pci 0000:00:03.5: [10de:0aa3] type 00 class 0x0b4000
    [ 0.254436] pci 0000:00:03.5: reg 10: [mem 0xd3400000-0xd347ffff]
    [ 0.254561] pci 0000:00:04.0: [10de:0aa5] type 00 class 0x0c0310
    [ 0.254572] pci 0000:00:04.0: reg 10: [mem 0xd3488000-0xd3488fff]
    [ 0.254616] pci 0000:00:04.0: supports D1 D2
    [ 0.254618] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.254634] pci 0000:00:04.1: [10de:0aa6] type 00 class 0x0c0320
    [ 0.254647] pci 0000:00:04.1: reg 10: [mem 0xd3489200-0xd34892ff]
    [ 0.254700] pci 0000:00:04.1: supports D1 D2
    [ 0.254702] pci 0000:00:04.1: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.254725] pci 0000:00:06.0: [10de:0aa7] type 00 class 0x0c0310
    [ 0.254736] pci 0000:00:06.0: reg 10: [mem 0xd3487000-0xd3487fff]
    [ 0.254780] pci 0000:00:06.0: supports D1 D2
    [ 0.254782] pci 0000:00:06.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.254797] pci 0000:00:06.1: [10de:0aa9] type 00 class 0x0c0320
    [ 0.254809] pci 0000:00:06.1: reg 10: [mem 0xd3489100-0xd34891ff]
    [ 0.254862] pci 0000:00:06.1: supports D1 D2
    [ 0.254864] pci 0000:00:06.1: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.254887] pci 0000:00:08.0: [10de:0ac0] type 00 class 0x040300
    [ 0.254898] pci 0000:00:08.0: reg 10: [mem 0xd3480000-0xd3483fff]
    [ 0.254943] pci 0000:00:08.0: PME# supported from D3hot D3cold
    [ 0.254955] pci 0000:00:09.0: [10de:0aab] type 01 class 0x060401
    [ 0.255000] pci 0000:00:0a.0: [10de:0ab0] type 00 class 0x020000
    [ 0.255011] pci 0000:00:0a.0: reg 10: [mem 0xd3486000-0xd3486fff]
    [ 0.255017] pci 0000:00:0a.0: reg 14: [io 0x21e0-0x21e7]
    [ 0.255022] pci 0000:00:0a.0: reg 18: [mem 0xd3489000-0xd34890ff]
    [ 0.255028] pci 0000:00:0a.0: reg 1c: [mem 0xd3489300-0xd348930f]
    [ 0.255064] pci 0000:00:0a.0: supports D1 D2
    [ 0.255066] pci 0000:00:0a.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.255083] pci 0000:00:0b.0: [10de:0ab9] type 00 class 0x010601
    [ 0.255094] pci 0000:00:0b.0: reg 10: [io 0x21d8-0x21df]
    [ 0.255099] pci 0000:00:0b.0: reg 14: [io 0x21ec-0x21ef]
    [ 0.255105] pci 0000:00:0b.0: reg 18: [io 0x21d0-0x21d7]
    [ 0.255110] pci 0000:00:0b.0: reg 1c: [io 0x21e8-0x21eb]
    [ 0.255116] pci 0000:00:0b.0: reg 20: [io 0x21c0-0x21cf]
    [ 0.255121] pci 0000:00:0b.0: reg 24: [mem 0xd3484000-0xd3485fff]
    [ 0.255164] pci 0000:00:10.0: [10de:0aa0] type 01 class 0x060400
    [ 0.255201] pci 0000:00:10.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.255257] pci 0000:00:15.0: [10de:0ac6] type 01 class 0x060400
    [ 0.255474] pci 0000:00:15.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.255557] pci 0000:00:16.0: [10de:0ac7] type 01 class 0x060400
    [ 0.255773] pci 0000:00:16.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.255870] pci 0000:00:09.0: PCI bridge to [bus 01] (subtractive decode)
    [ 0.255875] pci 0000:00:09.0: bridge window [mem 0xd3300000-0xd33fffff]
    [ 0.255878] pci 0000:00:09.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.255880] pci 0000:00:09.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.255882] pci 0000:00:09.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.255884] pci 0000:00:09.0: bridge window [mem 0x000c0000-0x000c3fff] (subtractive decode)
    [ 0.255886] pci 0000:00:09.0: bridge window [mem 0x000c4000-0x000c7fff] (subtractive decode)
    [ 0.255888] pci 0000:00:09.0: bridge window [mem 0x000c8000-0x000cbfff] (subtractive decode)
    [ 0.255890] pci 0000:00:09.0: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    [ 0.255892] pci 0000:00:09.0: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [ 0.255894] pci 0000:00:09.0: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [ 0.255896] pci 0000:00:09.0: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    [ 0.255898] pci 0000:00:09.0: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    [ 0.255900] pci 0000:00:09.0: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
    [ 0.255902] pci 0000:00:09.0: bridge window [mem 0x000e8000-0x000ebfff] (subtractive decode)
    [ 0.255904] pci 0000:00:09.0: bridge window [mem 0x000ec000-0x000effff] (subtractive decode)
    [ 0.255906] pci 0000:00:09.0: bridge window [mem 0x000f0000-0x000fffff] (subtractive decode)
    [ 0.255908] pci 0000:00:09.0: bridge window [mem 0xc0000000-0xfebfffff] (subtractive decode)
    [ 0.255937] pci 0000:02:00.0: [10de:0863] type 00 class 0x030000
    [ 0.255951] pci 0000:02:00.0: reg 10: [mem 0xd2000000-0xd2ffffff]
    [ 0.255960] pci 0000:02:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.255970] pci 0000:02:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    [ 0.255976] pci 0000:02:00.0: reg 24: [io 0x1000-0x107f]
    [ 0.255983] pci 0000:02:00.0: reg 30: [mem 0xd3000000-0xd301ffff pref]
    [ 0.256041] pci 0000:00:10.0: PCI bridge to [bus 02]
    [ 0.256044] pci 0000:00:10.0: bridge window [io 0x1000-0x1fff]
    [ 0.256047] pci 0000:00:10.0: bridge window [mem 0xd2000000-0xd30fffff]
    [ 0.256051] pci 0000:00:10.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.256356] pci 0000:03:00.0: [14e4:432b] type 00 class 0x028000
    [ 0.256375] pci 0000:03:00.0: reg 10: [mem 0xd3200000-0xd3203fff 64bit]
    [ 0.256469] pci 0000:03:00.0: supports D1 D2
    [ 0.256471] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    [ 0.260174] pci 0000:00:15.0: PCI bridge to [bus 03]
    [ 0.260193] pci 0000:00:15.0: bridge window [mem 0xd3200000-0xd32fffff]
    [ 0.260357] pci 0000:04:00.0: [11c1:5901] type 00 class 0x0c0010
    [ 0.260378] pci 0000:04:00.0: reg 10: [mem 0xd3100000-0xd3100fff 64bit]
    [ 0.260471] pci 0000:04:00.0: supports D1 D2
    [ 0.260473] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.266686] pci 0000:00:16.0: PCI bridge to [bus 04]
    [ 0.266706] pci 0000:00:16.0: bridge window [mem 0xd3100000-0xd31fffff]
    [ 0.266790] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.IXVE._PRT]
    [ 0.268128] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 10 11 14 15) *16
    [ 0.268199] ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 10 11 14 15) *16
    [ 0.268267] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 10 11 14 15) *16
    [ 0.268335] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 10 11 14 15) *16
    [ 0.268404] ACPI: PCI Interrupt Link [Z003] (IRQs *16 17 18 19 20 21 22 23)
    [ 0.268474] ACPI: PCI Interrupt Link [Z004] (IRQs *16 17 18 19 20 21 22 23)
    [ 0.268542] ACPI: PCI Interrupt Link [Z005] (IRQs *16 17 18 19 20 21 22 23)
    [ 0.268610] ACPI: PCI Interrupt Link [Z006] (IRQs *16 17 18 19 20 21 22 23)
    [ 0.268676] ACPI: PCI Interrupt Link [Z007] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
    [ 0.268743] ACPI: PCI Interrupt Link [Z008] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
    [ 0.268809] ACPI: PCI Interrupt Link [Z009] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
    [ 0.268877] ACPI: PCI Interrupt Link [Z00A] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
    [ 0.268945] ACPI: PCI Interrupt Link [Z00B] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
    [ 0.269013] ACPI: PCI Interrupt Link [Z00C] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
    [ 0.269081] ACPI: PCI Interrupt Link [Z00D] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
    [ 0.269153] ACPI: PCI Interrupt Link [Z00E] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
    [ 0.269223] ACPI: PCI Interrupt Link [Z00F] (IRQs 16 17 18 19 20 *21 22 23)
    [ 0.269293] ACPI: PCI Interrupt Link [Z00G] (IRQs 16 17 18 19 20 *21 22 23)
    [ 0.269365] ACPI: PCI Interrupt Link [Z00H] (IRQs 16 17 18 19 20 *21 22 23)
    [ 0.269439] ACPI: PCI Interrupt Link [Z00I] (IRQs 16 17 18 19 20 *21 22 23)
    [ 0.269508] ACPI: PCI Interrupt Link [Z00J] (IRQs 16 17 18 *19 20 21 22 23)
    [ 0.269576] ACPI: PCI Interrupt Link [Z00K] (IRQs 16 17 18 *19 20 21 22 23)
    [ 0.269644] ACPI: PCI Interrupt Link [Z00L] (IRQs 16 17 18 *19 20 21 22 23)
    [ 0.269712] ACPI: PCI Interrupt Link [Z00M] (IRQs 16 17 18 *19 20 21 22 23)
    [ 0.269779] ACPI: PCI Interrupt Link [Z00N] (IRQs 16 17 18 19 20 21 22 *23)
    [ 0.269848] ACPI: PCI Interrupt Link [Z00O] (IRQs 16 17 18 19 20 21 22 *23)
    [ 0.269917] ACPI: PCI Interrupt Link [Z00P] (IRQs 16 17 18 19 20 21 22 *23)
    [ 0.269984] ACPI: PCI Interrupt Link [Z00Q] (IRQs 16 17 18 19 20 21 22 *23)
    [ 0.270059] ACPI: PCI Interrupt Link [Z00R] (IRQs 16 17 18 19 20 21 22 *23)
    [ 0.270127] ACPI: PCI Interrupt Link [Z00S] (IRQs 16 17 18 19 20 21 22 *23)
    [ 0.270196] ACPI: PCI Interrupt Link [Z00T] (IRQs 16 17 18 19 20 21 22 *23)
    [ 0.270265] ACPI: PCI Interrupt Link [Z00U] (IRQs 16 17 18 19 20 21 22 *23)
    [ 0.270333] ACPI: PCI Interrupt Link [LSMB] (IRQs 16 17 18 19 20 21 *22 23)
    [ 0.270403] ACPI: PCI Interrupt Link [LUS0] (IRQs 16 *17 18 19 20 21 22 23)
    [ 0.270471] ACPI: PCI Interrupt Link [LUS2] (IRQs 16 17 18 19 20 21 *22 23)
    [ 0.270539] ACPI: PCI Interrupt Link [LMAC] (IRQs 16 *17 18 19 20 21 22 23)
    [ 0.270606] ACPI: PCI Interrupt Link [LAZA] (IRQs 16 17 18 19 *20 21 22 23)
    [ 0.270674] ACPI: PCI Interrupt Link [LGPU] (IRQs *16 17 18 19 20 21 22 23)
    [ 0.270740] ACPI: PCI Interrupt Link [LPID] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
    [ 0.270808] ACPI: PCI Interrupt Link [LSI0] (IRQs 16 17 *18 19 20 21 22 23)
    [ 0.270876] ACPI: PCI Interrupt Link [LSI1] (IRQs 16 17 *18 19 20 21 22 23)
    [ 0.270944] ACPI: PCI Interrupt Link [Z000] (IRQs 16 17 *18 19 20 21 22 23)
    [ 0.271011] ACPI: PCI Interrupt Link [Z001] (IRQs 16 17 18 19 20 21 22 *23)
    [ 0.271077] ACPI: PCI Interrupt Link [LPMU] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
    [ 0.271142] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=none,locks=none
    [ 0.271142] vgaarb: loaded
    [ 0.271142] vgaarb: bridge control possible 0000:02:00.0
    [ 0.271142] PCI: Using ACPI for IRQ routing
    [ 0.271777] PCI: pci_cache_line_size set to 64 bytes
    [ 0.272167] e820: reserve RAM buffer [mem 0x0008f000-0x0008ffff]
    [ 0.272169] e820: reserve RAM buffer [mem 0xacfed000-0xafffffff]
    [ 0.272171] e820: reserve RAM buffer [mem 0xae701000-0xafffffff]
    [ 0.272173] e820: reserve RAM buffer [mem 0xae711000-0xafffffff]
    [ 0.272175] e820: reserve RAM buffer [mem 0xae721000-0xafffffff]
    [ 0.272177] e820: reserve RAM buffer [mem 0xae72b000-0xafffffff]
    [ 0.273335] e820: reserve RAM buffer [mem 0xaefbc000-0xafffffff]
    [ 0.273337] e820: reserve RAM buffer [mem 0xaf000000-0xafffffff]
    [ 0.273338] e820: reserve RAM buffer [mem 0xbf016000-0xbfffffff]
    [ 0.273346] e820: reserve RAM buffer [mem 0xbf0aa000-0xbfffffff]
    [ 0.273355] e820: reserve RAM buffer [mem 0xbf0af000-0xbfffffff]
    [ 0.273363] e820: reserve RAM buffer [mem 0xbf0b3000-0xbfffffff]
    [ 0.273371] e820: reserve RAM buffer [mem 0xbf0ba000-0xbfffffff]
    [ 0.273378] e820: reserve RAM buffer [mem 0xbf0c3000-0xbfffffff]
    [ 0.273386] e820: reserve RAM buffer [mem 0xbf0c7000-0xbfffffff]
    [ 0.273393] e820: reserve RAM buffer [mem 0xbf10e000-0xbfffffff]
    [ 0.273400] e820: reserve RAM buffer [mem 0xbf11a000-0xbfffffff]
    [ 0.273407] e820: reserve RAM buffer [mem 0xbf11f000-0xbfffffff]
    [ 0.273414] e820: reserve RAM buffer [mem 0xbf225000-0xbfffffff]
    [ 0.273420] e820: reserve RAM buffer [mem 0xbf227000-0xbfffffff]
    [ 0.273427] e820: reserve RAM buffer [mem 0xbf242000-0xbfffffff]
    [ 0.273433] e820: reserve RAM buffer [mem 0xbf265000-0xbfffffff]
    [ 0.273439] e820: reserve RAM buffer [mem 0xbf270000-0xbfffffff]
    [ 0.273444] e820: reserve RAM buffer [mem 0xbf277000-0xbfffffff]
    [ 0.273449] e820: reserve RAM buffer [mem 0xbf279000-0xbfffffff]
    [ 0.273454] e820: reserve RAM buffer [mem 0xbf280000-0xbfffffff]
    [ 0.273459] e820: reserve RAM buffer [mem 0xbf70a000-0xbfffffff]
    [ 0.273463] e820: reserve RAM buffer [mem 0xbf715000-0xbfffffff]
    [ 0.273467] e820: reserve RAM buffer [mem 0xbf719000-0xbfffffff]
    [ 0.273471] e820: reserve RAM buffer [mem 0xbfe93000-0xbfffffff]
    [ 0.273475] e820: reserve RAM buffer [mem 0xbfe9e000-0xbfffffff]
    [ 0.273478] e820: reserve RAM buffer [mem 0xbfec5000-0xbfffffff]
    [ 0.273481] e820: reserve RAM buffer [mem 0xbfef9000-0xbfffffff]
    [ 0.273574] NetLabel: Initializing
    [ 0.273576] NetLabel: domain hash size = 128
    [ 0.273577] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.273589] NetLabel: unlabeled traffic allowed by default
    [ 0.273602] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
    [ 0.273607] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 31, 31
    [ 0.273612] hpet0: 4 comparators, 64-bit 25.000000 MHz counter
    [ 0.283342] Switching to clocksource hpet
    [ 0.289156] pnp: PnP ACPI init
    [ 0.289175] ACPI: bus type pnp registered
    [ 0.289295] system 00:00: [mem 0xf0000000-0xf3ffffff] has been reserved
    [ 0.289300] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.289343] pnp 00:01: Plug and Play ACPI device, IDs APP0001 (active)
    [ 0.289394] pnp 00:02: [dma 4]
    [ 0.289421] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.289505] system 00:03: [mem 0xfed00000-0xfed003ff] has been reserved
    [ 0.289509] system 00:03: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
    [ 0.289543] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.289640] system 00:05: [io 0x0400-0x047f] has been reserved
    [ 0.289642] system 00:05: [io 0x0480-0x04ff] has been reserved
    [ 0.289644] system 00:05: [io 0x0500-0x057f] has been reserved
    [ 0.289647] system 00:05: [io 0x0580-0x05ff] has been reserved
    [ 0.289649] system 00:05: [io 0x0800-0x087f] has been reserved
    [ 0.289651] system 00:05: [io 0x0880-0x08ff] has been reserved
    [ 0.289653] system 00:05: [io 0x04d0-0x04d1] has been reserved
    [ 0.289656] system 00:05: [io 0x0295-0x0296] has been reserved
    [ 0.289659] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.289687] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.293453] pnp: PnP ACPI: found 7 devices
    [ 0.293455] ACPI: ACPI bus type pnp unregistered
    [ 0.300917] pci 0000:00:09.0: PCI bridge to [bus 01]
    [ 0.300923] pci 0000:00:09.0: bridge window [mem 0xd3300000-0xd33fffff]
    [ 0.300929] pci 0000:00:10.0: PCI bridge to [bus 02]
    [ 0.300932] pci 0000:00:10.0: bridge window [io 0x1000-0x1fff]
    [ 0.300935] pci 0000:00:10.0: bridge window [mem 0xd2000000-0xd30fffff]
    [ 0.300938] pci 0000:00:10.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.300942] pci 0000:00:15.0: PCI bridge to [bus 03]
    [ 0.300952] pci 0000:00:15.0: bridge window [mem 0xd3200000-0xd32fffff]
    [ 0.300971] pci 0000:00:16.0: PCI bridge to [bus 04]
    [ 0.300981] pci 0000:00:16.0: bridge window [mem 0xd3100000-0xd31fffff]
    [ 0.301002] pci 0000:00:09.0: enabling device (0000 -> 0002)
    [ 0.301008] pci 0000:00:09.0: setting latency timer to 64
    [ 0.301013] pci 0000:00:10.0: setting latency timer to 64
    [ 0.301131] ACPI: PCI Interrupt Link [Z00F] enabled at IRQ 21
    [ 0.301247] ACPI: PCI Interrupt Link [Z00J] enabled at IRQ 19
    [ 0.301258] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.301261] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.301263] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.301265] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 0.301267] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 0.301269] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 0.301271] pci_bus 0000:00: resource 10 [mem 0x000d0000-0x000d3fff]
    [ 0.301273] pci_bus 0000:00: resource 11 [mem 0x000d4000-0x000d7fff]
    [ 0.301274] pci_bus 0000:00: resource 12 [mem 0x000d8000-0x000dbfff]
    [ 0.301276] pci_bus 0000:00: resource 13 [mem 0x000dc000-0x000dffff]
    [ 0.301278] pci_bus 0000:00: resource 14 [mem 0x000e0000-0x000e3fff]
    [ 0.301280] pci_bus 0000:00: resource 15 [mem 0x000e4000-0x000e7fff]
    [ 0.301282] pci_bus 0000:00: resource 16 [mem 0x000e8000-0x000ebfff]
    [ 0.301284] pci_bus 0000:00: resource 17 [mem 0x000ec000-0x000effff]
    [ 0.301286] pci_bus 0000:00: resource 18 [mem 0x000f0000-0x000fffff]
    [ 0.301288] pci_bus 0000:00: resource 19 [mem 0xc0000000-0xfebfffff]
    [ 0.301290] pci_bus 0000:01: resource 1 [mem 0xd3300000-0xd33fffff]
    [ 0.301292] pci_bus 0000:01: resource 4 [io 0x0000-0x0cf7]
    [ 0.301294] pci_bus 0000:01: resource 5 [io 0x0d00-0xffff]
    [ 0.301296] pci_bus 0000:01: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.301298] pci_bus 0000:01: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 0.301300] pci_bus 0000:01: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 0.301302] pci_bus 0000:01: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 0.301304] pci_bus 0000:01: resource 10 [mem 0x000d0000-0x000d3fff]
    [ 0.301306] pci_bus 0000:01: resource 11 [mem 0x000d4000-0x000d7fff]
    [ 0.301307] pci_bus 0000:01: resource 12 [mem 0x000d8000-0x000dbfff]

    Sorry i don't really know how to access the boot messages? All other distros stored this information in /var/log/boot but i assume Arch doesn't :-/
    peter@antartica ~ $ systemd-analyze blame
    5s 12ms 753us [email protected]
    276ms 771us wicd.service
    170ms 510us bluetooth.service
    163ms 497us systemd-udev-trigger.service
    136ms 982us alsa-restore.service
    114ms 708us laptop-mode.service
    109ms 867us lm_sensors.service
    83ms 663us tmp.mount
    73ms 285us systemd-vconsole-setup.service
    73ms 251us systemd-tmpfiles-setup.service
    68ms 116us polkit.service
    67ms 1us sys-kernel-debug.mount
    64ms 340us systemd-sysctl.service
    63ms 773us dev-mqueue.mount
    60ms 100us var-tmp.mount
    59ms 797us systemd-user-sessions.service
    56ms 847us dev-hugepages.mount
    50ms 242us systemd-logind.service
    50ms 139us sys-kernel-config.mount
    46ms 682us systemd-remount-fs.service
    42ms 955us systemd-journal-flush.service
    36ms 900us udisks2.service
    36ms 807us systemd-udevd.service
    18ms 279us upower.service
    16ms 458us rtkit-daemon.service
    1ms 864us systemd-random-seed-load.service

  • [Solved]Boot from USB HDD - Root device doesn't exist. Major/minor

    My problem is that the kernel seems (or starts) to load, but then I get an error:
    Root device 'UUID=1234 . . .' doesn't exist.
    Attempting to create it.
    ERROR: Unable to determine major/minor number of root device "UUID=1234 . . .'
    You are being dropped into recovery shell
    I found a few links on the web and in the forums, but nothing that really solved it for me. The solved ones usually downgraded the kernel.  I haven't done that yet.  I thought I'd try here first.
    I have a 320GB USB HDD that I have been using to experiment with different linux distros.  I have a few working successfully (OpenSUSE,Mint,Ubuntu,Debian,Fedora,etc).  I'm very new at this but have been reading a lot and putting a lot of time into it.  I have legacy grub loaded on the MBR and use the menu.lst on my openSUSE partition to boot everything.  Because the partitions for some of the distros are so far into the disk I needed to create directories on openSUSE's /boot directory to contain the kernel and initrramfs files (like /boot/fedora).  This seems to work for the other distros.  I did the same thing for Arch.
    So when I installed Arch I haven't used the bootloader section of the installation.
    I'm using the 2011.08.09-netinstall-i686.iso Live CD.
    I tried a few things including:
    1.    changing the HOOKS in /etc/mkinitcpio.conf
        a.    adding usb to the "HOOKS"
        b.    removing and adding autodetect
        c.    adding and removing "sata_sil" (although I'm not even sure if my device uses it)
    2.    changing the kernel line:
        a.    from using "UUID=" to (hd0,1) to sdb1.
        b.    added rootdelay=8
    3.    repartition all of my arch partitions using cfdisk from my Live CD and reinstall. I used gparted on OpenSUSE to do it the first time.
    This may be connected. When I fdisk -l from the Arch Live CD I get extra data and an error for each of my arch partitions (and only my arch partitions):
    Disk does't contain a valid partition table
    When I fdisk -l from OpenSUSE I don't get the data paragraphs or errors about the arch partitions?
    Here is my /etc/fstab:
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    tmpfs /tmp tmpfs nodev,nosuid 0 0
    UUID=0e7556ef-b832-43e9-a8ba-c68dd2cd6143 /var reiserfs defaults 0 1
    UUID=510bb601-13c1-46ec-87c0-a800dd2efb8b / ext4 defaults 0 1
    UUID=cd78ab04-742d-4ba5-9727-90727de2dd14 swap swap defaults 0 0
    UUID=dc5685e3-35b0-46d4-b259-61f2530ff36a /home ext3 defaults 0 1
    And my HOOKS:
    HOOKS="base udev autodetect pata scsi sata usb filesystems usbinput"
    And my menu.lst:
    1
    default 0
    timeout 32
    gfxmenu (hd0,1)/boot/message
    ###openSUSE on sda2 - legacy grub
    title openSUSE 11.4 - Celadon - gnome
    root (hd0,1)
    kernel /boot/vmlinuz-2.6.37.6-0.7-default root=/dev/disk/by-id/usb-Seagate_FreeAgent_GoFlex_NA0E702X-0:0-part2 resume=/dev/disk/by-id/usb-Seagate_FreeAgent_GoFlex_NA0E702X-0:0-part1 splash=silent quiet showopts nomodeset vga=0x314
    initrd /boot/initrd-2.6.37.6-0.7-default
    ###openSUSE failsafe on sda2 - legacy grub
    title Failsafe -- openSUSE 11.4 - 2.6.37.6-0.7
    root (hd0,1)
    kernel /boot/vmlinuz-2.6.37.6-0.7-default root=/dev/disk/by-id/usb-Seagate_FreeAgent_GoFlex_NA0E702X-0:0-part2 showopts apm=off noresume nosmp maxcpus=0 edd=off powersaved=off nohz=off highres=off processor.max_cstate=1 nomodeset x11failsafe vga=0x314
    initrd /boot/initrd-2.6.37.6-0.7-default
    ###floppy###
    #title Floppy
    # rootnoverify (fd0)
    # chainloader +1
    ###Fedora on sda5 - legacy grub
    title Fedora 15-Lovelock gnome
    root (hd0,4)
    configfile /boot/grub/grub.conf
    ###Mint on sda6 - grub2
    title Mint 9 Lucid Lynx gnome
    root (hd0,5)
    kernel /boot/grub/core.img
    savedefault
    boot
    ###PCLinux on sda7 - legacy grub
    title PCLinuxOS 2011.6 KDE
    root (hd0,6)
    chainloader +1
    ###Ubuntu on sda8 - grub2
    title Ubuntu 10.04.2 gnome
    root (hd0,7)
    kernel /boot/grub/core.img
    savedefault
    boot
    ####arch on sda10 - legacy grub
    title ARCH
    root (hd0,1)
    #root UUID=XXXXXXXXXX44c5a3cd-dcb5-4cf1-933e-7a8ebac2a992
    kernel /boot/arch/vmlinuz-linux root=UUID=510bb601-13c1-46ec-87c0-a800dd2efb8b ro rootdelay=8
    #kernel /boot/arch/vmlinuz-linux root=(hd0,9)
    #kernel /boot/arch/vmlinuz-linux root=/dev/sda10
    initrd /boot/arch/initramfs-linux.img
    savedefault
    boot
    ###Debian on sda11 - grub2
    title Debian 6.0.2.1 squeeze gnome
    root (hd0,1)
    kernel /boot/debian/vmlinuz-2.6.32-5-686 root=UUID=2b6052e2-ecdf-4796-81c8-b9e9142ca159 ro
    initrd /boot/debian/initrd.img-2.6.32-5-686
    savedefault
    boot
    ###Mandriva on sda12 - legacy grub
    title Mandriva 2011 KDE
    root (hd0,1)
    kernel /boot/mandriva/vmlinuz-2.6.38.7-desktop-1mnb2 root=UUID=5033f7fb-cac7-4db5-920c-c8bd2b51365f ro
    initrd /boot/mandriva/initramfs-2.6.38.7-desktop-1mnb2.img
    savedefault
    boot
    Here is my fdisk -l from OpenSUSE.  I'm not quite swift enough to mount the hard drive and use the script utility from the Live CD yet, at least not tonight:
    Disk /dev/sda: 320.1 GB, 320072932864 bytes
    255 heads, 63 sectors/track, 38913 cylinders, total 625142447 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x000c3bbb
    Device Boot Start End Blocks Id System
    /dev/sda1 2048 4208639 2103296 82 Linux swap / Solaris
    /dev/sda2 4208640 46153727 20972544 83 Linux
    /dev/sda3 46153728 87113727 20480000 83 Linux
    /dev/sda4 87115770 614031755 263457993 5 Extended
    /dev/sda5 87115776 128075775 20480000 83 Linux
    /dev/sda6 128077824 169037823 20480000 83 Linux
    /dev/sda7 169039872 209999871 20480000 83 Linux
    /dev/sda8 210001920 250961919 20480000 83 Linux
    /dev/sda9 250963968 291923967 20480000 83 Linux
    /dev/sda10 291924031 332886015 20480992+ 83 Linux
    /dev/sda11 332888064 373848063 20480000 83 Linux
    /dev/sda12 373848678 414992383 20571853 83 Linux
    /dev/sda13 414994432 435474431 10240000 83 Linux
    /dev/sda14 435474495 455956829 10241167+ 83 Linux
    /dev/sda15 455958528 578881535 61461504 b W95 FAT32
    /dev/sda16 578881599 614031755 17575078+ 83 Linux
    Disk /dev/sdb: 160.0 GB, 160041885696 bytes
    255 heads, 63 sectors/track, 19457 cylinders, total 312581808 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x95aa95aa
    Device Boot Start End Blocks Id System
    /dev/sdb1 * 63 294889139 147444538+ 7 HPFS/NTFS/exFAT
    /dev/sdb2 294889140 312576704 8843782+ 7 HPFS/NTFS/exFAT
    That's it for now.
    Last edited by newbie55 (2011-09-23 22:19:58)

    I'm IN!  Thanks everyone for your suggestions!
    The arch system didn't like the identifier I was using for the root partition. By looking at the /dev/disk/by-id while the arch system was running, I could see what the system wanted me to call the partition.  So after the system error'd-out and I was in the recovery shell at the [ramfs /] prompt:
    # ls -lF /dev/disk/by-id > by-id.txt
    # vi by-id.txt
    I could have used any of the identifiers listed in the by-id (there were 3), by-uuid(1), by-label(1) or by path(1). I tried them all. I had to write these down by hand because it is a ram filesystem.
    The article that finally got me there is:
    https://wiki.archlinux.org/index.php/Pe … ice_naming
    Anyway my openSUSE grub menu.lst ended up like this:
    ####arch on sda10 - legacy grub
    title ARCH
    root (hd0,1)
    kernel /boot/arch/vmlinuz-linux root=/dev/disk/by-uuid/510bb601-13c1-46ec-87c0-a800dd2efb8b ro rootdelay=8 rootfstype=ext4
    initrd /boot/arch/initramfs-linux.img
    savedefault
    boot
    It's easy once you: 1. beat your head against the wall
                        2. read further
                3. repeat 1 and 2
    Back to the "Beginner's Guide",4 Post-Installation.  Yikes!

Maybe you are looking for

  • EJB 3.0 and JTA (Distributed transactions)

    hi, first of all sorry for my english. then :) i'm working with JBoss Aplication Server an Oracle DataBase using EJB 3.0 i have no problem before ... but now i want work with multiple database and i wand to manage transactions ... how i understand JT

  • LMS 3.2.1 IPM collector

    HI, I have LMS 3.2.1 installed in my server. When I am try to create a new collector the expected source device is not appearing in list of devices source device list. However the device is added under IPM devices and reflecting under destination dev

  • How to delete characters to the right of the cursor position

    On a PC, the <Delete> key deletes characters to the right of the cursor, while <Bkspace> does the same for characters on the left. On the MAC, the <Delete> key removes only characters to the left of where the cursor is, and there is no <Bkspace> key.

  • How do I re-download a previous purchase  thx?

    How do I re-download a previous purchase  thx?

  • Jre disappeared from C:\Program Files\eclipse-SDK-3.5.1-win32\eclipse\

    Every morning I open Eclipse on the same computer with no problems. One morning, jre folder disappeared from C:\Program Files\eclipse-SDK-3.5.1-win32\eclipse\ As a result, I could not open eclipse, until I have realized, jre is not there anymore... W