How to view .HEIC image thumbnails in Void Linux thunar/nautilus/pcmanfm…file managers

Install these packages and restart file manager

sudo xbps-install libheif libheif-tools

Note: HEIC thumbnails in pcmanfm didn’t work for me.

Read more

void linux: recover from grub, kernel panic using live OS

# mount & chroot to void
cryptsetup open /dev/nvme0n1p2 root
mount /dev/mapper/root /mnt
mount /dev/nvme0n1p1 /mnt/boot
mount --rbind /sys /mnt/sys && mount --make-rslave /mnt/sys
mount --rbind /dev /mnt/dev && mount --make-rslave /mnt/dev
mount --rbind /proc /mnt/proc && mount --make-rslave /mnt/proc
chroot /mnt /bin/bash

# regenerate initramfs and grub config
VERSION=5.18.16_1
Read more