Hello all, sorry for such a newbish question, as I should probably know how to properly partition a hard drive, but I really don’t know where to start. So what I’m looking to do is install a Debian distro, RHEL, and Arch. Want to go with Mint LMDE, Manjaro, and Fedora. I do not need very much storage, so I don’t think space is an issue. I have like a 500+ something GB ssd and the few things that I do need to store are in a cloud. I pretty much use my laptop for browsing, researching, maybe streaming videos, and hopefully more programming and tinkering as I learn more; that’s about all… no gaming or no data hoarding.

Do I basically just start off installing one distro on the full hard drive and then when I go to install the others, just choose the “run alongside” option? or would I have to manually partition things out? Any thing to worry about with conflicts between different types of distros, etc.? hoping you kind folks can offer me some simple advice on how to go about this without messing up my system. It SEEMS simple enough and it might be so, but I just don’t personally know how to go about it lol. Thanks alot!!

  • @Gurfaild
    link
    fedilink
    210 months ago

    If you install your first distro without creating any partitions manually, the installer will probably create an EFI partition. Maybe it wouldn’t need to create one on your specific system, but it will probably do it anyway.

    • @Macaroni9538@lemmy.mlOP
      link
      fedilink
      110 months ago

      gotcha! now how would that storage partition work? like do you point each distro to that partition? is that how that works?

      • @Gurfaild
        link
        fedilink
        210 months ago

        Usually you create an entry in /etc/fstab that tells the system which partition should be mounted where. I’d do that in each distro once you have installed all of them.

        • @Macaroni9538@lemmy.mlOP
          link
          fedilink
          110 months ago

          But how do you know which partition should be mounted wear and Im sorta confused by that statement. Like what do you mean by “where”? Aren’t they all on the same hard drive, so wouldn’t they all just mount to your drive?

          • @Gurfaild
            link
            fedilink
            210 months ago

            It’s similar to how drive letters work in Windows: the partition you installed it on is C:\ and you can assign any other letter to any other partition.

            On Linux, the partition you installed it on is / and you can mount other partitions in any empty directory.

            • @Macaroni9538@lemmy.mlOP
              link
              fedilink
              110 months ago

              I understand. Would I mount all partitions to root? also I just thought about something; what about gpt format? I know that is used for linux but where does that come in? like are ext4 and gpt the same types of things or different types of formats for different things?

              • @Gurfaild
                link
                fedilink
                210 months ago

                You can only mount one partition at one mount point, but any empty directory on one partition can be a mount point for another partition.

                GPT is a partition table and is not used for Linux specifically, but on any computer with UEFI - it defines how to find partitions on a disk, but not how they are formatted.

                ext4 is a filesystem - formatting a partition with ext4 means creating data structures that tell the OS where to find files and directories in the partition.

                • @Macaroni9538@lemmy.mlOP
                  link
                  fedilink
                  110 months ago

                  Ahh ok I understand the filesystem types but still darn confused about the mount points. So the first distro I should mount to root??? then how could I partition the next distros in empty partitions that don’t have directories yet (since theres no distro on them yet). Sorry, just getting a lil confused on some parts

                  • @Gurfaild
                    link
                    fedilink
                    210 months ago

                    Mount points are specific to one install - for example, you can mount your Manjaro root partition as /mnt/manjaro on Fedora. From every distro’s perspective, the partition it is installed on is /.

                    You seem to be mixing up the locations of partitions and mount points - a partition is somewhere on a disk and a mount point is basically a sign that points to it, and every distro can have different signs that point to the same thing.