Compare commits
3 commits
4dba7db8a0
...
5766dea107
Author | SHA1 | Date | |
---|---|---|---|
5766dea107 | |||
0e9df68bae | |||
50bffff4dc |
5 changed files with 5 additions and 5 deletions
1
docs/alpine-server-setup/home.md
Normal file
1
docs/alpine-server-setup/home.md
Normal file
|
@ -0,0 +1 @@
|
||||||
|
# A Alpine Linux installation
|
|
@ -113,7 +113,7 @@ The `uuid` is needed again and can be obtained by:
|
||||||
Now edit `/boot/loader/void-options.conf` and insert:
|
Now edit `/boot/loader/void-options.conf` and insert:
|
||||||
|
|
||||||
```
|
```
|
||||||
rw rd.luks.name=<uuid>=root root=/dev/disk/by-label/root quiet splash apparmor=1 security=apparmor loglevel=1 rd.lvm.vg=lv0
|
rw rd.luks.name=<uuid>=root root=/dev/disk/by-label/root quiet splash apparmor=1 security=apparmor loglevel=1 rd.shell=0 d.emergency=reboot rd.lvm.vg=lv0
|
||||||
```
|
```
|
||||||
|
|
||||||
To obtain a boot menu. A timeout may be added to `/boot/loader/loader.conf`.
|
To obtain a boot menu. A timeout may be added to `/boot/loader/loader.conf`.
|
||||||
|
|
|
@ -111,7 +111,7 @@ The `uuid` is needed again and can be obtained by:
|
||||||
Now edit `/boot/loader/void-options.conf` and insert:
|
Now edit `/boot/loader/void-options.conf` and insert:
|
||||||
|
|
||||||
```
|
```
|
||||||
rw rd.luks.name=<uuid>=root root=/dev/mapper/root quiet splash apparmor=1 security=apparmor loglevel=1
|
rw rd.luks.name=<uuid>=root root=/dev/mapper/root quiet splash apparmor=1 security=apparmor loglevel=1 rd.shell=0 d.emergency=reboot
|
||||||
```
|
```
|
||||||
|
|
||||||
To obtain a boot menu. A timeout may be added to `/boot/loader/loader.conf`.
|
To obtain a boot menu. A timeout may be added to `/boot/loader/loader.conf`.
|
||||||
|
|
|
@ -6,7 +6,7 @@ It might be desirable to install an LTS kernel for better stability. This can be
|
||||||
# xbps-install -Sy linux-lts linux-lts-headers
|
# xbps-install -Sy linux-lts linux-lts-headers
|
||||||
```
|
```
|
||||||
|
|
||||||
To uninstall the non-lts kernel, ignore the package through `/etc/xbps.d/xbps.conf` by adding:
|
To uninstall the non-lts kernel, ignore the package by creating `/etc/xbps.d/nolinux.conf` and inserting:
|
||||||
|
|
||||||
```
|
```
|
||||||
ignorepkg=linux
|
ignorepkg=linux
|
||||||
|
|
|
@ -18,8 +18,7 @@ The user may be added to certain groups, to give it some rights.
|
||||||
# usermod -aG wheel,audio,video,kvm,tty,input,storage <user>
|
# usermod -aG wheel,audio,video,kvm,tty,input,storage <user>
|
||||||
```
|
```
|
||||||
|
|
||||||
The package `sudo` that is present in the `base-system` package will be removed. Since, it is bloatware. To persist this. That is sudo will not be installed ever again on the system. Edit `/etc/xbps.d/xbps.conf` and insert:
|
The package `sudo` that is present in the `base-system` package will be removed. Since, it is bloatware. To persist this. That is sudo will not be installed ever again on the system. Create `/etc/xbps.d/nosudo.conf` and insert:
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
ignorepkg=sudo
|
ignorepkg=sudo
|
||||||
|
|
Loading…
Reference in a new issue