Skip to content
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
11 changes: 11 additions & 0 deletions tutorials/easy-to-use-oso.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@ tmpfs 3.2G 32K 3.2G 1% /run/user/0
tar -xvf oso_v1.4.0.tgz
```
- Download the OSO GPG Key from https://public.dhe.ibm.com/systems/hyper-protect/OSO_GPG_Key.pub
```
wget -P "$OSO_HOME" https://public.dhe.ibm.com/systems/hyper-protect/OSO_GPG_Key.pub
```
```
export OSO_GPGKEY=$OSO_HOME/OSO_GPG_Key.pub
```
Expand All @@ -219,6 +222,14 @@ tmpfs 3.2G 32K 3.2G 1% /run/user/0
```
1. Download Logging Server image
- Download the file `jammy-server-cloudimg-s390x.img` from https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-s390x.img
```
wget -P "$JAMMY_IMAGE" https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-s390x.img
```
- Upload the file to `$JAMMY_IMAGE`
- Rename the file to `jammy`
```
mv $JAMMY_IMAGE/jammy-server-cloudimg-s390x.img $JAMMY_IMAGE/jammy
```
- Upload the file to `$JAMMY_IMAGE`
- Rename the file to `jammy`
1. Copy [kernel-parameters.conf](configuration-files/oso-kernel-parameters.conf) to `/etc/sysctl.d/55-oso-kernel-parameters.conf` and reload sysctl with this command:
Expand Down