#Help moving and managing partitions
30 messages · Page 1 of 1 (latest)
extending p3 to unallocated should be no problem. Note sure about how to extend p2
I think you'd have to move p3 to the right
yea i read that online, but I physically cant, like it doesnt let me
it only lets me expand and retract from the right
(this is p3 btw)
is this from a live iso? Or from your arch?
from my arch
run this```
btrfs fi us /home
that yeah, moving needs the filesystem not be mounted
but shrinking and expanding does not depending on the filesystem
alright ill reboot into a live iso
honestly if you use btrfs, should stick with subvols instead of partitions unless you have a very specific reason
they are essetially special folders in btrfs that is still part of the same partition/filesystem
that you can also mount with the subvol=/subvol/path mount option
you didn't have to separate / and /home, but it can still be useful. If your system breaks you can just install a new one on / and keep your home
➜ findmnt -t btrfs -o TARGET,SOURCE /dev/nvme0n1p3
TARGET SOURCE
/ /dev/nvme0n1p3[/@]
/var/log /dev/nvme0n1p3[/@log]
/swap /dev/nvme0n1p3[/@swap]
/home /dev/nvme0n1p3[/@home]
/var/lib/flatpak /dev/nvme0n1p3[/@flatpak]
/.snapshots /dev/nvme0n1p3[/@.snapshots]
for example
the /@ subvol is mounted to /
/@home to /home
all are still part of nvme0n1p3
what's the benefit of that?
so basically an extension of the partition?
btrfs snapshots are per subvolume
and for semi-seperation
look into btrfs snapshots, pretty cool feature of the filesystem
so if there weren't seperate subvols, you'd be uselessly snapshotting unneeded stuff
how do i make a subvol for p2 then?