Hi - I am using Tumbleweed and BTRFS. I am manually creating snapshots with sudo btrfs subvolume snapshot.......(ie. not with snapper) but would like them to appear in the GRUB menu. When I create them manually this way, they dont appear in GRUB on reboot.
What you’re attempting is challenging but feasible, provided you set things up properly.
Currently, your OS offers two distinct methods for creating snapshots:
sudo snapper create --description
btrfs subvolume snapshot
Snapper creates snapshots with a standardized structure that the system expects.
btrfs subvolume snapshot, on the other hand, generates “bare” snapshots—no metadata or structure for automatic integration.
GRUB will not recognize these snapshots because they don’t follow the required structure.
It is technically possible to achieve this manually, but you’ll likely need to consult the btrfs manual to understand the necessary configurations.
After investigating it all, it does look challenging than I originally thought. I think I’ll use snapper for creating the snapshots as mentioned. Thanks for all your help though.