Page 143 of 235 FirstFirst ... 4393133141142143144145153193 ... LastLast
Results 1,421 to 1,430 of 2344

Thread: [Boot-Repair] Graphical tool to repair the PC boot in one click

  1. #1421
    Join Date
    Mar 2012
    Beans
    8

    Re: [Boot-Repair] Graphical tool to repair the PC boot in 1 click!

    In this HP it is possible to find menu where you choose current boot option with devices and partitions, but no possibility to change priority and then there's BIOS menu where you can change priority between devices, but no partitions mentioned.

  2. #1422
    Join Date
    Jun 2013
    Location
    Somewhere on Earth.
    Beans
    516
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: [Boot-Repair] Graphical tool to repair the PC boot in 1 click!

    Quote Originally Posted by oldfred View Post
    In your UEFI menu should be the option on which boot is first. Some may have it mixed up with hardware - hard drive, DVD, floppy etc or it may be another menu entry. But you should just have to move ubuntu entry to be first boot choice.
    In my UEFI computer, I only had an option for "OS boot manager", "Internal DVD/CD drive", etc. OS boot manager only boots windows. The only way to boot ubuntu is by using the "one-time boot option". Is there a way to make my computer boot ubuntu as a priority, and then windows?
    -Jonathan
    Status: CELEBRATING 2016!!! (Offline )

  3. #1423
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: [Boot-Repair] Graphical tool to repair the PC boot in 1 click!

    If you have secure boot turned on, then UEFI menu will only show secure boot options. Then only if Ubuntu is installed in secure boot mode would it be an option.
    But if secure boot is off, it should give more options.

    But some systems have defective UEFI. First try UEFI/BIOS update to see if vendor fixed it. And then complain to vendor that their UEFI is not per UEFI standards.

    PDF file:
    Vendors violated UEFI specs - http://hwe.ubuntu.com/docs/ubuntu-bi...quirements.pdf

    Firmware should not enforce any boot policy other than the mechanism specified in Section 3 of the
    UEFI 2.3.1 specification [UEFI 2.3.1]. Specifically, firmware should not modify boot behaviour de-
    pending on the Description field of the EFI_LOAD_OPTION descriptor.
    You may be able to go in with command line tool to directly edit UEFI variables with efibootmgr.

    This was to delete a specific entry, but commands exist for just about anything.

    # from live CD and use efibootmgr
    sudo efibootmgr -v
    The "-v" option displays all the entries so you can confirm you're deleting the right one, and then you use the combination of "-b ####" (to specify the entry) and "-B" (to delete it). Examples #5 is delete:
    http://linux.dell.com/cgi-bin/gitweb...README;hb=HEAD
    http://software.intel.com/en-us/arti...and-scripting/
    Launch EFI Shell from File System Device
    https://wiki.archlinux.org/index.php...ace#UEFI_Shell
    Last edited by oldfred; September 18th, 2013 at 06:12 PM.
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

  4. #1424
    Join Date
    Jun 2013
    Location
    Somewhere on Earth.
    Beans
    516
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: [Boot-Repair] Graphical tool to repair the PC boot in 1 click!

    Code:
    $ sudo efibootmgr -v
    BootCurrent: 0000
    Timeout: 0 seconds
    BootOrder: 3001,3000,2001,2002,2003
    Boot0000* Ubuntu    HD(2,c8800,82000,8b75edff-3bc2-4ec5-97de-0054cf6077c1)File(\EFI\ubuntu\grubx64.efi)RC
    Boot0001* Windows Boot Manager    HD(2,c8800,82000,8b75edff-3bc2-4ec5-97de-0054cf6077c1)File(\EFI\Microsoft\Boot\bootmgfw.efi)WINDOWS.........x...B.C.D.O.B.J.E.C.T.=.{.9.d.e.a.8.6.2.c.-.5.c.d.d.-.4.e.7.0.-.a.c.c.1.-.f.3.2.b.3.4.4.d.4.7.9.5.}...0.............[illegible-character]...
    Boot2001* USB Drive (UEFI)    RC
    Boot2002* Internal CD/DVD ROM Drive (UEFI)    RC
    Boot3000* Internal Hard Disk or Solid State Disk    RC
    Boot3001* Internal Hard Disk or Solid State Disk    RC
    $
    Any advice from here?
    Last edited by Jonathan Precise; September 21st, 2013 at 07:00 PM. Reason: Added illegible character...
    -Jonathan
    Status: CELEBRATING 2016!!! (Offline )

  5. #1425
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: [Boot-Repair] Graphical tool to repair the PC boot in 1 click!

    You should be able to change boot order.
    Example 3 uses their example, just change to your devices.
    http://linux.dell.com/cgi-bin/gitweb...README;hb=HEAD
    efibootmgr -o 3,4

    Yours should be ?
    sudo efibootmgr -o 0,1

    And then see if boot order has changed and then if booting changes.
    sudo efibootmgr -v
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

  6. #1426
    Join Date
    Jun 2013
    Location
    Somewhere on Earth.
    Beans
    516
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: [Boot-Repair] Graphical tool to repair the PC boot in 1 click!

    Quote Originally Posted by oldfred View Post
    And then see if boot order has changed and then if booting changes.
    sudo efibootmgr -v
    Uh, I don't get why it returned:

    Code:
    -------@-------:~$ sudo efibootmgr -v
    [sudo] password for -------: 
    BootCurrent: 003D
    Timeout: 0 seconds
    BootOrder: 0000,0001
    Boot0000* Ubuntu    HD(2,c8800,82000,8b75edff-3bc2-4ec5-97de-0054cf6077c1)File(\EFI\ubuntu\grubx64.efi)RC
    Boot0001* Windows Boot Manager    HD(2,c8800,82000,8b75edff-3bc2-4ec5-97de-0054cf6077c1)File(\EFI\Microsoft\Boot\bootmgfw.efi)WINDOWS.........x...B.C.D.O.B.J.E.C.T.=.{.9.d.e.a.8.6.2.c.-.5.c.d.d.-.4.e.7.0.-.a.c.c.1.-.f.3.2.b.3.4.4.d.4.7.9.5.}...0................
    Boot2001* USB Drive (UEFI)    RC
    Boot2002* Internal CD/DVD ROM Drive (UEFI)    RC
    Boot3000* Internal Hard Disk or Solid State Disk    RC
    Boot3001* Internal Hard Disk or Solid State Disk    RC
    -------@-------:~$
    Last edited by Jonathan Precise; September 21st, 2013 at 09:04 PM. Reason: [sudo] display error
    -Jonathan
    Status: CELEBRATING 2016!!! (Offline )

  7. #1427
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: [Boot-Repair] Graphical tool to repair the PC boot in 1 click!

    I do not know what the 3d setting is, perhaps the changes confused current setting? Or now you have a 3D computer?
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

  8. #1428
    Join Date
    Jun 2013
    Location
    Somewhere on Earth.
    Beans
    516
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: [Boot-Repair] Graphical tool to repair the PC boot in 1 click!

    Now it boots to WINDOWS REPAIR!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    How can I really put ubuntu first?????
    -Jonathan
    Status: CELEBRATING 2016!!! (Offline )

  9. #1429
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: [Boot-Repair] Graphical tool to repair the PC boot in 1 click!

    Is secure boot on or off? If on then setting may default to something else.

    It seems like it is now skipping the Ubuntu entry and going to Windows. And for some reason going into repair mode.
    Perhaps you have one of the buggy UEFI. Is it the current version from the vendor?
    Then you may need to use the rename function in Boot-Repair. That makes the shim file be the Windows efi file. Then from grub you boot the backup Windows file to get to Windows.

    Boot-Repair automates the rename, but you can do manually.
    sony vaio laptop error: symbol not found: `grub_efi_secure_boot'.
    http://ubuntuforums.org/showthread.php?t=2102083
    So this time installed 12.10, then booted again from liveCD, made backup of (efi part)/EFI/microsoft/boot and copied all files from /EFI/ubuntu into it. Then renamed /EFI/microsoft/boot/shimx64.efi to bootmgfw.efi. And it works

    available as a "Rename Windows EFI files" option in the Advanced Options for the few UEFI that are modified to only Boot Windows efi file.
    To perform this, just run Boot-Repair --> Adv options --> tick "Backup and rename EFI files" --> Apply

    To undo & to rename files to their original names, you just need to tick the "Restore EFI backups" option of Boot-Repair.
    A user disabled secure boot, and unchecked it in boot-repair. It now bypasses Grub and goes straight in to Windows.

    Other buggy UEFI, now older:
    Some Toshiba's will not boot.
    they managed to leave the signing key out of the database that's used to validate binaries
    Lenovo ThinkCentre M92p only boots Windows or Redhat.
    http://www.phoronix.com/scan.php?pag...tem&px=MTIyOTg
    http://mjg59.dreamwidth.org/20187.html?thread=774619
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

  10. #1430
    Join Date
    Feb 2011
    Beans
    256

    Re: [Boot-Repair] Graphical tool to repair the PC boot in 1 click!

    @Jonathan Precise It may be firmware does not like being told what to do by efibootmgr!?
    Try installing rEFInd which is much more reliable.
    How to get; install and configure refind.conf for rEFInd - http://www.rodsbooks.com/refind/index.html
    Last edited by Geezanansa; September 22nd, 2013 at 01:10 AM.
    The difference between knowledge and wisdom is knowing what to do or just doing it. I know nothing and get little done.

Page 143 of 235 FirstFirst ... 4393133141142143144145153193 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •