Difference between pages "Initramfs" and "Template:Arch"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
m (Duncan.britton moved page Initramfsmove to Initramfs over redirect)
 
 
Line 1: Line 1:
== What is initramfs? ==
<includeonly>
[http://en.wikipedia.org/wiki/Initramfs Wikipedia] defines initramfs as:
{{#set:arch={{{arch|}}}|arch_desc={{{arch_desc|}}}}}
<blockquote>
initramfs, abbreviated from "initial ram file system", is the successor of initrd. It is a cpio archive of the initial file system that gets loaded into memory during the Linux startup process. The Linux kernel mounts it as root file system and starts the init process from it. This will complete certain tasks before the real root file system is loaded; thus, initramfs needs to contain all of the device drivers and tools needed to mount the real root filesystem.
</blockquote>


== Do I need an initramfs? ==
{{#ask: [[CPU Family::{{PAGENAME}}]]
The reason to build a kernel with an initramfs is mostly for interoperability (e.g. live-cd's) and special features like an included busybox, ssh, etc. But mostly, and that's why we are doing this here now, to have a proper kernel up and running quick'n dirty in a reasonable time without fighting hours and days until a more or less exotic hardware is perfectly run by the kernel. After having a proper basic kernel running with the help of an initramfs, I really recommend you to go a step further and build a true kernel with all features includes without an initramfs. However, relying only on a kernel to boot a system can be quite time consuming, so we have provided several initramfs options for Funtoo. If you have decided to use an initramfs, not just a kernel, check out the options below and choose the one that you like the most.
| ?subarch
 
| mainlabel=-
== better-initramfs ==
| format=ul
Piotr's better-initramfs is a popular approach among Funtoo'ers to building an initramfs. It is quick, nice, and shiny. The biggest plus is that, once built, it is kernel version independent.
 
=== Installation ===
To install better-initramfs on your system, change to the <code>/opt</code> directory (or any other directory that you deem suitable) and clone the better-initramfs repository from bitbucket.
<console>
###i## cd /opt
###i## git clone https://bitbucket.org/piotrkarbowski/better-initramfs.git
</console>
 
=== Building <code>/initramfs.cpio.gz</code> ===
Now that you have better-initramfs on your system, we can make the <code>initramfs.cpio.gz</code> image and move it to <code>/boot</code>.
{{fancynote| do not run <code>make prepare</code> or <code>make image</code> until you have configured your kernel. If you have not installed / configured a kernel yet, check out: [[Building_a_Kernel_from_Source| Building a Kernel From Source]] and [[Funtoo_Linux_Kernels| Funtoo Linux Kernels]].}}
<console>
###i## cd better-initramfs
###i## bootstrap/bootstrap-all
###i## make prepare
###i## make image
###i## cp output/initramfs.cpio.gz /boot
</console>
 
=== Configuring <code>/etc/boot.conf</code> ===
Now that the <code>initramfs.cpio.gz</code> file is in <code>/boot</code>, we can configure what we want the initramfs to do for us when the system boots. Below is a table of options that better-initramfs supports (from [https://bitbucket.org/piotrkarbowski/better-initramfs better-initramfs Bitbucket page]):
==== Options ====
{| {{table}}
!Option
!Description
|-
|rescueshell
|Drop to the rescueshell before mounting rootfs to <code>/newroot</code>
|-
|sshd
|Run the sshd server when the initramfs loads. This allows you to ssh into your initramfs to fix any errors that may have occurred while booting.
|-
|sshd_wait=x
|Wait x number of seconds after starting sshd to continue booting the system.
|-
|sshd_port=x
|Change the port that sshd "listens" on. The default port for sshd is port 22.
|-
|binit_net_if=interface
|Choose which interface the network should be configured on. For example: wlan0, eth0, etc.
|-
|binit_net_addr=<ipaddr/cidr>
|Configure <code>ipaddr</code> with <code>cidr</code> netmask. For example: <code>11.11.11.2/24</code>. If you do not add a netmask, the netmask is assumed to be 32. Furthermore, you will have to configure <code>binit_net_gw</code>.
|-
|binit_net_gw=ipaddr
|The address of your gateway. Only needed if you want to connect to WAN.
|-
|rw
|Mount the rootfs as read-write. By default, the rootfs is mounted as read only.
|-
|mdev
|Use mdev instead of devtmpfs. This option can prove handy on older kernels.
|-
|softraid
|Detect and run RAID arrays.
|-
|init=
|Change the init system. For example, if you are using systemd, change this to <code>/usr/lib/systemd/systemd</code>. The default for this option (<code>/sbin/init</code>) will work fine with OpenRC.
|-
|tuxonice
|Try resuming with TuxOnIce.
|-
|uswsusp
|Try resuming the system with userspace software suspend. This depends on the <code>resume</code> option.
|-
|swsusp
|Try resuming the system with in-kernel suspend. This depends on the <code>resume</code> option.
|-
|resume=<device/path>
|Specify the device and path from which you want to resume.
|-
|lvm
|Scan for volume groups. If any are found, activate them.
|-
|luks
|Run <code>cryptsetup luksOpen</code> on the <code>enc_root</code> variable.
|-
|luks_trim
|Enable support for TRIM on your LUKS encrypted root device. This option is very helpful for those using SSDs.
|-
|enc_root=<device>
|The device that you wish to decrypt using <code>cryptsetup luksOpen</code>.
|-
|root=<device>
|The name of your root device.
|-
|rootfstype=<fstype>
|Specify the type of filesystem that your rootfs uses.
|-
|rootdelay=<time (as integer)>
|How long the initramfs should wait before attempting to mount devices.
|-
|rootflags=x
|Pass x flags to <code>mount</code> as it mounts your rootfs.
|}
 
==== Examples ====
Below are examples of different use cases for better-initramfs and how your <code>/etc/boot.conf</code> should be configured for them.
{{fancynote| Realize that your <code>enc_root</code>, <code>root</code>, and <code>rootfstype</code> variables may be different from the examples provided below.}}
 
==== Regular ext4 root ====
{{file|name=/etc/boot.conf|desc= |body=
"Funtoo Linux" {
kernel vmlinuz[-v]
initrd /initramfs.cpio.gz
params += root=/dev/sdaX rootfstype=ext4
}
}}
 
==== Encrypted root with lvm ====
{{file|name=/etc/boot.conf|desc= |body=
"Funtoo Linux" {
kernel vmlinuz[-v]
initrd /initramfs.cpio.gz
params += enc_root=/dev/sdaX lvm luks luks_trim root=/dev/mapper/funtoo--vg-root rootfstype=ext4
}
}}
 
==== Encrypted root with lvm and RAID ====
{{file|name=/etc/boot.conf|desc= |body=
"Funtoo Linux" {
kernel vmlinuz[-v]
initrd /initramfs.cpio.gz
params += enc_root=/dev/md0 lvm luks luks_trim softraid root=/dev/mapper/funtoo--vg-root rootfstype=ext4
}
}}
 
== Dracut ==
=== Installation ===
To install Dracut, simply emerge it:
<console>
###i## emerge dracut
</console>
 
=== Build the initramfs ===
To build the initrd with dracut, we just execute:
<console>
###i## dracut -f --fstab --xz /boot/initramfs-3.2.6-pf.img  3.2.6-pf
</console>
 
Generally, this should be enough!
If you experience booting problems like missing modules / drivers then just boot from your livecd and fix Dracut or consider changing to another initramfs. You can look into the man page to tweak the command a bit (e.g. --add-drivers "xz dm_crypt" etc...).
 
=== Configuring <code>/etc/boot.conf</code> ===
==== Examples ====
 
==== Encrypted root with lvm ====
{{file|name=/etc/boot.conf|desc= |body=
boot {
        generate grub
        default "Funtoo Linux dracut"
        timeout 3
}
 
"Funtoo Linux dracut" {
        kernel vmlinuz[-v]
        initrd initramfs[-v].img
        params  = quiet rootfstype=ext4
        params += luks enc_root=/dev/sda3
        params += lvm root=/dev/mapper/vg-root
}
}}
}}
[[Category:Kernel]]
[[Category:CPU Family]]
</includeonly>

Revision as of 07:11, December 20, 2014