Hallo,
ich habe mein System [SSD Platte] von ext4 auf btrfs konvertiert. System fährt auch soweit hoch, nur anfangs meldet
Grub beim booten einen Fehler.
Fehler: sparse file not allowed
Hat jemand evtl ein Tipp, wie ich diese Meldung weg bekomme?
Anbei, wie ich vorgegangen bin [Zusammengesucht im Netz, notiert und angepasst]
1. Boot from Arch-Boot-Disk https://wiki.archlinux.de/title/Download
2. # fdisk -l
3. # btrfs-convert /dev/sda1
4. # mount /dev/sda1 /mnt
5. # df -h
6. # mount -t proc none /mnt/proc
7. # mount -t sysfs none /mnt/sys
8. # mount -o bind /dev /mnt/dev
9. # mount -o bind /dev/pts /mnt/dev/pts
10.# cp -L /etc/resolv.conf /mnt/etc/
11.# chroot /mnt bash
12.# mkdir /run/shm
13.# ls -l [ext2_saved]
14.# btrfs subvolume delete /ext2_saved/
15.# mc -e /etc/fstab [vim, nano..]
15b.# /dev/sda1 / btrfs noatime,discard,ssd,autodefrag,compress=lzo,space_cache 0 0 [SSD System]
16.# grub-install /dev/sda
17.# grub-mkconfig -o /boot/grub/grub.cfg [or grub2]
18.# mkinitcpio -p linux
19.# reboot