From 205671e52b6104dc855420fb37a150649757fb99 Mon Sep 17 00:00:00 2001 From: ToxyFlog1627 Date: Tue, 18 Apr 2023 19:57:55 +0300 Subject: [PATCH] Adding Gentoo-specific intallation step --- readme.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/readme.md b/readme.md index b4d13f8..207405c 100644 --- a/readme.md +++ b/readme.md @@ -112,6 +112,18 @@ If you choose a tty that already has a login/getty running (has a basic login pr # rc-update del agetty.tty2 ``` +On Gentoo if previous command didn't work (there isn't such service), agetty can be disabled in `/etc/inittab` by commenting it out: + +``` +... +# TERMINALS +#x1:12345:respawn:/sbin/agetty 38400 console linux +c1:12345:respawn:/sbin/agetty --noclear 38400 tty1 linux +# c2:2345:respawn:/sbin/agetty 38400 tty2 linux # disable agetty on tty2 +c3:2345:respawn:/sbin/agetty 38400 tty3 linux +... +``` + ### runit ```