Arch PV guest in Xen won't boot

Hi,
I have Xen installed and running several (win 7) HVMs.  I've setup an Arch PV guest but I am having a problem booting it.  After each failed attempt to fix this issue I try to view the /var/log/xen/bootloader.XX.log file but all of these files are zero bytes.  So, I'm having some trouble troubleshooting this.  I followed the instructions from https://wiki.archlinux.org/index.php/xen on setting up an Arch PV and do not think I missed anything.
This is the error message I get:
[root@earth arch1]# xl create -c /vm/arch1/arch1.conf
Parsing config from /vm/arch1/arch1.conf
libxl: error: libxl_bootloader.c:628:bootloader_finished: bootloader failed - consult logfile /var/log/xen/bootloader.85.log
libxl: error: libxl_exec.c:129:libxl_report_child_exitstatus: bootloader [-1] died due to fatal signal Killed
libxl: error: libxl_create.c:1022:domcreate_rebuild_done: cannot (re-)build domain: -3
This is the vm conf that I use to boot the arch install iso after loop mounting it.
name = "arch1"
kernel = "/mnt/arch/boot/x86_64/vmlinuz"
ramdisk = "/mnt/arch/boot/x86_64/archiso.img"
extra = "archisobasedir=arch archisolabel=ARCH_201410"
memory = 1024
vif = [ 'mac=00:16:3E:42:01:3D,bridge=xenbr0,model=e1000' ]
disk = [ '/vm/arch1/arch1.img,,hda,w', '/vm/img/ARCH_201410.iso,,hdb,cdrom']
This is my vm conf used to boot the VM after installing arch and umount-ing the loop mounted iso:
name = "arch1"
bootloader = "pygrub"
memory = 1024
vif = [ 'mac=00:16:3E:42:01:3D,bridge=xenbr0,model=e1000' ]
disk = [ '/vm/arch1/arch1.img,,hda,w']
And this is an abbreviated version of how I install arch on the VM.  During the install I don't think I've missed anything from the wiki.
My understanding is that pygrub will take care of booting as long as  /boot/grub/grub.conf is exists and is setup correctly which I believe I have done.
I copied the sample grub.conf from "Xen - ArchWiki" and used the UUID for "/" found in /etc/fstab (its the same I get from blkid)
The wiki mentions that without certain modules in  /etc/mkinitcpio.conf the VM will not boot.  But I've added them as shown below. 
So I'm not sure why I'm getting the above error.
gdisk /dev/xvda
n
1
<enter>
<enter>
8e00 #this sets up my lvm partition to stick everything in (root and home) as shown below.
pvcreate /dev/xvda1
vgcreate arch /dev/xvda1
lvcreate -L 18G -n root arch
lvcreate -L 1G -n home arch
mkfs.ext4 -F /dev/mapper/arch-root
mkfs.ext4 -F /dev/mapper/arch-home
mount /dev/mapper/arch-root /mnt
mkdir /mnt/home
mount /dev/mapper/arch-home /mnt/home
pacstrap -i /mnt base base-devel
genfstab -U -p /mnt >> /mnt/etc/fstab
arch-chroot /mnt /bin/bash
#setup /etc/locale.gen & /etc/locale.conf
#setup host name
#setup network
sed -i 's/MODULES=\"\"/MODULES=\"xen-blkfront\ xen-fbfront\ xen-netfront\ xen-kbdfront\"/g' /etc/mkinitcpio.conf
mkinitcpio -p linux
mkdir /boot/grub
cd /boot/grub
cat /etc/fstab
#create /boot/grub/grub.conf based on the sample from "Xen - ArchWiki" with the UUID for "/" found in /etc/fstab (its the same I get from blkid)
After doing the above install I poweroff and umount the loop mounted iso. I then get the above error message when running xl create.  Unfortunately the bootloader logs are empty.
Last edited by hbc2 (2014-10-13 15:28:18)

Is your hard disk attached via usb?  If not, you did not have the proper modules for the intramfs to access the hard disk itself.  You had it set up so that it could boot from a usb device, but not an internal device.  You should have read the comments for each of those examples.  It explains pretty cearly what each example would be used for.
Edit: I use lvm and my mkinitcpio.conf HOOKS line looks like this:
HOOKS="base udev autodetect sata lvm2 filesystems fsck timestamp"
My SSD's are connected via SATA III, the lvm2 hook is obvious, the filesystems load the ext4 module (all filesystems are ext4), fsck adds fsck and fsck.ext4, timestamp makes 'systemd-analyze' able to tell you how long it takes the initramfs and kernel to load individually instead of together.  base should always be there, and first (unless you really really know what you are doing), udev adds... udev, and autodetect tries its best to strip everything you don't need for your particular system.
For info on a paritcular hook, use the -H option with mkinitcpio. (ie. 'mkinipcio -H lvm2').  There is also a fantasticlly informative wiki page about mkinitcpio.
Last edited by WonderWoofy (2012-11-26 03:44:40)

Similar Messages

  • Arch linux installed on LVM won't boot

    My hard disk has only 1 partition.
    I created 1 volume group and 1 logical volume on it.
    my fstab looks like this:
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    tmpfs /tmp tmpfs nodev,nosuid 0 0
    # UUID=7e4cc742-0eda-4a69-8357-4b769cd51520
    /dev/mapper/vg000-lv000 / ext4 rw,relatime,data=ordered 0 2
    I configured /etc/mkinitcpio.conf as following and ran mkinitcpio -p linux again:
    MODULES="dm_mod"
    HOOKS="base udev usb lvm2 filesystems"
    After installation, I rebooted the system, selected the 1st entry in grub menu, the screen shows:
    Loading Linux core repo kernel ...
    Loading initial ramdisk ...
    then the following errors occured:
    ERROR:device '/dev/mapper/vg000-lv000' not found. Skipping fsck.
    ERROR:Unable to find root device 'dev/mapper/vg000-lv000'
    Could anybody please help?
    PS: I then rebooted to arch-linux using cd, I noticed that /dev/mapper/vg000-lv000 was not there. I had to use vgchange -ay vg000 to make it appear. Could this be related to the ERRORS?
    Last edited by whudwl (2012-11-23 08:14:47)

    Is your hard disk attached via usb?  If not, you did not have the proper modules for the intramfs to access the hard disk itself.  You had it set up so that it could boot from a usb device, but not an internal device.  You should have read the comments for each of those examples.  It explains pretty cearly what each example would be used for.
    Edit: I use lvm and my mkinitcpio.conf HOOKS line looks like this:
    HOOKS="base udev autodetect sata lvm2 filesystems fsck timestamp"
    My SSD's are connected via SATA III, the lvm2 hook is obvious, the filesystems load the ext4 module (all filesystems are ext4), fsck adds fsck and fsck.ext4, timestamp makes 'systemd-analyze' able to tell you how long it takes the initramfs and kernel to load individually instead of together.  base should always be there, and first (unless you really really know what you are doing), udev adds... udev, and autodetect tries its best to strip everything you don't need for your particular system.
    For info on a paritcular hook, use the -H option with mkinitcpio. (ie. 'mkinipcio -H lvm2').  There is also a fantasticlly informative wiki page about mkinitcpio.
    Last edited by WonderWoofy (2012-11-26 03:44:40)

  • [SOLVED] Arch Linux won't boot

    Hi,
    I was bad and didn't update my packages often enough, and now my arch installation on a desktop won't boot.
    I've booted off of a usb arch install, mounted all of the appropriate harddrive partitions, and used arch-chroot to switch to the offending hard drive.
    The /boot/syslinux/syslinux.cfg is such:
    # Config file for Syslinux -
    # /boot/syslinux/syslinux.cfg
    # Comboot modules:
    # * menu.c32 - provides a text menu
    # * vesamenu.c32 - provides a graphical menu
    # * chain.c32 - chainload MBRs, partition boot sectors, Windows bootloa
    ders
    # * hdt.c32 - hardware detection tool
    # * reboot.c32 - reboots the system
    # * poweroff.com - shutdown the system
    # To Use: Copy the respective files from /usr/lib/syslinux to /boot/sysli
    nux.
    # If /usr and /boot are on the same file system, symlink the files instea
    d
    # of copying them.
    # If you do not use a menu, a 'boot:' prompt will be shown and the system
    # will boot automatically after 5 seconds.
    # Please review the wiki: https://wiki.archlinux.org/index.php/Syslinux
    # The wiki provides further configuration examples
    DEFAULT arch
    PROMPT 0 # Set to 1 if you always want to display the boot: prompt
    TIMEOUT 50
    # You can create syslinux keymaps with the keytab-lilo tool
    #KBDMAP de.ktl
    # Menu Configuration
    # Either menu.c32 or vesamenu32.c32 must be copied to /boot/syslinux
    UI menu.c32
    #UI vesamenu.c32
    # Refer to http://syslinux.zytor.com/wiki/index.php/Doc/menu
    MENU TITLE Arch Linux
    #MENU BACKGROUND splash.png
    MENU COLOR border 30;44 #40ffffff #a0000000 std
    MENU COLOR title 1;36;44 #9033ccff #a0000000 std
    MENU COLOR sel 7;37;40 #e0ffffff #20ffffff all
    MENU COLOR unsel 37;44 #50ffffff #a0000000 std
    MENU COLOR help 37;40 #c0ffffff #a0000000 std
    MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std
    MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std
    MENU COLOR msg07 37;40 #90ffffff #a0000000 std
    MENU COLOR tabmsg 31;40 #30ffffff #00000000 std
    # boot sections follow
    # TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel l
    ine.
    LABEL arch
    MENU LABEL Arch Linux
    LINUX ../vmlinuz-linux
    APPEND root=/dev/md0 ro
    INITRD ../initramfs-linux.img
    LABEL archfallback
    MENU LABEL Arch Linux Fallback
    LINUX ../vmlinuz-linux
    APPEND root=/dev/md0 ro
    INITRD ../initramfs-linux-fallback.img
    #LABEL windows
    # MENU LABEL Windows
    # COM32 chain.c32
    # APPEND hd0 1
    LABEL hdt
    MENU LABEL HDT (Hardware Detection Tool)
    COM32 hdt.c32
    LABEL reboot
    MENU LABEL Reboot
    COM32 reboot.c32
    LABEL off
    MENU LABEL Power Off
    COMBOOT poweroff.com
    and /etc/mdadm.conf is:
    ARRAY /dev/md0 UUID=3830049a:44459d91:3ad800a8:e77f102f
    ARRAY /dev/md1 UUID=a69afb27:1266d0c2:0c8966db:14500cdb
    ARRAY /dev/md2 UUID=20b0675c:2fcca1a5:0882d652:06324bf6
    ARRAY /dev/md3 UUID=3f0343cb:ff7342c9:fe8e73d4:ba6d61b3
    ARRAY /dev/md4 UUID=287c6b6d:8cbd733c:c6e9d285:a2b14814
    ARRAY /dev/md5 UUID=ccd0d21c:8103251b:2c9a32d1:bc6dcc78
    and it looks to me like this agrees with blkid:
    sh-4.3# blkid
    /dev/sda1: UUID="3830049a-4445-9d91-3ad8-00a8e77f102f" UUID_SUB="932acc3b-f7ba-d443-cf76-9d59b663c651" LABEL="archiso:0" TYPE="linux_raid_member" PARTLABEL="Linux RAID" PARTUUID="9574bd41-8133-4c6a-b5b4-981002a41867"
    /dev/sda2: UUID="a69afb27-1266-d0c2-0c89-66db14500cdb" UUID_SUB="e3de7e2c-8153-0c53-ac5d-ffc678deb269" LABEL="archiso:1" TYPE="linux_raid_member" PARTLABEL="Linux RAID" PARTUUID="fc78d66d-53a4-4c99-a29c-b881d19c1e8d"
    /dev/sda3: UUID="20b0675c-2fcc-a1a5-0882-d65206324bf6" UUID_SUB="36f53577-cd9b-0c4e-4223-58123a6b2426" LABEL="archiso:2" TYPE="linux_raid_member" PARTLABEL="Linux RAID" PARTUUID="b7187772-bf01-4517-99a1-d2aa209aa35b"
    /dev/sda4: UUID="3f0343cb-ff73-42c9-fe8e-73d4ba6d61b3" UUID_SUB="e583cdb9-f523-b4ea-01bb-609779ca3efe" LABEL="archiso:3" TYPE="linux_raid_member" PARTLABEL="Linux RAID" PARTUUID="df9fddd2-762b-4eb3-860c-ef79f545fa77"
    /dev/sda5: UUID="287c6b6d-8cbd-733c-c6e9-d285a2b14814" UUID_SUB="ec1c493a-97f0-48e2-1659-068c25b7aa55" LABEL="archiso:4" TYPE="linux_raid_member" PARTLABEL="Linux RAID" PARTUUID="ba388b64-8f6b-4053-a695-14560832735e"
    /dev/sda6: UUID="ccd0d21c-8103-251b-2c9a-32d1bc6dcc78" UUID_SUB="9b53306f-941d-8048-5780-533ada837e11" LABEL="archiso:5" TYPE="linux_raid_member" PARTLABEL="Microsoft basic data" PARTUUID="6325add3-aa39-4fa2-995c-aacf7165097c"
    /dev/sdb1: UUID="3830049a-4445-9d91-3ad8-00a8e77f102f" UUID_SUB="ec3420f6-d21a-5e69-94f8-d81f277079ec" LABEL="archiso:0" TYPE="linux_raid_member" PARTLABEL="Linux RAID" PARTUUID="9574bd41-8133-4c6a-b5b4-981002a41867"
    /dev/sdb2: UUID="a69afb27-1266-d0c2-0c89-66db14500cdb" UUID_SUB="4b1e7230-ffec-0985-1ac7-a69aec27eec2" LABEL="archiso:1" TYPE="linux_raid_member" PARTLABEL="Linux RAID" PARTUUID="fc78d66d-53a4-4c99-a29c-b881d19c1e8d"
    /dev/sdb3: UUID="20b0675c-2fcc-a1a5-0882-d65206324bf6" UUID_SUB="4d1721b6-d87f-00b6-4bd9-45712592b033" LABEL="archiso:2" TYPE="linux_raid_member" PARTLABEL="Linux RAID" PARTUUID="b7187772-bf01-4517-99a1-d2aa209aa35b"
    /dev/sdb4: UUID="3f0343cb-ff73-42c9-fe8e-73d4ba6d61b3" UUID_SUB="085a16ce-1a7c-d79e-eb92-fed6b1b70365" LABEL="archiso:3" TYPE="linux_raid_member" PARTLABEL="Linux RAID" PARTUUID="df9fddd2-762b-4eb3-860c-ef79f545fa77"
    /dev/sdb5: UUID="287c6b6d-8cbd-733c-c6e9-d285a2b14814" UUID_SUB="10857018-548a-9311-178e-7d2b06e25942" LABEL="archiso:4" TYPE="linux_raid_member" PARTLABEL="Linux RAID" PARTUUID="ba388b64-8f6b-4053-a695-14560832735e"
    /dev/sdb6: UUID="ccd0d21c-8103-251b-2c9a-32d1bc6dcc78" UUID_SUB="d577ff9e-a687-f335-7062-f2f629886a58" LABEL="archiso:5" TYPE="linux_raid_member" PARTLABEL="Microsoft basic data" PARTUUID="6325add3-aa39-4fa2-995c-aacf7165097c"
    /dev/sdc1: LABEL="/dev/sdc1" UUID="de2a5dc6-4b22-466f-819a-86dda839c7e6" TYPE="ext4" PARTUUID="c3072e18-01"
    /dev/sdc2: LABEL="/dev/sdc2" UUID="2909b560-e9b9-48cf-a194-7b7c9c38d312" TYPE="ext4" PARTUUID="c3072e18-02"
    /dev/md127: UUID="3f9ddf01-4f7c-4633-844d-82a1781170a5" TYPE="ext4"
    /dev/md126: UUID="7105ac32-610b-4d4b-935b-675edc71ff32" TYPE="ext4"
    /dev/md125: UUID="90cc6dbe-2d0f-422b-8653-965f103b8e8d" TYPE="ext4"
    /dev/md124: UUID="5fd8960f-6017-49c8-bc7e-c972aa0e2f31" TYPE="ext4"
    /dev/md123: UUID="7B9075B74838729A" TYPE="ntfs"
    /dev/md122: UUID="96468ceb-857b-467e-b9c7-2a37e13fde6f" TYPE="ext4"
    and lsblk is:
    sh-4.3# lsblk
    NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
    sda 8:0 0 931.5G 0 disk
    |-sda1 8:1 0 1G 0 part
    | `-md126 9:126 0 1024M 0 raid1 /boot
    |-sda2 8:2 0 24G 0 part
    | `-md122 9:122 0 24G 0 raid1 /
    |-sda3 8:3 0 15G 0 part
    | `-md127 9:127 0 15G 0 raid1 /var
    |-sda4 8:4 0 100G 0 part
    | `-md125 9:125 0 100G 0 raid1 /home/j3doucet
    |-sda5 8:5 0 100G 0 part
    | `-md124 9:124 0 100G 0 raid1 /home/c2hollow
    `-sda6 8:6 0 691.5G 0 part
    `-md123 9:123 0 691.4G 0 raid1 /media
    sdb 8:16 0 931.5G 0 disk
    |-sdb1 8:17 0 1G 0 part
    | `-md126 9:126 0 1024M 0 raid1 /boot
    |-sdb2 8:18 0 24G 0 part
    | `-md122 9:122 0 24G 0 raid1 /
    |-sdb3 8:19 0 15G 0 part
    | `-md127 9:127 0 15G 0 raid1 /var
    |-sdb4 8:20 0 100G 0 part
    | `-md125 9:125 0 100G 0 raid1 /home/j3doucet
    |-sdb5 8:21 0 100G 0 part
    | `-md124 9:124 0 100G 0 raid1 /home/c2hollow
    `-sdb6 8:22 0 691.5G 0 part
    `-md123 9:123 0 691.4G 0 raid1 /media
    sdc 8:32 1 58.9G 0 disk
    |-sdc1 8:33 1 19.5G 0 part /etc/resolv.conf
    `-sdc2 8:34 1 39.4G 0 part
    sr0 11:0 1 1024M 0 rom
    Everything looks fine to me, /dev/sda1 is /boot, which has the same UUID as what mdadm has for /dev/md0, which is what syslinux.cfg has been told to boot off of. I'm not sure what to do from here.
    Last edited by c2hollow (2015-01-02 00:43:56)

    It's long that Arch uses rw argument on kernel command line.
    You should correct your syslinux.cfg as follow.
    LABEL arch
    MENU LABEL Arch Linux
    LINUX ../vmlinuz-linux
    APPEND root=LABEL="archiso:1" rw ## <<< Here's the diff
    INITRD ../initramfs-linux.img
    This isn't for the fallback menu entry, you just analyze the differences and do same there.
    I'm not familiar with syslinux, I just suppose you may try to test these options on-the-fly, before write them permanently. So when the syslinux menu will appear at boot time, please find the way to enter in edit mode and apply the correction. That will stay for the time you boot once. But it will ensure if it'll be good enough and do the writing later once you've booted.

  • Arch won't boot on Virtual Box afted updating

    I instaled Arch as guest on Vbox, after updating, it won't boot any more. It prints the message "Loading udev...SCSI subsystem initialized" and then the VM crash and the window is inmediately closed.
    I searched on the Vbox forum and others have the same problem.
    See: http://forums.virtualbox.org/viewtopic. … 890#p83890
    Probably is an issue with Arch, because a clean install from core iso does work, but does not after updating.

    What do you mean under updating ? pacman -Syu ? And what packages was installed?
    Isn't there any virtualbox log or something ?

  • Arch won't boot, FS not detected, Kernel Panic.

    Ok so here is the situation. I have arch linux installed on sda1, which is a sata drive, samsung. Seems lately I been having problems getting arch to boot because it doesn't know what type filesystem my root device has. It goes on and tells me that I can use the kernel parameter rootfstype= to solve the issue, but yet when I try this, it does nothing. I stop getting the error, about unknown FS type, but arch still won't boot. Init fails...
    I have tried everything on these forums to fix the problem and not one thing in general has solved the issue. What seems to be most consistent about this problem, is it takes me at least 20 - 30 times of rebooting before it will finally go through and boot. But, even then this is not foolproof. Last night I tried at least 30+ times of rebooting, powering off and still it would not boot.
    So after reading the forums some more I found an article somewhat related to my problem and it was suggested that I add my root FS type as a module and then remove the filesystem hook in mkinitcpio.conf. I tried this approach and at the same time downgraded to 2.6.24.2-1 kernel26 so mkinitcpio would generate the new image. Then I rebooted and arch loaded just fine. So then I rebooted and again, unknown fs type on root device error.
    So I retraced my steps and tried the same process again, only this time when I rebooted I got same problem. So as it seems, nothing I did to mkinitcpio.conf did anything to alleviate my problem.
    As of right now, I managed to get the fallback image to work(but fallback does not load all the time, just this last time I tried it it worked), but I am scared to death to turn off my machine because I know it's not gonna reboot without a lot of hassle.
    So can anyone help me diagnose this problem? What can I do to get the kernel to boot and mount the root device with ext3 and pass init on boot up? I am completely lost when it comes to this...
    here is my mkinitcpio.conf
    # vim:set ft=sh
    # MODULES
    # The following modules are loaded before any boot hooks are
    # run. Advanced users may wish to specify all system modules
    # in this array. For instance:
    # MODULES="piix ide_disk reiserfs"
    MODULES="ext3 pata_amd ata_generic sata_nv"
    # BINARIES
    # This setting includes, into the CPIO image, and additional
    # binaries a given user may wish. This is run first, so may
    # be used to override the actual binaries used in a given hook.
    # (Existing files are NOT overwritten is already added)
    # BINARIES are dependancy parsed, so you may safely ignore libraries
    BINARIES=""
    # FILES
    # This setting is similar to BINARIES above, however, files are added
    # as-is and are not parsed in anyway. This is useful for config files.
    # Some users may wish to include modprobe.conf for custom module options,
    # like so:
    # FILES="/etc/modprobe.conf"
    FILES=""
    # HOOKS
    # This is the most important setting in this file. The HOOKS control the
    # modules and scripts added to the image, and what happens at boot time.
    # Order is important, and it is recommended that you do not change the
    # order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
    # help on a given hook.
    # 'base' is _required_ unless you know precisely what you are doing.
    # 'udev' is _required_ in order to automatically load modules
    # 'modload' may be used in place of 'udev', but is not recommended
    # 'filesystems' is _required_ unless you specify your fs modules in MODULES
    # Examples:
    # This setup specifies all modules in the MODULES setting above.
    # No raid, lvm2, or encrypted root is needed.
    # HOOKS="base"
    # This setup will autodetect all modules for your system and should
    # work as a sane default
    # HOOKS="base udev autodetect pata scsi sata filesystems"
    # This is identical to the above, except the old ide subsystem is
    # used for IDE devices instead of the new pata subsystem.
    # HOOKS="base udev autodetect ide scsi sata filesystems"
    # This setup will generate a 'full' image which supports most systems.
    # No autodetection is done.
    # HOOKS="base udev pata scsi sata usb filesystems"
    # This setup assembles an pata raid array with an encrypted root FS.
    # Note: See 'mkinitcpio -H raid' for more information on raid devices.
    # HOOKS="base udev pata raid encrypt filesystems"
    # This setup loads an lvm2 volume group on a usb device.
    # HOOKS="base udev usb lvm2 filesystems"
    HOOKS="base udev autodetect pata sata"
    here is my fallback.conf
    # vim:set ft=sh
    # MODULES
    # The following modules are loaded before any boot hooks are
    # run. Advanced users may wish to specify all system modules
    # in this array. For instance:
    # MODULES="piix ide_disk reiserfs"
    # BusLogic is added to support VMWARE arch booting in fallback image
    MODULES="BusLogic"
    # BINARIES
    # This setting includes, into the CPIO image, and additional
    # binaries a given user may wish. This is run first, so may
    # be used to override the actual binaries used in a given hook.
    # (Existing files are NOT overwritten is already added)
    # BINARIES are dependancy parsed, so you may safely ignore libraries
    #BINARIES=""
    # FILES
    # This setting is similar to BINARIES above, however, files are added
    # as-is and are not parsed in anyway. This is useful for config files.
    # Some users may wish to include modprobe.conf for custom module options,
    # like so:
    # FILES="/etc/modprobe.conf"
    FILES=""
    # HOOKS
    # This is the most important setting in this file. The HOOKS control the
    # modules and scripts added to the image, and what happens at boot time.
    # Order is important, and it is recommended that you do not change the
    # order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
    # help on a given hook.
    # 'base' is _required_ unless you know precisely what you are doing.
    # 'udev' is _required_ in order to automatically load modules
    # 'modload' may be used in place of 'udev', but is not recommended
    # 'filesystems' is _required_ unless you specify your fs modules in MODULES
    # Examples:
    # This setup specifies all modules in the MODULES setting above.
    # No raid, lvm, or encrypted root is needed.
    # HOOKS="base"
    # This setup will autodetect all modules for your system and should
    # work as a sane default
    # HOOKS="base udev autodetect ide scsi sata filesystems"
    # This setup will generate a 'full' image which supports most systems.
    # No autodetection is done.
    # HOOKS="base udev ide scsi sata usb filesystems"
    # This setup assembles an ide raid array with an encrypted root FS.
    # Note: See 'mkinitcpio -H raid' for more information on raid devices.
    # HOOKS="base udev ide filesystems raid encrypt"
    # This setup loads an LVM volume group on a usb device.
    # HOOKS="base udev usb filesystems lvm"
    HOOKS="base udev ide pata scsi sata usbinput raid filesystems"
    modules I need
    sudo mkinitcpio -M
    Password:
    Modules autodetected:
    ata_generic
    libata
    pata_acpi
    pata_amd
    sata_nv
    cdrom
    ide-core
    amd74xx
    generic
    forcedeth
    sd_mod
    sr_mod
    usbcore
    ehci-hcd
    ohci-hcd
    jbd
    ext3
    Last edited by jacko (2008-04-15 19:53:35)

    I had a similar issue (I think, can you post the exact error the kernel panics with to check?) and it seemed grub or the kernel had difficulties with finding my root device which was specified as a device node in /dev. The solution for me was to change the root parameter in my kernel line in grub's menu.lst to root=/dev/disk/by-label/<label>, I'm sure UUID and such will work fine too. After doing that I haven't encountered a single such kernel panic. More info about persistent device naming can be found here.

  • [SOLVED] Arch won't boot after I created a separate /var parition

    Arch won't boot after I created a separate /var parition on an existing installation.And let me confess: it was maybe stupid trying to do it on an existing install.
    I edited the fstab correctly, copied the files using rsync preserving permissions. Then I kept a backup of /var using tar. Then went on to delete everything under /var, ie /var/*, the /var folder is still there. All this I did from a live CD. After that I booted into my arch linux. Here I get messages about systemd successfully finishing fsck on each of my partitions, then the screen starts blinking. And there is no more output. Pressing Ctrl+Alt+Delete causes systemd to stop its services and reboot.
    Having realized I had borked my system, I removed the /var line from fstab and restored /var from the tar file I made earlier. Again I did this from a live cd. Rebooted into my arch system, and again similar issues, namely that after fsck and messages informing a few services had started, the screen keeps blinking.
    The live cd I used for reorganizing my partitions was elementary OS freya. They have GParted in there. I also have an arch install iso lying aroung from May 2013. If necessary, I can download the latest version. I am currently typing from a Windows installation I dual boot from.
    I don't know how to extract any boot logs as I am locked out of the system. Here is my fstab in any case:
    # Filesystem information
    # /dev/sda5 LABEL=fs_root
    UUID=b9d739cf-fd8c-46dd-a919-bd827dc47c66 / ext4 rw,noatime,data=ordered 0 1
    # /dev/sda9 LABEL=fs_var
    UUID=ec0f7a49-dccd-43ab-8651-9aa3fdb41cc7 /var ext4 rw,noatime,data=ordered 0 2
    # /dev/sda2 LABEL=fs_boot
    UUID=0e8ab31a-3bda-4b85-a901-a36f21b1583d /boot ext2 rw,noatime 0 2
    # /dev/sda6 LABEL=fs_home
    UUID=d9e63c47-274e-447f-ad01-0d97afe0fd34 /home ext4 rw,noatime,data=ordered 0 2
    # /dev/sda7 LABEL=fs_swap
    UUID=7301227c-e9f3-41b8-9d0f-4cf3c159491c none swap defaults 0 0
    # /dev/sda3 LABEL=fs_win
    UUID=12B639D1B639B5D7 /fs_win ntfs uid=1000,gid=1000,dmask=027,fmask=137,showexec,nofail,noauto,x-systemd.automount 0 0
    # /dev/sda3 LABEL=fs_share
    UUID=D272269772268079 /fs_share ntfs uid=1000,gid=1000,dmask=027,fmask=137,showexec,noauto,nofail,x-systemd.automount 0 0
    I would greatly appreciate any help.
    Last edited by richcocoa (2015-05-03 18:04:44)

    Have you moved everything from /var to /new_var (i named it for learning purpose)? You shoud copy content from /var but not on the fly but booting from arch iso cd, and than you shoud mount your / into arch-chroot environement, mount all of your mount points and than copy content from default /var to new /var. The copying should be done with this
    cp -rax
    and you can add -v switch to verbose output. I have my own /var moved the same way.
    The simples way is:
    -boot the arch iso cd
    -mount all of your mount point (i created here in this step /new_var to move /var to a new place, and this /new_var i put in /etc/fstab as /var later)
    -copy /var to /new_var with -rax or -vrax (recursive, archive, this filesystem or verbose, recursive, archive, this filesystem switches)
    -umount all of it
    -reboot.
    Last edited by firekage (2015-05-02 07:49:20)

  • Arch won't boot after rEFInd update

    I've followed https://wiki.archlinux.org/index.php/UEFI_Bootloaders as closely as I can, but still can't get Arch to boot. It doesn't even get to the boot loader.
    uname -m
    x86_64
    Partitions:
    Device Type Name
    /dev/sda1 Linux filesystem root
    /dev/sda2 Linux filesystem boot
    /dev/sda3 EFI System efi
    /dev/sda4 Linux filesystem var
    /dev/sda5 Linux filesystem home
    lsblk
    Name Type Mountpoint
    sda disk
    sda1 part /
    sda2 part /boot
    sda3 part /boot/efi
    sda4 part /var
    sda5 part /home
    Directory tree:
    /boot/
    efi/
    EFI/
    arch/
    initramfs-arch-fallback.img
    initramfs-arch.img
    refind_linux.conf
    vmlinux-arch.efi
    refind/
    icons/
    refind.conf
    refind_x64.efi
    initramfs-linux-fallback.img
    initramfs-linux.img
    vmlinuz-linux
    /boot/efi/EFI/arch/refind_linux.conf:
    "Default boot" "root=PARTUUID=d368616d-a423-4511-88df-f2f645079bab ro rootfstype=ext4 add_efi_memmap system.unit=graphical.target"
    "Boot to terminal" "root=PARTUUID=d368616d-a423-4511-88df-f2f645079bab ro rootfstype=ext4 add_efi_memmap system.unit=multi-user.target"
    ls -l /dev/disk/by-partuuid/
    lrwxrwx 1 root root Jan 30 1:08 d368616d-a423-4511-88df-f2f645079bab -> ../../sda1
    efibootmgr -v
    BootOrder: 0018, ...
    Boot0018* Arch Linux (rEFInd) HD(3,0,0,74930800)File(EFI\refind\refind_x64.efi)
    Anything else I'm missing? By the way, I think this is related to the Jan 27. update to refind. Today was the first time I've rebooted my computer since then.
    Also - I tried both commenting and uncommenting scan_all_linux_kernels in refind.conf. No dice.
    Thank you very much!
    EDIT: Some updates...
    I was poking around the UEFI shell. The following commands caused my computer to hang (I had to hard-restart):
    Shell> fs0:
    FS0> ls
    I could ls just fine using shell 1.0, but shell 2.0 caused a hang. Then, after the hard restart, more strange behavior:
    Shell> bcfg boot add 0 fs0:\EFI\refind\refind_x64.efi "Test"
    Error. The file 'fs0:\EFI\refind\refind_x64.efi' did not open.
    Also, I can "bcfg boot dump" just fine, but if I want to scroll through the output, I get an error, and it hangs, so I have to hard restart again.
    Shell> bcfg boot dump
    // bunch of output
    Shell> bcfg boot dump -b
    // after printing five boot entries...
    Press ENTER to continue or 'Q' to break:
    ASSERT_EFI_ERROR (Status = Not Ready)
    ASSERT c:\dev\edk2top\ShellPkg\Library\UefiShellLib\UefiShellLib.c(3223) : !EFI_ERROR (Status)
    Not sure if any of that last but is relevant. Thanks again.
    Tried downgrading kernel to 3.6, still won't boot.
    Last edited by MitchellSalad (2013-01-30 20:05:10)

    MitchellSalad wrote:
    Partitions:
    Device Type Name
    /dev/sda1 Linux filesystem root
    /dev/sda2 Linux filesystem boot
    /dev/sda3 EFI System efi
    /dev/sda4 Linux filesystem var
    /dev/sda5 Linux filesystem home
    /boot/efi/EFI/arch/refind_linux.conf:
    "Default boot" "root=PARTUUID=d368616d-a423-4511-88df-f2f645079bab ro rootfstype=ext4 add_efi_memmap system.unit=graphical.target"
    "Boot to terminal" "root=PARTUUID=d368616d-a423-4511-88df-f2f645079bab ro rootfstype=ext4 add_efi_memmap system.unit=multi-user.target"
    ls -l /dev/disk/by-partuuid/
    lrwxrwx 1 root root Jan 30 1:08 d368616d-a423-4511-88df-f2f645079bab -> ../../sda3
    Shouldn't that be sda1? Your root-partition is /dev/sda1.

  • Arch Linux won't boot (and Linux in general)

    Hello everyone,
    I've been having this problem for about 3 days now. I finally made an account and post the problem since I can't find a solution (I solved most of my past problems by searching forums and googling so I had never posted before).
    So, I was installing Arch linux and Windows 7 on my machine (eee pc 1201t) but had problems booting into linux. First I installed Windows and it worked fine, then I installed Arch linux (this isn't my first time) and rebooted after finishing the installation. But my laptop just won't boot. It just displayed a blinking cursor on the top left of the screen. No error messages whatsoever. It was my first time encountering the problem so I thought reinstalling would do the trick. But it didn't. So I started researching on the same problems on google and discovered that it could be either a HD problem or corrupted MBR or some other problem. My drive works fine, since I can copy data onto it using a live cd (Ubuntu) and Windows works fine with it.
    I'm thinking of using "dd" command on my drive and repair the MBR. I would like to know if you guys have encountered the same problem before and what kind of solution you applied.
    Note: I also tried installing Ubuntu on my machine but the result was the same.

    ngoonee wrote:Live CD, setup grub again, and profit?
    I tried this first, had no luck or maybe I wasn't doing it right.
    nixpunk wrote:So are you booting into windows using grub or just ntldr?
    My laptop boots using ntldr only. Grub does not seem to work. I tried installing Arch and Ubuntu but I had the same result (blinking cursor on the top left of the screen).
    schuay wrote:As always with boot problems, you will need to provide some more data about your setup. Output of 'df -h', contents of /boot/grub/menu.lst, install location of grub, etc. Without that, other people can only make guesses about the possible solution
    I'll keep that in mind. Sorry for the lack of details regarding my problem. I will try to add as much information as I can the next time I post.
    Anyway, I think I solved the problem. I zeroed the MBR on my HD by issuing the command "dd if=/dev/zero of=/dev/sda bs=512 count=1 and grub installed just fine. Thanks for the reply everyone.

  • Ubuntu installed fine, Arch did, but won't boot.

    Hello, I am trying out Arch Linux alongside Ubuntu Linux on my external USB drive. Ubuntu boots fine, but after I install Arch, GRUB comes up giving me error 17. I don't know what could be different between my two installations except that I installed Arch while my internal HD was in, while I installed Ubuntu while it wasn't. Help?

    I set Ubuntu's menu.lst back for now, but still can't boot to Arch. I think I figured out why I can't (the install messes up when using GRUB, as GRUB can't figure out what file system it is on). Also, I think I may need to take out my internal HD to install it to the external (I had to do that with Ubuntu, but I was told it was just in case). Anyway, here is my menu.lst for my working Ubuntu (where the Arch Linux entry doesn't work because it says that that one is not supported by my BIOS for some odd reason), and the one for arch.
    Ubuntu:
    # menu.lst - See: grub(8), info grub, update-grub(8)
    # grub-install(8), grub-floppy(8),
    # grub-md5-crypt, /usr/share/doc/grub
    # and /usr/share/doc/grub-doc/.
    ## default num
    # Set the default entry to the entry number NUM. Numbering starts from 0, and
    # the entry number 0 is the default if the command is not used.
    # You can specify 'saved' instead of a number. In this case, the default entry
    # is the entry saved with the command 'savedefault'.
    # WARNING: If you are using dmraid do not use 'savedefault' or your
    # array will desync and will not let you boot your system.
    default 0
    ## timeout sec
    # Set a timeout, in SEC seconds, before automatically booting the default entry
    # (normally the first entry defined).
    timeout 5
    ## hiddenmenu
    # Hides the menu by default (press ESC to see the menu)
    hiddenmenu
    # Pretty colours
    #color cyan/blue white/blue
    ## password ['--md5'] passwd
    # If used in the first section of a menu file, disable all interactive editing
    # control (menu entry editor and command-line) and entries protected by the
    # command 'lock'
    # e.g. password topsecret
    ## password --md5 $1$gLhU0/$aW78kHK1QfV3P2b2znUoe/
    # password topsecret
    # examples
    # title Windows 95/98/NT/2000
    # root (hd0,0)
    # makeactive
    # chainloader +1
    # title Linux
    # root (hd0,1)
    # kernel /vmlinuz root=/dev/hda2 ro
    # Put static boot stanzas before and/or after AUTOMAGIC KERNEL LIST
    ### BEGIN AUTOMAGIC KERNELS LIST
    ## lines between the AUTOMAGIC KERNELS LIST markers will be modified
    ## by the debian update-grub script except for the default options below
    ## DO NOT UNCOMMENT THEM, Just edit them to your needs
    ## ## Start Default Options ##
    ## default kernel options
    ## default kernel options for automagic boot options
    ## If you want special options for specific kernels use kopt_x_y_z
    ## where x.y.z is kernel version. Minor versions can be omitted.
    ## e.g. kopt=root=/dev/hda1 ro
    ## kopt_2_6_8=root=/dev/hdc1 ro
    ## kopt_2_6_8_2_686=root=/dev/hdc2 ro
    # kopt=root=UUID=d76897f5-a728-4f06-b3d6-7291b03100fe ro vga=791 splash
    ## Setup crashdump menu entries
    ## e.g. crashdump=1
    # crashdump=0
    ## default grub root device
    ## e.g. groot=(hd0,0)
    # groot=(hd0,0)
    ## should update-grub create alternative automagic boot options
    ## e.g. alternative=true
    ## alternative=false
    # alternative=true
    ## should update-grub lock alternative automagic boot options
    ## e.g. lockalternative=true
    ## lockalternative=false
    # lockalternative=false
    ## additional options to use with the default boot option, but not with the
    ## alternatives
    ## e.g. defoptions=vga=791 resume=/dev/hda5
    # defoptions=quiet splash
    ## should update-grub lock old automagic boot options
    ## e.g. lockold=false
    ## lockold=true
    # lockold=false
    ## Xen hypervisor options to use with the default Xen boot option
    # xenhopt=
    ## Xen Linux kernel options to use with the default Xen boot option
    # xenkopt=console=tty0
    ## altoption boot targets option
    ## multiple altoptions lines are allowed
    ## e.g. altoptions=(extra menu suffix) extra boot options
    ## altoptions=(recovery) single
    # altoptions=(recovery mode) single
    ## controls how many kernels should be put into the menu.lst
    ## only counts the first occurence of a kernel, not the
    ## alternative kernel options
    ## e.g. howmany=all
    ## howmany=7
    # howmany=all
    ## should update-grub create memtest86 boot option
    ## e.g. memtest86=true
    ## memtest86=false
    # memtest86=true
    ## should update-grub adjust the value of the default booted system
    ## can be true or false
    # updatedefaultentry=false
    ## should update-grub add savedefault to the default options
    ## can be true or false
    # savedefault=false
    ## ## End Default Options ##
    title Ubuntu 7.10, kernel 2.6.22-14-generic
    root (hd0,0)
    kernel /boot/vmlinuz-2.6.22-14-generic root=UUID=d76897f5-a728-4f06-b3d6-7291b03100fe ro vga=791 splash quiet splash
    initrd /boot/initrd.img-2.6.22-14-generic
    quiet
    title Ubuntu 7.10, kernel 2.6.22-14-generic (recovery mode)
    root (hd0,0)
    kernel /boot/vmlinuz-2.6.22-14-generic root=UUID=d76897f5-a728-4f06-b3d6-7291b03100fe ro vga=791 splash single
    initrd /boot/initrd.img-2.6.22-14-generic
    title Ubuntu 7.10, kernel 2.6.22-13-generic
    root (hd0,0)
    kernel /boot/vmlinuz-2.6.22-13-generic root=UUID=d76897f5-a728-4f06-b3d6-7291b03100fe ro vga=791 splash quiet splash
    initrd /boot/initrd.img-2.6.22-13-generic
    quiet
    title Ubuntu 7.10, kernel 2.6.22-13-generic (recovery mode)
    root (hd0,0)
    kernel /boot/vmlinuz-2.6.22-13-generic root=UUID=d76897f5-a728-4f06-b3d6-7291b03100fe ro vga=791 splash single
    initrd /boot/initrd.img-2.6.22-13-generic
    title Ubuntu 7.10, kernel 2.6.22-12-generic
    root (hd0,0)
    kernel /boot/vmlinuz-2.6.22-12-generic root=UUID=d76897f5-a728-4f06-b3d6-7291b03100fe ro vga=791 splash quiet splash
    initrd /boot/initrd.img-2.6.22-12-generic
    quiet
    title Ubuntu 7.10, kernel 2.6.22-12-generic (recovery mode)
    root (hd0,0)
    kernel /boot/vmlinuz-2.6.22-12-generic root=UUID=d76897f5-a728-4f06-b3d6-7291b03100fe ro vga=791 splash single
    initrd /boot/initrd.img-2.6.22-12-generic
    title Ubuntu 7.10, kernel 2.6.22-10-generic
    root (hd0,0)
    kernel /boot/vmlinuz-2.6.22-10-generic root=UUID=d76897f5-a728-4f06-b3d6-7291b03100fe ro vga=791 splash quiet splash
    initrd /boot/initrd.img-2.6.22-10-generic
    quiet
    title Ubuntu 7.10, kernel 2.6.22-10-generic (recovery mode)
    root (hd0,0)
    kernel /boot/vmlinuz-2.6.22-10-generic root=UUID=d76897f5-a728-4f06-b3d6-7291b03100fe ro vga=791 splash single
    initrd /boot/initrd.img-2.6.22-10-generic
    title Ubuntu 7.10, memtest86+
    root (hd0,0)
    kernel /boot/memtest86+.bin
    quiet
    ### END DEBIAN AUTOMAGIC KERNELS LIST
    title Arch Linux
    root /dev/sdb3
    chainloader +1
    Arch:
    # Config file for GRUB - The GNU GRand Unified Bootloader
    # /boot/grub/menu.lst
    # DEVICE NAME CONVERSIONS
    # Linux Grub
    # /dev/fd0 (fd0)
    # /dev/hda (hd0)
    # /dev/hdb2 (hd1,1)
    # /dev/hda3 (hd0,2)
    # FRAMEBUFFER RESOLUTION SETTINGS
    # +-------------------------------------------------+
    # | 640x480 800x600 1024x768 1280x1024
    # ----+--------------------------------------------
    # 256 | 0x301=769 0x303=771 0x305=773 0x307=775
    # 32K | 0x310=784 0x313=787 0x316=790 0x319=793
    # 64K | 0x311=785 0x314=788 0x317=791 0x31A=794
    # 16M | 0x312=786 0x315=789 0x318=792 0x31B=795
    # +-------------------------------------------------+
    # general configuration:
    timeout 5
    default 0
    color light-blue/black light-cyan/blue
    # boot sections follow
    # each is implicitly numbered from 0 in the order of appearance below
    # TIP: If you want a 1024x768 framebuffer, add "vga=773" to your kernel line.
    # (0) Arch Linux
    title Arch Linux
    root (hd1,2)
    kernel /boot/vmlinuz26 root=/dev/sdb3 ro
    initrd /boot/kernel26.img
    # (1) Arch Linux
    title Arch Linux Fallback
    root (hd1,2)
    kernel /boot/vmlinuz26 root=/dev/sdb3 ro
    initrd /boot/kernel26-fallback.img
    # (1) Windows
    title Ubuntu Linux 7.10
    rootnoverify (hd1,0)
    makeactive
    chainloader +1

  • Intel D2700DC + Arch won't boot without display

    I've faced really wierd (to me) problem running Arch as mini webserver on the Intel D2700DC mini-ITX board with Atom D2700 integrated and NM10 Express chipset.
    I successfully installed the system, configured network and started sshd to continue setting up other services remotely via ssh console. Then I disconnected the keyboard and display from the case and put it under the table. After that I was quiet surprised that the system was not starting up anymore.
    After some investigation I've found that the system is not booting if no display is attached to the DVI port of the motherboard. If I start the system with display disconnected, I can hear one beep that notifies about successful BIOS POST, HDD led blinks 2-3 times, and then just nothing happens. System isn't booting up. If I attach the display right after that - nothing is seen on the screen, and display is immediately falling into sleep mode. Keyboard is still active though, and if I press ctrl+alt+del - the system is restarting, and, if display was just connected, it boots ok then. Also it boots fine from the cold state if the display was attached to the DVI port at the time of powering on.
    As I can assume from the timings and HDD led blinking, the boot process stops right after GRUB is loaded. There's nothing in system log, cause it seems that boot hangs just before the kernel is loaded by GRUB. I'm really stuck and don't know how to work around this situation, because if the display was disconnected when system was powered on - then there's no way to see anything on the screen until next reboot, and if the display was connected - then the system boots OK.
    One more thing to notice:
    There was an old CentOS installation on the HDD, to which I installed Arch Linux. I've tried to boot it once or twice before installing Arch, and, as I could remember, it could boot up without display connected, on the very same hardware. So I suppose it's definitely something in Arch that is preventing the system to boot without the display.
    I guess that when no display is connected at boot time, NM10 chipset completely disables onboard video, and because of this we can't see anything on the display until the system is restarted. But this somehow affects Arch, so it can't boot without any video hardware present.
    Last edited by rand256 (2012-05-10 10:23:28)

    I'm afraid there's no such option, but it looks like arch isn't booting just because no graphics card is detected in the system when display it disabled during powering up.
    There is a couple of similar topics about some other linux distros can't boot without video card inserted ([1], [2]) with some recommendations on what to do in such a case.
    I've followed them - including enabling serial console in /etc/inittab, setting nomodeset in kernel line in grub's menu.lst, checking for enabled splash-screens... but that didn't help.
    Does anyone know what options should be tuned in order to boot Arch without any active graphics card present in the system hardware?

  • Arch won't boot after switching to ext4

    Hi,
    Yesteday I converted my partition to ext4 sucesfully, and I managed to boot once after that, but when I tried to reboot, GRUB2 would say:
    error: invalid magic number
    while trying to load the kernel. I already chrooted from my Ubuntu partition and tried to fix by reinstalling kernel and fsck'ing, but no luck. ideas? I can't even boot from fallback :S

    Ok, here's my grub.cfg
    # Config file for GRUB2 - The GNU GRand Unified Bootloader
    # /boot/grub/grub.cfg
    # DEVICE NAME CONVERSIONS
    # Linux Grub
    # /dev/fd0 (fd0)
    # /dev/sda (hd0)
    # /dev/sdb2 (hd1,2)
    # /dev/sda3 (hd0,3)
    # Timeout for menu
    set timeout=5
    # Set default boot entry as Entry 0
    set default=0
    #Colors
    set menu_color_normal=light-blue/black
    set menu_color_highlight=light-cyan/blue
    #modules insert
    insmod linux
    # (0) Arch Linux
    menuentry "Arch Linux" {
    set root=(hd0,5)
    linux /boot/vmlinuz26 root=/dev/sda5 rootfstype=ext4 ro quiet
    initrd /boot/kernel26.img
    # (1) Arch Linux recovery
    menuentry "Arch Linux Fallback" {
    set root=(hd0,5)
    linux /boot/vmlinuz26 root=/dev/sda5 ro quiet
    initrd /boot/kernel26-fallback.img
    menuentry "Kubuntu 8.10, kernel 2.6.27-7-generic" {
    set root=(hd1,5)
    linux /boot/vmlinuz-2.6.28-4-generic root=/dev/sdb5 ro quiet splash
    initrd /boot/initrd.img-2.6.28-4-generic
    menuentry "Kubuntu 8.10, kernel 2.6.27-7-generic (recovery)" {
    set root=(hd1,5)
    linux /boot/vmlinuz-2.6.28-4-generic root=/dev/hda1 ro single
    initrd /boot/initrd.img-2.6.28-4-generic
    ## (1) Windows
    #menuentry "Windows" {
    #set root=(hd0,3)
    #chainloader +1
    BTW, if I change "linux" command for "multiboot", I get this:
    alloc magic is broken at 0x19710
    Any ideas on what may be causing this? Perhaps changing to GRUB-legacy would help?

  • Mac Pro won't boot after forced shutdown

    Hi all, hopefully someone will be able to help with this.
    This is a Mac Pro (don't have the exact spec right now, but will have later, I think it's a dual), which is used to run ProTools. It has no internet or network connections.
    It's running OS X 10.5.8 and has been for quite a while with no problems. Nothing new has been installed recently (hardware or software).
    The other night it was playing back a ProTools session and recording a mix of the result when it started behaving strangely. When ProTools is recording, it creates a waveform display of the recording as it goes, and this suddenly started being corrupted by what appeared to be bits of a photograph or video image. The owner tried to hit "Stop", but nothing would work. Mouse still moved, but no button response, keyboard shortcuts ineffective, and Force Quit did nothing, so in the end he had to kill it by holding down the power button.
    Since then it won't boot normally, though it will boot into Safe Mode with no problem.
    On a "normal" startup, it powers up, goes through the grey screen/Apple logo/spinning thing stage on the left monitor, then that one goes blue, then both monitors go blue for a few seconds and finally both screens go black, with a mouse pointer in the top left of the left screen. You can move the mouse all over both screens (though if you wait a few seconds it leaves a copy of the pointer in the top left), but that's as far as it gets. Disk activity continues for a while (maybe a minute or so) after the screens go to black, and the spinning rainbow thing comes and goes, but it then seems to give up.
    Here's what I've tried so far:
    Boot into Safe Mode - no problem
    Verify disk using Disk Utility - no problem
    Repair permissions - loads of screwed up stuff, all with "permission should be ?-----" . Repair didn't work. Finally fixed these by running the 10.5.8 combo updater twice (known issue with this updater), then repairing again. Permissions now come up clean.
    Cleared all caches etc. using Cocktail - slight improvement. Before this it was sticking on the one blue screen stage.
    Got rid of a few corrupt preference files using Cocktail (all last modified years ago) - no difference.
    Reset PRAM and MBC - no difference
    Tried booting with everything disconnected except one screen, keyboard and mouse - no difference.
    I'm going over later to see if reseating cards/removing memory etc. will make any difference, and to see if it will fire up fom it's original 10.4.? CD.
    Beyond that, I'm kind of out of ideas, so I figured I'd see if anyone else had any!
    Below is (what I think!) is the relevant bit of the log file, showing a failed boot, forced power off and reboot intoSafe Mode.
    Any clues to corrupt files etc. in there?
    Brian
    Jan 17 19:19:07 *****-****-computer com.apple.SystemStarter[16]: kextload: extension /System/Library/Extensions/DigiIO.kext appears to be loadable
    Jan 17 19:19:07 *****-****-computer com.apple.SystemStarter[16]: kextload: loading extension /System/Library/Extensions/DigiIO.kext
    Jan 17 19:19:07 *****-****-computer com.apple.SystemStarter[16]: kextload: extension /System/Library/Extensions/DigiIO.kext is already loaded
    Jan 17 19:19:07 *****-****-computer com.apple.SystemStarter[16]: kextload: extension /System/Library/Extensions/DigiDal.kext appears to be loadable
    Jan 17 19:19:07 *****-****-computer com.apple.SystemStarter[16]: kextload: loading extension /System/Library/Extensions/DigiDal.kext
    Jan 17 19:19:07 *****-****-computer com.apple.SystemStarter[16]: kextload: extension /System/Library/Extensions/DigiDal.kext is already loaded
    Jan 17 19:19:30 localhost kernel[0]: npvhash=4095
    Jan 17 19:19:28 localhost com.apple.launchctl.System[2]: BootCacheControl: could not open /var/db/BootCache.playlist: No such file or directory
    Jan 17 19:19:28 localhost com.apple.launchctl.System[2]: BootCacheControl: could not unlink playlist /var/db/BootCache.playlist: Unknown error: -1
    Jan 17 19:19:29 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    Jan 17 19:19:29 localhost com.apple.launchd[1] (org.cups.cupsd): Unknown key: SHAuthorizationRight
    Jan 17 19:19:29 localhost com.apple.launchd[1] (org.ntp.ntpd): Unknown key: SHAuthorizationRight
    Jan 17 19:19:29 localhost com.apple.launchd[1] (org.x.privileged_startx): Unknown key for boolean: EnableTransactions
    Jan 17 19:19:30 localhost kextd[10]: 439 cached, 0 uncached personalities to catalog
    Jan 17 19:19:30 localhost kernel[0]: hi mem tramps at 0xffe00000
    Jan 17 19:19:30 localhost kernel[0]: PAE enabled
    Jan 17 19:19:30 localhost kernel[0]: 64 bit mode enabled
    Jan 17 19:19:30 localhost kernel[0]: Darwin Kernel Version 9.8.0: Wed Jul 15 16:55:01 PDT 2009; root:xnu-1228.15.4~1/RELEASE_I386
    Jan 17 19:19:30 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Jan 17 19:19:30 localhost kernel[0]: vm_page_bootstrap: 714269 free pages and 72163 wired pages
    Jan 17 19:19:30 localhost kernel[0]: mig_table_max_displ = 79
    Jan 17 19:19:30 localhost kernel[0]: Error: Couldn't read XML property list for multikext archive entry 115.
    Jan 17 19:19:30 localhost kernel[0]: XML parse error: OSUnserializeXML: syntax error near line 1
    Jan 17 19:19:30 localhost kernel[0]: .
    Jan 17 19:19:30 localhost kernel[0]: Extension "com.apple.driver.AppleACPIPlatform" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    Jan 17 19:19:30 localhost kernel[0]: Extension "com.apple.driver.AppleIntelCPUPowerManagement" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    Jan 17 19:19:30 localhost kernel[0]: AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    Jan 17 19:19:30 localhost kernel[0]: AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    Jan 17 19:19:30 localhost kernel[0]: AppleACPICPU: ProcessorApicId=2 LocalApicId=6 Enabled
    Jan 17 19:19:30 localhost kernel[0]: AppleACPICPU: ProcessorApicId=3 LocalApicId=7 Enabled
    Jan 17 19:19:30 localhost kernel[0]: AppleACPICPU: ProcessorApicId=4 LocalApicId=0 Disabled
    Jan 17 19:19:30 localhost kernel[0]: AppleACPICPU: ProcessorApicId=5 LocalApicId=0 Disabled
    Jan 17 19:19:30 localhost kernel[0]: AppleACPICPU: ProcessorApicId=6 LocalApicId=0 Disabled
    Jan 17 19:19:30 localhost kernel[0]: AppleACPICPU: ProcessorApicId=7 LocalApicId=0 Disabled
    Jan 17 19:19:30 localhost kernel[0]: Loading security extension com.apple.security.TMSafetyNet
    Jan 17 19:19:30 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Jan 17 19:19:30 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Jan 17 19:19:30 localhost kernel[0]: Loading security extension com.apple.nke.applicationfirewall
    Jan 17 19:19:30 localhost kernel[0]: Loading security extension com.apple.security.seatbelt
    Jan 17 19:19:30 localhost kernel[0]: calling mpo_policy_init for mb
    Jan 17 19:19:30 localhost kernel[0]: Seatbelt MACF policy initialized
    Jan 17 19:19:30 localhost kernel[0]: Security policy loaded: Seatbelt Policy (mb)
    Jan 17 19:19:30 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Jan 17 19:19:31 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Jan 17 19:19:31 localhost kernel[0]: MAC Framework successfully initialized
    Jan 17 19:19:31 localhost kernel[0]: using 15728 buffer headers and 4096 cluster IO buffer headers
    Jan 17 19:19:31 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Jan 17 19:19:31 localhost kernel[0]: Extension "com.apple.driver.AppleACPIPlatform" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    Jan 17 19:19:31 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Jan 17 19:19:31 localhost kernel[0]: Extension "com.apple.driver.AppleACPIPlatform" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    Jan 17 19:19:31 localhost kernel[0]: Extension "com.apple.driver.AppleACPIPlatform" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.AppleIntelCPUPowerManagement: Enabling legacy HPET check
    Jan 17 19:19:31 localhost kernel[0]: mbinit: done
    Jan 17 19:19:31 localhost kernel[0]: Security auditing service present
    Jan 17 19:19:31 localhost kernel[0]: BSM auditing present
    Jan 17 19:19:31 localhost kernel[0]: rooting via boot-uuid from /chosen: A3A529FC-62F4-3CBC-91C6-E6C6DC1F954B
    Jan 17 19:19:31 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Jan 17 19:19:31 localhost kernel[0]: FireWire (OHCI) TI ID 8025 built-in now active, GUID 0019e3fffe92f662; max speed s800.
    Jan 17 19:19:31 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleAHCI/PRT0 @0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageDri ver/ST3250820AS P Media/IOGUIDPartitionScheme/Customer@2
    Jan 17 19:19:31 localhost kernel[0]: BSD root: disk0s2, major 14, minor 5
    Jan 17 19:19:31 localhost kernel[0]: Jettisoning kernel linker.
    Jan 17 19:19:31 localhost kernel[0]: Resetting IOCatalogue.
    Jan 17 19:19:31 localhost kernel[0]: PXS1: family specific matching fails
    Jan 17 19:19:31 localhost kernel[0]: Matching service count = 2
    Jan 17 19:19:31 localhost kernel[0]: Matching service count = 3
    Jan 17 19:19:31: --- last message repeated 4 times ---
    Jan 17 19:19:31 localhost kernel[0]: Matching service count = 4
    Jan 17 19:19:31 localhost kernel[0]: MacPro1,1: stalling for module
    Jan 17 19:19:31 localhost kernel[0]: AppleIntelCPUPowerManagement: initialization complete
    Jan 17 19:19:32 localhost kernel[0]: Matching service count = 1
    Jan 17 19:19:32 localhost kernel[0]: AppleTyMCEDriver::probe(MacPro1,1)
    Jan 17 19:19:32 localhost kernel[0]: AppleTyMCEDriver::probe fails
    Jan 17 19:19:32 localhost kernel[0]: Previous Shutdown Cause: 3
    Jan 17 19:19:33 localhost kernel[0]: Probing MOTU Driver
    Jan 17 19:19:33 localhost kernel[0]: IOKit version is "Darwin Kernel Version 9.8.0: Wed Jul 15 16:55:01 PDT 2009; root:xnu-1228.15.4~1/RELEASE_I386"
    Jan 17 19:19:33 localhost kernel[0]: uhcim Not using bug fix
    Jan 17 19:19:33 localhost kernel[0]: GetDevInfoForSubclass interfacesubclass 0 forUHCI 0
    Jan 17 19:19:34 localhost kernel[0]: NVDANV40HAL loaded and registered.
    Jan 17 19:19:34 localhost kernel[0]: PXS1: family specific matching fails
    Jan 17 19:19:34: --- last message repeated 3 times ---
    Jan 17 19:19:34 localhost kernel[0]: Matching service count = 0
    Jan 17 19:19:35 localhost bootlog[65]: BOOT_TIME: 1326824366 0
    Jan 17 19:19:36 localhost rpc.statd[47]: statd.notify - no notifications needed
    Jan 17 19:19:37 localhost fseventsd[56]: bumping event counter to: 0x28c7 (current 0x0) from log file '0000000000000665'
    Jan 17 19:19:39 localhost DirectoryService[61]: Launched version 5.7 (v514.25)
    Jan 17 19:19:42 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[52]: Login Window Application Started -- Threaded auth
    Jan 17 19:19:44 localhost kernel[0]: AppleIntel8254XEthernet: Ethernet address 00:17:f2:09:62:9c
    Jan 17 19:19:44 localhost kernel[0]: AppleIntel8254XEthernet: Ethernet address 00:17:f2:09:62:9d
    Jan 17 19:19:45 localhost com.paceap.pacesupport[68]: kextload: /System/Library/Extensions/PACESupportFamily.kext/Contents/PlugIns/PACESupportL eopard.kext loaded successfully
    Jan 17 19:19:49 localhost kernel[0]: Ethernet [Intel8254X]: Link down on en0 called by enableHardware() -- 
    Jan 17 19:19:49 localhost mDNSResponder mDNSResponder-176.3 (Jun 17 2009 18:57:49)[51]: starting
    Jan 17 19:19:50 localhost /usr/sbin/ocspd[94]: starting
    Jan 17 19:19:52 localhost kextd[10]: writing kernel link data to /var/run/mach.sym
    Jan 17 19:19:54 localhost kernel[0]: Ethernet [Intel8254X]: Link down on en1 called by enableHardware() -- 
    Jan 17 19:19:54 *****-****-computer configd[63]: setting hostname to "*****-****-computer.local"
    Jan 17 19:19:56 *****-****-computer org.ntp.ntpd[42]: Error : nodename nor servname provided, or not known
    Jan 17 19:19:56 *****-****-computer ntpdate[106]: can't find host time.euro.apple.com
    Jan 17 19:19:56 *****-****-computer ntpdate[106]: no servers can be used, exiting
    Jan 17 19:19:56 *****-****-computer com.apple.SystemStarter[45]: PACESupport - launchd already started us
    Jan 17 19:19:56 *****-****-computer com.apple.SystemStarter[45]: kextload: extension /System/Library/Extensions/DigiIO.kext appears to be loadable
    Jan 17 19:19:56 *****-****-computer com.apple.SystemStarter[45]: kextload: loading extension /System/Library/Extensions/DigiIO.kext
    Jan 17 19:19:56 *****-****-computer com.apple.SystemStarter[45]: kextload: extension /System/Library/Extensions/DigiIO.kext is already loaded
    Jan 17 19:19:57 *****-****-computer com.apple.SystemStarter[45]: kextload: extension /System/Library/Extensions/DigiDal.kext appears to be loadable
    Jan 17 19:19:57 *****-****-computer com.apple.SystemStarter[45]: kextload: loading extension /System/Library/Extensions/DigiDal.kext
    Jan 17 19:19:57 *****-****-computer com.apple.SystemStarter[45]: kextload: extension /System/Library/Extensions/DigiDal.kext is already loaded
    Jan 17 19:19:59 *****-****-computer kernel[0]: NVDA(OpenGL): Channel exception!  status = 0xffff info32 = 0x2 = Fifo: SW Method Error
    Jan 17 19:19:59 *****-****-computer kernel[0]: 0000000b
    Jan 17 19:19:59 *****-****-computer kernel[0]: NVDA(OpenGL): Channel exception!  status = 0xffff info32 = 0x2 = Fifo: SW Method Error
    Jan 17 19:19:59 *****-****-computer kernel[0]: 0000000b
    Jan 17 19:19:59 *****-****-computer kernel[0]: NVDA(OpenGL): Channel exception!  status = 0xffff info32 = 0x2 = Fifo: SW Method Error
    Jan 17 19:19:59 *****-****-computer kernel[0]: 0000000b
    Jan 17 19:20:01 *****-****-computer kernel[0]: NVDA(OpenGL): Channel exception!  status = 0xffff info32 = 0x2 = Fifo: SW Method Error
    Jan 17 19:20:01 *****-****-computer kernel[0]: 0000000b
    Jan 17 19:20:01 *****-****-computer kernel[0]: NVDA(OpenGL): Channel exception!  status = 0xffff info32 = 0x2 = Fifo: SW Method Error
    Jan 17 19:20:01 *****-****-computer kernel[0]: 0000000b
    Jan 17 19:20:01 *****-****-computer kernel[0]: NVDA(OpenGL): Channel exception!  status = 0xffff info32 = 0x2 = Fifo: SW Method Error
    Jan 17 19:20:01 *****-****-computer kernel[0]: 0000000b
    Jan 17 19:20:01 *****-****-computer kernel[0]: NVDA(OpenGL): Channel exception!  status = 0xffff info32 = 0x2 = Fifo: SW Method Error
    Jan 17 19:20:01 *****-****-computer kernel[0]: 0000000b
    Jan 17 19:20:09 *****-****-computer loginwindow[52]: Login Window Started Security Agent
    Jan 17 19:20:15 *****-****-computer com.apple.launchd[1] ([0x0-0x5005].com.dantz.RetroRunSL[123]): Stray process with PGID equal to this dead job: PID 125 PPID 1 RetroRunSL
    Jan 17 19:23:49 *****-****-computer com.apple.firmwaresyncd[57]: kextload: /System/Library/Extensions/msdosfs.kext loaded successfully
    Jan 17 19:28:18 localhost com.apple.launchctl.System[2]: ** /dev/rdisk1s2
    Jan 17 19:28:18 localhost com.apple.launchctl.System[2]: ** Root file system
    Jan 17 19:28:18 localhost com.apple.launchctl.System[2]: ** Checking Journaled HFS Plus volume.
    Jan 17 19:28:18 localhost com.apple.launchctl.System[2]: ** Checking Extents Overflow file.
    Jan 17 19:28:18 localhost com.apple.launchctl.System[2]: ** Checking Catalog file.
    Jan 17 19:28:18 localhost com.apple.launchctl.System[2]: ** Checking multi-linked files.
    Jan 17 19:28:18 localhost com.apple.launchctl.System[2]: ** Checking Catalog hierarchy.
    Jan 17 19:28:18 localhost com.apple.launchctl.System[2]: ** Checking Extended Attributes file.
    Jan 17 19:28:18 localhost com.apple.launchctl.System[2]: ** Checking volume bitmap.
    Jan 17 19:28:18 localhost com.apple.launchctl.System[2]: ** Checking volume information.
    Jan 17 19:28:18 localhost com.apple.launchctl.System[2]: ** The volume Macintosh HD appears to be OK.
    Jan 17 19:28:18 localhost com.apple.launchctl.System[2]: ***** FILE SYSTEM WAS MODIFIED *****
    Jan 17 19:28:20 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    Jan 17 19:28:20 localhost com.apple.launchd[1] (org.cups.cupsd): Unknown key: SHAuthorizationRight
    Jan 17 19:28:20 localhost com.apple.launchd[1] (org.ntp.ntpd): Unknown key: SHAuthorizationRight
    Jan 17 19:28:20 localhost com.apple.launchd[1] (org.x.privileged_startx): Unknown key for boolean: EnableTransactions
    Jan 17 19:28:21 localhost kernel[0]: npvhash=4095
    Jan 17 19:28:20 localhost kextd[9]: safe boot detected
    Jan 17 19:28:21 localhost kernel[0]: hi mem tramps at 0xffe00000
    Jan 17 19:28:20 localhost kextd[9]: safe boot; invalidating extensions caches
    Jan 17 19:28:21 localhost kernel[0]: PAE enabled
    Jan 17 19:28:21 localhost kernel[0]: 64 bit mode enabled
    Jan 17 19:28:21 localhost kernel[0]: Darwin Kernel Version 9.8.0: Wed Jul 15 16:55:01 PDT 2009; root:xnu-1228.15.4~1/RELEASE_I386
    Jan 17 19:28:21 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Jan 17 19:28:21 localhost kernel[0]: vm_page_bootstrap: 508650 free pages and 277782 wired pages
    Jan 17 19:28:21 localhost kernel[0]: mig_table_max_displ = 79
    Jan 17 19:28:21 localhost kernel[0]: Extension "com.apple.driver.AppleACPIPlatform" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    Jan 17 19:28:21 localhost kernel[0]: Extension "com.apple.driver.AppleIntelCPUPowerManagement" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    Jan 17 19:28:21 localhost kernel[0]: AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    Jan 17 19:28:21 localhost kernel[0]: AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    Jan 17 19:28:21 localhost kernel[0]: AppleACPICPU: ProcessorApicId=2 LocalApicId=6 Enabled
    Jan 17 19:28:21 localhost kernel[0]: AppleACPICPU: ProcessorApicId=3 LocalApicId=7 Enabled
    Jan 17 19:28:21 localhost kernel[0]: AppleACPICPU: ProcessorApicId=4 LocalApicId=0 Disabled
    Jan 17 19:28:21 localhost kernel[0]: AppleACPICPU: ProcessorApicId=5 LocalApicId=0 Disabled
    Jan 17 19:28:21 localhost kernel[0]: AppleACPICPU: ProcessorApicId=6 LocalApicId=0 Disabled
    Jan 17 19:28:21 localhost kernel[0]: AppleACPICPU: ProcessorApicId=7 LocalApicId=0 Disabled
    Jan 17 19:28:21 localhost kernel[0]: Loading security extension com.apple.nke.applicationfirewall
    Jan 17 19:28:21 localhost kernel[0]: Loading security extension com.apple.security.seatbelt
    Jan 17 19:28:21 localhost kernel[0]: calling mpo_policy_init for mb
    Jan 17 19:28:21 localhost kernel[0]: Seatbelt MACF policy initialized
    Jan 17 19:28:21 localhost kernel[0]: Security policy loaded: Seatbelt Policy (mb)
    Jan 17 19:28:21 localhost kernel[0]: Loading security extension com.apple.security.TMSafetyNet
    Jan 17 19:28:21 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Jan 17 19:28:21 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Jan 17 19:28:21 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Jan 17 19:28:21 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Jan 17 19:28:21 localhost kernel[0]: MAC Framework successfully initialized
    Jan 17 19:28:21 localhost kernel[0]: using 15728 buffer headers and 4096 cluster IO buffer headers
    Jan 17 19:28:21 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Jan 17 19:28:21 localhost kernel[0]: Extension "com.apple.driver.AppleACPIPlatform" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    Jan 17 19:28:21 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Jan 17 19:28:21 localhost kernel[0]: Extension "com.apple.driver.AppleACPIPlatform" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    Jan 17 19:28:21: --- last message repeated 1 time ---
    Jan 17 19:28:21 localhost kernel[0]: AppleIntelCPUPowerManagement: Enabling legacy HPET check
    Jan 17 19:28:21 localhost kernel[0]: mbinit: done
    Jan 17 19:28:21 localhost kernel[0]: Security auditing service present
    Jan 17 19:28:21 localhost kernel[0]: BSM auditing present
    Jan 17 19:28:21 localhost kernel[0]: rooting via boot-uuid from /chosen: A3A529FC-62F4-3CBC-91C6-E6C6DC1F954B
    Jan 17 19:28:21 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Jan 17 19:28:21 localhost kernel[0]: FireWire (OHCI) TI ID 8025 built-in now active, GUID 0019e3fffe92f662; max speed s800.
    Jan 17 19:28:21 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleAHCI/PRT0 @0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageDri ver/ST3250820AS P Media/IOGUIDPartitionScheme/Customer@2
    Jan 17 19:28:21 localhost kernel[0]: BSD root: disk1s2, major 14, minor 5
    Jan 17 19:28:21 localhost kernel[0]: jnl: unknown-dev: replay_journal: from: 23181312 to: 122368 (joffset 0x746000)
    Jan 17 19:28:21 localhost kernel[0]: jnl: unknown-dev: journal replay done.
    Jan 17 19:28:21 localhost kernel[0]: AppleIntelCPUPowerManagement: initialization complete
    Jan 17 19:28:21 localhost kernel[0]: HFS: Removed 4 orphaned unlinked files or directories 
    Jan 17 19:28:21 localhost kernel[0]: Jettisoning kernel linker.
    Jan 17 19:28:26 localhost bootlog[36]: BOOT_TIME: 1326824767 0
    Jan 17 19:28:26 localhost fseventsd[27]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (330 139 558)
    Jan 17 19:28:27 localhost rpc.statd[18]: statd.notify - no notifications needed
    Jan 17 19:28:27 localhost fseventsd[27]: log dir: /.fseventsd getting new uuid: 07B57D5F-5A7E-483F-8FBE-40E8DF7E6E23
    Jan 17 19:28:32 localhost DirectoryService[32]: Launched version 5.7 (v514.25)
    Jan 17 19:28:32 localhost DirectoryService[32]: Improper shutdown detected
    Jan 17 19:28:38 localhost kernel[0]: AppleIntel8254XEthernet: Ethernet address 00:17:f2:09:62:9c
    Jan 17 19:28:38 localhost kernel[0]: AppleIntel8254XEthernet: Ethernet address 00:17:f2:09:62:9d
    Jan 17 19:28:43 localhost kernel[0]: Resetting IOCatalogue.
    Jan 17 19:28:43 localhost kextd[9]: 0 cached, 291 uncached personalities to catalog
    Jan 17 19:28:44 localhost kernel[0]: PXS1: family specific matching fails
    Jan 17 19:28:44 localhost kernel[0]: Matching service count = 2
    Jan 17 19:28:45 localhost kernel[0]: Previous Shutdown Cause: 3
    Jan 17 19:28:45 localhost mDNSResponder mDNSResponder-176.3 (Jun 17 2009 18:57:49)[22]: starting
    Jan 17 19:28:46 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[23]: Login Window Application Started -- Threaded auth
    Jan 17 19:28:50 localhost kernel[0]: NVDANV40HAL loaded and registered.
    Jan 17 19:28:50 localhost kernel[0]: PXS1: family specific matching fails
    Jan 17 19:28:50 localhost kernel[0]: Ethernet [Intel8254X]: Link down on en0 called by enableHardware() -- 
    Jan 17 19:28:52 localhost kernel[0]: PXS1: family specific matching fails
    Jan 17 19:28:52 localhost kernel[0]: Matching service count = 0
    Jan 17 19:28:54 localhost kernel[0]: Ethernet [Intel8254X]: Link down on en1 called by enableHardware() -- 
    Jan 17 19:28:54 *****-****-computer configd[34]: setting hostname to "*****-****-computer.local"
    Jan 17 19:28:56 *****-****-computer org.ntp.ntpd[13]: Error : nodename nor servname provided, or not known
    Jan 17 19:28:56 *****-****-computer ntpdate[68]: can't find host time.euro.apple.com
    Jan 17 19:28:56 *****-****-computer ntpdate[68]: no servers can be used, exiting
    Jan 17 19:28:56 *****-****-computer com.apple.ATSServer[67]: FODBCheck: New annex file created
    Jan 17 19:28:57 *****-****-computer /usr/sbin/ocspd[73]: starting
    Jan 17 19:29:01 *****-****-computer kextd[9]: writing kernel link data to /var/run/mach.sym
    Jan 17 19:29:04 *****-****-computer loginwindow[23]: Login Window Started Security Agent
    Jan 17 19:29:05 *****-****-computer fseventsd[27]: event logs in /Volumes/DATA DRIVE/.fseventsd out of sync with volume. destroying old logs. (63 0 598)
    Jan 17 19:29:05 *****-****-computer fseventsd[27]: log dir: /Volumes/DATA DRIVE/.fseventsd getting new uuid: 0E7FBB62-F55F-413D-970B-FB402543BF2D
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: PACESupport - launchd already started us
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload: extension /System/Library/Extensions/DigiIO.kext appears to be loadable
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload: loading extension /System/Library/Extensions/DigiIO.kext
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload: /System/Library/Extensions/DigiIO.kext loaded successfully
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload: sending personalities to kernel:
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload:     from extension /System/Library/Extensions/IOStorageFamily.kext:
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload:         IOFDiskPartitionScheme
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload:         IOMediaBSDClient
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload:         IOGUIDPartitionScheme
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload:         IOAppleLabelScheme
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload:         IOBlockStorageDriver
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload:         IOApplePartitionScheme
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload:     from extension /System/Library/Extensions/IOPCIFamily.kext:
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload:         IOPCI2PCIBridge-Name
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload:         IOPCI2PCIBridge-i386
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload:         IOPCI2PCIBridge-PCI
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload:     from extension /System/Library/Extensions/DigiIO.kext:
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload:         DigiIO
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload: sending 10 personalities to the kernel
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload: matching started for /System/Library/Extensions/DigiIO.kext
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload: extension /System/Library/Extensions/DigiDal.kext appears to be loadable
    Jan 17 19:29:06 *****-****-computer com.apple.SystemStarter[16]: kextload: loading extension /System/Library/Extensions/DigiDal.kext
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload: /System/Library/Extensions/DigiDal.kext loaded successfully
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload: sending personalities to kernel:
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:     from extension /System/Library/Extensions/IOPCIFamily.kext:
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         IOPCI2PCIBridge-Name
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         IOPCI2PCIBridge-i386
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         IOPCI2PCIBridge-PCI
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:     from extension /System/Library/Extensions/DigiDal.kext:
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         GershwinIIIPLXDevice
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         GershwinRev2Farm
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         GershwinFarm
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         GershwinEngine
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         GershwinPCIBridgeDeviceHiNTHB2
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         GershwinPCIBridgeDeviceDEC21154
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         GershwinIIFarm
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         GershwinPCIBridgeDevicePericom8154
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         DigidesignGeneral
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         GershwinIIIFarm
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         GershwinRev2Engine
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         GershwinIIEngine
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         GershwinPCIBridgeDevicePLXPCIExpress
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         MotorolaPresto
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         GershwinIIPLXDevice
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         GershwinPCIBridgeDeviceDEC21154BE
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         GershwinPCIBridgeDeviceHiNTHB4
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload:         GershwinIIIEngine
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload: sending 21 personalities to the kernel
    Jan 17 19:29:07 *****-****-computer com.apple.SystemStarter[16]: kextload: matching started for /System/Library/Extensions/DigiDal.kext
    Jan 17 19:29:11 *****-****-computer com.apple.launchd[1] ([0x0-0x4004].com.dantz.RetroRunSL[83]): Stray process with PGID equal to this dead job: PID 95 PPID 1 RetroRunSL
    Jan 17 19:29:37 *****-****-computer com.apple.dyld[10]: update_dyld_shared_cache[10] regenerated cache for arch=i386
    Jan 17 19:31:09 *****-****-computer authorizationhost[82]: MechanismInvoke 0x1d2de70 retainCount 2
    Jan 17 19:31:09 *****-****-computer SecurityAgent[92]: MechanismInvoke 0x5b31950 retainCount 1
    Jan 17 19:31:09 *****-****-computer SecurityAgent[92]: NSSecureTextFieldCell detected a field editor ((null)) that is not a NSTextView subclass designed to work with the cell. Ignoring...
    Jan 17 19:31:10 *****-****-computer SecurityAgent[92]: MechanismDestroy 0x5b31950 retainCount 1
    Jan 17 19:31:10 *****-****-computer authorizationhost[82]: MechanismDestroy 0x1d2de70 retainCount 2
    Jan 17 19:31:10 *****-****-computer loginwindow[23]: Login Window - Returned from Security Agent
    Jan 17 19:31:10 *****-****-computer loginwindow[23]: USER_PROCESS: 23 console
    Jan 17 19:31:10 *****-****-computer com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[79]): Exited: Terminated
    Jan 17 19:31:10 *****-****-computer com.apple.launchctl.Aqua[110]: launchctl: Please convert the following to launchd: /etc/mach_init_per_user.d/RemoteUI.plist
    Jan 17 19:31:10 *****-****-computer com.apple.launchd[108] (org.x.startx): Unknown key for boolean: EnableTransactions
    Jan 17 19:31:10 *****-****-computer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/ATSServer[118]: (-3230) Cannot use ATS Persistent Store - switching to old FODB cache code
    Jan 17 19:31:13 *****-****-computer /System/Library/CoreServices/coreservicesd[43]: SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(***** ***'s Public Folder) returned -14135
    Jan 17 19:31:18 *****-****-computer /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer[1 22]: CPSGetProcessInfo(): This call is deprecated and should not be called anymore.
    Jan 17 19:31:18 *****-****-computer /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer[1 22]: CPSPBGetProcessInfo(): This call is deprecated and should not be called anymore.
    Jan 17 19:32:21 *****-****-computer Cocktail[129]: Cocktail 4.7 launched.
    Jan 17 19:32:24 *****-****-computer com.apple.FolderActions.enabled[141]: launchctl: Error unloading: com.apple.FolderActions.folders
    Jan 17 19:32:32 *****-****-computer authexec[146]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:32 *****-****-computer Cocktail[129]: ***** *** authenticated.
    Jan 17 19:32:32 *****-****-computer authexec[149]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:32 *****-****-computer authexec[151]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:32 *****-****-computer authexec[153]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:32 *****-****-computer authexec[155]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:32 *****-****-computer authexec[157]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:32 *****-****-computer authexec[159]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:32 *****-****-computer authexec[161]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:32 *****-****-computer authexec[163]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:32 *****-****-computer authexec[165]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:32 *****-****-computer authexec[167]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:32 *****-****-computer authexec[169]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:32 *****-****-computer authexec[171]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:32 *****-****-computer authexec[173]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:32 *****-****-computer authexec[175]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:32 *****-****-computer authexec[177]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:32 *****-****-computer authexec[179]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:38 *****-****-computer defaults[184]: \nThe domain/default pair of (com.apple.spotlight, DictionaryLookupEnabled) does not exist
    Jan 17 19:32:38 *****-****-computer defaults[185]: \nThe domain/default pair of (com.apple.spotlight, CalculationEnabled) does not exist
    Jan 17 19:32:38 *****-****-computer defaults[186]: \nThe domain/default pair of (com.apple.systempreferences, TMShowUnsupportedNetworkVolumes) does not exist
    Jan 17 19:32:38 *****-****-computer authexec[188]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:38 *****-****-computer authexec[190]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:38 *****-****-computer defaults[190]: \nThe domain/default pair of (/System/Library/LaunchDaemons/com.apple.backupd-attach, Disabled) does not exist
    Jan 17 19:32:38 *****-****-computer defaults[191]: \nThe domain/default pair of (com.apple.TimeMachine, DoNotOfferNewDisksForBackup) does not exist
    Jan 17 19:32:38 *****-****-computer defaults[192]: \nThe domain/default pair of (com.apple.finder, _FXShowBackgroundAnimation) does not exist
    Jan 17 19:32:38 *****-****-computer authexec[194]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:39 *****-****-computer authexec[204]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:39 *****-****-computer defaults[204]: \nThe domain/default pair of (com.apple.loginwindow, StartupDelay) does not exist
    Jan 17 19:32:39 *****-****-computer authexec[206]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:39 *****-****-computer defaults[206]: \nThe domain/default pair of (com.apple.loginwindow, Kiosk) does not exist
    Jan 17 19:32:42 *****-****-computer defaults[207]: \nThe domain/default pair of (com.apple.desktopservices, DSDontWriteNetworkStores) does not exist
    Jan 17 19:32:47 *****-****-computer authexec[213]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:32:48 *****-****-computer authexec[215]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:44:05 *****-****-computer Cocktail[129]: System log (/private/var/log/system.log) has been saved to /Users/********/Library/Logs/System LOg 2.log.
    Jan 17 19:44:45 *****-****-computer fseventsd[27]: log dir: /Volumes/NO NAME/.fseventsd getting new uuid: 2DADE658-7648-47A4-A16F-8B77B56B575C
    Jan 17 19:46:33 *****-****-computer Cocktail[246]: Cocktail 4.7 launched.
    Jan 17 19:46:34 *****-****-computer [0x0-0x1b01b].com.apple.systemevents[254]: com.apple.FolderActions.enabled: Already loaded
    Jan 17 19:46:36 *****-****-computer authexec[257]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:46:36 *****-****-computer Cocktail[246]: ***** *** authenticated.
    Jan 17 19:46:36 *****-****-computer authexec[260]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:46:36 *****-****-computer authexec[262]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:46:36 *****-****-computer authexec[264]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:46:36 *****-****-computer authexec[266]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:46:36 *****-****-computer authexec[268]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:46:36 *****-****-computer authexec[270]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:46:36 *****-****-computer authexec[272]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:46:37 *****-****-computer authexec[274]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:46:37 *****-****-computer authexec[276]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:46:37 *****-****-computer authexec[278]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:46:37 *****-****-computer authexec[280]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:46:37 *****-****-computer authexec[282]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:46:37 *****-****-computer authexec[284]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:46:37 *****-****-computer authexec[286]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:46:37 *****-****-computer authexec[288]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:46:37 *****-****-computer authexec[290]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:46:39 *****-****-computer defaults[292]: \nThe domain/default pair of (com.apple.desktopservices, DSDontWriteNetworkStores) does not exist
    Jan 17 19:46:44 *****-****-computer authexec[298]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid
    Jan 17 19:46:44 *****-****-computer authexec[300]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid

    Hi,
    Yes, I did resolve it - it was the graphics card. Changed that, updated OS X and it was done.
    I can't now remember exactly which card I used, and I'm away at the moment so I can't get to the infomation, but I do remember that it was a full length card with a large heatsink, and was a bit of a pig to squeeze into the chassis!
    Had to buy an adaptor for the second monitor connection, but that didn't cause any hassle. I got the card and cable from the local Apple Store.
    It also theoretically needed a later version of OS X than was already there, but since it allowed me to boot off the CD, that didn't matter (and it worked with the old one anyway, as it turned out).
    Oh, and also of course, although it's a bog standard PC card, you have to pay way over the odds for it because it has to have different PROMS for a Mac. (Thank you Apple.)  Just part of the price we all have to pay for using Macs.
    I seem to remember that there was a certain amount of dancing involved in upgrading the OS afterwards (might have had to do one step twice), but nothing that unusual.
    Hope this helps,
    All the best,
    Brian

  • Network.service won't boot

    Hi there,
    I just installed arch on my Thinkpad t42p which has a ipw2100 wireless chip. I configured the whole network manually and a corresponding systemd entry. Sometimes the network comes up at boot at sometimes it doesn't. When it doesn't boot I still can start it manually with
    # systemctl start network
    Why could it be that it sometimes boots and sometimes it doesn't?
    Last edited by dead_kenny (2012-11-10 08:35:03)

    Thx for the link skunktrader. Now I fixed the matter by asining a udev rule to the network interfaces as described in the wiki.
    Now I installed arch on an ASUS notebook where the interfaces don't shift during boot but there the network.service also won't boot. I have to start the service manually after boot. The output of
    systemctl /usr/lib/systemd/systemd
    doesn't present the Network Connectivity until I start it manually. Could there be another reason for this? E.g. driver starts to late? How should I look for why systemd cannot start boot the network.service?

  • System won't boot. INIT: No inittab file found Enter runlevel:

    After the latest update that changed how intel ucode is updated, my system won't boot.
    I think I missed a line when I edited "/etc/grub.d/10_linux" and ran grub-mkconfig -o /boot/grub/grub.cfg.
    Any ideas on how to fix this?
    I can't run grub-mkconfig from another machine, as it uses the live kernel info.
    Any help would be greatly appreciated. Otherwise I'll have to reinstall

    TheSaint wrote:
    SyXbiT wrote:
    But I still get the error:
    system won't boot. INIT: No inittab file found
    Enter runlevel:
    It seems to me that you've an old Arch version. inittab is deprecated AFAIK.
    What is the Arch iso version?
    That would probably be mid-2012 at the very latest I think as that's when I remember completely moving over to systemd...
    @SyXbiT: Are you using the current Arch install ISO?

  • Won't boot, menu.lst wrong?

    Hi!
    I've been useing ubuntu for abit more than a month now, and I wanted to try something else. Archlinux looked very good, and I've installed it.
    I got three harddrives.
    hda(storage)
    sda(ubuntu with grub)
    sdb(archlinux on sdb3)
    I wanted to use grub from ubuntu. So I added this:
    # (0) Arch Linux
    title Arch Linux(sdb)
    root (hd2,2)
    kernel /boot/vmlinuz26 root=/dev/sdb3 ro vga=795
    initrd /boot/kernel26.img
    When i try to boot it with that, I got some kind of kernel panic. I used alot of time to figure out what was wrong(6-7 hours =S ). Then I went to the grub installation on arch, and found out that it said:
    # (0) Arch Linux
    title Arch Linux(sdc)
    root (hd2,2)
    kernel /boot/vmlinuz26 root=/dev/sdc3 ro vga=795
    initrd /boot/kernel26.img
    I could now boot arch, and I followed the newbeginners guide (got everything to work).
    Then, after a reboot, i cant get back in arch. This is what happens.(img)
    So I added the one i thought was right:
    # (0) Arch Linux
    title Arch Linux(sdb)
    root (hd2,2)
    kernel /boot/vmlinuz26 root=/dev/sdb3 ro vga=795
    initrd /boot/kernel26.img
    What happens if I use this one is this(click click img)
    Does anyone know what I've done wrong and what I have to do? Please ask if there is something you want to know.
    Last edited by blackslash (2007-05-09 21:27:42)

    Thanks for the answers rayjgu3 and smoon.
    So ... I have been trying for a while now. And I still can't make my archlinux boot.
    I have tried configure mkinitcpio.conf in different ways, and tried with both boot options every time("root=/dev/sdb3" and "root=/dev/sdc3" in menu.lst)
    MODULES="ext3"
    HOOKS="base udev autodetect sata filesystems"
    MODULES="ext3"
    HOOKS="base udev autodetect ide sata filesystems"
    MODULES="ext3"
    HOOKS="base udev autodetect sata ide filesystems"
    MODULES="ext3"
    HOOKS="base udev sata ide autodetect filesystems"
    MODULES="ext3"
    HOOKS="base udev ide sata autodetecte filesystems"
    MODULES="ide_via sata_via ext3"
    HOOKS="base udev autodetect sata ide filesystems"
    MODULES="sata_via ide_via ext3"
    HOOKS="base udev autodetect sata ide filesystems"
    (and also with ata_generic in some different combinations, in modules.)
    Stupid as I am, i didn't make a backup of the original mkinitcpi.conf. I got the default hooks, and I'm 99% sure that I remember the default modules, but still, it won't boot.
    Im getting a bit frustrated.
    I get the same errors; kernel panic when root=/dev/sdc3 and the other one(look at img in first post) when useing root=/dev/sdb3.
    When useing the root=/dev/sdb3, it will after 2-3 mins standing still at udev get in to some kind of archlinux recovery mode. While in recoverymode, I have done fdisk -l, and the drive with archlinux is called sdb3, all the time.
    Can I in some kind of way change my archlinux, so it will boot from sdb? Or do I have to get my drive with arch on as sdc, if I want to make it boot again? Can anyone tell me what I'm doing wrong?
    Thanks

Maybe you are looking for

  • Connecting. iPad air to hp printer

    Not able to connect iPad to printer

  • Satellite C870-11G - AC power adapter compatibility question

    I have a C870-11G. It uses power adapter part no PA3917U-1ACA which recently became damaged when someone tripped on the cable and it bent the end which connects to the laptop. I used to have a Toshiba C660D-10W a few years ago and still have the powe

  • Questions on DMS connector for KM

    Hi, I have two questions for this BP: I have installed this pachage into my portal 7.0. VariantPrefix is configured with 'KM' in  "System Administration -> System Configuration  ->  Knowledge Management  -> Content Management  -> Repository Managers 

  • Authentication on Web Service

    Hi, I would like to know how includes the params for authentication in WSDL. I did a example, but i had to fill user and password on box of authentication of the Internet Explorer when Web Service went executed and our costumer don't want to inform t

  • Objects disappear in preview mode

    I am using InDesign CS3. I have placed drawings from Illustrator CS3 on a page and also have text on the page. When I work in normal viewing mode I can see all the text and drawings. When I go to preview mode all of the objects are not visible (text