i recently upgraded to bullseye [32bit]. I did a complete fresh install and RB working as it should,
[EXTRPI011916]
There however is a problem with the Airband VHF setup:
E: Unable to locate package rtl-airband-rb
Airban VHF installation script has packages for Stretch and Buster. There is no package for Bullseye. It therefore fails to install AIRband VHF on Bullseye as it detects the OS is neither Stretch not Buster.
The script can be CHEATED to think that your OS is Buster, and then it will install AIRBand VHF package for Buster on Bullseye. Most likely Buster package will work on Bullseye as well.
(A) Follow this procedure to install by CHEATING:Download and edit installation file by following commands:
wget http://apt.rb24.com/inst_rtl-airband-rb.sh
sudo nano inst_rtl-airband-rb.sh
Scroll down to the line starting with word VERS, i.e. the line below
VERS=`lsb_release -c | awk -F ':' '{print $2}' | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//'`
Add a new line VERS=buster
Just BELOW the original line, so it becomes like this
VERS=`lsb_release -c | awk -F ':' '{print $2}' | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//'`
VERS=buster
Save file (Press Ctrl and O keys together) and Close File (Press Ctrl and X keys together)
Now give following command, and it will install package rtl-airband-rb
sudo bash inst_rtl-airband-rb.sh
After installation is completed and AIRBand VHF is running OK, REMOVE CHEAT by following procedure:
Open sources list file for editing by following command
sudo nano /etc/apt/sources.list.d/rb24.list
You will see this line:
deb https://apt.rb24.com/ buster main
In above line, replace word buster by bullseye, so the line becomes as below:
deb https://apt.rb24.com/ bullseye main
Save file (Ctrl and O Keys together) and Close file (Ctrl and X keys together)
Now update apt
sudo apt update
.