Skip to content

Commit 7aed2e0

Browse files
docs: Added quick setup info (#6207)
Added quick setup info
1 parent feec917 commit 7aed2e0

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,30 @@ Install
5151

5252
Eclipse Kura™ is compatible with Java 21.
5353

54+
### Quick Linux installation
55+
56+
The APT repository provides packages for both **x86‑64** and **arm64** architectures.
57+
To install the latest stable version of **Eclipse Kura™**, run the following commands in a terminal:
58+
59+
```bash
60+
# Install required tools
61+
sudo apt update
62+
sudo apt install -y curl gpg
63+
64+
# Add the Eclipse Kura APT repository key
65+
curl -fsSL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xBA7E3DF5EDC3FC36" \
66+
| gpg --dearmor \
67+
| sudo tee /etc/apt/trusted.gpg.d/kura.gpg > /dev/null
68+
69+
# Add the Eclipse Kura APT repository
70+
echo "deb https://repo.eclipse.org/repository/kura-apt/ stable main" | sudo tee /etc/apt/sources.list.d/kura.list
71+
72+
# Update package index and install Eclipse Kura
73+
sudo apt update
74+
sudo apt install -y kura
75+
```
76+
> **Note:** You may need `sudo` privileges to run these commands.
77+
5478
### Target Gateways Installers
5579
Eclipse Kura™ provides pre-built installers for common development boards. Check the following [link](https://www.eclipse.org/kura/downloads.php) to download the desired installers.
5680
Take a look at [our documentation](https://eclipse-kura.github.io/kura/latest/getting-started/install-kura/) for further information on supported platforms and installer types.

0 commit comments

Comments
 (0)