0

I have installed OpenSuse Tumbleweed and it looks great but when I turn on my computer the boot screen only shows an option for Suse. I know ubuntu is still on my system because I can access the files through Suse and see all my documents. I have 3 partitions; 1 for ubuntu, 1 for my suse home, and 1 for my suse root files. How do I boot into Ubuntu again?

1 Answers1

3

On a Ubuntu system, doing

sudo update-grub 

would probably be enough. This command lists bootable disks on the system, guesses the OS installed on it, and shows you the list at boot time so you can choose which OS to boot.

However, this command doesn't exist in OpenSuse. The nearest OpenSuse equivalent is

grub2-mkconfig -o /boot/grub2/grub.cfg

and this has been shown to work on the OP's system.

Jos
  • 29,224