Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Do you use a separate boot partition?
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Installing Gentoo
View previous topic :: View next topic  
Author Message
Qu4rk
n00b
n00b


Joined: 22 Mar 2005
Posts: 74

PostPosted: Tue May 10, 2011 4:37 pm    Post subject: Do you use a separate boot partition? Reply with quote

Do many users use a separate boot partition? And if so, which FS do you make it?

The installation guide which is old makes it an ext 2. I'm wondering do I need one at all & if so, whats the best FS to make it?
Back to top
View user's profile Send private message
andrewthomas
Tux's lil' helper
Tux's lil' helper


Joined: 27 Apr 2010
Posts: 93

PostPosted: Tue May 10, 2011 4:41 pm    Post subject: Reply with quote

I vote no. Unnecessary. I think that this was due to not being able to boot from an extended partition.
Back to top
View user's profile Send private message
DONAHUE
Watchman
Watchman


Joined: 09 Dec 2006
Posts: 7651
Location: Goose Creek SC

PostPosted: Tue May 10, 2011 4:45 pm    Post subject: Reply with quote

I don't.
_________________
Defund the FCC.
Back to top
View user's profile Send private message
John R. Graham
Administrator
Administrator


Joined: 08 Mar 2005
Posts: 10587
Location: Somewhere over Atlanta, Georgia

PostPosted: Tue May 10, 2011 4:54 pm    Post subject: Reply with quote

I do. The traditional arguments for:
  • I use some weird filesystem that Grub doesn't understand.
  • My system is more robust if my kernel is loaded from a filesystem that isn't touched all day long. In fact, I don't even mount the boot partition unless I'm updating it.
  • I have a machine with an old BIOS that can't see all of my drive. I use a boot partition to ensure that the kernel and/or initramfs files will never be placed beyond where my BIOS can read. (Contributed by NeddySeagoon.)
  • I use software RAID0, RAID5 (or above) or LVM on my root partition, which legacy Grub can't handle and don't yet want to mess with Grub 2. (Also contributed by NeddySeagoon.)
  • I encrypt my root partition so I need to load the kernel from an unencrypted partition. (Contributed by ccach0rr0.)
The traditional arguments against:
  • It's more complex and usually not strictly necessary. KISS.
  • (Actually, I'm unaware of any other argument against.)
Comes down to choice. :wink:

If you do decide to have a boot partition, then ext2 is just fine; the choice is much less important than your root partition filesystem.

Edit: Going to make this post a compendium of all the legitimate reasons for and against that I missed in my original post.

- John
_________________
I can confirm that I have received between 0 and 499 National Security Letters.


Last edited by John R. Graham on Tue Jul 26, 2011 5:02 pm; edited 5 times in total
Back to top
View user's profile Send private message
Qu4rk
n00b
n00b


Joined: 22 Mar 2005
Posts: 74

PostPosted: Tue May 10, 2011 4:55 pm    Post subject: Reply with quote

John, what FS do you use for your boot?
Back to top
View user's profile Send private message
John R. Graham
Administrator
Administrator


Joined: 08 Mar 2005
Posts: 10587
Location: Somewhere over Atlanta, Georgia

PostPosted: Tue May 10, 2011 4:58 pm    Post subject: Reply with quote

Sorry; was editing that in above as you were replying. Using the KISS principle, and noting that the boot partition filesystem choice doesn't affect day-to-day performance, I chose ext2.

- John
_________________
I can confirm that I have received between 0 and 499 National Security Letters.
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


Joined: 05 Jul 2003
Posts: 54096
Location: 56N 3W

PostPosted: Tue May 10, 2011 5:37 pm    Post subject: Reply with quote

Qu4rk,

The small /boot partition became required when the BIOS could not read the entire hard drive. That first happened when hard drives reached 528Mb, which is a long time ago now. Its happened a few times since too, around 2G ,4G, 8G, 33G and 137G. It will occur next at 144115Tb. The small /boot ensured that the BIOS could read all the files needed to boot the system.

If you have an older system, with the 137G BIOS limit, fitted with a 160G (say) drive, all will be well until you get a grub or kernel update that leaves some of the binaries above 137G.

Such systems are rare today, so with a plain simple install a /boot is not required. However, if you use raid, except raid1, or logical volume manager. a /boot is essential as grub cannot boot from these volumes.

I use lvm on top of raid5. My /boot is ext2 because there is no point in using a journalled file system for such a small partition.
Today, I could use ext4 without the journal but it was not an option when I installed as grub would not boot from ext4 at the time.
_________________
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Back to top
View user's profile Send private message
cach0rr0
Bodhisattva
Bodhisattva


Joined: 13 Nov 2008
Posts: 4123
Location: Houston, Republic of Texas

PostPosted: Tue May 10, 2011 8:23 pm    Post subject: Reply with quote

i do use one, because for all of my systems the "root partition" is encrypted, as is everything else. So, grub would obviously not be able to read them:
e.g.
Code:

/dev/mapper/root on / type ext3 (rw,noatime,commit=600)
/dev/mapper/var on /var type ext2 (rw)
/dev/mapper/usr on /usr type ext3 (rw,commit=600)
/dev/mapper/tmp on /tmp type ext2 (rw,nosuid,nodev)
/dev/mapper/home on /home type xfs (rw,nosuid,logbufs=8)

_________________
Lost configuring your system?
dump lspci -n here | see Pappy's guide | Link Stash
Back to top
View user's profile Send private message
Frustie
Tux's lil' helper
Tux's lil' helper


Joined: 31 Aug 2007
Posts: 102
Location: My own little planet.

PostPosted: Tue May 10, 2011 9:40 pm    Post subject: Reply with quote

I do as well (ext2), force of habit i guess,
back in the day it happened to be the only partition readable with a boot disk (yes i said disk as in 3.5" )
Back to top
View user's profile Send private message
cwr
Veteran
Veteran


Joined: 17 Dec 2005
Posts: 1969

PostPosted: Wed May 11, 2011 4:32 pm    Post subject: Reply with quote

I tend to mess with different kernels and partition layouts (and distros),
so I use a boot partition (ext2) to make my life easier. I had a lot of
problems in the early days getting Windows and Linux to play nicely
together, and after having to edit the partition table by hand I didn't
want Grub messing with it again. So Windows has hd1-3 to play with,
and Grub boots off hd5. Whatever changes happen to the partititons
beyond hd5, Grub is unaffected, and adding a new kernel or booting
from a new root partition is just a matter of updating grub.conf.

Will
Back to top
View user's profile Send private message
Arkhelion
Apprentice
Apprentice


Joined: 07 Sep 2010
Posts: 151
Location: France

PostPosted: Thu May 12, 2011 9:44 am    Post subject: Reply with quote

Hello,

As my system has root-on-LVM and I do not want to migrate to grub2 too early (I like the simplicity of legacy grub and can't seem to find my way to understand the mess in grub2), I do use a separate /boot partition.

As for others, this partition has "noauto", so it won't mount unless I specifically want to change something in it (kernel upgrade).

As for the FS I really don't think it'll matter that much, /boot partitions tend to have small files, not a long list of them, and are only accessed at boot time, I'm not sure the FS will weigh a lot in boot optimization, so I'd say anything your bootloader can read from.
_________________
Arkhelion
Back to top
View user's profile Send private message
krinn
Watchman
Watchman


Joined: 02 May 2003
Posts: 7470

PostPosted: Thu May 12, 2011 10:13 am    Post subject: Reply with quote

partition as ext2 too
simply to only mount it when need, don't mess with the kernel, that's the thing n°2 to boot (grub is 1), but it's for my server where i wish keep away from everyone my boot section, on my personal desktop because i wish keep it away from my "breakmygentoo" experiments, on my work computer i didn't have one, i simply never play with it.
Back to top
View user's profile Send private message
javeree
Guru
Guru


Joined: 29 Jan 2006
Posts: 453

PostPosted: Thu May 12, 2011 11:08 am    Post subject: Reply with quote

I normally don't, but have made one exception:

A netbook I use as a HTPC that came pre-installed with WinXP and HD-based recovery mechanism. The boot mechannism was definitely not the 'standard bios/windows boot (customized or stripped BIOS even)', as it allows very early to press a key and select the recovery mechanism. I did not want to meddle with that, so I made a separate boot partition on a FAT based USB-stick, and point BIOS to boot from the USB stick.

On another machine I am considering moving a 32 bit gentoo to 64 bit gentoo. My plan is to create a separate partition for the 64 bit install, and use the current 32 bit partition as a boot partition containing both the 32 bit and the 64 bit kernels.

Once the 64bit install is completed, I'll remove the 32 bit install, shrinking that partition into just a boot partition.

So I see that sometimes it has its uses, but I don't need it on 'normal' installs.
Back to top
View user's profile Send private message
solamour
l33t
l33t


Joined: 21 Dec 2004
Posts: 698
Location: San Diego, CA

PostPosted: Tue Jul 26, 2011 7:20 am    Post subject: Reply with quote

I almost always use a single partition for the whole thing without a separate boot partition (because I like to keep things simple and I'm lazy). But once I had to create a boot partition, because this old thing's BIOS wasn't able to recognize a 320GB IDE hard disk.
__
sol
Back to top
View user's profile Send private message
chiefbag
Guru
Guru


Joined: 01 Oct 2010
Posts: 542
Location: The Kingdom

PostPosted: Tue Jul 26, 2011 8:16 am    Post subject: Reply with quote

I always use ext2 on its own partition for boot and usually assign 128MB size, its probably just force of habit at this stage but I do think its nice to have it this way as your boot setup is untouchable in normal operation.
The only time I have not used that layout was when installing on a PS3 where the boot was part of the main partition.
Back to top
View user's profile Send private message
Randy Andy
Veteran
Veteran


Joined: 19 Jun 2007
Posts: 1148
Location: /dev/koelsch

PostPosted: Tue Jul 26, 2011 9:25 am    Post subject: Reply with quote

Only once I had to create a boot partition, because of an old BIOS that wasn't able to recognize IDE hard disks bigger than 8GB.

In all other cases i like to have boot and root on the same partition, not only cause the KISS principle.
Especially since my perferred GRUb legacy was able to boot from my preferred ext4 filesystem.

I like to seperate every installed Linux system with it's own bootloader on its own partition (home is seperate of course).
Then you can couple every different Linux system via GRUBs chainloader, or if you like via menue entry in first grub for direct start.

The advantage i see here is the following: If you're testing with lots of different distros, and most of the stupid once (not like gentoo) which prefers update automatisms for the whole distro, including boot loaders, they can't distroy any other bootloader as their own.

Every kernel in a distros /boot directory belongs only to one linux on the same partition, prevents confusing (ok, KISS), but also for reliability.
If you do something wrong, or got a hard disk crash, you can enter your Bios to say boot from an other disk, and that works too, cause this has it's own Boot loader.

I like this strategy and it was prooved and tested by me for a long time.

The only thing i had to learn before, is how to install grub safe for my needs, and how to repair or fix a broken GRUB installation.

But as often, it's a matter of taste and with gentoo its all about choice. :wink:

Andy.
_________________
If you want to see a Distro done right, compile it yourself!
Back to top
View user's profile Send private message
rh1
Guru
Guru


Joined: 10 Apr 2010
Posts: 501

PostPosted: Tue Jul 26, 2011 12:42 pm    Post subject: Reply with quote

I use a seperate /boot for 2 reasons:
1. My harddrive is encrypted and I use lvm
2. I use grub2 and keep a systemrescuecd iso in /boot so when problems occur (or i break stuff) i don't have to dig out a cd or usb stick to fix them.

I don't strictly need it for the second reason but when booting from iso whatever partition it's on gets mounted and sometimes when trying to fix things you want/need to unmount the filesystem.
Back to top
View user's profile Send private message
darkphader
Veteran
Veteran


Joined: 09 May 2002
Posts: 1217
Location: Motown

PostPosted: Tue Jul 26, 2011 2:54 pm    Post subject: Reply with quote

I use many separate partitions including a separate /boot partition, although have switched from ext2 to ext4 (without journal or huge file support) for it.
_________________
WYSIWYG - What You See Is What You Grep
Back to top
View user's profile Send private message
ToeiRei
Veteran
Veteran


Joined: 03 Jan 2005
Posts: 1191
Location: Austria

PostPosted: Tue Jul 26, 2011 4:16 pm    Post subject: Reply with quote

/boot with ext2, rest is BTRFS. I did install way before GRUB did know about btrfs and I am not wanting to toy around with grub and experimental filesystems. The latter one is dangerous on its own :)
_________________
Please stand by - The mailer daemon is busy burning your messages in hell...
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Installing Gentoo All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum