Skip to content

Commit 5b6fa96

Browse files
FingerlessGlov3szdykstra
authored andcommitted
docs/guides/almalinux: AlmaLinux 10 is here
1 parent 29e0743 commit 5b6fa96

File tree

6 files changed

+23
-13
lines changed

6 files changed

+23
-13
lines changed

docs/guides/almalinux/_include/alma-config.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Set hostname
1010
hostname > /etc/hostname
1111
1212
Fix SELinux filesystem labels
13-
~~~~~~~~~~~~~~~~~~~~~~~~
13+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1414

1515
.. code-block::
1616

docs/guides/almalinux/_include/distro-install.rst

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
Install Alma
22
--------------
33

4+
Mount kernel virtual filesystems (proc, sysfs, dev, devpts)
5+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6+
7+
.. code-block:: bash
8+
9+
mkdir /mnt/proc /mnt/sys /mnt/dev /mnt/dev/pts
10+
mount -t proc proc /mnt/proc
11+
mount -t sysfs sys /mnt/sys
12+
mount -B /dev /mnt/dev
13+
mount -t devpts pts /mnt/dev/pts
14+
15+
16+
Install Minimal Base
17+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18+
419
.. parsed-literal::
520
621
dnf --installroot=/mnt --releasever=\ |releasever| -y groupinstall "Minimal Install"
@@ -31,8 +46,4 @@ Chroot into the new OS
3146

3247
.. code-block:: bash
3348
34-
mount -t proc proc /mnt/proc
35-
mount -t sysfs sys /mnt/sys
36-
mount -B /dev /mnt/dev
37-
mount -t devpts pts /mnt/dev/pts
3849
chroot /mnt /bin/bash

docs/guides/almalinux/_include/live-environment.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Install updated ZFS packages
1515

1616
.. code-block::
1717
18-
dnf install -y https://zfsonlinux.org/epel/zfs-release-2-3$(rpm --eval "%{dist}").noarch.rpm
18+
dnf install -y https://zfsonlinux.org/epel/zfs-release-2-8$(rpm --eval "%{dist}").noarch.rpm
1919
dnf install -y epel-release
2020
dnf install -y "kernel-devel-uname-r == $(uname -r)"
2121
dnf install -y zfs gdisk

docs/guides/almalinux/_include/zbm-install-deps.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@ Install all packages required to build a ZFSBootMenu image on Alma:
1010
perl-boolean \
1111
git \
1212
fzf \
13-
mbuffer \
1413
kexec-tools

docs/guides/almalinux/_include/zfs-config.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ Install required packages
3434
3535
source /etc/os-release
3636
37-
dnf install -y https://zfsonlinux.org/epel/zfs-release-2-3$(rpm --eval "%{dist}").noarch.rpm
37+
dnf install -y https://zfsonlinux.org/epel/zfs-release-2-8$(rpm --eval "%{dist}").noarch.rpm
3838
dnf install -y epel-release
39-
dnf install -y kernel kernel-devel sudo console-setup efibootmgr langpacks-en dosfstools
39+
dnf install -y kernel kernel-devel sudo efibootmgr langpacks-en dosfstools
4040
dnf install -y zfs zfs-dracut
4141
dnf reinstall -y kernel-core
4242
@@ -54,4 +54,4 @@ Regenerate initramfs
5454
5555
.. note::
5656

57-
Ignore any messages about "findmnt".
57+
Ignore any messages about "findmnt" or "syslog".

docs/guides/almalinux/uefi.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ AlmaLinux (UEFI)
22
================
33

44
.. |distribution| replace:: almalinux
5-
.. |releasever| replace:: 9
5+
.. |releasever| replace:: 10
66

77
.. contents:: Contents
88
:depth: 2
@@ -13,11 +13,11 @@ This guide can be used to install AlmaLinux onto a single disk with or without Z
1313

1414
It assumes the following:
1515

16-
* Your system uses UEFI to boot
16+
* Your system uses UEFI to boot, you may need to disable secureboot
1717
* Your system is x86_64
1818
* You're mildly comfortable with ZFS, EFI and discovering system facts on your own (``lsblk``, ``dmesg``, ``gdisk``, ...)
1919

20-
Download `AlmaLinux 9 Live <https://repo.almalinux.org/almalinux/9/live/x86_64/AlmaLinux-9-latest-x86_64-Live-XFCE.iso>`_
20+
Download `AlmaLinux 10 Live <https://repo.almalinux.org/almalinux/10/live/x86_64/AlmaLinux-10-latest-x86_64-Live-GNOME.iso>`_
2121
, write it to a USB drive and boot your system in EFI mode.
2222

2323
.. include:: ../_include/efi-boot-check.rst

0 commit comments

Comments
 (0)