w5vyc wrote:I have now tried to install mint 12 from a live disk. I even tried using chmod 777 from ubuntu 12 free up security on the ubuntu 12 root drive. I got the same error. The mint installer reports that it needs to read sda6 (ubuntu root) and needs to have it unmounted. Since I am running from the live disk, there is nothing i can mount or unmount.
A strange problem.
1. Why Ubuntu 12 root drive is mounted during an installation?
2. Is Ubuntu partition encrypted?
If the installation goes well, but grub cannot be installed, you can boot Mint via Ubuntu´s grub running
sudo os-prober
sudo update-grubIf you want install or re-install grub for mint via terminal, it goes like this:
sudo mount /dev/sdxy /mnt # where x=HD and y=partition
sudo grub-install --boot-directory=/mnt/boot /dev/sdx # where x=HD
sudo umount /mntIf grub cannot be installed, you can try to use LILO or Lecacy grub.
An example about Lecay grub´s installation via chrooting:
sudo blkid # tells the media
sudo mount /dev/sdxy /mnt # where x=HD and y=partition
sudo mount --bind /dev /mnt/dev
sudo mount --bind /proc /mnt/proc
sudo mount --bind /sys /mnt/sys
sudo chroot /mnt
apt-get update
apt-get install grub
update-grub # remember answer Y when asking about menu.lst file
grub-install /dev/sdx # where x=HD
exit
sudo umount /mnt/sys
sudo umount /mnt/proc
sudo umount /mnt/dev
sudo umount /mnt