Page 1 of 1

Re: dual boot Mint and Ubuntu 8.04

Posted: Sat Apr 26, 2008 10:49 am
by 67GTA
They will share your existing swap partition. After installing Ubuntu, we can fix it so that Mint grub will be used, but it can be intimidating for new users because you will have to manually add the Ubuntu 8.04 grub entry manually to Mint's grub menu. Post the output of these two commands, and I will help get you started. Just run each command one at a time from a terminal.

Code: Select all

sudo grub

Code: Select all

find /boot/grub/stage1
This will give you a value such as (hd0,1), or (hd0,2). This is where grub is installed now(Mint). After you install Ubuntu, you will have to change it back. Now post the output of

Code: Select all

sudo fdisk -l
After you post what these commands tell you, I will finish telling you how to make this work.

Re: dual boot Mint and Ubuntu 8.04

Posted: Sat Apr 26, 2008 1:17 pm
by 67GTA
That muddies the water a little :D If it were me, I would install 8.04, but before you start the final steps there should be an advanced tab where you can tell Ubuntu not to install it's version of grub. That way Mint's grub will stay intact, and you can just manually edit Mint's grub menu

Code: Select all

sudo gedit /boot/grub/menu.lst
, and add the grub menu entry for 8.04. The easiest way would be to boot back into Mint after installing 8.04, mount 8.04

Code: Select all

sudo mount /dev/hdb4
, and then copy and paste the 8.04 grub menu entries into Mint's. You will want the top two lines like this:

Code: Select all

title		Ubuntu 8.04, kernel 2.6.24-16-generic
root		(hd0,1)
kernel		/boot/vmlinuz-2.6.24-16-generic root=UUID=0e5a6655-5b81-4862-a86a-44f7b67e74cc ro quiet splash rootflags=data=writeback

initrd		/boot/initrd.img-2.6.24-16-generic
quiet

title		Ubuntu 8.04, kernel 2.6.24-16-generic (recovery mode)
root		(hd0,1)
kernel		/boot/vmlinuz-2.6.24-16-generic root=UUID=0e5a6655-5b81-4862-a86a-44f7b67e74cc ro single rootflags=data=writeback
initrd		/boot/initrd.img-2.6.24-16-generic
Don't use mine :D Your root and UUID will be different.