Skip to content

Commit

Permalink
Merge pull request #106 from mikalekseev/mikalekseev/update-supported…
Browse files Browse the repository at this point in the history
…-distros

eportal: update supported distros, added Ubuntu 24.04 and Debian 11/12
  • Loading branch information
annkots authored Dec 27, 2024
2 parents 004aaa4 + 8f5bf8e commit 60af851
Showing 1 changed file with 61 additions and 5 deletions.
66 changes: 61 additions & 5 deletions docs/eportal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ As far as other requirements concerned, we have tested the following configurati
If you are installing for the first time, please confirm with our sales engineering team at [sales@tuxcare.com](sales@tuxcare.com) **BEFORE** trying the installation via the documentation below. Please note that support tickets resulting from not following this recommendation will not be accepted.
:::

ePortal is compatible with 64-bit versions of EL7/8/9 based distros like CentOS 7/8, AlmaLinux 8/9 and Ubuntu 20.04/22.04
ePortal is compatible with 64-bit versions of EL7/8/9 based distros like CentOS 7/8, AlmaLinux 8/9, Ubuntu 20.04/22.04/24.04 and Debian 11/12

### RHEL-based distros

Expand Down Expand Up @@ -110,7 +110,7 @@ Install ePortal:
Setup ePortal repo:

```text
# apt-get install -y --no-install-recommends curl ca-certificates
# apt update && apt install -y --no-install-recommends curl ca-certificates
# curl https://repo.cloudlinux.com/kernelcare/kernelcare.gpg -o /usr/share/keyrings/kcare-eportal.gpg
Expand All @@ -122,15 +122,15 @@ EOL
Install ePortal:

```text
# apt-get update && apt-get install -y --no-install-recommends kcare-eportal
# apt update && apt install -y --no-install-recommends kcare-eportal
```

### Ubuntu 22.04

Setup ePortal repo:

```text
# apt-get install -y --no-install-recommends curl ca-certificates
# apt update && apt install -y --no-install-recommends curl ca-certificates
# curl https://repo.cloudlinux.com/kernelcare/kernelcare.gpg -o /usr/share/keyrings/kcare-eportal.gpg
Expand All @@ -142,7 +142,63 @@ EOL
Install ePortal:

```text
# apt-get update && apt-get install -y --no-install-recommends kcare-eportal
# apt update && apt install -y --no-install-recommends kcare-eportal
```

### Ubuntu 24.04

Setup ePortal repo:

```text
# apt update && apt install -y --no-install-recommends curl ca-certificates
# curl https://repo.cloudlinux.com/kernelcare/kernelcare.gpg -o /usr/share/keyrings/kcare-eportal.gpg
# cat > /etc/apt/sources.list.d/kcare-eportal.list <<EOL
deb [signed-by=/usr/share/keyrings/kcare-eportal.gpg] https://repo.cloudlinux.com/kcare-eportal/24.04 noble main
EOL
```

Install ePortal:

```text
# apt update && apt install -y --no-install-recommends kcare-eportal
```

### Debian 11

```text
# apt update && apt install -y --no-install-recommends curl ca-certificates
# curl https://repo.cloudlinux.com/kernelcare/kernelcare.gpg -o /usr/share/keyrings/kcare-eportal.gpg
# cat > /etc/apt/sources.list.d/kcare-eportal.list <<EOL
deb [signed-by=/usr/share/keyrings/kcare-eportal.gpg] https://repo.cloudlinux.com/kcare-eportal/debian/11 kcare main
EOL
```

Install ePortal:

```text
# apt update && apt install -y --no-install-recommends kcare-eportal
```

### Debian 12

```text
# apt update && apt install -y --no-install-recommends curl ca-certificates
# curl https://repo.cloudlinux.com/kernelcare/kernelcare.gpg -o /usr/share/keyrings/kcare-eportal.gpg
# cat > /etc/apt/sources.list.d/kcare-eportal.list <<EOL
deb [signed-by=/usr/share/keyrings/kcare-eportal.gpg] https://repo.cloudlinux.com/kcare-eportal/debian/12 kcare main
EOL
```

Install ePortal:

```text
# apt update && apt install -y --no-install-recommends kcare-eportal
```

## Allowed hosts
Expand Down

0 comments on commit 60af851

Please sign in to comment.