OpenRC/Baselayout 1 to 2 migration

From Gentoo Wiki
< OpenRC
Jump to:navigation Jump to:search
This page contains changes which are not marked for translation.
The information in this article has been deprecated. It may or may not be relevant for contemporary usage. Handle with care!
Other languages:


This guide provides instructions on migrating from baselayout-1 to baselayout-2 using OpenRC.

Background

What is baselayout?

Baselayout provides a basic set of files that are necessary for all systems to function properly, such as /etc/hosts. It also provides the basic filesystem layout used by Gentoo (i.e. /etc, /var, /usr, /home directories).

What is OpenRC?

OpenRC is a dependency-based rc (run command) system that works with the init program that is provided by the system, normally /sbin/init. OpenRC is not a replacement for /sbin/init. The default init system used by Gentoo Linux is sys-apps/sysvinit, while Gentoo/FreeBSD uses the FreeBSD init provided by sys-freebsd/freebsd-sbin.

Why migrate?

Originally Gentoo's rc system was built into baselayout 1 and written entirely in bash. This led to several limitations. For example, certain system calls need to be accessed during boot and this required C-based callouts to be added. These callouts were each statically linked, causing the rc system to bloat over time.

Additionally, as Gentoo expanded to other platforms like Gentoo/FreeBSD and Gentoo Embedded, it became impossible to require a bash-based rc system. This led to a development of baselayout 2, which is written in C and only requires a POSIX-compliant shell. During the development of baselayout 2, it was determined that it was a better fit if baselayout merely provided the base files and filesystem layout for Gentoo and the rc system was broken off into its own package. Thus OpenRC was born.

OpenRC was initially developed by Roy Marples until 2010, and is now maintained by the Gentoo OpenRC Project. OpenRC supports all current Gentoo variations (i.e. Gentoo Linux, Gentoo/FreeBSD, Gentoo Embedded, and Gentoo Vserver) and other platforms such as FreeBSD and NetBSD.

Migration to OpenRC

Migration to OpenRC is fairly straightforward; it will be pulled in as part of the regular upgrade process by the package manager. The most important step comes after >=sys-apps/baselayout-2 and sys-apps/openrc packages have been installed. It is critical to ensure the files in /etc are up to date by running dispatch-conf or a similar tool before rebooting the system. Failure to do so will result in an unbootable system and will require the use of a LiveCD to perform the steps below to repair the system.

Once the configuration files have been updated there are a few things to verify prior to rebooting.

/etc/conf.d/rc

/etc/conf.d/rc has been deprecated. Any settings contained therein will need to be migrated to the appropriate settings in /etc/rc.conf. Please read through /etc/rc.conf and /etc/conf.d/rc and migrate the settings. Once complete, manually remove the /etc/conf.d/rc file.

Kernel modules

Normally, when certain kernel modules are automatically loaded at boot they are placed into /etc/modules.autoload.d/kernel-2.6 along with any parameters to be passed. In baselayout-2, this file is not used anymore. Instead, autoloaded modules and module parameters are placed in the /etc/conf.d/modules file, no matter what the kernel version.

An example old style configuration would be:

FILE /etc/modules.autoload.d/kernel-2.6
ivtv
cx88_dvb video_br=2

Converting the above example would result in the following:

FILE /etc/conf.d/modules
# Modules autoloaded at boot
modules_2_6="ivtv cx88_dvb"
# Module parameters
module_cx88_dvb_args_2_6="video_br=2"

In the above examples, the modules and their parameters would only be passed to 2.6.x series kernels. The new configuration allows for fine grained control over the modules and parameters based on kernel version.

Important
The module* variables are not cumulative. The more version-specific variables will override the more general variables.
Note
Please note the difference between module_ and modules_.

An in-depth example would be:

FILE /etc/conf.d/modules
# Only load ivtv for 2.6.23-gentoo-r5
modules_2_6_23_gentoo_r5="ivtv"
# Only load cx88_dvb for 2.6.23 kernels (other than -gentoo-r5)
modules_2_6_23="cx88_dvb"
# Only load tun and usbserial for 2.6.x series kernels where x != 23
modules_2_6="tun usbserial"
# Otherwise load ochi1394 and ieee1394
modules="ohci1394 ieee1394"
  
# For 2.6.23-gentoo-r5, pass video_br=2 to cx88_dvb
module_cx88_dvb_args_2_6_23_gentoo_r5="video_br=2"
# For 2.6.x series kernels, always pass vendor and product
module_usbserial_args_2_6="vendor=0x1410 product=0x2110"
# Always pass debug to ieee1394
module_ieee1394_args="debug"

Boot runlevel

The boot runlevel performs several important steps for every machine. For example, making sure the root filesystem is mounted read/write, the filesystems are checked for errors, the mountpoints are available, and the /proc pseudo-filesystem is started at boot.

With OpenRC, volume management services for block storage devices are no longer run automatically at boot. This includes LVM, RAID, swap, device-mapper (dm), dm-crypt, and the like. System administrators must ensure the appropriate initscript for these services has been added to the boot runlevel, otherwise it is possible the system will not be able to boot.

While the OpenRC ebuild will attempt to do this migration, administrators should verify the volume management services have been migrated properly:

root #ls -l /etc/runlevels/boot/

If root, procfs, mtab, swap, and fsck are missing in the above listing, perform the following commands to add them to the boot runlevel:

root #rc-update add root boot
root #rc-update add procfs boot
root #rc-update add mtab boot
root #rc-update add fsck boot
root #rc-update add swap boot

If the system uses mdraid and LVM and they are not mentioned in the list above, then the following initscripts should be added to the boot runlevel:

root #rc-update add mdraid boot
root #rc-update add lvm boot

Udev

OpenRC no longer starts udev by default; it does need to be present in the sysinit runlevel to be started. The OpenRC ebuild should detect if udev was previously enabled and add it to the sysinit runlevel. However, to be safe, check if udev is present:

root #ls -l /etc/runlevels/sysinit
lrwxrwxrwx 1 root root 14 2009-01-29 08:00 /etc/runlevels/sysinit/udev -> \
/etc/init.d/udev

If udev is not listed, add it to the correct runlevel:

root #rc-update add udev sysinit

Network

Due to baselayout and OpenRC being broken into two different packages, the net.eth0 initscript may disappear during the upgrade process. To replace this initscript and re-add it to the default runlevel, please perform the following:

root #cd /etc/init.d
root #ln -s net.lo net.eth0
root #rc-update add net.eth0 default

When missing any other network initscripts, follow the instructions above to re-add them. Simply replace eth0 with the name of the missing network device.

Also, /etc/conf.d/net (oldnet) no longer uses bash-style arrays for configuration. Please review /usr/share/doc/openrc-<version>/net.example for configuration instructions. Conversion should be relatively straight-forward, converting to newlines for separate entries, for example a static IP assignment would change as follows:

FILE /etc/conf.d/netOld style
config_eth0=( "192.168.1.37 netmask 255.255.255.0 brd 192.168.1.255" )
routes_eth0=( "default via 192.168.1.100" "10.0.0.0/8 via 192.168.1.2" )
FILE /etc/conf.d/netNew style
config_eth0="192.168.1.37 netmask 255.255.255.0 brd 192.168.1.255"
routes_eth0="default via 192.168.1.100
10.0.0.0/8 via 192.168.1.2"

Clock

Clock settings have been renamed from /etc/conf.d/clock to the system's native tool for adjusting the clock. On Linux it will be /etc/conf.d/hwclock and on FreeBSD it will be /etc/conf.d/adjkerntz. Systems without a working real time clock (RTC) chip should use /etc/init.d/swclock, which sets the system time based on the mtime of a file which is created at system shutdown. The initscripts in /etc/init.d/ have also been renamed accordingly, so make sure the appropriate script for the system has been added to the boot runlevel.

Additionally, the TIMEZONE variable is no longer in this file. Its contents are instead found in the /etc/timezone file. If it does not exist, it will need to be created with the appropriate timezone. Please review both of these files to ensure their contents.

The proper value for this file is the path relative to the timezone from the /usr/share/zoneinfo directory. For example, for users living on the east coast of the United States, the following would be a correct setting:

FILE /etc/timezone
America/New_York

XSESSION

The XSESSION variable is no longer found in /etc/rc.conf. Instead, the XSESSION variable can be set on a per-user basis in the ~/.bashrc file (or equivalent), or system-wide in /etc/env.d/.

Here is an example of setting the default XSESSION for the whole system:

root #echo 'XSESSION="Xfce4"' > /etc/env.d/90xsession
Important
env-update must be ran after creating a file in /etc/env.d. The user must logout and login for the changes to take effect. If the variable has been set in ~/.bashrc, re-source the file by running source ~/.bashrc.

EDITOR and PAGER

The EDITOR variable is no longer found in /etc/rc.conf. Both EDITOR and PAGER are set by default in /etc/profile. Adjust as needed in the ~/.bashrc file (or equivalent) or create /etc/env.d/99editor and set the system default there.

Important
env-update must be ran after creating a file in /etc/env.d. The user must logout and login for the changes to take effect. If the variable has been set in ~/.bashrc, re-source the file by running source ~/.bashrc.

Boot log

Previously, the boot process could be logged using the app-admin/showconsole package. However, OpenRC now handles all logging internally, so there is no need for the hacks that showconsole employed. showconsole can now be safely unmerged. To continue logging boot messages, set the appropriate variable (rc_logger) in the /etc/rc.conf file. Logs will appear in /var/log/rc.log.

FILE /etc/rc.confEnable logging
rc_logger="YES"

local.start and local.stop

With OpenRC, /etc/conf.d/local.start and local.stop have been deprecated. During the migration to OpenRC, the files are moved to /etc/local.d and gain the suffix .start or .stop. OpenRC then executes those in alpha-numeric order.

System sub-types: Virtualization special cases

Earlier versions of OpenRC detected multiple types of virtualization, which was used to note when certain init scripts should be skipped, using the keyword call in the depend functions.

However, as of the 0.7.0 release, administers are required to explicitly configure the sub-type using the rc_sys variable in /etc/rc.conf. The sub-type should be set to match the virtualization environment that the given root is in. In general, the non-empty rc_sys value should be within the virtual containers; The host node will have rc_sys="".

Important
If a specific sub-type does not exist, use the default of an empty string "". If the variable is unset, a warning will be printed and there will be an attempt to use the old detection algorithm.
Note
When the default value for automatic detection is unknown temporarily comment out the rc_sys variable and run the detection command: rc -S.
FILE /etc/rc.confSetting system sub-type to none
rc_sys=""

The detection algorithm had to be replaced with manual configuration due to the introduction of new sub-types and changes to the kernel that made prior detection unreliable.

Subtype Description Notes
Default, no sub-type Not the same as unset; FreeBSD, Linux and NetBSD
jail FreeBSD jails
lxc Linux Containers Not auto-detected
openvz Linux OpenVZ
prefix Prefix Not auto-detected; FreeBSD, Linux & NetBSD
vserver Linux vserver
xen0 Xen0 Domain Linux & NetBSD
xenU XenU Domain Linux & NetBSD

Cleaning up stale configuration files

After migration, there will be files left on the file system that are not cleaned up by Portage. Those are configuration files which are protected by Portage' configuration file protection feature.

The most notable example would be /etc/conf.d/net.example which is superseded by /usr/share/doc/openrc-*/net.example.bz2.

Finishing up

Once finished updating the config files and initscripts, the last thing to do is to type reboot with root privileges at a terminal. This is necessary because system state information is not preserved during the upgrade, so a fresh boot is needed.

Changed functionality

The pause action

Previously it was possible to temporarily stop a service without taking down all the depending services by using /etc/init.d/service pause. In OpenRC, the pause action was removed; this functionality is supported by the /etc/init.d/service --nodeps stop, which also works in the old baselayout.

rootfs entry in /etc/mtab

Previously, the initial rootfs entry was removed from /etc/mtab, and only the real root / entry was present. The duplicate rootfs item was actually added back during shutdown. In OpenRC, both entries must be present for full support of initramfs and tmpfs-on-root. This also means that less writing is required during shutdown.



This page is based on a document formerly found on our main website gentoo.org.
The following people contributed to the original document: cardoe, nightmorph, robbat2, uberlord
They are listed here because wiki history does not allow for any external attribution. If you edit the wiki article, please do not add yourself here; your contributions are recorded on each article's associated history page.