Skip to content

Commit afc323e

Browse files
updated installation guide
1 parent 9a339ac commit afc323e

1 file changed

Lines changed: 15 additions & 4 deletions

File tree

docs/getting-started/install-kura.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,36 @@ To install Eclipse Kura™ using the APT repository, perform the following s
1212
1. Install the required packages:
1313

1414
```bash
15-
apt install -y curl gpg
15+
sudo apt update
16+
sudo apt install -y curl gpg
1617
```
1718

1819
2. Download the GPG key and add it to the list of trusted keys:
1920

2021
```bash
21-
curl -L "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xba7e3df5edc3fc36" | gpg --dearmor | tee /etc/apt/trusted.gpg.d/kura.gpg > /dev/null
22+
# Add the Eclipse Kura APT repository key
23+
curl -fsSL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xBA7E3DF5EDC3FC36" \
24+
| gpg --dearmor \
25+
| sudo tee /etc/apt/keyrings/kura.gpg > /dev/null
2226
```
2327

2428
3. Add the Kura APT repository to your system's software sources list:
2529
2630
```bash
27-
echo "deb https://repo.eclipse.org/repository/kura-apt/ stable main" | tee /etc/apt/sources.list.d/kura.list
31+
# Add the Eclipse Kura APT repository
32+
sudo tee /etc/apt/sources.list.d/kura.sources > /dev/null << 'EOF'
33+
Types: deb
34+
URIs: https://repo.eclipse.org/repository/kura-apt/
35+
Suites: stable
36+
Components: main
37+
Signed-By: /etc/apt/keyrings/kura.gpg
38+
EOF
2839
```
2940
3041
4. Update the package list:
3142
3243
```bash
33-
apt update
44+
apt update -y
3445
```
3546
3647
5. Install Kura package:

0 commit comments

Comments
 (0)