b62837c6e4 | ||
---|---|---|
contrib | ||
scripts | ||
tests | ||
LICENSE | ||
README.md | ||
TODO | ||
configure | ||
gentoo.conf.example | ||
install |
README.md
About gentoo-install
This is an installer for gentoo with a simple configuration TUI inspired by menuconfig.
The configurator is only used to generate a gentoo.conf
file, which can also be
edited by hand, or reused later if desired. An example configuration is provided with the repository.
The installer supports the most common disk layouts, different file systems like ext4, ZFS and btrfs as well as additional layers such as LUKS or mdraid. It also supports both EFI (recommended) and BIOS boot, and can be used with systemd or OpenRC as the init system.
Quick start
First, boot into a live environment of your choice. I recommend using an Arch Linux live iso, as the installer will then be able to automatically download required programs or setup zfs support on the fly. After that, proceed with the following steps:
- Either clone this repo or download and extract a copy
- Run
./configure
and save your desired configuration - Begin installation using
./install
Every option is explained in detail in gentoo.conf.example
and in the help menu popups in the configurator.
When installing, you will be asked to review the partitioning before anything critical is done.
Overview
The system will use sys-kernel/gentoo-kernel-bin
, which should be suitable
to boot most systems out of the box. It is strongly recommend to replace this kernel
with a custom built one, when the system is functional.
The installer should be able to run without any user supervision after partitioning, but depending on the current state of the gentoo repository you might need to intervene in case a package fails to emerge. The critical commands will ask you what to do in case of a failure.
Here is an outline of the steps that are carried out:
- Partition disks (supports gpt, raid, luks)
- Download and cryptographically verify the newest stage3 tarball
- Extract the stage3 tarball
- Sync portage tree
- Configure portage (create zz-autounmask files, configure
make.conf
) - Select the fastest gentoo mirrors if desired
- Configure the base system (timezone, keymap, locales, ...)
- Install git and other required tools (e.g. zfs if you have used zfs)
- Install
sys-kernel/gentoo-kernel-bin
(until you can compile your own) - Generate an initramfs with dracut
- Create efibootmgr entry or install syslinux depending on whether your system uses EFI or BIOS
- Generate fstab
- Depending on the configuration:
- (Optional) Install sshd with secure config
- (Optional) Install dhcpcd (if using OpenRC)
- (Optional) Install additional packages provided in config
- Asks if a root password should be set
Anything else is probably out of scope for this script, but you can obviously do what you want later on when the system is booted. Here are some things that you probably want to consider doing after the base system installation is finished:
- Read the news with
eselect news read
. - Compile a custom kernel and remove
gentoo-kernel-bin
- Adjust
/etc/portage/make.conf
- Set
CFLAGS
to-O2 -pipe -march=native
for native builds - Set
CPU_FLAGS_X86
using thecpuid2cpuflags
tool - Set
FEATURES="buildpkg"
if you want to build binary packages
- Set
- Use a safe umask like
umask 0077
If you are looking for a way to detect and manage your kernel configuration, have a look at autokernel.
(Optional) sshd
The script can provide a fully configured ssh daemon with reasonably good security settings. It will by default only allow ed25519 keys, restrict key exchange algorithms to a reasonable subset, disable any password based authentication, and only allow root to login.
You can provide keys that will be written to root's .ssh/authorized_keys
file. This will allow
you to directly continue your setup with your favourite infrastructure management software.
(Optional) Additional packages
You can add any amount of additional packages to be installed on the target system.
These will simply be passed to a final emerge
call before the script is done,
where autounmasking will also be done automatically. It is recommended to keep
this to a minimum, because of the quite "interactive" nature of gentoo package management ;)
Troubleshooting
After the initial sanity check, the script should be able to finish unattendedly. But given the unpredictability of future gentoo versions, you might still run into issues
The script checks every command for success, so if anything fails during installation, you will be given a proper message of what went wrong. Inside the chroot, most commands will be executed in a checked loop, and allow you to interactively fix problems with a shell, to retry, or to skip the command.