Results 1 to 3 of 3

Thread: Duplicate entries in grub

  1. #1
    Join Date
    Nov 2007
    Location
    New Delhi, India
    Beans
    93
    Distro
    Ubuntu 18.04 Bionic Beaver

    Duplicate entries in grub

    Hi All,
    I'm running Windows 10 and Kubuntu in a dualboot setup. It's running fine, but a minor problem is, the grub shows 5 entries whereas I've only 1 kernel installed in Kubuntu. So, ideally it should show only 3 entries such as: 1st Kubuntu, 2nd Kubuntu rescue mode, and 3rd Windows 10. Please have a look at the attached files /boot/grub/grub.cfg as well as /etc/default/grub.

    Note: I'm running a custom kernel that runs without initram disk.
    Attached Files Attached Files

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

    Re: Duplicate entries in grub

    You can manage your own grub.cfg if you want.
    You turn off the scripts that create the grub.cfg and add your own entries in the 40_custom script.

    How to: Create a Customized GRUB2 Screen that is Maintenance Free.- Cavsfan
    https://help.ubuntu.com/community/Ma...tomGrub2Screen

    I turn off os-prober as I have multiple Ubuntu installs, and do not want it to find my obsolete ones.

    In /etc/default/grub I added this line for os-prober:
    sudo cp -a /boot/grub/grub.cfg /boot/grub/grub.cfg.backup
    sudo nano /etc/default/grub
    GRUB_DISABLE_OS_PROBER=true
    or
    sudo sed -i '$a GRUB_DISABLE_OS_PROBER=true' /etc/default/grub
    or turn off executeable bit
    sudo chmod a-x /etc/grub.d/30_os-prober
    sudo update-grub


    You can copy the boot stanza's you want into 40_custom. Then turn off the other scripts (execute bit as shown above with chmod).
    Always rerun the sudo update-grub after any changes to update menu.

    From Ranch hand
    You only need 3 scripts for grub to tick like a clock;
    00_header
    05_debian-theme
    06_custom (or 07, 08, 09, 25, 40)

    If you copy boot stanza, you do just must be sure to copy entire stanza.
    I typically like to add some of the configuration files, like colors or some other settings as shown in first link above.


    General menuentry Construction Rules: The first must start with menuentry and end with {
    • The area between the quotation symbols is what will appear on the GRUB 2 menu. Edit as desired.
    • The last of the menuentry must be }
    • Do not leave empty spaces at the end of s
    • The set root= should point to the GRUB 2 /boot location ( sdXY )
    • The root reference in in the linux should point to the system partition.

    o If GRUB 2 cannot find the referenced kernel, try replacing the UUID with the device name (example: /dev/sda6 ).
    Last edited by oldfred; December 8th, 2018 at 03:59 PM.
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

  3. #3
    Join Date
    Nov 2007
    Location
    New Delhi, India
    Beans
    93
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: Duplicate entries in grub

    Thank you! Problem solved.

Tags for this Thread

Bookmarks

Posting Permissions

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