gParted partitioning schemes > Debian vs Redhat distros
Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
Different maintainers have different ideas of what's "normal", so they build different defaults into their installer. It's all arbitrary, do what you like.
I used to have a separate /boot, until I realized that in over a decade I had literally never used it, and it only caused problems when the package manager didn't remove old kernels fast enough and it filled up, so I stopped doing a separate /boot. I also used to have a separate /home, until USB 3.0 SSDs with 500 MB/s transfer rates came out and I realized that if I wanted to re-install my OS, I could back up my entire drive in a few minutes, re-install, then re-load the backup in another few minutes, so why bother with a separate /home? So I stopped using a separate /home. Now I just have two partitions, a small swap just-in-case, and the rest of the drive is /, and it works well for me.
Last edited by suicidaleggroll; 01-04-2017 at 11:24 AM.
I'd certainly stay with /home, because I backup my data every day.
The Red Hat installer (Anaconda) will give you logical volume management if you let it, which does require /boot (I think), but unless you're setting up a server you should be very firm and refuse!
I'd certainly stay with /home, because I backup my data every day.
As do I. You don't need a separate /home partition for that
I just came to the realization that it's a waste of effort (at least for me) to bother with having a separate /home partition when on the rare occasion I need to reinstall (something that might happen once or twice in the computer's entire lifetime) I can just back up the entire drive and then restore /home and whatever else I need in less time than it takes to do the reinstallation itself.
It made sense back when it took a few hours to backup or restore a few hundred gigs, but that's not the case anymore.
Everybody's needs are different though.
Last edited by suicidaleggroll; 01-04-2017 at 03:21 PM.
having a seperate /home partition implies that one can use the same partition across different distros.
however this can cause so much trouble (esp. with "modern" desktop environments) that it's almost akin to hosing your system.
my experience, much easier to filter out the files that take up a lot of space (media) and have those on a seperate data partition, and create a few symlinks after each install:
Code:
$ ls -nGhp $HOME | grep '^l'
lrwxrwxrwx 1 1000 25 Jun 26 2016 VirtualBox VMs -> /home/data/VirtualBox VMs
lrwxrwxrwx 1 1000 20 May 17 2016 documents -> /home/data/documents
lrwxrwxrwx 1 1000 20 May 17 2016 downloads -> /home/data/downloads
lrwxrwxrwx 1 1000 14 Jun 26 2016 git -> /home/data/git
lrwxrwxrwx 1 1000 17 Jun 26 2016 images -> /home/data/images
lrwxrwxrwx 1 1000 15 Jun 26 2016 sync -> /home/data/sync
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.