Skip to content

Commit

Permalink
Update ubuntu.md (#4053)
Browse files Browse the repository at this point in the history
  • Loading branch information
shmorri committed Mar 7, 2023
1 parent 5c563b7 commit 12baf1d
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions docs/admin/install/vm-install/ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,48 @@ tags:
Before you install, check the [VM system requirements](vm-requirements.md).

## Supported Versions
- Ubuntu 22.04
- Ubuntu 20.04

## Install the Package

### Ubuntu 22.04

- Download the release package from the Github Janssen Project
[Releases](https://github.com/JanssenProject/jans/releases)

```
wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans_replace-janssen-version.ubuntu22.04_amd64.deb -P /tmp
```

- Verify integrity of the downloaded package by verifying published `sha256sum`.

Download `sha256sum` file for the package

```shell
wget https://github.com/JanssenProject/jans/releases/download/vreplace-janssen-version/jans_replace-janssen-version.ubuntu20.04_amd64.deb.sha256sum -P /tmp
```

Check the hash if it is matching.

```shell
sha256sum -c /tmp/jans_replace-janssen-version.ubuntu22.04_amd64.deb.sha256sum
```

Output similar to below should confirm the integrity of the downloaded package.

```text
<package-name>: OK
```

- Install the package

```
apt install -y /tmp/jans_replace-janssen-version.ubuntu22.04_amd64.deb
```

### Ubuntu 20.04

- Download the release package from the Github Janssen Project
[Releases](https://github.com/JanssenProject/jans/releases)

Expand Down

0 comments on commit 12baf1d

Please sign in to comment.