From 3cccfa7f06d428f3282f481bd659d135c8a72dda Mon Sep 17 00:00:00 2001 From: Mark Haslinghuis Date: Tue, 9 Apr 2024 22:21:06 +0200 Subject: [PATCH 1/5] Add additional installation steps for Ubuntu 23.10 --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index ad4aec7fbf..74561badc8 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,17 @@ The `libatomic` library must also be installed before installing Betaflight Conf sudo apt install libatomic1 ``` +On Ubuntu 23.10 please follow these alternative steps for installation: + +``` +sudo echo "deb http://[COUNTRY CODE].archive.ubuntu.com/ubuntu/ lunar universe" > /etc/apt/sources.list.d/lunar-repos-old.list +sudo apt update +sudo dpkg -i betaflight-configurator_10.10.0-RC3_amd64.deb +sudo apt-get -f install +``` + +Replace `[COUNTRY_CODE]` with your [country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) in ISO 3166 alpha 2 format. + #### Graphics Issues If you experience graphics display problems or smudged/dithered fonts display issues in Betaflight Configurator, try invoking the `betaflight-configurator` executable file with the `--disable-gpu` command line switch. This will switch off hardware graphics acceleration. Likewise, setting your graphics card antialiasing option to OFF (e.g. FXAA parameter on NVidia graphics cards) might be a remedy as well. From dacd805471f7d9dd3f3e7e9af06df1330b536866 Mon Sep 17 00:00:00 2001 From: Mark Haslinghuis Date: Wed, 10 Apr 2024 02:31:15 +0200 Subject: [PATCH 2/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 74561badc8..06442f8b1e 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ On Ubuntu 23.10 please follow these alternative steps for installation: ``` sudo echo "deb http://[COUNTRY CODE].archive.ubuntu.com/ubuntu/ lunar universe" > /etc/apt/sources.list.d/lunar-repos-old.list sudo apt update -sudo dpkg -i betaflight-configurator_10.10.0-RC3_amd64.deb +sudo dpkg -i betaflight-configurator_10.10.0_amd64.deb sudo apt-get -f install ``` From 57fea287eb54b5005921f7b5cb05586e29de8192 Mon Sep 17 00:00:00 2001 From: Mark Haslinghuis Date: Wed, 10 Apr 2024 14:41:40 +0200 Subject: [PATCH 3/5] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 06442f8b1e..7f50926273 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,7 @@ sudo apt install libatomic1 ``` On Ubuntu 23.10 please follow these alternative steps for installation: +_Replace `[COUNTRY_CODE]` with your [country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) in ISO 3166 alpha 2 format_ ``` sudo echo "deb http://[COUNTRY CODE].archive.ubuntu.com/ubuntu/ lunar universe" > /etc/apt/sources.list.d/lunar-repos-old.list @@ -66,8 +67,6 @@ sudo dpkg -i betaflight-configurator_10.10.0_amd64.deb sudo apt-get -f install ``` -Replace `[COUNTRY_CODE]` with your [country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) in ISO 3166 alpha 2 format. - #### Graphics Issues If you experience graphics display problems or smudged/dithered fonts display issues in Betaflight Configurator, try invoking the `betaflight-configurator` executable file with the `--disable-gpu` command line switch. This will switch off hardware graphics acceleration. Likewise, setting your graphics card antialiasing option to OFF (e.g. FXAA parameter on NVidia graphics cards) might be a remedy as well. From d65cd0deca762b07a4039b3cff2787b74a3ec123 Mon Sep 17 00:00:00 2001 From: Mark Haslinghuis Date: Wed, 10 Apr 2024 20:30:06 +0200 Subject: [PATCH 4/5] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 7f50926273..6bf1f19e7c 100644 --- a/README.md +++ b/README.md @@ -58,10 +58,9 @@ sudo apt install libatomic1 ``` On Ubuntu 23.10 please follow these alternative steps for installation: -_Replace `[COUNTRY_CODE]` with your [country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) in ISO 3166 alpha 2 format_ ``` -sudo echo "deb http://[COUNTRY CODE].archive.ubuntu.com/ubuntu/ lunar universe" > /etc/apt/sources.list.d/lunar-repos-old.list +sudo echo "deb http://$(echo "$LANG" | awk -F'_' '{print $2}' | awk -F'.' '{print $1}').archive.ubuntu.com/ubuntu/ lunar universe" > /etc/apt/sources.list.d/lunar-repos-old.list sudo apt update sudo dpkg -i betaflight-configurator_10.10.0_amd64.deb sudo apt-get -f install From ec5b4c50a8c316b461616cad11e6f9708baf09bd Mon Sep 17 00:00:00 2001 From: Mark Haslinghuis Date: Wed, 10 Apr 2024 21:30:53 +0200 Subject: [PATCH 5/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6bf1f19e7c..9776acf305 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ sudo apt install libatomic1 On Ubuntu 23.10 please follow these alternative steps for installation: ``` -sudo echo "deb http://$(echo "$LANG" | awk -F'_' '{print $2}' | awk -F'.' '{print $1}').archive.ubuntu.com/ubuntu/ lunar universe" > /etc/apt/sources.list.d/lunar-repos-old.list +sudo echo "deb http://archive.ubuntu.com/ubuntu/ lunar universe" > /etc/apt/sources.list.d/lunar-repos-old.list sudo apt update sudo dpkg -i betaflight-configurator_10.10.0_amd64.deb sudo apt-get -f install