From 9b8cce46b0eeffd316c928597919997c6fc7c822 Mon Sep 17 00:00:00 2001 From: Out Of Ideas Date: Sun, 28 Jan 2024 21:19:35 -0600 Subject: [PATCH] Instructions for starting services --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index 9ef4345..f8c0c42 100644 --- a/README.md +++ b/README.md @@ -508,6 +508,21 @@ where **\** is replaced with the keyboard layout that you use ```sh ls /usr/share/kbd/keymaps/i386/ ``` +### Setting the number of ttys +Edit `/etc/rc.conf`. +```sh +vis /etc/rc.conf +``` +Replace this +```sh +# Amount of ttys which should be setup. +#TTYS= +``` +with this +```sh +# Keymap to load, see loadkeys(8). +TTYS=9 +``` ### Setting the Locale Edit `/etc/default/libc-locales`. ```sh @@ -521,6 +536,15 @@ Now reconfigure the locales. ```sh xbps-reconfigure -f glibc-locales ``` +### Enabling services +Enable DHCPCD. +``` +ln -s /etc/sv/dhcpcd /var/service/ +``` +Enable SSHD. +``` +ln -s /etc/sv/sshd /var/service/ +``` ### Setting the Root Password Set the root password. ```