[SOLVED] UEFI installation - booting failure

Hi All,
Setting in BIOS: UEFI boot mode, Secure Boot Off
Booting from USB in UEFI mode, everything is OK. Then I did this:
gdisk /dev/sda
create new GPT partition
cgdisk /dev/sda
Part. # Size Partition Type Partition Name
1007.0 KiB free space
1 512 Mb EFI system efi
2 6 GiB Linux filesystem root
3 122 GiB Linux filesystem home
mkfs.vfat -F32 -n efi /dev/sda1
mkfs.ext4 /dev/sda2
mkfs.ext4 /dev/sda3
mkdir -p /mnt/boot/efi
mount /dev/sda1 /mnt/boot/efi
mount /dev/sda2 /mnt
mkdir -p /mnt/home
mount /dev/sda3 /mnt/home
Then I followed the installation guide. At the "Install a bootloader" section I tried both EFISTUB and GRUB:.
At Point 5 here https://wiki.archlinux.org/index.php/Beginners'_Guide#EFISTUB I created refind_linux.conf with sdax = sda2
# nano /boot/efi/EFI/arch/refind_linux.conf
"Boot to X" "root=/dev/sda2 ro rootfstype=ext4 systemd.unit=graphical.target"
"Boot to console" "root=/dev/sda2 ro rootfstype=ext4 systemd.unit=multi-user.target"
and at Point 6 X=a, Y=1:
# efibootmgr -c -d /dev/sda -p 1 -w -L "rEFInd" -l '\EFI\refind\refind_x64.efi'
GRUB is quite straightforward.
After restart I got "no bootable device" error. The strange thing is that in BIOS I can see and select "rEFInd" or "arch_grub" in booting options, but anyhow it just won't boot.
Thank you for your help.
Last edited by totolotto (2013-06-22 17:33:39)

totolotto wrote:rEFInd boot manager shows 2 Arch logos:
1) Boot EFI\arch\vmlinuz.efi from 512 MiB FAT volume
2) Boot boot\vmlinuz-linux from 6 GiB ext4 volume
This means that you've got your kernel (or possibly different kernels) stored on two partitions. The first looks like it's a kernel on your ESP, and the second looks like it's your root (/) Linux filesystem, accessed via the rEFInd ext4fs driver. To simplify your life, I recommend deleting the kernel from the ESP and using the kernel in your Linux /boot directory (that is, kernel #2). If you try to keep both of them, you'll have to copy new kernels from /boot to the ESP whenever you upgrade your kernel, and you'll end up with two entries in rEFInd that boot the same kernel, which is sort of pointless.
That said, if you don't want to use rEFInd in the long term, copying your kernels to the ESP, or reconfiguring your mount point so that the ESP is mounted at /boot and therefore your kernels get stored there automatically, can make sense. Given where you are, though, the quickest path to an efficient setup is to just ditch the kernels on the ESP and boot your kernels off of your root (/) partition's /boot directory.
totolotto wrote:With regard to "boot into Arch directly" I understand that it is possilbe with efibootmgr described here, however efrbootmgr does not work for me
Some people do like to boot their kernels directly, without using rEFInd, gummiboot, GRUB, or anything else. Note that efibootmgr isn't involved in the boot process per se; it's just used to set up the firmware's boot manager. Thus, saying you want to "boot with efibootmgr" (or words to that effect) is confusing, even to experts -- because this makes no sense, it's not clear what you really want. This uncertainty has been cleared up in subsequent posts, but I want to point it out to help you (and perhaps others who read this) communicate more clearly in the future.
FWIW, I tend to agree with WonderWoofy on this score -- although it's possible to configure the firmware to boot the kernel directly, the down sides to this approach more than outweigh whatever small speed benefits you get from it. In your case, totolotto, given the problems you're having with efibootmgr, it may not be a practical alternative -- at least, not unless and until you can overcome those problems.
WonderWoofy wrote: I think a better option would be to give rEFInd a timeout of zero.  I believe there is a key (or keys?) that you can hold down to have the menu show up when the timeout is set to zero.  This is how gummiboot works anyway,
rEFInd doesn't have a 0-timeout option. In rEFInd, setting the timeout to 0 disables the countdown timer, so it never times out. The closest you can get to a 0-timeout in rEFInd is setting it to 1 second. If you must have a true 0 timeout, use gummiboot. Unfortunately, that means you won't be able to read the kernel files from a Linux filesystem, but mounting the ESP at /boot can create something that works about as well. Doing this will require some significant reconfiguration from where totolotto is now, but it can be done if getting a 0-timeout configuration is important.

Similar Messages

  • [SOLVED] UEFI system booting from MBR partition table and GRUB legacy

    I'm trying to understand once and for all the process by which Arch can be booted from a system with UEFI firmware and an MBR partition table. Some of the information on the wiki seems conflictual / non-nonsensical at times. Apologies in advance if this has been answered time and time again, but I did search around and all I found was fixes to get Arch to boot rather than comprehensive explanations of the boot process.
    Now, the way I would imagine it works is that it's just completely identical to the way it would work with a BIOS firmware. The UEFI firmware detects an MBR partitioning scheme (or is configured to know it's an MBR partitioning scheme), activates some "legacy" mode and executes the MBR boot code, just like a BIOS firmware would.
    The wiki however, says different. From the Macbook article: "Do not install GRUB onto /dev/sda !!! Doing so is likely to lead to an unstable post-environment."?
    So what is there in the MBR boot sector? Nothing?
    How does the firmware know what to boot if there's no 0xEF BIOS boot partition and no Grub stage 1 in the MBR boot sector?
    Also, how does installing Grub stage 1 to a partition work? Does it have to be at the beginning of the partition? Wouldn't that overwrite some existing data?
    I'm especially puzzled since many guides to installing Vista on a macbook recommend simply formatting as MBR, and installing as normal, which I suppose entails having the Windows installation process write its boot code to the MBR, ie the equivalent of installing grub stage 1 to /dev/sda rather than to the /boot partition, as the Macbook article suggests.
    Any input is appreciated.
    P.S. I realize it's probably simpler, if I just want to dual boot Windows and Arch, to install Windows 7 in UEFI-GPT mode, let it create the EFI System Partition, and then install GRUB 2 to that partition, but I'm still curious about the UEFI-MBR boot process.
    Last edited by padavoine (2012-06-06 09:35:10)

    padavoine wrote:
    CSM in UEFI firmwares do the exact same job as normal BIOS firmware.
    So it's something specific to the Mac that it's able to boot from a partition's VBR while ignoring the MBR?
    The reason that warning is given is because grub-legacy modifies more than just the MBR boot code region.  It can overwrite some parts of GPT header.
    Not true, the instruction is given in the context of an MBR format, not in the context of a GPT format, so there's nothing to overwrite and Stage 1.5 should be safely embeddable in the post-MBR gap.
    In BIOS boot (normal case in non-UEFI firmwares or CSM in UEFI firmwares) does not read the partitition table (atleast it is supposed to be dumb in this regard), it simply launches whatever boot code exists in the 1st 440-byte of the MBR region.
    So again, you're saying it's specific to the Mac UEFI that it lets you choose a partition whose VBR to load, regardless of what's in the MBR?
    I haven't used Macs so I can't comment on Mac firmware behaviour. But normal BIOS firmwares (legacy and CSM) launch only the MBR boot code and not the partition boot code. We need some chainload capable boot manager in the MBR to launch the partition VBR.
    grub-legacy does not know anything about GPT. So when you install grub-legacy to /dev/sda, it install the MBR boot code (stage1) and stage 1.5 code to the (supposed) post MBR gap. Since there is no actual post MBR gap in GPT (which has been taken over by the header and partition table), grub-legacy does not check for GPT and it assumes the post MBR gap actually exists which is invalid in case of GPT. grub-legacy embeds the stage 1.5 code in GPT header and table region (which grub assumes to be unused post MBR gap) and thus corrupts it.
    0xEF is the MBR type code for UEFISYS partition. grub stage 1 (used in grub-legacy, not in grub2) is the 440-byte boot code stored in MBR for use in BIOS boot.
    That's precisely my point: with neither proper executable code in the MBR (since grub was installed to a partition, not to the MBR) nor a UEFI system partition, what does the firmware default to, and how does it know what partition to boot from?
    In that case it might fallback to UEFI Shell (if it exists)  or give an error similar to the case where BIOS does not find any bootable code in 440-byte MBR region.
    So even with bootcamp/CSM, the disk also needs to be MBR partitioned. So Macs use something called "Hybrid GPT/MBR" ( http://rodsbooks.com/gdisk/hybrid.html ) where the MBR table is synced to match the first 3 partitions in the GPT table.
    I know what Bootcamp does, and that's not what I was referring to. I was referring to standalone Vista installs. I wasn't puzzled at the fact that they were using MBR, I was puzzled at the fact that contrary to the recommendations for the standalone Arch install on the wiki (with MBR partitioning, not GPT), they didn't do anything to try and prevent Windows from writing to the MBR.
    You can't prevent Windows from overwriting the MBR region. You have to re-install the bootloader (grub2/syslinux etc.) after installing Windows. That is the reason why it is recommended to install Windows first and linux later.
    Thats not true. I actually find it is much easier to install Windows UEFI-GPT using USB rather than a DVD.
    I haven't done it since the only UEFI system I own has no DVD drive, but I was under the impression that it was simply a matter of choosing DVD UEFI boot in the firmware's boot menu.
    format the USB as FAT32 and extract the iso to it. That it.
    No, thats not it, precisely, it doesn't work out of the box with a standard Windows install USB, you need to fiddle around:
    2.3 Extract bootmgfw.efi from [WINDOWS_x86_64_ISO]/sources/install.wim => [INSTALL.WIM]/1/Windows/Boot/EFI/bootmgfw.efi (using 7-zip aka p7zip for both the files), or copy it from C:\Windows\Boot\EFI\bootmgfw.efi from a working Windows x86_64 installation.
    2.4 Copy the extracted bootmgfw.efi file to [MOUNTPOINT]/efi/microsoft/boot/bootmgfw.efi .
    Most of the Windows isos already have /EFI/BOOT/BOOTX64.EFI file, so no need to extract the bootmgfw.efi file.
    There is no difference between in BIOS booting in UEFI firmwares and BIOS booting with legacy firmware.
    There has to be a difference, at least in the Mac firmware (sorry, I keep switching), since legacy firmware, AFAIK, cannot chainload a bootloader in a partition's VBR without there being some sort of "stage1" code in the MBR.
    No idea about Mac EFI. Apple made a spagetti out of UEFI Spec. To actually understand how Mac firmwares work, read the blog posts by Matthew Garrett of Redhat, about his efforts in getting Fedora to boot in Macs.

  • [SOLVED] USB installation, booting: root fs cannot be detected

    I followed this guide: http://wiki.archlinux.org/index.php/Ins … _a_USB_key
    SYMPTOMS
    I installed arch linux on a USB stick.
    I can see Grub, I can boot. After the HOOKS get loaded (udev is loaded as well: Loading udev...done.) I get errors as follows:
    Attempting to create root device '/dev/disk/by-uuid/myHdUUID'
    unknown
    ERROR: root fs cannot be detected. Try using rootfstype= kernel parameter.
    If the device '/dev/disk/by-uuid/myHdUUID' gets created while you are here, try adding 'rootdelay=8' or higher to the kernel command-line...
    Then I get a prompt that doesn't even let me issue the command "ls" (error: /bin/bash: ls: not found
    SOLUTION: use the fallback image, or better, rebuild your mkinitcpio kernel image, see: Configuring mkinitcpio
    My problem was that "usb" was not included in the HOOKS, it was present, yes but after the "autodetect".
    So, in the /etc/mkinitcpio.conf place "usb" before "autodetect", e.g. as follows:
    HOOKS="base udev autodetect sata filesystems"
    then regenerate the image (refer to the previous link to understand why the autodetect was creating the problems and to see exactly how to regenerate the image)
    Last edited by firepol (2008-10-09 19:18:34)

    Same problem, seems the new kernel broke UUID.
    @tim: as I stated above it seems that you fixed the problem with the kernel image file but did not adjust the grub menu to compensate for the fact that UUID is broken and thats why you got the same result even after fixing the image, lucky for me I had some broken hooks and only my fallback image generated properly so I figured it out, although it took me a little while.
    Anyhow this is basically what needs to be done to correct the problem.
    1. Boot ArchLive
    2. mkdir /media/disk
    3. mount /dev/sdxX /media/disk
    4. chroot /media/disk
    5. mkinitcpio -k 2.6.28-ARCH -g /boot/kernel26.img
    6. nano /boot/grub/menu.lst
    7. Replace any references to UUID with /dev/sdxX (where xX represents your drive and partition) instead, save and exit nano.
    8. reboot
    Make sure and pay attention to the output of the mkinitcpio command in my step 5. If there are any errors relating to one or more of the hooks you'll need to edit /etc/mkinitcpio.conf and remove the hook it complains about !!IF POSSIBLE!!.  I for example had some problem with the autodetect hook which caused my regular kernel to fail to create an image.
    If mkinicpio doesn't complain and tells you it SUCCEEDED generating the images then you should be good to go.
    Last edited by blazercist (2009-01-29 18:47:25)

  • Disk Boot Failure [solved]

    I'm installing arch on a rebuilt system, but I cannot get it to boot.  I have pared the system down to a a SCSI card, a video card, a single hard drive, an IDE CD, a SCSI tape drive, and a floppy.  I have tried my standard installation partitioning scheme, and the automatic version.
    No matter what I do, while the system seems to install correctly, when I reboot I get a Disk Boot Failure.
    I've zeroed the drive, I've tried an fdisk /mbr, I've run a Maxtor burn-in test which came back fine.  I'm convinced it isn't the drive.  The standard menu.lst uses root (0,0) and the kernel in /dev/discs/disc0/part3 after an automatic installation.  I mounted the /boot partition set up by the auto install, and the grub directory and files are there.
    What am I missing?
    Last edited by timm (2009-05-04 22:11:42)

    I think it's solved.
    Everybody who was mentioning the BIOS got me looking in there, but I found nothing out of the ordinary.  I decided to try to install Windows 2K to see if that would boot, which it did flawlessly.  I reinstalled arch, and go the disk failure.  Back to the BIOS.
    This is an IDE hard drive; the only thing SCSI is the tape drive.
    What I found was that the access on the hard drive was set to Auto, which I had seen before but didn't think to be a problem.  I tried changing that to LBA (which is what I thought Auto would do on a drive like this), and suddenly arch comes up just fine.
    I have a couple of RocketRaid cards that I'm installing, and will be playing around with the SCSI as well.  I'm going to play with things a bit more, but unless I can make it fail with some other tweaking, that BIOS setting appears to have been the problem. 
    Thanks to everyone for their help!

  • [SOLVED] Unable to boot in UEFI System

    For several days I have been trying to get Arch to boot on my desktop by following the Beginners' guide and refering to other Arch wiki articles as well as Arch Forum posts for any problems that I had. I have tried a few bootloaders such as GRUB, gummiboot, and rEFInd and they all give the same result when I attempt to boot - a blinking cursor with no menu and then it returns me to the BIOS;. My UEFI motherboard is the ASUS VI Hero. I have disabled secure boot and both fast boots. I use a live USB with UEFI that is able to boot on my system and was created with dd.
    Below are the outputs of some commands that might be useful.
    root@archiso ~ # lsblk
    NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
    sda 8:0 0 223.6G 0 disk
    ├─sda1 8:1 0 512M 0 part
    ├─sda2 8:2 0 4G 0 part
    └─sda3 8:3 0 219.1G 0 part
    sdb 8:16 0 931.5G 0 disk
    ├─sdb1 8:17 0 487.3M 0 part
    └─sdb2 8:18 0 931G 0 part
    sdc 8:32 0 232.9G 0 disk
    ├─sdc1 8:33 0 100M 0 part
    └─sdc2 8:34 0 232.8G 0 part
    sdd 8:48 1 3.8G 0 disk
    ├─sdd1 8:49 1 595M 0 part /run/archiso/bootmnt
    └─sdd2 8:50 1 31M 0 part
    loop0 7:0 0 256.8M 1 loop /run/archiso/sfs/airootfs
    loop1 7:1 0 32G 1 loop
    └─arch_airootfs 254:0 0 32G 0 dm /
    loop2 7:2 0 256M 0 loop
    └─arch_airootfs 254:0 0 32G 0 dm /
    Windows 7 is on sdc and Arch is on sda (sdb is an extra storage device for Windows). Both sdc and sda are SDDs.
    root@archiso ~ # parted /dev/sda print
    Model: ATA SanDisk SDSSDHII (scsi)
    Disk /dev/sda: 240GB
    Sector size (logical/physical): 512B/512B
    Partition Table: gpt
    Disk Flags:
    Number Start End Size File system Name Flags
    1 1049kB 538MB 537MB fat32 boot, esp
    2 538MB 4833MB 4295MB linux-swap(v1)
    3 4833MB 240GB 235GB ext4
    root@archiso ~ # cat /mnt/etc/fstab
    # UUID=0dff590b-24f1-47a2-870e-3f4d2c5bcb6a
    /dev/sda3 / ext4 rw,relatime,data=ordered,discard 0 1
    # UUID=FA3A-728C
    /dev/sda1 /boot vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 2
    # UUID=524e2980-d1e6-4948-88f9-c193682d5a9e
    /dev/sda2 none swap defaults 0 0
    # efibootmgr
    BootCurrent: 0003
    Timeout: 1 seconds
    BootOrder: 0000,0001,0002,0003
    Boot0000* grub
    Boot0001* Hard Drive
    Boot0002* ubuntu
    Boot0003* UEFI: General USB Flash Disk
    Boot0008 Hard Drive
    Ignore ubuntu, that was on my HDD from before but has been removed. The grub option usually disappears after reboot unless I run efibootmgr -O after I install the bootloader. Using efibootmgr -v option, the output is a bit hard to read.
    # efibootmgr -v
    BootCurrent: 0003
    Timeout: 1 seconds
    BootOrder: 0000,0001,0002,0003
    Boot0000* grub HD(1,800,100000,f9c04628-178b-4c94-9b92-62c04f2a5151)File(\EFI\grub\grubx64.efi)
    Boot0001* Hard Drive BIOS(2,0,00)..GO..NO........u.W.D.C. .W.D.1.0.E.Z.E.X.-.0.8.M.2.N.A.0....................A.................................>..Gd-.;.A..MQ..L. . . . .W. .-.D.M.W.3.C.1.F.6.4.5.0.4.6........BO..NO........u.S.a.m.s.u.n.g. .S.S.D. .8.4.0. .E.V.O. .2.5.0.G.B....................A.................................>..Gd-.;.A..MQ..L.1.S.B.D.S.N.F.A.7.1.3.0.7.5. .L. . . . ........BO..NO........o.S.a.n.D.i.s.k. .S.D.S.S.D.H.I.I.2.4.0.G....................A...........................>..Gd-.;.A..MQ..L.4.1.3.4.3.7.0.4.7.0.2.0. . . . . . . . ........BO..NO........u.G.e.n.e.r.a.l. .U.S.B. .F.l.a.s.h. .D.i.s.k....................A.............................B..Gd-.;.A..MQ..L.G.e.n.e.r.a.l. .U.S.B. .F.l.a.s.h. .D.i.s.k........BO
    Boot0002* ubuntu HD(1,800,f3a9e,3eaa3162-6352-4ad8-a725-89c738f2b3ad)File(\EFI\Ubuntu\grubx64.efi)
    Boot0003* UEFI: General USB Flash Disk ACPI(a0341d0,0)PCI(1d,0)USB(1,0)USB(1,0)HD(1,fc,f800,612a5c68)..BO
    Boot0008 Hard Drive BIOS(2,0,00)..GO..NO........o.S.a.n.D.i.s.k. .S.D.S.S.D.H.I.I.2.4.0.G....................A...........................>..Gd-.;.A..MQ..L.4.1.3.4.3.7.0.4.7.0.2.0. . . . . . . . ........BO..NO........u.W.D.C. .W.D.1.0.E.Z.E.X.-.0.8.M.2.N.A.0....................A.................................>..Gd-.;.A..MQ..L. . . . .W. .-.D.M.W.3.C.1.F.6.4.5.0.4.6........BO..NO........u.S.a.m.s.u.n.g. .S.S.D. .8.4.0. .E.V.O. .2.5.0.G.B....................A.................................>..Gd-.;.A..MQ..L.1.S.B.D.S.N.F.A.7.1.3.0.7.5. .L. . . . ........BO..NO........o.G.e.n.e.r.a.l. .U.S.B. .F.l.a.s.h. .D.i.s.k....................A.......................B..Gd-.;.A..MQ..L.G.e.n.e.r.a.l. .U.S.B. .F.l.a.s.h. .D.i.s.k........BO
    I mount /dev/sda3 to /mnt and /dev/sda1 to /mnt/boot before I arch-chroot and when I tried grub, I installed with:
    # grub-install --target=x86_64-efi --efi-directory=/boot--bootloader-id=grub --recheck
    No errors are reported. I then make a config file for grub with:
    # grub-mkconfig -o /boot/grub/grub.cfg
    Last edited by DetotatedWam (2015-04-01 22:12:06)

    Boot\ Secure Boot menu >
    Secure Boot state: Disabled
    Platform Key (PK) state: Unloaded
    OS Type: Windows UEFI mode
    I have tried setting "OS Type" to "Other OS" before but that doesn't change anything. I just tried it again and the BIOS freezes upon "Save Changes & Reset".
    Boot\ Secure Boot menu\ Key Management >
    PK Management: Unloaded
    KEK Management: Unloaded
    DB Management: Unloaded
    DBX Management: Unloaded
    The other day, I deleted all of them and backed them up on a USB in order to disable secure boot.
    Note: After looking at this menu again I am noticing options to append from file for KEK, DB, and DBX that might help.
    Append KEK from File
    Allows you to load the additional
    KEK from a storage device for an
    additional db and dbx loaded
    management.
    [Yes]
    Load the default KEK
    [No]
    Load from a USB storage device
    Append db from File
    Allows you to load the additional db
    variable from a storage device so
    that more custom signed UEFI
    executble files can be loaded.
    *UEFI executabled files include UEFI
    boot loaders, drivers and
    applications.
    [Yes]
    Load the default db
    [No]
    Load from a USB storage device
    Append dbx from File
    Allows you to load the additional
    dbx variable from a storage device
    so that more custom signed UEFI
    executble files cannot be loaded.
    *UEFI executabled files include UEFI
    boot loaders, drivers and
    applications.
    [Yes]
    Load the default dbx
    [No]
    Load from a USB storage device
    Boot\ CSM (Compatibility Support Module)
    Launch CSM: Enabled
    Boot Device Control: UEFI and Legacy OPROM
    Boot from Network Devices: Legacy OPROM first
    Boot from Storage Devices: Both, UEFI first
    Boot from PCI-E/PCI Expansion Devices: Legacy OPROM first
    As a side note: After a reboot, I noticed the Arch boot option disappeared again.
    Head_on_a_Stick wrote:Have you managed to boot any other distributions that are not compatible with Secure Boot?
    I have been able to boot Windows 7 and ubuntu but I beleive both are compatible with Secure Boot so, no.
    Head_on_a_Stick wrote:The Arch live ISO has the EFI applications PreLoader.efi & HashTool.efi included so that will boot up with Secure Boot enabled.
    I will try this and post the results.
    Edit: Now my BIOS Freezes everytime I try to save & exit.
    Last edited by DetotatedWam (2015-04-01 19:59:18)

  • HP Probook 450 G1 Boot Failure....!!

    Dear forum viewes and experts...
    I hope you can provide me with your insights on this problem i am having...
    I bought a new laptop HP ProBook 450 G1 (i5 4200M, 8GB RAM, 1TB HDD, 2GB ATI Graphics card). The laptop comes with DOS free operating system.
    I installed Windows 7 Ultimate from ISO file on a USB stick, and then activated the Windows.
    After updating all drivers and having a clean device manager with no hardware left as unknown, i figured out that the laptop fails to make a cold BOOT.
    After several trials, and installations. the problem remained the same. I changed the installation to Windows 8.1 Pro and the problem remained the same.
    On cold booting, the laptop after showing HP logo in start-up starts to show Windows Logo animation but in Super Slow Motion for about 6-8 minutes, then followed by strange sounds which force me to shut it down by pressing power button for long until it shuts down.
    After huge number of trail and error, i found out that if I entered BIOS Setup (by pressing esc then F10) and then exiting it without doing any changes or even without saving, the Laptop boots Windows 7 very smoothly (in about 15-18 seconds) and works fine. it also can make endless number of smooth restarts without any problem.
    If it is shut down then turned on, the boot failure is the outcome.
    The only way to make a successful cold BOOT (i.e after a shut down) is to enter BIOS setup mode (by pressing esc then F10), then exiting it within seconds without changing anything or saving, then it boots smoothly.
    I tried MBR fixes through command prompt in Recovery Mode, I tried to change booting to make it boot as LEGACY or UEFI Hybrid. The BIOS is updated to the latest frimware on HP website verion 1.2 dated 15 July 2014.
    NO HELP.....All lead to the same disappointing result.
    Any idea whether this is a hardware issue/software issue/BIOS issue?
    Your insights will be highly appreciated

    Can you post a screenshot with the PCI\VEN hardware ids of the bluetooth device? The image below shows an example of what we need to identify the device properly.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Windows 7 Ultimate x64 BOOT Failure on HP ProBook 450 G1...

    Dear forum viewes and experts...
    I hope you can provide me with your insights on this problem i am having...
    I bought a new laptop HP ProBook 450 G1 (i5 4200M, 8GB RAM, 1TB HDD, 2GB ATI Graphics card). The laptop comes with DOS free operating system.
    I installed Windows 7 Ultimate from ISO file on a USB stick, and then activated the Windows.
    After updating all drivers and having a clean device manager with no hardware left as unknown, i figured out that the laptop fails to make a cold BOOT.
    After several trials, and installations. the problem remained the same. I changed the installation to Windows 8.1 Pro and the problem remained the same.
    On cold booting, the laptop after showing HP logo in start-up starts to show Windows Logo animation but in Super Slow Motion for about 6-8 minutes, then followed by strange sounds which force me to shut it down by pressing power button for long until it shuts down.
    After huge number of trail and error, i found out that if I entered BIOS Setup (by pressing esc then F10) and then exiting it without doing any changes or even without saving, the Laptop boots Windows 7 very smoothly (in about 15-18 seconds) and works fine. it also can make endless number of smooth restarts without any problem.
    If it is shut down then turned on, the boot failure is the outcome.
    The only way to make a successful cold BOOT (i.e after a shut down) is to enter BIOS setup mode (by pressing esc then F10), then exiting it within seconds without changing anything or saving, then it boots smoothly.
    I tried MBR fixes through command prompt in Recovery Mode, I tried to change booting to make it boot as LEGACY or UEFI Hybrid. The BIOS is updated to the latest frimware on HP website verion 1.2 dated 15 July 2014.
    NO HELP.....All lead to the same disappointing result.
    Any idea whether this is a hardware issue/software issue/BIOS issue?
    Your insights will be highly appreciated

    Hello,
    I'd ask in the
    Windows 7 forum on Microsoft Community.
    As the Microsoft Community is on a different platform, we cannot move the question for you.
    Once there, click on Participate near the top of the screen, and select 'Ask a Question' or 'Start a Discussion':
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Boot failure following Windows 8.1 update. shows reason: irql_not_less_or_equal

    Hi,
    I have the dreaded BSOD with irql_not_less_or_equal boot failure. 
    The PC was running Vista when bought, which was subsequently upgraded to Windows 8. This was done via an online purchase & download of the Windows 8 Upgrade, so I do not have any installation media. I have also updated (again online, so no physical media)
    to Windows 8.1
    I have recently had to shut the PC down (it usually stays on all the time), but now it refuses to boot, going straight to the new style BSOD, showing 'irql_not_less_or_equal', which then restarts in to the system restore menu.
    I have tried to remove some peripherals - removing the video card (now using the display adapter on the MoBo), a USB 3 card & a USB head-set dongle - which  has improved the situation a little - it now boots to the log-in page (sometimes), but will
    BSOD after about 10 seconds, regardless of whether I am fast enough to log-in, or not.
    I have tried (from the System Restore menu) to do a restore to a previous state, but it doesn't seem to be able to find the restore points.
    Note, the BSOD occurs if I boot into 'Safe' Mode, or do a normal boot. 
    The bottom line is:...
    I can't boot to Safe Mode, get to any system maintenance tools, so I can't disable/uninstall any drivers.
    Windows 8 & the 8.1 update were purchased online & downloaded, so no boot disk(s).
    The recovery points I have made do not seem to be accessible.
    Any advise on how to proceed?
    cheers
    Paul

    now boots to the log-in page (sometimes), but will BSOD after about 10 seconds, regardless of whether I am fast enough to log-in, or not.
    That should be enough time to get to the Shift-Restart option.   <eg>
    Since you can see what you're doing you don't even have to do the backwards method that I was long proposing so that users who were trying to do this in the dark would be able to bypass their password field.   But maybe using a set of Backtab (Shift-Tab)
    Shift-Space would be more efficient anyway?
    Here is an example of an explanation of the technique:
    http://social.technet.microsoft.com/Forums/en-US/37eff8a6-74a3-4775-90d7-e0aa86c68424/windows-8-black-screen-at-boot?forum=w8itprogeneral#0dc40edd-4e3b-466b-b4af-37c532eb844a
    <quote>
    In order to try to avoid hitting the Password field in this uncertain state I suggested using Backtab (e.g. Shift-Tab) to do the navigation. Fortunately, the pressing of Shift- would solve the problem of whether you were on the Lock screen or already on
    the Login screen. So the iteration would be Shift-Tab, Shift-Space (Fortunately, the Restart item is at the bottom of the Shutdown menu.)
    </quote>
    HTH
    Robert Aldwinckle

  • System boot failure after upgrade from linux3.13.8-1 to linux3.14.6-1

    I have tried to update the kernel again from 3.13 to 3.14 again, but no luck.
    My arch system boot failure with black screen, tried [ctrl]+[alt]+[F1-6] and nothing happen, no any recure shell prompt out.
    Then I boot with kernel debug parameters
    systemd.log_level=debug systemd.log_target=kmsg log_buf_len=1M
    althrough the screen was black, when I reboot and chroot into my system,
    I entered the following to find any error messages, please see the link below:
    journalctl -b -0 >> ~/3.13_no_problem.log
    journalctl -b -1 >> ~/3.14-6_nodebug.log
    journalctl -b -2 >> ~/3.14-6_debug.log
    3.13_no_problem.log: http://pastebin.com/EQ2Mucq8
    3.14-6_nodebug.log: http://pastebin.com/18TRZVRp
    3.14-6_debug.log: http://pastebin.com/0QZJBPnf
    In both 3.14 journal messages, I found some similar error message:
    Jun 15 14:37:47 arch-desktop kernel: [drm:atom_op_jump] *ERROR* atombios stuck in loop for more than 5secs aborting
    Jun 15 14:37:47 arch-desktop kernel: [drm:atom_execute_table_locked] *ERROR* atombios stuck executing D218 (len 62, WS 0, PS 0) @ 0xD234
    Jun 15 14:37:55 arch-desktop kernel: [drm:atom_op_jump] *ERROR* atombios stuck in loop for more than 5secs aborting
    Jun 15 14:37:55 arch-desktop kernel: [drm:atom_execute_table_locked] *ERROR* atombios stuck executing D218 (len 62, WS 0, PS 0) @ 0xD234
    Jun 15 14:38:00 arch-desktop kernel: [drm:cypress_dpm_set_power_state] *ERROR* rv770_restrict_performance_levels_before_switch failed
    Jun 15 14:38:01 arch-desktop kernel: [drm:atom_op_jump] *ERROR* atombios stuck in loop for more than 5secs aborting
    Jun 15 14:38:01 arch-desktop kernel: [drm:atom_execute_table_locked] *ERROR* atombios stuck executing D218 (len 62, WS 0, PS 0) @ 0xD234
    Jun 15 14:38:07 arch-desktop kernel: [drm:atom_op_jump] *ERROR* atombios stuck in loop for more than 5secs aborting
    Jun 15 14:38:07 arch-desktop kernel: [drm:atom_execute_table_locked] *ERROR* atombios stuck executing D218 (len 62, WS 0, PS 0) @ 0xD234
    Jun 15 14:38:13 arch-desktop kernel: [drm:atom_op_jump] *ERROR* atombios stuck in loop for more than 5secs aborting
    Jun 15 14:38:13 arch-desktop kernel: [drm:atom_execute_table_locked] *ERROR* atombios stuck executing D218 (len 62, WS 0, PS 0) @ 0xD234
    I searched on internet, I think this is caused by my graphic card(ATI 5750), but I have no idea to solve it
    I don't know my system boot failure due to these error or another things.
    my PC specs:
    motherbroad - gigabyte GA-P55A-UD3 (bios ver - F11)
    cpu -  i5-750
    display - ati 5750
    os - arch 64bit
    Currently, I have downgraded back to 3.13.
    I hope someone can give me some idea,
    Thanks
    Last edited by samtai (2014-06-17 12:17:02)

    As there are errors associated with ntpd, I would temporarily disable the ntpd service and also ipv6.
    If they are not the only problem, at least your logs would be easier to examine for other problems.

  • Disk Boot Failure, Insert System Disk and Press Enter

    I have been experiencing an intermittent disk boot failure for the last few months on my HP Pavilion Slimline PC. At first, it would occur once every week or two, typically when the computer would boot up after being in hibernation. After turning off the computer and turning it back on, everything worked normally. Within the last month, the failure began occurring with more regularity.
    This week, I started receiving the error every time the computer would boot from hibernation. I went into the BIOS and saw that the system was not recognizing the hard drive. I tried changing the boot priority to boot from the HDD first, but to no avail. Today, the system worked as usual until I performed a restart, and it has yet to work again. Additionally, the performance has taken a nose dive over the last week (slow processing, programs not responding, etc.).
    System Specs:
    HP Pavilion Slimline s3710t PC
    250 GB SATA Western Digital HDD (Caviar Blue)
    Intel Pentium Dual-Core Processor
    Windows Vista Home Premium (32-bit)
    3GB DR2-800 MHz SDRAM
    I have read through many technical forums, including HP’s, and followed all of the advice. I have again changed the boot priority to HDD first, restored the default settings, etc. The only drive I can find listed is the DVD drive on the unit, which is listed as the second drive. There is no first drive listed in the main tab of the BIOS CMOS Setup Utility.
    I attempted to run a system recovery, but it is not even possible. Upon running the diagnostics, it of course mentions that there is no hard drive connected. Upon entering the boot menu, it also only lists the DVD drive.
    My next course of action was to remove the side panel and reseat the connections on the hard drive, as well as the connection to the motherboard. This was also unsuccessful, and I have not been able to boot up the computer again today.
    The computer itself is 1.5 years old and this is the original hard drive that shipped with it. I have never opened the computer, prior to today. The symptoms started a few months ago, just outside of the warranty period.
    Based on the forums I have read, it all signs are pointing to a bad hard drive. This is hard for me to believe, as the computer is relatively new and does not get much use. The use it does get revolves around email and Internet access, as well as use of Microsoft Office.
    As you can imagine, I am not happy about the prospect of having to buy a new hard drive, as well as pay for the data recovery on the original drive. I hope that someone at HP can come up with a better solution, as a 1-year life on a hard drive is pretty pathetic.
    Thanks,
    JR

    HI JR,
    You situation does not sound good if the PC doesn't recognize your hard drive. 
    Boot into the bios and run some bios hardware diagnostics.
    Try clearing the CMOS.
    Try this procedure:
    Unplug the PC and open it up. Clean out all the dust. Carefully remove and replace all the cables going to the motherboard one at a time. Do the same for the memory dimms and the video and sound cards if you have any.  You might want to buy a can of compressed air to blow the dust out of the CPU heat sink.  Plug your PC back in and give it a go.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • [SOLVED] Can't boot back into windows

    Been a while since I had to install Arch but my previous PC died so I tried installing it on my new one. When I installed it last time, there was no EUFI and it was a simple Grub installation. When I installed it, I disabled eufi from my bios to legacy grub. I installed Arch like normal but os-probe didn't seem to work. Although it detected my OS, it did not make an entry for windows in the grub, When I re-enable EUFI from bios, it just goes straight to GRUB cmd line.
    Here's the output for fdisk:
    Disk /dev/sda: 946.4 GiB, 1016218828800 bytes, 1984802400 sectors
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 4096 bytes
    I/O size (minimum/optimal): 4096 bytes / 4096 bytes
    Disklabel type: gpt
    Disk identifier: A3D81761-F777-4399-9F81-01E346CDC93F
    Device Start End Size Type
    /dev/sda1 2048 1988607 970M BIOS boot partition
    /dev/sda2 1988608 3708927 840M Windows recovery environment
    /dev/sda3 3708928 4241407 260M EFI System
    /dev/sda4 4241408 4503551 128M Microsoft reserved
    /dev/sda5 4503552 1123987926 533.8G Microsoft basic data
    /dev/sda6 1905238016 1953523711 23G Windows recovery environment
    /dev/sda7 1953525168 1984798127 14.9G unknown
    /dev/sda8 1123989504 1900040191 370.1G Linux filesystem
    /dev/sda9 1900040192 1905238015 2.5G Linux swap
    and os-prober
    $ sudo os-prober
    No volume groups found
    /dev/sda3:Windows 8 (loader):Windows:chain
    Arch is installed on sda8/sda9 and wndows is on sda3/4/5/6. There also seems to be a seperate "boot" drive sdb that only shows up when eufi is enabled. Can anyone help me figure out how to boot into my windows partition? thanks
    edit: here's 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,gpt8'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 6a6f6015-3793-4978-8c19-5abd44c63aea
    else
    search --no-floppy --fs-uuid --set=root 6a6f6015-3793-4978-8c19-5abd44c63aea
    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_archlinux ###
    menuentry "Arch Linux pkg-linux kernel" --class arch-linux --class arch --class gnu-linux --class gnu --class os {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    fi
    set gfxpayload=keep
    insmod ext2
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 6a6f6015-3793-4978-8c19-5abd44c63aea
    else
    search --no-floppy --fs-uuid --set=root 6a6f6015-3793-4978-8c19-5abd44c63aea
    fi
    echo 'Loading Arch Linux pkg-linux kernel ...'
    linux /boot/vmlinuz-linux root=UUID=6a6f6015-3793-4978-8c19-5abd44c63aea rw
    echo 'Loading Arch Linux pkg-linux kernel initramfs ...'
    initrd /boot/initramfs-linux.img
    menuentry "Arch Linux pkg-linux kernel (fallback initramfs)" --class arch-linux --class arch --class gnu-linux --class gnu --class os {
    if [ x$feature_all_video_module = xy ]; then
    insmod all_video
    fi
    set gfxpayload=keep
    insmod ext2
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 6a6f6015-3793-4978-8c19-5abd44c63aea
    else
    search --no-floppy --fs-uuid --set=root 6a6f6015-3793-4978-8c19-5abd44c63aea
    fi
    echo 'Loading Arch Linux pkg-linux kernel ...'
    linux /boot/vmlinuz-linux root=UUID=6a6f6015-3793-4978-8c19-5abd44c63aea rw
    echo 'Loading Arch Linux pkg-linux kernel fallback initramfs ...'
    initrd /boot/initramfs-linux-fallback.img
    ### END /etc/grub.d/10_archlinux ###
    ### BEGIN /etc/grub.d/10_linux ###
    menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-6a6f6015-3793-4978-8c19-5abd44c63aea' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod ext2
    set root='hd0,gpt8'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 6a6f6015-3793-4978-8c19-5abd44c63aea
    else
    search --no-floppy --fs-uuid --set=root 6a6f6015-3793-4978-8c19-5abd44c63aea
    fi
    echo 'Loading Linux linux ...'
    linux /boot/vmlinuz-linux root=UUID=6a6f6015-3793-4978-8c19-5abd44c63aea rw
    echo 'Loading initial ramdisk ...'
    initrd /boot/initramfs-linux.img
    submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-6a6f6015-3793-4978-8c19-5abd44c63aea' {
    menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-6a6f6015-3793-4978-8c19-5abd44c63aea' {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod ext2
    set root='hd0,gpt8'
    if [ x$feature_platform_search_hint = xy ]; then
    search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 6a6f6015-3793-4978-8c19-5abd44c63aea
    else
    search --no-floppy --fs-uuid --set=root 6a6f6015-3793-4978-8c19-5abd44c63aea
    fi
    echo 'Loading Linux linux ...'
    linux /boot/vmlinuz-linux root=UUID=6a6f6015-3793-4978-8c19-5abd44c63aea rw
    echo 'Loading initial ramdisk ...'
    initrd /boot/initramfs-linux.img
    ### END /etc/grub.d/10_linux ###
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    ### END /etc/grub.d/40_custom ###
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f ${config_directory}/custom.cfg ]; then
    source ${config_directory}/custom.cfg
    elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
    source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    ### BEGIN /etc/grub.d/60_memtest86+ ###
    if [ "${grub_platform}" == "pc" ]; then
    menuentry "Memory Tester (memtest86+)" --class memtest86 --class gnu --class tool {
    search --fs-uuid --no-floppy --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 6a6f6015-3793-4978-8c19-5abd44c63aea
    linux16 /boot/memtest86+/memtest.bin
    fi
    ### END /etc/grub.d/60_memtest86+ ###
    Last edited by giok13 (2014-04-24 15:20:31)

    dice wrote:
    As you have disabled UEFI during arch installation your grub was installed in mbr mode and not EFI.
    Your Windows installation is probably installed in UEFI mode.
    So when you enable UEFI grub doesn't work correctly. And in legacy mode Windows won't boot.
    See here for details https://wiki.archlinux.org/index.php/UEFI
    Yea, I figured it out last night after spending hours on it. For anyone that might be having the same problem as me: Re-installed grub with os-prober and it detected windows successfully. Added the entry into grub correctly as well. But when I tried to boot into windows, it said my bcd was corrupted. Apparently when I was trying everything, I formatted the entire /boot partition so there was no way for windows to boot. After hours of trying to figure out how to restore the partition, I went into bios and re-enabled UEFI, safe boot, fast boot. It restored the /boot partition and let me get into windows. Then disabled safe boot and fast boot, booted arch live cd and installed gummiboot.

  • UEFI Installation on sdc, Windows 8 partitons on sda gone?

    Hi all!
    I installed arch on my machine today, now it looks like my windows 8 partitions are gone, maybe someone can help me out.
    My setting:
    sda Windows 8 uefi installation
    sdb ntfs
    sdc ntfs and arch uefi installation
    So what i did:
    I freed up 100GB in sdc for the arch partitions:
    [root@chief-pc chief]# sudo gdisk -l /dev/sdc
    GPT fdisk (gdisk) version 0.8.7
    Partition table scan:
    MBR: protective
    BSD: not present
    APM: not present
    GPT: present
    Found valid GPT with protective MBR; using GPT.
    Disk /dev/sdc: 1953525168 sectors, 931.5 GiB
    Logical sector size: 512 bytes
    Disk identifier (GUID): C82D4B3F-BE8C-4B1F-B3D6-73ED7B839865
    Partition table holds up to 128 entries
    First usable sector is 34, last usable sector is 1953525134
    Partitions will be aligned on 2048-sector boundaries
    Total free space is 2014 sectors (1007.0 KiB)
    Number Start (sector) End (sector) Size Code Name
    1 2048 1743808511 831.5 GiB 0700 Basic data partition
    2 1743808512 1744873471 520.0 MiB EF00 efi
    3 1744873472 1753262079 4.0 GiB 8200 swap
    4 1753262080 1953525134 95.5 GiB 8300 root
    As you can see I made a new efi partition on sdc, because I did not want to touch sda at all.
    Then I installed grub:
    mount -t vfat /dev/sdc2 /boot/efi
    mkdir /boot/efi/EFI
    modprobe dm-mod
    grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=arch_grub --recheck
    grub-mkconfig -o /boot/grub/grub.cfg
    Everything went fine, I rebooted my system and it automatically booted into grub instead of win8 (win bootloader should have been standard in my asus uefi bios), so I rebooted again and tried to switch back to win bootloader in asus uefi bios, but the win entry was gone.
    So back to arch, my output for sda looks like this:
    [root@chief-pc chief]# sudo gdisk -l /dev/sda
    GPT fdisk (gdisk) version 0.8.7
    Partition table scan:
    MBR: protective
    BSD: not present
    APM: not present
    GPT: present
    Found valid GPT with protective MBR; using GPT.
    Disk /dev/sda: 234441648 sectors, 111.8 GiB
    Logical sector size: 512 bytes
    Disk identifier (GUID): FFB20C3D-64F8-46F9-9504-C591105405FC
    Partition table holds up to 128 entries
    First usable sector is 34, last usable sector is 234441614
    Partitions will be aligned on 2048-sector boundaries
    Total free space is 233827181 sectors (111.5 GiB)
    Number Start (sector) End (sector) Size Code Name
    1 2048 616447 300.0 MiB 2700 Basic data partition
    So where are all the win8 partitions? efi, system-reserved and ntfs
    I never touched sda during the installation.
    Please help me out here
    best regards chief

    chieffun wrote:
    [root@chief-pc chief]# sudo gdisk -l /dev/sda
    Disk /dev/sda: 234441648 sectors, 111.8 GiB
    Number Start (sector) End (sector) Size Code Name
    1 2048 616447 300.0 MiB 2700 Basic data partition
    So where are all the win8 partitions? efi, system-reserved and ntfs
    I never touched sda during the installation.
    First, please verify that this is the correct disk. As Trilby pointed out, disk device names (/dev/sda, /dev/sdb, etc.) can change. There may be a clue in the disk size: 111.8GiB. If both /dev/sda and /dev/sdb were identical, that might not be enough of a clue; but if your disks all had unique sizes, the disk size should tell you which one is which.
    Second, the type code 2700 refers to a Windows Recovery Environment (RE) partition. This suggests that this partition is an emergency partition, and the size of 300MiB seems consistent with that. OTOH, the partition name of "Basic data partition" suggests something else. The fact that the  one partition fills far less than the entire disk is not a good sign. You could try using "blkid" on the partition in Linux to see what its filesystem type is, and perhaps mount it to examine its contents.
    Finally, try using gdisk's recovery features. You can start with the "-v" option to perform a check on the GPT's integrity. It's conceivable that this will report a problem that you'll then be able to correct in one way or another. You could also play with the options on the gdisk recovery & transformation menu (type "r" at the main menu to get here). In particular, it's conceivable that the "c" option on that menu will help; it loads the backup partition table and uses it in preference to the main one. If you use that option and it restores your partitions, save your changes with "w".
    WonderWoofy wrote:The manual nature of the Arch Linux installation means that you (should) know exactly what you are implementing and what it is doing.  So the only way that Arch Linux can wipe out another system is if the administrator (you) wipes them out.
    I agree. Some inadvertent action that you haven't reported must be responsible for these problems. It's conceivable that the action was in another distribution's installer or even in Windows.
    WonderWoofy wrote:The only thing you can try is to see if you can use some kind of partition recovery software.  There are some out there that can (somewhat reliably) detect where the start and end points of the old partitions were, and regenerate the partition table for you.  The other type of recovery software is those that scan the device and try to recover individual lost files.  Some of them do both.  You should probably start reading up on them.
    In Linux, the TestDisk utility can scan for missing partitions, while PhotoRec can scan for lost files. I gather there are better Windows tools for scanning for lost files on NTFS volumes, but I don't happen to have any pointers. TestDisk tends to do a decent job, but it's a bit confusing to the uninitiated, and it can become hopelessly confused if the disk has been repartitioned a lot in the past.
    chieffun wrote:So I thought that maybe arch does not like 2 efi partitions in one system and corrupted it somehow.
    No, that can't be it. As cfr says, Windows doesn't like multiple ESPs; but that's mostly an issue for the Windows installer. (It tends to get confused and aborts halfway through the installation.) I'm not even sure if Windows misbehaves in this way when the ESPs are on different disks; it might handle that situation OK, for all I know. Windows certainly doesn't go postal on its own partitions if it sees two ESPs. That said, it's conceivable that a Windows bug did cause this problem, if you booted Windows at some point during the process.
    chieffun wrote:I also tried to rescue with parted rescue command and gpart, looks like something completely wiped (or corrupted) the partitions away. As if they have never been there in the first place...
    In my experience, the partition rescue features of GParted and parted are unreliable at best. TestDisk does a much better job.

  • Sudden total boot failure. Any idea what would cause this??

    Today I was adding more apps to my clean install (on an external drive) and I had to go back to my original "update" installation to get a password off Keychain (I did not migrate). After I got the pw, I shutdown and my Powerbook would not reboot! I got the chime and then utter blackness. No disk access was attempted on my external, nothing from internal drive, and still nothing when I tried the Leopard installation DVD.
    I kept trying and finally (after 10-15 minutes of getting nothing except the initial startup sound) the screen lit up and I got to the Startup Manager disk selection. I was still unable to boot from the DVD; the boot sequence had progressed only part way and then totally stalled (I gave it about 3 times as long as it would normally take to boot from a CD or DVD). I tried this twice more so I thought I had suffered catastrophic hardware failure.
    But, then, after a pram reset, I was able to restart into single-user mode and did a couple of the fsck's (file-system check in Unix) and it said the internal disk was OK both times. Got through login and to the Finder Desktop after a regular boot, and after a safe boot, but found that the Finder was corrupted and repeatedly crashed with almost everything I tried to do.
    Reluctantly then tried to boot from external drive and found that - it worked!
    Tried to fix internal drive unsuccessfully. Eventually found that DVD drive was working again too, so I did a Time Machine restore of the internal drive after booting from the Leopard install disk.
    After getting the internal drive to boot again (Time Machine worked!!), the Wacom tablet driver immediately crashed (even though I had supposedly loaded a Leopard-compatible version), so I then went to Terminal and got rid of all the StartupItems and PreferencePanes in the root Library and my user Library. I tried rebooting and since it did so without issue this time, I hooked up Time Machine and made a new backup.
    How did the total boot failure get caused? I had never seen anything like this before where the screen stayed totally black and not even the DVD would boot.
    I am now back to "normal" after 7 hours. Moral of the story is that even when your computer looks completely dead, keep trying. I just hope it doesn't happen again, since I'm not sure what the issue was.

    Faulty battery. Make Genius reservation and take this iPhone back.

  • MacBook Leopard Boot Failure

    Brief History:
    Performed Software update (Macbook/Pro Software Update 1.1 and Security Update 2007-09) and computer restarted and machine booted to first time install screen for Leopard. Booted machine from external drive, no errors.
    Booted machine from various Leopard Install disks (disk image and 2 different Leopard install disks) and both had the following error.
    Jan 27 15:10:05 localhost Unknown[66]: Launching the Language Chooser for an OS Install
    Jan 27 15:10:23 localhost LCA[67]: Folder Manager is being asked to create a folder (cach) while running as uid 0
    Jan 27 15:10:24 localhost LCA[67]: Folder Manager is being asked to create a folder (asav) while running as uid 0
    Jan 27 15:10:33 localhost LCA[67]: Launching the Installer using language code "English"
    Jan 27 15:10:34 localhost /System/Installation/CDIS/Mac OS X Installer.app/Contents/MacOS/Mac OS X Installer[153]: vm_allocate: 0, 0x200e2000 - 0x400e2000
    Jan 27 15:10:34 localhost /System/Installation/CDIS/Mac OS X Installer.app/Contents/MacOS/Mac OS X Installer[153]: vm_protect: 0
    Jan 27 15:10:34 localhost OSInstaller[153]: Mac OS X Installer application started
    Jan 27 15:10:34 localhost OSInstaller[153]: 1 display(s) found.
    Jan 27 15:10:34 localhost OSInstaller[153]: Display[1] is using OpenGL acceleration.
    Jan 27 15:10:34 localhost OSInstaller[153]: @(#)PROGRAM:Install PROJECT:Install-374
    Jan 27 15:10:34 localhost OSInstaller[153]: @(#)PROGRAM:Mac OS X Installer PROJECT:OSInstaller-88
    Jan 27 15:10:34 localhost OSInstaller[153]: Hardware: MacBook3,1 @ 2.20 GHz (x 2), 1024 MB RAM
    Jan 27 15:10:34 localhost OSInstaller[153]: Running OS Build: Mac OS X 10.5 (9A581)
    Jan 27 15:10:34 localhost OSInstaller[153]: Env: DYLDNO_FIXPREBINDING=1
    Jan 27 15:10:34 localhost OSInstaller[153]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Jan 27 15:10:34 localhost OSInstaller[153]: Env: PWD=/
    Jan 27 15:10:34 localhost OSInstaller[153]: Env: SHLVL=1
    Jan 27 15:10:34 localhost OSInstaller[153]: Env: OS_INSTALL=1
    Jan 27 15:10:34 localhost OSInstaller[153]: Env: _=/System/Installation/CDIS/LCA.app/Contents/MacOS/LCA
    Jan 27 15:10:35 localhost OSInstaller[153]: Opening OSInstall package '/System/Installation/Packages/OSInstall.mpkg'.
    Jan 27 15:10:36 localhost OSInstaller[153]: Installation checks failed.
    Jan 27 15:10:36 localhost OSInstaller[153]: Installation check failures: For Mac OS X system requirements, see the "Read Before You Install" document on your Mac OS X installation disc.
    Jan 27 15:10:37 localhost OSInstaller[153]: Folder Manager is being asked to create a folder (asav) while running as uid 0
    Jan 27 15:11:39 localhost Unknown[68]: 2008-01-27 15:11 Mac OS X Installer[153] (CarbonCore.framework) FSEventStreamStart: ERROR: FSEvents_connect() => Unknown service name (1102)
    Jan 27 15:11:39 localhost OSInstaller[153]: installAutoFSMonitor: open failed
    I was able to Archive and Install while Preserving Users and Settings, by hooking up a second MacBook and booting the first in Target Disk mode. I used the working MacBook and it was able to boot from the same Leopard disk and install to the MacBook that had errors.
    This sounds like a H/W failure on the one machine, would guess either hard drive or MLB. Anyone have any other ideas?

    Welcome to Apple Discussions,
    Unfortunately disk utility is not recognising my Leopard install DVD which is on an
    external LG drive (USB type 1.X) using patchbay.
    eMac PPC G4 700mHz 700mHz 256mb
    2 issues-
    1)I don't know what "patchbay" is, and I don't know why the Install DVD didn't show up in Disk Utility, but even if it did show up there, most PPC Macs won't boot from a USB device - it needs to be FireWire.
    2) Leopard requires a minimum of 512 MB RAM

  • DISK BOOT FAILURE: PLEASE INSERT SYSTEM DISK....

    Hi
    I have exhausted two full days on the following problem so I would greatly appreciate some help. The problem I am experiencing is that the disk will not boot on its own. I receive the "DISK BOOT FAILURE: PLEASE INSERT SYSTEM DISK...." error when starting up. I have run chkdsk, i have run Western Digital Diagnostics for Dos (quick test) and no problems come up with the drive. I have also jumpered pins 5 and 6 to force the drive to run at SATA-I speeds. Now here's the curious part: The disk boots up and functions absolutely perfectly IF and ONLY IF, the bios is set to boot from my IDE drive. Now on the IDE drive I have a boot.ini file set up to allow me to boot the SATA drive instead. Using this work around (i.e. boot from IDE, select SATA drive from boot menu) the drive seems to work just fine. However if i change the bios back to boot from the SATA drive (and therefore use its own boot.ini) I receive the error again and the boot will not continue.
    Here is my set up:
    MSI K8T Neo2-F v2.0 motherboard (with latest BIOS).
    Athlon 64 X2 4200+ dual core CPU
    1024GB DDR 400 RAM
    1 Western Digital 120GB IDE HD running on primary master.
    1 Pioneer DVD-108 DVD-RW running on secondary master.
    1 Western Digital 250GB (WD2500KS) running on SATA1.
    Nividia GeForce 6800 running on AGP.
    M-Audio Audiophile 2496 PCI
    Sound Blaster Audigy 2 ZS PCI
    Originally the system was as above without the new WD2500KS drive. I then bought the new SATA drive and installed windows to it with the intention of clearing windows from the original IDE and making it a storage drive. The above workaround is how I completed installation of Windows XP and installed my other programs, otherwise when rebooting during installation the disk would fail again.
    Another issue is that Windows will NOT designate the SATA as drive C. When disconnecting the IDE, the SATA will become "c:" but as soon as the IDE is plugged back in, it immediately claims "c:" again and the SATA becomes "d:". This is ascertained from running the Recovery Console and using 'map' for example. It is important that I get this to "c:" as I have programs which appear to look for files by an absolute path and will not find them on "d:".
    I have also tried to 'fixmbr' and this is the only time I have seen any curious message. Using the workaround the disk works fine. But when I tried to 'fixmbr', the system warned that the disk had a non-standard boot record (or something to that effect). But in any case, boot seems fine so long as we're not booting it directly. 
    Finally, I should confirm that the BIOS is set to run the SATA in IDE mode and not SATA (although as a sanity check I have run it in RAID and the result is the same).
    I have no idea at this stage whether the problem lies with the SATA drive or the motherboard. I have sent a copy of this to WD "for further troubleshooting", and am posting a copy here for any advice on the mobo side of things.
    Many thanks

    Thank you for your reply. You are right, I've just resolved the problem today and discovered that this was the case.
    To close the topic and leave advice for anyone else facing similar difficulties I will sum up the progress since the initial post.
    Having tried absolutely everything else, I thought "what happens if i make this sata c:?" so I decided to edit the registry and force a drive letter change to ensure that my SATA was "c:". After having done this the SATA for the first time successfully booted to the boot menu! However when loading up into Windows it kept hanging. So next I thought all I need to do is a repair install now, I disconnected the IDE to leave the SATA only and attempted this. Unfortunatley the repair install also kept hanging. The Microsoft support page detailing how to force the drive letter change does warn that doing so can mess everything up unless the problem occurred in some specific circumstances.
    So a new install was in order. I hooked up the IDE again and booted from it, backed up all my files to the IDE, and then disconnected it again. Then booted from a Western Digital diagnostics disk and zero filled the SATA - this was more for my own sanity so as not to worry about dodgy MBR's and what not. Then booted from WINXP CD and formatted and reinstalled fresh.
    Install was successful.
    Hooked up IDE externally to dump back my backed up files. Then deleted the IDE's partition and formatted it. Powered down, connected the IDE internally again - booted from SATA successfully (now on c:)... the IDE was no longer recognised as a "system" disk in Disk Manager, so I gave it a drive letter and hey presto we're business again!! One SATA system disk on drive c: and one IDE storage drive!
    SHORT VERSION: If you are adding an SATA drive to an IDE set up, and want the SATA to be your OS disk, unhook all the IDE's first... if the target drive is not in isolation when installing Windows, all kinds of problems can ensue which are very difficult to correct after the install.

Maybe you are looking for

  • Is it possible to add item description in the Alert screen in sap b1

    Please see the attachment for the alert screen that gets generated every time an item stock goes beyond the minimum or maximum level. In this screen is it possible to show the item number AND the item description so that the alert is easily understan

  • How can i change back to os after using bootcamp

    Hi, Im the proud owner of a early 2008 mac, I installed windows 7 on my mac using bootcamp. I wanted to clean up my mac by resetting it, there was nothing I really wanted to keep so thats why I wanted to reset. I went to the setting screen you know t

  • Missing exported files in Dreamweaver

    Now here is something strange. When I export a file from Fiereworks or Flash to a site, it does not appear in the 'Files' tab of Dreamweaver. It's not on the tabs or on the 'Explorer' call up from Dreamweaver. If I call up Windows Explorer it is ther

  • Unable to set up Kerberos when creating Open Directory Master-beginner!

    I'm trying to promote a standalone server to an Open Directory master. In the Kerberos section I am typing my FQDN into the Realm field which is studioserver.example.com. However the searchbase is already filled with dc=studioserver,dc=local I've tri

  • Cannot deregister ISE endpoint from java app.

    The ISE ERS endpoint java demo downloaded from Cisco does not deregister the endpoint.  The output is: #  De register endpoint:                                      # #  This demo sends PUT request to deregister an existing      # #  endpoint mac: