Linux起動画面にCLI起動メニューを追加する話
こんにちは、かろっくです。
最近ジャンクのサーバを購入し、Manjaro を導入しました。
しかし、よく考えるとサーバとして稼働させるためにはデスクトップ環境は不要です。
そのため、普段は CLI として稼働し、必要に応じてブート画面からデスクトップ環境を起動するようにできると好都合です。
実際にそれをやってみたため、その手順をメモとして残しておきます。
導入した環境
導入した Manjaro は、Manjaro Sway Edition というもので、Sway というタイル型ウィンドウマネージャがデスクトップ環境としてインストールされています。
Linux のブートローダの概要
Manjaro Sway Edition では、GRUB というブートローダが使用されています。
ブートローダとは、コンピュータの電源を入れたときに、OS を起動するためのプログラムです。
(画像引用: https://ja.wikipedia.org/wiki/GNU_GRUB)
見通し
Manjaro Sway Edition では、初期状態ではブート画面も表示されないようになっています。
そのため、ブートローダの設定を変更する必要があります。
- ブートローダの設定ファイルを編集し、ブート画面が表示されるようにする
- CLI 起動エントリを追加する
1. ブートローダの設定ファイルを編集し、ブート画面が表示されるようにする
ブートローダの設定ファイルは、/etc/default/grub
にあります。
デフォルトの GRUB 設定ファイルは、おそらく Manjaro のリポジトリから設定されるものと思われます。これをベースに設定を変更していきます。
/etc/default/grub
# GRUB boot loader configuration
GRUB_DEFAULT=saved
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="Manjaro"
GRUB_CMDLINE_LINUX_DEFAULT="quiet udev.log_priority=3"
GRUB_CMDLINE_LINUX=""
# Preload both GPT and MBR modules so that they are not missed
GRUB_PRELOAD_MODULES="part_gpt part_msdos"
# Uncomment to enable booting from LUKS encrypted devices
#GRUB_ENABLE_CRYPTODISK=y
# Set to 'countdown' or 'menu' to change timeout behavior,
# press ESC key to display menu.
GRUB_TIMEOUT_STYLE=hidden
# Uncomment to use basic console
GRUB_TERMINAL_INPUT=console
# Uncomment to disable graphical terminal
#GRUB_TERMINAL_OUTPUT=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command 'videoinfo'
GRUB_GFXMODE=auto
# Uncomment to allow the kernel use the same resolution used by grub
GRUB_GFXPAYLOAD_LINUX=keep
# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
GRUB_DISABLE_RECOVERY=true
# Uncomment and set to the desired menu colors. Used by normal and wallpaper
# modes only. Entries specified as foreground/background.
GRUB_COLOR_NORMAL="light-gray/black"
GRUB_COLOR_HIGHLIGHT="green/black"
# Uncomment one of them for the gfx desired, a image background or a gfxtheme
#GRUB_BACKGROUND="/usr/share/grub/background.png"
#GRUB_THEME="/path/to/gfxtheme"
# Uncomment to get a beep at GRUB start
#GRUB_INIT_TUNE="480 440 1"
# Uncomment to make GRUB remember the last selection. This requires
# setting 'GRUB_DEFAULT=saved' above.
GRUB_SAVEDEFAULT=true
# Uncomment to disable submenus in boot menu
#GRUB_DISABLE_SUBMENU=y
# Uncomment this option to enable os-prober execution in the grub-mkconfig command
#GRUB_DISABLE_OS_PROBER=false
# Uncomment to ensure that the root filesystem is mounted read-only so that
# systemd-fsck can run the check automatically. We use 'fsck' by default, which
# needs 'rw' as boot parameter, to avoid delay in boot-time. 'fsck' needs to be
# removed from 'mkinitcpio.conf' to make 'systemd-fsck' work.
# See also Arch-Wiki: https://wiki.archlinux.org/index.php/Fsck#Boot_time_checking
#GRUB_ROOT_FS_RO=true
では、まずはブート画面を表示するように設定を変更します。ここでは、GRUB_TIMEOUT_STYLE
を変更します。
# Set to 'countdown' or 'menu' to change timeout behavior,
# press ESC key to display menu.
- GRUB_TIMEOUT_STYLE=hidden
+ GRUB_TIMEOUT_STYLE=menu
このオプションは、ブート画面の表示方法を指定します。hidden
にするとブート画面が表示されず、menu
にするとブート画面が表示されます。
また、この例では変更の必要はありませんが、GRUB_TIMEOUT
はブート画面が表示されるまでの時間を指定します。
もしこの値が 0
になっている場合、ブート画面が表示されず、直ちにデフォルトのエントリが起動されます。したがって、0
になっている場合は、GRUB_TIMEOUT
を 5
などに変更することで、ブート画面が表示されるようになります。
GRUB_DEFAULT=saved
- GRUB_TIMEOUT=0
+ GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="Manjaro"
また、これは好みの問題ですが、quiet オプションを削除することで、起動時のログを表示することができます。
- GRUB_CMDLINE_LINUX_DEFAULT="quiet udev.log_priority=3"
+ GRUB_CMDLINE_LINUX_DEFAULT="udev.log_priority=3"
こういうのです。
カッコいいし、エラーが発生したときにログを見ることができるので、是非表示させておきたいですね。
設定を変更したら、update-grub
コマンドを実行して、設定を反映させます。
sudo update-grub
2. CLI 起動エントリを追加する
続いて、CLI 起動エントリを追加します。
GRUB は、/boot/grub/grub.cfg
というファイルを読み込んで、ブート画面を表示します。
しかし、このファイルは自動生成されるため、直接編集することは非推奨とされています。
代わりに、/etc/grub.d/
というディレクトリにスクリプトを追加することで、自動生成されるファイルにエントリを追加することができます。
Manjaro では、あらかじめ用意されたスクリプトがいくつか用意されており、それらを少し改造してスクリプトを配置することで、CLI 起動エントリを追加することができます。
デフォルトのスクリプトは、おそらく GRUB のソースコード内に含まれているものと思われます。
GRUB のリポジトリのミラーが Github にあったため、引用します。
今回関連するのは、10_linux
というスクリプトです。
10_linux
を生成するテンプレートは、10_linux.in
というファイルになっています。
このテンプレートに実際の値がバインドされて、10_linux
が生成されます。
では、Manjaro の 10_linux
を見てみましょう。
/etc/grub.d/10_linux
#! /bin/sh
set -e
# grub-mkconfig helper script.
# Copyright (C) 2006,2007,2008,2009,2010 Free Software Foundation, Inc.
#
# GRUB is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# GRUB is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GRUB. If not, see <http://www.gnu.org/licenses/>.
prefix="/usr"
exec_prefix="/usr"
datarootdir="/usr/share"
quiet_boot="1"
. "$pkgdatadir/grub-mkconfig_lib"
export TEXTDOMAIN=grub
export TEXTDOMAINDIR="${datarootdir}/locale"
CLASS="--class gnu-linux --class gnu --class os"
if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then
OS=Linux
else
OS="${GRUB_DISTRIBUTOR} Linux"
CLASS="--class $(echo ${GRUB_DISTRIBUTOR} | tr 'A-Z' 'a-z' | cut -d' ' -f1|LC_ALL=C sed 's,[^[:alnum:]_],_,g') ${CLASS}"
fi
# loop-AES arranges things so that /dev/loop/X can be our root device, but
# the initrds that Linux uses don't like that.
case ${GRUB_DEVICE} in
/dev/loop/*|/dev/loop[0-9])
GRUB_DEVICE=`losetup ${GRUB_DEVICE} | sed -e "s/^[^(]*(\([^)]\+\)).*/\1/"`
;;
esac
: ${GRUB_CMDLINE_LINUX_RECOVERY:=single}
# Default to disabling partition uuid support to maintian compatibility with
# older kernels.
: ${GRUB_DISABLE_LINUX_PARTUUID=true}
# btrfs may reside on multiple devices. We cannot pass them as value of root= parameter
# and mounting btrfs requires user space scanning, so force UUID in this case.
if ( [ "x${GRUB_DEVICE_UUID}" = "x" ] && [ "x${GRUB_DEVICE_PARTUUID}" = "x" ] ) \
|| ( [ "x${GRUB_DISABLE_LINUX_UUID}" = "xtrue" ] \
&& [ "x${GRUB_DISABLE_LINUX_PARTUUID}" = "xtrue" ] ) \
|| ( ! test -e "/dev/disk/by-uuid/${GRUB_DEVICE_UUID}" \
&& ! test -e "/dev/disk/by-partuuid/${GRUB_DEVICE_PARTUUID}" ) \
|| ( test -e "${GRUB_DEVICE}" && uses_abstraction "${GRUB_DEVICE}" lvm ); then
LINUX_ROOT_DEVICE=${GRUB_DEVICE}
elif [ "x${GRUB_DEVICE_UUID}" = "x" ] \
|| [ "x${GRUB_DISABLE_LINUX_UUID}" = "xtrue" ]; then
LINUX_ROOT_DEVICE=PARTUUID=${GRUB_DEVICE_PARTUUID}
else
LINUX_ROOT_DEVICE=UUID=${GRUB_DEVICE_UUID}
fi
case x"$GRUB_FS" in
xbtrfs)
rootsubvol="`make_system_path_relative_to_its_root /`"
rootsubvol="${rootsubvol#/}"
if [ "x${rootsubvol}" != x ]; then
GRUB_CMDLINE_LINUX="rootflags=subvol=${rootsubvol} ${GRUB_CMDLINE_LINUX}"
fi;;
xzfs)
rpool=`${grub_probe} --device ${GRUB_DEVICE} --target=fs_label 2>/dev/null || true`
bootfs="`make_system_path_relative_to_its_root / | sed -e "s,@$,,"`"
LINUX_ROOT_DEVICE="ZFS=${rpool}${bootfs%/}"
;;
esac
title_correction_code=
linux_entry ()
{
os="$1"
version="$2"
type="$3"
args="$4"
if [ -z "$boot_device_id" ]; then
boot_device_id="$(grub_get_device_id "${GRUB_DEVICE}")"
fi
if [ x$type != xsimple ] ; then
case $type in
recovery)
title="$(gettext_printf "%s (Kernel: %s - recovery mode)" "${os}" "${version}")" ;;
fallback)
title="$(gettext_printf "%s (Kernel: %s - fallback initramfs)" "${os}" "${version}")" ;;
*)
title="$(gettext_printf "%s (Kernel: %s)" "${os}" "${version}")" ;;
esac
if [ x"$title" = x"$GRUB_ACTUAL_DEFAULT" ] || [ x"Previous Linux versions>$title" = x"$GRUB_ACTUAL_DEFAULT" ]; then
replacement_title="$(echo "Advanced options for ${OS}" | sed 's,>,>>,g')>$(echo "$title" | sed 's,>,>>,g')"
quoted="$(echo "$GRUB_ACTUAL_DEFAULT" | grub_quote)"
title_correction_code="${title_correction_code}if [ \"x\$default\" = '$quoted' ]; then default='$(echo "$replacement_title" | grub_quote)'; fi;"
grub_warn "$(gettext_printf "Please don't use old title \`%s' for GRUB_DEFAULT, use \`%s' (for versions before 2.00) or \`%s' (for 2.00 or later)" "$GRUB_ACTUAL_DEFAULT" "$replacement_title" "gnulinux-advanced-$boot_device_id>gnulinux-$version-$type-$boot_device_id")"
fi
echo "menuentry '$(echo "$title" | grub_quote)' ${CLASS} \$menuentry_id_option 'gnulinux-$version-$type-$boot_device_id' {" | sed "s/^/$submenu_indentation/"
else
echo "menuentry '$(echo "$os" | grub_quote)' ${CLASS} \$menuentry_id_option 'gnulinux-simple-$boot_device_id' {" | sed "s/^/$submenu_indentation/"
fi
if [ x$type != xrecovery ] && [ x$type != xfallback ] ; then
save_default_entry | grub_add_tab
fi
# Use ELILO's generic "efifb" when it's known to be available.
# FIXME: We need an interface to select vesafb in case efifb can't be used.
if [ "x$GRUB_GFXPAYLOAD_LINUX" = x ]; then
echo " load_video" | sed "s/^/$submenu_indentation/"
if grep -qx "CONFIG_FB_EFI=y" "${config}" 2> /dev/null \
&& grep -qx "CONFIG_VT_HW_CONSOLE_BINDING=y" "${config}" 2> /dev/null; then
echo " set gfxpayload=keep" | sed "s/^/$submenu_indentation/"
fi
else
if [ "x$GRUB_GFXPAYLOAD_LINUX" != xtext ]; then
echo " load_video" | sed "s/^/$submenu_indentation/"
fi
echo " set gfxpayload=$GRUB_GFXPAYLOAD_LINUX" | sed "s/^/$submenu_indentation/"
fi
echo " insmod gzio" | sed "s/^/$submenu_indentation/"
if [ x$dirname = x/ ]; then
if [ -z "${prepare_root_cache}" ]; then
prepare_root_cache="$(prepare_grub_to_access_device ${GRUB_DEVICE} | grub_add_tab)"
fi
printf '%s\n' "${prepare_root_cache}" | sed "s/^/$submenu_indentation/"
else
if [ -z "${prepare_boot_cache}" ]; then
prepare_boot_cache="$(prepare_grub_to_access_device ${GRUB_DEVICE_BOOT} | grub_add_tab)"
fi
printf '%s\n' "${prepare_boot_cache}" | sed "s/^/$submenu_indentation/"
fi
if [ "x${GRUB_ROOT_FS_RO}" = "xtrue" ]; then
grub_root_fs_mode=ro
else
grub_root_fs_mode=rw
fi
if [ x"$quiet_boot" = x0 ]; then
message="$(gettext_printf "Loading Linux %s ..." "${version}")"
sed "s/^/$submenu_indentation/" << EOF
echo '$(echo "$message" | grub_quote)'
EOF
fi
sed "s/^/$submenu_indentation/" << EOF
linux ${rel_dirname}/${basename} root=${linux_root_device_thisversion} ${grub_root_fs_mode} ${args}
EOF
if test -n "${initrd}" ; then
# TRANSLATORS: ramdisk isn't identifier. Should be translated.
message="$(gettext_printf "Loading initial ramdisk ...")"
initrd_path=
for i in ${initrd}; do
initrd_path="${initrd_path} ${rel_dirname}/${i}"
done
if [ x"$quiet_boot" = x0 ]; then
sed "s/^/$submenu_indentation/" << EOF
echo '$(echo "$message" | grub_quote)'
EOF
fi
sed "s/^/$submenu_indentation/" << EOF
initrd $(echo $initrd_path)
EOF
fi
sed "s/^/$submenu_indentation/" << EOF
}
EOF
}
machine=`uname -m`
case "x$machine" in
xi?86 | xx86_64)
list=
for i in /boot/vmlinuz-* /vmlinuz-* /boot/kernel-* ; do
if grub_file_is_not_garbage "$i" ; then list="$list $i" ; fi
done ;;
*)
list=
for i in /boot/vmlinuz-* /boot/vmlinux-* /vmlinuz-* /vmlinux-* /boot/kernel-* ; do
if grub_file_is_not_garbage "$i" ; then list="$list $i" ; fi
done ;;
esac
case "x$machine" in
aarch64)
list=
for i in /boot/vmlinuz-* /vmlinuz-* /boot/kernel-* /boot/Image ; do
if grub_file_is_not_garbage "$i" ; then list="$list $i" ; fi
done ;;
*)
list=
for i in /boot/vmlinuz-* /boot/vmlinux-* /vmlinuz-* /vmlinux-* /boot/kernel-* /boot/Image ; do
if grub_file_is_not_garbage "$i" ; then list="$list $i" ; fi
done ;;
esac
case "$machine" in
i?86) GENKERNEL_ARCH="x86" ;;
mips|mips64) GENKERNEL_ARCH="mips" ;;
mipsel|mips64el) GENKERNEL_ARCH="mipsel" ;;
arm*) GENKERNEL_ARCH="arm" ;;
*) GENKERNEL_ARCH="$machine" ;;
esac
prepare_boot_cache=
prepare_root_cache=
boot_device_id=
title_correction_code=
# Extra indentation to add to menu entries in a submenu. We're not in a submenu
# yet, so it's empty. In a submenu it will be equal to '\t' (one tab).
submenu_indentation=""
# Perform a reverse version sort on the entire list.
# Temporarily replace the '.old' suffix by ' 1' and append ' 2' for all
# other files to order the '.old' files after their non-old counterpart
# in reverse-sorted order.
reverse_sorted_list=$(echo $list | tr ' ' '\n' | sed -e 's/\.old$/ 1/; / 1$/! s/$/ 2/' | version_sort -r | sed -e 's/ 1$/.old/; s/ 2$//')
if [ "x$GRUB_TOP_LEVEL" != x ]; then
reverse_sorted_list=$(grub_move_to_front "$GRUB_TOP_LEVEL" ${reverse_sorted_list})
fi
is_top_level=true
for linux in ${reverse_sorted_list}; do
gettext_printf "Found linux image: %s\n" "$linux" >&2
basename=`basename $linux`
dirname=`dirname $linux`
rel_dirname=`make_system_path_relative_to_its_root $dirname`
version=`echo $basename | sed -e "s,^[^0-9]*-,,g"`
alt_version=`echo $version | sed -e "s,\.old$,,g"`
linux_root_device_thisversion="${LINUX_ROOT_DEVICE}"
if test -e "/etc/manjaro-release" ; then
kbasename="`echo "${basename}" | sed -e 's,vmlinuz-,linux,g'`"
if test -e "${dirname}/${kbasename}.kver" ; then
version="$(cat ${dirname}/${kbasename}.kver)"
fi
kbasename2="`echo "${basename}" | sed -e 's,vmlinuz-,linux-,g'`"
if test -e "${dirname}/${kbasename2}.kver" ; then
version="$(cat ${dirname}/${kbasename2}.kver)"
fi
kbasename3="`echo "${basename}" | sed -e 's,vmlinuz-,linux,g' | sed -e 's,\.,,g'`"
if test -e "${dirname}/${kbasename3}.kver" ; then
version="$(cat ${dirname}/${kbasename3}.kver)"
fi
kbasename4="`echo "${basename}" | sed -e 's,vmlinuz-,linux-,g' | sed -e 's,\.,,g'`"
if test -e "${dirname}/${kbasename4}.kver" ; then
version="$(cat ${dirname}/${kbasename4}.kver)"
fi
kbasename5="`echo "${basename}" | sed -e 's,vmlinuz-,,g'`"
if test -e "${dirname}/${kbasename5}.kver" ; then
version="$(cat ${dirname}/${kbasename5}.kver)"
fi
fi
initrd_early=
for i in ${GRUB_EARLY_INITRD_LINUX_STOCK} \
${GRUB_EARLY_INITRD_LINUX_CUSTOM}; do
if test -e "${dirname}/${i}" ; then
initrd_early="${initrd_early} ${i}"
fi
done
initrd_real=
initramfs_manjaro="`echo "${basename}" | sed -e 's,vmlinuz,initramfs,g'`"
for i in "initrd.img-${version}" "initrd-${version}.img" \
"initrd-${alt_version}.img.old" "initrd-${version}.gz" \
"initrd-${alt_version}.gz.old" "initrd-${version}" \
"initramfs-${version}.img" "initramfs-${alt_version}.img.old" \
"initrd.img-${alt_version}" "initrd-${alt_version}.img" \
"initrd-${alt_version}" "initramfs-${alt_version}.img" \
"initramfs-genkernel-${version}" \
"initramfs-genkernel-${alt_version}" \
"initramfs-genkernel-${GENKERNEL_ARCH}-${version}" \
"initramfs-genkernel-${GENKERNEL_ARCH}-${alt_version}" \
"${initramfs_manjaro}.img" \
"initramfs-linux.img" ; do
if test -e "${dirname}/${i}" ; then
initrd_real="${i}"
break
fi
done
initrd=
if test -n "${initrd_early}" || test -n "${initrd_real}"; then
initrd="${initrd_early} ${initrd_real}"
initrd_display=
for i in ${initrd}; do
initrd_display="${initrd_display} ${dirname}/${i}"
done
gettext_printf "Found initrd image: %s\n" "$(echo $initrd_display)" >&2
fi
config=
for i in "${dirname}/config-${version}" "${dirname}/config-${alt_version}" "/etc/kernels/kernel-config-${version}" ; do
if test -e "${i}" ; then
config="${i}"
break
fi
done
initramfs=
if test -n "${config}" ; then
initramfs=`grep CONFIG_INITRAMFS_SOURCE= "${config}" | cut -f2 -d= | tr -d \"`
fi
if test -z "${initramfs}" && test -z "${initrd_real}" ; then
# "UUID=" and "ZFS=" magic is parsed by initrd or initramfs. Since there's
# no initrd or builtin initramfs, it can't work here.
if [ "x${GRUB_DEVICE_PARTUUID}" = "x" ] \
|| [ "x${GRUB_DISABLE_LINUX_PARTUUID}" = "xtrue" ]; then
linux_root_device_thisversion=${GRUB_DEVICE}
else
linux_root_device_thisversion=PARTUUID=${GRUB_DEVICE_PARTUUID}
fi
fi
# The GRUB_DISABLE_SUBMENU option used to be different than others since it was
# mentioned in the documentation that has to be set to 'y' instead of 'true' to
# enable it. This caused a lot of confusion to users that set the option to 'y',
# 'yes' or 'true'. This was fixed but all of these values must be supported now.
if [ "x${GRUB_DISABLE_SUBMENU}" = xyes ] || [ "x${GRUB_DISABLE_SUBMENU}" = xy ]; then
GRUB_DISABLE_SUBMENU="true"
fi
if [ "x$is_top_level" = xtrue ] && [ "x${GRUB_DISABLE_SUBMENU}" != xtrue ]; then
linux_entry "${OS}" "${version}" simple \
"${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}"
submenu_indentation="$grub_tab"
if [ -z "$boot_device_id" ]; then
boot_device_id="$(grub_get_device_id "${GRUB_DEVICE}")"
fi
# TRANSLATORS: %s is replaced with an OS name
echo "submenu '$(gettext_printf "Advanced options for %s" "${OS}" | grub_quote)' \$menuentry_id_option 'gnulinux-advanced-$boot_device_id' {"
is_top_level=false
fi
linux_entry "${OS}" "${version}" advanced \
"${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}"
for i in "${initramfs_manjaro}-fallback.img" "initramfs-${version}-fallback.img" ; do
if test -e "${dirname}/${i}" ; then
initrd="${i}"
gettext_printf "Found initrd fallback image: %s\n" "${dirname}/${initrd}" >&2
linux_entry "${OS}" "${version}" fallback \
"${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}"
break
fi
done
if [ "x${GRUB_DISABLE_RECOVERY}" != "xtrue" ]; then
linux_entry "${OS}" "${version}" recovery \
"${GRUB_CMDLINE_LINUX_RECOVERY} ${GRUB_CMDLINE_LINUX}"
fi
done
# If at least one kernel was found, then we need to
# add a closing '}' for the submenu command.
if [ x"$is_top_level" != xtrue ]; then
echo '}'
fi
echo "$title_correction_code"
では、このスクリプトを改造して、CLI 起動エントリを追加します。
以下の記事を参考にしました。
ブートパラメータとしてsystemd.unit=multi-user.target
を指定することで、CLI として起動することができます。
まず、10_linux
を改名してバックアップを取ります。
sudo mv /etc/grub.d/10_linux /etc/grub.d/15_linux
次に、15_linux
をコピーして10_linux_text
というファイルを作成します。
sudo cp /etc/grub.d/15_linux /etc/grub.d/10_linux_text
10_linux_text
を編集して、CLI 起動エントリを追加します。
当該スクリプトは、三か所に渡って linux_entry
という関数が呼び出されています。
この関数で、エントリが生成されると推測されます。
linux_entry
に渡される引数の末尾に、それぞれ systemd.unit=multi-user.target
を追加します。
- linux_entry "${OS}" "${version}" simple \
- "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}"
+ linux_entry "${OS}" "${version}" simple \
+ "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT} systemd.unit=multi-user.target"
- linux_entry "${OS}" "${version}" advanced \
- "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT}"
+ linux_entry "${OS}" "${version}" advanced \
+ "${GRUB_CMDLINE_LINUX} ${GRUB_CMDLINE_LINUX_DEFAULT} systemd.unit=multi-user.target"
- linux_entry "${OS}" "${version}" recovery \
- "${GRUB_CMDLINE_LINUX_RECOVERY} ${GRUB_CMDLINE_LINUX}"
+ linux_entry "${OS}" "${version}" recovery \
+ "${GRUB_CMDLINE_LINUX_RECOVERY} ${GRUB_CMDLINE_LINUX} systemd.unit=multi-user.target"
また、お好みでエントリ名を変更することもできます。
- OS="${GRUB_DISTRIBUTOR} Linux"
+ OS="${GRUB_DISTRIBUTOR} Linux CLI Version"
これを保存して、update-grub
コマンドを実行します。
sudo update-grub
書き出された /boot/grub/grub.cfg
を確認すると、CLI 起動エントリが追加されていることが確認できます。
linux /boot/vmlinuz-x.x.x-x-x root=UUID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx rw udev.log_priority=3 systemd.unit=multi-user.target
これで、ブート画面から CLI を起動することができるようになりました。
GRUB は番号の小さい順にエントリを表示するため、CLI 起動エントリがデフォルトで選択されるようになります。
以上で、ブート画面から CLI を起動するための設定は完了です。
CLI で起動する仕組み
systemd.unit=multi-user.target
というブートパラメータを指定することで、CLI として起動することのできる仕組みについて簡単に説明します。
systemd
は、Linux の初期プロセスであり、システムの起動時に各種サービスを起動するための仕組みを提供します。
(SysVinit でいうところのランレベルのようなものです)
systemd は target という単位でサービスをグループ化して管理しています。
target | 説明 |
---|---|
poweroff.target | シャットダウン |
rescue.target | シングルユーザモード |
multi-user.target | マルチユーザモード |
graphical.target | グラフィカルユーザインターフェース |
reboot.target | 再起動 |
この target に各サービスが依存しており、target を切り替えることで、システムの起動のレベルを変更することができます。
この機能において、GUI が不要なサーバにおいては、multi-user.target
を指定することで、CLI として起動することができます。
勿論、GUI でない場合に起動する必要のないサービスは起動されません。
まとめ
今回は、Manjaro Sway Edition において、ブート画面から CLI を起動するための設定を行いました。
Linux の周辺知識も少し交えながら解説してみました。お役に立ちましたら幸いです。
Discussion