Heya folks, some people online told me I was doing partitions wrong, but I’ve been doing it this way for years. Since I’ve been doing it for years, I could be doing it in an outdated way, so I thought I should ask.

I have separate partitions for EFI, /, swap, and /home. Am I doing it wrong? Here’s how my partition table looks like:

  • FAT32: EFI
  • BTRFS: /
  • Swap: Swap
  • Ext4: /home

I set it up this way so that if I need to reinstall Linux, I can just overwrite / while preserving /home and just keep working after a new install with very few hiccups. Someone told me there’s no reason to use multiple partitions, but several times I have needed to reinstall the OS (Linux Mint) while preserving /home so this advice makes zero sense for me. But maybe it was just explained to me wrong and I really am doing it in an outdated way. I’d like to read what you say about this though.

  • taanegl@beehaw.org
    link
    fedilink
    arrow-up
    33
    arrow-down
    1
    ·
    edit-2
    11 months ago

    Well technically, if you’re using BTRFS, you might want to check out subvolumes. Here’s my subvolume setup:

    • Subvolume 1, named @ (root subvol)
    • Subvolume 2, named @home (/home subvol)
    • Subvolume 3, named @srv (/srv subvol)
    • Subvolume 4, named @opt (/opt subvol)
    • Subvolume 5, named @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.

    • KiranWells@pawb.social
      link
      fedilink
      arrow-up
      4
      ·
      11 months ago

      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.

      • taanegl@beehaw.org
        link
        fedilink
        arrow-up
        5
        arrow-down
        1
        ·
        11 months ago

        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.

    • seitanic@lemmy.sdf.org
      link
      fedilink
      arrow-up
      2
      ·
      11 months ago

      How does that work with you’re installing a new system? Do the subvolumes just show up like partitions?

      • Tiuku@sopuli.xyz
        link
        fedilink
        arrow-up
        1
        ·
        edit-2
        11 months ago

        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 the subvol= 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.

        • seitanic@lemmy.sdf.org
          link
          fedilink
          arrow-up
          3
          ·
          edit-2
          11 months ago

          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.

  • Infiltrated_ad8271@kbin.social
    link
    fedilink
    arrow-up
    19
    ·
    edit-2
    11 months ago

    I don’t like wasting space or having to predict how much space I’ll be using two years from now, so I prefer the minimum of partitions: efi, boot, and system(luks), with a btrfs subvol for /, home, and swapfile.

  • Atemu@lemmy.ml
    link
    fedilink
    arrow-up
    12
    ·
    edit-2
    11 months ago

    What you’re doing is perfectly fine.

    It is however more of a mitigation for bad distro installers than general good practice. If the distro installers preserved /home, you could keep it all in one partition. Because such “bad” distro installers still exist, it is good practice if you know that you might install such a distro.

    If you were installing “manually” and had full control over this, I’d advocate for a single partition because it simplifies storage. Especially with the likes of btrfs you can have multiple storage locations inside one partition with decent separation between them.

  • phoenixz@lemmy.ca
    link
    fedilink
    arrow-up
    12
    arrow-down
    1
    ·
    11 months ago

    All fine though I would recommend you look into lvm, gives you easier control over sizing and resizing, even online.

    • msage@programming.dev
      link
      fedilink
      arrow-up
      3
      ·
      11 months ago

      Isn’t it better to use btrfs nowadays?

      I’m also old-school lvm person, but I put btrfs in my Gentoo desktop, though I don’t actually utilize it at all.

      • phoenixz@lemmy.ca
        link
        fedilink
        arrow-up
        1
        ·
        11 months ago

        Yes and no

        Btrfs is awesome and awful at the same time, and it’s a complicated story. It was rather ill-defined at the beginning and took a LONG time to get anywhere.

        Don’t get me wrong though, it’s a pretty awesome filesystem right now and I use it for all my storage drives. Having said that, i still use ext4 with lvm on my system drives and evenrnmy btrfs drives have lvm under them

  • Avid Amoeba@lemmy.ca
    link
    fedilink
    arrow-up
    9
    ·
    11 months ago

    If you reinstall often a separate /home makes some sense. Otherwise it’s probably pointless. I’d try to get to a point where I don’t have to reinstall my base OS and invest in an automatic backup solution.

  • ares35@kbin.social
    link
    fedilink
    arrow-up
    9
    ·
    11 months ago

    what you’re doing is perfectly fine. if it’s what your comfortable with, there’s no ‘need’ to change.

  • nous@programming.dev
    link
    fedilink
    English
    arrow-up
    8
    ·
    11 months ago

    I set it up this way so that if I need to reinstall Linux, I can just overwrite / while preserving /home and just keep working after a new install with very few hiccups.

    Even with a single partition for / and /home you can keep the contents of /home during a reinstall by simple not formatting the partitions again. I know when I tried years ago with Ubuntu years ago the installed asked if I wanted to remove the system folders for you. But even if the installer does not you can delete them manually before hand. Installers wont touch /home contents if you don’t format the drive (or any files outside the system folders they care about).

    Though I would still backup everything inside /home before any attempt at a reinstall as mistakes do happen no matter what process you decide to go with.

    • Mambabasa@slrpnk.netOP
      link
      fedilink
      English
      arrow-up
      3
      ·
      11 months ago

      Am I doing something wrong? Not seeing a particular option? I have never seen or experienced what you’re describing.

      • nous@programming.dev
        link
        fedilink
        English
        arrow-up
        1
        ·
        11 months ago

        There was no option per say, at least on the ubuntu installed I tried many years ago. Just a popup that happened sometime before the install but after the manual partitioning if the root partition had folders like /etc /usr /var etc that were needed by the installer. Not sure if all installers do this - but I would suspect if they didnt you can just delete the folders manually before you enter the installer and pick manual partitioning option and opt to not format any partitions.

  • Kindness@lemmy.ml
    link
    fedilink
    arrow-up
    8
    arrow-down
    1
    ·
    11 months ago

    You’re using it well. Nothing wrong at all.

    Butterface excels at keeping data safe-ish or at least lets you know when to throw in the towel, and which bits you’ve lost. It’s also write intensive if you open a file with write permissions, which is harder on your drives.

    Btrfs is great for the data you want to keep long term.

    Also UEFI has some nice advantages if your computer isn’t a dino that can’t handle it.

    Do what works for you, and keep on keeping on.

    • chunkyhairball@lemmy.ml
      link
      fedilink
      arrow-up
      8
      ·
      11 months ago

      You’re using it well. Nothing wrong at all.

      This. Too many partitions for a home system can get pretty stupid pretty quick. But OP has just the right amount of separation between system and data. I’ve known people that were uncomfortable without breaking /var (or /var/log) off into its own partition, but that’s really overkill for a stable, personal system, IMO.

      computer isn’t a dino that can’t handle it.

      I feel personally called out by this statement!

      Seriously, the big one for me, is that I like having drive encryption. It protects my computer and data should it fall into the hands of, say, burglers. I also like turning it up to the elevens simply because I’m a bit TOO paranoid. You really need more than 1GB of ram to do argon2id key derivation, which is what fde is all moving to for unlocking purposes, and BIOS just can’t do that. My main workstation is using a powerful, but older mobo with gigabyte’s old, horrid faux EFI support.

      Another good one for the security-conscientious person is Secure Boot, meaning that you control what kernels and bootloading code is allowed to boot on your computer, preventing Evil Maid-type attacks: https://wiki.ubuntu.com/UEFI/SecureBoot

      That’s pretty far fetched, but maybe not too out of the question if you, say, work for a bank or accountant.

      Of course none of that matters if you don’t practice good operational security.

  • kalkulat@lemmy.world
    link
    fedilink
    arrow-up
    6
    ·
    edit-2
    11 months ago

    When I started with Linux, I was happy to learn that I didn’t need a bunch of separate partitions, and have installed all-in-one (except for boot of course!) since. Whatever works fine for you (-and- is easiest) is the right way! (What you’re doing was once common practice, and serves just as well. No disadvantage in staying with the familiar.)

    After I got up to 8GB memory, stopped using swap … easier on the hard drive -and- the SSD. (I move most data to the HD … including TimeShift … except what I use regularly.)

    I use Mint as well; for me this keeps things as simple as possible. When I install a new OS version (always with the same XFCE DE) I do put THAT on a new partition (rather than try the upgrade route and risk damaging my daily driver) using the same UserName. A new Home is created within the install partition (does nothing but hold the User folder.)

    To keep from having to reconfig -almost everthing- in the new OS all over again I evolved a system. First I verify that the new install boots properly, I then use a Live USB to copy the old User .config file (and the apps and their support folders I keep in user) to the new User folder. Saves hours of reconfiguring most things. The new up-to-date OS mostly resembles and works like the old one … without the upgrade risks.

    • Mambabasa@slrpnk.netOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      11 months ago

      In my next reinstall, can I combine the / and swap partitions (they’re next to each other so I can do this) and will swap files just be automatically created instead?

      • lemmyvore@feddit.nl
        link
        fedilink
        English
        arrow-up
        3
        ·
        11 months ago

        They won’t be automatically created but you can create your own swap file on /, no need for a dedicated partition:

        • Use dd to create a file filled with zeros of appropriate size.
        • Format the file with mkswap.
        • Activate the swap file instantly with swapon.
        • Add it to /etc/fstab so it will be automatically used on reboot.

        Appropriate size will vary but I suggest starting with something like 100 MB and check once in a while to see how much is actually used. If it fills up you can replace it with a larger swap file or you can simply create another one and use it alongside the first.

    • pastermil@sh.itjust.works
      link
      fedilink
      arrow-up
      4
      ·
      11 months ago

      I use btrfs subvols to keep my stuff separate without any sort of hard limit.

      The reason? Makes managing system backups easier. The home and log directories are both on separate subvol; the tmp directories are on tmpfs. All I need to do is snapshpt the root subvol.

  • Floey@lemm.ee
    link
    fedilink
    arrow-up
    7
    arrow-down
    1
    ·
    11 months ago

    I just use /

    I don’t think having a swap partition or file would be all that useful because I have plenty of memory. I’ve never had to reinstall Linux so I’m not sure why I would need a separate home. If I did bork my OS somehow I’m fairly confident I could repair it from a live distro. And even if I did end up having to save my home I could just copy the files I want to another drive if it really came to that.

    • flux@lemmy.ml
      link
      fedilink
      arrow-up
      3
      ·
      11 months ago

      I have 64GB RAM and my 64GB swap still gets filled to 60% over time.

      It just happens so that apps end up touching some memory once that they never then use again. Better use some SSD for that instead of RAM.

    • Patch@feddit.uk
      link
      fedilink
      arrow-up
      2
      ·
      11 months ago

      I’ve never understood why people run without swap. There’s basically no downside to having it. If you’re running a high spec, high RAM machine you probably also have a big SSD/HDD and are very unlikely to be squeezing it to the last GB (and if you are you should probably look into upgrading that). And if you’re on a machine with very limited SSD/HDD capacity, you’re probably not in an “ample RAM” situation anyway.

      Even on high RAM systems, a few GB of swap can enable better caching and more graceful memory management. But heck, even if the thing sits there like an 8GB lump of nothing, were you really going to miss that last 8GB?

      • Floey@lemm.ee
        link
        fedilink
        arrow-up
        1
        ·
        11 months ago

        I have 64GB of RAM and 8GB of VRAM, I only have a TB of storage. The only time I’ve ever filled up my RAM is due to memory leak.

    • HamsterRage@lemmy.ca
      link
      fedilink
      arrow-up
      3
      arrow-down
      1
      ·
      11 months ago

      In this case you could view a swap partition as a safety net. Put 20-30GB in a swap partition in case something goes wrong. You won’t miss the disk space.