Coming from this post I dd
ed a Fedora Kinoite install from a 1TB to a 1,8TB NVME SSD.
I want to now resize it, is this possible on Atomic?
sudo btrfs filesystem resize max /
# told be it worked and resized the partition
Balancing seems to do nothing, no matter the location
for dir in "/" "/var" "/var/home" "/etc"; do
sudo btrfs balance start -dusage=0 "$dir"
done
Defragmenting it only worked for the mutable subvolumes, but seemed to work. Still, not being able to defragment some subvolumes sounds problematic?
sudo btrfs filesystem defragment -r -v /var /var/home /etc
it currently looks like this
nvme0n1 259:0 0 1,8T 0 disk
├─nvme0n1p1 259:1 0 600M 0 part /boot/efi
├─nvme0n1p2 259:2 0 1G 0 part /boot
└─nvme0n1p3 259:3 0 929,9G 0 part
└─luks-e755629a-0756-4ada-b584-e3dcc8a7f1b4
253:0 0 929,9G 0 crypt /nix
/var/home
/var
/sysroot/ostree/deploy/fedora/var
/usr
/etc
/
/sysroot
How can I resize the partition, as it didnt seem to do anything?
Thanks!