LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux From Scratch (https://www.linuxquestions.org/questions/linux-from-scratch-13/)
-   -   1st boot attempt: error: file '/boot/vmlinuz-4.13.9' not found (https://www.linuxquestions.org/questions/linux-from-scratch-13/1st-boot-attempt-error-file-%27-boot-vmlinuz-4-13-9%27-not-found-4175616436/)

hariskar 10-26-2017 08:19 AM

1st boot attempt: error: file '/boot/vmlinuz-4.13.9' not found
 
I run
Code:

grub-mkconfig -o /boot/grub/grub.cfg
from host os, because I was affraid to run it from newly installed LFS. With os-prober it found LFS and there is an antry in grub2. But when I choose it I get the error: file '/boot/vmlinuz-4.13.9' not found.

I have Gentoo and Windows on sda and LFS on sdc2, all in one partiiton, so /boot is a folder on sdc2 and not a partition.

Here is the relevant part of grub.cfg:

Code:

menuentry 'unknown Linux distribution (on /dev/sdc2)' --class linux --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-9598a9a6-e3d0-4e43-816d-3b
1f0aaeb742' {
        insmod part_msdos
        insmod ext2
        set root='hd0,msdos5'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  bc0ef645-69f8-4faf-92fe-99db22cc330b
        else
          search --no-floppy --fs-uuid --set=root bc0ef645-69f8-4faf-92fe-99db22cc330b
        fi
        linux /boot/vmlinuz-4.13.9 root=/dev/sdc2 ro
}

Any help?

sr_ls_boy 10-26-2017 12:08 PM

My first thought is 'set root=' is set wrong.
You have it set to 'hd0' which is /dev/sda.
0=a. You need sdc, which is the third drive.
That would be root=(hd2,X). Does 'msdos5' point
at the 2nd partition? If not
put a '2' there. Remember drives start counting
at zero(eg. hd0), whereas partitions start counting
at one, when setting 'root'.

Another thing I noticed is osprober may have set
'osprober-gnulinux-simple-XXX' for you incorrectly.
It should be the uuid of your root drive. You have it
as "9598..." Try adjusting simple-XXX for bc0ef645...
Use /sbin/blkid and make sure that bc0ef645... is indeed
the uuid of you root /dev/sdc2.

hariskar 10-26-2017 12:20 PM

Can I use the same /boot for Gentoo (host) and LFS?

Thank you for reply!

plasmonics 10-27-2017 06:39 AM

Another possibility is to chain load instead of using os-prober. os-prober is not always 100% accurate. In your Gentoo system, add the following stanza to /etc/grub.d/40_custom:
Code:

menuentry "LFS" {
insmod part_msdos
insmod ext2
# you said lfs is on the 3rd drive, second partition
set root=(hd2,2)
linux /boot/vmlinuz-xxx root=UUID=xxxxxx ro quiet
#skip this if there is no RAM disk
initrd /boot/initrd.img
}

From gentoo, run blkid on the lfs root partition to obtain the uuid. Then re-run grub-mkconfig.
If it still does not boot, it is possible that make defconfig missed the sata comtroller. This happened in my case.
Another possibility is that on some legacy motherboards with both sata and pata, the sd numbering can vary from boot to boot if you have multiple drives, some wired to sata and some to pata. I had this situation on a previous ASUS board. Booting by uuid can get around this problem. So in your LFS /etc/fstab, use UUIDs instead of devices.

--------------Edited-------------------
Sorry, the above stanza is direct boot, not chain load. If you want to chain load instead of direct boot, you will have to install LFS's grub to the VBR and add a chainload stanza to Gentoo's 40_custom.
Code:

menuentry "LFS" {
insmod part_msdos
insmod chain
set root=(hd2,2)
chainloader +1
}

In your situation, you are better off direct booting LFS from Gentoo's grub, until you get LFS straightened out.
Many of the standard modules are built in. So you can omit insmod in many cases.

hariskar 10-28-2017 12:58 AM

Quote:

Originally Posted by plasmonics (Post 5774344)
Another possibility is to chain load instead of using os-prober. os-prober is not always 100% accurate. In your Gentoo system, add the following stanza to /etc/grub.d/40_custom:
Code:

menuentry "LFS" {
insmod part_msdos
insmod ext2
# you said lfs is on the 3rd drive, second partition
set root=(hd2,2)
linux /boot/vmlinuz-lfs root=UUID=xxxxxx ro quiet
}


With these settings I get error: No such partition

With
Code:

menuentry "LFS" {
insmod part_msdos
insmod ext2
# you said lfs is on the 3rd drive, second partition
set root=(hd0,5)
linux /vmlinuz-lfs root=/dev/sdc2 ro quiet
}

sda5 is the host /boot partition.

Now it boots!

But are these settings correct? set root points to gentoo /boot partition where I also put the LFS kernel. Why does it not boot with set root=(hd2,2) where LFS is installed?

Is it better to put the LFS kernel and config files in /boot partition of host or seperate them and put LFS kernel and config files in /boot partiton of LFS?

Thank you for help!

sr_ls_boy 10-28-2017 03:05 AM

I didn't know that /boot was a separate partition for you. That thickens the plot a little.

plasmonics 10-28-2017 05:59 AM

It is surprising that it booted up that way. No wonder os-prober didn't find it. Anyway, as long as everything works.

It looks like you have separate partitions for / and /boot. Nothing wrong with that. I have this arrangement in fedora. You just need to put a separate entry for /boot in LFS /etc/fstab. In LFS, I have just one partition.

The book has /boot as part of the LFS environment, not the host environment. However, it doesn't mean you have to rebuild LFS. You should be able to copy the kernel to LFS /boot and adjust your grub stanza.

hariskar 10-28-2017 08:25 AM

Yes I have separate /boot partition. In gentoo I didn't have boot entry in fstab butwill add it in lfs fstab. So I can use the grub.cfg from gentoo installation (sda) to boot lfs in sdc2?
If I point set root to lfs (set root=hd2,2) it says no partition found..

spiky0011 10-28-2017 09:23 AM

Hi
Is sdc a usb device? And is it ext4
You could try adding rootdelay=10 to the kernel line

hariskar 10-28-2017 09:25 AM

It is ext4 and it is not USB, it is sata.

spiky0011 10-28-2017 09:35 AM

Can you post the grub.cfg you are using and where is your kernel sdc2/boot?

hariskar 10-28-2017 09:51 AM

grub.cfg. It is located in sda5
Code:

#
# 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
  load_env
fi
if [ "${next_entry}" ] ; then
  set default="${next_entry}"
  set next_entry=
  save_env next_entry
  set boot_once=true
else
  set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
  font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos8'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos8 --hint-efi=hd0,msdos8 --hint-baremetal=ahci0,msdos8  e22c9635-1bea-4242-b0c2-079658e36ec5
else
  search --no-floppy --fs-uuid --set=root e22c9635-1bea-4242-b0c2-079658e36ec5
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 [ x$feature_timeout_style = xy ] ; then
  set timeout_style=menu
  set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
  set timeout=5
fi
### END /etc/grub.d/00_header ###

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

menuentry "GNU/Linux, Linux 4.13.9-lfs-SVN-20171020" {
insmod part_msdos
insmod ext2
set root=(hd0,5)
        linux  /vmlinuz-4.13.9-lfs-SVN-20171020 root=/dev/sdc2 ro quiet
}
menuentry 'Gentoo GNU/Linux' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-e22c9635-1bea-4242-b0c2-079658e36ec5' {
        load_video
        insmod gzio
        insmod part_msdos
        insmod ext2
        set root='hd0,msdos5'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  bc0ef645-69f8-4faf-92fe-99db22cc330b
        else
          search --no-floppy --fs-uuid --set=root bc0ef645-69f8-4faf-92fe-99db22cc330b
        fi
        echo        'Loading Linux 4.13.9-gentoo ...'
        linux        /vmlinuz-4.13.9-gentoo root=/dev/sda8 ro 
}
submenu 'Advanced options for Gentoo GNU/Linux' $menuentry_id_option 'gnulinux-advanced-e22c9635-1bea-4242-b0c2-079658e36ec5' {
        menuentry 'Gentoo GNU/Linux, with Linux 4.13.9-gentoo' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.9-gentoo-advanced-e22c9635-1bea-4242-b0c2-079658e36ec5' {
                load_video
                insmod gzio
                insmod part_msdos
                insmod ext2
                set root='hd0,msdos5'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  bc0ef645-69f8-4faf-92fe-99db22cc330b
                else
                  search --no-floppy --fs-uuid --set=root bc0ef645-69f8-4faf-92fe-99db22cc330b
                fi
                echo        'Loading Linux 4.13.9-gentoo ...'
                linux        /vmlinuz-4.13.9-gentoo root=/dev/sda8 ro 
        }
        menuentry 'Gentoo GNU/Linux, with Linux 4.13.9-gentoo (recovery mode)' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.9-gentoo-recovery-e22c9635-1bea-4242-b0c2-079658e36ec5' {
                load_video
                insmod gzio
                insmod part_msdos
                insmod ext2
                set root='hd0,msdos5'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  bc0ef645-69f8-4faf-92fe-99db22cc330b
                else
                  search --no-floppy --fs-uuid --set=root bc0ef645-69f8-4faf-92fe-99db22cc330b
                fi
                echo        'Loading Linux 4.13.9-gentoo ...'
                linux        /vmlinuz-4.13.9-gentoo root=/dev/sda8 ro single
        }
        menuentry 'Gentoo GNU/Linux, with Linux 4.13.8-gentoo' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.8-gentoo-advanced-e22c9635-1bea-4242-b0c2-079658e36ec5' {
                load_video
                insmod gzio
                insmod part_msdos
                insmod ext2
                set root='hd0,msdos5'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  bc0ef645-69f8-4faf-92fe-99db22cc330b
                else
                  search --no-floppy --fs-uuid --set=root bc0ef645-69f8-4faf-92fe-99db22cc330b
                fi
                echo        'Loading Linux 4.13.8-gentoo ...'
                linux        /vmlinuz-4.13.8-gentoo root=/dev/sda8 ro 
        }
        menuentry 'Gentoo GNU/Linux, with Linux 4.13.8-gentoo (recovery mode)' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.8-gentoo-recovery-e22c9635-1bea-4242-b0c2-079658e36ec5' {
                load_video
                insmod gzio
                insmod part_msdos
                insmod ext2
                set root='hd0,msdos5'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  bc0ef645-69f8-4faf-92fe-99db22cc330b
                else
                  search --no-floppy --fs-uuid --set=root bc0ef645-69f8-4faf-92fe-99db22cc330b
                fi
                echo        'Loading Linux 4.13.8-gentoo ...'
                linux        /vmlinuz-4.13.8-gentoo root=/dev/sda8 ro single
        }
        menuentry 'Gentoo GNU/Linux, with Linux 4.13.7-gentoo' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.7-gentoo-advanced-e22c9635-1bea-4242-b0c2-079658e36ec5' {
                load_video
                insmod gzio
                insmod part_msdos
                insmod ext2
                set root='hd0,msdos5'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  bc0ef645-69f8-4faf-92fe-99db22cc330b
                else
                  search --no-floppy --fs-uuid --set=root bc0ef645-69f8-4faf-92fe-99db22cc330b
                fi
                echo        'Loading Linux 4.13.7-gentoo ...'
                linux        /vmlinuz-4.13.7-gentoo root=/dev/sda8 ro 
        }
        menuentry 'Gentoo GNU/Linux, with Linux 4.13.7-gentoo (recovery mode)' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.7-gentoo-recovery-e22c9635-1bea-4242-b0c2-079658e36ec5' {
                load_video
                insmod gzio
                insmod part_msdos
                insmod ext2
                set root='hd0,msdos5'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  bc0ef645-69f8-4faf-92fe-99db22cc330b
                else
                  search --no-floppy --fs-uuid --set=root bc0ef645-69f8-4faf-92fe-99db22cc330b
                fi
                echo        'Loading Linux 4.13.7-gentoo ...'
                linux        /vmlinuz-4.13.7-gentoo root=/dev/sda8 ro single
        }
        menuentry 'Gentoo GNU/Linux, with Linux 4.13.6-gentoo' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.6-gentoo-advanced-e22c9635-1bea-4242-b0c2-079658e36ec5' {
                load_video
                insmod gzio
                insmod part_msdos
                insmod ext2
                set root='hd0,msdos5'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  bc0ef645-69f8-4faf-92fe-99db22cc330b
                else
                  search --no-floppy --fs-uuid --set=root bc0ef645-69f8-4faf-92fe-99db22cc330b
                fi
                echo        'Loading Linux 4.13.6-gentoo ...'
                linux        /vmlinuz-4.13.6-gentoo root=/dev/sda8 ro 
        }
        menuentry 'Gentoo GNU/Linux, with Linux 4.13.6-gentoo (recovery mode)' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.6-gentoo-recovery-e22c9635-1bea-4242-b0c2-079658e36ec5' {
                load_video
                insmod gzio
                insmod part_msdos
                insmod ext2
                set root='hd0,msdos5'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  bc0ef645-69f8-4faf-92fe-99db22cc330b
                else
                  search --no-floppy --fs-uuid --set=root bc0ef645-69f8-4faf-92fe-99db22cc330b
                fi
                echo        'Loading Linux 4.13.6-gentoo ...'
                linux        /vmlinuz-4.13.6-gentoo root=/dev/sda8 ro single
        }
        menuentry 'Gentoo GNU/Linux, with Linux 4.13.5-gentoo' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.5-gentoo-advanced-e22c9635-1bea-4242-b0c2-079658e36ec5' {
                load_video
                insmod gzio
                insmod part_msdos
                insmod ext2
                set root='hd0,msdos5'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  bc0ef645-69f8-4faf-92fe-99db22cc330b
                else
                  search --no-floppy --fs-uuid --set=root bc0ef645-69f8-4faf-92fe-99db22cc330b
                fi
                echo        'Loading Linux 4.13.5-gentoo ...'
                linux        /vmlinuz-4.13.5-gentoo root=/dev/sda8 ro 
        }
        menuentry 'Gentoo GNU/Linux, with Linux 4.13.5-gentoo (recovery mode)' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.5-gentoo-recovery-e22c9635-1bea-4242-b0c2-079658e36ec5' {
                load_video
                insmod gzio
                insmod part_msdos
                insmod ext2
                set root='hd0,msdos5'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  bc0ef645-69f8-4faf-92fe-99db22cc330b
                else
                  search --no-floppy --fs-uuid --set=root bc0ef645-69f8-4faf-92fe-99db22cc330b
                fi
                echo        'Loading Linux 4.13.5-gentoo ...'
                linux        /vmlinuz-4.13.5-gentoo root=/dev/sda8 ro single
        }
        menuentry 'Gentoo GNU/Linux, with Linux 4.13.4-gentoo' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.4-gentoo-advanced-e22c9635-1bea-4242-b0c2-079658e36ec5' {
                load_video
                insmod gzio
                insmod part_msdos
                insmod ext2
                set root='hd0,msdos5'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  bc0ef645-69f8-4faf-92fe-99db22cc330b
                else
                  search --no-floppy --fs-uuid --set=root bc0ef645-69f8-4faf-92fe-99db22cc330b
                fi
                echo        'Loading Linux 4.13.4-gentoo ...'
                linux        /vmlinuz-4.13.4-gentoo root=/dev/sda8 ro 
        }
        menuentry 'Gentoo GNU/Linux, with Linux 4.13.4-gentoo (recovery mode)' --class gentoo --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.4-gentoo-recovery-e22c9635-1bea-4242-b0c2-079658e36ec5' {
                load_video
                insmod gzio
                insmod part_msdos
                insmod ext2
                set root='hd0,msdos5'
                if [ x$feature_platform_search_hint = xy ]; then
                  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  bc0ef645-69f8-4faf-92fe-99db22cc330b
                else
                  search --no-floppy --fs-uuid --set=root bc0ef645-69f8-4faf-92fe-99db22cc330b
                fi
                echo        'Loading Linux 4.13.4-gentoo ...'
                linux        /vmlinuz-4.13.4-gentoo root=/dev/sda8 ro single
        }
}

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

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

### BEGIN /etc/grub.d/30_os-prober ###

### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.

menuentry 'Windows 10' {
set root='(hd0,msdos1)'
chainloader +1
}
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###


gentoo fstab:

Code:

/dev/sda4                /home/hk/sda4        ntfs                noauto                0 1
/dev/sda5                /boot                ext2                defaults        0 2
/dev/sda7                /home                ext4                noatime                0 1
/dev/sda8                /                ext4                noatime                0 1
/dev/sdb1                /home/hk/sdb1        ntfs                noatime,user        0 0
/dev/sdc1                /home/hk/sdc1        ext4                noatime                0 1
/dev/sdc2                /home/hk/sdc2        ext4                noatime                0 1
/dev/sdc3              /home/hk/sdc3  ext4            noatime        0 1
/dev/cdrom                /mnt/cdrom        auto                noauto,ro        0 0

In LFS installation sdc1 is /boot partition, sdc2 is /


In gentoo grub.cfg if I put:

Code:

menuentry "LFS" {
insmod part_msdos
insmod ext2
# you said lfs is on the 3rd drive, second partition
set root=(hd0,5)
linux /vmlinuz-lfs root=/dev/sdc2 ro quiet
}

and LFS kenrel in gentoo boot partition, LFS boots.

But if I put the LFS kernel in LFS /boot, which is sdc1 and change the grub.cfg to

Code:

menuentry "LFS" {
insmod part_msdos
insmod ext2
# you said lfs is on the 3rd drive, second partition
set root=(hd2,2)
linux /vmlinuz-lfs root=/dev/sdc2 ro quiet
}

(set root=(hd2,2) because LFS / is sdc2), I get error partition not found.

spiky0011 10-28-2017 10:02 AM

So you have kernel in sdc1 then "set root=hd2,1" sdc1 wont get mounted till root "sdc2" is mounted
Kernel line stays the same.

hariskar 10-28-2017 10:08 AM

With set root=(hd2,1)
Linux /vmlinuz.. root=/dev/sdc2 ro
I get
errot: no such partition

spiky0011 10-28-2017 10:24 AM

can you try hd1,1. Shouldn't be that but grub might look there.
also "ls /home/hk/sdc1"


All times are GMT -5. The time now is 10:29 AM.