• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Setting up file systems in Linux. Why?

EHobaX

Member
Okay. I have a question that's been bugging me for a while.

Everytime I read a FAQ or manual is says to set up separate file systems with Linux. i.e. /home = 40% of HD, / = 500-800MB, etc.

My question is why? If I install RH or Mandrake, it sets up directories for me like /home /usr, etc. Is there a reason to explicity set up those directories? Is it similar to why you would partition your HD in windows?

Dazed and confused.

EDIT: Oh yeah. IF I do set up the / as 800 MB, when I go through the installer, it says I don't have enough disk space. Is there a way to make the files install to the other /dirs I created?
 
Each mount point has it's own reasons for being recommended. For example if you make /home a seperate partition you can reinstall and format / but keep all your data and config settings in /home intact.

For a home PC the only one I'd really recommend seperating is /home.

EDIT: Oh yeah. IF I do set up the / as 800 MB, when I go through the installer, it says I don't have enough disk space. Is there a way to make the files install to the other /dirs I created?

Install fewer packages, all the packages put things in /usr and /var and if they're not big enough there's not much you can do about it.
 
If you separate /, /home, /usr, /tmp, /var you are isolating the heavily written partitions from your root partition. So if your machine goes down for whatever reason, you have less chance of having to do a manual fsck on your root partition. Throttle your root partition and you'll have the joys of spending a weekend reinstalling.

(in other words, it's safer)
 
Ahh. I see.

Thanks guys for the explanations. I just like to know what's going on with my stuff before I set stuff up. 🙂
 
Back
Top