LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 01-13-2017, 03:36 PM   #1
GanderBird
LQ Newbie
 
Registered: Jan 2017
Posts: 12

Rep: Reputation: Disabled
EFI Grub2 Multiple Distro & Windows 10 boot trouble


Ok, so yesterday I posted about some trouble I was having booting, getting the error "No boot device found.":

"No boot device found. Press any key to restart."

This thread is a progression of that one, but I am in a completely different place, and wasn't able to use the help I got to get where I am, so I though this warranted a new thread (if not I apologize).

Anyway, I think I figure out what my problem is, the original one and now (but I think the solutions are different). I believe that I accidently installed all of the previous distros on my hard drive in Legacy BIOS and then was forced to install Fedora 25 in UEFI.

This is where I'm at now. When I boot up computer, it UEFI boots into grub2 (because I finally properly installed Fedora). In grub, it lists all the distros I have installed, in all their glory, and Windows Boot Manager. Fedora and Windows boot up just fine. However, when I try to boot of any of the other distros, I get this:

Quote:
error: can't find command 'linux',
error: can't find command 'initrd'.
Just a reminder, everything was installed in this order: Windows, All the other distros, Fedora.

I thought, screw it, since I've got it booting quickly into UEFI grub2 now, I could just delete all the partitions holding all the previously installed distros, and reinstall them UEFI now that I understand how, but when I went into BIOS to switch to Boot from USB, the only boot devices listed were Fedora, Windows, and System Setup. But when I use efibootmgr and list my boot devices, it has all the devices you would expect to be there.

So, unless I'm way off base, I think I have on of two solutions here, neither of which I know how to do.

1. Somehow edit my grub.cfg, or delete a bios partition, or linux swap, or something that allows all my older distros to boot from UEFI grub2.

2. Fix my devices that show up in BIOS so I can boot from USB, delete all the old distros, and reinstall them properly in UEFI.

What do y'all think? any recommendations?

If you need me to post any sort of read out, let me know, though I've got to step away from the computer for a couple hours, I'll be back at trying to figure this all out at around 9 pm eastern.

Thanks for reading all that and thanks for any help.

-Gander

Here is what shows when I lsblk:

Code:
NAME    FSTYPE LABEL       UUID                                 MOUNTPOINT
sdb                                                             
└─sdb1  vfat   FEDORA-WS-L 1266-6574                            /run/media/Gande
sr0                                                             
sda                                                             
├─sda4  ntfs   WINRETOOLS  DCC81C85C81C6056                     
├─sda2  vfat   DIAGS       0C1B-2AC8                            
├─sda16 ext4               4c1e8c04-68e4-4c71-81ec-1078013ade85 /
├─sda14 ext4               1fd6152b-7d3c-4fa5-94ef-217fbe738896 
├─sda9  ntfs   PBR Image   50E69660E69645DE                     
├─sda12<----(gparted says: grub_image)                                                    
├─sda7  ntfs               BCEE4E83EE4E35C4                     
├─sda10 ext4               f97d05ee-f49d-47fa-9a1d-af00a30f661c 
├─sda5  ntfs   OS          88E625DCE625CAF0                     
├─sda3                                                          
├─sda17 ext4               b6e679aa-c27b-4c06-804d-e41c9d408962 
├─sda1  vfat   ESP         70C8-5F6D                            /boot/efi
├─sda15 ext4               e46df5be-9934-4533-a585-6ab06f40b9fa 
├─sda13 ext4               1bb090a5-c2b3-4b07-975d-4fd0de96eeb6 
├─sda8  ntfs               74F4C43EF4C403F8                     
├─sda11 swap               c78714ed-ff3a-4916-a6a5-2b60cac04a3b [SWAP]
└─sda6  ntfs               24668FAE668F7EF4
And I don't know if it helps, but here is what one of the menuentry's look like in my grub.cfg for on of the distros throwing the error.:

PHP Code:
menuentry 'Ubuntu 16.04.1 LTS (16.04) (on /dev/sda10)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-f97d05ee-f49d-47f$
        insmod part_gpt
        insmod ext2
        set root='
hd0,gpt10'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt10 --hint-efi=hd0,gpt10 --hint-baremetal=ahci0,gpt10  f97d05ee-f49d-47fa-9a1d-af00a30f661c
        else
          search --no-floppy --fs-uuid --set=root f97d05ee-f49d-47fa-9a1d-af00a30f661c
        fi
    linux /boot/vmlinuz-4.4.0-59-generic.efi.signed root=UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c ro quiet splash $vt_handoff
        initrd /boot/initrd.img-4.4.0-59-generic

Also, I thought it was worth noting, that though Windows is booting up fine, in the grub.cfg, it's actually pointed at boot/efi, not Windows partition which is sda5:

PHP Code:
menuentry 'Windows' --class windows --class os $menuentry_id_option 'osprober-efi-70C8-5F6D' {
        
insmod part_gpt
        insmod fat
        set root
='hd0,gpt1'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1  70C8-5F6D
        
else
          
search --no-floppy --fs-uuid --set=root 70C8-5F6D
        fi
    chainloader 
/EFI/Microsoft/Boot/bootmgfw.efi


Last edited by GanderBird; 01-13-2017 at 03:43 PM.
 
Old 01-14-2017, 12:42 AM   #2
beachboy2
Senior Member
 
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 21 MATE, EndeavourOS, antiX, MX Linux
Posts: 3,967
Blog Entries: 32

Rep: Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464Reputation: 1464
GanderBird,

Sounds like a job for BootRepair CD:
https://sourceforge.net/projects/boot-repair-cd/files/

General info:
https://help.ubuntu.com/community/Boot-Repair

Do make sure that all your data is backed up first.

You may prefer to create a Boot Info Summary and post it on LQ BEFORE doing the Recommended Repair.
 
Old 01-14-2017, 06:09 AM   #3
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,491

Rep: Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488
More detailed information can be obtained by running the boot repair as suggested above as long as you select the option to Create BootInfo summary and do not try to make any repairs. The info you posted shows you are using GPT. My understanding is that windows with GPT needs a UEFI install which you have. Since you installed Fedora UEFI, that also boots. You may be able to boot the other systems if you can change from UEFI to Legacy/CSM in the BIOS. You would then not be able to boot windows or Fedora so you would have to make this change each time you boot to the other systems. You need to install them all EFI. The link below gives specific information on installing Ubuntu with a dual aboot windows UEFI. There are some general principles explained which should apply to any install.

https://help.ubuntu.com/community/UEFI

If you decide to reinstall the other systems, there is no need to delete the partitions, simply select a partition and format it during the installation.
 
Old 01-14-2017, 07:57 AM   #4
GanderBird
LQ Newbie
 
Registered: Jan 2017
Posts: 12

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by beachboy2
You may prefer to create a Boot Info Summary and post it on LQ BEFORE doing the Recommended Repair.

Thanks for the heads up about Boot Info Summary beachboy, it helped put all the various information and various config files I've been screwing with for the last 48 hours all in one place. The only thing I can think of that isn't in the summary that I thought might be of interest was that when I was in grub and hit C to go to command prompt and ls to list all the drives something curious popped up. I thought (and was previously the case at one time) that all the partitions were on hd0. Now however, (I've got to look again, because I may be wrong about which partitions were on it) sda13 and 16 were on hd00 and all the other partitions were on hd1. And boy did I think I had it all figured out, I went into the grub.cfg the grub2 was loading from, and on all the menuentries after Fedora, I replaced all the root='hd0,-' with hd1. Still got the same errors.

Anyway, here is the Boot Info Summary, maybe one of y'all can help me make since of what's going wrong. I was really hoping I could repair it manually instead of running something automated like Boot Repair, just to help me understand everything that's going on there and to learn more about it, but I'm getting really tired and aggravated with it all, and my eyes feel like they are gonna bleed from staring at the screen for so long reading a million help files and forums and blah blah blah... So maybe I'll just run Boot Repair, and then compare the summary now to the one I get after and try and figure out what it did. Or maybe I'll keep studying stuff.
 
Old 01-14-2017, 08:07 AM   #5
GanderBird
LQ Newbie
 
Registered: Jan 2017
Posts: 12

Original Poster
Rep: Reputation: Disabled
PHP Code:
============================= Boot Info Summary: ===============================

 => 
Grub2 (v1.99is installed in the MBR of /dev/sda and looks at sector 
    816656384 of the same hard drive 
for core.imgbut core.img can not be 
    found at this location
.
 => 
Syslinux MBR (4.04 and higheris installed in the MBR of /dev/sdb.

sda1__________________________________________________________________________

    File system
:       vfat
    Boot sector type
:  Unknown
    Boot sector info
:  No errors found in the Boot Parameter Block.
    
Operating System:  
    
Boot files:        /efi/Boot/bkpbootx64.efi /efi/Boot/bootx64.efi 
                       
/efi/Boot/fallback.efi /efi/fedora/fwupx64.efi 
                       
/efi/fedora/gcdx64.efi /efi/fedora/grubx64.efi 
                       
/efi/fedora/MokManager.efi /efi/fedora/shim.efi 
                       
/efi/fedora/shim-fedora.efi /efi/ubuntu/fwupx64.efi 
                       
/efi/ubuntu/grubx64.efi /efi/ubuntu/MokManager.efi 
                       
/efi/ubuntu/shimx64.efi

sda2
__________________________________________________________________________

    File system
:       vfat
    Boot sector type
:  Unknown
    Boot sector info
:  No errors found in the Boot Parameter Block.
    
Operating System:  
    
Boot files:        

sda3__________________________________________________________________________

    File system
:       
    
Boot sector type:  -
    
Boot sector info
    
Mounting failed:   mountunknown filesystem type ''

sda4__________________________________________________________________________

    File system
:       ntfs
    Boot sector type
:  Windows Vista/7NTFS
    Boot sector info
:  No errors found in the Boot Parameter Block.
    
Operating System:  
    
Boot files:        

sda5__________________________________________________________________________

    File system
:       ntfs
    Boot sector type
:  Windows Vista/7NTFS
    Boot sector info
:  No errors found in the Boot Parameter Block.
    
Operating System:  
    
Boot files:        /Windows/System32/winload.exe

sda6
__________________________________________________________________________

    File system
:       ntfs
    Boot sector type
:  Windows Vista/7NTFS
    Boot sector info
:  No errors found in the Boot Parameter Block.
    
Operating System:  
    
Boot files:        

sda7__________________________________________________________________________

    File system
:       ntfs
    Boot sector type
:  Windows Vista/7NTFS
    Boot sector info
:  No errors found in the Boot Parameter Block.
    
Operating System:  
    
Boot files:        

sda8__________________________________________________________________________

    File system
:       ntfs
    Boot sector type
:  Windows Vista/7NTFS
    Boot sector info
:  No errors found in the Boot Parameter Block.
    
Operating System:  
    
Boot files:        

sda9__________________________________________________________________________

    File system
:       ntfs
    Boot sector type
:  Windows Vista/7NTFS
    Boot sector info
:  No errors found in the Boot Parameter Block.
    
Operating System:  
    
Boot files:        

sda10_________________________________________________________________________

    File system
:       ext4
    Boot sector type
:  -
    
Boot sector info
    
Operating System:  Ubuntu 16.04.1 LTS
    Boot files
:        /boot/grub/grub.cfg /etc/fstab

sda11
_________________________________________________________________________

    File system
:       swap
    Boot sector type
:  -
    
Boot sector info

sda12_________________________________________________________________________

    File system
:       BIOS Boot partition
    Boot sector type
:  Unknown
    Boot sector info


sda13_________________________________________________________________________

    File system
:       ext4
    Boot sector type
:  -
    
Boot sector info
    
Operating System:  
    
Boot files:        /grub2/grub.cfg

sda14
_________________________________________________________________________

    File system
:       ext4
    Boot sector type
:  -
    
Boot sector info
    
Operating System:  Kali GNU/Linux Rolling
    Boot files
:        /boot/grub/grub.cfg /etc/fstab

sda15
_________________________________________________________________________

    File system
:       ext4
    Boot sector type
:  -
    
Boot sector info
    
Operating System:  Linux Mint 18.1 Serena
    Boot files
:        /boot/grub/grub.cfg /etc/fstab

sda16
_________________________________________________________________________

    File system
:       ext4
    Boot sector type
:  -
    
Boot sector info
    
Operating System:   Kernel on an ()
    
Boot files:        /etc/fstab

sda17
_________________________________________________________________________

    File system
:       ext4
    Boot sector type
:  -
    
Boot sector info
    
Operating System:  Parrot Security OS 3.4
    Boot files
:        /boot/grub/grub.cfg /etc/fstab

sdb1
__________________________________________________________________________

    File system
:       vfat
    Boot sector type
:  SYSLINUX 6.04
    Boot sector info
:  Syslinux looks at sector 32792 of /dev/sdb1 for its 
                       second stage
The integrity check of Syslinux failed
                       
No errors found in the Boot Parameter Block.
    
Operating System:  
    
Boot files:        /syslinux.cfg /efi/BOOT/grubx64.efi 
                       
/efi/BOOT/MokManager.efi /ldlinux.sys

============================ Drive/Partition Info: =============================

Drivesda _____________________________________________________________________
Disk 
/dev/sda698.7 GiB750156374016 bytes1465149168 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

Partition  Boot  Start Sector    End Sector  
# of Sectors  Id System

/dev/sda1                   1 1,465,149,167 1,465,149,167  ee GPT


GUID Partition Table detected
.

Partition    Start Sector    End Sector  # of Sectors System
/dev/sda1           2,048     1,026,047     1,024,000 EFI System partition
/dev/sda2       1,026,048     1,107,967        81,920 -
/
dev/sda3       1,107,968     1,370,111       262,144 Microsoft Reserved Partition (Windows)
/
dev/sda4       1,370,112     2,373,631     1,003,520 Windows Recovery Environment (Windows)
/
dev/sda5       2,373,632   816,656,383   814,282,752 Data partition (Windows/Linux)
/
dev/sda6   1,436,104,704 1,437,028,351       923,648 Windows Recovery Environment (Windows)
/
dev/sda7   1,437,028,352 1,437,949,951       921,600 Windows Recovery Environment (Windows)
/
dev/sda8   1,437,949,952 1,438,666,751       716,800 Windows Recovery Environment (Windows)
/
dev/sda9   1,438,666,752 1,465,147,119    26,480,368 Windows Recovery Environment (Windows)
/
dev/sda10  1,247,457,280 1,291,165,695    43,708,416 Data partition (Linux)
/
dev/sda11  1,419,536,384 1,436,104,703    16,568,320 Swap partition (Linux)
/
dev/sda12    816,656,384   816,658,431         2,048 BIOS Boot partition
/dev/sda13    816,658,432   818,755,583     2,097,152 Data partition (Linux)
/
dev/sda14  1,291,165,696 1,349,758,975    58,593,280 Data partition (Linux)
/
dev/sda15  1,349,758,976 1,419,536,383    69,777,408 Data partition (Linux)
/
dev/sda16    818,755,584   877,348,863    58,593,280 Data partition (Linux)
/
dev/sda17    961,433,600 1,033,455,615    72,022,016 Data partition (Linux)

Drivesdb _____________________________________________________________________
Disk 
/dev/sdb7.6 GiB8162115584 bytes15941632 sectors
Units
sectors of 1 512 512 bytes
Sector size 
(logical/physical): 512 bytes 512 bytes
I
/O size (minimum/optimal): 512 bytes 512 bytes
Disklabel type
dos

Partition  Boot  Start Sector    End Sector  
# of Sectors  Id System

/dev/sdb1    *          2,048    15,941,631    15,939,584   c W95 FAT32 (LBA)


"blkid" output________________________________________________________________

Device           UUID                                   TYPE       LABEL

/dev/sda1        70C8-5F6D                              vfat       ESP
/dev/sda10       f97d05ee-f49d-47fa-9a1d-af00a30f661c   ext4       
/dev/sda11       c78714ed-ff3a-4916-a6a5-2b60cac04a3b   swap       
/dev/sda12                                                         
/dev/sda13       1bb090a5-c2b3-4b07-975d-4fd0de96eeb6   ext4       
/dev/sda14       1fd6152b-7d3c-4fa5-94ef-217fbe738896   ext4       
/dev/sda15       e46df5be-9934-4533-a585-6ab06f40b9fa   ext4       
/dev/sda16       4c1e8c04-68e4-4c71-81ec-1078013ade85   ext4       
/dev/sda17       b6e679aa-c27b-4c06-804d-e41c9d408962   ext4       
/dev/sda2        0C1B-2AC8                              vfat       DIAGS
/dev/sda3                                                          
/dev/sda4        DCC81C85C81C6056                       ntfs       WINRETOOLS
/dev/sda5        88E625DCE625CAF0                       ntfs       OS
/dev/sda6        24668FAE668F7EF4                       ntfs       
/dev/sda7        BCEE4E83EE4E35C4                       ntfs       
/dev/sda8        74F4C43EF4C403F8                       ntfs       
/dev/sda9        50E69660E69645DE                       ntfs       PBR Image
/dev/sdb1        1266-6574                              vfat       FEDORA-WS-L

================================ Mount points: =================================

Device           Mount_Point              Type       Options

/dev/sda16       /                        ext4       (rw,relatime,seclabel,data=ordered)
/
dev/sda1        /boot/efi                vfat       (rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=ascii,shortname=winnt,errors=remount-ro)
/
dev/sdb1        /run/media/Gander/FEDORA-WS-L vfat       (rw,nosuid,nodev,relatime,uid=1000,gid=1000,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,showexec,utf8,flush,errors=remount-ro,uhelper=udisks2)


========================== 
sda10/boot/grub/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 ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv
=true
  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="Windows Boot UEFI loader"
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 [ -
"${boot_once}]; then
    saved_entry
="${chosen}"
    
save_env saved_entry
  fi
}
function 
recordfail {
  
set recordfail=1
  
if [ -"${have_grubenv}]; then if [ -"${boot_once}]; then save_env recordfailfifi
}
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,gpt10'
if [ x$feature_platform_search_hint xy ]; then
  search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt10 --hint-efi=hd0,gpt10 --hint-baremetal=ahci0,gpt10  f97d05ee-f49d-47fa-9a1d-af00a30f661c
else
  
search --no-floppy --fs-uuid --set=root f97d05ee-f49d-47fa-9a1d-af00a30f661c
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_output gfxterm
if [ "${recordfail}] ; then
  set timeout
=30
else
  if [ 
x$feature_timeout_style xy ] ; then
    set timeout_style
=menu
    set timeout
=20
  
# Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  
else
    
set timeout=20
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight
=black/light-gray
if background_color 44,0,30,0then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
    
set gfxpayload="${1}"
    
if [ "${1}"keep" ]; then
        set vt_handoff
=vt.handoff=7
    
else
        
set vt_handoff=
    
fi
}
if [ 
"${recordfail}!= ]; then
  
if [ -${prefix}/gfxblacklist.txt ]; then
    
if hwmatch ${prefix}/gfxblacklist.txt 3then
      
if [ ${match} = ]; then
        set linux_gfx_mode
=keep
      
else
        
set linux_gfx_mode=text
      fi
    
else
      
set linux_gfx_mode=text
    fi
  
else
    
set linux_gfx_mode=keep
  fi
else
  
set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 
'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-f97d05ee-f49d-47fa-9a1d-af00a30f661c' {
    
recordfail
    load_video
    gfxmode $linux_gfx_mode
    insmod gzio
    
if [ x$grub_platform xxen ]; then insmod xzioinsmod lzopiofi
    insmod part_gpt
    insmod ext2
    set root
='hd0,gpt10'
    
if [ x$feature_platform_search_hint xy ]; then
      search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt10 --hint-efi=hd0,gpt10 --hint-baremetal=ahci0,gpt10  f97d05ee-f49d-47fa-9a1d-af00a30f661c
    
else
      
search --no-floppy --fs-uuid --set=root f97d05ee-f49d-47fa-9a1d-af00a30f661c
    fi
    linux    
/boot/vmlinuz-4.4.0-59-generic.efi.signed root=UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c ro  quiet splash $vt_handoff
    initrd    
/boot/initrd.img-4.4.0-59-generic
}
submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-f97d05ee-f49d-47fa-9a1d-af00a30f661c' {
    
menuentry 'Ubuntu, with Linux 4.4.0-59-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-59-generic-advanced-f97d05ee-f49d-47fa-9a1d-af00a30f661c' {
        
recordfail
        load_video
        gfxmode $linux_gfx_mode
        insmod gzio
        
if [ x$grub_platform xxen ]; then insmod xzioinsmod lzopiofi
        insmod part_gpt
        insmod ext2
        set root
='hd0,gpt10'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt10 --hint-efi=hd0,gpt10 --hint-baremetal=ahci0,gpt10  f97d05ee-f49d-47fa-9a1d-af00a30f661c
        
else
          
search --no-floppy --fs-uuid --set=root f97d05ee-f49d-47fa-9a1d-af00a30f661c
        fi
        
echo    'Loading Linux 4.4.0-59-generic ...'
        
linux    /boot/vmlinuz-4.4.0-59-generic.efi.signed root=UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c ro  quiet splash $vt_handoff
        
echo    'Loading initial ramdisk ...'
        
initrd    /boot/initrd.img-4.4.0-59-generic
    
}
    
menuentry 'Ubuntu, with Linux 4.4.0-59-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-59-generic-init-upstart-f97d05ee-f49d-47fa-9a1d-af00a30f661c' {
        
recordfail
        load_video
        gfxmode $linux_gfx_mode
        insmod gzio
        
if [ x$grub_platform xxen ]; then insmod xzioinsmod lzopiofi
        insmod part_gpt
        insmod ext2
        set root
='hd0,gpt10'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt10 --hint-efi=hd0,gpt10 --hint-baremetal=ahci0,gpt10  f97d05ee-f49d-47fa-9a1d-af00a30f661c
        
else
          
search --no-floppy --fs-uuid --set=root f97d05ee-f49d-47fa-9a1d-af00a30f661c
        fi
        
echo    'Loading Linux 4.4.0-59-generic ...'
        
linux    /boot/vmlinuz-4.4.0-59-generic.efi.signed root=UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c ro  quiet splash $vt_handoff init=/sbin/upstart
        
echo    'Loading initial ramdisk ...'
        
initrd    /boot/initrd.img-4.4.0-59-generic
    
}
    
menuentry 'Ubuntu, with Linux 4.4.0-59-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-59-generic-recovery-f97d05ee-f49d-47fa-9a1d-af00a30f661c' {
        
recordfail
        load_video
        insmod gzio
        
if [ x$grub_platform xxen ]; then insmod xzioinsmod lzopiofi
        insmod part_gpt
        insmod ext2
        set root
='hd0,gpt10'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt10 --hint-efi=hd0,gpt10 --hint-baremetal=ahci0,gpt10  f97d05ee-f49d-47fa-9a1d-af00a30f661c
        
else
          
search --no-floppy --fs-uuid --set=root f97d05ee-f49d-47fa-9a1d-af00a30f661c
        fi
        
echo    'Loading Linux 4.4.0-59-generic ...'
        
linux    /boot/vmlinuz-4.4.0-59-generic.efi.signed root=UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c ro recovery nomodeset 
        
echo    'Loading initial ramdisk ...'
        
initrd    /boot/initrd.img-4.4.0-59-generic
    
}
    
menuentry 'Ubuntu, with Linux 3.16.0-77-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.16.0-77-generic-advanced-f97d05ee-f49d-47fa-9a1d-af00a30f661c' {
        
recordfail
        load_video
        gfxmode $linux_gfx_mode
        insmod gzio
        
if [ x$grub_platform xxen ]; then insmod xzioinsmod lzopiofi
        insmod part_gpt
        insmod ext2
        set root
='hd0,gpt10'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt10 --hint-efi=hd0,gpt10 --hint-baremetal=ahci0,gpt10  f97d05ee-f49d-47fa-9a1d-af00a30f661c
        
else
          
search --no-floppy --fs-uuid --set=root f97d05ee-f49d-47fa-9a1d-af00a30f661c
        fi
        
echo    'Loading Linux 3.16.0-77-generic ...'
        
linux    /boot/vmlinuz-3.16.0-77-generic.efi.signed root=UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c ro  quiet splash $vt_handoff
        
echo    'Loading initial ramdisk ...'
        
initrd    /boot/initrd.img-3.16.0-77-generic
    
}
    
menuentry 'Ubuntu, with Linux 3.16.0-77-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.16.0-77-generic-init-upstart-f97d05ee-f49d-47fa-9a1d-af00a30f661c' {
        
recordfail
        load_video
        gfxmode $linux_gfx_mode
        insmod gzio
        
if [ x$grub_platform xxen ]; then insmod xzioinsmod lzopiofi
        insmod part_gpt
        insmod ext2
        set root
='hd0,gpt10'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt10 --hint-efi=hd0,gpt10 --hint-baremetal=ahci0,gpt10  f97d05ee-f49d-47fa-9a1d-af00a30f661c
        
else
          
search --no-floppy --fs-uuid --set=root f97d05ee-f49d-47fa-9a1d-af00a30f661c
        fi
        
echo    'Loading Linux 3.16.0-77-generic ...'
        
linux    /boot/vmlinuz-3.16.0-77-generic.efi.signed root=UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c ro  quiet splash $vt_handoff init=/sbin/upstart
        
echo    'Loading initial ramdisk ...'
        
initrd    /boot/initrd.img-3.16.0-77-generic
    
}
    
menuentry 'Ubuntu, with Linux 3.16.0-77-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.16.0-77-generic-recovery-f97d05ee-f49d-47fa-9a1d-af00a30f661c' {
        
recordfail
        load_video
        insmod gzio
        
if [ x$grub_platform xxen ]; then insmod xzioinsmod lzopiofi
        insmod part_gpt
        insmod ext2
        set root
='hd0,gpt10'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt10 --hint-efi=hd0,gpt10 --hint-baremetal=ahci0,gpt10  f97d05ee-f49d-47fa-9a1d-af00a30f661c
        
else
          
search --no-floppy --fs-uuid --set=root f97d05ee-f49d-47fa-9a1d-af00a30f661c
        fi
        
echo    'Loading Linux 3.16.0-77-generic ...'
        
linux    /boot/vmlinuz-3.16.0-77-generic.efi.signed root=UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c ro recovery nomodeset 
        
echo    'Loading initial ramdisk ...'
        
initrd    /boot/initrd.img-3.16.0-77-generic
    
}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/25_custom ###

menuentry "Windows UEFI bootmgfw.efi" {
search --fs-uuid --no-floppy --set=root 70C8-5F6D
chainloader 
(${root})/EFI/Microsoft/Boot/bootmgfw.efi
}

menuentry "Windows Boot UEFI loader" {
search --fs-uuid --no-floppy --set=root 70C8-5F6D
chainloader 
(${root})/EFI/Boot/bkpbootx64.efi
}

menuentry "EFI/ubuntu/MokManager.efi" {
search --fs-uuid --no-floppy --set=root 70C8-5F6D
chainloader 
(${root})/EFI/ubuntu/MokManager.efi
}

menuentry "EFI/Dell/Boot/bootmgfw.efi" {
search --fs-uuid --no-floppy --set=root 70C8-5F6D
chainloader 
(${root})/EFI/Dell/Boot/bootmgfw.efi
}

menuentry "EFI/Dell/Boot/bootx64.efi" {
search --fs-uuid --no-floppy --set=root 70C8-5F6D
chainloader 
(${root})/EFI/Dell/Boot/bootx64.efi
}
### END /etc/grub.d/25_custom ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows Boot Manager (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-efi-70C8-5F6D' {
    
insmod part_gpt
    insmod fat
    set root
='hd0,gpt1'
    
if [ x$feature_platform_search_hint xy ]; then
      search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1  70C8-5F6D
    
else
      
search --no-floppy --fs-uuid --set=root 70C8-5F6D
    fi
    chainloader 
/EFI/Microsoft/Boot/bootmgfw.efi
}
menuentry 'Kali GNU/Linux Rolling (kali-rolling) (on /dev/sda14)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-1fd6152b-7d3c-4fa5-94ef-217fbe738896' {
    
insmod part_gpt
    insmod ext2
    set root
='hd0,gpt14'
    
if [ x$feature_platform_search_hint xy ]; then
      search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt14 --hint-efi=hd0,gpt14 --hint-baremetal=ahci0,gpt14  1fd6152b-7d3c-4fa5-94ef-217fbe738896
    
else
      
search --no-floppy --fs-uuid --set=root 1fd6152b-7d3c-4fa5-94ef-217fbe738896
    fi
    linux 
/boot/vmlinuz-4.6.0-kali1-amd64 root=/dev/sda14 ro initrd=/install/gtk/initrd.gz quiet
    initrd 
/boot/initrd.img-4.6.0-kali1-amd64
}
submenu 'Advanced options for Kali GNU/Linux Rolling (kali-rolling) (on /dev/sda14)' $menuentry_id_option 'osprober-gnulinux-advanced-1fd6152b-7d3c-4fa5-94ef-217fbe738896' {
    
menuentry 'Kali GNU/Linux (on /dev/sda14)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.6.0-kali1-amd64--1fd6152b-7d3c-4fa5-94ef-217fbe738896' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt14'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt14 --hint-efi=hd0,gpt14 --hint-baremetal=ahci0,gpt14  1fd6152b-7d3c-4fa5-94ef-217fbe738896
        
else
          
search --no-floppy --fs-uuid --set=root 1fd6152b-7d3c-4fa5-94ef-217fbe738896
        fi
        linux 
/boot/vmlinuz-4.6.0-kali1-amd64 root=/dev/sda14 ro initrd=/install/gtk/initrd.gz quiet
        initrd 
/boot/initrd.img-4.6.0-kali1-amd64
    
}
    
menuentry 'Kali GNU/Linux, with Linux 4.6.0-kali1-amd64 (on /dev/sda14)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.6.0-kali1-amd64--1fd6152b-7d3c-4fa5-94ef-217fbe738896' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt14'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt14 --hint-efi=hd0,gpt14 --hint-baremetal=ahci0,gpt14  1fd6152b-7d3c-4fa5-94ef-217fbe738896
        
else
          
search --no-floppy --fs-uuid --set=root 1fd6152b-7d3c-4fa5-94ef-217fbe738896
        fi
        linux 
/boot/vmlinuz-4.6.0-kali1-amd64 root=/dev/sda14 ro initrd=/install/gtk/initrd.gz quiet
        initrd 
/boot/initrd.img-4.6.0-kali1-amd64
    
}
    
menuentry 'Kali GNU/Linux, with Linux 4.6.0-kali1-amd64 (recovery mode) (on /dev/sda14)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.6.0-kali1-amd64-root=/dev/sda14 ro single initrd=/install/gtk/initrd.gz-1fd6152b-7d3c-4fa5-94ef-217fbe738896' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt14'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt14 --hint-efi=hd0,gpt14 --hint-baremetal=ahci0,gpt14  1fd6152b-7d3c-4fa5-94ef-217fbe738896
        
else
          
search --no-floppy --fs-uuid --set=root 1fd6152b-7d3c-4fa5-94ef-217fbe738896
        fi
        linux 
/boot/vmlinuz-4.6.0-kali1-amd64 root=/dev/sda14 ro single initrd=/install/gtk/initrd.gz
        initrd 
/boot/initrd.img-4.6.0-kali1-amd64
    
}
}

menuentry 'Linux Mint 18.1 Serena (18.1) (on /dev/sda15)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-e46df5be-9934-4533-a585-6ab06f40b9fa' {
    
insmod part_gpt
    insmod ext2
    set root
='hd0,gpt15'
    
if [ x$feature_platform_search_hint xy ]; then
      search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt15 --hint-efi=hd0,gpt15 --hint-baremetal=ahci0,gpt15  e46df5be-9934-4533-a585-6ab06f40b9fa
    
else
      
search --no-floppy --fs-uuid --set=root e46df5be-9934-4533-a585-6ab06f40b9fa
    fi
    linux 
/boot/vmlinuz-4.4.0-53-generic root=UUID=e46df5be-9934-4533-a585-6ab06f40b9fa ro quiet splash $vt_handoff
    initrd 
/boot/initrd.img-4.4.0-53-generic
}
submenu 'Advanced options for Linux Mint 18.1 Serena (18.1) (on /dev/sda15)' $menuentry_id_option 'osprober-gnulinux-advanced-e46df5be-9934-4533-a585-6ab06f40b9fa' {
    
menuentry 'Linux Mint 18.1 Cinnamon 64-bit (on /dev/sda15)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-53-generic--e46df5be-9934-4533-a585-6ab06f40b9fa' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt15'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt15 --hint-efi=hd0,gpt15 --hint-baremetal=ahci0,gpt15  e46df5be-9934-4533-a585-6ab06f40b9fa
        
else
          
search --no-floppy --fs-uuid --set=root e46df5be-9934-4533-a585-6ab06f40b9fa
        fi
        linux 
/boot/vmlinuz-4.4.0-53-generic root=UUID=e46df5be-9934-4533-a585-6ab06f40b9fa ro quiet splash $vt_handoff
        initrd 
/boot/initrd.img-4.4.0-53-generic
    
}
    
menuentry 'Linux Mint 18.1 Cinnamon 64-bit, with Linux 4.4.0-53-generic (on /dev/sda15)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-53-generic--e46df5be-9934-4533-a585-6ab06f40b9fa' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt15'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt15 --hint-efi=hd0,gpt15 --hint-baremetal=ahci0,gpt15  e46df5be-9934-4533-a585-6ab06f40b9fa
        
else
          
search --no-floppy --fs-uuid --set=root e46df5be-9934-4533-a585-6ab06f40b9fa
        fi
        linux 
/boot/vmlinuz-4.4.0-53-generic root=UUID=e46df5be-9934-4533-a585-6ab06f40b9fa ro quiet splash $vt_handoff
        initrd 
/boot/initrd.img-4.4.0-53-generic
    
}
    
menuentry 'Linux Mint 18.1 Cinnamon 64-bit, with Linux 4.4.0-53-generic (upstart) (on /dev/sda15)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-53-generic--e46df5be-9934-4533-a585-6ab06f40b9fa' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt15'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt15 --hint-efi=hd0,gpt15 --hint-baremetal=ahci0,gpt15  e46df5be-9934-4533-a585-6ab06f40b9fa
        
else
          
search --no-floppy --fs-uuid --set=root e46df5be-9934-4533-a585-6ab06f40b9fa
        fi
        linux 
/boot/vmlinuz-4.4.0-53-generic root=UUID=e46df5be-9934-4533-a585-6ab06f40b9fa ro quiet splash $vt_handoff init=/sbin/upstart
        initrd 
/boot/initrd.img-4.4.0-53-generic
    
}
    
menuentry 'Linux Mint 18.1 Cinnamon 64-bit, with Linux 4.4.0-53-generic (recovery mode) (on /dev/sda15)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-53-generic-root=UUID=e46df5be-9934-4533-a585-6ab06f40b9fa ro recovery nomodeset-e46df5be-9934-4533-a585-6ab06f40b9fa' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt15'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt15 --hint-efi=hd0,gpt15 --hint-baremetal=ahci0,gpt15  e46df5be-9934-4533-a585-6ab06f40b9fa
        
else
          
search --no-floppy --fs-uuid --set=root e46df5be-9934-4533-a585-6ab06f40b9fa
        fi
        linux 
/boot/vmlinuz-4.4.0-53-generic root=UUID=e46df5be-9934-4533-a585-6ab06f40b9fa ro recovery nomodeset
        initrd 
/boot/initrd.img-4.4.0-53-generic
    
}
}

set timeout_style=menu
if [ "${timeout}]; then
  set timeout
=10
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
menuentry 'System setup' $menuentry_id_option 'uefi-firmware' {
    
fwsetup
}
### END /etc/grub.d/30_uefi-firmware ###

### 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 
[ -"${config_directory}--f  $prefix/custom.cfg ]; then
  source $prefix
/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
-------------------------------------------------------------------------------- 
 
Old 01-14-2017, 08:08 AM   #6
GanderBird
LQ Newbie
 
Registered: Jan 2017
Posts: 12

Original Poster
Rep: Reputation: Disabled
PHP Code:
=============================== sda10/etc/fstab: ===============================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda10 during installation
UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c /               ext4    errors=remount-ro 0       1
# /boot/efi was on /dev/sda1 during installation
#UUID=70C8-5F6D  /boot/efi       vfat    defaults        0       1
# swap was on /dev/sda11 during installation
UUID=daf77d88-f5d9-4d58-babe-8cb72acc7e2f none            swap    sw              0       0
UUID
=70C8-5F6D    /boot/efi    vfat    defaults    0    1
--------------------------------------------------------------------------------

=================== 
sda10Location of files loaded by Grub: ===================

           
GiB GB             File                                 Fragment(s)


============================ 
sda13/grub2/grub.cfg: =============================

--------------------------------------------------------------------------------
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub2-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
set pager=1

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="${saved_entry}"
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 [ -
"${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
}

terminal_output console
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/01_users ###
if [ -${prefix}/user.cfg ]; then
  source 
${prefix}/user.cfg
  
if [ -"${GRUB2_PASSWORD}]; then
    set superusers
="root"
    
export superusers
    password_pbkdf2 root 
${GRUB2_PASSWORD}
  
fi
fi
### END /etc/grub.d/01_users ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Fedora (4.8.6-300.fc25.x86_64) 25 (Workstation Edition)' --class fedora --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-4.8.6-300.fc25.x86_64-advanced-439c9905-41a3-4e52-b521-cb5142dcfabf' {
    
load_video
    set gfxpayload
=keep
    insmod gzio
    insmod part_gpt
    insmod ext2
    set root
='hd0,gpt13'
    
if [ x$feature_platform_search_hint xy ]; then
      search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt13 --hint-efi=hd0,gpt13 --hint-baremetal=ahci0,gpt13 --hint='hd0,gpt13'  1bb090a5-c2b3-4b07-975d-4fd0de96eeb6
    
else
      
search --no-floppy --fs-uuid --set=root 1bb090a5-c2b3-4b07-975d-4fd0de96eeb6
    fi
    linux16 
/vmlinuz-4.8.6-300.fc25.x86_64 root=/dev/mapper/fedora-root ro rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet LANG=en_US.UTF-8
    initrd16 
/initramfs-4.8.6-300.fc25.x86_64.img
}
menuentry 'Fedora (0-rescue-4a30263484ea47afafe949cb6adad7e7) 25 (Workstation Edition)' --class fedora --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-0-rescue-4a30263484ea47afafe949cb6adad7e7-advanced-439c9905-41a3-4e52-b521-cb5142dcfabf' {
    
load_video
    insmod gzio
    insmod part_gpt
    insmod ext2
    set root
='hd0,gpt13'
    
if [ x$feature_platform_search_hint xy ]; then
      search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt13 --hint-efi=hd0,gpt13 --hint-baremetal=ahci0,gpt13 --hint='hd0,gpt13'  1bb090a5-c2b3-4b07-975d-4fd0de96eeb6
    
else
      
search --no-floppy --fs-uuid --set=root 1bb090a5-c2b3-4b07-975d-4fd0de96eeb6
    fi
    linux16 
/vmlinuz-0-rescue-4a30263484ea47afafe949cb6adad7e7 root=/dev/mapper/fedora-root ro rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap rhgb quiet
    initrd16 
/initramfs-0-rescue-4a30263484ea47afafe949cb6adad7e7.img
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_ppc_terminfo ###
### END /etc/grub.d/20_ppc_terminfo ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Ubuntu 16.04.1 LTS (16.04) (on /dev/sda10)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-f97d05ee-f49d-47fa-9a1d-af00a30f661c' {
    
insmod part_gpt
    insmod ext2
    set root
='hd0,gpt10'
    
if [ x$feature_platform_search_hint xy ]; then
      search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt10 --hint-efi=hd0,gpt10 --hint-baremetal=ahci0,gpt10 --hint='hd0,gpt10'  f97d05ee-f49d-47fa-9a1d-af00a30f661c
    
else
      
search --no-floppy --fs-uuid --set=root f97d05ee-f49d-47fa-9a1d-af00a30f661c
    fi
    linux 
/boot/vmlinuz-4.4.0-59-generic.efi.signed root=UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c ro quiet splash $vt_handoff
    initrd 
/boot/initrd.img-4.4.0-59-generic
}
submenu 'Advanced options for Ubuntu 16.04.1 LTS (16.04) (on /dev/sda10)' $menuentry_id_option 'osprober-gnulinux-advanced-f97d05ee-f49d-47fa-9a1d-af00a30f661c' {
    
menuentry 'Ubuntu (on /dev/sda10)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-59-generic.efi.signed--f97d05ee-f49d-47fa-9a1d-af00a30f661c' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt10'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt10 --hint-efi=hd0,gpt10 --hint-baremetal=ahci0,gpt10 --hint='hd0,gpt10'  f97d05ee-f49d-47fa-9a1d-af00a30f661c
        
else
          
search --no-floppy --fs-uuid --set=root f97d05ee-f49d-47fa-9a1d-af00a30f661c
        fi
        linux 
/boot/vmlinuz-4.4.0-59-generic.efi.signed root=UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c ro quiet splash $vt_handoff
        initrd 
/boot/initrd.img-4.4.0-59-generic
    
}
    
menuentry 'Ubuntu, with Linux 4.4.0-59-generic (on /dev/sda10)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-59-generic.efi.signed--f97d05ee-f49d-47fa-9a1d-af00a30f661c' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt10'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt10 --hint-efi=hd0,gpt10 --hint-baremetal=ahci0,gpt10 --hint='hd0,gpt10'  f97d05ee-f49d-47fa-9a1d-af00a30f661c
        
else
          
search --no-floppy --fs-uuid --set=root f97d05ee-f49d-47fa-9a1d-af00a30f661c
        fi
        linux 
/boot/vmlinuz-4.4.0-59-generic.efi.signed root=UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c ro quiet splash $vt_handoff
        initrd 
/boot/initrd.img-4.4.0-59-generic
    
}
    
menuentry 'Ubuntu, with Linux 4.4.0-59-generic (upstart) (on /dev/sda10)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-59-generic.efi.signed--f97d05ee-f49d-47fa-9a1d-af00a30f661c' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt10'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt10 --hint-efi=hd0,gpt10 --hint-baremetal=ahci0,gpt10 --hint='hd0,gpt10'  f97d05ee-f49d-47fa-9a1d-af00a30f661c
        
else
          
search --no-floppy --fs-uuid --set=root f97d05ee-f49d-47fa-9a1d-af00a30f661c
        fi
        linux 
/boot/vmlinuz-4.4.0-59-generic.efi.signed root=UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c ro quiet splash $vt_handoff init=/sbin/upstart
        initrd 
/boot/initrd.img-4.4.0-59-generic
    
}
    
menuentry 'Ubuntu, with Linux 4.4.0-59-generic (recovery mode) (on /dev/sda10)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-59-generic.efi.signed--f97d05ee-f49d-47fa-9a1d-af00a30f661c' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt10'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt10 --hint-efi=hd0,gpt10 --hint-baremetal=ahci0,gpt10 --hint='hd0,gpt10'  f97d05ee-f49d-47fa-9a1d-af00a30f661c
        
else
          
search --no-floppy --fs-uuid --set=root f97d05ee-f49d-47fa-9a1d-af00a30f661c
        fi
        linux 
/boot/vmlinuz-4.4.0-59-generic.efi.signed root=UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c ro recovery nomodeset
        initrd 
/boot/initrd.img-4.4.0-59-generic
    
}
    
menuentry 'Ubuntu, with Linux 3.16.0-77-generic (on /dev/sda10)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.16.0-77-generic.efi.signed--f97d05ee-f49d-47fa-9a1d-af00a30f661c' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt10'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt10 --hint-efi=hd0,gpt10 --hint-baremetal=ahci0,gpt10 --hint='hd0,gpt10'  f97d05ee-f49d-47fa-9a1d-af00a30f661c
        
else
          
search --no-floppy --fs-uuid --set=root f97d05ee-f49d-47fa-9a1d-af00a30f661c
        fi
        linux 
/boot/vmlinuz-3.16.0-77-generic.efi.signed root=UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c ro quiet splash $vt_handoff
        initrd 
/boot/initrd.img-3.16.0-77-generic
    
}
    
menuentry 'Ubuntu, with Linux 3.16.0-77-generic (upstart) (on /dev/sda10)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.16.0-77-generic.efi.signed--f97d05ee-f49d-47fa-9a1d-af00a30f661c' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt10'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt10 --hint-efi=hd0,gpt10 --hint-baremetal=ahci0,gpt10 --hint='hd0,gpt10'  f97d05ee-f49d-47fa-9a1d-af00a30f661c
        
else
          
search --no-floppy --fs-uuid --set=root f97d05ee-f49d-47fa-9a1d-af00a30f661c
        fi
        linux 
/boot/vmlinuz-3.16.0-77-generic.efi.signed root=UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c ro quiet splash $vt_handoff init=/sbin/upstart
        initrd 
/boot/initrd.img-3.16.0-77-generic
    
}
    
menuentry 'Ubuntu, with Linux 3.16.0-77-generic (recovery mode) (on /dev/sda10)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.16.0-77-generic.efi.signed--f97d05ee-f49d-47fa-9a1d-af00a30f661c' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt10'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt10 --hint-efi=hd0,gpt10 --hint-baremetal=ahci0,gpt10 --hint='hd0,gpt10'  f97d05ee-f49d-47fa-9a1d-af00a30f661c
        
else
          
search --no-floppy --fs-uuid --set=root f97d05ee-f49d-47fa-9a1d-af00a30f661c
        fi
        linux 
/boot/vmlinuz-3.16.0-77-generic.efi.signed root=UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c ro recovery nomodeset
        initrd 
/boot/initrd.img-3.16.0-77-generic
    
}
}

menuentry 'Kali GNU/Linux Rolling (kali-rolling) (on /dev/sda14)' --class kali --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-1fd6152b-7d3c-4fa5-94ef-217fbe738896' {
    
insmod part_gpt
    insmod ext2
    set root
='hd0,gpt14'
    
if [ x$feature_platform_search_hint xy ]; then
      search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt14 --hint-efi=hd0,gpt14 --hint-baremetal=ahci0,gpt14 --hint='hd0,gpt14'  1fd6152b-7d3c-4fa5-94ef-217fbe738896
    
else
      
search --no-floppy --fs-uuid --set=root 1fd6152b-7d3c-4fa5-94ef-217fbe738896
    fi
    linux 
/boot/vmlinuz-4.6.0-kali1-amd64 root=/dev/sda14 ro initrd=/install/gtk/initrd.gz quiet
    initrd 
/boot/initrd.img-4.6.0-kali1-amd64
}
submenu 'Advanced options for Kali GNU/Linux Rolling (kali-rolling) (on /dev/sda14)' $menuentry_id_option 'osprober-gnulinux-advanced-1fd6152b-7d3c-4fa5-94ef-217fbe738896' {
    
menuentry 'Kali GNU/Linux (on /dev/sda14)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.6.0-kali1-amd64--1fd6152b-7d3c-4fa5-94ef-217fbe738896' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt14'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt14 --hint-efi=hd0,gpt14 --hint-baremetal=ahci0,gpt14 --hint='hd0,gpt14'  1fd6152b-7d3c-4fa5-94ef-217fbe738896
        
else
          
search --no-floppy --fs-uuid --set=root 1fd6152b-7d3c-4fa5-94ef-217fbe738896
        fi
        linux 
/boot/vmlinuz-4.6.0-kali1-amd64 root=/dev/sda14 ro initrd=/install/gtk/initrd.gz quiet
        initrd 
/boot/initrd.img-4.6.0-kali1-amd64
    
}
    
menuentry 'Kali GNU/Linux, with Linux 4.6.0-kali1-amd64 (on /dev/sda14)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.6.0-kali1-amd64--1fd6152b-7d3c-4fa5-94ef-217fbe738896' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt14'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt14 --hint-efi=hd0,gpt14 --hint-baremetal=ahci0,gpt14 --hint='hd0,gpt14'  1fd6152b-7d3c-4fa5-94ef-217fbe738896
        
else
          
search --no-floppy --fs-uuid --set=root 1fd6152b-7d3c-4fa5-94ef-217fbe738896
        fi
        linux 
/boot/vmlinuz-4.6.0-kali1-amd64 root=/dev/sda14 ro initrd=/install/gtk/initrd.gz quiet
        initrd 
/boot/initrd.img-4.6.0-kali1-amd64
    
}
    
menuentry 'Kali GNU/Linux, with Linux 4.6.0-kali1-amd64 (recovery mode) (on /dev/sda14)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.6.0-kali1-amd64-root=/dev/sda14 ro single initrd=/install/gtk/initrd.gz-1fd6152b-7d3c-4fa5-94ef-217fbe738896' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt14'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt14 --hint-efi=hd0,gpt14 --hint-baremetal=ahci0,gpt14 --hint='hd0,gpt14'  1fd6152b-7d3c-4fa5-94ef-217fbe738896
        
else
          
search --no-floppy --fs-uuid --set=root 1fd6152b-7d3c-4fa5-94ef-217fbe738896
        fi
        linux 
/boot/vmlinuz-4.6.0-kali1-amd64 root=/dev/sda14 ro single initrd=/install/gtk/initrd.gz
        initrd 
/boot/initrd.img-4.6.0-kali1-amd64
    
}
}

menuentry 'Linux Mint 18.1 Serena (18.1) (on /dev/sda15)' --class linuxmint --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-e46df5be-9934-4533-a585-6ab06f40b9fa' {
    
insmod part_gpt
    insmod ext2
    set root
='hd0,gpt15'
    
if [ x$feature_platform_search_hint xy ]; then
      search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt15 --hint-efi=hd0,gpt15 --hint-baremetal=ahci0,gpt15 --hint='hd0,gpt15'  e46df5be-9934-4533-a585-6ab06f40b9fa
    
else
      
search --no-floppy --fs-uuid --set=root e46df5be-9934-4533-a585-6ab06f40b9fa
    fi
    linux 
/boot/vmlinuz-4.4.0-53-generic root=UUID=e46df5be-9934-4533-a585-6ab06f40b9fa ro quiet splash $vt_handoff
    initrd 
/boot/initrd.img-4.4.0-53-generic
}
submenu 'Advanced options for Linux Mint 18.1 Serena (18.1) (on /dev/sda15)' $menuentry_id_option 'osprober-gnulinux-advanced-e46df5be-9934-4533-a585-6ab06f40b9fa' {
    
menuentry 'Linux Mint 18.1 Cinnamon 64-bit (on /dev/sda15)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-53-generic--e46df5be-9934-4533-a585-6ab06f40b9fa' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt15'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt15 --hint-efi=hd0,gpt15 --hint-baremetal=ahci0,gpt15 --hint='hd0,gpt15'  e46df5be-9934-4533-a585-6ab06f40b9fa
        
else
          
search --no-floppy --fs-uuid --set=root e46df5be-9934-4533-a585-6ab06f40b9fa
        fi
        linux 
/boot/vmlinuz-4.4.0-53-generic root=UUID=e46df5be-9934-4533-a585-6ab06f40b9fa ro quiet splash $vt_handoff
        initrd 
/boot/initrd.img-4.4.0-53-generic
    
}
    
menuentry 'Linux Mint 18.1 Cinnamon 64-bit, with Linux 4.4.0-53-generic (on /dev/sda15)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-53-generic--e46df5be-9934-4533-a585-6ab06f40b9fa' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt15'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt15 --hint-efi=hd0,gpt15 --hint-baremetal=ahci0,gpt15 --hint='hd0,gpt15'  e46df5be-9934-4533-a585-6ab06f40b9fa
        
else
          
search --no-floppy --fs-uuid --set=root e46df5be-9934-4533-a585-6ab06f40b9fa
        fi
        linux 
/boot/vmlinuz-4.4.0-53-generic root=UUID=e46df5be-9934-4533-a585-6ab06f40b9fa ro quiet splash $vt_handoff
        initrd 
/boot/initrd.img-4.4.0-53-generic
    
}
    
menuentry 'Linux Mint 18.1 Cinnamon 64-bit, with Linux 4.4.0-53-generic (upstart) (on /dev/sda15)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-53-generic--e46df5be-9934-4533-a585-6ab06f40b9fa' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt15'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt15 --hint-efi=hd0,gpt15 --hint-baremetal=ahci0,gpt15 --hint='hd0,gpt15'  e46df5be-9934-4533-a585-6ab06f40b9fa
        
else
          
search --no-floppy --fs-uuid --set=root e46df5be-9934-4533-a585-6ab06f40b9fa
        fi
        linux 
/boot/vmlinuz-4.4.0-53-generic root=UUID=e46df5be-9934-4533-a585-6ab06f40b9fa ro quiet splash $vt_handoff init=/sbin/upstart
        initrd 
/boot/initrd.img-4.4.0-53-generic
    
}
    
menuentry 'Linux Mint 18.1 Cinnamon 64-bit, with Linux 4.4.0-53-generic (recovery mode) (on /dev/sda15)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-53-generic--e46df5be-9934-4533-a585-6ab06f40b9fa' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt15'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt15 --hint-efi=hd0,gpt15 --hint-baremetal=ahci0,gpt15 --hint='hd0,gpt15'  e46df5be-9934-4533-a585-6ab06f40b9fa
        
else
          
search --no-floppy --fs-uuid --set=root e46df5be-9934-4533-a585-6ab06f40b9fa
        fi
        linux 
/boot/vmlinuz-4.4.0-53-generic root=UUID=e46df5be-9934-4533-a585-6ab06f40b9fa ro recovery nomodeset
        initrd 
/boot/initrd.img-4.4.0-53-generic
    
}
    
menuentry 'Memory test (memtest86+, serial console 115200) (on /dev/sda15)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/memtest86+.bin--e46df5be-9934-4533-a585-6ab06f40b9fa' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt15'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt15 --hint-efi=hd0,gpt15 --hint-baremetal=ahci0,gpt15 --hint='hd0,gpt15'  e46df5be-9934-4533-a585-6ab06f40b9fa
        
else
          
search --no-floppy --fs-uuid --set=root e46df5be-9934-4533-a585-6ab06f40b9fa
        fi
        linux 
/boot/memtest86+.bin console=ttyS0,115200n8
    
}
}

menuentry 'Parrot Security 3.4 - CyberFrigate (3.4) (on /dev/sda17)' --class parrot --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-b6e679aa-c27b-4c06-804d-e41c9d408962' {
    
insmod part_gpt
    insmod ext2
    set root
='hd0,gpt17'
    
if [ x$feature_platform_search_hint xy ]; then
      search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt17 --hint-efi=hd0,gpt17 --hint-baremetal=ahci0,gpt17 --hint='hd0,gpt17'  b6e679aa-c27b-4c06-804d-e41c9d408962
    
else
      
search --no-floppy --fs-uuid --set=root b6e679aa-c27b-4c06-804d-e41c9d408962
    fi
    linux 
/boot/vmlinuz-4.8.0-parrot-amd64 root=/dev/sda17 ro initrd=/install/initrd.gz noautomount quiet
    initrd 
/boot/initrd.img-4.8.0-parrot-amd64
}
submenu 'Advanced options for Parrot Security 3.4 - CyberFrigate (3.4) (on /dev/sda17)' $menuentry_id_option 'osprober-gnulinux-advanced-b6e679aa-c27b-4c06-804d-e41c9d408962' {
    
menuentry 'Parrot GNU/Linux (on /dev/sda17)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-parrot-amd64--b6e679aa-c27b-4c06-804d-e41c9d408962' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt17'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt17 --hint-efi=hd0,gpt17 --hint-baremetal=ahci0,gpt17 --hint='hd0,gpt17'  b6e679aa-c27b-4c06-804d-e41c9d408962
        
else
          
search --no-floppy --fs-uuid --set=root b6e679aa-c27b-4c06-804d-e41c9d408962
        fi
        linux 
/boot/vmlinuz-4.8.0-parrot-amd64 root=/dev/sda17 ro initrd=/install/initrd.gz noautomount quiet
        initrd 
/boot/initrd.img-4.8.0-parrot-amd64
    
}
    
menuentry 'Parrot GNU/Linux, with Linux 4.8.0-parrot-amd64 (on /dev/sda17)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-parrot-amd64--b6e679aa-c27b-4c06-804d-e41c9d408962' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt17'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt17 --hint-efi=hd0,gpt17 --hint-baremetal=ahci0,gpt17 --hint='hd0,gpt17'  b6e679aa-c27b-4c06-804d-e41c9d408962
        
else
          
search --no-floppy --fs-uuid --set=root b6e679aa-c27b-4c06-804d-e41c9d408962
        fi
        linux 
/boot/vmlinuz-4.8.0-parrot-amd64 root=/dev/sda17 ro initrd=/install/initrd.gz noautomount quiet
        initrd 
/boot/initrd.img-4.8.0-parrot-amd64
    
}
    
menuentry 'Parrot GNU/Linux, with Linux 4.8.0-parrot-amd64 (recovery mode) (on /dev/sda17)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-parrot-amd64-root=/dev/sda17 ro single initrd=/install/initrd.gz noautomount-b6e679aa-c27b-4c06-804d-e41c9d408962' {
        
insmod part_gpt
        insmod ext2
        set root
='hd0,gpt17'
        
if [ x$feature_platform_search_hint xy ]; then
          search 
--no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt17 --hint-efi=hd0,gpt17 --hint-baremetal=ahci0,gpt17 --hint='hd0,gpt17'  b6e679aa-c27b-4c06-804d-e41c9d408962
        
else
          
search --no-floppy --fs-uuid --set=root b6e679aa-c27b-4c06-804d-e41c9d408962
        fi
        linux 
/boot/vmlinuz-4.8.0-parrot-amd64 root=/dev/sda17 ro single initrd=/install/initrd.gz noautomount
        initrd 
/boot/initrd.img-4.8.0-parrot-amd64
    
}
}

### 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 
[ -"${config_directory}--f  $prefix/custom.cfg ]; then
  source $prefix
/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------

=================== 
sda13Location of files loaded by Grub: ===================

           
GiB GB             File                                 Fragment(s)


================= 
sda13Location of files loaded by Syslinux: =================

           
GiB GB             File                                 Fragment(s)


============== 
sda13Version of COM32(Rfiles used by Syslinux: ==============

 
extlinux/cat.c32                   :  not a COM32/COM32R module
 extlinux
/chain.c32                 :  not a COM32/COM32R module
 extlinux
/cmd.c32                   :  not a COM32/COM32R module
 extlinux
/cmenu.c32                 :  not a COM32/COM32R module
 extlinux
/config.c32                :  not a COM32/COM32R module
 extlinux
/cptime.c32                :  not a COM32/COM32R module
 extlinux
/cpu.c32                   :  not a COM32/COM32R module
 extlinux
/cpuid.c32                 :  not a COM32/COM32R module
 extlinux
/cpuidtest.c32             :  not a COM32/COM32R module
 extlinux
/debug.c32                 :  not a COM32/COM32R module
 extlinux
/dhcp.c32                  :  not a COM32/COM32R module
 extlinux
/dir.c32                   :  not a COM32/COM32R module
 extlinux
/disk.c32                  :  not a COM32/COM32R module
 extlinux
/dmi.c32                   :  not a COM32/COM32R module
 extlinux
/dmitest.c32               :  not a COM32/COM32R module
 extlinux
/elf.c32                   :  not a COM32/COM32R module
 extlinux
/ethersel.c32              :  not a COM32/COM32R module
 extlinux
/gfxboot.c32               :  not a COM32/COM32R module
 extlinux
/gpxecmd.c32               :  not a COM32/COM32R module
 extlinux
/hdt.c32                   :  not a COM32/COM32R module
 extlinux
/hexdump.c32               :  not a COM32/COM32R module
 extlinux
/host.c32                  :  not a COM32/COM32R module
 extlinux
/ifcpu64.c32               :  not a COM32/COM32R module
 extlinux
/ifcpu.c32                 :  not a COM32/COM32R module
 extlinux
/ifmemdsk.c32              :  not a COM32/COM32R module
 extlinux
/ifplop.c32                :  not a COM32/COM32R module
 extlinux
/kbdmap.c32                :  not a COM32/COM32R module
 extlinux
/kontron_wdt.c32           :  not a COM32/COM32R module
 extlinux
/ldlinux.c32               :  not a COM32/COM32R module
 extlinux
/lfs.c32                   :  not a COM32/COM32R module
 extlinux
/libcom32.c32              :  not a COM32/COM32R module
 extlinux
/libgpl.c32                :  not a COM32/COM32R module
 extlinux
/liblua.c32                :  not a COM32/COM32R module
 extlinux
/libmenu.c32               :  not a COM32/COM32R module
 extlinux
/libutil.c32               :  not a COM32/COM32R module
 extlinux
/linux.c32                 :  not a COM32/COM32R module
 extlinux
/ls.c32                    :  not a COM32/COM32R module
 extlinux
/lua.c32                   :  not a COM32/COM32R module
 extlinux
/mboot.c32                 :  not a COM32/COM32R module
 extlinux
/meminfo.c32               :  not a COM32/COM32R module
 extlinux
/menu.c32                  :  not a COM32/COM32R module
 extlinux
/pci.c32                   :  not a COM32/COM32R module
 extlinux
/pcitest.c32               :  not a COM32/COM32R module
 extlinux
/pmload.c32                :  not a COM32/COM32R module
 extlinux
/poweroff.c32              :  not a COM32/COM32R module
 extlinux
/prdhcp.c32                :  not a COM32/COM32R module
 extlinux
/pwd.c32                   :  not a COM32/COM32R module
 extlinux
/pxechn.c32                :  not a COM32/COM32R module
 extlinux
/reboot.c32                :  not a COM32/COM32R module
 extlinux
/rosh.c32                  :  not a COM32/COM32R module
 extlinux
/sanboot.c32               :  not a COM32/COM32R module
 extlinux
/sdi.c32                   :  not a COM32/COM32R module
 extlinux
/sysdump.c32               :  not a COM32/COM32R module
 extlinux
/syslinux.c32              :  not a COM32/COM32R module
 extlinux
/vesa.c32                  :  not a COM32/COM32R module
 extlinux
/vesainfo.c32              :  not a COM32/COM32R module
 extlinux
/vesamenu.c32              :  not a COM32/COM32R module
 extlinux
/vpdtest.c32               :  not a COM32/COM32R module
 extlinux
/whichsys.c32              :  not a COM32/COM32R module
 extlinux
/zzjson.c32                :  not a COM32/COM32R module 
 
Old 01-14-2017, 08:10 AM   #7
GanderBird
LQ Newbie
 
Registered: Jan 2017
Posts: 12

Original Poster
Rep: Reputation: Disabled
PHP Code:
=============================== sda14/etc/fstab: ===============================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda14 during installation
UUID=1fd6152b-7d3c-4fa5-94ef-217fbe738896 /               ext4    errors=remount-ro 0       1
# swap was on /dev/sda11 during installation
UUID=ebb0a959-fd3f-4ca3-ab7a-6e955e48f8e6 none            swap    sw              0       0
/dev/sr0        /media/cdrom0   udf,iso9660 user,noauto     0       0
--------------------------------------------------------------------------------

=============================== 
sda15/etc/fstab: ===============================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda15 during installation
UUID=e46df5be-9934-4533-a585-6ab06f40b9fa /               ext4    errors=remount-ro 0       1=============================== sda10/etc/fstab: ===============================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda10 during installation
UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c /               ext4    errors=remount-ro 0       1
# /boot/efi was on /dev/sda1 during installation
#UUID=70C8-5F6D  /boot/efi       vfat    defaults        0       1
# swap was on /dev/sda11 during installation
UUID=daf77d88-f5d9-4d58-babe-8cb72acc7e2f none            swap    sw              0       0=============================== sda10/etc/fstab: ===============================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda10 during installation
UUID=f97d05ee-f49d-47fa-9a1d-af00a30f661c /               ext4    errors=remount-ro 0       1
# /boot/efi was on /dev/sda1 during installation
#UUID=70C8-5F6D  /boot/efi       vfat    defaults        0       1
# swap was on /dev/sda11 during installation
UUID=daf77d88-f5d9-4d58-babe-8cb72acc7e2f none            swap    sw              0       0
UUID
=70C8-5F6D    /boot/efi    vfat    defaults    0    1


UUID
=70C8-5F6D    /boot/efi    vfat    defaults    0    1


# swap was on /dev/sda11 during installation
UUID=ebb0a959-fd3f-4ca3-ab7a-6e955e48f8e6 none            swap    sw              0       0

=============================== sda16/etc/fstab: ===============================

--------------------------------------------------------------------------------

#
# /etc/fstab
# Created by anaconda on Fri Jan 13 16:03:33 2017
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
UUID=4c1e8c04-68e4-4c71-81ec-1078013ade85 /                       ext4    defaults        1 1
UUID
=70C8-5F6D          /boot/efi               vfat    umask=0077,shortname=winnt 0 2
--------------------------------------------------------------------------------

=================== 
sda16Location of files loaded by Grub: ===================

           
GiB GB             File                                 Fragment(s)


================= 
sda16Location of files loaded by Syslinux: =================

           
GiB GB             File                                 Fragment(s)


============== 
sda16Version of COM32(Rfiles used by Syslinux: ==============

 
boot/extlinux/cat.c32              :  not a COM32/COM32R module
 boot
/extlinux/chain.c32            :  not a COM32/COM32R module
 boot
/extlinux/cmd.c32              :  not a COM32/COM32R module
 boot
/extlinux/cmenu.c32            :  not a COM32/COM32R module
 boot
/extlinux/config.c32           :  not a COM32/COM32R module
 boot
/extlinux/cptime.c32           :  not a COM32/COM32R module
 boot
/extlinux/cpu.c32              :  not a COM32/COM32R module
 boot
/extlinux/cpuid.c32            :  not a COM32/COM32R module
 boot
/extlinux/cpuidtest.c32        :  not a COM32/COM32R module
 boot
/extlinux/debug.c32            :  not a COM32/COM32R module
 boot
/extlinux/dhcp.c32             :  not a COM32/COM32R module
 boot
/extlinux/dir.c32              :  not a COM32/COM32R module
 boot
/extlinux/disk.c32             :  not a COM32/COM32R module
 boot
/extlinux/dmi.c32              :  not a COM32/COM32R module
 boot
/extlinux/dmitest.c32          :  not a COM32/COM32R module
 boot
/extlinux/elf.c32              :  not a COM32/COM32R module
 boot
/extlinux/ethersel.c32         :  not a COM32/COM32R module
 boot
/extlinux/gfxboot.c32          :  not a COM32/COM32R module
 boot
/extlinux/gpxecmd.c32          :  not a COM32/COM32R module
 boot
/extlinux/hdt.c32              :  not a COM32/COM32R module
 boot
/extlinux/hexdump.c32          :  not a COM32/COM32R module
 boot
/extlinux/host.c32             :  not a COM32/COM32R module
 boot
/extlinux/ifcpu64.c32          :  not a COM32/COM32R module
 boot
/extlinux/ifcpu.c32            :  not a COM32/COM32R module
 boot
/extlinux/ifmemdsk.c32         :  not a COM32/COM32R module
 boot
/extlinux/ifplop.c32           :  not a COM32/COM32R module
 boot
/extlinux/kbdmap.c32           :  not a COM32/COM32R module
 boot
/extlinux/kontron_wdt.c32      :  not a COM32/COM32R module
 boot
/extlinux/ldlinux.c32          :  not a COM32/COM32R module
 boot
/extlinux/lfs.c32              :  not a COM32/COM32R module
 boot
/extlinux/libcom32.c32         :  not a COM32/COM32R module
 boot
/extlinux/libgpl.c32           :  not a COM32/COM32R module
 boot
/extlinux/liblua.c32           :  not a COM32/COM32R module
 boot
/extlinux/libmenu.c32          :  not a COM32/COM32R module
 boot
/extlinux/libutil.c32          :  not a COM32/COM32R module
 boot
/extlinux/linux.c32            :  not a COM32/COM32R module
 boot
/extlinux/ls.c32               :  not a COM32/COM32R module
 boot
/extlinux/lua.c32              :  not a COM32/COM32R module
 boot
/extlinux/mboot.c32            :  not a COM32/COM32R module
 boot
/extlinux/meminfo.c32          :  not a COM32/COM32R module
 boot
/extlinux/menu.c32             :  not a COM32/COM32R module
 boot
/extlinux/pci.c32              :  not a COM32/COM32R module
 boot
/extlinux/pcitest.c32          :  not a COM32/COM32R module
 boot
/extlinux/pmload.c32           :  not a COM32/COM32R module
 boot
/extlinux/poweroff.c32         :  not a COM32/COM32R module
 boot
/extlinux/prdhcp.c32           :  not a COM32/COM32R module
 boot
/extlinux/pwd.c32              :  not a COM32/COM32R module
 boot
/extlinux/pxechn.c32           :  not a COM32/COM32R module
 boot
/extlinux/reboot.c32           :  not a COM32/COM32R module
 boot
/extlinux/rosh.c32             :  not a COM32/COM32R module
 boot
/extlinux/sanboot.c32          :  not a COM32/COM32R module
 boot
/extlinux/sdi.c32              :  not a COM32/COM32R module
 boot
/extlinux/sysdump.c32          :  not a COM32/COM32R module
 boot
/extlinux/syslinux.c32         :  not a COM32/COM32R module
 boot
/extlinux/vesa.c32             :  not a COM32/COM32R module
 boot
/extlinux/vesainfo.c32         :  not a COM32/COM32R module
 boot
/extlinux/vesamenu.c32         :  not a COM32/COM32R module
 boot
/extlinux/vpdtest.c32          :  not a COM32/COM32R module
 boot
/extlinux/whichsys.c32         :  not a COM32/COM32R module
 boot
/extlinux/zzjson.c32           :  not a COM32/COM32R module 
 
Old 01-14-2017, 08:12 AM   #8
GanderBird
LQ Newbie
 
Registered: Jan 2017
Posts: 12

Original Poster
Rep: Reputation: Disabled
PHP Code:
=============================== sda17/etc/fstab: ===============================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda17 during installation
UUID=b6e679aa-c27b-4c06-804d-e41c9d408962 /               ext4    errors=remount-ro 0       1
# swap was on /dev/sda11 during installation
UUID=c78714ed-ff3a-4916-a6a5-2b60cac04a3b none            swap    sw              0       0
/dev/sr0        /media/cdrom0   udf,iso9660 user,noauto     0       0
--------------------------------------------------------------------------------

=================== 
sda17Location of files loaded by Grub: ===================

           
GiB GB             File                                 Fragment(s)


============================== 
sdb1/syslinux.cfg: ==============================

--------------------------------------------------------------------------------
DEFAULT 
loadconfig

LABEL loadconfig
  CONFIG 
/isolinux/isolinux.cfg
  APPEND 
/isolinux/
--------------------------------------------------------------------------------

================= 
sdb1Location of files loaded by Syslinux: ==================

           
GiB GB             File                                 Fragment(s)


======================== 
Unknown MBRs/Boot Sectors/etc: ========================

Unknown GPT Partiton Type
d3ad6b79bf6b9f4db631466eb71a4965
Unknown BootLoader on sda1

00000000  eb 58 90 4d 53 44 4f 53  35 2e 30 00 02 08 3e 18  
|.X.MSDOS5.0...>.|
00000010  02 00 00 00 00 f8 00 00  3f 00 ff 00 00 08 00 00  |........?.......|
00000020  00 a0 0f 00 e1 03 00 00  00 00 00 00 02 00 00 00  |................|
00000030  01 00 06 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000040  80 01 29 6d 5f c8 70 4e  4f 20 4e 41 4d 45 20 20  |..)m_.pNO NAME  |
00000050  20 20 46 41 54 33 32 20  20 20 33 c9 8e d1 bc f4  |  FAT32   3.....|
00000060  7b 8e c1 8e d9 bd 00 7c  88 56 40 88 4e 02 8a 56  |{......|.V@.N..V|
00000070  40 b4 41 bb aa 55 cd 13  72 10 81 fb 55 aa 75 0a  |@.A..U..r...U.u.|
00000080  f6 c1 01 74 05 fe 46 02  eb 2d 8a 56 40 b4 08 cd  |...t..F..-.V@...|
00000090  13 73 05 b9 ff ff 8a f1  66 0f b6 c6 40 66 0f b6  |.s......f...@f..|
000000a0  d1 80 e2 3f f7 e2 86 cd  c0 ed 06 41 66 0f b7 c9  |...?.......Af...|
000000b0  66 f7 e1 66 89 46 f8 83  7e 16 00 75 39 83 7e 2a  |f..f.F..~..u9.~*|
000000c0  00 77 33 66 8b 46 1c 66  83 c0 0c bb 00 80 b9 01  |.w3f.F.f........|
000000d0  00 e8 2c 00 e9 a8 03 a1  f8 7d 80 c4 7c 8b f0 ac  |..,......}..|...|
000000e0  84 c0 74 17 3c ff 74 09  b4 0e bb 07 00 cd 10 eb  |..t.<.t.........|
000000f0  ee a1 fa 7d eb e4 a1 7d  80 eb df 98 cd 16 cd 19  |...}...}........|
00000100  66 60 80 7e 02 00 0f 84  20 00 66 6a 00 66 50 06  |f`.~.... .fj.fP.|
00000110  53 66 68 10 00 01 00 b4  42 8a 56 40 8b f4 cd 13  |Sfh.....B.V@....|
00000120  66 58 66 58 66 58 66 58  eb 33 66 3b 46 f8 72 03  |fXfXfXfX.3f;F.r.|
00000130  f9 eb 2a 66 33 d2 66 0f  b7 4e 18 66 f7 f1 fe c2  |..*f3.f..N.f....|
00000140  8a ca 66 8b d0 66 c1 ea  10 f7 76 1a 86 d6 8a 56  |..f..f....v....V|
00000150  40 8a e8 c0 e4 06 0a cc  b8 01 02 cd 13 66 61 0f  |@............fa.|
00000160  82 74 ff 81 c3 00 02 66  40 49 75 94 c3 42 4f 4f  |.t.....f@Iu..BOO|
00000170  54 4d 47 52 20 20 20 20  00 00 00 00 00 00 00 00  |TMGR    ........|
00000180  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
000001a0  00 00 00 00 00 00 00 00  00 00 00 00 0d 0a 44 69  |..............Di|
000001b0  73 6b 20 65 72 72 6f 72  ff 0d 0a 50 72 65 73 73  |sk error...Press|
000001c0  20 61 6e 79 20 6b 65 79  20 74 6f 20 72 65 73 74  | any key to rest|
000001d0  61 72 74 0d 0a 00 00 00  00 00 00 00 00 00 00 00  |art.............|
000001e0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000001f0  00 00 00 00 00 00 00 00  ac 01 b9 01 00 00 55 aa  |..............U.|
00000200

Unknown BootLoader on sda2

00000000  eb 58 90 4d 53 44 4f 53  35 2e 30 00 02 01 7e 1b  |.X.MSDOS5.0...~.|
00000010  02 00 00 00 00 f8 00 00  3f 00 ff 00 00 a8 0f 00  |........?.......|
00000020  00 40 01 00 41 02 00 00  00 00 00 00 02 00 00 00  |.@..A...........|
00000030  01 00 06 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000040  80 01 29 c8 2a 1b 0c 4e  4f 20 4e 41 4d 45 20 20  |..).*..NO NAME  |
00000050  20 20 46 41 54 33 32 20  20 20 33 c9 8e d1 bc f4  |  FAT32   3.....|
00000060  7b 8e c1 8e d9 bd 00 7c  88 56 40 88 4e 02 8a 56  |{......|.V@.N..V|
00000070  40 b4 41 bb aa 55 cd 13  72 10 81 fb 55 aa 75 0a  |@.A..U..r...U.u.|
00000080  f6 c1 01 74 05 fe 46 02  eb 2d 8a 56 40 b4 08 cd  |...t..F..-.V@...|
00000090  13 73 05 b9 ff ff 8a f1  66 0f b6 c6 40 66 0f b6  |.s......f...@f..|
000000a0  d1 80 e2 3f f7 e2 86 cd  c0 ed 06 41 66 0f b7 c9  |...?.......Af...|
000000b0  66 f7 e1 66 89 46 f8 83  7e 16 00 75 39 83 7e 2a  |f..f.F..~..u9.~*|
000000c0  00 77 33 66 8b 46 1c 66  83 c0 0c bb 00 80 b9 01  |.w3f.F.f........|
000000d0  00 e8 2c 00 e9 a8 03 a1  f8 7d 80 c4 7c 8b f0 ac  |..,......}..|...|
000000e0  84 c0 74 17 3c ff 74 09  b4 0e bb 07 00 cd 10 eb  |..t.<.t.........|
000000f0  ee a1 fa 7d eb e4 a1 7d  80 eb df 98 cd 16 cd 19  |...}...}........|
00000100  66 60 80 7e 02 00 0f 84  20 00 66 6a 00 66 50 06  |f
`.~.... .fj.fP.|
00000110  53 66 68 10 00 01 00 b4  42 8a 56 40 8b f4 cd 13  |Sfh.....B.V@....|
00000120  66 58 66 58 66 58 66 58  eb 33 66 3b 46 f8 72 03  |fXfXfXfX.3f;F.r.|
00000130  f9 eb 2a 66 33 d2 66 0f  b7 4e 18 66 f7 f1 fe c2  |..*f3.f..N.f....|
00000140  8a ca 66 8b d0 66 c1 ea  10 f7 76 1a 86 d6 8a 56  |..f..f....v....V|
00000150  40 8a e8 c0 e4 06 0a cc  b8 01 02 cd 13 66 61 0f  |@............fa.|
00000160  82 74 ff 81 c3 00 02 66  40 49 75 94 c3 42 4f 4f  |.t.....f@Iu..BOO|
00000170  54 4d 47 52 20 20 20 20  00 00 00 00 00 00 00 00  |TMGR    ........|
00000180  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
000001a0  00 00 00 00 00 00 00 00  00 00 00 00 0d 0a 44 69  |..............Di|
000001b0  73 6b 20 65 72 72 6f 72  ff 0d 0a 50 72 65 73 73  |sk error...Press|
000001c0  20 61 6e 79 20 6b 65 79  20 74 6f 20 72 65 73 74  any key to rest|
000001d0  61 72 74 0d 0a 00 00 00  00 00 00 00 00 00 00 00  |art.............|
000001e0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000001f0  00 00 00 00 00 00 00 00  ac 01 b9 01 00 00 55 aa  |..............U.|
00000200

Unknown BootLoader on sda12

00000000  52 bf f4 81 66 8b 2d 83  7d 08 00 0f 84 e2 00 80  
|R...f.-.}.......|
00000010  7c ff 00 74 46 66 8b 1d  66 8b 4d 04 66 31 c0 b0  ||..tFf..f.M.f1..|
00000020  7f 39 45 08 7f 03 8b 45  08 29 45 08 66 01 05 66  |.9E....E.)E.f..f|
00000030  83 55 04 00 c7 04 10 00  89 44 02 66 89 5c 08 66  |.U.......D.f.\.f|
00000040  89 4c 0c c7 44 06 00 70  50 c7 44 04 00 00 b4 42  |.L..D..pP.D....B|
00000050  cd 13 0f 82 af 00 bb 00  70 eb 66 66 8b 45 04 66  |........p.ff.E.f|
00000060  09 c0 0f 85 97 00 66 8b  05 66 31 d2 66 f7 34 88  |......f..f1.f.4.|
00000070  54 0a 66 31 d2 66 f7 74  04 88 54 0b 89 44 0c 3b  |T.f1.f.t..T..D.;|
00000080  44 08 7d 79 8b 04 2a 44  0a 39 45 08 7f 03 8b 45  |D.}y..*D.9E....E|
00000090  08 29 45 08 66 01 05 66  83 55 04 00 8a 54 0d c0  |.)E.f..f.U...T..|
000000a0  e2 06 8a 4c 0a fe c1 08  d1 8a 6c 0c 5a 52 8a 74  |...L......l.ZR.t|
000000b0  0b 50 bb 00 70 8e c3 31  db b4 02 cd 13 72 46 8c  |.P..p..1.....rF.|
000000c0  c3 8e 45 0a 58 c1 e0 05  01 45 0a 60 1e c1 e0 03  |..E.X....E.`....|
000000d0  89 c1 31 ff 31 f6 8e db  fc f3 a5 1f be 1b 81 e8  |..1.1...........|
000000e0  57 00 61 83 7d 08 00 0f  85 24 ff 83 ef 0c e9 16  |W.a.}....$......|
000000f0  ff be 1d 81 e8 42 00 5a  ea 00 82 00 00 be 20 81  |.....B.Z...... .|
00000100  e8 36 00 eb 06 be 25 81  e8 2e 00 be 2a 81 e8 28  |.6....%.....*..(|
00000110  00 eb fe 6c 6f 61 64 69  6e 67 00 2e 00 0d 0a 00  |...loading......|
00000120  47 65 6f 6d 00 52 65 61  64 00 20 45 72 72 6f 72  |Geom.Read. Error|
00000130  00 bb 01 00 b4 0e cd 10  46 8a 04 3c 00 75 f2 c3  |........F..<.u..|
00000140  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
000001f0  00 00 00 00 01 30 ad 30  00 00 00 00 69 00 20 08  |.....0.0....i. .|
00000200


=============================== StdErr Messages: ===============================

cat: /tmp/BootInfo-FNMTqXKN/Tmp_Log: No such file or directory
cat: /tmp/BootInfo-FNMTqXKN/Tmp_Log: No such file or directory
cat: /tmp/BootInfo-FNMTqXKN/Tmp_Log: No such file or directory
cat: /tmp/BootInfo-FNMTqXKN/Tmp_Log: No such file or directory
cat: /tmp/BootInfo-FNMTqXKN/Tmp_Log: No such file or directory
cat: /tmp/BootInfo-FNMTqXKN/Tmp_Log: No such file or directory
cat: /tmp/BootInfo-FNMTqXKN/Tmp_Log: No such file or directory
cat: /tmp/BootInfo-FNMTqXKN/Tmp_Log: No such file or directory
cat: /tmp/BootInfo-FNMTqXKN/Tmp_Log: No such file or directory
mdadm: No arrays found in config file or automatically 
 
Old 01-14-2017, 08:15 AM   #9
GanderBird
LQ Newbie
 
Registered: Jan 2017
Posts: 12

Original Poster
Rep: Reputation: Disabled
Ok, sorry I know that was a lot. I only posted the grub.cfg from the Fedora(sda13), Ubunutu(sda10), and (sda16). Before Fedora took over, Ubunutu handled my bootloader and grub and whatnot. The other partitions are similar to Ubuntu.

Also whats that about at the very top of the summary?

PHP Code:
=> Grub2 (v1.99is installed in the MBR of /dev/sda and looks at sector 
    816656384 of the same hard drive 
for core.imgbut core.img can not be 
    found at this location

 
Old 01-14-2017, 12:32 PM   #10
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,491

Rep: Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488Reputation: 2488
Quote:
Also whats that about at the very top of the summary?
That is where the core.img file should be when using a BIOS boot partition but it isn't there (sda12).
If you use GPT with Linux, you can use either UEFI or MBR. If you are using MBR, then you need the BIOS boot partition. This doesn't work with windows as you need to use
UEFI if you have a GPT partitioning. I also don't see the usual windows files on the EFI partition. I would suggest you run boot repair without trying to do a repair but just
post a link to the output.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
New to GRUB2 and EFI 3rensho Linux - Software 3 02-12-2016 10:43 PM
Grub2 refuses to load windows bootmgfw.efi pusheax Linux - Software 6 09-27-2015 04:52 AM
Revert grub2-efi to grub2-bios Atmchicago Fedora 1 03-24-2014 01:24 AM
EFI main GPT overwritten everytime (when windows 7 runs) - structure of EFI masuch Linux - Newbie 2 07-20-2012 02:49 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 07:09 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration