diff --git a/install.sh b/install.sh deleted file mode 100755 index caaf24c7..00000000 --- a/install.sh +++ /dev/null @@ -1,1019 +0,0 @@ -#!/bin/bash - -######################################################################## -# Adjust this to the latest release image - -TARGET_VERSION_ID="11" -TARGET_PRETTY_NAME="Debian GNU/Linux 11 (bullseye)" -LBHOME="/opt/loxberry" -NODEJS_VERSION="18" - -# -######################################################################## - -# Needed for some LoxBerry scripts -export LBHOMEDIR=$LBHOME -export PERL5LIB=$LBHOME/libs/perllib - -# Run as root -if (( $EUID != 0 )); then - echo "This script has to be run as root." - exit 1 -fi - -if [ -e /boot/rootfsresized ]; then - echo "This script was already executed on this LoxBerry. You cannot reinstall LoxBerry." - echo "If you are sure what you are doing, rm /boot/rootfsresized and restart again." - exit 1 -fi - -echo -e "\n\nNote! If you were logged in as user 'loxberry' and used 'su' to switch to the root account, your connection may be lost now...\n\n" -killall -u loxberry -sleep 3 - -# Commandline options -while getopts "t:b:" o; do - case "${o}" in - t) - TAG=${OPTARG} - ;; - b) - BRANCH=${OPTARG} - ;; - *) - ;; - esac -done -shift $((OPTIND-1)) - -# install needed packages -apt-get -y install jq git - -# Stop loxberry Service -if /bin/systemctl --no-pager status apache2.service; then - /bin/systemctl stop apache2.service -fi -if /bin/systemctl --no-pager status loxberry.service; then - /bin/systemctl disable loxberry.service - /bin/systemctl stop loxberry.service -fi -if /bin/systemctl --no-pager status ssdpd.service; then - /bin/systemctl disable ssdpd.service - /bin/systemctl stop ssdpd.service -fi -if /bin/systemctl --no-pager status mosquitto.service; then - /bin/systemctl disable mosquitto.service - /bin/systemctl stop mosquitto.service -fi -if /bin/systemctl --no-pager status createtmpfs.service; then - /bin/systemctl disable createtmpfs.service - /bin/systemctl stop createtmpfs.service - echo -e "\nThere are some old mounts of tmpfs filesystems. Please reboot and start installation again.\n" - exit 1 -fi - -# Clear screen -tput clear - -# Formating - to be used in echo's -BLACK=`tput setaf 0` -RED=`tput setaf 1` -GREEN=`tput setaf 2` -YELLOW=`tput setaf 3` -BLUE=`tput setaf 4` -MAGENTA=`tput setaf 5` -CYAN=`tput setaf 6` -WHITE=`tput setaf 7` -BOLD=`tput bold` -ULINE=`tput smul` -RESET=`tput sgr0` - -######################################################################## -# Functions - -# Horizontal Rule -HR () { - echo -en "${!1}" - printf '%.s─' $(seq 1 $(tput cols)) - echo -e "${RESET}" -} - -# Section -TITLE () { - echo -e "" - HR "WHITE" - echo -e "${BOLD}$1${RESET}" - HR "WHITE" - echo -e "" -} - -# Messages -OK () { - echo -e "\n${GREEN}[ OK ]${RESET} .... $1" -} -FAIL () { - echo -e "\n${RED}[FAILED ]${RESET} .... $1" -} -WARNING () { - echo -e "\n${MAGENTA}[WARNING]${RESET} .... $1" -} -INFO () { - echo -e "\n${YELLOW}[ INFO ]${RESET} .... $1" -} - -# -######################################################################## - - -# Main Script -HR "GREEN" -echo -e "${BOLD}LoxBerry - BEYOND THE LIMITS${RESET}" -HR "GREEN" - -# Read Distro infos -if [ -e /etc/os-release ]; then - . /etc/os-release - #PRETTY_NAME="Debian GNU/Linux 11 (bullseye)" - #NAME="Debian GNU/Linux" - #VERSION_ID="11" - #VERSION="11 (bullseye)" - #VERSION_CODENAME=bullseye - #ID=debian - #HOME_URL="https://www.debian.org/" - #SUPPORT_URL="https://www.debian.org/support" - #BUG_REPORT_URL="https://bugs.debian.org/" -fi -if [ -e /boot/dietpi/.hw_model ]; then - . /boot/dietpi/.hw_model - #G_HW_MODEL=20 - #G_HW_MODEL_NAME='Virtual Machine (x86_64)' - #G_HW_ARCH=10 - #G_HW_ARCH_NAME='x86_64' - #G_HW_CPUID=0 - #G_HW_CPU_CORES=2 - #G_DISTRO=6 - #G_DISTRO_NAME='bullseye' - #G_ROOTFS_DEV='/dev/sda1' - #G_HW_UUID='0f26dd2a-8ed6-40ee-86e9-c3b204dba1e0' -fi -if [ -e /boot/dietpi/.version ]; then - . /boot/dietpi/.version - #G_DIETPI_VERSION_CORE=8 - #G_DIETPI_VERSION_SUB=13 - #G_DIETPI_VERSION_RC=2 - #G_GITBRANCH='master' - #G_GITOWNER='MichaIng' - #G_LIVE_PATCH_STATUS[0]='applied' - #G_LIVE_PATCH_STATUS[1]='not applicable' -fi - -# Check correct distribution -if [ ! -e /boot/dietpi/.version ]; then - echo -e "\n${RED}This seems not to be a DietPi Image. LoxBerry can only be installed on DietPi.\n" - echo -e "We expect $TARGET_PRETTY_NAME as distribution." - echo -e "Please download the correct image from ${ULINE}https://dietpi.com\n${RESET}" - exit 1 -fi - -if [ $VERSION_ID -ne $TARGET_VERSION_ID ]; then - echo -e "\n${RED}You are running $PRETTY_NAME. This distribution" - echo -e "is not supported by LoxBerry.\n" - echo -e "We expect $TARGET_PRETTY_NAME as distribution." - echo -e "Please download the correct image from ${ULINE}https://dietpi.com\n${RESET}" - exit 1 -fi - -# Get latest release -if [ -z $TAG ]; then - TARGETRELEASE="latest" -else - TARGETRELEASE="tags/$TAG" -fi - -if [ ! -z $BRANCH ]; then - LBVERSION="Branch $BRANCH (latest)" -else - RELEASEJSON=`curl -s \ - -H "Accept: application/vnd.github+json" \ - https://api.github.com/repos/mschlenstedt/Loxberry/releases/$TARGETRELEASE` - - LBVERSION=$(echo $RELEASEJSON | jq -r ".tag_name") - LBNAME=$(echo $RELEASEJSON | jq -r ".name") - LBTARBALL=$(echo $RELEASEJSON | jq -r ".tarball_url") - - if [ -z $LBVERSION ] || [ $LBVERSION = "null" ]; then - FAIL "Cannot download latest release information from GitHub.\n" - exit 1 - fi -fi - -# Welcome screen with overview -echo -e "\nThis script will install ${BOLD}${ULINE}LoxBerry $LBVERSION${RESET} on your system.\n" -echo -e "${RED}${BOLD}WARNING!${RESET}${RED} You cannot undo the installation! Your system will be converted" -echo -e "into a LoxBerry with no return! Nothing will be like it was before ;-)${RESET}" -echo -e "\n${ULINE}Your system seems to be:${RESET}\n" -echo -e "Distribution: $PRETTY_NAME" -echo -e "DietPi Version: $G_DIETPI_VERSION_CORE.$G_DIETPI_VERSION_SUB" -echo -e "Hardware Model: $G_HW_MODEL_NAME" -echo -e "Architecture: $G_HW_ARCH_NAME" -echo -e "\n\nHit ${BOLD}+C${RESET} now to stop, any other input will continue.\n" -read -n 1 -s -r -p "Press any key to continue" -tput clear - -# Download Release -TITLE "Downloading LoxBerry sources from GitHub..." - -rm -rf $LBHOME -mkdir -p $LBHOME -cd $LBHOME - -if [ ! -z $BRANCH ]; then - git clone https://github.com/mschlenstedt/Loxberry.git -b $BRANCH - if [ ! -d $LBHOME/Loxberry ]; then - FAIL "Could not download LoxBerry sources.\n" - exit 1 - else - OK "Successfully downloaded LoxBerry sources." - mv $LBHOME/Loxberry/* $LBHOME - rm -r $LBHOME/Loxberry - fi -else - curl -L -o $LBHOME/src.tar.gz $LBTARBALL - if [ ! -e $LBHOME/src.tar.gz ]; then - FAIL "Could not download LoxBerry sources.\n" - exit 1 - else - OK "Successfully downloaded LoxBerry sources." - fi - # Extracting sources - TITLE "Extracting LoxBerry sources..." - - tar xvfz src.tar.gz --strip-components=1 > /dev/null - if [ $? != 0 ]; then - FAIL "Could not extract LoxBerry sources.\n" - exit 1 - else - OK "Successfully downloaded LoxBerry sources." - rm $LBHOME/src.tar.gz - fi -fi - -# Adding User loxberry -TITLE "Adding user 'loxberry', setting default passwd, removing user 'dietpi'..." - -killall -u loxberry -sleep 3 - -deluser --quiet loxberry > /dev/null 2>&1 -adduser --no-create-home --home $LBHOME --disabled-password --gecos "" loxberry -if [ $? != 0 ]; then - FAIL "Could not create user 'loxberry'.\n" - exit 1 -else - OK "Successfully created user 'loxberry'." -fi - -echo 'loxberry:loxberry' | /usr/sbin/chpasswd -c SHA512 -if [ $? != 0 ]; then - FAIL "Could not set password for user 'loxberry'.\n" - exit 1 -else - OK "Successfully set default password for user 'loxberry'." -fi - -echo 'root:loxberry' | /usr/sbin/chpasswd -c SHA512 -if [ $? != 0 ]; then - FAIL "Could not set password for user 'root'.\n" - exit 1 -else - OK "Successfully set default password for user 'root'." -fi -deluser --quiet dietpi > /dev/null 2>&1 - -# Configuring hardware architecture -TITLE "Configuring your hardware architecture $G_HW_ARCH_NAM..." - -HWMODELFILENAME=$(cat /boot/dietpi/func/dietpi-obtain_hw_model | grep "G_HW_MODEL $G_HW_MODEL " | awk '/.*G_HW_MODEL .*/ {for(i=4; i<=NF; ++i) printf "%s_", $i; print ""}' | sed 's/\//_/g' | sed 's/[()]//g' | sed 's/_$//' | tr '[:upper:]' '[:lower:]') -echo $HWMODELFILENAME > $LBHOME/config/system/is_hwmodel_$HWMODELFILENAME.cfg -echo $G_HW_ARCH_NAME > $LBHOME/config/system/is_arch_$G_HW_ARCH_NAME.cfg - -# Compatibility - this was standard until LB3.0.0.0 -if echo $HWMODELFILENAME | grep -q "x86_64"; then - echo "x64" > $LBHOME/config/system/is_x64.cfg -fi -if echo $HWMODELFILENAME | grep -q "raspberry"; then - echo "raspberry" > $LBHOME/config/system/is_raspberry.cfg -fi - -if [ ! -e $LBHOME/config/system/is_arch_$G_HW_ARCH_NAME.cfg ]; then - FAIL "Could not set your architecture.\n" - exit 1 -else - OK "Successfully set architecture of your system." -fi - -# Installing OpenSSH Server -TITLE "Installing OpenSSH server..." -/boot/dietpi/dietpi-software install 105 - -# Configuring hardware architecture -TITLE "Installing additional software packages from apt repository..." - -echo 'Acquire::GzipIndexes "false";' > /etc/apt/apt.conf.d/98dietpi-uncompressed -/boot/dietpi/func/dietpi-set_software apt-cache clean -apt update - -if [ -e $LBHOME/packages.txt ]; then - PACKAGES="" - echo "" - while read entry - do - if echo $entry | grep -Eq "^ii "; then - VAR=$(echo $entry | sed "s/ / /g" | cut -d " " -f 2 | sed "s/:.*\$//") - PINFO=$(apt-cache show $VAR 2>&1) - if echo $PINFO | grep -Eq "N: Unable to locate"; then - WARNING "Unable to locate package $PACKAGE. Skipping..." - continue - fi - PACKAGE=$(echo $PINFO | grep "Package: " | cut -d " " -f 2) - if [ -z $PACKAGE ] || [ $PACKAGE = "" ]; then - continue - fi - if dpkg -s $PACKAGE > /dev/null 2>&1; then - INFO "$PACKAGE seems to be already installed. Skipping..." - continue - fi - OK "Add package $PACKAGE to the installation queue..." - PACKAGES+="$PACKAGE " - fi - done < $LBHOME/packages.txt -else - FAIL "Could not find packages list: $LBHOME/packages.txt.\n" - exit 1 -fi - -echo "" -apt-get -y install $PACKAGES -if [ $? != 0 ]; then - WARNING "Could not install (at least some) queued packages.\n" -else - OK "Successfully installed all queued packages.\n" -fi - -rm /etc/apt/apt.conf.d/98dietpi-uncompressed -/boot/dietpi/func/dietpi-set_software apt-cache clean -apt update - -# Remove dhcpd - See issue 135 -TITLE "Removing dhcpd..." - -apt purge dhcpcd - -# Adding user loxberry to different additional groups -TITLE "Adding user LoxBerry to some additional groups..." - -# Group membership -/usr/sbin/usermod -a -G dialout loxberry -/usr/sbin/usermod -a -G audio loxberry -/usr/sbin/usermod -a -G gpio loxberry -/usr/sbin/usermod -a -G tty loxberry -/usr/sbin/usermod -a -G www-data loxberry -/usr/sbin/usermod -a -G video loxberry -/usr/sbin/usermod -a -G i2c loxberry - -OK "Successfully configured additional groups." - -# Setting up systemwide environments -TITLE "Settings up systemwide environments..." - -# LoxBerry Home Directory in Environment -awk -v s="LBHOMEDIR=$LBHOME" '/^LBHOMEDIR=/{$0=s;f=1} {a[++n]=$0} END{if(!f)a[++n]=s;for(i=1;i<=n;i++)print a[i]>ARGV[1]}' /etc/environment -awk -v s="LBPHTMLAUTH=$LBHOME/webfrontend/htmlauth/plugins" '/^LBPHTMLAUTH=/{$0=s;f=1} {a[++n]=$0} END{if(!f)a[++n]=s;for(i=1;i<=n;i++)print a[i]>ARGV[1]}' /etc/environment -awk -v s="LBPHTML=$LBHOME/webfrontend/html/plugins" '/^LBPHTML=/{$0=s;f=1} {a[++n]=$0} END{if(!f)a[++n]=s;for(i=1;i<=n;i++)print a[i]>ARGV[1]}' /etc/environment -awk -v s="LBPTEMPL=$LBHOME/templates/plugins" '/^LBPTEMPL=/{$0=s;f=1} {a[++n]=$0} END{if(!f)a[++n]=s;for(i=1;i<=n;i++)print a[i]>ARGV[1]}' /etc/environment -awk -v s="LBPDATA=$LBHOME/data/plugins" '/^LBPDATA=/{$0=s;f=1} {a[++n]=$0} END{if(!f)a[++n]=s;for(i=1;i<=n;i++)print a[i]>ARGV[1]}' /etc/environment -awk -v s="LBPLOG=$LBHOME/log/plugins" '/^LBPLOG=/{$0=s;f=1} {a[++n]=$0} END{if(!f)a[++n]=s;for(i=1;i<=n;i++)print a[i]>ARGV[1]}' /etc/environment -awk -v s="LBPCONFIG=$LBHOME/config/plugins" '/^LBPCONFIG=/{$0=s;f=1} {a[++n]=$0} END{if(!f)a[++n]=s;for(i=1;i<=n;i++)print a[i]>ARGV[1]}' /etc/environment -awk -v s="LBPBIN=$LBHOME/bin/plugins" '/^LBPBIN=/{$0=s;f=1} {a[++n]=$0} END{if(!f)a[++n]=s;for(i=1;i<=n;i++)print a[i]>ARGV[1]}' /etc/environment -awk -v s="LBSHTMLAUTH=$LBHOME/webfrontend/htmlauth/system" '/^LBSHTMLAUTH=/{$0=s;f=1} {a[++n]=$0} END{if(!f)a[++n]=s;for(i=1;i<=n;i++)print a[i]>ARGV[1]}' /etc/environment -awk -v s="LBSHTML=$LBHOME/webfrontend/html/system" '/^LBSHTML=/{$0=s;f=1} {a[++n]=$0} END{if(!f)a[++n]=s;for(i=1;i<=n;i++)print a[i]>ARGV[1]}' /etc/environment -awk -v s="LBSTEMPL=$LBHOME/templates/system" '/^LBSTEMPL=/{$0=s;f=1} {a[++n]=$0} END{if(!f)a[++n]=s;for(i=1;i<=n;i++)print a[i]>ARGV[1]}' /etc/environment -awk -v s="LBSDATA=$LBHOME/data/system" '/^LBSDATA=/{$0=s;f=1} {a[++n]=$0} END{if(!f)a[++n]=s;for(i=1;i<=n;i++)print a[i]>ARGV[1]}' /etc/environment -awk -v s="LBSLOG=$LBHOME/log/system" '/^LBSLOG=/{$0=s;f=1} {a[++n]=$0} END{if(!f)a[++n]=s;for(i=1;i<=n;i++)print a[i]>ARGV[1]}' /etc/environment -awk -v s="LBSTMPFSLOG=$LBHOME/log/system_tmpfs" '/^LBSTMPFSLOG=/{$0=s;f=1} {a[++n]=$0} END{if(!f)a[++n]=s;for(i=1;i<=n;i++)print a[i]>ARGV[1]}' /etc/environment -awk -v s="LBSCONFIG=$LBHOME/config/system" '/^LBSCONFIG=/{$0=s;f=1} {a[++n]=$0} END{if(!f)a[++n]=s;for(i=1;i<=n;i++)print a[i]>ARGV[1]}' /etc/environment -awk -v s="LBSBIN=$LBHOME/bin" '/^LBSBIN=/{$0=s;f=1} {a[++n]=$0} END{if(!f)a[++n]=s;for(i=1;i<=n;i++)print a[i]>ARGV[1]}' /etc/environment -awk -v s="LBSSBIN=$LBHOME/sbin" '/^LBSSBIN=/{$0=s;f=1} {a[++n]=$0} END{if(!f)a[++n]=s;for(i=1;i<=n;i++)print a[i]>ARGV[1]}' /etc/environment -awk -v s="PERL5LIB=$LBHOME/libs/perllib" '/^PERL5LIB=/{$0=s;f=1} {a[++n]=$0} END{if(!f)a[++n]=s;for(i=1;i<=n;i++)print a[i]>ARGV[1]}' /etc/environment - -# Set environments for Apache -sed -i -e "s#/opt/loxberry/#$LBHOME/#g" $LBHOME/system/apache2/envvars - -# Environment Variablen laden -source /etc/environment - -# LoxBerry global environment variables in Apache -if [ -z $LBSSBIN ]; then - FAIL "Could not set systemwide environments.\n" - exit 1 -else - OK "Successfully set systemwide environments." -fi - -# Configuring sudoers -TITLE "Setting up sudoers..." - -# sudoers.d -if [ -d /etc/sudoers.d ]; then - mv /etc/sudoers.d /etc/sudoers.d.orig -fi -if [ -L /etc/sudoers.d ]; then - rm /etc/sudoers.d -fi -ln -s $LBHOME/system/sudoers/ /etc/sudoers.d - -# sudoers: Replace /opt/loxberry with current home path -sed -i -e "s#/opt/loxberry/#$LBHOME/#g" $LBHOME/system/sudoers/lbdefaults - -if [ ! -L /etc/sudoers.d ]; then - FAIL "Could not set up sudoers.\n" - exit 1 -else - OK "Successfully set up sudoers." -fi - -# Configuring profile -TITLE "Setting up profile for user 'loxberry'sudoers..." - -# profile.d/loxberry.sh -if [ -L /etc/profile.d/loxberry.sh ]; then - rm /etc/profile.d/loxberry.sh -fi -ln -s $LBHOME/system/profile/loxberry.sh /etc/profile.d/loxberry.sh - -if [ ! -L /etc/profile.d/loxberry.sh ]; then - FAIL "Could not set up profile for user 'loxberry'.\n" - exit 1 -else - OK "Successfully set up profile for user 'loxberry'." -fi - -# Setting up Initskript for LoxBerry -TITLE "Setting up Service files for LoxBerry..." - -# LoxBerry Init Script -if [ -e /etc/systemd/system/loxberry.service ]; then - rm /etc/systemd/system/loxberry.service -fi -ln -s $LBHOME/system/systemd/loxberry.service /etc/systemd/system/loxberry.service -echo "" -/bin/systemctl daemon-reload -/bin/systemctl enable loxberry.service - -if ! /bin/systemctl is-enabled loxberry.service; then - FAIL "Could not set up Service for LoxBerry.\n" - exit 1 -else - OK "Successfully set up service for LoxBerry." -fi - -# Createtmpfs Init Script -if [ -e /etc/systemd/system/createtmpfs.service ]; then - rm /etc/systemd/system/createtmpfs.service -fi -ln -s $LBHOME/system/systemd/createtmpfs.service /etc/systemd/system/createtmpfs.service -echo "" -/bin/systemctl daemon-reload -/bin/systemctl enable createtmpfs.service - -if ! /bin/systemctl is-enabled createtmpfs.service; then - FAIL "Could not set up Service for Createtmpfs.\n" - exit 1 -else - OK "Successfully set up service for Createtmpfs." -fi - -# LoxBerry SSDPD Service -if [ -e /etc/systemd/system/ssdpd.service ]; then - rm /etc/systemd/system/ssdpd.service -fi -ln -s $LBHOME/system/systemd/ssdpd.service /etc/systemd/system/ssdpd.service -echo "" -/bin/systemctl daemon-reload -/bin/systemctl enable ssdpd.service - -if ! /bin/systemctl is-enabled ssdpd.service; then - FAIL "Could not set up Service for SSDPD.\n" - exit 1 -else - OK "Successfully set up service for SSDPD." -fi - -# LoxBerry Mosquitto Service -if [ -e /etc/systemd/system/mosquitto.service ]; then - rm /etc/systemd/system/mosquitto.service -fi -ln -s $LBHOME/system/systemd/mosquitto.service /etc/systemd/system/mosquitto.service -echo "" -/bin/systemctl daemon-reload -/bin/systemctl enable mosquitto.service - -if ! /bin/systemctl is-enabled mosquitto.service; then - FAIL "Could not set up Service for Mosquitto.\n" - exit 1 -else - OK "Successfully set up service for Mosquitto." -fi - -# PHP -PHPVER=$(apt-cache show php | grep "Depends: " | sed "s/Depends: php//") -TITLE "Configuring PHP $PHPVER..." - -if [ -e /etc/php/$PHPVER ] && [ ! -e /etc/php/$PHPVER/apache2/conf.d/20-loxberry.ini ]; then - mkdir -p /etc/php/$PHPVER/apache2/conf.d - mkdir -p /etc/php/$PHPVER/cgi/conf.d - mkdir -p /etc/php/$PHPVER/cli/conf.d - rm /etc/php/$PHPVER/apache2/conf.d/20-loxberry.ini - rm /etc/php/$PHPVER/cgi/conf.d/20-loxberry.ini - rm /etc/php/$PHPVER/cli/conf.d/20-loxberry.ini - ln -s $LBHOME/system/php/loxberry-apache.ini /etc/php/$PHPVER/apache2/conf.d/20-loxberry-apache.ini - ln -s $LBHOME/system/php/loxberry-apache.ini /etc/php/$PHPVER/cgi/conf.d/20-loxberry-apache.ini - ln -s $LBHOME/system/php/20-loxberry-cli.ini /etc/php/$PHPVER/cli/conf.d/20-loxberry-cli.ini -fi - -if [ ! -L /etc/php/$PHPVER/apache2/conf.d/20-loxberry-apache.ini ]; then - FAIL "Could not set up PHP $PHPVER.\n" - exit 1 -else - OK "Successfully set up PHP $PHPVER." -fi - -# Configuring Apache2 -TITLE "Configuring Apache2..." - -# Apache Config -if [ ! -L /etc/apache2 ]; then - mv /etc/apache2 /etc/apache2.orig -fi -if [ -L /etc/apache2 ]; then - rm /etc/apache2 -fi -ln -s $LBHOME/system/apache2 /etc/apache2 -if [ ! -L /etc/apache2 ]; then - FAIL "Could not set up Apache2 Config.\n" - exit 1 -else - OK "Successfully set up Apache2 Config." -fi - -a2dismod php* -a2dissite 001-default-ssl -rm $LBHOME/system/apache2/mods-available/php* -rm $LBHOME/system/apache2/mods-enabled/php* -cp /etc/apache2.orig/mods-available/php* /etc/apache2/mods-available -a2enmod php* - -# Disable PrivateTmp for Apache2 on systemd -if [ ! -e /etc/systemd/system/apache2.service.d/privatetmp.conf ]; then - mkdir -p /etc/systemd/system/apache2.service.d - ln -s $LBHOME/system/systemd/apache-privatetmp.conf /etc/systemd/system/apache2.service.d/privatetmp.conf -fi - -if [ ! -L /etc/systemd/system/apache2.service.d/privatetmp.conf]; then - FAIL "Could not set up Apache2 Private Temp Config.\n" - exit 1 -else - OK "Successfully set up Apache2 Private Temp Config." -fi - -# Configuring Network Interfaces -TITLE "Configuring Network..." - -# Network config -if [ ! -L /etc/network/interfaces ]; then - mv /etc/network/interfaces /etc/network/interfaces.old -fi -if [ -L /etc/network/interfaces ]; then - rm /etc/network/interfaces -fi -ln -s $LBHOME/system/network/interfaces /etc/network/interfaces - -if [ ! -L /etc/network/interfaces ]; then - FAIL "Could not configure Network Interfaces.\n" - exit 1 -else - OK "Successfully configured Network Interfaces." -fi - -# Configuring Samba -TITLE "Configuring Samba..." - -if [ ! -L /etc/samba ]; then - mv /etc/samba /etc/samba.old -fi -if [ -L /etc/samba ]; then - rm /etc/samba -fi -ln -s $LBHOME/system/samba /etc/samba -sed -i -e "s#/opt/loxberry/#$LBHOME/#g" $LBHOME/system/samba/smb.conf - -if [ ! -L /etc/samba ]; then - FAIL "Could not set up Samba Config.\n" - exit 1 -fi - -if ! testparm -s --debuglevel=1 $LBHOME/system/samba/smb.conf; then - FAIL "Could not set up Samba Config.\n" - exit 1 -else - OK "Successfully set up Samba Config." -fi - -if systemctl --no-pager status smbd; then - /bin/systemctl restart smbd -fi -if systemctl --no-pager status nmbd; then - /bin/systemctl restart nmbd -fi - -if ! /bin/systemctl --no-pager status smbd; then - FAIL "Could not reconfigure Samba.\n" - exit 1 -else - OK "Successfully reconfigured Samba." -fi - -# Add Samba default user -(echo 'loxberry'; echo 'loxberry') | smbpasswd -a -s loxberry - -# Configuring VSFTP -TITLE "Configuring VSFTP..." - -if [ ! -L /etc/vsftpd.conf ]; then - mv /etc/vsftpd.conf /etc/vsftpd.conf.old -fi -if [ -L /etc/vsftpd.conf ]; then - rm /etc/vsftpd.conf -fi -ln -s $LBHOME/system/vsftpd/vsftpd.conf /etc/vsftpd.conf - -if [ ! -L /etc/vsftpd.conf ]; then - FAIL "Could not set up VSFTPD Config.\n" - exit 1 -else - OK "Successfully set up VSFTPD Config." -fi - -if systemctl --no-pager status vsftpd; then - /bin/systemctl restart vsftpd -fi - -if ! /bin/systemctl --no-pager status vsftpd; then - FAIL "Could not reconfigure VSFTPD.\n" - exit 1 -else - OK "Successfully reconfigured VSFTPD." -fi - -# Configuring MSMTP -TITLE "Configuring MSMTP..." - -if [ -d $LBHOME/system/msmtp ]; then - rm /etc/msmtprc - ln -s $LBHOME/system/msmtp/msmtprc /etc/msmtprc - chmod 0600 $LBHOME/system/msmtp/msmtprc -fi -chmod 0600 $LBHOME/system/msmtp/aliases - -if [ ! -e /etc/msmtprc ]; then - FAIL "Could not set up MSMTP Config.\n" - exit 1 -else - OK "Successfully set up MSMTP Config." -fi - -# Cron.d -TITLE "Configuring Cron.d..." - -if [ ! -L /etc/cron.d ]; then - mv /etc/cron.d /etc/cron.d.orig -fi -if [ -L /etc/cron.d ]; then - rm /etc/cron.d -fi -ln -s $LBHOME/system/cron/cron.d /etc/cron.d - -if [ ! -L /etc/cron.d ]; then - FAIL "Could not set up Cron.d.\n" - exit 1 -else - OK "Successfully set up Cron.d." -fi -cp /etc/cron.d.orig/* /etc/cron.d - -# Skel for system logs, LB system logs and LB plugin logs -#if [ -d $LBHOME/log/skel_system/ ]; then -# find $LBHOME/log/skel_system/ -type f -exec rm {} \; -#fi -#if [ -d $LBHOME/log/skel_syslog/ ]; then -# find $LBHOME/log/skel_syslog/ -type f -exec rm {} \; -#fi - -# USB Mounts -TITLE "Configuring automatic USB Mounts..." - -# Systemd service for usb automount -mkdir -p /media/usb -if [ -e /etc/systemd/system/usb-mount@.service ]; then - rm /etc/systemd/system/usb-mount@.service -fi -ln -s $LBHOME/system/systemd/usb-mount@.service /etc/systemd/system/usb-mount@.service - -# Create udev rules for usbautomount -if [ -e /etc/udev/rules.d/99-usbmount.rules ]; then - rm /etc/udev/rules.d/99-usbmount.rules -fi -ln -s $LBHOME/system/udev/usbmount.rules /etc/udev/rules.d/99-usbmount.rules -sed -i -e "s#/opt/loxberry/#$LBHOME/#g" $LBHOME/system/udev/usbmount.rules - -/bin/systemctl daemon-reload - -if [ ! -L /etc/systemd/system/usb-mount@.service ]; then - FAIL "Could not set up Service for USB-Mount.\n" - exit 1 -else - OK "Successfully set up service for USB-Mount." -fi -if [ ! -L /etc/udev/rules.d/99-usbmount.rules ]; then - FAIL "Could not set up udev Rules for USB-Mount.\n" - exit 1 -else - OK "Successfully set up udev Rules for USB-Mount." -fi - -# Configure autofs -TITLE "Configuring AutoFS for Samba Netshares..." - -mkdir -p /media/smb -if [ -L /etc/creds ]; then - rm /etc/creds -fi -ln -s $LBHOME/system/samba/credentials /etc/creds -sed -i -e "s#/opt/loxberry/#$LBHOME/#g" $LBHOME/system/autofs/loxberry_smb.autofs -ln -s $LBHOME/system/autofs/loxberry_smb.autofs /etc/auto.master.d/loxberry_smb.autofs -chmod 0755 $LBHOME/system/autofs/loxberry_smb.autofs -/bin/systemctl restart autofs - -if ! /bin/systemctl --no-pager status autofs; then - FAIL "Could not reconfigure AutoFS.\n" - exit 1 -else - OK "Successfully reconfigured AutoFS." -fi - -# Config for watchdog -TITLE "Configuring Watchdog..." - -/bin/systemctl disable watchdog.service -/bin/systemctl stop watchdog.service - -if [ ! -L /etc/watchdog.conf ]; then - mv /etc/watchdog.conf /etc/watchdog.orig -fi -if [ -L /etc/watchdog.conf ]; then - rm /etc/watchdog.conf -fi -if ! cat /etc/default/watchdog | grep -q -e "watchdog_options"; then - echo 'watchdog_options="-v"' >> /etc/default/watchdog -fi -if ! cat /etc/default/watchdog | grep -q -e "watchdog_options.*-v"; then - /bin/sed -i 's#watchdog_options="\(.*\)"#watchdog_options="\1 -v"#' /etc/default/watchdog -fi -sed -i -e "s#/opt/loxberry/#$LBHOME/#g" $LBHOME/system/watchdog/rsyslog.conf -ln -f -s $LBHOME/system/watchdog/watchdog.conf /etc/watchdog.conf -ln -f -s $LBHOME/system/watchdog/rsyslog.conf /etc/rsyslog.d/10-watchdog.conf -/bin/systemctl restart rsyslog.service - -if [ ! -L /etc/watchdog.conf ]; then - FAIL "Could not reconfigure Watchdog.\n" - exit 1 -else - OK "Successfully reconfigured Watchdog." -fi - -# Activating i2c -TITLE "Enabling I2C (if supported)..." - -/boot/dietpi/func/dietpi-set_hardware i2c enable - -# Set hosts environment -TITLE "Setting hosts environment..." - -rm /etc/network/if-up.d/001hosts -rm /etc/dhcp/dhclient-exit-hooks.d/sethosts -ln -f -s $LBHOME/sbin/sethosts.sh /etc/network/if-up.d/001host -ln -f -s $LBHOME/sbin/sethosts.sh /etc/dhcp/dhclient-exit-hooks.d/sethosts - -if [ ! -L /etc/network/if-up.d/001host ]; then - FAIL "Could not set host environment.\n" - exit 1 -else - OK "Successfully set host environment." -fi - -# Configure listchanges to have no output - for apt beeing non-interactive -TITLE "Configuring listchanges to be quit..." - -if [ -e /etc/apt/listchanges.conf ]; then - sed -i 's/frontend=pager/frontend=none/' /etc/apt/listchanges.conf -fi - -OK "Successfully configured listchanges." - -# Reconfigure PAM -TITLE "Reconfigure PAM to allow shorter (weaker) passwords..." - -sed -i 's/obscure/minlen=1/' /etc/pam.d/common-password - -if ! cat /etc/pam.d/common-password | grep -q "minlen="; then - FAIL "Could not reconfigure PAM.\n" - exit 1 -else - OK "Successfully reconfigured PAM." -fi - -# Reconfigure Unattended Updates -TITLE "Reconfigure Unattended Updates for LoxBerry..." - -if [ -e /etc/apt/apt.conf.d/02periodic ]; then - rm /etc/apt/apt.conf.d/02periodic -fi -if [ -e /etc/apt/apt.conf.d/50unattended-upgrades ]; then - rm /etc/apt/apt.conf.d/50unattended-upgrades -fi -ln -f -s $LBHOME/system/unattended-upgrades/periodic.conf /etc/apt/apt.conf.d/02periodic -ln -f -s $LBHOME/system/unattended-upgrades/unattended-upgrades.conf /etc/apt/apt.conf.d/50unattended-upgrades - -if [ ! -L /etc/apt/apt.conf.d/50unattended-upgrades ]; then - FAIL "Could not reconfigure Unattended Updates.\n" - exit 1 -else - OK "Successfully reconfigured Unattended Updates." -fi - -/bin/systemctl enable unattended-upgrades - -if ! /bin/systemctl is-enabled unattended-upgrades; then - FAIL "Could not enable Unattended Updates.\n" - exit 1 -else - OK "Successfully enabled Unattended Updates." -fi - -# Enable LoxBerry Update after next reboot -TITLE "Enable LoxBerry update after next reboot..." - -touch /boot/do_lbupdate - -if [ ! -e /boot/do_lbupdate ]; then - FAIL "Could not enable LoxBerry Update.\n" - exit 1 -else - OK "Successfully enabled LoxBerry Update." -fi - -# Automatically repair filesystem errors on boot -TITLE "Automatically repair filesystem errors on boot..." - -if [ ! -f /etc/default/rcS ]; then - echo "FSCKFIX=yes" > /etc/default/rcS -else - if ! cat /etc/default/rcS | grep -q "FSCKFIX"; then - echo "FSCKFIX=yes" >> /etc/default/rcS - fi -fi - -if [ ! -f /etc/default/rcS ]; then - FAIL "Could not configure FSCK / rcS.\n" - exit 1 -else - OK "Successfully configured FSCK / rcS." -fi - -# Disable SSH Root password access -TITLE "Disable root login via ssh and password..." - -/boot/dietpi/func/dietpi-set_software disable_ssh_password_logins root - -# Installing NodeJS -TITLE "Installing NodeJS V$NODEJS_VERSION" -curl -fsSL https://deb.nodesource.com/setup_$NODEJS_VERSION.x | bash - && apt install -y nodejs - -# Installing YARN -TITLE "Installing YARN" -curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/yarnkey.gpg >/dev/null -echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" | sudo tee /etc/apt/sources.list.d/yarn.list -apt update && apt install yarn - -# Installing PIP2 -TITLE "Installing PIP2" - -curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output /tmp/get-pip.py -python2 /tmp/get-pip.py - -# Installing raspi-config if we are on a raspberry -if echo $HWMODELFILENAME | grep -q "raspberry"; then - TITLE "Installing raspi-config" - rm /usr/bin/raspi-config - curl -L https://raw.githubusercontent.com/RPi-Distro/raspi-config/master/raspi-config -o /usr/bin/raspi-config - chmod +x /usr/bin/raspi-config -fi - -# Configuring /etc/hosts -TITLE "Setting up /etc/hosts and /etc/hostname..." - -touch /etc/mailname -$LBHOME/sbin/changehostname.sh loxberry - -OK "Successfully set up /etc/hosts." - -# Set correct File Permissions -TITLE "Setting File Permissions..." - -$LBHOME/sbin/resetpermissions.sh - -if [ $? != 0 ]; then - FAIL "Could not set File Permissions for LoxBerry.\n" - exit 1 -else - OK "Successfully set File Permissions for LoxBerry." -fi - -# Create Config -TITLE "Create LoxBerry Config from Defaults..." - -su loxberry -c "export PERL5LIB=$LBHOME/libs/perllib && $LBHOME/bin/createconfig.pl" -su loxberry -c "export PERL5LIB=$LBHOME/libs/perllib && $LBHOME/bin/createconfig.pl" # Run twice - -if [ ! -e $LBHOME/config/system/general.json ]; then - FAIL "Could not create default config files.\n" - exit 1 -else - OK "Successfully created default config files." -fi - -# Set correct File Permissions -TITLE "Re-Setting File Permissions..." - -$LBHOME/sbin/resetpermissions.sh - -if [ $? != 0 ]; then - FAIL "Could not set File Permissions for LoxBerry.\n" - exit 1 -else - OK "Successfully set File Permissions for LoxBerry." -fi - -# Restart Systemd Login Service -TITLE "Correct Systemd Login Service..." - -/bin/systemctl unmask systemd-logind.service -/bin/systemctl start systemd-logind.service - -# Start Apache -TITLE "Start Apache2 Webserver..." - -/bin/systemctl restart apache2 - -if ! /bin/systemctl --no-pager status apache2; then - FAIL "Could not reconfigure Apache2.\n" - exit 1 -else - OK "Successfully reconfigured Apache2." -fi - -# Set correct File Permissions - again -TITLE "Setting File Permissions (again)..." - -$LBHOME/sbin/resetpermissions.sh - -if [ $? != 0 ]; then - FAIL "Could not set File Permissions for LoxBerry.\n" - exit 1 -else - OK "Successfully set File Permissions for LoxBerry." -fi - -# The end -export PERL5LIB=$LBHOME/libs/perllib -IP=$(perl -e 'use LoxBerry::System; $ip = LoxBerry::System::get_localip(); print $ip; exit;') -echo -e "\n\n\n${GREEN}WE ARE DONE! :-)${RESET}" -echo -e "\n\n${RED}You have to reboot your LoxBerry now!${RESET}" -echo -e "\n${GREEN}Then point your browser to http://$IP or http://loxberry" -echo -e "\nIf you would like to login via SSH, use user 'loxberry' and pass 'loxberry'." -echo -e "Root's password is 'loxberry', too (you cannot login directly via SSH)." -echo -e "\nGood Bye.\n\n${RESET}" - -touch /boot/rootfsresized - -exit 0 diff --git a/packages.txt b/packages.txt index 0bc5f45c..9026fb07 100644 --- a/packages.txt +++ b/packages.txt @@ -33,14 +33,14 @@ ii automake 1:1.16.3-2 a ii autopoint 0.21-4 all tool for setting up gettext infrastructure in a source package ii autotools-dev 20180224.1+nmu1 all Update infrastructure for config.{guess,sub} files ii avahi-daemon 0.8-5+deb11u1 armhf Avahi mDNS/DNS-SD daemon -ii base-files 11.1+rpi1+deb11u5 armhf Debian base system miscellaneous files +ii base-files 11.1+rpi1+deb11u6 armhf Debian base system miscellaneous files ii base-passwd 3.5.51 armhf Debian base system master password and group files ii bash 5.1-2+deb11u1 armhf GNU Bourne Again SHell ii bash-completion 1:2.11-2 all programmable completion for the bash shell ii bc 1.07.1-2+b1 armhf GNU bc arbitrary precision calculator language -ii bind9-dnsutils 1:9.16.33-1~deb11u1 armhf Clients provided with BIND 9 -ii bind9-host 1:9.16.33-1~deb11u1 armhf DNS Lookup Utility -ii bind9-libs:armhf 1:9.16.33-1~deb11u1 armhf Shared Libraries used by BIND 9 +ii bind9-dnsutils 1:9.16.37-1~deb11u1 armhf Clients provided with BIND 9 +ii bind9-host 1:9.16.37-1~deb11u1 armhf DNS Lookup Utility +ii bind9-libs:armhf 1:9.16.37-1~deb11u1 armhf Shared Libraries used by BIND 9 ii binutils 2.35.2-2+rpi1 armhf GNU assembler, linker and binary utilities ii binutils-arm-linux-gnueabihf 2.35.2-2+rpi1 armhf GNU binary utilities, for arm-linux-gnueabihf target ii binutils-common:armhf 2.35.2-2+rpi1 armhf Common files for the GNU assembler, linker and binary utilities @@ -65,7 +65,7 @@ ii cpp-6 6.5.0-1+rpi1+b1 a ii cpp-8 8.4.0-7+rpi1 armhf GNU C preprocessor ii crda 4.14+git20191112.9856751-1 armhf wireless Central Regulatory Domain Agent ii cron 3.0pl1-137 armhf process scheduling daemon -ii curl 7.74.0-1.3+deb11u3 armhf command line tool for transferring data with URL syntax +ii curl 7.74.0-1.3+deb11u7 armhf command line tool for transferring data with URL syntax ii dash 0.5.11+git20200708+dd9ef66-5 armhf POSIX-compliant shell ii dbus 1.12.24-0+deb11u1 armhf simple interprocess messaging system (daemon and utilities) ii dbus-user-session 1.12.24-0+deb11u1 armhf simple interprocess messaging system (systemd --user integration) @@ -83,10 +83,10 @@ ii dhcpcd5 1:6.11.5-1+rpt7 a ii dialog 1.3-20201126-1 armhf Displays user-friendly dialog boxes from shell scripts ii diffutils 1:3.7-5 armhf File comparison utilities ii dirmngr 2.2.27-2+deb11u2 armhf GNU privacy guard - network certificate management service -ii distro-info-data 0.51+deb11u2 all information about the distributions' releases (data files) +ii distro-info-data 0.51+deb11u3 all information about the distributions' releases (data files) ii dmidecode 3.3-2 armhf SMBIOS/DMI table decoder ii dmsetup 2:1.02.175-2.1 armhf Linux Kernel Device Mapper userspace library -ii dnsutils 1:9.16.33-1~deb11u1 all Transitional package for bind9-dnsutils +ii dnsutils 1:9.16.37-1~deb11u1 all Transitional package for bind9-dnsutils ii dos2unix 7.4.1-1 armhf convert text file line endings between CRLF and LF ii dosfstools 4.2-1 armhf utilities for making and checking MS-DOS FAT filesystems ii dphys-swapfile 20100506-7 all Autogenerate and use a swap file @@ -144,8 +144,8 @@ ii gettext 0.21-4 a ii gettext-base 0.21-4 armhf GNU Internationalization utilities for the base system ii ghostscript 9.53.3~dfsg-7+deb11u2 armhf interpreter for the PostScript language and for PDF ii gir1.2-glib-2.0:armhf 1.66.1-1+b1 armhf Introspection data for GLib, GObject, Gio and GModule -ii git 1:2.30.2-1 armhf fast, scalable, distributed revision control system -ii git-man 1:2.30.2-1 all fast, scalable, distributed revision control system (manual pages) +ii git 1:2.30.2-1+deb11u2 armhf fast, scalable, distributed revision control system +ii git-man 1:2.30.2-1+deb11u2 all fast, scalable, distributed revision control system (manual pages) ii glib-networking:armhf 2.66.0-2 armhf network-related giomodules for GLib ii glib-networking-common 2.66.0-2 all network-related giomodules for GLib - data files ii glib-networking-services 2.66.0-2 armhf network-related giomodules for GLib - D-Bus services @@ -178,10 +178,10 @@ ii icc-profiles-free 2.0.1+dfsg-1.1 a ii ifplugd 0.28-19.5 armhf configuration daemon for ethernet devices ii ifupdown 0.8.36 armhf high level tools to configure network interfaces ii iio-sensor-proxy 3.0-2 armhf IIO sensors to D-Bus proxy -ii imagemagick 8:6.9.11.60+dfsg-1.3 armhf image manipulation programs -- binaries -ii imagemagick-6-common 8:6.9.11.60+dfsg-1.3 all image manipulation programs -- infrastructure -ii imagemagick-6.q16 8:6.9.11.60+dfsg-1.3 armhf image manipulation programs -- quantum depth Q16 -ii imagemagick-common 8:6.9.11.60+dfsg-1.3 all image manipulation programs -- infrastructure dummy package +ii imagemagick 8:6.9.11.60+dfsg-1.3+deb11u1 armhf image manipulation programs -- binaries +ii imagemagick-6-common 8:6.9.11.60+dfsg-1.3+deb11u1 all image manipulation programs -- infrastructure +ii imagemagick-6.q16 8:6.9.11.60+dfsg-1.3+deb11u1 armhf image manipulation programs -- quantum depth Q16 +ii imagemagick-common 8:6.9.11.60+dfsg-1.3+deb11u1 all image manipulation programs -- infrastructure dummy package ii info 6.7.0.dfsg.2-6 armhf Standalone GNU Info documentation browser ii init 1.60 armhf metapackage ensuring an init system is installed ii init-system-helpers 1.60 all helper tools for all init systems @@ -219,13 +219,13 @@ ii libalsaplayer0:armhf 0.99.81-2 a ii libany-uri-escape-perl 0.01-3 all module to load URI::Escape::XS preferentially over URI::Escape ii libaom0:armhf 1.0.0.errata1-3 armhf AV1 Video Codec Library rc libapache2-mod-php7.0 7.0.33-0+deb9u1 armhf server-side, HTML-embedded scripting language (Apache 2 module) -rc libapache2-mod-php7.3 7.3.31-1~deb10u2 armhf server-side, HTML-embedded scripting language (Apache 2 module) +rc libapache2-mod-php7.3 7.3.31-1~deb10u3 armhf server-side, HTML-embedded scripting language (Apache 2 module) ii libapache2-mod-php7.4 7.4.33-1+deb11u1 armhf server-side, HTML-embedded scripting language (Apache 2 module) ii libapparmor1:armhf 2.13.6-10 armhf changehat AppArmor library ii libapr1:armhf 1.7.0-6+deb11u1 armhf Apache Portable Runtime Library -ii libaprutil1:armhf 1.6.1-5 armhf Apache Portable Runtime Utility Library -ii libaprutil1-dbd-sqlite3:armhf 1.6.1-5 armhf Apache Portable Runtime Utility Library - SQLite3 Driver -ii libaprutil1-ldap:armhf 1.6.1-5 armhf Apache Portable Runtime Utility Library - LDAP Driver +ii libaprutil1:armhf 1.6.1-5+deb11u1 armhf Apache Portable Runtime Utility Library +ii libaprutil1-dbd-sqlite3:armhf 1.6.1-5+deb11u1 armhf Apache Portable Runtime Utility Library - SQLite3 Driver +ii libaprutil1-ldap:armhf 1.6.1-5+deb11u1 armhf Apache Portable Runtime Utility Library - LDAP Driver ii libapt-inst2.0:armhf 1.8.2.3 armhf deb package format runtime library ii libapt-pkg5.0:armhf 1.8.2.3 armhf package management runtime library ii libapt-pkg6.0:armhf 2.2.4 armhf package management runtime library @@ -236,13 +236,14 @@ ii libasan1:armhf 4.9.4-2+rpi1+b19 a ii libasan3:armhf 6.5.0-1+rpi1+b1 armhf AddressSanitizer -- a fast memory error detector ii libasan5:armhf 9.3.0-22+rpi1 armhf AddressSanitizer -- a fast memory error detector ii libasan6:armhf 10.2.1-6+rpi1 armhf AddressSanitizer -- a fast memory error detector -ii libasn1-8-heimdal:armhf 7.7.0+dfsg-2+deb11u2 armhf Heimdal Kerberos - ASN.1 library +ii libasn1-8-heimdal:armhf 7.7.0+dfsg-2+deb11u3 armhf Heimdal Kerberos - ASN.1 library ii libasound2:armhf 1.2.4-1.1 armhf shared library for ALSA applications ii libasound2-data 1.2.4-1.1 all Configuration files and profiles for ALSA drivers ii libasprintf-dev:armhf 0.21-4 armhf use fprintf and friends in C++ - static libraries and headers ii libasprintf0v5:armhf 0.21-4 armhf use fprintf and friends in C++ - shared library ii libass5:armhf 1:0.13.4-2 armhf library for SSA/ASS subtitles rendering ii libass9:armhf 1:0.15.0-2 armhf library for SSA/ASS subtitles rendering +ii libassuan-dev 2.5.3-7.1 armhf IPC library for the GnuPG components -- header files ii libassuan0:armhf 2.5.3-7.1 armhf IPC library for the GnuPG components ii libasyncns0:armhf 0.8-6 armhf Asynchronous name service query library ii libatk-bridge2.0-0:armhf 2.38.0-1 armhf AT-SPI 2 toolkit bridge - shared library @@ -289,10 +290,11 @@ ii libbind9-140:armhf 1:9.10.3.dfsg.P4-12.3+deb9u4 a ii libbinutils:armhf 2.35.2-2+rpi1 armhf GNU binary utilities (private shared library) ii libblas-common 3.7.0-2 armhf Dependency package for all BLAS implementations ii libblas3:armhf 3.9.0-3 armhf Basic Linear Algebra Reference implementations, shared library +ii libblkid-dev:armhf 2.36.1-8+deb11u1 armhf block device ID library - headers ii libblkid1:armhf 2.36.1-8+deb11u1 armhf block device ID library ii libbluetooth3:armhf 5.55-3.1 armhf Library to use the BlueZ Linux Bluetooth stack ii libbluray1:armhf 1:0.9.3-4 armhf Blu-ray disc playback support library (shared library) -ii libbluray2:armhf 1:1.2.1-4+deb11u1 armhf Blu-ray disc playback support library (shared library) +ii libbluray2:armhf 1:1.2.1-4+deb11u2 armhf Blu-ray disc playback support library (shared library) ii libboost-filesystem1.62.0:armhf 1.62.0+dfsg-10+b3 armhf filesystem operations (portable paths, iteration over directories, etc) in C++ ii libboost-iostreams1.58.0:armhf 1.58.0+dfsg-5.1+rpi1+b4 armhf Boost.Iostreams Library ii libboost-iostreams1.60.0:armhf 1.60.0+dfsg-6+b2 armhf Boost.Iostreams Library @@ -303,6 +305,7 @@ ii libboost-regex1.74.0:armhf 1.74.0-9 a ii libboost-system1.62.0:armhf 1.62.0+dfsg-10+b3 armhf Operating system (e.g. diagnostics support) library ii libboost-thread1.74.0:armhf 1.74.0-9 armhf portable C++ multi-threading ii libbpf0:armhf 1:0.3-2+rpi1 armhf eBPF helper library (shared library) +ii libbrotli-dev:armhf 1.0.9-2+b1 armhf library implementing brotli encoder and decoder (development files) ii libbrotli1:armhf 1.0.9-2+b1 armhf library implementing brotli encoder and decoder (shared libraries) ii libbs2b0:armhf 3.1.0+dfsg-2.2 armhf Bauer stereophonic-to-binaural DSP library ii libbsd-resource-perl 1.2911-1+b5 armhf BSD process resource limit and priority functions @@ -313,9 +316,12 @@ ii libc-dev-bin 2.31-13+rpi1+deb11u3 a ii libc-l10n 2.31-13+rpi1+deb11u3 all GNU C Library: localization files ii libc6:armhf 2.31-13+rpi1+deb11u3 armhf GNU C Library: Shared libraries ii libc6-dbg:armhf 2.31-13+rpi1+deb11u3 armhf GNU C Library: detached debugging symbols +ii libc6-dev:armhf 2.31-13+rpi1+deb11u3 armhf GNU C Library: Development Libraries and Header Files ii libcaca0:armhf 0.99.beta19-2.2 armhf colour ASCII art library ii libcairo-gobject2:armhf 1.16.0-5 armhf Cairo 2D vector graphics library (GObject library) +ii libcairo-script-interpreter2:armhf 1.16.0-5 armhf Cairo 2D vector graphics library (script interpreter) ii libcairo2:armhf 1.16.0-5 armhf Cairo 2D vector graphics library +ii libcairo2-dev:armhf 1.16.0-5 armhf Development files for the Cairo 2D graphics library ii libcap-ng0:armhf 0.7.9-2.2+b1 armhf An alternate POSIX capabilities library ii libcap2:armhf 1:2.44-1 armhf POSIX 1003.1e capabilities (library) ii libcap2-bin 1:2.44-1 armhf POSIX 1003.1e capabilities (utilities) @@ -360,6 +366,7 @@ ii libcpan-distnameinfo-perl 0.12-2.1 a ii libcpan-meta-check-perl 0.014-1 all verify requirements in a CPAN::Meta object ii libcpan-meta-perl 2.150010-2 all Perl module to access CPAN distributions metadata ii libcroco3:armhf 0.6.13-1 armhf Cascading Style Sheet (CSS) parsing and manipulation toolkit +ii libcrypt-dev:armhf 1:4.4.18-4 armhf libcrypt development files ii libcrypt1:armhf 1:4.4.18-4 armhf libcrypt shared library ii libcryptsetup12:armhf 2:2.3.7-1+deb11u1 armhf disk encryption support - shared library ii libcryptsetup4:armhf 2:1.7.3-4 armhf disk encryption support - shared library @@ -368,8 +375,8 @@ ii libctf0:armhf 2.35.2-2+rpi1 a ii libcups2:armhf 2.3.3op2-3+deb11u2 armhf Common UNIX Printing System(tm) - Core library ii libcupsfilters1:armhf 1.28.7-1+deb11u1 armhf OpenPrinting CUPS Filters - Shared library ii libcupsimage2:armhf 2.3.3op2-3+deb11u2 armhf Common UNIX Printing System(tm) - Raster image library -ii libcurl3-gnutls:armhf 7.74.0-1.3+deb11u3 armhf easy-to-use client-side URL transfer library (GnuTLS flavour) -ii libcurl4:armhf 7.74.0-1.3+deb11u3 armhf easy-to-use client-side URL transfer library (OpenSSL flavour) +ii libcurl3-gnutls:armhf 7.74.0-1.3+deb11u7 armhf easy-to-use client-side URL transfer library (GnuTLS flavour) +ii libcurl4:armhf 7.74.0-1.3+deb11u7 armhf easy-to-use client-side URL transfer library (OpenSSL flavour) ii libcwidget3v5:armhf 0.5.17-11 armhf high-level terminal interface library for C++ (runtime files) ii libcwidget4:armhf 0.5.18-5 armhf high-level terminal interface library for C++ (runtime files) ii libdaemon0:armhf 0.14-7.1 armhf lightweight C library for daemons - runtime library @@ -381,7 +388,7 @@ ii libdata-uuid-perl 1.226-1+b1 a ii libdata-validate-ip-perl 0.30-1 all Perl module for IP validation ii libdatetime-locale-perl 1:1.31-1 all Perl extension providing localization support for DateTime ii libdatetime-perl:armhf 2:1.54-1 armhf module for manipulating dates, times and timestamps -ii libdatetime-timezone-perl 1:2.47-1+2022b all framework exposing the Olson time zone database to Perl +ii libdatetime-timezone-perl 1:2.47-1+2022g all framework exposing the Olson time zone database to Perl ii libdatrie1:armhf 0.2.13-1+b1 armhf Double-array trie library ii libdav1d4:armhf 0.7.1-3+rpi1 armhf fast and small AV1 video stream decoder (shared library) ii libdb5.3:armhf 5.3.28+dfsg1-0.8 armhf Berkeley v5.3 Database Libraries [runtime] @@ -394,7 +401,7 @@ ii libdc1394-22:armhf 2.2.5-2.1 a ii libdc1394-25:armhf 2.2.6-3 armhf high level programming interface for IEEE 1394 digital cameras ii libdca0:armhf 0.0.7-2 armhf decoding library for DTS Coherent Acoustics streams ii libdconf1:armhf 0.38.0-2 armhf simple configuration storage system - runtime library -ii libde265-0:armhf 1.0.8-1+rpi1 armhf Open H.265 video codec implementation +ii libde265-0:armhf 1.0.11-0+deb11u1+rpi1 armhf Open H.265 video codec implementation ii libdebconfclient0:armhf 0.260 armhf Debian Configuration Management System (C-implementation library) ii libdebuginfod1:armhf 0.183-1 armhf library to interact with debuginfod (development files) ii libdeflate0:armhf 1.7-1 armhf fast, whole-buffer DEFLATE-based compression and decompression @@ -454,6 +461,7 @@ ii libevent-2.1-7:armhf 2.1.12-stable-1 a ii libexception-class-perl 1.44-1 all module that allows you to declare real exception classes in Perl ii libexif12:armhf 0.6.22-3 armhf library to parse EXIF files ii libexpat1:armhf 2.2.10-2+deb11u5 armhf XML parsing C library - runtime library +ii libexpat1-dev:armhf 2.2.10-2+deb11u5 armhf XML parsing C library - development kit ii libexporter-tiny-perl 1.002002-1 all tiny exporter similar to Sub::Exporter ii libext2fs2:armhf 1.46.2-2 armhf ext2/ext3/ext4 file system libraries ii libfaad2:armhf 2.10.0-1 armhf freeware Advanced Audio Decoder - runtime files @@ -464,6 +472,7 @@ ii libfcgi-perl:armhf 0.79+ds-2 a ii libfcgi0ldbl:armhf 2.4.2-2 armhf shared library of FastCGI ii libfdisk1:armhf 2.36.1-8+deb11u1 armhf fdisk partitioning library ii libfdt1:armhf 1.6.0-1 armhf Flat Device Trees manipulation library +ii libffi-dev:armhf 3.3-6 armhf Foreign Function Interface library (development files) ii libffi6:armhf 3.2.1-9+rpi1 armhf Foreign Function Interface library runtime ii libffi7:armhf 3.3-6 armhf Foreign Function Interface library runtime ii libfftw3-double3:armhf 3.3.8-2 armhf Library for computing Fast Fourier Transforms - Double precision @@ -487,9 +496,13 @@ ii libflac-dev:armhf 1.3.3-2+deb11u1 a ii libflac8:armhf 1.3.3-2+deb11u1 armhf Free Lossless Audio Codec - runtime C library ii libflite1:armhf 2.2-2 armhf Small run-time speech synthesis engine - shared libraries ii libfont-afm-perl 1.20-3 all Perl interface to Adobe Font Metrics files +ii libfontconfig-dev:armhf 2.13.1-4.2 armhf generic font configuration library - development ii libfontconfig1:armhf 2.13.1-4.2 armhf generic font configuration library - runtime +ii libfontconfig1-dev:armhf 2.13.1-4.2 armhf generic font configuration library - dummy package ii libfontenc1:armhf 1:1.1.4-1 armhf X11 font encoding library +ii libfreetype-dev:armhf 2.10.4+dfsg-1+deb11u1 armhf FreeType 2 font engine, development files ii libfreetype6:armhf 2.10.4+dfsg-1+deb11u1 armhf FreeType 2 font engine, shared library files +ii libfreetype6-dev:armhf 2.10.4+dfsg-1+deb11u1 armhf FreeType 2 font engine, development files (transitional package) ii libfreezethaw-perl 0.5001-2.1 all module to serialize and deserialize Perl data structures ii libfribidi0:armhf 1.0.8-2+deb11u1 armhf Free Implementation of the Unicode BiDi algorithm ii libfstrm0:armhf 0.6.0-1+b1 armhf Frame Streams (fstrm) library @@ -521,6 +534,8 @@ ii libgfortran3:armhf 6.5.0-1+rpi1+b1 a ii libgfortran5:armhf 10.2.1-6+rpi1 armhf Runtime library for GNU Fortran applications ii libgfrpc0:armhf 9.2-1 armhf GlusterFS libgfrpc shared library ii libgfxdr0:armhf 9.2-1 armhf GlusterFS libgfxdr shared library +ii libgif-dev 5.1.9-2 armhf library for GIF images (development) +ii libgif7:armhf 5.1.9-2 armhf library for GIF images (library) ii libgirepository-1.0-1:armhf 1.66.1-1+b1 armhf Library for handling GObject introspection data (runtime library) ii libgl1:armhf 1.3.2-1 armhf Vendor neutral GL dispatch library -- legacy GL support ii libgl1-mesa-dri:armhf 20.3.5-1+rpi1 armhf free implementation of the OpenGL API -- DRI modules @@ -529,18 +544,23 @@ ii libglapi-mesa:armhf 20.3.5-1+rpi1 a ii libgles2:armhf 1.3.2-1 armhf Vendor neutral GL dispatch library -- GLESv2 support ii libgles2-mesa:armhf 20.3.5-1+rpi1 armhf transitional dummy package ii libglib2.0-0:armhf 2.66.8-1 armhf GLib library of C routines +ii libglib2.0-bin 2.66.8-1 armhf Programs for the GLib library ii libglib2.0-data 2.66.8-1 all Common files for GLib library +ii libglib2.0-dev:armhf 2.66.8-1 armhf Development files for the GLib library +ii libglib2.0-dev-bin 2.66.8-1 armhf Development utilities for the GLib library ii libglusterfs0:armhf 9.2-1 armhf GlusterFS shared library ii libglvnd0:armhf 1.3.2-1 armhf Vendor neutral GL dispatch library ii libglx-mesa0:armhf 20.3.5-1+rpi1 armhf free implementation of the OpenGL API -- GLX vendor library ii libglx0:armhf 1.3.2-1 armhf Vendor neutral GL dispatch library -- GLX support ii libgme0:armhf 0.6.3-2 armhf Playback library for video game music files - shared library ii libgmp10:armhf 2:6.2.1+dfsg-1+deb11u1 armhf Multiprecision arithmetic library -ii libgnutls-openssl27:armhf 3.7.1-5+deb11u2 armhf GNU TLS library - OpenSSL wrapper -ii libgnutls30:armhf 3.7.1-5+deb11u2 armhf GNU TLS library - main runtime library +ii libgnutls-openssl27:armhf 3.7.1-5+deb11u3 armhf GNU TLS library - OpenSSL wrapper +ii libgnutls30:armhf 3.7.1-5+deb11u3 armhf GNU TLS library - main runtime library ii libgomp1:armhf 10.2.1-6+rpi1 armhf GCC OpenMP (GOMP) support library +ii libgpg-error-dev 1.38-2 armhf GnuPG development runtime library (developer tools) ii libgpg-error-l10n 1.38-2 all library of error values and messages in GnuPG (localization files) ii libgpg-error0:armhf 1.38-2 armhf GnuPG development runtime library +ii libgpgme-dev 1.14.0-1+b1 armhf GPGME - GnuPG Made Easy (development files) ii libgpgme11:armhf 1.14.0-1+b1 armhf GPGME - GnuPG Made Easy (library) ii libgpm2:armhf 1.20.7-8 armhf General Purpose Mouse - shared library ii libgraphite2-3:armhf 1.3.14-1 armhf Font rendering engine for Complex Scripts -- library @@ -561,10 +581,10 @@ ii libgudev-1.0-0:armhf 234-1 a ii libharfbuzz0b:armhf 2.7.4-1 armhf OpenType text shaping engine (shared library) ii libhash-flatten-perl 1.19-2 all flatten/unflatten complex data hashes ii libhash-merge-perl 0.302-1 all Perl module for merging arbitrarily deep hashes into a single hash -ii libhcrypto4-heimdal:armhf 7.7.0+dfsg-2+deb11u2 armhf Heimdal Kerberos - crypto library -ii libhdb9-heimdal:armhf 7.7.0+dfsg-2+deb11u2 armhf Heimdal Kerberos - kadmin server library +ii libhcrypto4-heimdal:armhf 7.7.0+dfsg-2+deb11u3 armhf Heimdal Kerberos - crypto library +ii libhdb9-heimdal:armhf 7.7.0+dfsg-2+deb11u3 armhf Heimdal Kerberos - kadmin server library ii libheif1:armhf 1.11.0-1 armhf ISO/IEC 23008-12:2017 HEIF file format decoder - shared library -ii libheimbase1-heimdal:armhf 7.7.0+dfsg-2+deb11u2 armhf Heimdal Kerberos - Base library +ii libheimbase1-heimdal:armhf 7.7.0+dfsg-2+deb11u3 armhf Heimdal Kerberos - Base library ii libhogweed4:armhf 3.4.1-1+deb10u1 armhf low level cryptographic library (public-key cryptos) ii libhogweed6:armhf 3.7.3-1 armhf low level cryptographic library (public-key cryptos) ii libhtml-form-perl 6.07-1 all module that represents an HTML form element @@ -578,10 +598,11 @@ ii libhttp-daemon-perl 6.12-1+deb11u1 a ii libhttp-date-perl 6.05-1 all module of date conversion routines ii libhttp-message-perl 6.28-1 all perl interface to HTTP style messages ii libhttp-negotiate-perl 6.01-1 all implementation of content negotiation -ii libhx509-5-heimdal:armhf 7.7.0+dfsg-2+deb11u2 armhf Heimdal Kerberos - X509 support library +ii libhx509-5-heimdal:armhf 7.7.0+dfsg-2+deb11u3 armhf Heimdal Kerberos - X509 support library ii libhyphen0:armhf 2.8.8-7 armhf ALTLinux hyphenation library - shared library ii libi2c0:armhf 4.2-1+b1 armhf userspace I2C programming library ii libibverbs1:armhf 33.2-1 armhf Library for direct userspace use of RDMA (InfiniBand/iWARP) +ii libice-dev:armhf 2:1.0.10-1 armhf X11 Inter-Client Exchange library (development headers) ii libice6:armhf 2:1.0.10-1 armhf X11 Inter-Client Exchange library ii libicu57:armhf 57.1-6+deb9u2 armhf International Components for Unicode ii libicu67:armhf 67.1-7 armhf International Components for Unicode @@ -628,10 +649,14 @@ ii libjbig2dec0:armhf 0.19-2 a ii libjemalloc1 3.6.0-9.1 armhf general-purpose scalable concurrent malloc(3) implementation ii libjim0.76:armhf 0.76-2 armhf small-footprint implementation of Tcl - shared library ii libjim0.79:armhf 0.79+dfsg0-2 armhf small-footprint implementation of Tcl - shared library +ii libjpeg-dev:armhf 1:2.0.6-4 armhf Development files for the JPEG library [dummy package] ii libjpeg62-turbo:armhf 1:2.0.6-4 armhf libjpeg-turbo JPEG runtime library +ii libjpeg62-turbo-dev:armhf 1:2.0.6-4 armhf Development files for the libjpeg-turbo JPEG library ii libjpeg8:armhf 8d1-2 armhf Independent JPEG Group's JPEG runtime library ii libjq1:armhf 1.6-2.1 armhf lightweight and flexible command-line JSON processor - shared library ii libjs-jquery 3.5.1+dfsg+~3.5.5-7 all JavaScript library for dynamic web applications +ii libjs-sphinxdoc 3.4.3-2 all JavaScript support for Sphinx documentation +ii libjs-underscore 1.9.1~dfsg-3 all JavaScript's functional programming helper library ii libjson-c5:armhf 0.15-2 armhf JSON manipulation library - shared library ii libjson-glib-1.0-0:armhf 1.6.2-1 armhf GLib JSON manipulation library ii libjson-glib-1.0-common 1.6.2-1 all GLib JSON manipulation library (common files) @@ -643,10 +668,10 @@ ii libk5crypto3:armhf 1.18.3-6+deb11u3 a ii libkeyutils1:armhf 1.6.1-2 armhf Linux Key Management Utilities (library) ii libklibc:armhf 2.0.8-6.1+rpi1 armhf minimal libc subset for use with initramfs ii libkmod2:armhf 28-1 armhf libkmod shared library -ii libkrb5-26-heimdal:armhf 7.7.0+dfsg-2+deb11u2 armhf Heimdal Kerberos - libraries +ii libkrb5-26-heimdal:armhf 7.7.0+dfsg-2+deb11u3 armhf Heimdal Kerberos - libraries ii libkrb5-3:armhf 1.18.3-6+deb11u3 armhf MIT Kerberos runtime libraries ii libkrb5support0:armhf 1.18.3-6+deb11u3 armhf MIT Kerberos runtime libraries - Support library -ii libksba8:armhf 1.5.0-3+deb11u1 armhf X.509 and CMS support library +ii libksba8:armhf 1.5.0-3+deb11u2 armhf X.509 and CMS support library ii liblapack3:armhf 3.9.0-3 armhf Library of linear algebra routines 3 - shared version ii liblcms2-2:armhf 2.12~rc1-2 armhf Little CMS 2 color management library ii libldap-2.4-2:armhf 2.4.57+dfsg-3+deb11u1 armhf OpenLDAP libraries @@ -693,10 +718,10 @@ ii libmagic-mgc 1:5.39-3 a ii libmagic1:armhf 1:5.39-3 armhf Recognize the type of data in a file using "magic" numbers - library ii libmagickcore-6.q16-3:armhf 8:6.9.7.4+dfsg-11+deb9u6 armhf low-level image manipulation library -- quantum depth Q16 ii libmagickcore-6.q16-3-extra:armhf 8:6.9.7.4+dfsg-11+deb9u6 armhf low-level image manipulation library - extra codecs (Q16) -ii libmagickcore-6.q16-6:armhf 8:6.9.11.60+dfsg-1.3 armhf low-level image manipulation library -- quantum depth Q16 -ii libmagickcore-6.q16-6-extra:armhf 8:6.9.11.60+dfsg-1.3 armhf low-level image manipulation library - extra codecs (Q16) +ii libmagickcore-6.q16-6:armhf 8:6.9.11.60+dfsg-1.3+deb11u1 armhf low-level image manipulation library -- quantum depth Q16 +ii libmagickcore-6.q16-6-extra:armhf 8:6.9.11.60+dfsg-1.3+deb11u1 armhf low-level image manipulation library - extra codecs (Q16) ii libmagickwand-6.q16-3:armhf 8:6.9.7.4+dfsg-11+deb9u6 armhf image manipulation library -- quantum depth Q16 -ii libmagickwand-6.q16-6:armhf 8:6.9.11.60+dfsg-1.3 armhf image manipulation library -- quantum depth Q16 +ii libmagickwand-6.q16-6:armhf 8:6.9.11.60+dfsg-1.3+deb11u1 armhf image manipulation library -- quantum depth Q16 ii libmailtools-perl 2.21-1 all modules to manipulate email in perl programs ii libmariadb3:armhf 1:10.5.15-0+deb11u1 armhf MariaDB database client library ii libmath-base85-perl 0.5+dfsg-1 all Perl extension for base 85 numbers, as referenced by RFC 1924 @@ -723,6 +748,7 @@ ii libmoo-perl 2.004004-1 a ii libmoox-handlesvia-perl 0.001009-1 all Moose Native Traits-like behavior for Moo ii libmoox-types-mooselike-perl 0.29-1.1 all module providing some Moosish types and a type builder ii libmosquitto1:armhf 2.0.11-1 armhf MQTT version 5.0/3.1.1/3.1 client library +ii libmount-dev:armhf 2.36.1-8+deb11u1 armhf device mounting library - headers ii libmount1:armhf 2.36.1-8+deb11u1 armhf device mounting library ii libmp3lame0:armhf 3.100-3 armhf MP3 encoding library ii libmpc3:armhf 1.2.0-1 armhf multiple precision complex floating-point library @@ -760,7 +786,7 @@ ii libnetwork-ipv4addr-perl 0.10.ds-3.1 a ii libnewt0.52:armhf 0.52.21-4+b2 armhf Not Erik's Windowing Toolkit - text mode windowing with slang ii libnfnetlink0:armhf 1.0.1-3+b1 armhf Netfilter netlink library ii libnfsidmap2:armhf 0.25-6 armhf NFS idmapping library -ii libnftables1:armhf 0.9.8-3.1 armhf Netfilter nftables high level userspace API library +ii libnftables1:armhf 0.9.8-3.1+deb11u1 armhf Netfilter nftables high level userspace API library ii libnftnl11:armhf 1.1.9-1 armhf Netfilter nftables userspace API library ii libnghttp2-14:armhf 1.43.0-1 armhf library implementing HTTP/2 protocol (shared library) ii libnih-dbus1 1.0.3-11 armhf NIH D-Bus Bindings Library @@ -771,11 +797,12 @@ ii libnl-route-3-200:armhf 3.4.0-1 a ii libnorm1:armhf 1.5.9+dfsg-2 armhf NACK-Oriented Reliable Multicast (NORM) library ii libnotify4:armhf 0.7.9-3 armhf sends desktop notifications to a notification daemon ii libnpth0:armhf 1.6-3 armhf replacement for GNU Pth using system threads +ii libnsl-dev:armhf 1.3.0-2 armhf libnsl development files ii libnsl2:armhf 1.3.0-2 armhf Public client interface for NIS(YP) and NIS+ ii libnspr4:armhf 2:4.29-1 armhf NetScape Portable Runtime Library ii libnss-mdns:armhf 0.14.1-2 armhf NSS module for Multicast DNS name resolution ii libnss-systemd:armhf 247.3-7+rpi1+deb11u1 armhf nss module providing dynamic user and group name resolution -ii libnss3:armhf 2:3.61-1+deb11u2 armhf Network Security Service libraries +ii libnss3:armhf 2:3.61-1+deb11u3 armhf Network Security Service libraries ii libntdb1:armhf 1.0-9 armhf New Trivial Database - shared library ii libntfs-3g883 1:2017.3.23AR.3-4+deb11u3 armhf read/write NTFS driver for FUSE (runtime library) ii libntlm0:armhf 1.6-3 armhf NTLM authentication library @@ -820,10 +847,16 @@ ii libparted2:armhf 3.4-1 a ii libpath-tiny-perl 0.118-1 all file path utility ii libpcap0.8:armhf 1.10.0-2 armhf system interface for user-level packet capture ii libpci3:armhf 1:3.7.0-5 armhf PCI utilities (shared library) +ii libpcre16-3:armhf 2:8.39-13 armhf Old Perl 5 Compatible Regular Expression Library - 16 bit runtime files ii libpcre2-16-0:armhf 10.36-2+deb11u1 armhf New Perl Compatible Regular Expression Library - 16 bit runtime files +ii libpcre2-32-0:armhf 10.36-2+deb11u1 armhf New Perl Compatible Regular Expression Library - 32 bit runtime files ii libpcre2-8-0:armhf 10.36-2+deb11u1 armhf New Perl Compatible Regular Expression Library- 8 bit runtime files +ii libpcre2-dev:armhf 10.36-2+deb11u1 armhf New Perl Compatible Regular Expression Library - development files ii libpcre2-posix2:armhf 10.36-2+deb11u1 armhf New Perl Compatible Regular Expression Library - posix-compatible runtime files ii libpcre3:armhf 2:8.39-13 armhf Old Perl 5 Compatible Regular Expression Library - runtime files +ii libpcre3-dev:armhf 2:8.39-13 armhf Old Perl 5 Compatible Regular Expression Library - development files +ii libpcre32-3:armhf 2:8.39-13 armhf Old Perl 5 Compatible Regular Expression Library - 32 bit runtime files +ii libpcrecpp0v5:armhf 2:8.39-13 armhf Old Perl 5 Compatible Regular Expression Library - C++ runtime files ii libpcsclite1:armhf 1.9.1-1 armhf Middleware to access a smart card using PC/SC (library) ii libperl4-corelibs-perl 0.004-2 all libraries historically supplied with Perl 4 ii libperl5.32:armhf 5.32.1-4+deb11u2 armhf shared Perl library @@ -832,9 +865,11 @@ ii libpgm-5.2-0:armhf 5.2.122~dfsg-3 a ii libpgm-5.3-0:armhf 5.3.128~dfsg-2 armhf OpenPGM shared library ii libpipeline1:armhf 1.5.3-1 armhf Unix process pipeline manipulation library ii libpixman-1-0:armhf 0.40.0-1.1~deb11u1 armhf pixel-manipulation library for X and cairo +ii libpixman-1-dev:armhf 0.40.0-1.1~deb11u1 armhf pixel-manipulation library for X and cairo (development files) ii libpkcs11-helper1:armhf 1.27-1 armhf library that simplifies the interaction with PKCS#11 ii libplymouth4:armhf 0.9.4-1.1 armhf graphical boot animation and logger - shared libraries ii libplymouth5:armhf 0.9.5-3 armhf graphical boot animation and logger - shared libraries +ii libpng-dev:armhf 1.6.37-3 armhf PNG library - development (version 1.6) ii libpng-tools 1.6.37-3 armhf PNG library - tools (version 1.6) ii libpng12-0:armhf 1.2.54-6 armhf PNG library - runtime ii libpng16-16:armhf 1.6.37-3 armhf PNG library - runtime (version 1.6) @@ -849,22 +884,27 @@ ii libportaudio2:armhf 19.6.0-1.1 a ii libpostproc52 6:0.git20120821-4 armhf FFmpeg derived postprocessing library ii libpostproc54:armhf 7:3.2.10-1~deb9u1+rpt2 armhf FFmpeg library for post processing - runtime files ii libpostproc55:armhf 7:4.3.5-0+deb11u1 armhf FFmpeg library for post processing - runtime files -ii libpq5:armhf 13.8-0+deb11u1 armhf PostgreSQL C client library +ii libpq5:armhf 13.9-0+deb11u1 armhf PostgreSQL C client library ii libprocps6:armhf 2:3.3.12-3+deb9u1 armhf library for accessing process information from /proc ii libprocps8:armhf 2:3.3.17-5 armhf library for accessing process information from /proc ii libprotobuf-c1:armhf 1.3.3-1+b2 armhf Protocol Buffers C shared library (protobuf-c) ii libproxy1v5:armhf 0.4.17-1 armhf automatic proxy configuration management library (shared) ii libpsl5:armhf 0.21.0-1.2 armhf Library for Public Suffix List (shared libraries) +ii libpthread-stubs0-dev:armhf 0.4-1 armhf pthread stubs not provided by native libc, development files ii libpulse0:armhf 14.2-2 armhf PulseAudio client libraries +ii libpython2-dev:armhf 2.7.18-3 armhf header files and a static library for Python2 ii libpython2-stdlib:armhf 2.7.18-3 armhf interactive high-level object-oriented language (Python2) ii libpython2.7:armhf 2.7.18-8 armhf Shared Python runtime library (version 2.7) +ii libpython2.7-dev:armhf 2.7.18-8 armhf Header files and a static library for Python (v2.7) ii libpython2.7-minimal:armhf 2.7.18-8 armhf Minimal subset of the Python language (version 2.7) ii libpython2.7-stdlib:armhf 2.7.18-8 armhf Interactive high-level object-oriented language (standard library, version 2.7) +ii libpython3-dev:armhf 3.9.2-3 armhf header files and a static library for Python (default) ii libpython3-stdlib:armhf 3.9.2-3 armhf interactive high-level object-oriented language (default python3 version) ii libpython3.5:armhf 3.5.4-4 armhf Shared Python runtime library (version 3.5) ii libpython3.5-minimal:armhf 3.5.4-4 armhf Minimal subset of the Python language (version 3.5) ii libpython3.5-stdlib:armhf 3.5.4-4 armhf Interactive high-level object-oriented language (standard library, version 3.5) ii libpython3.9:armhf 3.9.2-1+rpi1 armhf Shared Python runtime library (version 3.9) +ii libpython3.9-dev:armhf 3.9.2-1+rpi1 armhf Header files and a static library for Python (v3.9) ii libpython3.9-minimal:armhf 3.9.2-1+rpi1 armhf Minimal subset of the Python language (version 3.9) ii libpython3.9-stdlib:armhf 3.9.2-1+rpi1 armhf Interactive high-level object-oriented language (standard library, version 3.9) ii libqdbm14 1.8.78-10 armhf QDBM Database Libraries without GDBM wrapper[runtime] @@ -901,7 +941,7 @@ ii libref-util-perl 0.204-1 a ii libref-util-xs-perl 0.117-1+b3 armhf XS implementation for Ref::Util ii libregexp-common-perl 2017060201-1 all module with common regular expressions ii librest-0.7-0:armhf 0.8.1-1.1 armhf REST service access library -ii libroken18-heimdal:armhf 7.7.0+dfsg-2+deb11u2 armhf Heimdal Kerberos - roken support library +ii libroken18-heimdal:armhf 7.7.0+dfsg-2+deb11u3 armhf Heimdal Kerberos - roken support library ii librole-tiny-perl 2.002004-1 all Perl module for minimalist role composition ii librsvg2-2:armhf 2.50.3+dfsg-1 armhf SAX-based renderer library for SVG files (runtime) ii librsvg2-common:armhf 2.50.3+dfsg-1 armhf SAX-based renderer library for SVG files (extra runtime) @@ -919,18 +959,21 @@ ii libseccomp2:armhf 2.5.1-1+rpi1+deb11u1 a ii libsecret-1-0:armhf 0.20.4-2 armhf Secret store ii libsecret-common 0.20.4-2 all Secret store (common files) ii libselinux1:armhf 3.1-3 armhf SELinux runtime shared libraries +ii libselinux1-dev:armhf 3.1-3 armhf SELinux development headers ii libsemanage-common 3.1-1 all Common files for SELinux policy management libraries ii libsemanage1:armhf 3.1-1+b1 armhf SELinux policy management library ii libsensors-config 1:3.6.0-7 all lm-sensors configuration files rc libsensors4:armhf 1:3.4.0-4 armhf library to read temperature/voltage/fan sensors ii libsensors5:armhf 1:3.6.0-7 armhf library to read temperature/voltage/fan sensors ii libsepol1:armhf 3.1-1 armhf SELinux library for manipulating binary security policies +ii libsepol1-dev:armhf 3.1-1 armhf SELinux binary policy manipulation library and development files ii libserd-0-0:armhf 0.30.10-2 armhf lightweight RDF syntax library ii libshine3:armhf 3.1.1-2+b1 armhf Fixed-point MP3 encoding library - runtime files ii libsigc++-1.2-5c2 1.2.7-2+b1 armhf type-safe Signal Framework for C++ - runtime ii libsigc++-2.0-0v5:armhf 2.10.4-2 armhf type-safe Signal Framework for C++ - runtime ii libsigsegv2:armhf 2.13-1 armhf Library for handling page faults in a portable way ii libslang2:armhf 2.3.2-5 armhf S-Lang programming library - runtime version +ii libsm-dev:armhf 2:1.2.3-1 armhf X11 Session Management library (development headers) ii libsm6:armhf 2:1.2.3-1 armhf X11 Session Management library ii libsmartcols1:armhf 2.36.1-8+deb11u1 armhf smart column output alignment library ii libsmbclient:armhf 2:4.13.13+dfsg-1~deb11u4 armhf shared library for communication with SMB/CIFS servers @@ -960,7 +1003,7 @@ ii libss2:armhf 1.46.2-2 a ii libssh-gcrypt-4:armhf 0.9.5-1+deb11u1 armhf tiny C SSH library (gcrypt flavor) ii libssh2-1:armhf 1.9.0-2 armhf SSH2 client-side library ii libssl1.0.2:armhf 1.0.2q-2 armhf Secure Sockets Layer toolkit - shared libraries -ii libssl1.1:armhf 1.1.1n-0+deb11u3 armhf Secure Sockets Layer toolkit - shared libraries +ii libssl1.1:armhf 1.1.1n-0+deb11u4 armhf Secure Sockets Layer toolkit - shared libraries ii libstdc++6:armhf 10.2.1-6+rpi1 armhf GNU Standard C++ Library v3 ii libstrictures-perl 2.000006-1 all Perl module to turn on strict and make all warnings fatal ii libstring-shellquote-perl 1.04-1 all module to quote strings for passing through the shell @@ -982,7 +1025,7 @@ ii libsystemd0:armhf 247.3-7+rpi1+deb11u1 a ii libtag1v5:armhf 1.11.1+dfsg.1-3 armhf audio meta-data library ii libtag1v5-vanilla:armhf 1.11.1+dfsg.1-3 armhf audio meta-data library - vanilla flavour ii libtalloc2:armhf 2.3.1-2+b1 armhf hierarchical pool based memory allocator -ii libtasn1-6:armhf 4.16.0-2 armhf Manage ASN.1 structures (runtime) +ii libtasn1-6:armhf 4.16.0-2+deb11u1 armhf Manage ASN.1 structures (runtime) ii libtcl8.6:armhf 8.6.11+dfsg-1 armhf Tcl (the Tool Command Language) v8.6 - run-time library files ii libtdb1:armhf 1.4.3-1+b1 armhf Trivial Database - shared library ii libterm-readkey-perl 2.38-1+b3 armhf perl module for simple terminal control @@ -1002,11 +1045,12 @@ ii libthai0:armhf 0.1.28-3 a ii libtheora0:armhf 1.1.1+dfsg.1-15 armhf Theora Video Compression Codec ii libthrowable-perl 0.200013-1.1 all role for classes that can be thrown ii libtie-ixhash-perl 1.23-2.1 all Perl module to order associative arrays -ii libtiff5:armhf 4.2.0-1+deb11u1 armhf Tag Image File Format (TIFF) library +ii libtiff5:armhf 4.2.0-1+deb11u4 armhf Tag Image File Format (TIFF) library ii libtimedate-perl 2.3300-2 all collection of modules to manipulate date/time information ii libtinfo5:armhf 6.2+20201114-2 armhf shared low-level terminfo library (legacy version) ii libtinfo6:armhf 6.2+20201114-2 armhf shared low-level terminfo library for terminal handling ii libtirpc-common 1.3.1-1+deb11u1 all transport-independent RPC library - common files +ii libtirpc-dev:armhf 1.3.1-1+deb11u1 armhf transport-independent RPC library - development files rc libtirpc1:armhf 0.2.5-1.2+deb9u1 armhf transport-independent RPC library ii libtirpc3:armhf 1.3.1-1+deb11u1 armhf transport-independent RPC library ii libtk8.6:armhf 8.6.11-2 armhf Tk toolkit for Tcl and X11 v8.6 - run-time files @@ -1072,7 +1116,7 @@ ii libwebpdemux2:armhf 0.6.1-2.1 a ii libwebpmux2:armhf 0.5.2-1 armhf Lossy compression of digital photographic images. ii libwebpmux3:armhf 0.6.1-2.1 armhf Lossy compression of digital photographic images. ii libwebsockets16:armhf 4.0.20-2 armhf lightweight C websockets library -ii libwind0-heimdal:armhf 7.7.0+dfsg-2+deb11u2 armhf Heimdal Kerberos - stringprep implementation +ii libwind0-heimdal:armhf 7.7.0+dfsg-2+deb11u3 armhf Heimdal Kerberos - stringprep implementation ii libwmf0.2-7:armhf 0.2.8.4-17 armhf Windows metafile conversion library ii libwoff1:armhf 1.0.2-1 armhf library for converting fonts to WOFF 2.0 ii libwrap0:armhf 7.6.q-31 armhf Wietse Venema's TCP wrappers library @@ -1080,6 +1124,7 @@ ii libwww-perl 6.52-1 a ii libwww-robotrules-perl 6.02-1 all database of robots.txt-derived permissions ii libx11-6:armhf 2:1.7.2-1 armhf X11 client-side library ii libx11-data 2:1.7.2-1 all X11 client-side library +ii libx11-dev:armhf 2:1.7.2-1 armhf X11 client-side library (development headers) ii libx11-protocol-perl 0.56-7.1 all Perl module for the X Window System Protocol, version 11 ii libx11-xcb1:armhf 2:1.7.2-1 armhf Xlib/XCB interface library ii libx264-148:armhf 2:0.148.2748+git97eaef2-1+rpi1 armhf x264 video coding library @@ -1087,6 +1132,7 @@ ii libx264-160:armhf 2:0.160.3011+gitcde9a93-2.1+rpi1 a ii libx265-192:armhf 3.4-2 armhf H.265/HEVC video stream encoder (shared library) ii libx265-95:armhf 2.1-2 armhf H.265/HEVC video stream encoder (shared library) ii libxapian30:armhf 1.4.18-3 armhf Search engine library +ii libxau-dev:armhf 1:1.0.9-1 armhf X11 authorisation library (development headers) ii libxau6:armhf 1:1.0.9-1 armhf X11 authorisation library ii libxaw7:armhf 2:1.0.13-1.1 armhf X11 Athena Widget library ii libxcb-dri2-0:armhf 1.14-3 armhf X C Binding, dri2 extension @@ -1099,8 +1145,10 @@ ii libxcb-present0:armhf 1.14-3 a ii libxcb-randr0:armhf 1.14-3 armhf X C Binding, randr extension ii libxcb-render-util0:armhf 0.3.9-1+b1 armhf utility libraries for X C Binding -- render-util ii libxcb-render0:armhf 1.14-3 armhf X C Binding, render extension +ii libxcb-render0-dev:armhf 1.14-3 armhf X C Binding, render extension, development files ii libxcb-shape0:armhf 1.14-3 armhf X C Binding, shape extension ii libxcb-shm0:armhf 1.14-3 armhf X C Binding, shm extension +ii libxcb-shm0-dev:armhf 1.14-3 armhf X C Binding, shm extension, development files ii libxcb-sync1:armhf 1.14-3 armhf X C Binding, sync extension ii libxcb-util1:armhf 0.4.0-1 armhf utility libraries for X C Binding -- atom, aux and event ii libxcb-xfixes0:armhf 1.14-3 armhf X C Binding, xfixes extension @@ -1108,10 +1156,13 @@ ii libxcb-xinerama0:armhf 1.14-3 a ii libxcb-xinput0:armhf 1.14-3 armhf X C Binding, xinput extension ii libxcb-xkb1:armhf 1.14-3 armhf X C Binding, XKEYBOARD extension ii libxcb1:armhf 1.14-3 armhf X C Binding +ii libxcb1-dev:armhf 1.14-3 armhf X C Binding, development files ii libxcomposite1:armhf 1:0.4.5-1 armhf X11 Composite extension library ii libxcursor1:armhf 1:1.2.0-2 armhf X cursor management library ii libxdamage1:armhf 1:1.1.5-2 armhf X11 damaged region extension library +ii libxdmcp-dev:armhf 1:1.1.2-3 armhf X11 authorisation library (development headers) ii libxdmcp6:armhf 1:1.1.2-3 armhf X11 Display Manager Control Protocol library +ii libxext-dev:armhf 2:1.3.3-1.1 armhf X11 miscellaneous extensions library (development headers) ii libxext6:armhf 2:1.3.3-1.1 armhf X11 miscellaneous extension library ii libxfixes3:armhf 1:5.0.3-2 armhf X11 miscellaneous 'fixes' extension library ii libxft2:armhf 2.3.2-2 armhf FreeType-based font drawing library for X @@ -1137,6 +1188,7 @@ ii libxmuu1:armhf 2:1.1.2-2+b3 a ii libxosd2 2.2.14-2.1 armhf X On-Screen Display library - runtime ii libxpm4:armhf 1:3.5.12-1 armhf X11 pixmap library ii libxrandr2:armhf 2:1.5.1-1 armhf X11 RandR extension library +ii libxrender-dev:armhf 1:0.9.10-1 armhf X Rendering Extension client library (development files) ii libxrender1:armhf 1:0.9.10-1 armhf X Rendering Extension client library ii libxshmfence1:armhf 1.3-1 armhf X shared memory fences - shared library ii libxslt1.1:armhf 1.1.34-4+deb11u1 armhf XSLT 1.0 processing library - runtime library @@ -1159,7 +1211,7 @@ ii libzvbi-common 0.2.35-18 a ii libzvbi0:armhf 0.2.35-18 armhf Vertical Blanking Interval decoder (VBI) - runtime files rc lighttpd 1.4.45-1 armhf fast webserver with minimal memory footprint ii linux-base 4.6 all Linux image base package -ii linux-libc-dev:armhf 5.10.149-2+rpi1 armhf Linux support headers for userspace development +ii linux-libc-dev:armhf 5.10.158-2+rpi1 armhf Linux support headers for userspace development ii locales 2.31-13+rpi1+deb11u3 all GNU C Library: National Language (locale) data [support] ii lockfile-progs 0.1.18 armhf Programs for locking and unlocking files and mailboxes ii login 1:4.8.1-1 armhf system login tools @@ -1180,7 +1232,7 @@ ii man-db 2.9.4-2 a ii manpages 5.10-1 all Manual pages about using a GNU/Linux system ii manpages-dev 5.10-1 all Manual pages about using GNU/Linux for development rc mariadb-client-10.1 10.1.23-9+deb9u1 armhf MariaDB database client binaries -rc mariadb-client-10.3 1:10.3.36-0+deb10u2 armhf MariaDB database client binaries +rc mariadb-client-10.3 1:10.3.38-0+deb10u1 armhf MariaDB database client binaries ii mariadb-client-10.5 1:10.5.15-0+deb11u1 armhf MariaDB database client binaries ii mariadb-client-core-10.5 1:10.5.15-0+deb11u1 armhf MariaDB database core client binaries ii mariadb-common 1:10.5.15-0+deb11u1 all MariaDB common configuration files @@ -1203,7 +1255,7 @@ ii multiarch-support 2.28-10+rpi1+deb10u2 a ii mysql-client 5.5.9999+default armhf MySQL database client binaries [transitional] ii mysql-common 5.8+1.0.7 all MySQL database common files, e.g. /etc/mysql/my.cnf rc mysql-utilities 1.6.4-1 all collection of scripts for managing MySQL servers -ii nano 5.4-2+deb11u1 armhf small, friendly text editor inspired by Pico +ii nano 5.4-2+deb11u2 armhf small, friendly text editor inspired by Pico ii ncal 12.1.7+nmu3 armhf display a calendar and the date of Easter ii ncdu 1.15.1-1 armhf ncurses disk usage viewer ii ncftp 2:3.2.5-2.2 armhf User-friendly and well-featured FTP client @@ -1217,10 +1269,10 @@ ii netcat-openbsd 1.217-3 a ii netcat-traditional 1.10-46 armhf TCP/IP swiss army knife ii netpbm 2:10.0-15.4 armhf Graphics conversion tools between image formats ii nfs-common 1:1.3.4-6 armhf NFS support files common to client and server -ii nftables 0.9.8-3.1 armhf Program to control packet filtering rules by Netfilter project +ii nftables 0.9.8-3.1+deb11u1 armhf Program to control packet filtering rules by Netfilter project ii nmap 7.91+dfsg1+really7.80+dfsg1-2 armhf The Network Mapper ii nmap-common 7.91+dfsg1+really7.80+dfsg1-2 all Architecture independent files for nmap -ii nodejs 18.12.1-deb-1nodesource1 armhf Node.js event-based server-side javascript engine +ii nodejs 18.14.2-deb-1nodesource1 armhf Node.js event-based server-side javascript engine ii notification-daemon 3.20.0-4 armhf daemon for displaying passive pop-up notifications ii ntfs-3g 1:2017.3.23AR.3-4+deb11u3 armhf read/write NTFS driver for FUSE ii ntpdate 1:4.2.8p15+dfsg-1 armhf client for setting system time from NTP servers (deprecated) @@ -1229,7 +1281,7 @@ ii openresolv 3.12.0-1 a ii openssh-client 1:8.4p1-5+deb11u1 armhf secure shell (SSH) client, for secure access to remote machines ii openssh-server 1:8.4p1-5+deb11u1 armhf secure shell (SSH) server, for secure access from remote machines ii openssh-sftp-server 1:8.4p1-5+deb11u1 armhf secure shell (SSH) sftp server module, for SFTP access from remote machines -ii openssl 1.1.1n-0+deb11u3 armhf Secure Sockets Layer toolkit - cryptographic utility +ii openssl 1.1.1n-0+deb11u4 armhf Secure Sockets Layer toolkit - cryptographic utility ii openvpn 2.5.1-3 armhf virtual private network daemon ii oss-compat 7 armhf Open Sound System (OSS) compatibility package ii p7zip 16.02+dfsg-8 armhf 7zr file archiver with high compression ratio @@ -1267,19 +1319,19 @@ rc php7.0-soap 7.0.33-0+deb9u1 a rc php7.0-sqlite3 7.0.33-0+deb9u1 armhf SQLite3 module for PHP rc php7.0-xml 7.0.33-0+deb9u1 armhf DOM, SimpleXML, WDDX, XML, and XSL module for PHP rc php7.0-zip 7.0.33-0+deb9u1 armhf Zip module for PHP -rc php7.3-bz2 7.3.31-1~deb10u2 armhf bzip2 module for PHP -rc php7.3-cgi 7.3.31-1~deb10u2 armhf server-side, HTML-embedded scripting language (CGI binary) -rc php7.3-cli 7.3.31-1~deb10u2 armhf command-line interpreter for the PHP scripting language -rc php7.3-curl 7.3.31-1~deb10u2 armhf CURL module for PHP -rc php7.3-json 7.3.31-1~deb10u2 armhf JSON module for PHP -rc php7.3-mbstring 7.3.31-1~deb10u2 armhf MBSTRING module for PHP -rc php7.3-mysql 7.3.31-1~deb10u2 armhf MySQL module for PHP -rc php7.3-opcache 7.3.31-1~deb10u2 armhf Zend OpCache module for PHP -rc php7.3-readline 7.3.31-1~deb10u2 armhf readline module for PHP -rc php7.3-soap 7.3.31-1~deb10u2 armhf SOAP module for PHP -rc php7.3-sqlite3 7.3.31-1~deb10u2 armhf SQLite3 module for PHP -rc php7.3-xml 7.3.31-1~deb10u2 armhf DOM, SimpleXML, WDDX, XML, and XSL module for PHP -rc php7.3-zip 7.3.31-1~deb10u2 armhf Zip module for PHP +rc php7.3-bz2 7.3.31-1~deb10u3 armhf bzip2 module for PHP +rc php7.3-cgi 7.3.31-1~deb10u3 armhf server-side, HTML-embedded scripting language (CGI binary) +rc php7.3-cli 7.3.31-1~deb10u3 armhf command-line interpreter for the PHP scripting language +rc php7.3-curl 7.3.31-1~deb10u3 armhf CURL module for PHP +rc php7.3-json 7.3.31-1~deb10u3 armhf JSON module for PHP +rc php7.3-mbstring 7.3.31-1~deb10u3 armhf MBSTRING module for PHP +rc php7.3-mysql 7.3.31-1~deb10u3 armhf MySQL module for PHP +rc php7.3-opcache 7.3.31-1~deb10u3 armhf Zend OpCache module for PHP +rc php7.3-readline 7.3.31-1~deb10u3 armhf readline module for PHP +rc php7.3-soap 7.3.31-1~deb10u3 armhf SOAP module for PHP +rc php7.3-sqlite3 7.3.31-1~deb10u3 armhf SQLite3 module for PHP +rc php7.3-xml 7.3.31-1~deb10u3 armhf DOM, SimpleXML, WDDX, XML, and XSL module for PHP +rc php7.3-zip 7.3.31-1~deb10u3 armhf Zip module for PHP ii php7.4 7.4.33-1+deb11u1 all server-side, HTML-embedded scripting language (metapackage) ii php7.4-bz2 7.4.33-1+deb11u1 armhf bzip2 module for PHP ii php7.4-cgi 7.4.33-1+deb11u1 armhf server-side, HTML-embedded scripting language (CGI binary) @@ -1309,12 +1361,15 @@ ii python-pip-whl 20.3.4-4+deb11u1 a ii python-pkg-resources 44.1.1-1 all Package Discovery and Resource Access using pkg_resources ii python-six 1.16.0-2 all Python 2 and 3 compatibility library (Python 2 interface) ii python2 2.7.18-3 armhf interactive high-level object-oriented language (Python2 version) +ii python2-dev 2.7.18-3 armhf header files and a static library for Python2 ii python2-minimal 2.7.18-3 armhf minimal subset of the Python2 language ii python2.7 2.7.18-8 armhf Interactive high-level object-oriented language (version 2.7) +ii python2.7-dev 2.7.18-8 armhf Header files and a static library for Python (v2.7) ii python2.7-minimal 2.7.18-8 armhf Minimal subset of the Python language (version 2.7) ii python3 3.9.2-3 armhf interactive high-level object-oriented language (default python3 version) ii python3-apt 2.2.1 armhf Python 3 interface to libapt-pkg ii python3-dbus 1.2.16-5 armhf simple interprocess messaging system (Python 3 interface) +ii python3-dev 3.9.2-3 armhf header files and a static library for Python (default) ii python3-distro-info 1.0 all information about distributions' releases (Python 3 module) ii python3-distutils 3.9.2-1 all distutils package for Python 3.x ii python3-dnspython 2.0.0-1 all DNS toolkit for Python 3 @@ -1334,6 +1389,7 @@ ii python3-wheel 0.34.2-1 a ii python3.5 3.5.4-4 armhf Interactive high-level object-oriented language (version 3.5) ii python3.5-minimal 3.5.4-4 armhf Minimal subset of the Python language (version 3.5) ii python3.9 3.9.2-1+rpi1 armhf Interactive high-level object-oriented language (version 3.9) +ii python3.9-dev 3.9.2-1+rpi1 armhf Header files and a static library for Python (v3.9) ii python3.9-minimal 3.9.2-1+rpi1 armhf Minimal subset of the Python language (version 3.9) ii qt5-gtk-platformtheme:armhf 5.15.2+dfsg-9+rpi1 armhf Qt 5 GTK+ 3 platform theme ii qttranslations5-l10n 5.15.2-2 all translations for Qt 5 @@ -1375,7 +1431,9 @@ ii ssh 1:8.4p1-5+deb11u1 a ii ssl-cert 1.1.0+nmu1 all simple debconf wrapper for OpenSSL ii startpar 0.64-3 armhf run processes in parallel and multiplex their output ii strace 5.10-1 armhf System call tracer -ii sudo 1.9.5p2-3 armhf Provide limited super user privileges to specific users +ii sudo 1.9.5p2-3+deb11u1 armhf Provide limited super user privileges to specific users +ii swig 4.0.2-1 all Generate scripting interfaces to C/C++ code +ii swig4.0 4.0.2-1 armhf Generate scripting interfaces to C/C++ code ii systemd 247.3-7+rpi1+deb11u1 armhf system and service manager ii systemd-sysv 247.3-7+rpi1+deb11u1 armhf system and service manager - SysV links ii sysv-rc 2.96-7+deb11u1 all System-V-like runlevel change mechanism @@ -1391,7 +1449,7 @@ ii tdb-tools 1.4.3-1+b1 a ii tk8.6 8.6.11-2 armhf Tk toolkit for Tcl and X11 v8.6 - windowing shell ii traceroute 1:2.1.0-2 armhf Traces the route taken by packets over an IPv4/IPv6 network ii triggerhappy 0.5.0-1.1 armhf global hotkey daemon for Linux -ii tzdata 2021a-1+deb11u5 all time zone and daylight-saving time data +ii tzdata 2021a-1+deb11u8 all time zone and daylight-saving time data ii ucf 3.0043 all Update Configuration File(s): preserve user changes to config files ii udev 247.3-7+rpi1+deb11u1 armhf /dev/ and hotplug management daemon ii unattended-upgrades 2.8 all automatic installation of security upgrades @@ -1401,6 +1459,7 @@ ii usb-modeswitch 2.6.1-1 a ii usb-modeswitch-data 20191128-3 all mode switching data for usb-modeswitch ii usbutils 1:013-3 armhf Linux USB utilities ii util-linux 2.36.1-8+deb11u1 armhf miscellaneous system utilities +ii uuid-dev:armhf 2.36.1-8+deb11u1 armhf Universally Unique ID library - headers and static libraries ii v4l-utils 1.20.0-2 armhf Collection of command line video4linux utilities ii va-driver-all:armhf 2.10.0-1 armhf Video Acceleration (VA) API -- driver metapackage ii vdpau-driver-all:armhf 1.4-3 armhf Video Decode and Presentation API for Unix (driver metapackage) @@ -1419,16 +1478,21 @@ ii wpasupplicant 2:2.9.0-21 a ii x11-common 1:7.7+22 all X Window System (X.Org) infrastructure ii x11-utils 7.7+5 armhf X11 utilities ii x11-xserver-utils 7.7+8 armhf X server utilities +ii x11proto-dev 2020.1-1 all X11 extension protocols and auxiliary headers +ii x11proto-xext-dev 2020.1-1 all transitional dummy package ii xauth 1:1.1-1 armhf X authentication utility ii xbitmaps 1.1.1-2.1 all Base X bitmaps ii xdg-user-dirs 0.17-2 armhf tool to manage well known user directories ii xdg-utils 1.1.3-4.1 all desktop integration utilities from freedesktop.org ii xkb-data 2.29-2 all X Keyboard Extension (XKB) configuration data ii xml-core 0.18+nmu1 all XML infrastructure and XML catalog file support +ii xorg-sgml-doctools 1:1.11-1.1 all Common tools for building X.Org SGML documentation ii xterm 366-1+deb11u1 armhf X terminal emulator +ii xtrans-dev 1.4.0-1 all X transport library (development files) ii xxd 2:8.2.2434-3+deb11u1 armhf tool to make (or reverse) a hex dump ii xz-utils 5.2.5-2.1~deb11u1 armhf XZ-format compression utilities ii yarn 1.22.19-1 all Fast, reliable, and secure dependency management. ii youtube-dl 2021.06.06-1 all downloader of videos from YouTube and other sites ii zip 3.0-12 armhf Archiver for .zip files ii zlib1g:armhf 1:1.2.11.dfsg-2+deb11u2 armhf compression library - runtime +ii zlib1g-dev:armhf 1:1.2.11.dfsg-2+deb11u2 armhf compression library - development diff --git a/packages_x64.txt b/packages_x64.txt deleted file mode 100644 index 67f19a3c..00000000 --- a/packages_x64.txt +++ /dev/null @@ -1,1178 +0,0 @@ -Desired=Unknown/Install/Remove/Purge/Hold -| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend -|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) -||/ Name Version Architecture Description -+++-====================================-=====================================-============-=============================================================================== -ii acl 2.2.53-10 amd64 access control list - utilities -ii adduser 3.118 all add and remove users and groups -ii adwaita-icon-theme 3.38.0-1 all default icon theme of GNOME -ii alsa-utils 1.2.4-1 amd64 Utilities for configuring and using ALSA -ii alsaplayer-alsa 0.99.81-2+b1 amd64 alsaplayer output module for ALSA -ii alsaplayer-daemon 0.99.81-2+b1 amd64 alsaplayer daemon -ii alsaplayer-gtk 0.99.81-2+b1 amd64 alsaplayer gtk interface -ii alsaplayer-jack 0.99.81-2+b1 amd64 alsaplayer output module for JACK -ii alsaplayer-nas 0.99.81-2+b1 amd64 alsaplayer output module for NAS -ii alsaplayer-oss 0.99.81-2+b1 amd64 alsaplayer output module for OSS -ii alsaplayer-text 0.99.81-2+b1 amd64 alsaplayer text interface -ii alsaplayer-xosd 0.99.81-2+b1 amd64 alsaplayer XOSD display module -ii apache2 2.4.54-1~deb11u1 amd64 Apache HTTP Server -ii apache2-bin 2.4.54-1~deb11u1 amd64 Apache HTTP Server (modules and other binary files) -ii apache2-data 2.4.54-1~deb11u1 all Apache HTTP Server (common files) -ii apache2-utils 2.4.54-1~deb11u1 amd64 Apache HTTP Server (utility programs for web servers) -ii apt 2.2.4 amd64 commandline package manager -ii aptitude-common 0.8.13-3 all architecture independent files for the aptitude package manager -ii at-spi2-core 2.38.0-4 amd64 Assistive Technology Service Provider Interface (dbus core) -ii attr 1:2.4.48-6 amd64 utilities for manipulating filesystem extended attributes -ii autoconf 2.69-14 all automatic configure script builder -ii autofs 5.1.7-1 amd64 kernel-based automounter for Linux -ii automake 1:1.16.3-2 all Tool for generating GNU Standards-compliant Makefiles -ii autopoint 0.21-4 all tool for setting up gettext infrastructure in a source package -ii autotools-dev 20180224.1+nmu1 all Update infrastructure for config.{guess,sub} files -ii avahi-daemon 0.8-5+deb11u1 amd64 Avahi mDNS/DNS-SD daemon -ii base-files 11.1+deb11u6 amd64 Debian base system miscellaneous files -ii base-passwd 3.5.51 amd64 Debian base system master password and group files -ii bash 5.1-2+deb11u1 amd64 GNU Bourne Again SHell -ii bash-completion 1:2.11-2 all programmable completion for the bash shell -ii bc 1.07.1-2+b2 amd64 GNU bc arbitrary precision calculator language -ii bind9-dnsutils 1:9.16.37-1~deb11u1 amd64 Clients provided with BIND 9 -ii bind9-host 1:9.16.37-1~deb11u1 amd64 DNS Lookup Utility -ii bind9-libs:amd64 1:9.16.37-1~deb11u1 amd64 Shared Libraries used by BIND 9 -ii binutils 2.35.2-2 amd64 GNU assembler, linker and binary utilities -ii binutils-arm-linux-gnueabihf 2.35.2-2 amd64 GNU binary utilities, for arm-linux-gnueabihf target -ii binutils-common:amd64 2.35.2-2 amd64 Common files for the GNU assembler, linker and binary utilities -ii binutils-x86-64-linux-gnu 2.35.2-2 amd64 GNU binary utilities, for x86-64-linux-gnu target -ii blends-tasks 0.7.2 all Debian Pure Blends tasks for new installations -ii bluez 5.55-3.1 amd64 Bluetooth tools and daemons -ii bluez-firmware 1.2-4 all Firmware for Bluetooth devices -ii bsd-mailx 8.1.2-0.20180807cvs-2 amd64 simple mail user agent -ii bsdextrautils 2.36.1-8+deb11u1 amd64 extra utilities from 4.4BSD-Lite -ii bsdutils 1:2.36.1-8+deb11u1 amd64 basic utilities from 4.4BSD-Lite -ii bzip2 1.0.8-4 amd64 high-quality block-sorting file compressor - utilities -ii ca-certificates 20210119 all Common CA certificates -ii cifs-utils 2:6.11-3.1+deb11u1 amd64 Common Internet File System utilities -ii console-setup 1.205 all console font and keymap setup program -ii console-setup-linux 1.205 all Linux specific part of console-setup -ii coreutils 8.32-4+b1 amd64 GNU core utilities -ii cpanminus 1.7044-2 all script to get, unpack, build and install modules from CPAN -ii cpio 2.13+dfsg-4 amd64 GNU cpio -- a program to manage archives of files -ii cpp 4:10.2.1-1 amd64 GNU C preprocessor (cpp) -ii cpp-10 10.2.1-6 amd64 GNU C preprocessor -ii crda 4.14+git20191112.9856751-1 amd64 wireless Central Regulatory Domain Agent -ii cron 3.0pl1-137 amd64 process scheduling daemon -ii curl 7.74.0-1.3+deb11u5 amd64 command line tool for transferring data with URL syntax -ii dash 0.5.11+git20200708+dd9ef66-5 amd64 POSIX-compliant shell -ii dbus 1.12.24-0+deb11u1 amd64 simple interprocess messaging system (daemon and utilities) -ii dbus-user-session 1.12.24-0+deb11u1 amd64 simple interprocess messaging system (systemd --user integration) -ii dc 1.07.1-2+b2 amd64 GNU dc arbitrary precision reverse-polish calculator -ii dconf-gsettings-backend:amd64 0.38.0-2 amd64 simple configuration storage system - GSettings back-end -ii dconf-service 0.38.0-2 amd64 simple configuration storage system - D-Bus service -ii debconf 1.5.77 all Debian configuration management system -ii debian-archive-keyring 2021.1.1 all GnuPG archive keys of the Debian archive -ii debianutils 4.11.2 amd64 Miscellaneous utilities specific to Debian -ii default-mysql-client 1.0.7 all MySQL database client binaries (metapackage) -ii device-tree-compiler 1.6.0-1 amd64 Device Tree Compiler for Flat Device Trees -ii dh-python 4.20201102+nmu1 all Debian helper tools for packaging Python libraries and applications -ii dhcpcd5 7.1.0-2+b1 amd64 DHCPv4, IPv6RA and DHCPv6 client with IPv4LL support -ii diffutils 1:3.7-5 amd64 File comparison utilities -ii dirmngr 2.2.27-2+deb11u2 amd64 GNU privacy guard - network certificate management service -ii distro-info-data 0.51+deb11u3 all information about the distributions' releases (data files) -ii dmidecode 3.3-2 amd64 SMBIOS/DMI table decoder -ii dmsetup 2:1.02.175-2.1 amd64 Linux Kernel Device Mapper userspace library -ii dos2unix 7.4.1-1 amd64 convert text file line endings between CRLF and LF -ii dphys-swapfile 20100506-7 all Autogenerate and use a swap file -ii dpkg 1.20.12 amd64 Debian package management system -ii dropbear 2020.81-3 all lightweight SSH2 server and client - startup scripts -ii dropbear-bin 2020.81-3 amd64 lightweight SSH2 server and client - command line tools -ii e2fsprogs 1.46.2-2 amd64 ext2/ext3/ext4 file system utilities -ii ed 1.17-1 amd64 classic UNIX line editor -ii ethtool 1:5.9-1 amd64 display or change Ethernet device settings -ii exfat-fuse 1.3.0-2 amd64 read and write exFAT driver for FUSE -ii exim4-base 4.94.2-7 amd64 support files for all Exim MTA (v4) packages -ii exim4-config 4.94.2-7 all configuration for the Exim MTA (v4) -ii exim4-daemon-light 4.94.2-7 amd64 lightweight Exim MTA (v4) daemon -ii expect 5.45.4-2+b1 amd64 Automates interactive applications -ii fake-hwclock 0.12 all Save/restore system clock on machines without working RTC hardware -ii fakeroot 1.25.3-1.1 amd64 tool for simulating superuser privileges -ii fbset 2.1-32 amd64 framebuffer device maintenance program -ii fdisk 2.36.1-8+deb11u1 amd64 collection of partitioning utilities -ii ffmpeg 7:4.3.5-0+deb11u1 amd64 Tools for transcoding, streaming and playing of multimedia files -ii findutils 4.8.0-1 amd64 utilities for finding files--find, xargs -ii firmware-atheros 20210315-3 all Binary firmware for Qualcomm Atheros wireless cards -ii firmware-brcm80211 20210315-3 all Binary firmware for Broadcom/Cypress 802.11 wireless cards -ii firmware-libertas 20210315-3 all Binary firmware for Marvell wireless cards -ii firmware-misc-nonfree 20210315-3 all Binary firmware for various drivers in the Linux kernel -ii firmware-realtek 20210315-3 all Binary firmware for Realtek wired/wifi/BT adapters -ii fontconfig 2.13.1-4.2 amd64 generic font configuration library - support binaries -ii fontconfig-config 2.13.1-4.2 all generic font configuration library - configuration -ii fonts-dejavu-core 2.37-2 all Vera font family derivate with additional characters -ii fonts-droid-fallback 1:6.0.1r16-1.1 all handheld device font with extensive style and language support (fallback) -ii fonts-urw-base35 20200910-1 all font set metric-compatible with the 35 PostScript Level 2 Base Fonts -ii fuse 2.9.9-5 amd64 Filesystem in Userspace -ii galera-3 25.3.36-0+deb11u1 amd64 Replication framework for transactional applications -ii gawk 1:5.1.0-1 amd64 GNU awk, a pattern scanning and processing language -ii gcc-10 10.2.1-6 amd64 GNU C compiler -ii gcc-10-base:amd64 10.2.1-6 amd64 GCC, the GNU Compiler Collection (base package) -ii gcc-9-base:amd64 9.3.0-22 amd64 GCC, the GNU Compiler Collection (base package) -ii gdb 10.1-1.7 amd64 GNU Debugger -ii geoclue-2.0 2.5.7-3 amd64 geoinformation service -ii geoip-database 20191224-3 all IP lookup command line tools that use the GeoIP library (country database) -ii gettext-base 0.21-4 amd64 GNU Internationalization utilities for the base system -ii ghostscript 9.53.3~dfsg-7+deb11u2 amd64 interpreter for the PostScript language and for PDF -ii gir1.2-glib-2.0:amd64 1.66.1-1+b1 amd64 Introspection data for GLib, GObject, Gio and GModule -ii git 1:2.30.2-1+deb11u1 amd64 fast, scalable, distributed revision control system -ii git-man 1:2.30.2-1+deb11u1 all fast, scalable, distributed revision control system (manual pages) -ii glib-networking:amd64 2.66.0-2 amd64 network-related giomodules for GLib -ii glib-networking-common 2.66.0-2 all network-related giomodules for GLib - data files -ii glib-networking-services 2.66.0-2 amd64 network-related giomodules for GLib - D-Bus services -ii gnupg 2.2.27-2+deb11u2 all GNU privacy guard - a free PGP replacement -ii gnupg-l10n 2.2.27-2+deb11u2 all GNU privacy guard - localization files -ii gnupg-utils 2.2.27-2+deb11u2 amd64 GNU privacy guard - utility programs -ii gpg 2.2.27-2+deb11u2 amd64 GNU Privacy Guard -- minimalist public key operations -ii gpg-agent 2.2.27-2+deb11u2 amd64 GNU privacy guard - cryptographic agent -ii gpg-wks-client 2.2.27-2+deb11u2 amd64 GNU privacy guard - Web Key Service client -ii gpg-wks-server 2.2.27-2+deb11u2 amd64 GNU privacy guard - Web Key Service server -ii gpgconf 2.2.27-2+deb11u2 amd64 GNU privacy guard - core configuration utilities -ii gpgsm 2.2.27-2+deb11u2 amd64 GNU privacy guard - S/MIME version -ii gpgv 2.2.27-2+deb11u2 amd64 GNU privacy guard - signature verification tool -ii grep 3.6-1 amd64 GNU grep, egrep and fgrep -ii groff-base 1.22.4-6 amd64 GNU troff text-formatting system (base system components) -ii grub-common 2.06-3~deb11u5 amd64 GRand Unified Bootloader (common files) -ii grub-pc 2.06-3~deb11u5 amd64 GRand Unified Bootloader, version 2 (PC/BIOS version) -ii grub-pc-bin 2.06-3~deb11u5 amd64 GRand Unified Bootloader, version 2 (PC/BIOS modules) -ii grub2-common 2.06-3~deb11u5 amd64 GRand Unified Bootloader (common files for version 2) -ii gsasl-common 1.10.0-4+deb11u1 all GNU SASL platform independent files -ii gsettings-desktop-schemas 3.38.0-2 all GSettings desktop-wide schemas -ii gsfonts 1:8.11+urwcyr1.0.7~pre44-4.5 all Fonts for the Ghostscript interpreter(s) -ii gstreamer1.0-plugins-base:amd64 1.18.4-2 amd64 GStreamer plugins from the "base" set -ii gtk-update-icon-cache 3.24.24-4+deb11u2 amd64 icon theme caching utility -ii gzip 1.10-4+deb11u1 amd64 GNU compression utilities -ii hardlink 0.3.2+b1 amd64 Hardlinks multiple copies of the same file -ii haveged 1.9.14-1 amd64 Linux entropy source using the HAVEGE algorithm -ii hicolor-icon-theme 0.17-2 all default fallback theme for FreeDesktop.org icon themes -ii hostname 3.23 amd64 utility to set/show the host name or domain name -ii htop 3.0.5-7 amd64 interactive processes viewer -ii i2c-tools 4.2-1+b1 amd64 heterogeneous set of I2C tools for Linux -ii ibverbs-providers:amd64 33.2-1 amd64 User space provider drivers for libibverbs -ii icc-profiles-free 2.0.1+dfsg-1.1 all ICC color profiles for use with color profile aware software -ii ifplugd 0.28-19.5 amd64 configuration daemon for ethernet devices -ii ifupdown 0.8.36 amd64 high level tools to configure network interfaces -ii imagemagick 8:6.9.11.60+dfsg-1.3 amd64 image manipulation programs -- binaries -ii imagemagick-6-common 8:6.9.11.60+dfsg-1.3 all image manipulation programs -- infrastructure -ii imagemagick-6.q16 8:6.9.11.60+dfsg-1.3 amd64 image manipulation programs -- quantum depth Q16 -ii info 6.7.0.dfsg.2-6 amd64 Standalone GNU Info documentation browser -ii init 1.60 amd64 metapackage ensuring an init system is installed -ii init-system-helpers 1.60 all helper tools for all init systems -ii initramfs-tools-core 0.140 all generic modular initramfs generator (core tools) -ii insserv 1.21.0-1.1 amd64 boot sequence organizer using LSB init.d script dependency information -ii install-info 6.7.0.dfsg.2-6 amd64 Manage installed documentation in info format -ii iproute2 5.10.0-4 amd64 networking and traffic control tools -ii iputils-ping 3:20210202-1 amd64 Tools to test the reachability of network hosts -ii isc-dhcp-client 4.4.1-2.3+deb11u1 amd64 DHCP client for automatically obtaining an IP address -ii iso-codes 4.6.0-1 all ISO language, territory, currency, script codes and their translations -ii iw 5.9-3 amd64 tool for configuring Linux wireless devices -ii javascript-common 11+nmu1 all Base support for JavaScript library packages -ii jq 1.6-2.1 amd64 lightweight and flexible command-line JSON processor -ii kbd 2.3.0-3 amd64 Linux console font and keytable utilities -ii keyboard-configuration 1.205 all system-wide keyboard preferences -ii klibc-utils 2.0.8-6.1 amd64 small utilities built with klibc for early boot -ii kmod 28-1 amd64 tools for managing Linux kernel modules -ii less 551-2 amd64 pager program similar to more -ii liba52-0.7.4:amd64 0.7.4-20 amd64 library for decoding ATSC A/52 streams -ii libacl1:amd64 2.2.53-10 amd64 access control list - shared library -ii libaio1:amd64 0.3.112-9 amd64 Linux kernel AIO access library - shared library -ii libalgorithm-c3-perl 0.11-1 all Perl module for merging hierarchies using the C3 algorithm -ii libalgorithm-diff-perl 1.201-1 all module to find differences between files -ii libalgorithm-merge-perl 0.08-3 all Perl module for three-way merge of textual data -ii libalsaplayer-dev 0.99.81-2+b1 amd64 alsaplayer plugin library (development files) -ii libalsaplayer0:amd64 0.99.81-2+b1 amd64 alsaplayer plugin library -ii libany-uri-escape-perl 0.01-3 all module to load URI::Escape::XS preferentially over URI::Escape -ii libaom0:amd64 1.0.0.errata1-3 amd64 AV1 Video Codec Library -ii libapache2-mod-php7.4 7.4.33-1+deb11u1 amd64 server-side, HTML-embedded scripting language (Apache 2 module) -ii libapparmor1:amd64 2.13.6-10 amd64 changehat AppArmor library -ii libapr1:amd64 1.7.0-6+deb11u1 amd64 Apache Portable Runtime Library -ii libaprutil1:amd64 1.6.1-5 amd64 Apache Portable Runtime Utility Library -ii libaprutil1-dbd-sqlite3:amd64 1.6.1-5 amd64 Apache Portable Runtime Utility Library - SQLite3 Driver -ii libaprutil1-ldap:amd64 1.6.1-5 amd64 Apache Portable Runtime Utility Library - LDAP Driver -ii libapt-pkg6.0:amd64 2.2.4 amd64 package management runtime library -ii libarchive-extract-perl 0.86-1 all generic archive extracting module -ii libarchive13:amd64 3.4.3-2+deb11u1 amd64 Multi-format archive and compression library (shared library) -ii libargon2-1:amd64 0~20171227-0.2 amd64 memory-hard hashing function - runtime library -ii libasan5:amd64 9.3.0-22 amd64 AddressSanitizer -- a fast memory error detector -ii libasan6:amd64 10.2.1-6 amd64 AddressSanitizer -- a fast memory error detector -ii libasn1-8-heimdal:amd64 7.7.0+dfsg-2+deb11u2 amd64 Heimdal Kerberos - ASN.1 library -ii libasound2:amd64 1.2.4-1.1 amd64 shared library for ALSA applications -ii libasound2-data 1.2.4-1.1 all Configuration files and profiles for ALSA drivers -ii libasprintf-dev:amd64 0.21-4 amd64 use fprintf and friends in C++ - static libraries and headers -ii libasprintf0v5:amd64 0.21-4 amd64 use fprintf and friends in C++ - shared library -ii libass9:amd64 1:0.15.0-2 amd64 library for SSA/ASS subtitles rendering -ii libassuan0:amd64 2.5.3-7.1 amd64 IPC library for the GnuPG components -ii libasyncns0:amd64 0.8-6+b2 amd64 Asynchronous name service query library -ii libatk-bridge2.0-0:amd64 2.38.0-1 amd64 AT-SPI 2 toolkit bridge - shared library -ii libatk1.0-0:amd64 2.36.0-2 amd64 ATK accessibility toolkit -ii libatk1.0-data 2.36.0-2 all Common files for the ATK accessibility toolkit -ii libatomic1:amd64 10.2.1-6 amd64 support library providing __atomic built-in functions -ii libatopology2:amd64 1.2.4-1.1 amd64 shared library for handling ALSA topology definitions -ii libatspi2.0-0:amd64 2.38.0-4 amd64 Assistive Technology Service Provider Interface - shared library -ii libattr1:amd64 1:2.4.48-6 amd64 extended attribute handling - shared library -ii libaudio2:amd64 1.9.4-7 amd64 Network Audio System - shared libraries -ii libaudiofile1:amd64 0.3.6-5 amd64 Open-source version of SGI's audiofile library -ii libaudit-common 1:3.0-2 all Dynamic library for security auditing - common files -ii libaudit1:amd64 1:3.0-2 amd64 Dynamic library for security auditing -ii libauthen-pam-perl 0.16-3+b8 amd64 Perl interface to PAM library -ii libauthen-sasl-perl 2.1600-1.1 all Authen::SASL - SASL Authentication framework -ii libavahi-client3:amd64 0.8-5+deb11u1 amd64 Avahi client library -ii libavahi-common-data:amd64 0.8-5+deb11u1 amd64 Avahi common data files -ii libavahi-common3:amd64 0.8-5+deb11u1 amd64 Avahi common library -ii libavahi-core7:amd64 0.8-5+deb11u1 amd64 Avahi's embeddable mDNS/DNS-SD library -ii libavahi-glib1:amd64 0.8-5+deb11u1 amd64 Avahi GLib integration library -ii libavc1394-0:amd64 0.5.4-5 amd64 control IEEE 1394 audio/video devices -ii libavcodec-dev:amd64 7:4.3.5-0+deb11u1 amd64 FFmpeg library with de/encoders for audio/video codecs - development files -ii libavcodec58:amd64 7:4.3.5-0+deb11u1 amd64 FFmpeg library with de/encoders for audio/video codecs - runtime files -ii libavdevice58:amd64 7:4.3.5-0+deb11u1 amd64 FFmpeg library for handling input and output devices - runtime files -ii libavfilter7:amd64 7:4.3.5-0+deb11u1 amd64 FFmpeg library containing media filters - runtime files -ii libavformat-dev:amd64 7:4.3.5-0+deb11u1 amd64 FFmpeg library with (de)muxers for multimedia containers - development files -ii libavformat58:amd64 7:4.3.5-0+deb11u1 amd64 FFmpeg library with (de)muxers for multimedia containers - runtime files -ii libavresample-dev:amd64 7:4.3.5-0+deb11u1 amd64 FFmpeg compatibility library for resampling - development files -ii libavresample4:amd64 7:4.3.5-0+deb11u1 amd64 FFmpeg compatibility library for resampling - runtime files -ii libavutil-dev:amd64 7:4.3.5-0+deb11u1 amd64 FFmpeg library with functions for simplifying programming - development files -ii libavutil56:amd64 7:4.3.5-0+deb11u1 amd64 FFmpeg library with functions for simplifying programming - runtime files -ii libb-hooks-endofscope-perl 0.24-1.1 all module for executing code after a scope finished compilation -ii libb-hooks-op-check-perl 0.22-1+b3 amd64 Perl wrapper for OP check callbacks -ii libbabeltrace1:amd64 1.5.8-1+b3 amd64 Babeltrace conversion libraries -ii libbdplus0:amd64 0.1.2-3 amd64 implementation of BD+ for reading Blu-ray Discs -ii libbinutils:amd64 2.35.2-2 amd64 GNU binary utilities (private shared library) -ii libblas3:amd64 3.9.0-3 amd64 Basic Linear Algebra Reference implementations, shared library -ii libblkid1:amd64 2.36.1-8+deb11u1 amd64 block device ID library -ii libbluetooth3:amd64 5.55-3.1 amd64 Library to use the BlueZ Linux Bluetooth stack -ii libbluray2:amd64 1:1.2.1-4+deb11u2 amd64 Blu-ray disc playback support library (shared library) -ii libboost-iostreams1.74.0:amd64 1.74.0-9 amd64 Boost.Iostreams Library -ii libboost-python1.74.0 1.74.0-9 amd64 Boost.Python Library -ii libboost-regex1.74.0:amd64 1.74.0-9 amd64 regular expression library for C++ -ii libboost-thread1.74.0:amd64 1.74.0-9 amd64 portable C++ multi-threading -ii libbpf0:amd64 1:0.3-2 amd64 eBPF helper library (shared library) -ii libbrotli1:amd64 1.0.9-2+b2 amd64 library implementing brotli encoder and decoder (shared libraries) -ii libbs2b0:amd64 3.1.0+dfsg-2.2+b1 amd64 Bauer stereophonic-to-binaural DSP library -ii libbsd-resource-perl 1.2911-1+b5 amd64 BSD process resource limit and priority functions -ii libbsd0:amd64 0.11.3-1 amd64 utility functions from BSD systems - shared library -ii libbz2-1.0:amd64 1.0.8-4 amd64 high-quality block-sorting file compressor library - runtime -ii libc-ares2:amd64 1.17.1-1+deb11u1 amd64 asynchronous name resolver -ii libc-bin 2.31-13+deb11u5 amd64 GNU C Library: Binaries -ii libc-dev-bin 2.31-13+deb11u5 amd64 GNU C Library: Development binaries -ii libc-l10n 2.31-13+deb11u5 all GNU C Library: localization files -ii libc6:amd64 2.31-13+deb11u5 amd64 GNU C Library: Shared libraries -ii libc6-dbg:amd64 2.31-13+deb11u5 amd64 GNU C Library: detached debugging symbols -ii libcaca0:amd64 0.99.beta19-2.2 amd64 colour ASCII art library -ii libcairo-gobject2:amd64 1.16.0-5 amd64 Cairo 2D vector graphics library (GObject library) -ii libcairo2:amd64 1.16.0-5 amd64 Cairo 2D vector graphics library -ii libcap-ng0:amd64 0.7.9-2.2+b1 amd64 An alternate POSIX capabilities library -ii libcap2:amd64 1:2.44-1 amd64 POSIX 1003.1e capabilities (library) -ii libcap2-bin 1:2.44-1 amd64 POSIX 1003.1e capabilities (utilities) -ii libcapture-tiny-perl 0.48-1 all module to capture STDOUT and STDERR -ii libcasa-casa5:amd64 3.3.0-4+b3 amd64 CASA core modules -ii libcasa-python3-5:amd64 3.3.0-4+b3 amd64 CASA Python bindings -ii libcbor0:amd64 0.5.0+dfsg-2 amd64 library for parsing and generating CBOR (RFC 7049) -ii libcc1-0:amd64 10.2.1-6 amd64 GCC cc1 plugin for GDB -ii libcdio-cdda2:amd64 10.2+2.0.0-1+b2 amd64 library to read and control digital audio CDs -ii libcdio-paranoia2:amd64 10.2+2.0.0-1+b2 amd64 library to read digital audio CDs with error correction -ii libcdio19:amd64 2.1.0-2 amd64 library to read and control CD-ROM -ii libcdparanoia0:amd64 3.10.2+debian-13.1 amd64 audio extraction tool for sampling CDs (library) -ii libcephfs2 14.2.21-1 amd64 Ceph distributed file system client library -ii libcgi-fast-perl 1:2.15-1 all CGI subclass for work with FCGI -ii libcgi-pm-perl 4.51-1 all module for Common Gateway Interface applications -ii libcgi-session-perl 4.48-3 all persistent session data in CGI applications -ii libcgi-simple-perl 1.115-2 all simple CGI.pm compatible OO CGI interface -ii libchromaprint1:amd64 1.5.0-2 amd64 audio fingerprint library -ii libcjson1:amd64 1.7.14-1 amd64 Ultralightweight JSON parser in ANSI C -ii libclass-accessor-perl 0.51-1 all Perl module that automatically generates accessors -ii libclass-c3-perl 0.35-1 all pragma for using the C3 method resolution order -ii libclass-data-inheritable-perl 0.08-3 all Perl module to create accessors to class data -ii libclass-inspector-perl 1.36-1 all Perl module that provides information about classes -ii libclass-load-perl 0.25-1 all module for loading modules by name -ii libclass-method-modifiers-perl 2.13-1 all Perl module providing method modifiers -ii libclass-singleton-perl 1.6-1 all implementation of a "Singleton" class -ii libclass-xsaccessor-perl 1.19-3+b7 amd64 Perl module providing fast XS accessors -ii libclone-choose-perl 0.010-1 all Choose appropriate clone utility (Perl library) -ii libcodec2-0.9:amd64 0.9.2-4 amd64 Codec2 runtime library -ii libcolord2:amd64 1.4.5-3 amd64 system service to manage device colour profiles -- runtime -ii libcom-err2:amd64 1.46.2-2 amd64 common error description library -ii libcommon-sense-perl 3.75-1+b4 amd64 module that implements some sane defaults for Perl programs -ii libconfig-crontab-perl 1.45-1 all module to read/write Vixie-compatible crontab(5) files -ii libconfig-inifiles-perl 3.000003-1 all read .ini-style configuration files -ii libconfig-simple-perl 4.59-6.1 all simple configuration file class -ii libcpan-changes-perl 0.400002-1.1 all module for reading and writing CPAN Changes files -ii libcpan-distnameinfo-perl 0.12-2.1 all module to extract distribution name and version from a filename -ii libcpan-meta-check-perl 0.014-1 all verify requirements in a CPAN::Meta object -ii libcrypt1:amd64 1:4.4.18-4 amd64 libcrypt shared library -ii libcryptsetup12:amd64 2:2.3.7-1+deb11u1 amd64 disk encryption support - shared library -ii libctf-nobfd0:amd64 2.35.2-2 amd64 Compact C Type Format library (runtime, no BFD dependency) -ii libctf0:amd64 2.35.2-2 amd64 Compact C Type Format library (runtime, BFD dependency) -ii libcups2:amd64 2.3.3op2-3+deb11u2 amd64 Common UNIX Printing System(tm) - Core library -ii libcupsfilters1:amd64 1.28.7-1+deb11u1 amd64 OpenPrinting CUPS Filters - Shared library -ii libcupsimage2:amd64 2.3.3op2-3+deb11u2 amd64 Common UNIX Printing System(tm) - Raster image library -ii libcurl3-gnutls:amd64 7.74.0-1.3+deb11u5 amd64 easy-to-use client-side URL transfer library (GnuTLS flavour) -ii libcurl4:amd64 7.74.0-1.3+deb11u5 amd64 easy-to-use client-side URL transfer library (OpenSSL flavour) -ii libcwidget4:amd64 0.5.18-5 amd64 high-level terminal interface library for C++ (runtime files) -ii libdaemon0:amd64 0.14-7.1 amd64 lightweight C library for daemons - runtime library -ii libdata-optlist-perl 0.110-1.1 all module to parse and validate simple name/value option pairs -ii libdata-perl-perl 0.002011-1 all classes wrapping fundamental Perl data types -ii libdata-section-perl 0.200007-1 all module to read chunks of data from a module's DATA section -ii libdata-uuid-perl 1.226-1+b1 amd64 globally/universally unique identifiers (GUIDs/UUIDs) -ii libdata-validate-ip-perl 0.30-1 all Perl module for IP validation -ii libdatetime-locale-perl 1:1.31-1 all Perl extension providing localization support for DateTime -ii libdatetime-perl:amd64 2:1.54-1 amd64 module for manipulating dates, times and timestamps -ii libdatetime-timezone-perl 1:2.47-1+2022g all framework exposing the Olson time zone database to Perl -ii libdatrie1:amd64 0.2.13-1 amd64 Double-array trie library -ii libdav1d4:amd64 0.7.1-3 amd64 fast and small AV1 video stream decoder (shared library) -ii libdb5.3:amd64 5.3.28+dfsg1-0.8 amd64 Berkeley v5.3 Database Libraries [runtime] -ii libdbd-sqlite3-perl:amd64 1.66-1+b1 amd64 Perl DBI driver with a self-contained RDBMS -ii libdbi-perl:amd64 1.643-3+b1 amd64 Perl Database Interface (DBI) -ii libdbus-1-3:amd64 1.12.24-0+deb11u1 amd64 simple interprocess messaging system (library) -ii libdc1394-25:amd64 2.2.6-3 amd64 high level programming interface for IEEE 1394 digital cameras -ii libdca0:amd64 0.0.7-2 amd64 decoding library for DTS Coherent Acoustics streams -ii libdconf1:amd64 0.38.0-2 amd64 simple configuration storage system - runtime library -ii libde265-0:amd64 1.0.8-1 amd64 Open H.265 video codec implementation -ii libdebconfclient0:amd64 0.260 amd64 Debian Configuration Management System (C-implementation library) -ii libdebuginfod1:amd64 0.183-1 amd64 library to interact with debuginfod (development files) -ii libdeflate0:amd64 1.7-1 amd64 fast, whole-buffer DEFLATE-based compression and decompression -ii libdevel-callchecker-perl 0.008-1+b2 amd64 custom op checking attached to subroutines -ii libdevel-caller-perl 2.06-2+b3 amd64 module providing enhanced caller() support -ii libdevel-globaldestruction-perl 0.14-1.1 all module to expose the flag that marks global destruction -ii libdevel-stacktrace-perl 2.0400-1 all Perl module containing stack trace and related objects -ii libdevice-serialport-perl 1.04-3+b8 amd64 emulation of Win32::SerialPort for Linux/POSIX -ii libdevmapper1.02.1:amd64 2:1.02.175-2.1 amd64 Linux Kernel Device Mapper userspace library -ii libdjvulibre-text 3.5.28-2 all Linguistic support files for libdjvulibre -ii libdjvulibre21:amd64 3.5.28-2 amd64 Runtime support for the DjVu image format -ii libdlt2:amd64 2.18.6-1+deb11u1 amd64 Diagnostic Log and Trace (DLT) library -ii libdns-export1110 1:9.11.19+dfsg-2.1 amd64 Exported DNS Shared Library -ii libdouble-conversion3:amd64 3.1.5-6.1 amd64 routines to convert IEEE floats to and from strings -ii libdrm-amdgpu1:amd64 2.4.104-1 amd64 Userspace interface to amdgpu-specific kernel DRM services -- runtime -ii libdrm-common 2.4.104-1 all Userspace interface to kernel DRM services -- common files -ii libdrm-intel1:amd64 2.4.104-1 amd64 Userspace interface to intel-specific kernel DRM services -- runtime -ii libdrm-nouveau2:amd64 2.4.104-1 amd64 Userspace interface to nouveau-specific kernel DRM services -- runtime -ii libdrm-radeon1:amd64 2.4.104-1 amd64 Userspace interface to radeon-specific kernel DRM services -- runtime -ii libdrm2:amd64 2.4.104-1 amd64 Userspace interface to kernel DRM services -- runtime -ii libdv4:amd64 1.0.0-13 amd64 software library for DV format digital video (runtime lib) -ii libdvdnav4:amd64 6.1.0-1+b1 amd64 DVD navigation library -ii libdvdread8:amd64 6.1.1-2 amd64 library for reading DVDs -ii libdw1:amd64 0.183-1 amd64 library that provides access to the DWARF debug information -ii libdynaloader-functions-perl 0.003-1.1 all deconstructed dynamic C library loading -ii libebur128-1:amd64 1.2.5-1 amd64 implementation of the EBU R128 loudness standard -ii libedit2:amd64 3.1-20191231-2+b1 amd64 BSD editline and history libraries -ii libefiboot1:amd64 37-6 amd64 Library to manage UEFI variables -ii libefivar1:amd64 37-6 amd64 Library to manage UEFI variables -ii libegl-mesa0:amd64 20.3.5-1 amd64 free implementation of the EGL API -- Mesa vendor library -ii libegl1:amd64 1.3.2-1 amd64 Vendor neutral GL dispatch library -- EGL support -ii libelf1:amd64 0.183-1 amd64 library to read and write ELF files -ii libemail-abstract-perl 3.008-2 all unified interface to mail representations -ii libemail-address-xs-perl 1.04-1+b3 amd64 Perl library for RFC 5322 address/group parsing and formatting -ii libemail-date-format-perl 1.005-1.1 all Module to generate RFC-2822-valid date strings -ii libemail-messageid-perl 1.406-1 all Perl library for unique mail Message-ID generation -ii libemail-mime-contenttype-perl 1.026-1 all Perl module to parse a MIME Content-Type header -ii libemail-mime-encodings-perl 1.315-2 all unified interface to MIME encoding and decoding -ii libemail-mime-perl 1.949-1 all module for simple MIME message parsing -ii libemail-sender-perl 1.300035-1 all Perl module for sending email -ii libemail-simple-perl 2.216-1 all module to parse RFC2822 headers and message format -ii libenca0:amd64 1.19-1+b1 amd64 Extremely Naive Charset Analyser - shared library files -ii libencode-locale-perl 1.05-1.1 all utility to determine the locale encoding -ii libepoxy0:amd64 1.5.5-1 amd64 OpenGL function pointer management library -ii liberror-perl 0.17029-1 all Perl module for error/exception handling in an OO-ish way -ii libestr0:amd64 0.1.10-2.1+b1 amd64 Helper functions for handling strings (lib) -ii libev4:amd64 1:4.33-1 amd64 high-performance event loop library modelled after libevent -ii libeval-closure-perl 0.14-1 all Perl module to safely and cleanly create closures via string eval -ii libevdev2:amd64 1.11.0+dfsg-1 amd64 wrapper library for evdev devices -ii libevent-2.1-7:amd64 2.1.12-stable-1 amd64 Asynchronous event notification library -ii libexception-class-perl 1.44-1 all module that allows you to declare real exception classes in Perl -ii libexif12:amd64 0.6.22-3 amd64 library to parse EXIF files -ii libexpat1:amd64 2.2.10-2+deb11u5 amd64 XML parsing C library - runtime library -ii libexporter-tiny-perl 1.002002-1 all tiny exporter similar to Sub::Exporter -ii libext2fs2:amd64 1.46.2-2 amd64 ext2/ext3/ext4 file system libraries -ii libfaad2:amd64 2.10.0-1 amd64 freeware Advanced Audio Decoder - runtime files -ii libfakeroot:amd64 1.25.3-1.1 amd64 tool for simulating superuser privileges - shared libraries -ii libfam0:amd64 2.7.0-17.3 amd64 Client library to control the FAM daemon -ii libfastjson4:amd64 0.99.9-1 amd64 fast json library for C -ii libfcgi-perl:amd64 0.79+ds-2 amd64 helper module for FastCGI -ii libfcgi0ldbl:amd64 2.4.2-2 amd64 shared library of FastCGI -ii libfdisk1:amd64 2.36.1-8+deb11u1 amd64 fdisk partitioning library -ii libfdt1:amd64 1.6.0-1 amd64 Flat Device Trees manipulation library -ii libffi7:amd64 3.3-6 amd64 Foreign Function Interface library runtime -ii libfftw3-double3:amd64 3.3.8-2 amd64 Library for computing Fast Fourier Transforms - Double precision -ii libfftw3-single3:amd64 3.3.8-2 amd64 Library for computing Fast Fourier Transforms - Single precision -ii libfido2-1:amd64 1.6.0-2 amd64 library for generating and verifying FIDO 2.0 objects -ii libfile-basedir-perl 0.08-1 all Perl module to use the freedesktop basedir specification -ii libfile-copy-recursive-perl 0.45-1 all Perl extension for recursively copying files and directories -ii libfile-desktopentry-perl 0.22-2 all Perl module to handle freedesktop .desktop files -ii libfile-fcntllock-perl 0.22-3+b7 amd64 Perl module for file locking with fcntl(2) -ii libfile-find-rule-perl 0.34-1 all module to search for files based on rules -ii libfile-homedir-perl 1.006-1 all Perl module for finding user directories across platforms -ii libfile-listing-perl 6.14-1 all module to parse directory listings -ii libfile-mimeinfo-perl 0.30-1 all Perl module to determine file types -ii libfile-monitor-perl 1.00-1.1 all module to monitor file and directory changes -ii libfile-pushd-perl 1.016-1 all module for changing directory temporarily for a limited scope -ii libfile-sharedir-perl 1.118-1 all module to locate non-code files during run-time -ii libfile-slurp-perl 9999.32-1 all single call read & write file routines -ii libfile-slurp-tiny-perl 0.004-1 all simple, sane and efficient file slurper -ii libfile-which-perl 1.23-1 all Perl module for searching paths for executable programs -ii libflac-dev:amd64 1.3.3-2+deb11u1 amd64 Free Lossless Audio Codec - C development library -ii libflac8:amd64 1.3.3-2+deb11u1 amd64 Free Lossless Audio Codec - runtime C library -ii libflite1:amd64 2.2-2 amd64 Small run-time speech synthesis engine - shared libraries -ii libfont-afm-perl 1.20-3 all Perl interface to Adobe Font Metrics files -ii libfontconfig1:amd64 2.13.1-4.2 amd64 generic font configuration library - runtime -ii libfontenc1:amd64 1:1.1.4-1 amd64 X11 font encoding library -ii libfreetype6:amd64 2.10.4+dfsg-1+deb11u1 amd64 FreeType 2 font engine, shared library files -ii libfribidi0:amd64 1.0.8-2+deb11u1 amd64 Free Implementation of the Unicode BiDi algorithm -ii libfstrm0:amd64 0.6.0-1+b1 amd64 Frame Streams (fstrm) library -ii libfuse2:amd64 2.9.9-5 amd64 Filesystem in Userspace (library) -ii libgail18:amd64 2.24.33-2 amd64 GNOME Accessibility Implementation Library -- shared libraries -ii libgbm1:amd64 20.3.5-1 amd64 generic buffer management API -- runtime -ii libgcc-10-dev:amd64 10.2.1-6 amd64 GCC support library (development files) -ii libgcc-s1:amd64 10.2.1-6 amd64 GCC support library -ii libgcrypt20:amd64 1.8.7-6 amd64 LGPL Crypto library - runtime library -ii libgd3:amd64 2.3.0-2 amd64 GD Graphics Library -ii libgdbm-compat4:amd64 1.19-2 amd64 GNU dbm database routines (legacy support runtime version) -ii libgdbm6:amd64 1.19-2 amd64 GNU dbm database routines (runtime version) -ii libgdk-pixbuf-2.0-0:amd64 2.42.2+dfsg-1+deb11u1 amd64 GDK Pixbuf library -ii libgdk-pixbuf-xlib-2.0-0:amd64 2.40.2-2 amd64 GDK Pixbuf library (deprecated Xlib integration) -ii libgdk-pixbuf2.0-0:amd64 2.40.2-2 amd64 GDK Pixbuf library (transitional package) -ii libgdk-pixbuf2.0-common 2.42.2+dfsg-1+deb11u1 all GDK Pixbuf library - data files -ii libgetopt-long-descriptive-perl 0.105-1 all module that handles command-line arguments with usage text -ii libgettextpo-dev:amd64 0.21-4 amd64 process PO files - static libraries and headers -ii libgettextpo0:amd64 0.21-4 amd64 process PO files - shared library -ii libgfapi0:amd64 9.2-1 amd64 GlusterFS gfapi shared library -ii libgfortran5:amd64 10.2.1-6 amd64 Runtime library for GNU Fortran applications -ii libgfrpc0:amd64 9.2-1 amd64 GlusterFS libgfrpc shared library -ii libgfxdr0:amd64 9.2-1 amd64 GlusterFS libgfxdr shared library -ii libgirepository-1.0-1:amd64 1.66.1-1+b1 amd64 Library for handling GObject introspection data (runtime library) -ii libgl1:amd64 1.3.2-1 amd64 Vendor neutral GL dispatch library -- legacy GL support -ii libgl1-mesa-dri:amd64 20.3.5-1 amd64 free implementation of the OpenGL API -- DRI modules -ii libgl1-mesa-glx:amd64 20.3.5-1 amd64 transitional dummy package -ii libglapi-mesa:amd64 20.3.5-1 amd64 free implementation of the GL API -- shared library -ii libgles2:amd64 1.3.2-1 amd64 Vendor neutral GL dispatch library -- GLESv2 support -ii libgles2-mesa:amd64 20.3.5-1 amd64 transitional dummy package -ii libglib2.0-0:amd64 2.66.8-1 amd64 GLib library of C routines -ii libglusterfs0:amd64 9.2-1 amd64 GlusterFS shared library -ii libglvnd0:amd64 1.3.2-1 amd64 Vendor neutral GL dispatch library -ii libglx-mesa0:amd64 20.3.5-1 amd64 free implementation of the OpenGL API -- GLX vendor library -ii libglx0:amd64 1.3.2-1 amd64 Vendor neutral GL dispatch library -- GLX support -ii libgme0:amd64 0.6.3-2 amd64 Playback library for video game music files - shared library -ii libgmp10:amd64 2:6.2.1+dfsg-1+deb11u1 amd64 Multiprecision arithmetic library -ii libgnutls-dane0:amd64 3.7.1-5+deb11u2 amd64 GNU TLS library - DANE security support -ii libgnutls-openssl27:amd64 3.7.1-5+deb11u2 amd64 GNU TLS library - OpenSSL wrapper -ii libgnutls30:amd64 3.7.1-5+deb11u2 amd64 GNU TLS library - main runtime library -ii libgomp1:amd64 10.2.1-6 amd64 GCC OpenMP (GOMP) support library -ii libgpg-error0:amd64 1.38-2 amd64 GnuPG development runtime library -ii libgpgme11:amd64 1.14.0-1+b2 amd64 GPGME - GnuPG Made Easy (library) -ii libgpm2:amd64 1.20.7-8 amd64 General Purpose Mouse - shared library -ii libgraphite2-3:amd64 1.3.14-1 amd64 Font rendering engine for Complex Scripts -- library -ii libgs9:amd64 9.53.3~dfsg-7+deb11u2 amd64 interpreter for the PostScript language and for PDF - Library -ii libgs9-common 9.53.3~dfsg-7+deb11u2 all interpreter for the PostScript language and for PDF - common files -ii libgsasl7:amd64 1.10.0-4+deb11u1 amd64 GNU SASL library -ii libgsm1:amd64 1.0.18-2 amd64 Shared libraries for GSM speech compressor -ii libgssapi-krb5-2:amd64 1.18.3-6+deb11u3 amd64 MIT Kerberos runtime libraries - krb5 GSS-API Mechanism -ii libgstreamer-plugins-base1.0-0:amd64 1.18.4-2 amd64 GStreamer libraries from the "base" set -ii libgstreamer1.0-0:amd64 1.18.4-2.1 amd64 Core GStreamer libraries and elements -ii libgtk-3-0:amd64 3.24.24-4+deb11u2 amd64 GTK graphical user interface library -ii libgtk-3-common 3.24.24-4+deb11u2 all common files for the GTK graphical user interface library -ii libgtk2.0-0:amd64 2.24.33-2 amd64 GTK graphical user interface library - old version -ii libgtk2.0-common 2.24.33-2 all common files for the GTK graphical user interface library -ii libgudev-1.0-0:amd64 234-1 amd64 GObject-based wrapper library for libudev -ii libharfbuzz0b:amd64 2.7.4-1 amd64 OpenType text shaping engine (shared library) -ii libhash-flatten-perl 1.19-2 all flatten/unflatten complex data hashes -ii libhash-merge-perl 0.302-1 all Perl module for merging arbitrarily deep hashes into a single hash -ii libhavege2:amd64 1.9.14-1 amd64 entropy source using the HAVEGE algorithm - shared library -ii libhcrypto4-heimdal:amd64 7.7.0+dfsg-2+deb11u2 amd64 Heimdal Kerberos - crypto library -ii libhdb9-heimdal:amd64 7.7.0+dfsg-2+deb11u2 amd64 Heimdal Kerberos - kadmin server library -ii libheif1:amd64 1.11.0-1 amd64 ISO/IEC 23008-12:2017 HEIF file format decoder - shared library -ii libheimbase1-heimdal:amd64 7.7.0+dfsg-2+deb11u2 amd64 Heimdal Kerberos - Base library -ii libhogweed6:amd64 3.7.3-1 amd64 low level cryptographic library (public-key cryptos) -ii libhtml-form-perl 6.07-1 all module that represents an HTML form element -ii libhtml-format-perl 2.12-1.1 all module for transforming HTML into various formats -ii libhtml-parser-perl 3.75-1+b1 amd64 collection of modules that parse HTML text documents -ii libhtml-tagset-perl 3.20-4 all data tables pertaining to HTML -ii libhtml-template-perl 2.97-1.1 all module for using HTML templates with Perl -ii libhtml-tree-perl 5.07-2 all Perl module to represent and create HTML syntax trees -ii libhttp-cookies-perl 6.10-1 all HTTP cookie jars -ii libhttp-daemon-perl 6.12-1+deb11u1 all simple http server class -ii libhttp-date-perl 6.05-1 all module of date conversion routines -ii libhttp-message-perl 6.28-1 all perl interface to HTTP style messages -ii libhttp-negotiate-perl 6.01-1 all implementation of content negotiation -ii libhx509-5-heimdal:amd64 7.7.0+dfsg-2+deb11u2 amd64 Heimdal Kerberos - X509 support library -ii libhyphen0:amd64 2.8.8-7 amd64 ALTLinux hyphenation library - shared library -ii libi2c0:amd64 4.2-1+b1 amd64 userspace I2C programming library -ii libibverbs1:amd64 33.2-1 amd64 Library for direct userspace use of RDMA (InfiniBand/iWARP) -ii libice6:amd64 2:1.0.10-1 amd64 X11 Inter-Client Exchange library -ii libicu67:amd64 67.1-7 amd64 International Components for Unicode -ii libid3tag0:amd64 0.15.1b-14 amd64 ID3 tag reading library from the MAD project -ii libident 0.22-3.1+b1 amd64 simple RFC1413 client library - runtime -ii libidn11:amd64 1.33-3 amd64 GNU Libidn library, implementation of IETF IDN specifications -ii libidn2-0:amd64 2.3.0-5 amd64 Internationalized domain names (IDNA2008/TR46) library -ii libiec61883-0:amd64 1.2.0-4 amd64 partial implementation of IEC 61883 (shared lib) -ii libijs-0.35:amd64 0.35-15 amd64 IJS raster image transport protocol: shared library -ii libilmbase25:amd64 2.5.4-1 amd64 several utility libraries from ILM used by OpenEXR -ii libimport-into-perl 1.002005-1 all module for importing packages into other packages -ii libinput-bin 1.16.4-3 amd64 input device management and event handling library - udev quirks -ii libinput10:amd64 1.16.4-3 amd64 input device management and event handling library - shared library -ii libio-all-lwp-perl 0.14-2.1 all Perl module to use HTTP and FTP URLs with IO::All -ii libio-all-perl 0.87-1 all Perl module for unified IO operations -ii libio-html-perl 1.004-2 all open an HTML file with automatic charset detection -ii libio-interface-perl 1.09-2 amd64 socket methods to get/set interface characteristics -ii libio-socket-multicast-perl 1.12-2+b7 amd64 module for sending and receiving multicast messages -ii libio-socket-ssl-perl 2.069-1 all Perl module implementing object oriented interface to SSL sockets -ii libio-socket-timeout-perl 0.32-1 all IO::Socket with read/write timeout -ii libio-stringy-perl 2.111-3 all modules for I/O on in-core objects (strings/arrays) -ii libip4tc2:amd64 1.8.7-1 amd64 netfilter libip4tc library -ii libip6tc2:amd64 1.8.7-1 amd64 netfilter libip6tc library -ii libipc-run3-perl 0.048-2 all run a subprocess with input/output redirection -ii libipc-system-simple-perl 1.30-1 all Perl module to run commands simply, with detailed diagnostics -ii libipt2 2.0.3-1 amd64 Intel Processor Trace Decoder Library -ii libiptc0:amd64 1.8.7-1 amd64 transitional dummy package -ii libisc-export1105:amd64 1:9.11.19+dfsg-2.1 amd64 Exported ISC Shared Library -ii libisl23:amd64 0.23-1 amd64 manipulating sets and relations of integer points bounded by linear constraints -ii libitm1:amd64 10.2.1-6 amd64 GNU Transactional Memory Library -ii libiw30:amd64 30~pre9-13.1 amd64 Wireless tools - library -ii libjack-jackd2-0:amd64 1.9.17~dfsg-1 amd64 JACK Audio Connection Kit (libraries) -ii libjansson4:amd64 2.13.1-1.1 amd64 C library for encoding, decoding and manipulating JSON data -ii libjbig0:amd64 2.1-3.1+b2 amd64 JBIGkit libraries -ii libjbig2dec0:amd64 0.19-2 amd64 JBIG2 decoder library - shared libraries -ii libjim0.79:amd64 0.79+dfsg0-2 amd64 small-footprint implementation of Tcl - shared library -ii libjpeg62-turbo:amd64 1:2.0.6-4 amd64 libjpeg-turbo JPEG runtime library -ii libjq1:amd64 1.6-2.1 amd64 lightweight and flexible command-line JSON processor - shared library -ii libjs-jquery 3.5.1+dfsg+~3.5.5-7 all JavaScript library for dynamic web applications -ii libjson-c5:amd64 0.15-2 amd64 JSON manipulation library - shared library -ii libjson-glib-1.0-0:amd64 1.6.2-1 amd64 GLib JSON manipulation library -ii libjson-glib-1.0-common 1.6.2-1 all GLib JSON manipulation library (common files) -ii libjson-perl 4.03000-1 all module for manipulating JSON-formatted data -ii libjxr-tools 1.1-6+b1 amd64 JPEG-XR lib - command line apps -ii libjxr0:amd64 1.1-6+b1 amd64 JPEG-XR lib - libraries -ii libk5crypto3:amd64 1.18.3-6+deb11u3 amd64 MIT Kerberos runtime libraries - Crypto Library -ii libkeyutils1:amd64 1.6.1-2 amd64 Linux Key Management Utilities (library) -ii libklibc:amd64 2.0.8-6.1 amd64 minimal libc subset for use with initramfs -ii libkmod2:amd64 28-1 amd64 libkmod shared library -ii libkrb5-26-heimdal:amd64 7.7.0+dfsg-2+deb11u2 amd64 Heimdal Kerberos - libraries -ii libkrb5-3:amd64 1.18.3-6+deb11u3 amd64 MIT Kerberos runtime libraries -ii libkrb5support0:amd64 1.18.3-6+deb11u3 amd64 MIT Kerberos runtime libraries - Support library -ii libksba8:amd64 1.5.0-3+deb11u2 amd64 X.509 and CMS support library -ii liblapack3:amd64 3.9.0-3 amd64 Library of linear algebra routines 3 - shared version -ii liblcms2-2:amd64 2.12~rc1-2 amd64 Little CMS 2 color management library -ii libldap-2.4-2:amd64 2.4.57+dfsg-3+deb11u1 amd64 OpenLDAP libraries -ii libldb2:amd64 2:2.2.3-2~deb11u2 amd64 LDAP-like embedded database - shared library -ii liblilv-0-0:amd64 0.24.12-2 amd64 library for simple use of LV2 plugins -ii liblinear4:amd64 2.3.0+dfsg-5 amd64 Library for Large Linear Classification -ii liblirc-client0:amd64 0.10.1-6.3 amd64 infra-red remote control support - client library -ii liblist-allutils-perl 0.18-1 all Perl wrapper for modules List::Util and List::MoreUtils -ii liblist-moreutils-perl 0.430-2 all Perl module with additional list functions not found in List::Util -ii liblist-moreutils-xs-perl 0.430-2 amd64 Perl module providing compiled List::MoreUtils functions -ii liblist-someutils-perl 0.58-1 all module that provides the stuff missing in List::Util -ii liblist-utilsby-perl 0.11-1 all higher-order list utility functions -ii libllvm11:amd64 1:11.0.1-2 amd64 Modular compiler and toolchain technologies, runtime library -ii liblmdb0:amd64 0.9.24-1 amd64 Lightning Memory-Mapped Database shared library -ii liblocal-lib-perl 2.000024-1 all module to use a local path for Perl modules -ii liblocale-gettext-perl 1.07-4+b1 amd64 module using libc functions for internationalization in Perl -ii liblockfile-bin 1.17-1+b1 amd64 support binaries for and cli utilities based on liblockfile -ii liblockfile1:amd64 1.17-1+b1 amd64 NFS-safe locking library -ii liblog-message-perl 0.8-1.1 all powerful and flexible message logging mechanism -ii liblog-message-simple-perl 0.10-3 all simplified interface to Log::Message -ii liblog-trace-perl 1.070-3 all Perl module to provide a unified approach to tracing -ii liblognorm5:amd64 2.0.5-1.1 amd64 log normalizing library -ii liblqr-1-0:amd64 0.4.2-2.1 amd64 converts plain array images into multi-size representation -ii liblsan0:amd64 10.2.1-6 amd64 LeakSanitizer -- a memory leak detector (runtime) -ii libltdl-dev:amd64 2.4.6-15 amd64 System independent dlopen wrapper for GNU libtool -ii libltdl7:amd64 2.4.6-15 amd64 System independent dlopen wrapper for GNU libtool -ii liblua5.1-0:amd64 5.1.5-8.1+b3 amd64 Shared library for the Lua interpreter version 5.1 -ii liblua5.2-0:amd64 5.2.4-1.1+b3 amd64 Shared library for the Lua interpreter version 5.2 -ii liblua5.3-0:amd64 5.3.3-1.1+b1 amd64 Shared library for the Lua interpreter version 5.3 -ii libluajit-5.1-2:amd64 2.1.0~beta3+dfsg-5.3 amd64 Just in time compiler for Lua - library version -ii libluajit-5.1-common 2.1.0~beta3+dfsg-5.3 all Just in time compiler for Lua - common files -ii liblwp-mediatypes-perl 6.04-1 all module to guess media type for a file or a URL -ii liblwp-protocol-https-perl 6.10-1 all HTTPS driver for LWP::UserAgent -ii liblz4-1:amd64 1.9.3-2 amd64 Fast LZ compression algorithm library - runtime -ii liblzma5:amd64 5.2.5-2.1~deb11u1 amd64 XZ-format compression library -ii liblzo2-2:amd64 2.10-2 amd64 data compression library -ii libmad0:amd64 0.15.1b-10 amd64 MPEG audio decoder library -ii libmagic-mgc 1:5.39-3 amd64 File type determination library using "magic" numbers (compiled magic file) -ii libmagic1:amd64 1:5.39-3 amd64 Recognize the type of data in a file using "magic" numbers - library -ii libmagickcore-6.q16-6:amd64 8:6.9.11.60+dfsg-1.3 amd64 low-level image manipulation library -- quantum depth Q16 -ii libmagickwand-6.q16-6:amd64 8:6.9.11.60+dfsg-1.3 amd64 image manipulation library -- quantum depth Q16 -ii libmariadb3:amd64 1:10.5.18-0+deb11u1 amd64 MariaDB database client library -ii libmath-base85-perl 0.5+dfsg-1 all Perl extension for base 85 numbers, as referenced by RFC 1924 -ii libmaxminddb0:amd64 1.5.2-1 amd64 IP geolocation database library -ii libmbim-glib4:amd64 1.24.6-0.1 amd64 Support library to use the MBIM protocol -ii libmbim-proxy 1.24.6-0.1 amd64 Proxy to communicate with MBIM ports -ii libmcrypt4 2.5.8-3.4+b1 amd64 De-/Encryption Library -ii libmd0:amd64 1.0.3-3 amd64 message digest functions from BSD systems - shared library -ii libmd4c0:amd64 0.4.7-2 amd64 Markdown for C -ii libmfx1:amd64 21.1.0-1 amd64 Intel Media SDK -- shared library -ii libmikmod3:amd64 3.3.11.1-6 amd64 Portable sound library -ii libmime-types-perl 2.18-1 all Perl extension for determining MIME types and Transfer Encoding -ii libmm-glib0:amd64 1.14.12-0.2 amd64 D-Bus service for managing modems - shared libraries -ii libmnl-dev:amd64 1.0.4-3 amd64 minimalistic Netlink communication library (devel) -ii libmnl0:amd64 1.0.4-3 amd64 minimalistic Netlink communication library -ii libmodule-build-perl 0.423100-1 all framework for building and installing Perl modules -ii libmodule-cpanfile-perl 1.1004-1 all format for describing CPAN dependencies of Perl applications -ii libmodule-implementation-perl 0.09-1.1 all module for loading one of several alternate implementations of a module -ii libmodule-pluggable-perl 5.2-1 all module for giving modules the ability to have plugins -ii libmodule-runtime-perl 0.016-1 all Perl module for runtime module handling -ii libmoo-perl 2.004004-1 all Minimalist Object Orientation library (with Moose compatibility) -ii libmoox-handlesvia-perl 0.001009-1 all Moose Native Traits-like behavior for Moo -ii libmoox-types-mooselike-perl 0.29-1.1 all module providing some Moosish types and a type builder -ii libmosquitto1:amd64 2.0.11-1 amd64 MQTT version 5.0/3.1.1/3.1 client library -ii libmount1:amd64 2.36.1-8+deb11u1 amd64 device mounting library -ii libmp3lame0:amd64 3.100-3 amd64 MP3 encoding library -ii libmpc3:amd64 1.2.0-1 amd64 multiple precision complex floating-point library -ii libmpdec3:amd64 2.5.1-1 amd64 library for decimal floating point arithmetic (runtime library) -ii libmpfr6:amd64 4.1.0-3 amd64 multiple precision floating-point computation -ii libmpg123-0:amd64 1.26.4-1 amd64 MPEG layer 1/2/3 audio decoder (shared library) -ii libmro-compat-perl 0.13-1 all mro::* interface compatibility for Perls < 5.9.5 -ii libmtdev1:amd64 1.1.6-1 amd64 Multitouch Protocol Translation Library - shared library -ii libmtp-common 1.1.17-3 all Media Transfer Protocol (MTP) common files -ii libmtp-runtime 1.1.17-3 amd64 Media Transfer Protocol (MTP) runtime tools -ii libmtp9:amd64 1.1.17-3 amd64 Media Transfer Protocol (MTP) library -ii libmysofa1:amd64 1.2~dfsg0-1 amd64 library to read HRTFs stored in the AES69-2015 SOFA format -ii libnamespace-autoclean-perl 0.29-1 all module to remove imported symbols after compilation -ii libnamespace-clean-perl 0.27-1 all module for keeping imports and functions out of the current namespace -ii libncurses5:amd64 6.2+20201114-2 amd64 shared libraries for terminal handling (legacy version) -ii libncurses6:amd64 6.2+20201114-2 amd64 shared libraries for terminal handling -ii libncursesw5:amd64 6.2+20201114-2 amd64 shared libraries for terminal handling (wide character legacy version) -ii libncursesw6:amd64 6.2+20201114-2 amd64 shared libraries for terminal handling (wide character support) -ii libnet-dbus-perl 1.2.0-1+b1 amd64 Perl extension for the DBus bindings -ii libnet-http-perl 6.20-1 all module providing low-level HTTP connection client -ii libnet-ipv6addr-perl 1.01-1 all module to validate/manipulate IPv6 addresses -ii libnet-netmask-perl 1.9104-2 all module to parse, manipulate and lookup IP network blocks -ii libnet-smtp-ssl-perl 1.04-1 all Perl module providing SSL support to Net::SMTP -ii libnet-ssleay-perl 1.88-3+b1 amd64 Perl module for Secure Sockets Layer (SSL) -ii libnet-subnet-perl 1.03-1.1 all Fast IP-in-subnet matcher module for IPv4 and IPv6 -ii libnetaddr-ip-perl 4.079+dfsg-1+b5 amd64 IP address manipulation module -ii libnetfilter-conntrack3:amd64 1.0.8-3 amd64 Netfilter netlink-conntrack library -ii libnetpbm10 2:10.0-15.4 amd64 Graphics conversion tools shared libraries -ii libnettle8:amd64 3.7.3-1 amd64 low level cryptographic library (symmetric and one-way cryptos) -ii libnetwork-ipv4addr-perl 0.10.ds-3.1 all Perl extension for manipulating IPv4 addresses -ii libnewt0.52:amd64 0.52.21-4+b3 amd64 Not Erik's Windowing Toolkit - text mode windowing with slang -ii libnfnetlink0:amd64 1.0.1-3+b1 amd64 Netfilter netlink library -ii libnfsidmap2:amd64 0.25-6 amd64 NFS idmapping library -ii libnftables1:amd64 0.9.8-3.1+deb11u1 amd64 Netfilter nftables high level userspace API library -ii libnftnl11:amd64 1.1.9-1 amd64 Netfilter nftables userspace API library -ii libnghttp2-14:amd64 1.43.0-1 amd64 library implementing HTTP/2 protocol (shared library) -ii libnih-dbus1 1.0.3-11 amd64 NIH D-Bus Bindings Library -ii libnih1 1.0.3-11 amd64 NIH Utility Library -ii libnl-3-200:amd64 3.4.0-1+b1 amd64 library for dealing with netlink sockets -ii libnl-genl-3-200:amd64 3.4.0-1+b1 amd64 library for dealing with netlink sockets - generic netlink -ii libnl-route-3-200:amd64 3.4.0-1+b1 amd64 library for dealing with netlink sockets - route interface -ii libnode72:amd64 12.22.12~dfsg-1~deb11u3 amd64 evented I/O for V8 javascript - runtime library -ii libnorm1:amd64 1.5.9+dfsg-2 amd64 NACK-Oriented Reliable Multicast (NORM) library -ii libnotify4:amd64 0.7.9-3 amd64 sends desktop notifications to a notification daemon -ii libnpth0:amd64 1.6-3 amd64 replacement for GNU Pth using system threads -ii libnsl2:amd64 1.3.0-2 amd64 Public client interface for NIS(YP) and NIS+ -ii libnspr4:amd64 2:4.29-1 amd64 NetScape Portable Runtime Library -ii libnss3:amd64 2:3.61-1+deb11u2 amd64 Network Security Service libraries -ii libntfs-3g883 1:2017.3.23AR.3-4+deb11u3 amd64 read/write NTFS driver for FUSE (runtime library) -ii libntlm0:amd64 1.6-3 amd64 NTLM authentication library -ii libnuma1:amd64 2.0.12-1+b1 amd64 Libraries for controlling NUMA policy -ii libnumber-compare-perl 0.03-1.1 all module for performing numeric comparisons in Perl -ii libogg-dev:amd64 1.3.4-0.1 amd64 Ogg bitstream library development files -ii libogg0:amd64 1.3.4-0.1 amd64 Ogg bitstream library -ii libonig5:amd64 6.9.6-1.1 amd64 regular expressions library -ii libopenal-data 1:1.19.1-2 all Software implementation of the OpenAL audio API (data files) -ii libopenal1:amd64 1:1.19.1-2 amd64 Software implementation of the OpenAL audio API (shared library) -ii libopenexr25:amd64 2.5.4-2+deb11u1 amd64 runtime files for the OpenEXR image library -ii libopenjp2-7:amd64 2.4.0-3 amd64 JPEG 2000 image compression/decompression library -ii libopenmpt0:amd64 0.4.11-1 amd64 module music library based on OpenMPT -- shared library -ii libopus0:amd64 1.3.1-0.1 amd64 Opus codec runtime library -ii liborc-0.4-0:amd64 1:0.4.32-1 amd64 Library of Optimized Inner Loops Runtime Compiler -ii libout123-0:amd64 1.26.4-1 amd64 MPEG layer 1/2/3 audio decoder (libout123 shared library) -ii libp11-kit0:amd64 0.23.22-1 amd64 library for loading and coordinating access to PKCS#11 modules - runtime -ii libpackage-constants-perl 0.06-1 all module to list constants defined in a package -ii libpackage-stash-perl 0.39-1 all module providing routines for manipulating stashes -ii libpadwalker-perl 2.5-1+b1 amd64 module to inspect and manipulate lexical variables -ii libpam-modules:amd64 1.4.0-9+deb11u1 amd64 Pluggable Authentication Modules for PAM -ii libpam-modules-bin 1.4.0-9+deb11u1 amd64 Pluggable Authentication Modules for PAM - helper binaries -ii libpam-runtime 1.4.0-9+deb11u1 all Runtime support for the PAM library -ii libpam-systemd:amd64 247.3-7+deb11u1 amd64 system and service manager - PAM module -ii libpam0g:amd64 1.4.0-9+deb11u1 amd64 Pluggable Authentication Modules library -ii libpango-1.0-0:amd64 1.46.2-3 amd64 Layout and rendering of internationalized text -ii libpangocairo-1.0-0:amd64 1.46.2-3 amd64 Layout and rendering of internationalized text -ii libpangoft2-1.0-0:amd64 1.46.2-3 amd64 Layout and rendering of internationalized text -ii libpaper1:amd64 1.1.28+b1 amd64 library for handling paper characteristics -ii libparams-classify-perl 0.015-1+b3 amd64 Perl module for argument type classification -ii libparams-util-perl 1.102-1+b1 amd64 Perl extension for simple stand-alone param checking functions -ii libparams-validate-perl:amd64 1.30-1+b1 amd64 Perl module to validate parameters to Perl method/function calls -ii libparams-validationcompiler-perl 0.30-1 all module to build an optimized subroutine parameter validator -ii libparse-pmfile-perl 0.43-1 all module to parse .pm file as PAUSE does -ii libparted2:amd64 3.4-1 amd64 disk partition manipulator - shared library -ii libpath-tiny-perl 0.118-1 all file path utility -ii libpcap0.8:amd64 1.10.0-2 amd64 system interface for user-level packet capture -ii libpci3:amd64 1:3.7.0-5 amd64 PCI utilities (shared library) -ii libpciaccess0:amd64 0.16-1 amd64 Generic PCI access library for X -ii libpcre2-16-0:amd64 10.36-2+deb11u1 amd64 New Perl Compatible Regular Expression Library - 16 bit runtime files -ii libpcre2-8-0:amd64 10.36-2+deb11u1 amd64 New Perl Compatible Regular Expression Library- 8 bit runtime files -ii libpcre2-posix2:amd64 10.36-2+deb11u1 amd64 New Perl Compatible Regular Expression Library - posix-compatible runtime files -ii libpcre3:amd64 2:8.39-13 amd64 Old Perl 5 Compatible Regular Expression Library - runtime files -ii libpcsclite1:amd64 1.9.1-1 amd64 Middleware to access a smart card using PC/SC (library) -ii libperl4-corelibs-perl 0.004-2 all libraries historically supplied with Perl 4 -ii libperl5.32:amd64 5.32.1-4+deb11u2 amd64 shared Perl library -ii libperlio-via-timeout-perl 0.32-1 all PerlIO layer that adds read & write timeout to a handle -ii libpgm-5.3-0:amd64 5.3.128~dfsg-2 amd64 OpenPGM shared library -ii libpipeline1:amd64 1.5.3-1 amd64 Unix process pipeline manipulation library -ii libpixman-1-0:amd64 0.40.0-1.1~deb11u1 amd64 pixel-manipulation library for X and cairo -ii libpkcs11-helper1:amd64 1.27-1 amd64 library that simplifies the interaction with PKCS#11 -ii libplymouth5:amd64 0.9.5-3 amd64 graphical boot animation and logger - shared libraries -ii libpng-tools 1.6.37-3 amd64 PNG library - tools (version 1.6) -ii libpng16-16:amd64 1.6.37-3 amd64 PNG library - runtime (version 1.6) -ii libpocketsphinx3:amd64 0.8+5prealpha+1-13 amd64 Speech recognition tool - front-end library -ii libpod-markdown-perl 3.300000-1 all module to convert POD to the Markdown file format -ii libpolkit-agent-1-0:amd64 0.105-31+deb11u1 amd64 PolicyKit Authentication Agent API -ii libpolkit-gobject-1-0:amd64 0.105-31+deb11u1 amd64 PolicyKit Authorization API -ii libpopt0:amd64 1.18-2 amd64 lib for parsing cmdline parameters -ii libportaudio2:amd64 19.6.0-1.1 amd64 Portable audio I/O - shared library -ii libpostproc55:amd64 7:4.3.5-0+deb11u1 amd64 FFmpeg library for post processing - runtime files -ii libpq5:amd64 13.9-0+deb11u1 amd64 PostgreSQL C client library -ii libprocps8:amd64 2:3.3.17-5 amd64 library for accessing process information from /proc -ii libprotobuf-c1:amd64 1.3.3-1+b2 amd64 Protocol Buffers C shared library (protobuf-c) -ii libproxy1v5:amd64 0.4.17-1 amd64 automatic proxy configuration management library (shared) -ii libpsl5:amd64 0.21.0-1.2 amd64 Library for Public Suffix List (shared libraries) -ii libpulse0:amd64 14.2-2 amd64 PulseAudio client libraries -ii libpython2-stdlib:amd64 2.7.18-3 amd64 interactive high-level object-oriented language (Python2) -ii libpython2.7:amd64 2.7.18-8 amd64 Shared Python runtime library (version 2.7) -ii libpython2.7-minimal:amd64 2.7.18-8 amd64 Minimal subset of the Python language (version 2.7) -ii libpython2.7-stdlib:amd64 2.7.18-8 amd64 Interactive high-level object-oriented language (standard library, version 2.7) -ii libpython3-stdlib:amd64 3.9.2-3 amd64 interactive high-level object-oriented language (default python3 version) -ii libpython3.9:amd64 3.9.2-1 amd64 Shared Python runtime library (version 3.9) -ii libpython3.9-minimal:amd64 3.9.2-1 amd64 Minimal subset of the Python language (version 3.9) -ii libpython3.9-stdlib:amd64 3.9.2-1 amd64 Interactive high-level object-oriented language (standard library, version 3.9) -ii libqdbm14 1.8.78-10 amd64 QDBM Database Libraries without GDBM wrapper[runtime] -ii libqmi-glib5:amd64 1.26.10-0.1 amd64 Support library to use the Qualcomm MSM Interface (QMI) protocol -ii libqmi-proxy 1.26.10-0.1 amd64 Proxy to communicate with QMI ports -ii libqt5core5a:amd64 5.15.2+dfsg-9 amd64 Qt 5 core module -ii libqt5dbus5:amd64 5.15.2+dfsg-9 amd64 Qt 5 D-Bus module -ii libqt5gui5:amd64 5.15.2+dfsg-9 amd64 Qt 5 GUI module -ii libqt5network5:amd64 5.15.2+dfsg-9 amd64 Qt 5 network module -ii libqt5positioning5:amd64 5.15.2+dfsg-2 amd64 Qt Positioning module -ii libqt5printsupport5:amd64 5.15.2+dfsg-9 amd64 Qt 5 print support module -ii libqt5qml5:amd64 5.15.2+dfsg-6 amd64 Qt 5 QML module -ii libqt5qmlmodels5:amd64 5.15.2+dfsg-6 amd64 Qt 5 QML Models library -ii libqt5quick5:amd64 5.15.2+dfsg-6 amd64 Qt 5 Quick library -ii libqt5sensors5:amd64 5.15.2-2 amd64 Qt Sensors module -ii libqt5webchannel5:amd64 5.15.2-2 amd64 Web communication library for Qt -ii libqt5webkit5:amd64 5.212.0~alpha4-11 amd64 Web content engine library for Qt -ii libqt5widgets5:amd64 5.15.2+dfsg-9 amd64 Qt 5 widgets module -ii libquadmath0:amd64 10.2.1-6 amd64 GCC Quad-Precision Math Library -ii librabbitmq4:amd64 0.10.0-1 amd64 AMQP client library written in C -ii librados2 14.2.21-1 amd64 RADOS distributed object store client library -ii libraw1394-11:amd64 2.1.2-2 amd64 library for direct access to IEEE 1394 bus (aka FireWire) -ii librdmacm1:amd64 33.2-1 amd64 Library for managing RDMA connections -ii libreadline8:amd64 8.1-1 amd64 GNU readline and history libraries, run-time libraries -ii libreadonly-perl 2.050-3 all facility for creating read-only scalars, arrays and hashes -ii libref-util-xs-perl 0.117-1+b3 amd64 XS implementation for Ref::Util -ii libregexp-common-perl 2017060201-1 all module with common regular expressions -ii librest-0.7-0:amd64 0.8.1-1.1 amd64 REST service access library -ii libroken18-heimdal:amd64 7.7.0+dfsg-2+deb11u2 amd64 Heimdal Kerberos - roken support library -ii librole-tiny-perl 2.002004-1 all Perl module for minimalist role composition -ii librsvg2-2:amd64 2.50.3+dfsg-1 amd64 SAX-based renderer library for SVG files (runtime) -ii librtmp1:amd64 2.4+20151223.gitfa8646d.1-2+b2 amd64 toolkit for RTMP streams (shared library) -ii librubberband2:amd64 1.9.0-1 amd64 audio time-stretching and pitch-shifting library -ii libsamplerate0:amd64 0.2.1+ds0-1 amd64 Audio sample rate conversion library -ii libsasl2-2:amd64 2.1.27+dfsg-2.1+deb11u1 amd64 Cyrus SASL - authentication abstraction library -ii libsasl2-modules-db:amd64 2.1.27+dfsg-2.1+deb11u1 amd64 Cyrus SASL - pluggable authentication modules (DB) -ii libsdl1.2debian:amd64 1.2.15+dfsg2-6 amd64 Simple DirectMedia Layer -ii libsdl2-2.0-0:amd64 2.0.14+dfsg2-3+deb11u1 amd64 Simple DirectMedia Layer -ii libseccomp2:amd64 2.5.1-1+deb11u1 amd64 high level interface to Linux seccomp filter -ii libsecret-1-0:amd64 0.20.4-2 amd64 Secret store -ii libsecret-common 0.20.4-2 all Secret store (common files) -ii libselinux1:amd64 3.1-3 amd64 SELinux runtime shared libraries -ii libsemanage-common 3.1-1 all Common files for SELinux policy management libraries -ii libsemanage1:amd64 3.1-1+b2 amd64 SELinux policy management library -ii libsensors-config 1:3.6.0-7 all lm-sensors configuration files -ii libsensors5:amd64 1:3.6.0-7 amd64 library to read temperature/voltage/fan sensors -ii libsepol1:amd64 3.1-1 amd64 SELinux library for manipulating binary security policies -ii libserd-0-0:amd64 0.30.10-2 amd64 lightweight RDF syntax library -ii libshine3:amd64 3.1.1-2 amd64 Fixed-point MP3 encoding library - runtime files -ii libsigc++-2.0-0v5:amd64 2.10.4-2 amd64 type-safe Signal Framework for C++ - runtime -ii libsigsegv2:amd64 2.13-1 amd64 Library for handling page faults in a portable way -ii libslang2:amd64 2.3.2-5 amd64 S-Lang programming library - runtime version -ii libsm6:amd64 2:1.2.3-1 amd64 X11 Session Management library -ii libsmartcols1:amd64 2.36.1-8+deb11u1 amd64 smart column output alignment library -ii libsmbclient:amd64 2:4.13.13+dfsg-1~deb11u5 amd64 shared library for communication with SMB/CIFS servers -ii libsnappy1v5:amd64 1.1.8-1 amd64 fast compression/decompression library -ii libsndfile1:amd64 1.0.31-2 amd64 Library for reading/writing audio files -ii libsndio7.0:amd64 1.5.0-3 amd64 Small audio and MIDI framework from OpenBSD, runtime libraries -ii libsocket6-perl 0.29-1+b3 amd64 Perl extensions for IPv6 -ii libsodium23:amd64 1.0.18-1 amd64 Network communication, cryptography and signaturing library -ii libsord-0-0:amd64 0.16.8-2 amd64 library for storing RDF data in memory -ii libsoup-gnome2.4-1:amd64 2.72.0-2 amd64 HTTP library implementation in C -- GNOME support library -ii libsoup2.4-1:amd64 2.72.0-2 amd64 HTTP library implementation in C -- Shared library -ii libsource-highlight-common 3.1.9-3 all architecture-independent files for source highlighting library -ii libsource-highlight4v5 3.1.9-3+b1 amd64 source highlighting library -ii libsoxr0:amd64 0.1.3-4 amd64 High quality 1D sample-rate conversion library -ii libspecio-perl 0.47-1 all Perl module providing type constraints and coercions -ii libspeex1:amd64 1.2~rc1.2-1.1 amd64 The Speex codec runtime library -ii libsphinxbase3:amd64 0.8+5prealpha+1-12 amd64 Speech recognition tool - shared library -ii libspiffy-perl 0.46-1 all Spiffy Perl Interface Framework For You -ii libsqlite3-0:amd64 3.34.1-3 amd64 SQLite 3 shared library -ii libsratom-0-0:amd64 0.6.8-1 amd64 library for serialising LV2 atoms to/from Turtle -ii libsrt1.4-gnutls:amd64 1.4.2-1.3 amd64 Secure Reliable Transport UDP streaming library (GnuTLS flavour) -ii libss2:amd64 1.46.2-2 amd64 command-line interface parsing library -ii libssh-gcrypt-4:amd64 0.9.5-1+deb11u1 amd64 tiny C SSH library (gcrypt flavor) -ii libssh2-1:amd64 1.9.0-2 amd64 SSH2 client-side library -ii libssl1.1:amd64 1.1.1n-0+deb11u3 amd64 Secure Sockets Layer toolkit - shared libraries -ii libstdc++6:amd64 10.2.1-6 amd64 GNU Standard C++ Library v3 -ii libstrictures-perl 2.000006-1 all Perl module to turn on strict and make all warnings fatal -ii libstring-shellquote-perl 1.04-1 all module to quote strings for passing through the shell -ii libsub-exporter-perl 0.987-1 all sophisticated exporter for custom-built routines -ii libsub-exporter-progressive-perl 0.001013-1 all module for using Sub::Exporter only if needed -ii libsub-identify-perl 0.14-1+b3 amd64 module to retrieve names of code references -ii libsub-install-perl 0.928-1.1 all module for installing subroutines into packages easily -ii libsub-name-perl 0.26-1+b1 amd64 module for assigning a new name to referenced sub -ii libsub-quote-perl 2.006006-1 all helper modules for subroutines -ii libswresample-dev:amd64 7:4.3.5-0+deb11u1 amd64 FFmpeg library for audio resampling, rematrixing etc. - development files -ii libswresample3:amd64 7:4.3.5-0+deb11u1 amd64 FFmpeg library for audio resampling, rematrixing etc. - runtime files -ii libswscale5:amd64 7:4.3.5-0+deb11u1 amd64 FFmpeg library for image scaling and various conversions - runtime files -ii libsyn123-0:amd64 1.26.4-1 amd64 MPEG layer 1/2/3 audio decoder (libsyn123 shared library) -ii libsys-filesystem-perl 1.408-1 all Perl module to retrieve list of filesystems and their properties -ii libsysfs2:amd64 2.1.0+repack-7 amd64 interface library to sysfs - shared library -ii libsystemd0:amd64 247.3-7+deb11u1 amd64 systemd utility library -ii libtag1v5:amd64 1.11.1+dfsg.1-3 amd64 audio meta-data library -ii libtag1v5-vanilla:amd64 1.11.1+dfsg.1-3 amd64 audio meta-data library - vanilla flavour -ii libtalloc2:amd64 2.3.1-2+b1 amd64 hierarchical pool based memory allocator -ii libtasn1-6:amd64 4.16.0-2+deb11u1 amd64 Manage ASN.1 structures (runtime) -ii libtcl8.6:amd64 8.6.11+dfsg-1 amd64 Tcl (the Tool Command Language) v8.6 - run-time library files -ii libtdb1:amd64 1.4.3-1+b1 amd64 Trivial Database - shared library -ii libterm-ui-perl 0.46-1.1 all Term::ReadLine UI made easy -ii libtest-assertions-perl 1.054-3 all simple set of building blocks for unit and runtime testing -ii libtevent0:amd64 0.10.2-1 amd64 talloc-based event loop library - shared library -ii libtext-charwidth-perl 0.04-10+b1 amd64 get display widths of characters on the terminal -ii libtext-glob-perl 0.11-1 all Perl module for matching globbing patterns against text -ii libtext-soundex-perl:amd64 3.05-1 amd64 implementation of the soundex algorithm -ii libtext-template-perl 1.59-1 all perl module to process text templates -ii libtext-unidecode-perl 1.30-1 all US-ASCII transliterations of Unicode text -ii libtext-wrapi18n-perl 0.06-9 all internationalized substitute of Text::Wrap -ii libthai-data 0.1.28-3 all Data files for Thai language support library -ii libthai0:amd64 0.1.28-3 amd64 Thai language support library -ii libtheora0:amd64 1.1.1+dfsg.1-15 amd64 Theora Video Compression Codec -ii libthrowable-perl 0.200013-1.1 all role for classes that can be thrown -ii libtiff5:amd64 4.2.0-1+deb11u3 amd64 Tag Image File Format (TIFF) library -ii libtimedate-perl 2.3300-2 all collection of modules to manipulate date/time information -ii libtinfo5:amd64 6.2+20201114-2 amd64 shared low-level terminfo library (legacy version) -ii libtinfo6:amd64 6.2+20201114-2 amd64 shared low-level terminfo library for terminal handling -ii libtirpc-common 1.3.1-1+deb11u1 all transport-independent RPC library - common files -ii libtirpc3:amd64 1.3.1-1+deb11u1 amd64 transport-independent RPC library -ii libtk8.6:amd64 8.6.11-2 amd64 Tk toolkit for Tcl and X11 v8.6 - run-time files -ii libtomcrypt1:amd64 1.18.2-5 amd64 public domain open source cryptographic toolkit -ii libtommath1:amd64 1.2.0-6 amd64 multiple-precision integer library [runtime] -ii libtry-tiny-perl 0.30-1 all module providing minimalistic try/catch -ii libtsan0:amd64 10.2.1-6 amd64 ThreadSanitizer -- a Valgrind-based detector of data races (runtime) -ii libtwolame0:amd64 0.4.0-2 amd64 MPEG Audio Layer 2 encoding library -ii libtype-tiny-perl 1.012001-2 all tiny, yet Moo(se)-compatible type constraint -ii libtypes-serialiser-perl 1.01-1 all module providing simple data types for common serialisation formats -ii libubsan1:amd64 10.2.1-6 amd64 UBSan -- undefined behaviour sanitizer (runtime) -ii libuchardet0:amd64 0.0.7-1 amd64 universal charset detection library - shared library -ii libudev0:amd64 200-1 amd64 compatibility wrapper for libudev version 0 -ii libudev1:amd64 247.3-7+deb11u1 amd64 libudev shared library -ii libudfread0:amd64 1.1.1-1 amd64 UDF reader library -ii libunbound8:amd64 1.13.1-1 amd64 library implementing DNS resolution and validation -ii libunistring2:amd64 0.9.10-4 amd64 Unicode string library for C -ii libunwind8:amd64 1.3.2-2 amd64 library to determine the call-chain of a program - runtime -ii liburi-perl 5.08-1 all module to manipulate and access URI strings -ii liburing1:amd64 0.7-3 amd64 Linux kernel io_uring access library - shared library -ii libusb-0.1-4:amd64 2:0.1.12-32 amd64 userspace USB programming library -ii libusb-1.0-0:amd64 2:1.0.24-3 amd64 userspace USB programming library -ii libustr-1.0-1:amd64 1.0.4-6 amd64 Micro string library: shared library -ii libutempter0:amd64 1.2.1-2 amd64 privileged helper for utmp/wtmp updates (runtime) -ii libuuid1:amd64 2.36.1-8+deb11u1 amd64 Universally Unique ID library -ii libuv1:amd64 1.40.0-2 amd64 asynchronous event notification library - runtime library -ii libv4l-0:amd64 1.20.0-2 amd64 Collection of video4linux support libraries -ii libv4l2rds0:amd64 1.20.0-2 amd64 Video4Linux Radio Data System (RDS) decoding library -ii libv4lconvert0:amd64 1.20.0-2 amd64 Video4linux frame format conversion library -ii libva-drm2:amd64 2.10.0-1 amd64 Video Acceleration (VA) API for Linux -- DRM runtime -ii libva-wayland2:amd64 2.10.0-1 amd64 Video Acceleration (VA) API for Linux -- Wayland runtime -ii libva-x11-2:amd64 2.10.0-1 amd64 Video Acceleration (VA) API for Linux -- X11 runtime -ii libva2:amd64 2.10.0-1 amd64 Video Acceleration (VA) API for Linux -- runtime -ii libvariable-magic-perl 0.62-1+b3 amd64 module to associate user-defined magic to variables from Perl -ii libvdpau-va-gl1:amd64 0.4.2-1+b1 amd64 VDPAU driver with OpenGL/VAAPI backend -ii libvdpau1:amd64 1.4-3 amd64 Video Decode and Presentation API for Unix (libraries) -ii libvidstab1.1:amd64 1.1.0-2+b1 amd64 video stabilization library (shared library) -ii libvisual-0.4-0:amd64 0.4.0-17 amd64 audio visualization framework -ii libvorbis-dev:amd64 1.3.7-1 amd64 development files for Vorbis General Audio Compression Codec -ii libvorbis0a:amd64 1.3.7-1 amd64 decoder library for Vorbis General Audio Compression Codec -ii libvorbisenc2:amd64 1.3.7-1 amd64 encoder library for Vorbis General Audio Compression Codec -ii libvorbisfile3:amd64 1.3.7-1 amd64 high-level API for Vorbis General Audio Compression Codec -ii libvpx6:amd64 1.9.0-1 amd64 VP8 and VP9 video codec (shared library) -ii libvulkan1:amd64 1.2.162.0-1 amd64 Vulkan loader library -ii libwacom-common 1.8-2 all Wacom model feature query library (common files) -ii libwacom2:amd64 1.8-2 amd64 Wacom model feature query library -ii libwavpack1:amd64 5.4.0-1 amd64 audio codec (lossy and lossless) - library -ii libwayland-client0:amd64 1.18.0-2~exp1.1 amd64 wayland compositor infrastructure - client library -ii libwayland-cursor0:amd64 1.18.0-2~exp1.1 amd64 wayland compositor infrastructure - cursor library -ii libwayland-egl1:amd64 1.18.0-2~exp1.1 amd64 wayland compositor infrastructure - EGL library -ii libwayland-server0:amd64 1.18.0-2~exp1.1 amd64 wayland compositor infrastructure - server library -ii libwbclient0:amd64 2:4.13.13+dfsg-1~deb11u5 amd64 Samba winbind client library -ii libwebp6:amd64 0.6.1-2.1 amd64 Lossy compression of digital photographic images. -ii libwebpdemux2:amd64 0.6.1-2.1 amd64 Lossy compression of digital photographic images. -ii libwebpmux3:amd64 0.6.1-2.1 amd64 Lossy compression of digital photographic images. -ii libwebsockets16:amd64 4.0.20-2 amd64 lightweight C websockets library -ii libwind0-heimdal:amd64 7.7.0+dfsg-2+deb11u2 amd64 Heimdal Kerberos - stringprep implementation -ii libwmf0.2-7:amd64 0.2.8.4-17 amd64 Windows metafile conversion library -ii libwoff1:amd64 1.0.2-1+b1 amd64 library for converting fonts to WOFF 2.0 -ii libwrap0:amd64 7.6.q-31 amd64 Wietse Venema's TCP wrappers library -ii libwww-perl 6.52-1 all simple and consistent interface to the world-wide web -ii libwww-robotrules-perl 6.02-1 all database of robots.txt-derived permissions -ii libx11-6:amd64 2:1.7.2-1 amd64 X11 client-side library -ii libx11-data 2:1.7.2-1 all X11 client-side library -ii libx11-protocol-perl 0.56-7.1 all Perl module for the X Window System Protocol, version 11 -ii libx11-xcb1:amd64 2:1.7.2-1 amd64 Xlib/XCB interface library -ii libx264-160:amd64 2:0.160.3011+gitcde9a93-2.1 amd64 x264 video coding library -ii libx265-192:amd64 3.4-2 amd64 H.265/HEVC video stream encoder (shared library) -ii libxapian30:amd64 1.4.18-3 amd64 Search engine library -ii libxau6:amd64 1:1.0.9-1 amd64 X11 authorisation library -ii libxaw7:amd64 2:1.0.13-1.1 amd64 X11 Athena Widget library -ii libxcb-dri2-0:amd64 1.14-3 amd64 X C Binding, dri2 extension -ii libxcb-dri3-0:amd64 1.14-3 amd64 X C Binding, dri3 extension -ii libxcb-glx0:amd64 1.14-3 amd64 X C Binding, glx extension -ii libxcb-icccm4:amd64 0.4.1-1.1 amd64 utility libraries for X C Binding -- icccm -ii libxcb-image0:amd64 0.4.0-1+b3 amd64 utility libraries for X C Binding -- image -ii libxcb-keysyms1:amd64 0.4.0-1+b2 amd64 utility libraries for X C Binding -- keysyms -ii libxcb-present0:amd64 1.14-3 amd64 X C Binding, present extension -ii libxcb-randr0:amd64 1.14-3 amd64 X C Binding, randr extension -ii libxcb-render-util0:amd64 0.3.9-1+b1 amd64 utility libraries for X C Binding -- render-util -ii libxcb-render0:amd64 1.14-3 amd64 X C Binding, render extension -ii libxcb-shape0:amd64 1.14-3 amd64 X C Binding, shape extension -ii libxcb-shm0:amd64 1.14-3 amd64 X C Binding, shm extension -ii libxcb-sync1:amd64 1.14-3 amd64 X C Binding, sync extension -ii libxcb-util1:amd64 0.4.0-1+b1 amd64 utility libraries for X C Binding -- atom, aux and event -ii libxcb-xfixes0:amd64 1.14-3 amd64 X C Binding, xfixes extension -ii libxcb-xinerama0:amd64 1.14-3 amd64 X C Binding, xinerama extension -ii libxcb-xinput0:amd64 1.14-3 amd64 X C Binding, xinput extension -ii libxcb-xkb1:amd64 1.14-3 amd64 X C Binding, XKEYBOARD extension -ii libxcb1:amd64 1.14-3 amd64 X C Binding -ii libxcomposite1:amd64 1:0.4.5-1 amd64 X11 Composite extension library -ii libxcursor1:amd64 1:1.2.0-2 amd64 X cursor management library -ii libxdamage1:amd64 1:1.1.5-2 amd64 X11 damaged region extension library -ii libxdmcp6:amd64 1:1.1.2-3 amd64 X11 Display Manager Control Protocol library -ii libxext6:amd64 2:1.3.3-1.1 amd64 X11 miscellaneous extension library -ii libxfixes3:amd64 1:5.0.3-2 amd64 X11 miscellaneous 'fixes' extension library -ii libxft2:amd64 2.3.2-2 amd64 FreeType-based font drawing library for X -ii libxi6:amd64 2:1.7.10-1 amd64 X11 Input extension library -ii libxinerama1:amd64 2:1.1.4-2 amd64 X11 Xinerama extension library -ii libxkbcommon-x11-0:amd64 1.0.3-2 amd64 library to create keymaps with the XKB X11 protocol -ii libxkbcommon0:amd64 1.0.3-2 amd64 library interface to the XKB compiler - shared library -ii libxkbfile1:amd64 1:1.1.0-1 amd64 X11 keyboard file manipulation library -ii libxml-libxml-perl 2.0134+dfsg-2+b1 amd64 Perl interface to the libxml2 library -ii libxml-libxml-simple-perl 1.01-1 all Perl module that uses the XML::LibXML parser for XML structures -ii libxml-namespacesupport-perl 1.12-1.1 all Perl module for supporting simple generic namespaces -ii libxml-opml-simplegen-perl 0.07-1.1 all module for creating OPML using XML::Simple -ii libxml-parser-perl:amd64 2.46-2 amd64 Perl module for parsing XML files -ii libxml-sax-base-perl 1.09-1.1 all base class for SAX drivers and filters -ii libxml-sax-perl 1.02+dfsg-1 all Perl module for using and building Perl SAX2 XML processors -ii libxml-simple-perl 2.25-1 all Perl module for reading and writing XML -ii libxml-twig-perl 1:3.52-1 all Perl module for processing huge XML documents in tree mode -ii libxml2:amd64 2.9.10+dfsg-6.7+deb11u3 amd64 GNOME XML library -ii libxmu6:amd64 2:1.1.2-2+b3 amd64 X11 miscellaneous utility library -ii libxmuu1:amd64 2:1.1.2-2+b3 amd64 X11 miscellaneous micro-utility library -ii libxosd2 2.2.14-2.1+b1 amd64 X On-Screen Display library - runtime -ii libxpm4:amd64 1:3.5.12-1 amd64 X11 pixmap library -ii libxrandr2:amd64 2:1.5.1-1 amd64 X11 RandR extension library -ii libxrender1:amd64 1:0.9.10-1 amd64 X Rendering Extension client library -ii libxshmfence1:amd64 1.3-1 amd64 X shared memory fences - shared library -ii libxslt1.1:amd64 1.1.34-4+deb11u1 amd64 XSLT 1.0 processing library - runtime library -ii libxss1:amd64 1:1.2.3-1 amd64 X11 Screen Saver extension library -ii libxstring-perl 0.005-1+b1 amd64 module containing isolated string helpers from B -ii libxt6:amd64 1:1.2.0-1 amd64 X11 toolkit intrinsics library -ii libxtables12:amd64 1.8.7-1 amd64 netfilter xtables library -ii libxtst6:amd64 2:1.2.3-1 amd64 X11 Testing -- Record extension library -ii libxv1:amd64 2:1.0.11-1 amd64 X11 Video extension library -ii libxvidcore4:amd64 2:1.3.7-1 amd64 Open source MPEG-4 video codec (library) -ii libxxf86dga1:amd64 2:1.1.4-1+b3 amd64 X11 Direct Graphics Access extension library -ii libxxf86vm1:amd64 1:1.1.4-1+b2 amd64 X11 XFree86 video mode extension library -ii libxxhash0:amd64 0.8.0-2 amd64 shared library for xxhash -ii libyaml-0-2:amd64 0.2.2-1 amd64 Fast YAML 1.1 parser and emitter library -ii libz3-4:amd64 4.8.10-1 amd64 theorem prover from Microsoft Research - runtime libraries -ii libzip4:amd64 1.7.3-1 amd64 library for reading, creating, and modifying zip archives (runtime) -ii libzmq5:amd64 4.3.4-1 amd64 lightweight messaging kernel (shared library) -ii libzstd1:amd64 1.4.8+dfsg-2.1 amd64 fast lossless compression algorithm -ii libzvbi-common 0.2.35-18 all Vertical Blanking Interval decoder (VBI) - common files -ii libzvbi0:amd64 0.2.35-18 amd64 Vertical Blanking Interval decoder (VBI) - runtime files -ii linux-base 4.6 all Linux image base package -ii linux-image-5.10.0-20-amd64 5.10.158-2 amd64 Linux 5.10 for 64-bit PCs (signed) -ii linux-image-5.10.0-21-amd64 5.10.162-1 amd64 Linux 5.10 for 64-bit PCs (signed) -ii linux-image-amd64 5.10.162-1 amd64 Linux for 64-bit PCs (meta-package) -ii linux-libc-dev:amd64 5.10.162-1 amd64 Linux support headers for userspace development -ii locales 2.31-13+deb11u5 all GNU C Library: National Language (locale) data [support] -ii lockfile-progs 0.1.18 amd64 Programs for locking and unlocking files and mailboxes -ii login 1:4.8.1-1 amd64 system login tools -ii logsave 1.46.2-2 amd64 save the output of a command in a log file -ii lsb-base 11.1.0 all Linux Standard Base init script functionality -ii lsb-release 11.1.0 all Linux Standard Base version reporting utility -ii lshw 02.18.85-0.7 amd64 information about hardware configuration -ii lua-lpeg:amd64 1.0.2-1 amd64 LPeg library for the Lua language -ii lua5.1 5.1.5-8.1+b3 amd64 Simple, extensible, embeddable programming language -ii luajit 2.1.0~beta3+dfsg-5.3 amd64 Just in time compiler for Lua programming language version 5.1 -ii m4 1.4.18-5 amd64 macro processing language -ii mailcap 3.69 all Debian's mailcap system, and support programs -ii man-db 2.9.4-2 amd64 tools for reading manual pages -ii mariadb-client-10.5 1:10.5.18-0+deb11u1 amd64 MariaDB database client binaries -ii mariadb-client-core-10.5 1:10.5.18-0+deb11u1 amd64 MariaDB database core client binaries -ii mariadb-common 1:10.5.18-0+deb11u1 all MariaDB common configuration files -ii mawk 1.3.4.20200120-2 amd64 Pattern scanning and text processing language -ii media-types 4.0.0 all List of standard media types and their usual file extension -ii mesa-va-drivers:amd64 20.3.5-1 amd64 Mesa VA-API video acceleration drivers -ii mesa-vdpau-drivers:amd64 20.3.5-1 amd64 Mesa VDPAU video acceleration drivers -ii mime-support 3.66 all transitional package -ii mosquitto 2.0.11-1 amd64 MQTT version 5.0/3.1.1/3.1 compatible message broker -ii mosquitto-clients 2.0.11-1 amd64 Mosquitto command line MQTT clients -ii mount 2.36.1-8+deb11u1 amd64 tools for mounting and manipulating filesystems -ii mpg123 1.26.4-1 amd64 MPEG layer 1/2/3 audio player -ii mpv 0.32.0-3 amd64 video player based on MPlayer/mplayer2 -ii msmtp 1.8.11-2.1 amd64 light SMTP client with support for server profiles -ii mysql-common 5.8+1.0.7 all MySQL database common files, e.g. /etc/mysql/my.cnf -ii nano 5.4-2+deb11u2 amd64 small, friendly text editor inspired by Pico -ii ncal 12.1.7+nmu3 amd64 display a calendar and the date of Easter -ii ncdu 1.15.1-1 amd64 ncurses disk usage viewer -ii ncftp 2:3.2.5-2.2 amd64 User-friendly and well-featured FTP client -ii ncurses-base 6.2+20201114-2 all basic terminal type definitions -ii ncurses-bin 6.2+20201114-2 amd64 terminal-related programs and man pages -ii ncurses-term 6.2+20201114-2 all additional terminal type definitions -ii ndiff 7.91+dfsg1+really7.80+dfsg1-2 all The Network Mapper - result compare utility -ii net-tools 1.60+git20181103.0eebece-1 amd64 NET-3 networking toolkit -ii netbase 6.3 all Basic TCP/IP networking system -ii netcat-openbsd 1.217-3 amd64 TCP/IP swiss army knife -ii netcat-traditional 1.10-46 amd64 TCP/IP swiss army knife -ii nftables 0.9.8-3.1+deb11u1 amd64 Program to control packet filtering rules by Netfilter project -ii nmap-common 7.91+dfsg1+really7.80+dfsg1-2 all Architecture independent files for nmap -ii nodejs 12.22.12~dfsg-1~deb11u3 amd64 evented I/O for V8 javascript - runtime executable -ii ntfs-3g 1:2017.3.23AR.3-4+deb11u3 amd64 read/write NTFS driver for FUSE -ii ntpdate 1:4.2.8p15+dfsg-1 amd64 client for setting system time from NTP servers (deprecated) -ii ocl-icd-libopencl1:amd64 2.2.14-2 amd64 Generic OpenCL ICD Loader -ii openssh-client 1:8.4p1-5+deb11u1 amd64 secure shell (SSH) client, for secure access to remote machines -ii openssh-sftp-server 1:8.4p1-5+deb11u1 amd64 secure shell (SSH) sftp server module, for SFTP access from remote machines -ii openssl 1.1.1n-0+deb11u3 amd64 Secure Sockets Layer toolkit - cryptographic utility -ii openvpn 2.5.1-3 amd64 virtual private network daemon -ii oss-compat 7 amd64 Open Sound System (OSS) compatibility package -ii p7zip 16.02+dfsg-8 amd64 7zr file archiver with high compression ratio -ii parted 3.4-1 amd64 disk partition manipulator -ii passwd 1:4.8.1-1 amd64 change and administer password and group data -ii pci.ids 0.0~2021.02.08-1 all PCI ID Repository -ii perl 5.32.1-4+deb11u2 amd64 Larry Wall's Practical Extraction and Report Language -ii perl-base 5.32.1-4+deb11u2 amd64 minimal Perl system -ii perl-modules-5.32 5.32.1-4+deb11u2 all Core Perl modules -ii perl-openssl-defaults:amd64 5 amd64 version compatibility baseline for Perl OpenSSL packages -ii php 2:7.4+76 all server-side, HTML-embedded scripting language (default) -ii php-common 2:76 all Common files for PHP packages -ii php-mbstring 2:7.4+76 all MBSTRING module for PHP [default] -ii php-pear 1:1.10.12+submodules+notgz+20210212-1 all PEAR Base System -ii php-php-gettext 1.0.12-4 all read gettext MO files directly, without requiring anything other than PHP -ii php-soap 2:7.4+76 all SOAP module for PHP [default] -ii php-tcpdf 6.3.5+dfsg1-1 all PHP class for generating PDF files on-the-fly -ii php-xml 2:7.4+76 all DOM, SimpleXML, WDDX, XML, and XSL module for PHP [default] -ii php7.4 7.4.33-1+deb11u1 all server-side, HTML-embedded scripting language (metapackage) -ii php7.4-bz2 7.4.33-1+deb11u1 amd64 bzip2 module for PHP -ii php7.4-cli 7.4.33-1+deb11u1 amd64 command-line interpreter for the PHP scripting language -ii php7.4-common 7.4.33-1+deb11u1 amd64 documentation, examples and common module for PHP -ii php7.4-curl 7.4.33-1+deb11u1 amd64 CURL module for PHP -ii php7.4-json 7.4.33-1+deb11u1 amd64 JSON module for PHP -ii php7.4-mbstring 7.4.33-1+deb11u1 amd64 MBSTRING module for PHP -ii php7.4-mysql 7.4.33-1+deb11u1 amd64 MySQL module for PHP -ii php7.4-opcache 7.4.33-1+deb11u1 amd64 Zend OpCache module for PHP -ii php7.4-readline 7.4.33-1+deb11u1 amd64 readline module for PHP -ii php7.4-soap 7.4.33-1+deb11u1 amd64 SOAP module for PHP -ii php7.4-sqlite3 7.4.33-1+deb11u1 amd64 SQLite3 module for PHP -ii php7.4-xml 7.4.33-1+deb11u1 amd64 DOM, SimpleXML, XML, and XSL module for PHP -ii php7.4-zip 7.4.33-1+deb11u1 amd64 Zip module for PHP -ii pinentry-curses 1.1.0-4 amd64 curses-based PIN or pass-phrase entry dialog for GnuPG -ii poppler-data 0.4.10-1 all encoding data for the poppler PDF rendering library -ii procps 2:3.3.17-5 amd64 /proc file system utilities -ii psmisc 23.4-2 amd64 utilities that use the proc file system -ii python-apt-common 2.2.1 all Python interface to libapt-pkg (locales) -ii python-pip-whl 20.3.4-4+deb11u1 all Python package installer (pip wheels) -ii python-pkg-resources 44.1.1-1 all Package Discovery and Resource Access using pkg_resources -ii python-six 1.16.0-2 all Python 2 and 3 compatibility library (Python 2 interface) -ii python2 2.7.18-3 amd64 interactive high-level object-oriented language (Python2 version) -ii python2-minimal 2.7.18-3 amd64 minimal subset of the Python2 language -ii python2.7 2.7.18-8 amd64 Interactive high-level object-oriented language (version 2.7) -ii python2.7-minimal 2.7.18-8 amd64 Minimal subset of the Python language (version 2.7) -ii python3 3.9.2-3 amd64 interactive high-level object-oriented language (default python3 version) -ii python3-apt 2.2.1 amd64 Python 3 interface to libapt-pkg -ii python3-dbus 1.2.16-5 amd64 simple interprocess messaging system (Python 3 interface) -ii python3-distro-info 1.0 all information about distributions' releases (Python 3 module) -ii python3-distutils 3.9.2-1 all distutils package for Python 3.x -ii python3-dnspython 2.0.0-1 all DNS toolkit for Python 3 -ii python3-ldb 2:2.2.3-2~deb11u2 amd64 Python 3 bindings for LDB -ii python3-lib2to3 3.9.2-1 all Interactive high-level object-oriented language (lib2to3) -ii python3-lxml:amd64 4.6.3+dfsg-0.1+deb11u1 amd64 pythonic binding for the libxml2 and libxslt libraries -ii python3-minimal 3.9.2-3 amd64 minimal subset of the Python language (default python3 version) -ii python3-pip 20.3.4-4+deb11u1 all Python package installer -ii python3-pkg-resources 52.0.0-4 all Package Discovery and Resource Access using pkg_resources -ii python3-pyxattr:amd64 0.7.2-1+b1 amd64 module for manipulating filesystem extended attributes (Python3) -ii python3-samba 2:4.13.13+dfsg-1~deb11u5 amd64 Python 3 bindings for Samba -ii python3-setuptools 52.0.0-4 all Python3 Distutils Enhancements -ii python3-talloc:amd64 2.3.1-2+b1 amd64 hierarchical pool based memory allocator - Python3 bindings -ii python3-tdb 1.4.3-1+b1 amd64 Python3 bindings for TDB -ii python3-wheel 0.34.2-1 all built-package format for Python -ii python3.9 3.9.2-1 amd64 Interactive high-level object-oriented language (version 3.9) -ii python3.9-minimal 3.9.2-1 amd64 Minimal subset of the Python language (version 3.9) -ii readline-common 8.1-1 all GNU readline and history libraries, common files -ii rename 1.13-1 all Perl extension for renaming multiple files -ii rfkill 2.36.1-8+deb11u1 amd64 tool for enabling and disabling wireless devices -ii rlwrap 0.43-1+b2 amd64 readline feature command line wrapper -ii rpcbind 1.2.5-9 amd64 converts RPC program numbers into universal addresses -ii rsync 3.2.3-4+deb11u1 amd64 fast, versatile, remote (and local) file-copying tool -ii rsyslog 8.2102.0-2+deb11u1 amd64 reliable system and kernel logging daemon -ii rtmpdump 2.4+20151223.gitfa8646d.1-2+b2 amd64 small dumper for media content streamed over the RTMP protocol -ii runit-helper 2.10.3 all dh-runit implementation detail -ii samba 2:4.13.13+dfsg-1~deb11u5 amd64 SMB/CIFS file, print, and login server for Unix -ii samba-common 2:4.13.13+dfsg-1~deb11u5 all common files used by both the Samba server and client -ii samba-common-bin 2:4.13.13+dfsg-1~deb11u5 amd64 Samba common files used by both the server and the client -ii samba-libs:amd64 2:4.13.13+dfsg-1~deb11u5 amd64 Samba core libraries -ii samba-vfs-modules:amd64 2:4.13.13+dfsg-1~deb11u5 amd64 Samba Virtual FileSystem plugins -ii sed 4.7-1 amd64 GNU stream editor for filtering/transforming text -ii sensible-utils 0.0.14 all Utilities for sensible alternative selection -ii sgml-base 1.30 all SGML infrastructure and SGML catalog file support -ii shared-mime-info 2.0-1 amd64 FreeDesktop.org shared MIME database and spec -ii shellinabox 2.21+b1 amd64 publish command line shell through AJAX interface -ii socat 1.7.4.1-3 amd64 multipurpose relay for bidirectional data transfer -ii spawn-fcgi 1.6.4-2 amd64 FastCGI process spawner -ii splay 0.9.5.2-14+b1 amd64 Sound player for MPEG-1,2 layer 1,2,3 -ii sqlite3 3.34.1-3 amd64 Command line interface for SQLite 3 -ii startpar 0.64-3 amd64 run processes in parallel and multiplex their output -ii sudo 1.9.5p2-3+deb11u1 amd64 Provide limited super user privileges to specific users -ii systemd 247.3-7+deb11u1 amd64 system and service manager -ii systemd-sysv 247.3-7+deb11u1 amd64 system and service manager - SysV links -ii systemd-timesyncd 247.3-7+deb11u1 amd64 minimalistic service to synchronize local time with NTP servers -ii sysvinit-utils 2.96-7+deb11u1 amd64 System-V-like utilities -ii tar 1.34+dfsg-1 amd64 GNU version of the tar archiving utility -ii tasksel 3.68+deb11u1 all tool for selecting tasks for installation on Debian systems -ii tasksel-data 3.68+deb11u1 all official tasks used for installation of Debian systems -ii tcl-expect:amd64 5.45.4-2+b1 amd64 Automates interactive applications (Tcl package) -ii tcl8.6 8.6.11+dfsg-1 amd64 Tcl (the Tool Command Language) v8.6 - shell -ii tcpd 7.6.q-31 amd64 Wietse Venema's TCP wrapper utilities -ii tcpdump 4.99.0-2+deb11u1 amd64 command-line network traffic analyzer -ii tdb-tools 1.4.3-1+b1 amd64 Trivial Database - bundled binaries -ii tiny-initramfs 0.1-5 all Minimalistic initramfs implementation (automation) -ii tiny-initramfs-core 0.1-5+b11 amd64 Minimalistic initramfs implementation (core tools) -ii traceroute 1:2.1.0-2+b1 amd64 Traces the route taken by packets over an IPv4/IPv6 network -ii triggerhappy 0.5.0-1.1 amd64 global hotkey daemon for Linux -ii tzdata 2021a-1+deb11u8 all time zone and daylight-saving time data -ii ucf 3.0043 all Update Configuration File(s): preserve user changes to config files -ii udev 247.3-7+deb11u1 amd64 /dev/ and hotplug management daemon -ii unattended-upgrades 2.8 all automatic installation of security upgrades -ii unzip 6.0-26+deb11u1 amd64 De-archiver for .zip files -ii usb-modeswitch 2.6.1-1 amd64 mode switching tool for controlling "flip flop" USB devices -ii usb-modeswitch-data 20191128-3 all mode switching data for usb-modeswitch -ii usbutils 1:013-3 amd64 Linux USB utilities -ii util-linux 2.36.1-8+deb11u1 amd64 miscellaneous system utilities -ii v4l-utils 1.20.0-2 amd64 Collection of command line video4linux utilities -ii vim 2:8.2.2434-3+deb11u1 amd64 Vi IMproved - enhanced vi editor -ii vim-common 2:8.2.2434-3+deb11u1 all Vi IMproved - Common files -ii vim-runtime 2:8.2.2434-3+deb11u1 all Vi IMproved - Runtime files -ii vsftpd 3.0.3-12+b1 amd64 lightweight, efficient FTP server written for security -ii watchdog 5.16-1+b1 amd64 system health checker and software/hardware watchdog handler -ii wget 1.21-1+deb11u1 amd64 retrieves files from the web -ii whiptail 0.52.21-4+b3 amd64 Displays user-friendly dialog boxes from shell scripts -ii wireless-regdb 2022.04.08-2~deb11u1 all wireless regulatory database for Linux -ii wireless-tools 30~pre9-13.1 amd64 Tools for manipulating Linux Wireless Extensions -ii x11-common 1:7.7+22 all X Window System (X.Org) infrastructure -ii x11-utils 7.7+5 amd64 X11 utilities -ii x11-xserver-utils 7.7+8 amd64 X server utilities -ii xbitmaps 1.1.1-2.1 all Base X bitmaps -ii xkb-data 2.29-2 all X Keyboard Extension (XKB) configuration data -ii xml-core 0.18+nmu1 all XML infrastructure and XML catalog file support -ii xterm 366-1+deb11u1 amd64 X terminal emulator -ii xxd 2:8.2.2434-3+deb11u1 amd64 tool to make (or reverse) a hex dump -ii xz-utils 5.2.5-2.1~deb11u1 amd64 XZ-format compression utilities -ii zlib1g:amd64 1:1.2.11.dfsg-2+deb11u2 amd64 compression library - runtime