I have Ubuntu and Windows 10 Pro on my PC and I want to install Remix OS in a other partition, but I don't know how create a entry on the Grub2. Below I put what I did, ok:
everaldo@positivo:~$ sudo gedit /etc/grub.d/40_custom
#!/bin/sh
exec tail -n +3 $0
# 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 'Remix OS (x86_64) (em /dev/sda8)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-d784eb05-806d-4bce-8710-077404ea727b' {
insmod part_gpt
insmod ext2
set root='hd0,gpt8'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 d784eb05-806d-4bce-8710-077404ea727b
else
search --no-floppy --fs-uuid --set=root d784eb05-806d-4bce-8710-077404ea727b
fi
linux /kernel root=/dev/sda8 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive CMDLINE
initrd /initrd
}
---------------------------------------------------------------
Someone her can help me with problem?
Everaldo