Difference between pages "Package:Lilo" and "Package:Luasec"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
m
 
 
Line 1: Line 1:
{{Ebuild
{{Ebuild
|Summary=Standard Linux boot loader
|Summary=Lua binding for OpenSSL library to provide TLS/SSL communication.
|CatPkg=sys-boot/lilo
|CatPkg=dev-lua/luasec
|Maintainer=
|Maintainer=
|Homepage=https://github.com/brunoos/luasec
}}
}}
__TOC__
'''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==
<console>###i## emerge lilo</console>


=Configure=
{{PageNeedsUpdates}}


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==
To change default booting os.
{{file|name=/etc/lilo.conf|desc=|body=
# MBR to install LILO to:
boot = /dev/sda
map = /boot/.map
default = Funtoo
}}
==Timeout==
To have lilo auto start after a set time.
{{file|name=/etc/lilo.conf|desc=|body=
# If you always want to see the prompt with a 15 second timeout:
timeout=150}}
==Silence==
For silent kernel decompression at boot:
{{file|name=/etc/lilo.conf|desc=|body=
label = Funtoo
read-only # read-only for checking
append = "quiet"}}
==alternate init systems==
to load an alternate init system, example systemd instead of openrc:
{{file|name=/etc/lilo.conf|desc=|body=
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.
{{file|name=/etc/lilo.conf|desc=|body=
#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.
<console>###i## ln -s /boot/vmlinuz-version /boot/bzImage</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}}
==Install==
Install lilo to the MBR.
<console>###i## lilo</console>
[[Category:Bootloaders]]
{{EbuildFooter}}
{{EbuildFooter}}

Latest revision as of 20:12, September 12, 2014

Luasec

   Tip

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.