this post was submitted on 28 Nov 2024
46 points (96.0% liked)

Linux

48632 readers
1231 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

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Hi all,

I'm currently using Zorin OS, but I'd like to perhaps explore other Linux distributions. Is it possible to dual-boot another distro, and then if I'm satisfied and after having installed all the apps I need, to erase my Zorin OS partition and only use the other, new distro?

you are viewing a single comment's thread
view the rest of the comments
[–] Max_P@lemmy.max-p.me 22 points 3 weeks ago* (last edited 3 weeks ago) (3 children)

You can install as many as will fit on the drive, there's no limit other than your own sanity

[–] LucidBoi@lemmy.dbzer0.com 3 points 3 weeks ago (1 children)

But will I be able to eventually remove OS #1 and switch to the one installed afterwards?

[–] Max_P@lemmy.max-p.me 3 points 3 weeks ago (1 children)

Yes, you just boot a live USB and use GParted to delete what you don't want anymore and grow the rest.

[–] LucidBoi@lemmy.dbzer0.com 2 points 3 weeks ago (1 children)

Based. Btrfs it is. Sounds like a really cool filesystem.

[–] Dima@feddit.uk 5 points 3 weeks ago

If you're using BTRFS and know how to/are prepared to learn, just create separate sub volumes instead of multiple partitions. Means that you don't need to decide how to split up space between different partitions and they are easy to delete without a live USB.

[–] Steamymoomilk@sh.itjust.works 1 points 3 weeks ago (1 children)
  • Assuming your disk is using gpt partition scheme. Dos is limited to 4
[–] Max_P@lemmy.max-p.me 2 points 3 weeks ago

You can always slap LVM or btrfs or ZFS on top to get more. But even with something more basic like ext4 you can still install multiple distros as long as they're in their own folder, and when you pivot root you pivot to a folder of it, it doesn't have to be the root of any filesystem. If you have a BIOS system technically you don't even need a partition table as syslinux fits the ext4 header and can boot from ext4.

I'd probably just do btrfs subvolumes or ZFS datasets though, more reliable and more manageable. And you don't waste space with individual partitions either.

[–] jimmy90@lemmy.world 1 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

i've found that lots of distros do not behave well with mutiple boot scenarios and will overwrite the boot information for existing installs

[–] Max_P@lemmy.max-p.me 3 points 3 weeks ago (1 children)

Using a third-party boot manager like rEFInd helps to bridge the gap with dubious motherboards that don't implement the UEFI spec right. Just make sure all the installed distros have their own ESP, then you can get into whatever distro's GRUB via rEFInd. And it's pretty.

The issue is usually around fighting for the same ESP, and not all distro's GRUB finding the other distros, and made worse by some UEFI firmwares not offering all available EFI applications as bootable so you end up stuck with the wrong GRUB.

[–] __Lost__@lemmy.dbzer0.com 1 points 2 weeks ago (1 children)

If you use refind why bother with grub? Isn't it superfluous?

[–] Max_P@lemmy.max-p.me 1 points 2 weeks ago

Yes, definitely is. Just assuming here OP doesn't want to configure a bootloader manually, so it's easier to just jump into whichever distro's default GRUB.

It's not like you need a bootloader anyway, you can just add direct boot entries with efibootmgr and not use a bootloader at all.