Wie man uvcdynctrl auf Raspberry Pi OS Bullseye installiert

Problem

Sie versuchen, uvcdynctrl auf Raspberry Pi OS Bullseye-Version zu installieren mit

install_uvcdynctrl.sh
sudo apt -y install uvcdynctrl

das System kann das Paket nicht finden:

apt_unable_locate.txt
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package uvcdynctrl

Lösung

Das uvcdynctrl-Paket ist nicht im Standard-Repository von Raspberry Pi OS verfügbar, sondern nur im bullseye-backports-Repository.

Um das Problem zu lösen, aktivieren Sie das Backports-Repository:

Fügen Sie die folgenden Zeilen am Ende von /etc/apt/sources.list hinzu:

sources_list_backports.txt
deb http://deb.debian.org/debian bullseye-backports main contrib non-free
deb-src http://deb.debian.org/debian bullseye-backports main contrib non-free

Führen Sie danach aus

apt_update.sh
sudo apt update

und versuchen Sie schließlich, uvcdynctrl erneut zu installieren:

install_uvcdynctrl.sh
sudo apt -y install uvcdynctrl

Check out similar posts by category: Linux, Raspberry Pi