Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Generating grub configuration file ...
- #
- # 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 ###
- insmod part_gpt
- insmod part_msdos
- if [ -s $prefix/grubenv ]; then
- 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="0"
- 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_gpt
- insmod btrfs
- search --no-floppy --fs-uuid --set=root 7c86b63f-ac88-4e95-a662-ee4b832e321c
- font="/@/usr/share/grub/unicode.pf2"
- fi
- if loadfont $font ; then
- set gfxmode=auto
- load_video
- insmod gfxterm
- set locale_dir=$prefix/locale
- set lang=en_AU
- insmod gettext
- fi
- terminal_input console
- terminal_output gfxterm
- 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
- ### END /etc/grub.d/00_header ###
- ### BEGIN /etc/grub.d/10_linux ###
- Found linux image: /boot/vmlinuz-linux-cachyos-lts
- Found initrd image: /boot/amd-ucode.img /boot/initramfs-linux-cachyos-lts.img
- menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-7c86b63f-ac88-4e95-a662-ee4b832e321c' {
- load_video
- set gfxpayload=keep
- insmod gzio
- insmod part_gpt
- insmod fat
- search --no-floppy --fs-uuid --set=root 3551-8E81
- echo 'Loading Linux linux-cachyos-lts ...'
- linux /vmlinuz-linux-cachyos-lts root=UUID=7c86b63f-ac88-4e95-a662-ee4b832e321c rw rootflags=subvol=@ loglevel=3 quiet
- echo 'Loading initial ramdisk ...'
- initrd /amd-ucode.img /initramfs-linux-cachyos-lts.img
- }
- submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-7c86b63f-ac88-4e95-a662-ee4b832e321c' {
- menuentry 'Arch Linux, with Linux linux-cachyos-lts' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-cachyos-lts-advanced-7c86b63f-ac88-4e95-a662-ee4b832e321c' {
- load_video
- set gfxpayload=keep
- insmod gzio
- insmod part_gpt
- insmod fat
- search --no-floppy --fs-uuid --set=root 3551-8E81
- echo 'Loading Linux linux-cachyos-lts ...'
- linux /vmlinuz-linux-cachyos-lts root=UUID=7c86b63f-ac88-4e95-a662-ee4b832e321c rw rootflags=subvol=@ loglevel=3 quiet
- echo 'Loading initial ramdisk ...'
- initrd /amd-ucode.img /initramfs-linux-cachyos-lts.img
- }
- Found linux image: /boot/vmlinuz-linux-cachyos
- Found initrd image: /boot/amd-ucode.img /boot/initramfs-linux-cachyos.img
- menuentry 'Arch Linux, with Linux linux-cachyos' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-cachyos-advanced-7c86b63f-ac88-4e95-a662-ee4b832e321c' {
- load_video
- set gfxpayload=keep
- insmod gzio
- insmod part_gpt
- insmod fat
- search --no-floppy --fs-uuid --set=root 3551-8E81
- echo 'Loading Linux linux-cachyos ...'
- linux /vmlinuz-linux-cachyos root=UUID=7c86b63f-ac88-4e95-a662-ee4b832e321c rw rootflags=subvol=@ loglevel=3 quiet
- echo 'Loading initial ramdisk ...'
- initrd /amd-ucode.img /initramfs-linux-cachyos.img
- }
- }
- ### END /etc/grub.d/10_linux ###
- ### BEGIN /etc/grub.d/20_linux_xen ###
- ### END /etc/grub.d/20_linux_xen ###
- ### BEGIN /etc/grub.d/25_bli ###
- if [ "$grub_platform" = "efi" ]; then
- insmod bli
- fi
- ### END /etc/grub.d/25_bli ###
- ### BEGIN /etc/grub.d/30_os-prober ###
- Warning: os-prober will not be executed to detect other bootable partitions.
- Systems on them will not be added to the GRUB boot configuration.
- Check GRUB_DISABLE_OS_PROBER documentation entry.
- ### END /etc/grub.d/30_os-prober ###
- ### BEGIN /etc/grub.d/30_uefi-firmware ###
- Adding boot menu entry for UEFI Firmware Settings ...
- if [ "$grub_platform" = "efi" ]; then
- fwsetup --is-supported
- if [ "$?" = 0 ]; then
- menuentry 'UEFI Firmware Settings' $menuentry_id_option 'uefi-firmware' {
- fwsetup
- }
- fi
- fi
- ### END /etc/grub.d/30_uefi-firmware ###
- ### BEGIN /etc/grub.d/35_fwupd ###
- ### END /etc/grub.d/35_fwupd ###
- ### 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 ###
- ### BEGIN /etc/grub.d/41_snapshots-btrfs ###
- Detecting snapshots ...
- Found snapshot: 2025-10-24 15:17:54 | @/.snapshots/33/snapshot | single | boot |
- Found snapshot: 2025-10-24 15:15:54 | @/.snapshots/32/snapshot | single | boot |
- Found snapshot: 2025-10-22 23:00:33 | @/.snapshots/31/snapshot | single | boot |
- Found snapshot: 2025-10-22 22:55:52 | @/.snapshots/30/snapshot | post | snap-pac-grub |
- Found snapshot: 2025-10-22 22:55:52 | @/.snapshots/29/snapshot | pre | pacman --upgrade --noconfirm -- /home/marko/.cache/paru/clone/snap-pac-g |
- Found snapshot: 2025-10-22 22:55:48 | @/.snapshots/28/snapshot | post | snapper-gui-git |
- Found snapshot: 2025-10-22 22:55:48 | @/.snapshots/27/snapshot | pre | pacman --upgrade --noconfirm -- /home/marko/.cache/paru/clone/snapper-gu |
- Found snapshot: 2025-10-22 22:55:41 | @/.snapshots/26/snapshot | post | gtksourceview3 |
- Found snapshot: 2025-10-22 22:55:41 | @/.snapshots/25/snapshot | pre | pacman --sync --needed --noconfirm -- cachyos-extra-v3/gtksourceview3 |
- Found snapshot: 2025-10-22 22:35:26 | @/.snapshots/24/snapshot | single | boot |
- Found snapshot: 2025-10-22 22:34:20 | @/.snapshots/23/snapshot | single | boot |
- Found snapshot: 2025-10-22 22:27:58 | @/.snapshots/22/snapshot | post | grub-btrfs grub-btrfs-support |
- Found snapshot: 2025-10-22 22:27:45 | @/.snapshots/21/snapshot | pre | /usr/bin/pacman -S grub-btrfs grub-btrfs-support |
- Found snapshot: 2025-10-22 22:26:05 | @/.snapshots/20/snapshot | post | grub-btrfs-support |
- Found snapshot: 2025-10-22 22:26:03 | @/.snapshots/19/snapshot | pre | pacman -S grub-btrfs-support --overwrite /usr/bin/* |
- Found snapshot: 2025-10-22 22:21:25 | @/.snapshots/18/snapshot | post | grub-btrfs-support |
- Found snapshot: 2025-10-22 22:21:23 | @/.snapshots/17/snapshot | pre | pacman -S grub-btrfs-support |
- Found snapshot: 2025-10-22 22:20:48 | @/.snapshots/16/snapshot | post | grub-btrfs-support |
- Found snapshot: 2025-10-22 22:20:46 | @/.snapshots/15/snapshot | pre | pacman -S grub-btrfs-support |
- Found snapshot: 2025-10-22 22:13:31 | @/.snapshots/14/snapshot | single | boot |
- Found snapshot: 2025-10-22 22:12:10 | @/.snapshots/13/snapshot | post | electron37 fuse2 obsidian |
- Found snapshot: 2025-10-22 22:12:08 | @/.snapshots/12/snapshot | pre | /usr/bin/pacman -S --noconfirm extra/obsidian |
- Found snapshot: 2025-10-22 22:10:43 | @/.snapshots/11/snapshot | single | boot |
- Found snapshot: 2025-10-22 22:09:56 | @/.snapshots/10/snapshot | single | boot |
- Found snapshot: 2025-10-22 21:57:07 | @/.snapshots/9/snapshot | post | grub-btrfs-support |
- Found snapshot: 2025-10-22 21:57:05 | @/.snapshots/8/snapshot | pre | pacman -S grub-btrfs-support |
- Found snapshot: 2025-10-22 21:48:11 | @/.snapshots/7/snapshot | post | linux-cachyos linux-cachyos-headers |
- Found snapshot: 2025-10-22 21:47:57 | @/.snapshots/6/snapshot | pre | pacman -Syu linux-cachyos linux-cachyos-headers |
- Found snapshot: 2025-10-22 21:42:14 | @/.snapshots/5/snapshot | post | llvm llvm-libs |
- Found snapshot: 2025-10-22 21:42:11 | @/.snapshots/4/snapshot | pre | pacman --color always -Syu |
- Found snapshot: 2025-10-22 20:30:24 | @/.snapshots/3/snapshot | post | grub |
- Found snapshot: 2025-10-22 20:30:22 | @/.snapshots/2/snapshot | pre | pacman -S grub --overwrite /boot/grub/* |
- Found snapshot: 2025-10-22 20:28:28 | @/.snapshots/1/snapshot | single | cachyos-snapper-support grub grub-btrfs grub-btrfs-support snap-pac |
- if [ ! -e "${prefix}/grub-btrfs.cfg" ]; then
- echo ""
- else
- submenu 'CachyOS Linux snapshots' {
- configfile "${prefix}/grub-btrfs.cfg"
- }
- fi
- Found 33 snapshot(s)
- Unmount /tmp/grub-btrfs.RwMd7eum2a .. Success
- ### END /etc/grub.d/41_snapshots-btrfs ###
- done
Advertisement
Add Comment
Please, Sign In to add comment