this post was submitted on 13 Nov 2023
92 points (96.0% liked)
Linux
47958 readers
1123 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Well technically, if you're using BTRFS, you might want to check out subvolumes. Here's my subvolume setup:
@
(root subvol)@home
(/home subvol)@srv
(/srv subvol)@opt
(/opt subvol)@swap
(which is - you guessed it - the swap subvol)You then set up fstab to reflect each of the subvolumes, using the
subvol=
option. Here's the kicker: they are all in one partition. Yes, even the swap. Though caveat, swap still has to be a swapfile, but in its own separate subvolume. Don't ask me why, it's just the way to do it.The great thing about subvolumes is that it doesn't do any size provisioning, unless specified by the user. All subvolumes share the space available within the partition. This means you won't have to do any soul searching when setting up the partitions regarding use of space.
This also means that if I want to nuke and pave, I only need run a BTRFS command on my
@
subvolume (which contains/usr
,/share
,/bin
), because it won't be touching the contents of@home
,@srv
, or@opt
. What's extra cool here is that I'll lose 0% FS metadata or permission setup, since you're technically just disassociating some blocks from a subvolume. You're not really "formatting"... which is neat as hell.The only extra partitions I have is the EFI partition and an EXT4 partition for the
/boot
folder since I use LUKS2.Thanks I think this is the answer I was looking for!
Have you had any luck with hibernation with a BTRFS swapfile? My computer still does not start from hibernation, and I am not sure why, even though I followed the Arch wiki to set it up.
Can't say I have. Haven't used hibernation mode for years even. Sleep mode is just too good nowadays for me to use it, so I guess we could chalk that up to a fault of the setup.
According to ReadTheDocs (BTRFS, swapfile) it's possible under certain circumstances, but requires the 6.1 kernel to do it in a relatively easy way.
How does that work with you're installing a new system? Do the subvolumes just show up like partitions?
In tools like
lsblk
? Nope. They appear as directories, usually in the top-level subvolume, which typically isn't mounted anywhere in the system.Then you just create mount entries in
/etc/fstab
just like you would with partitions, this time just using thesubvol=
option as mentioned above. I don't know if there are any installers that do this for you. Archwiki -- as usual -- has good documentation on this.So, it doesn't sound like it would be useful for me, since the reason why I have separate partitions in the first place is so that I can re-install a distro or install a new distro without having to back up
/home
first.