[solved] grub install fails /boot/grub is not readable

virtualbox install
single partition install (well, I have two partitions, #2 is / and #1 is the BIOS partition as defined in the install docs)
when I get to the stage of installing grub, I use :
grub-install --target=i386-pc --recheck /dev/sda
which fails with
Path '/boot/grub' is not readable by GRUB on boot. Installation is impossible. Aborting"
it is ext4
fstab looks correct. It shows one entry for
/dev/sda1 / ext4
I am not using UUID although when I did the result was the same.
when run with debug, the problem is
/usr/bin/grub-probe -t fs /boot/grub
results in path no readable.
when I run the grub-probe inside the chroot, I get error: unknown filesystem
haven't had this before. This is the first time I've tried a GPT install.
It is virtualbox 4.2.18
I
Last edited by timrichardson (2013-10-15 10:10:50)

Ah, my mistake was an incorrect partition table back when I partitioned the disk. I did not make a partition table for GPT partitions.

Similar Messages

  • Grub-install fails to install core.img to boot partition

    I am trying to reinstall Arch onto a Dell Precision T3600 workstation, where it used to work fine, but I am stuck at the booloader step.
    Details:
    1. I have only one disk, partioned with gpt.
    2. I am using Grub with Bios
    3. As per installation instructions (preliminary requirements, BIOS systems), I created a 1007KiB boot partition at the beginning of the disk, of type ef02.
        The partition (which is umber 5 in my partition table) goes from sector 34 to sector 2047
    4. I mounted the root partition to /mnt, arch-chroot'd into it, and ran
    # grub-install --target=i386-pc --recheck --debug /dev/sdx
    # grub-mkconfig -o /boot/grub/grub.cfg
    5. I generated the /boot/grub.cfg file with the recommended
    # grub-mkconfig -o /boot/grub/grub.cfg
    Results:
    when I try to boot, grub starts, but it cannot find anything to boot from and drops me into its shell.
    Furthermore (this may be unrelated), when I take a look at the dis again (after rebooting from the install disk), I see that the gpt partition table is corrupted. Exact message  from gdisk is:
    Caution: invalid backup GPT header, but valid main header: regenerating backup header from main header:
    Partition table scan:
    MBR: protective
    BSD: not present
    APM: not present
    GPT: damaged
    Can anyone tell me where I am going wrong? The Installation manual is not very explicit on how to deal with the (very small) boot partition. Is grub-install supposed to create the core.img file even when the partition is not mounted? Or should it be mounted. It certainly cannot contain eveyrthing that goes into /boot (which is over 100Mb).
    Thanks for the help

    Head_on_a_Stick wrote:
    Your partition table is corrupted; you could clear it using:
    # dd if=/dev/zero of=/dev/sd<x> bs=512 count=1; sync
    Then use gdisk to recreate your partition table and re-install.
    Alternatively, you could ask gdisk to re-create the backup GPT header from the main header: start up the program & press "r" followed by "d".
    I had already fixed the partition table exactly as you suggested---sorry for not having been clear. It still does not boot. 
    Head_on_a_Stick wrote:
    Your partition table is corrupted; you could clear it using:
    If it still will not boot, post your /boot/grub/grub.cfg along with the output of:
    # gdisk -l /dev/sd<x>
    lsblk -f
    Here they are:
    /boot/grub.cfg:
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    if [ "${next_entry}" ] ; then
    set default="${next_entry}"
    set next_entry=
    save_env next_entry
    set boot_once=true
    else
    set default="0"
    fi
    if [ x"${feature_menuentry_id}" = xy ]; then
    menuentry_id_option="--id"
    else
    menuentry_id_option=""
    fi
    export menuentry_id_option
    if [ "${prev_saved_entry}" ]; then
    set saved_entry="${prev_saved_entry}"
    save_env saved_entry
    set prev_saved_entry=
    save_env prev_saved_entry
    set boot_once=true
    fi
    function savedefault {
    if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
    fi
    function load_video {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    fi
    if [ x$feature_default_font_path = xy ] ; then
    font=unicode
    else
    insmod part_gpt
    insmod ext2
    set root='hd0,gpt3'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3 74c69286-1775-44de-90c8-3834585da6b6
    else
    search --no-floppy --fs-uuid --set=root 74c69286-1775-44de-90c8-3834585da6b6
    fi
    font="/usr/share/grub/unicode.pf2"
    fi
    if loadfont $font ; then
    set gfxmode=auto
    load_video
    insmod gfxterm
    set locale_dir=$prefix/locale
    set lang=en_US
    insmod gettext
    fi
    terminal_input console
    terminal_output gfxterm
    if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=5
    # Fallback normal timeout code in case the timeout_style feature is
    # unavailable.
    else
    set timeout=5
    fi
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/10_linux ###
    ### END /etc/grub.d/10_linux ###
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    ### END /etc/grub.d/40_custom ###
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f ${config_directory}/custom.cfg ]; then
    source ${config_directory}/custom.cfg
    elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
    source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    ### BEGIN /etc/grub.d/60_memtest86+ ###
    ### END /etc/grub.d/60_memtest86+ ###
    lsblk -f (sda1 is the swap partition, sda5 is the boot partition):
    NAME FSTYPE LABEL UUID MOUNTPOINT
    sda
    sda1
    sda3 /
    sda4 /home
    sda5
    sr0
    loop0
    loop1
    arch_root-image /etc/resolv.conf
    loop2
    arch_root-image /etc/resolv.conf
    Finally, here is the partition table from gdisk -l
    GPT fdisk (gdisk) version 0.8.10
    Partition table scan:
    MBR: protective
    BSD: not present
    APM: not present
    GPT: present
    Found valid GPT with protective MBR; using GPT.
    Disk /dev/sda: 1953525168 sectors, 931.5 GiB
    Logical sector size: 512 bytes
    Disk identifier (GUID): 8B675D08-1A4A-44D3-ADC3-A7763E331455
    Partition table holds up to 128 entries
    First usable sector is 34, last usable sector is 1953525134
    Partitions will be aligned on 8-sector boundaries
    Total free space is 0 sectors (0 bytes)
    Number Start (sector) End (sector) Size Code Name
    1 2048 67112959 32.0 GiB 8200 Linux swap
    3 67112960 276828159 100.0 GiB 8300 Linux filesystem
    4 276828160 1953525134 799.5 GiB 8300 Linux filesystem
    5 34 2047 1007.0 KiB EF02 BIOS boot partition

  • [solved] /boot/grub/grub.cfg installed as /boot/grub/grub.cfg.pacnew

    Hello there,
    With the latest update of grub-common I got the following message:
    ( 3/15) upgrading grub-common [################################################################] 100%
    warning: /boot/grub/grub.cfg installed as /boot/grub/grub.cfg.pacnew
    However, should I reflect the changes of grub.cfg.pacnew or simply ignore it because grub.cfg is generated automatically?
    Last edited by orschiro (2013-05-29 05:08:19)

    koz wrote:
    cfr wrote:
    Natanji wrote:I just broke my system with this, so I think the package should *at least* post a notice to the user asking him to run "grub-mkconfig -o /boot/grub/grub.cfg" - or simply doing so post-installation, even. I know, my fault, but it's still really easy to overlook...
    Since automating it would make it virtually impossible to maintain a manually configured grub.cfg, I disagree. Arch does not do that stuff automatically. Even for those who do not hand edit the config file, it is likely to break things if people have more complex setups. (For example, in some cases, grub will not find an OS unless the partition is mounted and it might not be mounted.) Actually, not even Fedora does this automatically although I suspect that is considered a bug.
    As for the warning, pacman does warn you. It tells you it has installed a *.pacnew file. That tells you two things: (1) you needed to customise the previous default config, and (2) the default config has changed. That copying the pacnew over your old config will break things is standard: blindly copying *any* pacnew over your old, customised file will break things. I agree that it breaks things in a bigger way in this case but the principle is exactly the same. That is not to say that I think a reminder would be out of place - other boot loaders'managers do post such messages. But being told about a pacnew or a pacsave file *is* notification from grub that user intervention is required and this is usually because somebody who knows the system and customisations made previously is required to adapt the changes to accommodate the update. i.e. it is usually because blindly overwriting stuff is very likely to break things.
    It is automated! WTF?!
    Not really. One can hand edit grub.cfg and the package does not interfere with that.
    This is what pacman threw out at me:
    warning: /etc/default/grub saved as /etc/default/grub.pacsave
    warning: /boot/grub/grub.cfg saved as /boot/grub/grub.cfg.pacsave
    ( 1/11) upgrading cgminer [#######################################] 100%
    ( 2/11) upgrading e2fsprogs [#######################################] 100%
    ( 3/11) installing grub [#######################################] 100%
    Copying /boot/grub/grub.cfg.pacsave to /boot/grub/grub.cfg
    Is this intended??
    It, thankfully, didn't break anything but this isn't what should have happened. I am sure it will ruin someone's day.
    I agree this is strange. I have no idea why it moves your old config to a .pacsave and then copies that .pacsave back to grub.cfg. Effectively what it does is just make a copy of your config as .pacsave but I don't know why it does that.
    It is in fact quite unlikely to break anything since it is very likely that an existing grub.cfg will work with the new version of grub. Obviously people should check but if somebody doesn't it is not likely to do any harm. I am not sure what you did to break your configuration but I doubt that you copied grub.cfg.pacsave to grub.cfg.

  • Update-grub (grub-mkconfig -o /boot/grub/grub.cfg)

    okay   so i use a bash script to generate my grub config     its just an alias to grub-mkconfig -o /boot/grub/grub.cfg  but with the last update    (today) i am now getting this
    [fennectech@FennecNET_Mobile ~]$ sudo update-grub
    Generating grub configuration file ...
    /proc/devices: No entry for device-mapper found
    /proc/devices: No entry for device-mapper found
    /proc/devices: No entry for device-mapper found
    /proc/devices: No entry for device-mapper found
    /proc/devices: No entry for device-mapper found
    /proc/devices: No entry for device-mapper found
    /proc/devices: No entry for device-mapper found
    /proc/devices: No entry for device-mapper found
    /proc/devices: No entry for device-mapper found
    /proc/devices: No entry for device-mapper found
    Warning: Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported.
    /proc/devices: No entry for device-mapper found
    /proc/devices: No entry for device-mapper found
    Found linux image: /boot/vmlinuz-linux
    Found initrd image: /boot/initramfs-linux.img
    /proc/devices: No entry for device-mapper found
    /proc/devices: No entry for device-mapper found
    /proc/devices: No entry for device-mapper found
    /proc/devices: No entry for device-mapper found
    /proc/devices: No entry for device-mapper found
    /proc/devices: No entry for device-mapper found
    /proc/devices: No entry for device-mapper found
    /proc/devices: No entry for device-mapper found
    Found fallback initramfs image: /boot/initramfs-linux-fallback.img
    /proc/devices: No entry for device-mapper found
    /proc/devices: No entry for device-mapper found
    done
    i am really worried    not sure what this means
    EDIT______
    [fennectech@FennecNET_Mobile ~]$ sudo update-grub
    [sudo] password for fennectech:
    Generating grub configuration file ...
    Warning: Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported.
    Found linux image: /boot/vmlinuz-linux
    Found initrd image: /boot/initramfs-linux.img
    Found fallback initramfs image: /boot/initramfs-linux-fallback.img
    done
    [fennectech@FennecNET_Mobile ~]$
    now this is after a reboot
    Last edited by fennectech (2014-07-08 18:27:09)

    Not a Sysadmin issue, moving to NC...

  • Install Failed: OS X could not be installed on your computer.

    So my Macbook was bought last December 2012. It's specs should be able to run Mavericks.
    I've downloaded the software already, so far so good.
    When installation starts, it fails and I get this message:
    "Install Failed: OS X could not be installed on your computer. OS X can't be installed on the disk because a recovery system can't be created. Visit www.apple.com/support/no-recovery to learn more"
    Now it tells me to go to this page:
    http://support.apple.com/kb/HT4649
    Then I find the message above and tells me to go here:
    http://support.apple.com/kb/TS3926
    Then I try the solution in the 2nd link and still the installation fails.
    Please note that I have a Windows 7 BootCamp Partition that I would as much as possible not delete or reformat as I have too many important stuff there.
    Any ideas?

    .Impact wrote:
    Philly_Phan wrote:
    .Impact wrote:
    Philly_Phan wrote:
    My WAG is that you have a HD space limitation.  I've never used Boot Camp so bear with me.  Is there any way that you could back up the contents elsewhere so that you can reformat and repartition?
    I have an External Hard Drive here but it's currently being used as storage space for some of my media. Is it possible to backup to a partition of an external hard drive?
    I've never done it but it should be possible.  Don't forget that a "partition" acts like a real drive and it is a real drive in every sense of the word except that it shares a physical disc with another drive.
    Will try that once I get home from University later. Should I back up both OS X and Bootcamp into the hard drive or just one of them? Then reinstall Mountain Lion, then install Mavericks? Did I get that right?
    I don't see any reason why you need to reinstall Mountain Lion.  It's been a long time since I've done any partitioning but, if I remember correctly, you can enlarge the main partition provided that there is no data in the secondary (Boot Camp) partition.  If I'm correct, you'd need to first back up Boot Camp, then erase the original BC partition, then resize the partitions and finally load Mavericks.

  • HT1338 Install failed OS X could not be installed on your computer

    when up grading I get the mesage Install failed OS X could not be installed on your computer and it will not go past the 17 min to go stage, any ideas please?

    Is your mac compatible with Mountain Lion? You can check the list of compatible machines here.

  • I have a DVD Acrobat Pro 9. I upgraded laptops and trying to install but the DVD is not readable. How can I get a new DVD or Download Acrobat Pro 1. The product is registered and I have the serial number. PS: Contacting Adobe on this issue is impossible..

    I have a DVD Acrobat Pro 9. I upgraded laptops and trying to install but the DVD is not readable. How can I get a new DVD or Download Acrobat Pro 1. The product is registered and I have the serial number. PS: Contacting Adobe on this issue is impossible... direct support stinks.

    Download AA 9 Pro from http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html. Make a new backup for your archive. You might also take the DVD to your library to see if it is a drive problem. You might also carefully clean the DVD with water and soap (do not use anything that would scratch the surface or you have destroyed it for sure) and see if that solves the problem. This is particularly an issue if you have finger prints or other crud on the DVD. However, it could also be a bad drive as I mentioned. Hopefully the download solves your problem in any case (I would backup the download to CD and/or backup HD).

  • [Solved]wine install fails

    Wine install fails due to
    [cii@cii1 ~]$ sudo pacman -S wine
    resolving dependencies...
    looking for inter-conflicts...
    Targets (18): lib32-acl-2.2.51-2 lib32-attr-2.4.46-2 lib32-bzip2-1.0.6-1
    lib32-fontconfig-2.8.0-4 lib32-freetype2-2.4.10-1
    lib32-gcc-libs-4.7.1-4.1 lib32-gettext-0.18.1.1-2
    lib32-libice-1.0.8-1 lib32-libsm-1.2.1-1
    lib32-libxcursor-1.1.13-1 lib32-libxi-1.6.1-1
    lib32-libxrandr-1.3.2-2 lib32-libxrender-0.9.7-1
    lib32-libxt-1.1.3-1 lib32-mesa-8.0.3-3.2
    lib32-util-linux-2.21.2-1 lib32-zlib-1.2.7-1 wine-1.5.8-1
    Total Download Size: 0.13 MiB
    Total Installed Size: 247.69 MiB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from multilib...
    lib32-mesa-8.0.3-3.... 4.2 KiB 38.7K/s 00:00 [######################] 100%
    (18/18) checking package integrity [######################] 100%
    error: failed to commit transaction (invalid or corrupted package)
    Errors occurred, no packages were upgraded.
    [cii@cii1 ~]$ sudo pacman -S wine --debug
    debug: parseconfig: options pass
    debug: config: attempting to read file /etc/pacman.conf
    debug: config: finish section '(null)'
    debug: config: new section 'options'
    debug: config: HoldPkg: pacman
    debug: config: HoldPkg: glibc
    debug: config: SyncFirst: pacman
    debug: config: arch: x86_64
    debug: config: finish section 'options'
    debug: config: new section 'catalyst'
    debug: config: finish section 'catalyst'
    debug: config: new section 'core'
    debug: config file /etc/pacman.conf, line 80: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'core'
    debug: config: new section 'extra'
    debug: config file /etc/pacman.conf, line 84: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'extra'
    debug: config: new section 'community'
    debug: config file /etc/pacman.conf, line 92: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'community'
    debug: config: new section 'multilib'
    debug: config file /etc/pacman.conf, line 103: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'multilib'
    debug: config: finished parsing /etc/pacman.conf
    debug: setup_libalpm called
    debug: option 'logfile' = /var/log/pacman.log
    debug: option 'gpgdir' = /etc/pacman.d/gnupg/
    debug: option 'cachedir' = /var/cache/pacman/pkg/
    debug: parseconfig: repo pass
    debug: config: attempting to read file /etc/pacman.conf
    debug: config: finish section '(null)'
    debug: config: new section 'options'
    debug: config: finish section 'options'
    debug: config: new section 'catalyst'
    debug: config: SigLevel: Never
    debug: config: finish section 'catalyst'
    debug: registering sync database 'catalyst'
    debug: database path for tree catalyst set to /var/lib/pacman/sync/catalyst.db
    debug: adding new server URL to database 'catalyst': http://catalyst.apocalypsus.net/repo/catalyst/x86_64
    debug: config: new section 'core'
    debug: config: SigLevel: PackageRequired
    debug: config file /etc/pacman.conf, line 80: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'core'
    debug: registering sync database 'core'
    debug: database path for tree core set to /var/lib/pacman/sync/core.db
    debug: "/var/lib/pacman/sync/core.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/core.db.sig could not be opened
    debug: missing optional signature
    debug: adding new server URL to database 'core': http://archlinux.supsec.org/core/os/x86_64
    debug: adding new server URL to database 'core': http://archlinux.surlyjake.com/archlinux/core/os/x86_64
    debug: adding new server URL to database 'core': http://cake.lib.fit.edu/archlinux/core/os/x86_64
    debug: adding new server URL to database 'core': http://cosmos.cites.illinois.edu/pub/archlinux/core/os/x86_64
    debug: adding new server URL to database 'core': http://ftp.osuosl.org/pub/archlinux/core/os/x86_64
    debug: adding new server URL to database 'core': http://hive.ist.unomaha.edu/archlinux/core/os/x86_64
    debug: config: new section 'extra'
    debug: config: SigLevel: PackageRequired
    debug: config file /etc/pacman.conf, line 84: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'extra'
    debug: registering sync database 'extra'
    debug: database path for tree extra set to /var/lib/pacman/sync/extra.db
    debug: "/var/lib/pacman/sync/extra.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/extra.db.sig could not be opened
    debug: missing optional signature
    debug: adding new server URL to database 'extra': http://archlinux.supsec.org/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://archlinux.surlyjake.com/archlinux/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://cake.lib.fit.edu/archlinux/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://cosmos.cites.illinois.edu/pub/archlinux/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://ftp.osuosl.org/pub/archlinux/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://hive.ist.unomaha.edu/archlinux/extra/os/x86_64
    debug: config: new section 'community'
    debug: config: SigLevel: PackageRequired
    debug: config file /etc/pacman.conf, line 92: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'community'
    debug: registering sync database 'community'
    debug: database path for tree community set to /var/lib/pacman/sync/community.db
    debug: "/var/lib/pacman/sync/community.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/community.db.sig could not be opened
    debug: missing optional signature
    debug: adding new server URL to database 'community': http://archlinux.supsec.org/community/os/x86_64
    debug: adding new server URL to database 'community': http://archlinux.surlyjake.com/archlinux/community/os/x86_64
    debug: adding new server URL to database 'community': http://cake.lib.fit.edu/archlinux/community/os/x86_64
    debug: adding new server URL to database 'community': http://cosmos.cites.illinois.edu/pub/archlinux/community/os/x86_64
    debug: adding new server URL to database 'community': http://ftp.osuosl.org/pub/archlinux/community/os/x86_64
    debug: adding new server URL to database 'community': http://hive.ist.unomaha.edu/archlinux/community/os/x86_64
    debug: config: new section 'multilib'
    debug: config: SigLevel: PackageRequired
    debug: config file /etc/pacman.conf, line 103: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'multilib'
    debug: registering sync database 'multilib'
    debug: database path for tree multilib set to /var/lib/pacman/sync/multilib.db
    debug: "/var/lib/pacman/sync/multilib.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/multilib.db.sig could not be opened
    debug: missing optional signature
    debug: adding new server URL to database 'multilib': http://archlinux.supsec.org/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://archlinux.surlyjake.com/archlinux/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://cake.lib.fit.edu/archlinux/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://cosmos.cites.illinois.edu/pub/archlinux/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://ftp.osuosl.org/pub/archlinux/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://hive.ist.unomaha.edu/archlinux/multilib/os/x86_64
    debug: config: finished parsing /etc/pacman.conf
    debug: loading package cache for repository 'local'
    debug: added 419 packages to package cache for db 'local'
    debug: loading package cache for repository 'catalyst'
    debug: opening database archive /var/lib/pacman/sync/catalyst.db
    debug: added 8 packages to package cache for db 'catalyst'
    debug: loading package cache for repository 'core'
    debug: opening database archive /var/lib/pacman/sync/core.db
    debug: added 195 packages to package cache for db 'core'
    debug: loading package cache for repository 'extra'
    debug: opening database archive /var/lib/pacman/sync/extra.db
    debug: added 2785 packages to package cache for db 'extra'
    debug: loading package cache for repository 'community'
    debug: opening database archive /var/lib/pacman/sync/community.db
    debug: added 2570 packages to package cache for db 'community'
    debug: loading package cache for repository 'multilib'
    debug: opening database archive /var/lib/pacman/sync/multilib.db
    debug: added 144 packages to package cache for db 'multilib'
    debug: adding package 'wine'
    debug: adding package wine-1.5.8-1 to the transaction add list
    resolving dependencies...
    debug: resolving target's dependencies
    debug: started resolving dependencies
    debug: checkdeps: package wine-1.5.8-1
    debug: checkdeps: missing dependency 'lib32-fontconfig' for package 'wine'
    debug: checkdeps: missing dependency 'lib32-mesa' for package 'wine'
    debug: checkdeps: missing dependency 'lib32-libxcursor' for package 'wine'
    debug: checkdeps: missing dependency 'lib32-libxrandr' for package 'wine'
    debug: checkdeps: missing dependency 'lib32-libxi' for package 'wine'
    debug: checkdeps: missing dependency 'lib32-gettext' for package 'wine'
    debug: pulling dependency lib32-fontconfig (needed by wine)
    debug: pulling dependency lib32-mesa (needed by wine)
    debug: pulling dependency lib32-libxcursor (needed by wine)
    debug: pulling dependency lib32-libxrandr (needed by wine)
    debug: pulling dependency lib32-libxi (needed by wine)
    debug: pulling dependency lib32-gettext (needed by wine)
    debug: checkdeps: package lib32-fontconfig-2.8.0-4
    debug: checkdeps: missing dependency 'lib32-freetype2>=2.3.11' for package 'lib32-fontconfig'
    debug: pulling dependency lib32-freetype2 (needed by lib32-fontconfig)
    debug: checkdeps: package lib32-mesa-8.0.3-3.2
    debug: checkdeps: missing dependency 'lib32-libxt>=1.1.1' for package 'lib32-mesa'
    debug: checkdeps: missing dependency 'lib32-gcc-libs>=4.6.1' for package 'lib32-mesa'
    debug: pulling dependency lib32-libxt (needed by lib32-mesa)
    debug: pulling dependency lib32-gcc-libs (needed by lib32-mesa)
    debug: checkdeps: package lib32-libxcursor-1.1.13-1
    debug: checkdeps: missing dependency 'lib32-libxrender' for package 'lib32-libxcursor'
    debug: pulling dependency lib32-libxrender (needed by lib32-libxcursor)
    debug: checkdeps: package lib32-libxrandr-1.3.2-2
    debug: checkdeps: missing dependency 'lib32-libxrender' for package 'lib32-libxrandr'
    debug: checkdeps: package lib32-libxi-1.6.1-1
    debug: checkdeps: package lib32-gettext-0.18.1.1-2
    debug: checkdeps: missing dependency 'lib32-acl' for package 'lib32-gettext'
    debug: pulling dependency lib32-acl (needed by lib32-gettext)
    debug: checkdeps: package lib32-freetype2-2.4.10-1
    debug: checkdeps: missing dependency 'lib32-zlib' for package 'lib32-freetype2'
    debug: checkdeps: missing dependency 'lib32-bzip2' for package 'lib32-freetype2'
    debug: pulling dependency lib32-zlib (needed by lib32-freetype2)
    debug: pulling dependency lib32-bzip2 (needed by lib32-freetype2)
    debug: checkdeps: package lib32-libxt-1.1.3-1
    debug: checkdeps: missing dependency 'lib32-libsm' for package 'lib32-libxt'
    debug: pulling dependency lib32-libsm (needed by lib32-libxt)
    debug: checkdeps: package lib32-gcc-libs-4.7.1-4.1
    debug: checkdeps: package lib32-libxrender-0.9.7-1
    debug: checkdeps: package lib32-acl-2.2.51-2
    debug: checkdeps: missing dependency 'lib32-attr>=2.4.46' for package 'lib32-acl'
    debug: pulling dependency lib32-attr (needed by lib32-acl)
    debug: checkdeps: package lib32-zlib-1.2.7-1
    debug: checkdeps: package lib32-bzip2-1.0.6-1
    debug: checkdeps: package lib32-libsm-1.2.1-1
    debug: checkdeps: missing dependency 'lib32-libice' for package 'lib32-libsm'
    debug: checkdeps: missing dependency 'lib32-util-linux-ng' for package 'lib32-libsm'
    debug: pulling dependency lib32-libice (needed by lib32-libsm)
    debug: provider found (lib32-util-linux provides lib32-util-linux-ng)
    debug: pulling dependency lib32-util-linux (needed by lib32-libsm)
    debug: checkdeps: package lib32-attr-2.4.46-2
    debug: checkdeps: package lib32-libice-1.0.8-1
    debug: checkdeps: package lib32-util-linux-2.21.2-1
    debug: finished resolving dependencies
    debug: started sorting dependencies
    debug: sorting dependencies finished
    looking for inter-conflicts...
    debug: looking for conflicts
    debug: check targets vs targets
    debug: check targets vs targets
    debug: check targets vs db and db vs targets
    debug: check targets vs db
    debug: check db vs targets
    debug: checking dependencies
    debug: checkdeps: package lib32-zlib-1.2.7-1
    debug: checkdeps: package lib32-bzip2-1.0.6-1
    debug: checkdeps: package lib32-freetype2-2.4.10-1
    debug: checkdeps: package lib32-fontconfig-2.8.0-4
    debug: checkdeps: package lib32-libice-1.0.8-1
    debug: checkdeps: package lib32-util-linux-2.21.2-1
    debug: checkdeps: package lib32-libsm-1.2.1-1
    debug: checkdeps: package lib32-libxt-1.1.3-1
    debug: checkdeps: package lib32-gcc-libs-4.7.1-4.1
    debug: checkdeps: package lib32-mesa-8.0.3-3.2
    debug: checkdeps: package lib32-libxrender-0.9.7-1
    debug: checkdeps: package lib32-libxcursor-1.1.13-1
    debug: checkdeps: package lib32-libxrandr-1.3.2-2
    debug: checkdeps: package lib32-libxi-1.6.1-1
    debug: checkdeps: package lib32-attr-2.4.46-2
    debug: checkdeps: package lib32-acl-2.2.51-2
    debug: checkdeps: package lib32-gettext-0.18.1.1-2
    debug: checkdeps: package wine-1.5.8-1
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-zlib-1.2.7-1-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg lib32-zlib
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-bzip2-1.0.6-1-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg lib32-bzip2
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-freetype2-2.4.10-1-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg lib32-freetype2
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-fontconfig-2.8.0-4-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg lib32-fontconfig
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-libice-1.0.8-1-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg lib32-libice
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-util-linux-2.21.2-1-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg lib32-util-linux
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-libsm-1.2.1-1-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg lib32-libsm
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-libxt-1.1.3-1-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg lib32-libxt
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-gcc-libs-4.7.1-4.1-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg lib32-gcc-libs
    debug: setting download size 138244 for pkg lib32-mesa
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-libxrender-0.9.7-1-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg lib32-libxrender
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-libxcursor-1.1.13-1-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg lib32-libxcursor
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-libxrandr-1.3.2-2-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg lib32-libxrandr
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-libxi-1.6.1-1-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg lib32-libxi
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-attr-2.4.46-2-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg lib32-attr
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-acl-2.2.51-2-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg lib32-acl
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-gettext-0.18.1.1-2-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg lib32-gettext
    debug: found cached pkg: /var/cache/pacman/pkg/wine-1.5.8-1-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg wine
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    Targets (18): lib32-acl-2.2.51-2 lib32-attr-2.4.46-2 lib32-bzip2-1.0.6-1
    lib32-fontconfig-2.8.0-4 lib32-freetype2-2.4.10-1
    lib32-gcc-libs-4.7.1-4.1 lib32-gettext-0.18.1.1-2
    lib32-libice-1.0.8-1 lib32-libsm-1.2.1-1
    lib32-libxcursor-1.1.13-1 lib32-libxi-1.6.1-1
    lib32-libxrandr-1.3.2-2 lib32-libxrender-0.9.7-1
    lib32-libxt-1.1.3-1 lib32-mesa-8.0.3-3.2
    lib32-util-linux-2.21.2-1 lib32-zlib-1.2.7-1 wine-1.5.8-1
    Total Download Size: 0.13 MiB
    Total Installed Size: 247.69 MiB
    Proceed with installation? [Y/n] y
    debug: using cachedir: /var/cache/pacman/pkg/
    :: Retrieving packages from multilib...
    debug: url: http://archlinux.supsec.org/multilib/os/x86_64/lib32-mesa-8.0.3-3.2-x86_64.pkg.tar.xz
    debug: maxsize: 138244
    debug: opened tempfile for download: /var/cache/pacman/pkg/lib32-mesa-8.0.3-3.2-x86_64.pkg.tar.xz.part (wb)
    downloading lib32-mesa-8.0.3-3.2-x86_64.pkg.tar.xz...
    debug: curl returned error 0 from transfer
    debug: response code: 200
    debug: using cachedir: /var/cache/pacman/pkg/
    checking package integrity...
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-zlib-1.2.7-1-x86_64.pkg.tar.xz
    debug: sig data: iQEcBAABAgAGBQJPokRtAAoJEH8tQ0uXQeisMKoIAKwa7/myZVxPxiIoP/atCYekMxcl2/LDKzaoCKNVdrUdUfLnaSLPnNDFOb0LcYAZjbFxruRvF1Ojtc1drwjxGjbRKnWD9RNC5fRd0ZN6V/+2agKg0nooQd2TMH7M2cVYZefQTFslULb1fJco/14YIarGrVsGjTO4T8B3QycVcKk4LFTuTt8i9ALbzEDxDim3sJeYySsH7FBwcD9vuLSONGeMQFKnKEYl9O2y93Bapcqk6oIsNY8vPxcbU3T/l3HsSssgS6ZG9oAeQbafiBRkeQKTZPfX98q9bySrLYHAtjkEsciGhf4kuGUriwfKIlm36xz89nn2Rrc08DAwxDAodmM=
    debug: GPGME version: 1.3.1
    debug: GPGME engine info: file=/usr/bin/gpg, home=/etc/pacman.d/gnupg/
    debug: checking signature for /var/cache/pacman/pkg/lib32-zlib-1.2.7-1-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: 4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1336034413
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: 4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC, Pierre Schmitz <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-bzip2-1.0.6-1-x86_64.pkg.tar.xz
    debug: sig data: iQEcBAABAgAGBQJOOV5HAAoJEOjxi6FhUTe8tKAIAOA82aijL1mPu0UlK3NSXQ7IqltDEZVI1V3RAB22+FBNngj19Bu5KRw2XOel9ObDif1+gXA0kYJLG0K/MIVO3zue9ueTruDGvaOPPwFcMX2b9wbKwcfbJL5rxWdE6OX97scD3e61XMTn0UbeinJG8HOS4INhVdTuctgpczcMTMkmkq7+Ov14PC1v4HFEHhMslpjtt8/+/q+CtXOLQVFQO1CL8oFF+2EqttA01lth3v+XIMUssOJfakxsB5coY2RstGfk49US6YZN8TqOfDDoM9wVoeVDRDQtts7cOnmGb3eJRk3AWRmjxRXsSqOs/nOAYHh34QA9LR5QqzmytjiM9Ko=
    debug: checking signature for /var/cache/pacman/pkg/lib32-bzip2-1.0.6-1-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: F4DDD6DDCEC320B665F502AAE8F18BA1615137BC
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1312382535
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: F4DDD6DDCEC320B665F502AAE8F18BA1615137BC, Ionut Biru <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-freetype2-2.4.10-1-x86_64.pkg.tar.xz
    debug: sig data: iQIcBAABAgAGBQJP3FrLAAoJEG0WVcFM4cE+bLkQAJxaIZlWxgbz7UHu4WcMqjjzacMK0pRbX/NC6MO/3OKvCPEoI4UUUaKTU5jeHsIFbLt0rT8jnhiTjO2WhHoK3ds3GkEMdXI6ioVjvu5pGW96/y5aCzT+wTT4ZC1fJLe4e3VmxDGjRSXB9eC/jkQsYn8x5ddE6OoDwSwDQTQKQw3wgk3xkchnaWoDw5EKAOoonJA/QQ7IioIPjzQlc7s2hRUBAorDQYvu5KWZcSn/KG4KKzUYXsfGIY7m6lIfa6HUz+YUJnDAB68Bi0TMY46UY6ZMUGbLBloyxB0DSvPV5TXXN1PdqadS9Fe1yYwuhQxJwrHb7X/+tGF6lenXDVvm7scEOg/W+xDhIjJ6iDPusSLIaJ/l8iQpaGzpaPowWgdN+Vri0XFhYBhTRUAEz90AEADkNuV9RNZcF8RTw4Rcl3Tzuq9sm7kIWrVKdO7gSPr/bmSEDshUv4jUqddwI9AHPyXo0HUBnHV/kzEPeEYIM/nzD5PAC0yVG6nBk/0gPq9foqoK2A9LOSbEJTHHJGPof+YgxVKXmHKAqKlkcgwJstwBkAW4HH8ER2KKTMo4eOW/BIeu+fmSm8GnuoSXjiMPVdh8KkSzUT23XexF2E5VbkKkH2SiiD9gWuAj5fPFQ8P3uJ3wQxYw+AALh/zM9gYredtoxWu9YFJX3TXrOkoMrRB+
    debug: checking signature for /var/cache/pacman/pkg/lib32-freetype2-2.4.10-1-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1339841227
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E, Florian Pritz <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-fontconfig-2.8.0-4-x86_64.pkg.tar.xz
    debug: sig data: iQEcBAABAgAGBQJPMsOJAAoJEH8tQ0uXQeisrKUIAJYqx847RjgkMSvGYZBRooJtdvTPpvLilwG/VngfgQXEWSUhzIhKecmPkmCIaSBd3Fdh6ScLdX/TREUpqxhpX3BTddJk0TCRDKZE1AR3nP2IMNssB9hos8cKzmiOvkEUxRB1TUuzszwnp3nePyJLdeb/8PEeacxO6qHtOuSsvJrcjktwBgthM8GqzMjuvNwB8GnB9NYb3DRfAgcJy4UoY4y6+J58qzw9lElMc1v4WbAp0TR9PqrFXjNlb96j9oy/jXTTy63wGURPcLkY3xqrjnR5wrtD0zKbNy7D8P6Lg+xHZ/lEjahb1AmuW8H+BTA6Gdo1KjaNjTW7uAim9xSJ+1A=
    debug: checking signature for /var/cache/pacman/pkg/lib32-fontconfig-2.8.0-4-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: 4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1328726921
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: 4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC, Pierre Schmitz <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-libice-1.0.8-1-x86_64.pkg.tar.xz
    debug: sig data: iQEcBAABAgAGBQJPZe3GAAoJEAYJamrRzt2sQb4IALRdVJ8k6HvFXOLJGA5yPWGRVyn1dkaGXxfe9HEb9wMuzD+WvRfZhTGDL65yIemyRt9beR4jQJGmpm8WGxvikaM9bQ23Gjnh9rAd1uMymI2LX28A71YEijkazz00NVg5wRm6jIfb6NROMKsR9zit+JpYZrIZS1RUhmj9kP5c+MnNogDyrePT/OcWkAJng81/RlWZ/NVTVEedRiale6wdpLSZefKcro/F23hvCknUOaTFAUn7R6NwZqi7iD+S5SZAaxIuU2P9c0Pvw6U5ReEuvX3ABMbUO+bYVGFA+gRZtEzzhJimRrmTpZllRvYQHE/PAn21/YjuxhkOv5CBWCb6faI=
    debug: checking signature for /var/cache/pacman/pkg/lib32-libice-1.0.8-1-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: 535F8C0339450F054A4D282706096A6AD1CEDDAC
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1332080070
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: 535F8C0339450F054A4D282706096A6AD1CEDDAC, Laurent Carlier <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-util-linux-2.21.2-1-x86_64.pkg.tar.xz
    debug: sig data: iQEcBAABAgAGBQJP2w6FAAoJEB6yY4/1bAxTdAsH/3f62YRlJIlSngw9cSE7M/9Zw286SLlZe4Oxs7HQOvqxrG502XdSjGksdxhLLOu4bQo/EtgxmSBZGacj7KTTnH3sCPnD2s+pjLwsQuQ9CMyAk9kZ0rv93uRPiKusKjMWCdMMgHswJbkB13Je9I/u/X9E2eGpQVPREzhyiCZglJtP70/gXtT9s53wkIIHQGPemEsTSNRkinpJAmT3Ck4P5PECWU3G7KUBRO0k5faJEWM7oso7u3ZAFNS43nm3wVXjeHRpWQ0Kyl4Cd7DC9AukOs2AGT0mwoBqhpoU11B6YAYkKHZvnTK+Fcxcz78o5pOaK2aOngwhv2PRjegHTe2aQM8=
    debug: checking signature for /var/cache/pacman/pkg/lib32-util-linux-2.21.2-1-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: 487EACC08557AD082088DABA1EB2638FF56C0C53
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1339756165
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: 487EACC08557AD082088DABA1EB2638FF56C0C53, Dave Reisner <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-libsm-1.2.1-1-x86_64.pkg.tar.xz
    debug: sig data: iQEcBAABAgAGBQJPcD6IAAoJEH8tQ0uXQeis+sMH/jRQaC5dy9MGPDj8VnwIvONSi6/IWnFnuYQf2EMqkgA0ch3J/V7DUFZqh+o0IorgILCOC4laBuGpunccUptsUVG/0et9lbhAbF9nh08OhTsP18VWrcFfQfY7SQBvOj8ZJIgqj6Q/GLfUOkFo4icM8/S1/WPYgL2NWT1KYzVvWMrmmNifcN4iDulqBKtuFvsSH7d8QNaC8uLj0l7hO/lkFmDlabd8tPhn2en31cxwuALgTT3EniAhN0HuD4ds/smggkC+ysa9v5yr68Qexn9UcyMUxojYnTci0DVKe6LAG8cW6jNh9eN4/38hKsn+FopwRyFCAl2Z/79Bv3mHhU5cUco=
    debug: checking signature for /var/cache/pacman/pkg/lib32-libsm-1.2.1-1-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: 4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1332756104
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: 4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC, Pierre Schmitz <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-libxt-1.1.3-1-x86_64.pkg.tar.xz
    debug: sig data: iQEcBAABAgAGBQJPcD6hAAoJEH8tQ0uXQeispi4H/jsr+PJlIk4PufVsswlSRR5Cn176n41tv9RsdjKpBjZrnROXk9XcOki0Nbw/3m8Gjh7ARyF5MN6M6RrWv+10EiQ0UGLYA9tnPhNBthkSUARyIh7abipRuCJT3twEEYaLdYiYE99Ep8ZYuvEYnAitGoVj7KU9eK9KSCRlmylzDbAPU4mWOQbjPrOe0j/AH1SJcKwMH/DTl6NMTmh4bLYR9jhvSdL70zjHex2DpKndndYB/gboN8nV0783Xb1zMwzn3icV7Nd3dCSo3eiEukIRTL2q7Bddl93rLp+86vxBbFXxBtJF73H4vSoPEBViEUNIZnFU8yk5kPgucPMTfG3jGqs=
    debug: checking signature for /var/cache/pacman/pkg/lib32-libxt-1.1.3-1-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: 4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1332756129
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: 4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC, Pierre Schmitz <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-gcc-libs-4.7.1-4.1-x86_64.pkg.tar.xz
    debug: sig data: iQEcBAABAgAGBQJP+AxCAAoJEKXpKIxPpBX6E9wIAIFT9s8cRudfr1fYOp2VRGhNtERbrF+XW0L0xMTGDTeKYgp7DA+LOcHkhqBoyzJz/fgLbfUM0udNxg6qCwdHDe7sfoZOXLKjPZUXgxWtbqic5XcLgP0Z/COFJszhrnoLTV99jzy3lwHLDEk7NV5If8s7YVUHla5/LSsR5D4sti23EhWT0B/PSFHYsxijklrShWqnbELAoC7pQvdWnx8op1rZhDc8+nkd2FaMBleWVlRxhym2E1CNhPY2pbMXBsAuoX+6MH+fiK7b7v0lCVwUT7BTH7frJC3EQmKzuXCzD/nRjhcK45xYN6WZepPAflQKE1z+Liz/XOqXcr5Q8TNndQI=
    debug: checking signature for /var/cache/pacman/pkg/lib32-gcc-libs-4.7.1-4.1-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: 8218F88849AAC522E94CF470A5E9288C4FA415FA
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1341656130
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: 8218F88849AAC522E94CF470A5E9288C4FA415FA, Jan Alexander Steffens (heftig) <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: returning error 6 from _alpm_pkg_validate_internal : wrong or NULL argument passed
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-libxrender-0.9.7-1-x86_64.pkg.tar.xz
    debug: sig data: iQEcBAABAgAGBQJPcD33AAoJEH8tQ0uXQeisxWcIAKe3nQBGwv7E0Bj1Yg7w8NR6Qn0VWHCa6eGCzivBZC6N/FfNUz/QBB2xtsRdpHK15PjIVEu7TBSFznksSpNLxZgto/ZGto7iHWmMATgyedDlFispIeR8DcPHd/EuAddS/SoXaQq3vxEbYUkhclu9AnQJIKS+6OGcNufKLDBcNJ636JGH99w1yeIic97Xfxhvj7wQo5io0yRXi+PhT2KWSqw1nafPyXxRBLGRQZLWSLHITcSA3bXwSPxLo3c3v3MGgcUK4q8czenwGlOqSPCeXRGyiN3yyU0r474KGj5qEz1UDHsrvTXH0ZIjiYVzbmuKfqsCx6Pugjp73QM4JjyDZJs=
    debug: checking signature for /var/cache/pacman/pkg/lib32-libxrender-0.9.7-1-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: 4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1332755959
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: 4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC, Pierre Schmitz <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-libxcursor-1.1.13-1-x86_64.pkg.tar.xz
    debug: sig data: iQEcBAABAgAGBQJPcDgmAAoJEH8tQ0uXQeis7SgIAKYEyL/JifHsVuS136Ehgs/rvGHTww/DFmUdqpD4xiuepqyD+G+eRlOlwPA4DYRQiaRkifF1yFr8p6Tsu07LeTnJuLtayjzwLDpBMSO+nRETQdwijMzkXz35b4shLsvMJJc+m121INOva56LTbca8PeW49d3JqecNDE2KQ2cSzfMmvFbHADl/DSb+Hl/zt6L5a/aELLBvT8FAHf7fb8FyYdeFOAsq+0WbXy/Uee9OZc6vlQaUxjtgesRS/XBlHbMiX9NRPbeHQbtQERQCwOCN4UfLLhpNvMzBNf6UhxfNOoh62VXaDLhfaYRnWbN6l4+hRJbGSZ2fUR2FwKt4sSPpCo=
    debug: checking signature for /var/cache/pacman/pkg/lib32-libxcursor-1.1.13-1-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: 4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1332754470
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: 4AA4767BBC9C4B1D18AE28B77F2D434B9741E8AC, Pierre Schmitz <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-libxrandr-1.3.2-2-x86_64.pkg.tar.xz
    debug: sig data: iQEcBAABAgAGBQJPZfPuAAoJEAYJamrRzt2suJ4H/RQfZMuETuDRlK2QG+jrfJGc6VkH9A8pj9UZWyM94/n8SsX+IFzP0J7Rym8ErdzxWC+TRpcYMkPFwip8qqANmLsfm/erkzzbj+47ynkY/iLY1aRRfUIGNVmgOztbtOl6GmA/8HImUdLnsy9z4lOUEQcjQCHkQ6r2kt9FDeC8SMZPV5+0i52AWQHzGXOB61g8CNtgXNYPoPLx0VqhEeHdlk24WCX4WY0DIuE3LTxrQIqXDF9ivbx93bJ/oU6woiPQoIPvCo/z5O6vJtZ8Z1/RUZEeYDYf+T+7sqCYYMoMhv2nx/7zbxY1pfJudF5/p22mqT6J9tmIa+xubQpX8adalaw=
    debug: checking signature for /var/cache/pacman/pkg/lib32-libxrandr-1.3.2-2-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: 535F8C0339450F054A4D282706096A6AD1CEDDAC
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1332081646
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: 535F8C0339450F054A4D282706096A6AD1CEDDAC, Laurent Carlier <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-libxi-1.6.1-1-x86_64.pkg.tar.xz
    debug: sig data: iQIcBAABAgAGBQJPsS4oAAoJEG0WVcFM4cE+0TEP/0iLTR2xOM5WKXEv1JkVStnYhOWRuJZJvQOw+nGut5LLyTwX6kG2lmhwCYj6vnzdA6cwH1VDq18uFyKtuhRSxmUAjF0RhU0AavGOJf+jSu83cB6B8kROkqKbl8Sse6gqqnmpZ21KEu88EFlhrcCa5Hkm6ElTz05bjHaP4sKjscH7Cle8zAhhd91cnUWe+wsszXRSplj5xWQCp+PuoZA57Uz5nVkMuTB6fLY/aQs6cWROtNjtbd9MmQ6xgzLNfotEkzSsP7ZNtqI98U8lBhg3w6Yyh/lvPkf76xk4RFK/bWsjWYkduQ2zbJQCdBTd+NLF+zBtjgwkT5Xj32/DuxYzB0nU9NSSw63S+BL9CXwmpAfjAhoPc71PgHI1dBbb+iv7kE0mT/c8rn+CCzDYv5DEKPelQiHBIz6EL5cf47XljgEDZglJp3OPX7Tw17qN9VPcfeZv4+L0EhxZ8/IyO2YAV4jGSx4wVgWrwf5CcfVLKzukdYVVN1b5KCYWiEhHg4VngyZvJRa8m9LlGbdNT1dKlxNren6UeZI5Hp/UE6nVwgzzXtYMl8Ecw0m2MIek6XOS89AkajRPzcuUB8uqtpqq7mVp/otoarcievopUHnE1AU9b8AiCWlDHk4W9NpOEjMcqR1COsi1cXQhudWJppJLqWRAZyfSWsThW+ARScU24qdU
    debug: checking signature for /var/cache/pacman/pkg/lib32-libxi-1.6.1-1-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1337011752
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E, Florian Pritz <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-attr-2.4.46-2-x86_64.pkg.tar.xz
    debug: sig data: iQEcBAABAgAGBQJO85p/AAoJEAYJamrRzt2sDKgIAKhpVKclFgrplruauivX5GnNjFiZI7hW+n8glKwI2ODLfk+pDBhp//8bcFMXaNPThpo9hmjfhBFYIjxlPeE8GXkVZO8RG57sPNdBcRYjjA2mJm1cZKVVGq+qDHStmMneg7xOQpkAOHDYlTRb8LTIVkAaIJLXHBG3xUq1hy6Ub+x738SZtXa9P4dZRGAHcu0+OkXjzADoTWX4UoOvFmHRNtmmVwqDEmOJFU48py5GTJEeDOAUlciC7X618MJuURNK3zMQt/bgbl4drlxTR1aj88M4B92le26TedyIGhpHiQDj4ypgH9jo9E+XK1YYH4SCEH6wCp0wRP1YUsfzseGWSDc=
    debug: checking signature for /var/cache/pacman/pkg/lib32-attr-2.4.46-2-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: 535F8C0339450F054A4D282706096A6AD1CEDDAC
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1324587647
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: 535F8C0339450F054A4D282706096A6AD1CEDDAC, Laurent Carlier <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-acl-2.2.51-2-x86_64.pkg.tar.xz
    debug: sig data: iQEcBAABAgAGBQJOtGQ7AAoJEAYJamrRzt2szZwH/jh6JYpBPx9KINShjXlzlTvmpuBIKEUKFlS1Wwe3D6pJ5hDMaMh7LjQma5bxVCpxdh/dI87u4838wHJNWUAv1Qj57f0VRo/N65Mc5X43s7gdJH+yJ5sQP54uiGhKvYcW2iJ0tmd/Iq+p7Yjb9Qe43CN3a5NPNPd5KUPWTSHlVML5ui4uxJEUAgESrhZ/3eMB7qyDZM9EN8JvkAIrNAFTq5dNHaD8+9WZG+Zfo9EyMrtM2E768YyR2a9So5ilyjFBYgVl7b7MEpQ+As5LmwY+bihiLxun6AZ9Xl8suGGstaULUW0ngdfPBbDe0JNR9HUIzzWQUOuLnYqXkBpNfKYfqBE=
    debug: checking signature for /var/cache/pacman/pkg/lib32-acl-2.2.51-2-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: 535F8C0339450F054A4D282706096A6AD1CEDDAC
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1320444987
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: 535F8C0339450F054A4D282706096A6AD1CEDDAC, Laurent Carlier <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: found cached pkg: /var/cache/pacman/pkg/lib32-gettext-0.18.1.1-2-x86_64.pkg.tar.xz
    debug: sig data: iQIcBAABAgAGBQJO2VCRAAoJEG0WVcFM4cE+A/8QAKRAMu3EDVY7wE/9NeKeq9EmyC/CjnPXRSjO8g1QSviBN3SkZOntGWopms2slVKaWqXhg8N4Y6kzb5R/gECJV7qCKiidfikiwSfJvOrs0ke96mQzfHQrYKWu2l1WSGvUd3+9HBEWJGTTw+/rHdTiPKgst/Rd/w+/E/EzvD+HDdUlPD4Ar1687AfgrSky85/WPm95KQYPZumw+NIGH9wNXtifoTM37lUI4pLE8Pc2c8c3MjeZYwhQKrWh77mc0n0aePJMkbMxvOFGujyXZ8DAZiN0NafthnTL6lUd+qOtqG3DjIhQXvyUnEjqzFbhhSOYGR2b9Q+B+b9lojq217jDuujn7jFx/1ZxgdFUcHybhF10Hhn+3Q7DaGUrzx3xfpDBkbrPE5xaoZriJy+lYnk+p7wo6/1J31kFF6dzaTtqLsSBmyj5dAoTzKowCgCbDf+MFCWbcl/Tc1R//FummCId1J2W3m4Vhl6Cy0/AreLBY1WHCmIDBCdQ0iDwbbCmPxI4eK0bhdhGUsIPEZ5v4lSPdZ1HebEc+fI+dOSIJYlCv3lxwtT85M0AnTg0S1Nf1X3u01BfV6peCoqZIq2mFcr5DZ+3LavaEJXBxGAsRjtfHv1txA11Q78XaPVBFWuD4bISFT8hx9JQsbjVb0OoIFEzf22hi9ElMve1LwcXsAwXPi++
    debug: checking signature for /var/cache/pacman/pkg/lib32-gettext-0.18.1.1-2-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1322864785
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: CFA6AF15E5C74149FC1D8C086D1655C14CE1C13E, Florian Pritz <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: found cached pkg: /var/cache/pacman/pkg/wine-1.5.8-1-x86_64.pkg.tar.xz
    debug: sig data: iQIcBAABAgAGBQJP83KZAAoJEDnkuHfmLrkVTvUP/3nDqb0ErdjVxX8seUhnOKMT0Dgzna/w2+zdDYNgsaN8teaMi3GX0c9lQ2eD0w8BeRykPRn0+23lcWGsJnoN3RttYFWTAD0ful0K2Ds6DdEXE4ET2UobwfY0Dis6zGn/253ASgfL5CJtFid73JoSLPlc8RidGPnjudJHX5cxX/5GYmtvT1yVcaANaLkTmAAIuow1ugYbxsVM4R1j9SjRVQRou/PsdXnCxl1V3fVs72ePVfMOGEWAbuC4y0OfFEzkQCkmYid/diRGjfS6vgy9ahC227NEifZRnR9bWXcnwQCkMjUFGGip/sWi/lC6WRdD7UWCaMVcuHxK4TORa5KvOXjo52gpaxPbWuBaoXnQvRnusSDRMw9WIqhVCzqvVQesXQ7VPS8te0ynsfZEYv6yC6msAsOhGdiBO0SisMoNSWMfDehMaoVg4uGUWFlwHgMSg36DuWRh8/wyKkdD0xSRPNM4B5wPmpLNWVg9bAUSN6JITw8TrwewWgS5AGY0fj5PTWukQXq4PEvDyDV9QHFLUYE3UikgoWZPR0biJQxUvUytmtCPY4cPCCTbYGnoP9bgEahz/5gWY0BeW6yxHXmYwHv62h5UL04Jvy1/sX8SmKhkciHbXXin+xamEc1Gu3eaoX2/rwdPGxlj2jq3bvKMv0EVK4dlNb3LH7znRK0iwKOv
    debug: checking signature for /var/cache/pacman/pkg/wine-1.5.8-1-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: 8FC15A064950A99DD1BD14DD39E4B877E62EB915
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1341354649
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: 8FC15A064950A99DD1BD14DD39E4B877E62EB915, Sven-Hendrik Haase <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: returning error 33 from check_validity : invalid or corrupted package
    error: failed to commit transaction (invalid or corrupted package)
    Errors occurred, no packages were upgraded.
    debug: unregistering database 'local'
    debug: freeing package cache for repository 'local'
    debug: unregistering database 'catalyst'
    debug: freeing package cache for repository 'catalyst'
    debug: unregistering database 'core'
    debug: freeing package cache for repository 'core'
    debug: unregistering database 'extra'
    debug: freeing package cache for repository 'extra'
    debug: unregistering database 'community'
    debug: freeing package cache for repository 'community'
    debug: unregistering database 'multilib'
    debug: freeing package cache for 'multilib'
    Anyone have any hints for solving this?
    EDIT: running pacman update seems to have fixed this issue
    Last edited by duke11235 (2012-07-13 19:04:50)

    Ah, my mistake was an incorrect partition table back when I partitioned the disk. I did not make a partition table for GPT partitions.

  • Install Failed. Installer could not copy the necessary support files

    I replaced the hard drive in my MacBook 13ac OS X" late 2009. I am trying to reinstall th OS and applications from th CDs that came with the computer. When I start the computer and try to install the OS, it starts to install, after about 2-3 minutes I get the following message. Install Failed. Mac OS X could not be installed on your computer. The Installer could not copy the necessary support files. Click restart to restart your computer and try installing again. I have done this several times with no luck. Is the CD missing something? Is there another way to do this?

    Disconnect any attached hard drives.
    Boot off the disk and try running Disk Utility Repair Disk and Repair Permissions. If that is successful, try to re-install. If that doesn't work boot off the disk and use Disk Utility to erase and reformat the drive as Mac OS Extended (Journaled).

  • Install fails 10.5 could not validate contents additional speech voices

    I am trying to install 10.5 on a G5 I get the message install fails  could not validate contents of the additionalspeechvoices package, is there a way to fix this?

    It is a black retail retail disk,
    Didnt have any troubles with installing it the first time, then the Maxtor hard drive went bad, installed it to a new drive and didnt have any troubles untill recently, but tried to reinstall again, but get the message install fails could not validate contents of the additionalspeechvoices package, now. It gets to about 4 minutes left then quits with the error message.

  • ICloud PC install failed (drive g:/ is not valid)

    Hello,
    When I try to installe the ICloud Control Panel on my PC (Win 7), the install failed.
    He said "Drive g:/ is not valid".
    For information, my documents are on a server called g:/.
    Regards.
    K

    Hi,
    This issue is because of not following the OEDQ installation guide. When you are trying to deploy OEDQ with existing director.properties file, it tries to connect directly to the existing Databse specified in director.properties which but with new installation it will not find exixting tables.
    Solution is simple just delete director.properties file and restart webserver. This will install director. Your installation will be completed after putting DB director and result details on the launchpad screen.
    Regards,
    Rajesh

  • GRUB Install Fails

    I'm trying to install Arch onto a laptop with a RAID 1 setup.  I followed the fake raid guide on the wiki and I'm stumped at the installing GRUB portion.
    I'm able to chroot into the new environment and when I attempt to install GRUB on /dev/mapper/raidSet using "device (hd0) /dev/mapper/raidSet
    I receive Error 15: File not found.
    What file is it looking for that it cannot find?

    Chances are that /dev/ isn't populated with the raid devices when you chroot into it. That's only a guess and I'm sorry I don't know what to do to fix it since my experience with RAID is only with ZFS.

  • XP Pro install failed now I can not boot to Mac OS

    So I was installing XP pro on my 17"MBP and had it fail... (no big deal)
    I did it all through BootCamp (had made the partition ages ago).
    Had the disk in ran things as BootCamp told me.
    Was going then when choosing the instalation drive it only showed my main drive and wanted to reformat. Now I know that the BootCamp partition was there because I have been staing at the thing for a month. I told it to ESC.
    It asked to restart (OK)
    Now my mac will only boot to the dead Windows Partition.
    Holding Option only gets me windows as an option, unless I have an istall disk in... then it lets me chose windows or the disk.
    I don't need XP and was only doing it to sink with my GPS, darn me for trying to make this work.
    Any clue?
    I am having to post this from my iPod touch so searching for other posts with the issue was a challenge.
    Thanks and Sorry

    Having same problem as this guy but with my iMac. Formatted the one and only choice of 131gb partition (having made one with boot camp beforehand 32gb) but now am in an endless cycle of cancelling the install but rebooting the windows setup from the CD which I cannot eject

  • Just got snow leopard install failed now Mac will not boot up?

    I got a iPad and snow leopard very excited to use them I try to install leopard and it fails so I turn on the comp to try it again and I get the apple logo then the spinning wheel then it just shuts off and that's all it will do now!
    Glad I got the iPad so I could post this!
    Anywho I've tried all the command option P+R stuff so any other suggestions would be great!
    Thank you

    Try inserting the instalation DVD provided by Apple and start the computer while holding the 'c' key down on the keyboard until you hear the DVD spin and some action in the DVD drive. If your mac doesn't start and show something meaningfull then, take it back to the shop it has a hardware problem, or your installation disc has.

  • AIA Instal failing on Cluster AIAReadJMSNotificationProcess not found

    Hi,
    I am installing AIA on SOA 11.1.1.5 during installation I am running into below error. I am trying to install AIA on a cluster environment on HP-UX box. Need help in resolving the below I see the below in the log.
    Here is the command that I ran to begin the installation
    ant -f AIAInstallDriver.xml -DPropertiesFile=$AIA_HOME/aia_instances/AIA_01/config/AIAInstallProperties.xml -logfile $AIA_HOME/aia_instances/AIA_01/logs/FPInstall.log -DDeploymentPlan=$AIA_HOME/aia_instances/AIA_01/config/FPInstallDP.xmlAnd here is error am getting after 28+ minutes of installation progress.
         [wlst] Activation completed
         [wlst] Disconnected from weblogic server: AdminServer
         [wlst] <Jul 25, 2012 4:33:29 PM CDT> <Warning> <JNDI> <BEA-050001> <WLContext.close() was called in a different thread than the one in which it was created.>
         [echo]  executing Endpoint Configurator over the dir : <AIA_HOME>/Infrastructure/ErrorHandling/src/AIAErrorTaskAdministrationApp/AIAErrorTaskAdministrationProcess
         [echo] Fixing AIAErrorTaskAdministrationProcess endpoints per Oracle Support DOC 1369101.1
    BUILD FAILED
    <AIA_HOME>/Infrastructure/Install/AID/AIAExecuteDriver.xml:117: The following error occurred while executing this line:
    <AIA_HOME>/Infrastructure/Install/AID/AIAExecuteDriver.xml:64: The following error occurred while executing this line:
    <AIA_HOME>/aia_instances/AIA_01/tmp/AIDExecuteDP_temp_1892431361.xml:15: The following error occurred while executing this line:
    <AIA_HOME>/Infrastructure/Install/AID/lib/AIDDeploymentLibraryTasks.xml:160: The following error occurred while executing this line:
    <AIA_HOME>/Infrastructure/Install/AID/lib/AIDConfigurationLibraryTasks.xml:703: <AIA_HOME>/Infrastructure/ErrorHandling/src/AIAErrorTaskAdministrationApp/AIAErrorTaskAdministrationProcess/Infrastructure/ErrorHandling/src/AIAReadJMSNotificationProcessApp/AIAReadJMSNotificationProcess not found.
    Total time: 29 minutes 5 secondsFrom the logs above it's complaining about AIAReadJMSNotificationProcess not found but shouldn't the installer have took care of it.
    When I go to the Enterprise Manager I don't see any AIA related composites being deployed I do see AIA Application deployed. But the installation is failing. Any idea on what might be wrong and how to correct it and start the installation from where it ended.
    Any help is appreciated.
    Thanks

    With those informations alone it is hard to tell whats happening.
    Even if you perform a "boot -x" I would expect that your public network is getting configured, since on your described setup you should have a /etc/hostname.qfe0 and /etc/hostname.qfe4 in order to setup the IPMP group and possible test addresses. So ifconfig should show something for at least those interfaces. Since you are not even seeing lo0, I would expect several error messages on the console.
    Since no obvious reasons springs to my mind as of why you do not see this, I suggest to open a service call with Sun (if you have a support contract that is) in order to get the system(s) better analyzed. A lot more informations are necessary to understand the problem. Anything within /var/adm/messages (even the older ones) that might give a hint? Any administrative changes lately?
    Greets
    Thorsten

Maybe you are looking for

  • After having my iphone 4 for over a year, the front screen cracks :(

    So after having my Iphone 4 for over a year and purchasing the apple CARE protection plan, apple is acting as if they do not care about me and my phone.  I have never traded in my phone and never had a problem with it until now.   My screen is cracke

  • WARNING: Insufficient disk partition space.

    im trying to install J2EE SDK on a SunBlade 150 with Solaris 8. I get the following error message during the drivespace check: WARNNG: Insufficient disk partition space to install the items selected Im trying to install it in /opt/SUNWappserver/ I ha

  • Imovie '11 quits continuously - running OS X 10.7.4 LION

    Each time I try to edit a current project imovie quits. There is a 'grey missing clip' that I am trying to delete/replace and when I highlight it the software quits...it has happened over 100 times and the report doesn't seem to be sent automatically

  • Color Smoothing 4:1:1 or 4:2:2 (before key in ProRes)

    I'm working on some green screen stuff in FCP and I'm wondering what the difference is between the 4:1:1: Color Smoothing tool and the 4:2:2 . Both seem clean when I use the chroma key tool (and I don't see any difference).  I'm working with video th

  • Newbie help with basic setup - WRK54G

    === Linksys WRK54G v2 router === WinXP Pro SP3 I am not a networking person, and I need help setting up my router. I bought it new a bit over a year ago and installed it successfully, but it kept hosing up my connection so I took it off line and put