LILO instructions

This commit is contained in:
Out Of Ideas 2024-01-23 16:32:53 -06:00
parent 0ef9f00335
commit fb95c5bf17
1 changed files with 28 additions and 0 deletions

View File

@ -492,11 +492,39 @@ Update the package manager.
```sh
xbps-install -u xbps
```
### UEFI
Now install efibootmgr.
```sh
xbps-install -S efibootmgr
```
Chroot into the installed system.
### Legacy BIOS
Now install Git and LILO.
```sh
xbps-install -S git lilo
```
Enter the home directory of the regular user.
```sh
cd /home/<user>/
```
Replace **\<user\>** weth the name of the user.
Now create the `.Git` directory. This is where Git repos will be stored. Make sure you get the capitolization correct, or programs might mistake the home folder as a git repo.
```
mkdir .Git
```
Now enter that directory
```sh
cd .Git
```
Now clone the Git repo containing the configs that will be used throughout the guide.
```sh
git clone https://git.disroot.org/oink/Grandma.git
```
Copy the LILO config to `/etc/`
```sh
cp Grandma/Config/lilo/lilo.conf /etc/
```
Reconfigure the kernel.
```sh