The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Package:Lilo"
Threesixes (talk | contribs) m (clean up syntax) |
|||
Line 8: | Line 8: | ||
=Installation= | =Installation= | ||
==Emerge== | ==Emerge== | ||
<console>## | <console>##i### emerge lilo</console> | ||
=Configure= | =Configure= | ||
Lilo's default configuration example has hda references, lets change those to sda recursively using sed.<console>## | Lilo's default configuration example has hda references, lets change those to sda recursively using sed.<console>##i### sed -i -e 's/hda/sda/' /etc/lilo.conf.example</console>Now we copy the example configuration to the running configuration.<console>##i### cp /etc/lilo.conf.example /etc/lilo.conf</console> | ||
==Default OS== | ==Default OS== | ||
Line 66: | Line 66: | ||
Using symlinks is a good idea to be able to determine if the loader is loading the correct image, and enable tab auto completion to ensure we are loading what we intend to. symlinks remove an easy area to fumble when adjusting configurations. | Using symlinks is a good idea to be able to determine if the loader is loading the correct image, and enable tab auto completion to ensure we are loading what we intend to. symlinks remove an easy area to fumble when adjusting configurations. | ||
<console>## | <console>##i### ln -s /boot/vmlinuz-version /boot/bzImage</console> | ||
<console>## | <console>##i### ln -s /boot/vmlinuz-version.old /boot/bzImage.old</console> | ||
{{fancynote|if you do not use make install to copy your kernel to /boot, you must run lilo to load the new kernel images & install lilo to the hard drives mbr}} | {{fancynote|if you do not use make install to copy your kernel to /boot, you must run lilo to load the new kernel images & install lilo to the hard drives mbr}} | ||
==Install== | ==Install== | ||
Install lilo to the MBR.<console>## | Install lilo to the MBR.<console>##i### lilo</console>[[Category:Bootloaders]] | ||
{{EbuildFooter}} | {{EbuildFooter}} |
Revision as of 07:07, June 27, 2014
Lilo
We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.
Lilo linux loader is a boot loader to load linux, and other operating systems. Lilo is called by default when running make install in kernel source directories.
Installation
Emerge
root ##i### emerge lilo
Configure
Lilo's default configuration example has hda references, lets change those to sda recursively using sed.root ##i### sed -i -e 's/hda/sda/' /etc/lilo.conf.exampleNow we copy the example configuration to the running configuration.
root ##i### cp /etc/lilo.conf.example /etc/lilo.conf
Default OS
To change default booting os.
/etc/lilo.conf
# MBR to install LILO to:
boot = /dev/sda
map = /boot/.map
default = Funtoo
Timeout
To have lilo auto start after a set time.
/etc/lilo.conf
# If you always want to see the prompt with a 15 second timeout:
timeout=150
Silence
For silent kernel decompression at boot:
/etc/lilo.conf
label = Funtoo
read-only # read-only for checking
append = "quiet"
alternate init systems
to load an alternate init system, example systemd instead of openrc:
/etc/lilo.conf
label = Funtoo-systemd
read-only # read-only for checking
append = "quiet init=/usr/lib/systemd/systemd"
Old Configs
It is a good idea to keep an old image around in case problems crop up in new kernel builds.
/etc/lilo.conf
#image = /boot/bzImage.old
root = /dev/sda3
#root = /devices/discs/disc0/part3
label = funtoo.old
read-only # read-only for checking#
Kernel Linking
Using symlinks is a good idea to be able to determine if the loader is loading the correct image, and enable tab auto completion to ensure we are loading what we intend to. symlinks remove an easy area to fumble when adjusting configurations.
root ##i### ln -s /boot/vmlinuz-version /boot/bzImage
root ##i### ln -s /boot/vmlinuz-version.old /boot/bzImage.old
if you do not use make install to copy your kernel to /boot, you must run lilo to load the new kernel images & install lilo to the hard drives mbr
Install
Install lilo to the MBR.root ##i### lilo