From 39d831778b5acead8724f8f2466d522b6cffcc78 Mon Sep 17 00:00:00 2001 From: "N. Hien Tran" <64760013+imcase@users.noreply.github.com> Date: Thu, 16 May 2024 13:58:10 +0800 Subject: [PATCH] Update README.md --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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 +```