Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

eportal: update supported distros, added Ubuntu 24.04 and Debian 11/12 #106

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 [[email protected]]([email protected]) **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