Bug#974219: grub2-common: "info grub-reboot" does not give the complete manual
Vincent Lefevre
vincent at vinc17.net
Wed Nov 11 13:38:17 GMT 2020
Package: grub2-common
Version: 2.04-10
Severity: normal
The grub-reboot(8) man page says:
The full documentation for grub-reboot is maintained as a
Texinfo manual. If the info and grub-reboot programs are
properly installed at your site, the command
info grub-reboot
should give you access to the complete manual.
but "info grub-reboot" just gives the man page.
-- Package-specific info:
*********************** BEGIN /proc/mounts
/dev/mapper/zira--vg-root / ext4 rw,relatime,errors=remount-ro 0 0
/dev/sda1 /boot ext2 rw,relatime,stripe=4 0 0
*********************** END /proc/mounts
*********************** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
load_env
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="${saved_entry}"
fi
if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi
export menuentry_id_option
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
}
if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 7b3de7fd-236a-47f6-bb85-64831a06ca1f
else
search --no-floppy --fs-uuid --set=root 7b3de7fd-236a-47f6-bb85-64831a06ca1f
fi
font="/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=1024x768 640x480
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=POSIX
insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
set timeout=30
else
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=5
fi
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 7b3de7fd-236a-47f6-bb85-64831a06ca1f
else
search --no-floppy --fs-uuid --set=root 7b3de7fd-236a-47f6-bb85-64831a06ca1f
fi
insmod png
if background_image /grub/.background_cache.png; then
set color_normal=white/black
set color_highlight=black/white
else
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload="${1}"
}
set linux_gfx_mode=keep
export linux_gfx_mode
menuentry 'Debian GNU/Linux, with Linux 5.9.0-2-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.9.0-2-amd64-advanced-30a1ad7d-49ca-4b60-91d5-58f6f63d1c8e' {
savedefault
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 7b3de7fd-236a-47f6-bb85-64831a06ca1f
else
search --no-floppy --fs-uuid --set=root 7b3de7fd-236a-47f6-bb85-64831a06ca1f
fi
echo 'Loading Linux 5.9.0-2-amd64 ...'
linux /vmlinuz-5.9.0-2-amd64 root=/dev/mapper/zira--vg-root ro quiet systemd.swap=no
echo 'Loading initial ramdisk ...'
initrd /initrd.img-5.9.0-2-amd64
}
menuentry 'Debian GNU/Linux, with Linux 5.9.0-2-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.9.0-2-amd64-recovery-30a1ad7d-49ca-4b60-91d5-58f6f63d1c8e' {
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 7b3de7fd-236a-47f6-bb85-64831a06ca1f
else
search --no-floppy --fs-uuid --set=root 7b3de7fd-236a-47f6-bb85-64831a06ca1f
fi
echo 'Loading Linux 5.9.0-2-amd64 ...'
linux /vmlinuz-5.9.0-2-amd64 root=/dev/mapper/zira--vg-root ro single
echo 'Loading initial ramdisk ...'
initrd /initrd.img-5.9.0-2-amd64
}
menuentry 'Debian GNU/Linux, with Linux 5.9.0-1-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.9.0-1-amd64-advanced-30a1ad7d-49ca-4b60-91d5-58f6f63d1c8e' {
savedefault
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 7b3de7fd-236a-47f6-bb85-64831a06ca1f
else
search --no-floppy --fs-uuid --set=root 7b3de7fd-236a-47f6-bb85-64831a06ca1f
fi
echo 'Loading Linux 5.9.0-1-amd64 ...'
linux /vmlinuz-5.9.0-1-amd64 root=/dev/mapper/zira--vg-root ro quiet systemd.swap=no
echo 'Loading initial ramdisk ...'
initrd /initrd.img-5.9.0-1-amd64
}
menuentry 'Debian GNU/Linux, with Linux 5.9.0-1-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.9.0-1-amd64-recovery-30a1ad7d-49ca-4b60-91d5-58f6f63d1c8e' {
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 7b3de7fd-236a-47f6-bb85-64831a06ca1f
else
search --no-floppy --fs-uuid --set=root 7b3de7fd-236a-47f6-bb85-64831a06ca1f
fi
echo 'Loading Linux 5.9.0-1-amd64 ...'
linux /vmlinuz-5.9.0-1-amd64 root=/dev/mapper/zira--vg-root ro single
echo 'Loading initial ramdisk ...'
initrd /initrd.img-5.9.0-1-amd64
}
menuentry 'Debian GNU/Linux, with Linux 4.19.0-12-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.19.0-12-amd64-advanced-30a1ad7d-49ca-4b60-91d5-58f6f63d1c8e' {
savedefault
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 7b3de7fd-236a-47f6-bb85-64831a06ca1f
else
search --no-floppy --fs-uuid --set=root 7b3de7fd-236a-47f6-bb85-64831a06ca1f
fi
echo 'Loading Linux 4.19.0-12-amd64 ...'
linux /vmlinuz-4.19.0-12-amd64 root=/dev/mapper/zira--vg-root ro quiet systemd.swap=no
echo 'Loading initial ramdisk ...'
initrd /initrd.img-4.19.0-12-amd64
}
menuentry 'Debian GNU/Linux, with Linux 4.19.0-12-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.19.0-12-amd64-recovery-30a1ad7d-49ca-4b60-91d5-58f6f63d1c8e' {
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 7b3de7fd-236a-47f6-bb85-64831a06ca1f
else
search --no-floppy --fs-uuid --set=root 7b3de7fd-236a-47f6-bb85-64831a06ca1f
fi
echo 'Loading Linux 4.19.0-12-amd64 ...'
linux /vmlinuz-4.19.0-12-amd64 root=/dev/mapper/zira--vg-root ro single
echo 'Loading initial ramdisk ...'
initrd /initrd.img-4.19.0-12-amd64
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
*********************** END /boot/grub/grub.cfg
*********************** BEGIN /proc/mdstat
cat: /proc/mdstat: No such file or directory
*********************** END /proc/mdstat
*********************** BEGIN /dev/disk/by-id
total 0
lrwxrwxrwx 1 root root 9 2020-11-11 02:41:09 ata-MTFDDAK512MAY-1AE1ZABHA_15060EBA71EE -> ../../sda
lrwxrwxrwx 1 root root 10 2020-11-11 02:41:09 ata-MTFDDAK512MAY-1AE1ZABHA_15060EBA71EE-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 2020-11-11 02:41:09 ata-MTFDDAK512MAY-1AE1ZABHA_15060EBA71EE-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 2020-11-11 02:41:09 ata-MTFDDAK512MAY-1AE1ZABHA_15060EBA71EE-part5 -> ../../sda5
lrwxrwxrwx 1 root root 9 2020-11-11 02:41:10 ata-hp_DVDRW_SU208GB_S16F6YGG30153L -> ../../sr0
lrwxrwxrwx 1 root root 10 2020-11-11 02:41:09 dm-name-sda5_crypt -> ../../dm-0
lrwxrwxrwx 1 root root 10 2020-11-11 02:41:09 dm-name-zira--vg-root -> ../../dm-1
lrwxrwxrwx 1 root root 10 2020-11-11 02:41:09 dm-name-zira--vg-swap_1 -> ../../dm-2
lrwxrwxrwx 1 root root 10 2020-11-11 02:41:09 dm-uuid-CRYPT-LUKS1-ef627f6a446942c89b15f26477969e7b-sda5_crypt -> ../../dm-0
lrwxrwxrwx 1 root root 10 2020-11-11 02:41:09 dm-uuid-LVM-KNmogndhLEIcc7z813VeePQheKFR9br4ID2n9DaSkefYVxyM5IPnY5p6zj9ycVsy -> ../../dm-2
lrwxrwxrwx 1 root root 10 2020-11-11 02:41:09 dm-uuid-LVM-KNmogndhLEIcc7z813VeePQheKFR9br4bmcY3doNjgTlxv4uqHZ2A3egNHDFs0aD -> ../../dm-1
lrwxrwxrwx 1 root root 10 2020-11-11 02:41:09 lvm-pv-uuid-RaDD9Y-cDSq-kdoy-fYKY-9eP0-kLkp-M1wVYw -> ../../dm-0
lrwxrwxrwx 1 root root 9 2020-11-11 02:41:09 wwn-0x500a07510eba71ee -> ../../sda
lrwxrwxrwx 1 root root 10 2020-11-11 02:41:09 wwn-0x500a07510eba71ee-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 2020-11-11 02:41:09 wwn-0x500a07510eba71ee-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 2020-11-11 02:41:09 wwn-0x500a07510eba71ee-part5 -> ../../sda5
*********************** END /dev/disk/by-id
*********************** BEGIN /dev/disk/by-uuid
total 0
lrwxrwxrwx 1 root root 10 2020-11-11 02:41:09 30a1ad7d-49ca-4b60-91d5-58f6f63d1c8e -> ../../dm-1
lrwxrwxrwx 1 root root 10 2020-11-11 02:41:09 5c626f57-c595-4913-8bb2-08f6d8f419e5 -> ../../dm-2
lrwxrwxrwx 1 root root 10 2020-11-11 02:41:09 7b3de7fd-236a-47f6-bb85-64831a06ca1f -> ../../sda1
lrwxrwxrwx 1 root root 10 2020-11-11 02:41:09 ef627f6a-4469-42c8-9b15-f26477969e7b -> ../../sda5
*********************** END /dev/disk/by-uuid
-- System Information:
Debian Release: bullseye/sid
APT prefers unstable-debug
APT policy: (500, 'unstable-debug'), (500, 'stable-updates'), (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 5.9.0-2-amd64 (SMP w/8 CPU threads)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=POSIX, LC_CTYPE=C.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
Versions of packages grub2-common depends on:
ii dpkg 1.20.5
ii grub-common 2.04-10
ii install-info 6.7.0.dfsg.2-5+b1
ii libc6 2.31-4
ii libdevmapper1.02.1 2:1.02.171-3
ii libefiboot1 37-5
ii libefivar1 37-5
ii liblzma5 5.2.4-1+b1
grub2-common recommends no packages.
grub2-common suggests no packages.
-- no debconf information
--
Vincent Lefèvre <vincent at vinc17.net> - Web: <https://www.vinc17.net/>
100% accessible validated (X)HTML - Blog: <https://www.vinc17.net/blog/>
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)
More information about the Pkg-grub-devel
mailing list