How to install Salix with Grub2 instead of LILO.
Posted: 3. Aug 2011, 09:38
I have noticed that there are some people coming from other distros, interested in trying out Salix, that find it difficult to get Grub2 installed on their system. Here is a little HowTo.
1) Boot from the install CD
2) Install system step by step rather than automatic, to avoid installing LILO.
3) Make a note of your root partition.
4) Reboot leaving the install CD in the drive.
5) At boot add the following (remember the space before "ro"):
6) When logged into your new system, run the following as root in a terminal:
7) Run the following as root in a terminal to install Grub to your MBR:(<yourdev> = e.g. usually /dev/sda)
8) Run the following as root in a terminal to update Grub:
9) You should be able to boot into your new system with Grub at restart. Remember to take the install CD out of your drive.
10) Enjoy Salix
EDIT (26/5-2013)
Please notice that the name of the kernel in Salix 14.0 has cchanged to "huge.s", so you should add the following at the boot prompt::I am not sure if the name will change in the future, but the helpfull message before the boot prompt on the install CD, will reflect kernel name changes.
I also added Shador's corrected syntax.
1) Boot from the install CD
2) Install system step by step rather than automatic, to avoid installing LILO.
3) Make a note of your root partition.
4) Reboot leaving the install CD in the drive.
5) At boot add the following (remember the space before "ro"):
Code: Select all
hugesmp.s root=/dev/partition rdinit= ro
Code: Select all
slapt-get --update && slapt-get --install grub2
Code: Select all
grub-install /dev/<yourdev>
8) Run the following as root in a terminal to update Grub:
Code: Select all
update-grub
10) Enjoy Salix

EDIT (26/5-2013)
Please notice that the name of the kernel in Salix 14.0 has cchanged to "huge.s", so you should add the following at the boot prompt::
Code: Select all
huge.s root=/dev/partition rdinit= ro
I also added Shador's corrected syntax.