Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
imcase authored May 16, 2024
1 parent 7e9552d commit 39d8317
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ To add your PPA (or re-add the Tibbo PPA), you can run the following commands af
```shell
curl -s --compressed "https://tibbotech.github.io/ltpp3g2_ppa/ppa/KEY.gpg" | sudo apt-key add -
sudo curl -s --compressed -o /etc/apt/sources.list.d/my_list_file.list "https://tibbotech.github.io/ltpp3g2_ppa/u0_6_0/my_list_file.list"
sudo apt update -y
sudo apt-get update -y
```
However, please note that should the FOLDER_NAME change from **u0_6_0** to for example **u0_7_0**, then also change the following line
from:
Expand All @@ -50,3 +50,13 @@ to:
```shell
sudo curl -s --compressed -o /etc/apt/sources.list.d/my_list_file.list "https://tibbotech.github.io/ltpp3g2_ppa/u0_7_0/my_list_file.list"
```

## Example of how to install a package
First update & upgrade:
```shell
sudo apt-get update -y && sudo apt-get upgrade -y
```
After that, install the desired package (e.g. tibbo-oobe):
```shell
sudo apt-get install -y tibbo-oobe
```

0 comments on commit 39d8317

Please sign in to comment.