this post was submitted on 28 Dec 2024
64 points (91.0% liked)
Linux
48751 readers
1029 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
I'd go 1 step further and insist on putting
home
on a separate partition anyway - helps with issues like running out of diskspace.To answer the original question, boot the distro's ISO from a USB stick and try that (/those) before you actually install anything. You might find some hardware's not supported (ie wifi) until you do a full install, but at least you can eliminate the distros you don't like, quickly.
Or 1 step even further and use a btrfs partition with subvolumes for root, home, etc. Then you're not even stuck with a specific amount of disk space for each. (But you may be limited depending on the specific distro installer support for btrfs. In theory you can always just mount the subvols yourself and point the installer at them, but YMMV).
I recommend keeping a separate boot partition though.
Or causes that problem if you don't manage to predict your usage patterns correctly. I have seen many people run out of space on one or the other but have plenty overall and would not have had a problem with a single partition.
Yeah, don't get me wrong... many a time I've had to boot gparted and resize partitions, but, the system isn't affected if you download too much and / or you don't lose data if the system's full.
Huh? You seem to be arguing both ways? If the system drive is full you have problems well before you risk losing data and if the home drive is full you have problems saving data? Both of these things can happen in a split partition or single partition setup. The split partition just means you have to get the space correct or end up with long resizing options for juggling the size around. And with a single partition it gives you more places to free up space when you do run out.
Need to save a file but the disk is full? Clean out the package manager cache. You cannot do that if the partitions are separate. An update does not have enough space? Delete a steam game or clear out your downloads folder.
Ext also has a reserved space option which when there is less free space than that option it refuses writes to anything but the root user - which is meant to solve the issue of a user trying to use up to much space, there is always a reserved bit that the system can do what it needs to. Though I have never seen this configured correctly for a running system and root can blast past the default 5% on smaller drives with a simple update. Or some other process is running as root is already consuming that space.
Other partition types like btrfs have proper quotas that can be set per directory or user to prevent this type of issue as well and gives you a lot more control over the allocated space without needing to reboot into a live USB to resize the partitions.
People seem to think a split partition helps but I have generally found it just causes more problems then it solves and there are now better tools that actually solve these problems in more elegant ways.
Sorry for the confusion there, trying to be too concise in a short reply.
I get the points you're making; I've been there, done the root space recovery thing (the default can be a massive amount of space with modern drives, so I've changed it on several systems). I've setup lvm across drives, used btrfs (& sunvolumes), etc, so I know where you're coming from. Never seen quotas actually used out in the wild of (generally) single user domestic settings.
But, moving
/home
to a separate partition, drive(s), etc. provides flexibility - in this case, the OP's point of distrohopping.Not sure but it seems to me most major distributions offer you to do a separate /home partition by default? I may be wrong but this happens with the likes of Fedora and Ubuntu? Or at least they do recommend to make it that way
It might have to do with my being an old fart, but having at least home on a separate disk or partition seems like basic stuff. I've always done it that way.
Of course back in the day, everything had its own partition.
Yeah, I like
/var
to be in it's own partition so I can keep my system(s) under close control, and a separate/boot
seems to be necessary these *EFI days