gentoo-install/README.md

129 lines
5.7 KiB
Markdown
Raw Normal View History

2020-04-21 14:26:45 +00:00
## About gentoo-install
2020-04-21 14:15:49 +00:00
This script performs a reasonably minimal installation of gentoo. An EFI system is highly
2020-11-25 12:44:34 -01:00
recommended, but legacy BIOS boot is also supported. The script supports both systemd (default)
and OpenRC as the init system. The main performed steps are:
2020-11-25 12:44:34 -01:00
#. Partitioning
#. Download & verify stage3 tarball
#. Extract stage3
#. Initialize portage
#. Install kernel
#. Install additional software
The system will use `sys-kernel/gentoo-kernel-bin`, which should be suitable
to boot most systems out of the box. I strongly recommend you to replace this kernel
with a custom built one, when the system is functional. If you are looking for a way
2020-04-21 14:15:49 +00:00
to detect and manage your kernel configuration, have a look at [autokernel](https://github.com/oddlama/autokernel).
2020-04-21 14:26:45 +00:00
## Quick start
Edit `scripts/config.sh` and execute `./install` in any live system.
2020-11-25 12:44:34 -01:00
You can review the partitioning that will be applied before anything critical is done.
Afterwards, this will apply the partitioning scheme and properly
2020-04-21 14:26:45 +00:00
install the selected stage3 gentoo system. The new system will by default use
2020-11-25 12:44:34 -01:00
`gentoo-kernel-bin` as the kernel, and an initramfs generated by dracut to provide
2020-04-21 14:26:45 +00:00
a bootable environment. The script can optionally install `sshd` and `ansible` to
2020-11-25 12:44:34 -01:00
allow for a convenient setup of the new system afterwards.
2020-04-21 14:26:45 +00:00
## Overview
2020-11-25 12:44:34 -01:00
Here is a more complete overview of what this script does:
#. 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 MAKEOPTS, EMERGE_DEFAULT_OPTS)
#. Select the fastest gentoo mirrors
#. Configure the base system
#. Install git (so you can add your portage overlays later)
#. Install `sys-kernel/gentoo-kernel-bin` (until you replace it)
#. Create efibootmgr entry or install syslinux depending on whether your system uses EFI
#. Generate a basic fstab
#. Ask for a root password
Also, optionally the following will be done:
* Install sshd with secure config
2020-11-25 12:44:34 -01:00
* Install dhcpcd (only for OpenRC)
* Install ansible, create ansible user and add authorized ssh key
* Install additional packages provided in config
Anything else is probably out of scope for this script,
but you can obviously do anything later on when the system is booted.
2020-11-25 12:44:34 -01:00
I highly recommend building a custom kernel. Have a look at the [Recommendations](#Recommendations) section.
2020-04-21 14:26:45 +00:00
## Install
2020-01-06 19:38:28 -01:00
Installing gentoo with this script is simple.
1. Boot into the live system of your choice. As the script requires some utilities,
I recommend using a live system where you can quickly install new software.
Any [Arch Linux](https://www.archlinux.org/download/) live iso works fine.
2. Clone this repository
2020-01-06 19:43:11 -01:00
3. Edit `scripts/config.sh`, and particularily pay attention to
2020-11-25 12:44:34 -01:00
the device which will be partitioned. The script will ask for confirmation
before partitioning, but better be safe there.
2020-01-06 19:43:11 -01:00
4. Execute `./install`. The script will tell you if your live
2020-01-06 19:38:28 -01:00
system is missing any required software.
2020-11-25 12:44:34 -01:00
The script 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.
2020-04-21 14:26:45 +00:00
### Config
The config file `scripts/config.sh` allows you to adjust some parameters of the installation.
The most important ones will probably be the device to partition, and the stage3 tarball name
2020-01-06 19:38:28 -01:00
to install. By default you will get the hardened nomultilib profile without systemd.
2020-04-21 14:26:45 +00:00
### (Optional) sshd
The script can provide a fully configured ssh daemon with reasonably good security settings.
2020-11-25 12:44:34 -01:00
It will by default only allow ed25519 keys, restrict the key exchange
2020-01-09 17:02:52 -01:00
algorithms, disable any password based authentication, and only allow specifically mentioned
users to use ssh service (none by default).
2020-11-25 12:44:34 -01:00
The script will create a group named `sshusers`, and only users in that group will be
allowed to log in via ssh. If you have added a user for yourself, you might want
to add the user to that group. Be aware that root login is always denied.
2020-04-21 14:26:45 +00:00
### (Optional) Ansible
This script can install ansible, create a system user for ansible and add an ssh key of
you choice to the `.authorized_keys` file. This allows you to directly use ansible when
2020-11-25 12:44:34 -01:00
the new system is up to configure the rest of the system. The ansible user will be added to
the sshusers group.
2020-04-21 14:26:45 +00:00
### (Optional) Additional packages
You can enter 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.
Autounmasking will be done automatically.
2020-04-21 14:26:45 +00:00
### Troubleshooting
2020-01-06 19:43:11 -01:00
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 some kind of try loop, and allow you to
fix problems interactively with a shell, to retry, or to skip the command.
2020-04-21 14:26:45 +00:00
## Recommendations
There are some things that you probably want to do after installing the base system,
or should consider:
2020-01-06 19:38:28 -01:00
* Read the news with `eselect news read`.
2020-11-25 12:44:34 -01:00
* Use a custom kernel (config and hardening, see [autokernel](https://github.com/oddlama/autokernel)), 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 the `cpuid2cpuflags` tool
- Set `FEATURES="buildpkg"` if you want to build binary packages
* Use a safe umask like `umask 0077`
2020-01-03 21:48:49 -01:00
2020-04-21 14:26:45 +00:00
## References
2020-01-03 21:48:49 -01:00
* [Sakaki's EFI Install Guide](https://wiki.gentoo.org/wiki/Sakaki%27s_EFI_Install_Guide)
* [Gentoo AMD64 Handbook](https://wiki.gentoo.org/wiki/Handbook:AMD64)