diff --git a/README.md b/README.md index 9ef34c8..775cd20 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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 +```