From 40961faba096e006518e2eceec2ead1cb68ccfd0 Mon Sep 17 00:00:00 2001 From: Mohit Varikuti <65371337+GitHubEmploy@users.noreply.github.com> Date: Wed, 20 Nov 2024 06:21:17 -0800 Subject: [PATCH] Update README.md (#4255) * Update README.md * Update README.md Co-authored-by: Mark Haslinghuis * Update README.md --------- Co-authored-by: Mark Haslinghuis --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index ee02bba3c9..028032c250 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,17 @@ sudo dpkg -i betaflight-configurator_10.10.0_amd64.deb sudo apt-get -f install ``` +On Ubuntu 24.10 and above, please follow these steps, as some deprecated modules are no longer available through apt on this distro: +``` +sudo apt update +wget http://archive.ubuntu.com/ubuntu/pool/universe/g/gconf/libgconf-2-4_3.2.6-4ubuntu1_amd64.deb +wget http://archive.ubuntu.com/ubuntu/pool/universe/g/gconf/gconf2-common_3.2.6-4ubuntu1_all.deb +sudo dpkg -i gconf2-common_3.2.6-4ubuntu1_all.deb +sudo dpkg -i libgconf-2-4_3.2.6-4ubuntu1_amd64.deb +sudo dpkg -i betaflight-configurator_10.10.0_amd64.deb +sudo apt-get -f install +``` + #### 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.