hardware:raspberry_pi:dietpi

DietPi

ダウンロード

$ curl -O https://dietpi.com/downloads/images/DietPi_RPi-ARMv6-Bullseye.7z

  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  165M  100  165M    0     0  2029k      0  0:01:23  0:01:23 --:--:-- 1078k

$ 7z e -oDietPi_img -y DietPi_RPi-ARMv6-Bullseye.7z

7-Zip 21.07 (x64) : Copyright (c) 1999-2021 Igor Pavlov : 2021-12-26

Scanning the drive for archives:
1 file, 173971615 bytes (166 MiB)

Extracting archive: DietPi_RPi-ARMv6-Bullseye.7z
--
Path = DietPi_RPi-ARMv6-Bullseye.7z
Type = 7z
Physical Size = 173971615
Headers Size = 240
Method = LZMA2:26
Solid = +
Blocks = 1

Everything is Ok

Files: 3
Size:       1073887651
Compressed: 173971615

SD カードへ書き込み

$ scoop install rufus

Installing 'rufus' (3.17) [64bit]
rufus-3.17p.exe (1.3 MB) [====================================================================================] 100%
Checking hash of rufus-3.17p.exe ... ok.
Running pre-install script...
Linking ~\scoop\apps\rufus\current => ~\scoop\apps\rufus\3.17
Creating shim for 'rufus'.
Creating shortcut for Rufus (rufus.exe)
Persisting rufus.ini
Persisting rufus_files
'rufus' (3.17) was installed successfully!

$ rufus -i ./DietPi_img/DietPi_RPi-ARMv6-Bullseye.img
$ scoop install rufus

[スタート]ボタンをクリックする。
書き込みが完了したら[閉じる]をクリックする。

起動前に WiFi を構成する場合

dietpi.txt の修正

SD カードの dietpi.txt をエディタで開く。

dietpi.txt
#AUTO_SETUP_ACCEPT_LICENSE=0
AUTO_SETUP_ACCEPT_LICENSE=1
 
#AUTO_SETUP_LOCALE=C.UTF-8
AUTO_SETUP_LOCALE=ja_JP.UTF-8
 
#AUTO_SETUP_KEYBOARD_LAYOUT=gb
AUTO_SETUP_KEYBOARD_LAYOUT=jp
 
#AUTO_SETUP_TIMEZONE=Europe/London
AUTO_SETUP_TIMEZONE=Asia/Tokyo
 
#AUTO_SETUP_NET_WIFI_ENABLED=0
AUTO_SETUP_NET_WIFI_ENABLED=1
 
#AUTO_SETUP_NET_WIFI_COUNTRY_CODE=GB
AUTO_SETUP_NET_WIFI_COUNTRY_CODE=JP
 
#AUTO_SETUP_NET_HOSTNAME=DietPi
AUTO_SETUP_NET_HOSTNAME=DietPi-001
 
##### Software Options #####
# SSH server choice: 0=none/custom | -1=Dropbear | -2=OpenSSH
#AUTO_SETUP_SSH_SERVER_INDEX=-1
AUTO_SETUP_SSH_SERVER_INDEX=-2
 
# File server choice: 0=none/custom | -1=ProFTP | -2=Samba
#AUTO_SETUP_FILE_SERVER_INDEX=0
AUTO_SETUP_FILE_SERVER_INDEX=-2
dietpi.txt
# IMPORTANT:
# - This is intended for advanced users, unless you know what you are doing, do not edit this file. Please use the DietPi programs instead.
# - Do not remove uncommented lines, as the items are scraped by DietPi programs, on demand.
 
#------------------------------------------------------------------------------------------------------
##### DietPi-Automation settings, applied on first boot of DietPi only, ONCE! #####
#------------------------------------------------------------------------------------------------------
# By setting this to "1" you accept the DietPi GPLv2 license and skip the related interactive dialog.
# - Full license text: /boot/dietpi-LICENSE.txt
# - This setting is ignored (and assumed to be affirmative) if AUTO_SETUP_AUTOMATED=1
#AUTO_SETUP_ACCEPT_LICENSE=0
AUTO_SETUP_ACCEPT_LICENSE=1
 
##### Language/Regional Options #####
# Locale: eg: "en_GB.UTF-8" / "de_DE.UTF-8" | One entry and UTF-8 ONLY!
#AUTO_SETUP_LOCALE=C.UTF-8
AUTO_SETUP_LOCALE=ja_JP.UTF-8
 
# Keyboard Layout eg: "gb" / "us" / "de" / "fr"
#AUTO_SETUP_KEYBOARD_LAYOUT=gb
AUTO_SETUP_KEYBOARD_LAYOUT=jp
 
# Timezone eg: "Europe/London" / "America/New_York" | Full list (TZ*): https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
#AUTO_SETUP_TIMEZONE=Europe/London
AUTO_SETUP_TIMEZONE=Asia/Tokyo
 
##### Network Options #####
# Enable Ethernet or WiFi adapter: 1=enable | 0=disable
# - If both Ethernet and WiFi are enabled, WiFi will take priority and Ethernet will be disabled.
# - If using WiFi, please edit dietpi-wifi.txt to pre-enter credentials.
AUTO_SETUP_NET_ETHERNET_ENABLED=1
#AUTO_SETUP_NET_WIFI_ENABLED=0
AUTO_SETUP_NET_WIFI_ENABLED=1
 
# Force Ethernet speeds: 0=automatic speed | 10 = 10Mbit | 100 = 100Mbit etc
# - This is mainly aimed at PINE A64 which may have an HW issue that causes unstable 1Gbit link.
AUTO_SETUP_NET_ETH_FORCE_SPEED=0
 
# WiFi country code: 2 uppercase character value (e.g. GB US DE JP): https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
#AUTO_SETUP_NET_WIFI_COUNTRY_CODE=GB
AUTO_SETUP_NET_WIFI_COUNTRY_CODE=JP
 
# Enter your static network details below, if applicable.
AUTO_SETUP_NET_USESTATIC=0
AUTO_SETUP_NET_STATIC_IP=192.168.0.100
AUTO_SETUP_NET_STATIC_MASK=255.255.255.0
AUTO_SETUP_NET_STATIC_GATEWAY=192.168.0.1
AUTO_SETUP_NET_STATIC_DNS=9.9.9.9 149.112.112.112
 
# Set to "1" to convert DHCP leased network settings into static settings automatically on first boot.
AUTO_SETUP_DHCP_TO_STATIC=0
 
# Hostname
#AUTO_SETUP_NET_HOSTNAME=DietPi
AUTO_SETUP_NET_HOSTNAME=DietPi-001
 
# Delay service starts at boot until network is established: 0=disabled | 1=enabled
AUTO_SETUP_BOOT_WAIT_FOR_NETWORK=1
 
##### Misc Options #####
# Swap space size to generate: 0 => disable | 1 => auto | 2 and up => size in MiB
AUTO_SETUP_SWAPFILE_SIZE=1
# Swap space location: "zram" => swap space on /dev/zram0 (auto-size = 50% of RAM size) | /path/to/file => swap file at location (auto-size = 2 GiB minus RAM size)
AUTO_SETUP_SWAPFILE_LOCATION=/var/swap
 
# Set to "1" to disable HDMI/video output and framebuffers on Raspberry Pi, to reduce power consumption and memory usage: Works on RPi only!
AUTO_SETUP_HEADLESS=0
 
# Unmask (enable) systemd-logind service (including dbus), which is masked by default on DietPi
AUTO_UNMASK_LOGIND=0
 
# Custom Script (pre-networking and pre-DietPi install)
# - Allows you to automatically execute a custom script before network is up on first boot.
# - Copy your script to /boot/Automation_Custom_PreScript.sh and it will be executed automatically.
# - Executed script log: /var/tmp/dietpi/logs/dietpi-automation_custom_prescript.log
 
# Custom Script (post-networking and post-DietPi install)
# - Allows you to automatically execute a custom script at the end of DietPi install.
# - Option 0 = Copy your script to /boot/Automation_Custom_Script.sh and it will be executed automatically.
# - Option 1 = Host your script online, then use e.g. AUTO_SETUP_CUSTOM_SCRIPT_EXEC=https://myweb.com/myscript.sh and it will be downloaded and executed automatically.
# - Executed script log: /var/tmp/dietpi/logs/dietpi-automation_custom_script.log
AUTO_SETUP_CUSTOM_SCRIPT_EXEC=0
 
# Restore a DietPi-Backup on first boot: 0 => disable | 1 => interactive restore (show list of found backups) | 2 => non-interactive restore (restore first found backup)
# - Simply attach the drive/disk/stick with contains the backup. All attached drives will be mounted temporarily and searched automatically.
AUTO_SETUP_BACKUP_RESTORE=0
 
##### Software Options #####
# SSH server choice: 0=none/custom | -1=Dropbear | -2=OpenSSH
#AUTO_SETUP_SSH_SERVER_INDEX=-1
AUTO_SETUP_SSH_SERVER_INDEX=-2
 
# File server choice: 0=none/custom | -1=ProFTP | -2=Samba
#AUTO_SETUP_FILE_SERVER_INDEX=0
AUTO_SETUP_FILE_SERVER_INDEX=-2
 
# Logging mode choice: 0=none/custom | -1=RAMlog 1h clear | -2=RAMlog 1h save clear | -3=rsyslog + logrotate
AUTO_SETUP_LOGGING_INDEX=-1
# RAMlog max tmpfs size (MB). 50MB should be fine for single use. 200MB+ for heavy webserver and access log etc.
AUTO_SETUP_RAMLOG_MAXSIZE=50
 
# Webserver preference: 0=Apache | -1=Nginx | -2=Lighttpd
# - This defines the webserver to install (only) when another selected software requires one.
# - It won't be installed if no other software requires a webserver and a manual webserver stack selection will override it.
AUTO_SETUP_WEB_SERVER_INDEX=-2
 
# Desktop preference: 0=LXDE | -1=Xfce | -2=MATE | -3=LXQt | -4=GNUstep
# - This defines the desktop to install (only) when another selected software requires one.
# - It won't be installed if no other software requires a desktop and a manual desktop selection will override it.
AUTO_SETUP_DESKTOP_INDEX=0
 
# Browser preference: 0=None | -1=Firefox | -2=Chromium
# - This defines the browser to install (only) when a desktop is installed.
# - It won't be installed if no desktop is installed and a manual browser selection will override it.
AUTO_SETUP_BROWSER_INDEX=-1
 
# DietPi-Autostart: 0=Console | 7=Console autologin | 1=Kodi | 2=Desktop autologin | 16=Desktop | 4=OpenTyrian | 5=DietPi-CloudShell | 6=Amiberry fast boot | 8=Amiberry standard boot | 9=DDX-Rebirth | 10=CAVA Spectrum | 11=Chromium kiosk | 14=Custom script (background) | 17=Custom script (foreground)
# - This will be effective on 2nd boot, after firstrun update and installs have been done.
# - Related software titles must be installed either on firstrun installs or via AUTO_SETUP_AUTOMATED=1 + AUTO_SETUP_INSTALL_SOFTWARE_ID (see below).
AUTO_SETUP_AUTOSTART_TARGET_INDEX=0
# Autologin user name
# - This user must exist before firstrun installs, otherwise it will be reverted to root.
# - Applies to all autostart options but: 0, 6, 14 and 16
AUTO_SETUP_AUTOSTART_LOGIN_USER=root
 
##### Non-interactive Firstrun Setup #####
# On first login, run update, initial setup and software installs without any user input
# - Setting this to "1" is required for below settings to take effect
# - It is HIGHLY recommended to also set CONFIG_BOOT_WAIT_FOR_NETWORK=2, to force infinite wait for network connection during boot and prevent connection timeout errors.
# - Setting this to "1" indicates that you accept the DietPi GPLv2 license, available at /boot/dietpi-LICENSE.txt, superseding any setting of AUTO_SETUP_ACCEPT_LICENSE.
AUTO_SETUP_AUTOMATED=0
 
# Global Password to be applied for the system
# - Affects "root" and "dietpi" users login passwords and is used by dietpi-software as default for software installs which require a password.
# - On first dietpi-software execution, the password is removed from this file and instead encrypted and saved to rootfs.
# - WARN: We cannot guarantee that all software options can handle special characters like \"$.
AUTO_SETUP_GLOBAL_PASSWORD=dietpi
 
# Software to automatically install
# - List of available software IDs: https://github.com/MichaIng/DietPi/wiki/DietPi-Software-list
# - Add as many entries as you wish, one each line.
# - DietPi will automatically install all pre-reqs (e.g. ALSA/X11 for desktops etc)
# - E.g. the following (without the leading "#") will install the LXDE desktop automatically on first boot:
#AUTO_SETUP_INSTALL_SOFTWARE_ID=23
 
#------------------------------------------------------------------------------------------------------
##### Misc DietPi program settings #####
#------------------------------------------------------------------------------------------------------
# DietPi-Survey: 1=opt in | 0=opt out | -1=ask on first call
# - https://dietpi.com/docs/dietpi_tools/#miscellaneous (see tab 'DietPi Survey')
SURVEY_OPTED_IN=-1
 
#------------------------------------------------------------------------------------------------------
##### DietPi-Config settings #####
#------------------------------------------------------------------------------------------------------
# CPU Governor: schedutil | ondemand | interactive | conservative | powersave | performance
CONFIG_CPU_GOVERNOR=schedutil
# Ondemand Sampling Rate | Min value: 10000 microseconds (10ms)
CONFIG_CPU_ONDEMAND_SAMPLE_RATE=25000
# Ondemand Sampling Down Factor: Sampling Rate * Down Factor / 1000 = ms (40 = 1000ms when sampling rate is 25000)
CONFIG_CPU_ONDEMAND_SAMPLE_DOWNFACTOR=40
# Throttle Up Percentage: Percentage of average CPU usage during sampling rate at which CPU will be throttled up/down
CONFIG_CPU_USAGE_THROTTLE_UP=50
 
# CPU Frequency Limits: Disabled=disabled
# - Intel CPUs use a percentage value (%) from 0-100, eg: 55
# - All other devices must use a specific MHz value, eg: 1600
# - Has no effect on RPi, please set "arm_freq" and "arm_freq_min" in config.txt instead.
CONFIG_CPU_MAX_FREQ=Disabled
CONFIG_CPU_MIN_FREQ=Disabled
 
# Disable Intel-based turbo/boost stepping. This flag should not be required, setting <100% MAX frequency should disable Turbo on Intel CPUs.
CONFIG_CPU_DISABLE_TURBO=0
 
# System-wide proxy settings
# - Do not modify, you must use dietpi-config > "Network Options: Adapters" to apply
CONFIG_PROXY_ADDRESS=MyProxyServer.com
CONFIG_PROXY_PORT=8080
CONFIG_PROXY_USERNAME=
CONFIG_PROXY_PASSWORD=
 
# Connection timeout in seconds, before G_CHECK_URL assumes the URL is dead. Increase if you have a "flaky" connection or slow DNS resolver.
# - Set this to "0" to allow unlimited time, however this is not recommended to avoid unlimited hanging background scripts, e.g. daily DietPi update check.
# - A negative or non-integer value will result in the default of 10 seconds.
CONFIG_G_CHECK_URL_TIMEOUT=10
# Connection attempts with above timeout each, before G_CHECK_URL is giving up and prompts an error.
# - Any value below "1" or a non-integer value will result in the default of 2 attempts.
CONFIG_G_CHECK_URL_ATTEMPTS=2
# General connection and DNS testing
# - IP to ping when checking network connectivity. Default: 9.9.9.9 (Quad9 DNS IP)
CONFIG_CHECK_CONNECTION_IP=9.9.9.9
# - Domain to ping when checking DNS resolver. Default: dns9.quad9.net (Quad9 DNS domain)
CONFIG_CHECK_DNS_DOMAIN=dns9.quad9.net
 
# Daily check for DietPi updates: 0=disable | 1=enable
# - Checks are done by downloading a file of only 7 bytes.
CONFIG_CHECK_DIETPI_UPDATES=1
 
# Daily check for APT package updates: 0=disable | 1=check only | 2=check and upgrade automatically
# - Upgrade logs can be found at: /var/tmp/dietpi/logs/dietpi-update_apt.log
CONFIG_CHECK_APT_UPDATES=1
 
# Network time sync: 0=disabled | 1=boot only | 2=boot + daily | 3=boot + hourly | 4=Daemon + Drift
CONFIG_NTP_MODE=2
 
# Serial Console: Set to 0 if you do not require serial console.
CONFIG_SERIAL_CONSOLE_ENABLE=1
 
# Sound card
CONFIG_SOUNDCARD=none
 
# LCD Panel addon
# - Do not modify, you must use dietpi-config to configure/set options
CONFIG_LCDPANEL=none
 
# IPv6
CONFIG_ENABLE_IPV6=1
 
# APT mirrors which are applied to /etc/apt/sources.list | Values here will also be applied during 1st run setup
# - Raspbian: https://www.raspbian.org/RaspbianMirrors
CONFIG_APT_RASPBIAN_MIRROR=http://raspbian.raspberrypi.org/raspbian/
# - Debian: https://www.debian.org/mirror/official#list
CONFIG_APT_DEBIAN_MIRROR=https://deb.debian.org/debian/
 
# NTP mirror, applied to /etc/ntp.conf
# - For a full list, please see: https://www.ntppool.org/zone/@
# - Please remove the initial integer and full stop from the value (removing "0."), eg: debian.pool.ntp.org
CONFIG_NTP_MIRROR=debian.pool.ntp.org
 
#------------------------------------------------------------------------------------------------------
##### DietPi-Software settings #####
#------------------------------------------------------------------------------------------------------
# VNC Server
SOFTWARE_VNCSERVER_WIDTH=1280
SOFTWARE_VNCSERVER_HEIGHT=720
SOFTWARE_VNCSERVER_DEPTH=16
SOFTWARE_VNCSERVER_DISPLAY_INDEX=1
SOFTWARE_VNCSERVER_SHARE_DESKTOP=0
 
# ownCloud/Nextcloud
# - Optional username for admin account, the default is 'admin', applied during install
SOFTWARE_OWNCLOUD_NEXTCLOUD_USERNAME=admin
# - Optional data directory, default is "/mnt/dietpi_userdata/owncloud_data" respectively "/mnt/dietpi_userdata/nextcloud_data", applied during install
#	NB: This option is for advanced users. For full compatibility, please keep this options defaults, and, use dietpi-drive_manager to move the DietPi user data location.
SOFTWARE_OWNCLOUD_DATADIR=/mnt/dietpi_userdata/owncloud_data
SOFTWARE_NEXTCLOUD_DATADIR=/mnt/dietpi_userdata/nextcloud_data
 
# WiFi Hotspot
SOFTWARE_WIFI_HOTSPOT_SSID=DietPi-HotSpot
# - Key requires a minimum of 8 characters
SOFTWARE_WIFI_HOTSPOT_KEY=dietpihotspot
SOFTWARE_WIFI_HOTSPOT_CHANNEL=3
 
# X.org
# - DPI 96(default) 120(+25%) 144(+50%) 168(+75%) 192(+100%)
SOFTWARE_XORG_DPI=96
 
# Chromium
SOFTWARE_CHROMIUM_RES_X=1280
SOFTWARE_CHROMIUM_RES_Y=720
SOFTWARE_CHROMIUM_AUTOSTART_URL=https://dietpi.com/
 
# Home Assistant
# - Optional Python build dependencies and modules, possibly required for certain HA components
#	Space separated list (no quotation!), will be installed together with Home Assistant automatically, if present
SOFTWARE_HOMEASSISTANT_APT_DEPS=
#	Add Python modules with version string at best, e.g.: firstModule==1.2.3 secondModule==4.5.6
SOFTWARE_HOMEASSISTANT_PIP_DEPS=
 
# K3s
# Command with flags to use for launching K3s in the service
# The value of this variable is copied directly into the INSTALL_K3S_EXEC environment variable before
# running the K3s installer.
# https://rancher.com/docs/k3s/latest/en/installation/install-options/#options-for-installation-with-script
#
# Optionally, you can add a configuration file named /boot/dietpi-k3s.yaml,
# which will copied into place during installation
# https://rancher.com/docs/k3s/latest/en/installation/install-options/#configuration-file
SOFTWARE_K3S_EXEC=
 
# DietPi-Dashboard
# Version to use
# - Stable = Use release version of DietPi-Dashboard.
# - Nightly = Use unstable version DietPi-Dashboard. Might have bugs, but will probably have more features.
SOFTWARE_DIETPI_DASHBOARD_VERSION=Stable
 
#------------------------------------------------------------------------------------------------------
##### Dev settings #####
#------------------------------------------------------------------------------------------------------
DEV_GITBRANCH=master
DEV_GITOWNER=MichaIng
 
#------------------------------------------------------------------------------------------------------
##### Settings, automatically added by dietpi-update #####
#------------------------------------------------------------------------------------------------------

dietpi-wifi.txt の修正

SD カードの dietpi-wifi.txt をエディタで開く。

dietpi-wifi.txt
# Entry 0
# - WiFi SSID: required, case sensitive
aWIFI_SSID[0]='TomoyanSSID'
# - WiFi key: If no key/open, leave this blank
aWIFI_KEY[0]='wifi password'
dietpi-wifi.txt
#---------------------------------------------------------------
# Entry 0
# - WiFi SSID: required, case sensitive
aWIFI_SSID[0]='TomoyanSSID'
# - WiFi key: If no key/open, leave this blank
aWIFI_KEY[0]='wifi password'
# - Key type: NONE (no key/open) | WPA-PSK | WEP | WPA-EAP (then use settings below)
aWIFI_KEYMGR[0]='WPA-PSK'
# - WPA-EAP options: Only fill if WPA-EAP is set above
aWIFI_PROTO[0]=''
aWIFI_PAIRWISE[0]=''
aWIFI_AUTH_ALG[0]=''
aWIFI_EAP[0]=''
aWIFI_IDENTITY[0]=''
aWIFI_PASSWORD[0]=''
aWIFI_PHASE1[0]=''
aWIFI_PHASE2[0]=''
# - Path to the certificate file, e.g.: /boot/mycert.cer
aWIFI_CERT[0]=''
#---------------------------------------------------------------
# Entry 1
# - WiFi SSID: required, case sensitive
aWIFI_SSID[1]=''
# - WiFi key: If no key/open, leave this blank
aWIFI_KEY[1]=''
# - Key type: NONE (no key/open) | WPA-PSK | WEP | WPA-EAP (then use settings below)
aWIFI_KEYMGR[1]='WPA-PSK'
# - WPA-EAP options: Only fill if WPA-EAP is set above
aWIFI_PROTO[1]=''
aWIFI_PAIRWISE[1]=''
aWIFI_AUTH_ALG[1]=''
aWIFI_EAP[1]=''
aWIFI_IDENTITY[1]=''
aWIFI_PASSWORD[1]=''
aWIFI_PHASE1[1]=''
aWIFI_PHASE2[1]=''
# - Path to the certificate file, e.g.: /boot/mycert.cer
aWIFI_CERT[1]=''
#---------------------------------------------------------------
# Entry 2
# - WiFi SSID: required, case sensitive
aWIFI_SSID[2]=''
# - WiFi key: If no key/open, leave this blank
aWIFI_KEY[2]=''
# - Key type: NONE (no key/open) | WPA-PSK | WEP | WPA-EAP (then use settings below)
aWIFI_KEYMGR[2]='WPA-PSK'
# - WPA-EAP options: Only fill if WPA-EAP is set above
aWIFI_PROTO[2]=''
aWIFI_PAIRWISE[2]=''
aWIFI_AUTH_ALG[2]=''
aWIFI_EAP[2]=''
aWIFI_IDENTITY[2]=''
aWIFI_PASSWORD[2]=''
aWIFI_PHASE1[2]=''
aWIFI_PHASE2[2]=''
# - Path to the certificate file, e.g.: /boot/mycert.cer
aWIFI_CERT[2]=''
#---------------------------------------------------------------
# Entry 3
# - WiFi SSID: required, case sensitive
aWIFI_SSID[3]=''
# - WiFi key: If no key/open, leave this blank
aWIFI_KEY[3]=''
# - Key type: NONE (no key/open) | WPA-PSK | WEP | WPA-EAP (then use settings below)
aWIFI_KEYMGR[3]='WPA-PSK'
# - WPA-EAP options: Only fill if WPA-EAP is set above
aWIFI_PROTO[3]=''
aWIFI_PAIRWISE[3]=''
aWIFI_AUTH_ALG[3]=''
aWIFI_EAP[3]=''
aWIFI_IDENTITY[3]=''
aWIFI_PASSWORD[3]=''
aWIFI_PHASE1[3]=''
aWIFI_PHASE2[3]=''
# - Path to the certificate file, e.g.: /boot/mycert.cer
aWIFI_CERT[3]=''
#---------------------------------------------------------------
# Entry 4
# - WiFi SSID: required, case sensitive
aWIFI_SSID[4]=''
# - WiFi key: If no key/open, leave this blank
aWIFI_KEY[4]=''
# - Key type: NONE (no key/open) | WPA-PSK | WEP | WPA-EAP (then use settings below)
aWIFI_KEYMGR[4]='WPA-PSK'
# - WPA-EAP options: Only fill if WPA-EAP is set above
aWIFI_PROTO[4]=''
aWIFI_PAIRWISE[4]=''
aWIFI_AUTH_ALG[4]=''
aWIFI_EAP[4]=''
aWIFI_IDENTITY[4]=''
aWIFI_PASSWORD[4]=''
aWIFI_PHASE1[4]=''
aWIFI_PHASE2[4]=''
# - Path to the certificate file, e.g.: /boot/mycert.cer
aWIFI_CERT[4]=''

SD カードをオーバークロックする

オーバークロックは任意🤤
(注意: 初期セットアップでSDカードをオーバークロックするとエマージェンシーに入ることがありました😅
セットアップ作業完了後にオーバークロックすることをお勧めします😊)


SD カードのオーバークロックの際には、必ずこちらの詳細をご覧ください。
Raspberry Pi で SD カードをオーバークロック🔥💥する方法🤤

config.txt の一番最後に以下の設定を追加する。

config.txt
dtparam=sd_overclock=125
force_turbo=1

SD カードを挿入して起動

 ─────────────────────────────────────────────────────
 DietPi v7.2.3 : 11:15 - 日 2021年08月08日
 ─────────────────────────────────────────────────────
 - LAN IP : 172.16.77.201 (wlan0)
[  OK  ] DietPi-Login | Checking network connectivity
[  OK  ] DietPi-Login | Checking DNS resolver
[  OK  ] DietPi-Run_NTPD | systemctl restart systemd-timesyncd
[ INFO ] DietPi-Run_NTPD | Waiting for completion of systemd-timesyncd (1/60)
[  OK  ] DietPi-Run_NTPD | systemd-timesyncd synced
[  OK  ] Network time sync | Completed

 DietPi-Update
─────────────────────────────────────────────────────
 Phase: Checking for available DietPi update

[ INFO ] DietPi-Update | Getting repository version: https://raw.githubusercontent.com/MichaIng/DietPi/master/.update/version
[  OK  ] DietPi-Update | Got valid repository version
[  OK  ] DietPi-Update | Update available:
[ INFO ] DietPi-Update | Current version : v7.2.3
[ INFO ] DietPi-Update | Latest version  : v7.4.2

 DietPi-Update
─────────────────────────────────────────────────────
 Phase Checking for update pre-requirements

[  OK  ] DietPi-Update | DietPi-Userdata validation: /mnt/dietpi_userdata
[  OK  ] DietPi-Update | Free space check: path=/ | available=25712 MiB | required=100 MiB
[ SUB1 ] DietPi-Services > stop
[ INFO ] DietPi-Services | skip : cron (due to mask)

 DietPi-Update
─────────────────────────────────────────────────────
 Phase: Applying pre-patches

[  OK  ] DietPi-Update | Downloading pre-patches
[  OK  ] DietPi-Update | Applying execute permission
[  OK  ] DietPi-Update | Successfully applied pre-patches

 DietPi-Update
─────────────────────────────────────────────────────
 Phase: Upgrading APT packages

[ INFO ] DietPi-Update | APT update, please wait...
Get:1 http://raspbian.raspberrypi.org/raspbian buster InRelease [15.0 kB]
Get:2 https://archive.raspberrypi.org/debian buster InRelease [32.6 kB]
Get:3 http://raspbian.raspberrypi.org/raspbian buster/non-free armhf Packages [104 kB]
Get:4 https://archive.raspberrypi.org/debian buster/main armhf Packages [378 kB]
Get:5 http://raspbian.raspberrypi.org/raspbian buster/contrib armhf Packages [58.7 kB]
Get:6 http://raspbian.raspberrypi.org/raspbian buster/main armhf Packages [13.0 MB]
Fetched 13.6 MB in 42s (323 kB/s)
Reading package lists...
[  OK  ] DietPi-Update | APT update
[ INFO ] DietPi-Update | APT upgrade, please wait...
debconf: delaying package configuration, since apt-utils is not installed
(Reading database ... 21153 files and directories currently installed.)
Preparing to unpack .../base-files_10.3+rpi1+deb10u10_armhf.deb ...
Unpacking base-files (10.3+rpi1+deb10u10) over (10.3+rpi1+deb10u9) ...
Setting up base-files (10.3+rpi1+deb10u10) ...
Installing new version of config file /etc/debian_version ...
(Reading database ... 21153 files and directories currently installed.)
Preparing to unpack .../libgcrypt20_1.8.4-5+deb10u1_armhf.deb ...
Unpacking libgcrypt20:armhf (1.8.4-5+deb10u1) over (1.8.4-5) ...
Setting up libgcrypt20:armhf (1.8.4-5+deb10u1) ...
(Reading database ... 21153 files and directories currently installed.)
Preparing to unpack .../libnettle6_3.4.1-1+deb10u1_armhf.deb ...
Unpacking libnettle6:armhf (3.4.1-1+deb10u1) over (3.4.1-1) ...
Setting up libnettle6:armhf (3.4.1-1+deb10u1) ...
(Reading database ... 21153 files and directories currently installed.)
Preparing to unpack .../libhogweed4_3.4.1-1+deb10u1_armhf.deb ...
Unpacking libhogweed4:armhf (3.4.1-1+deb10u1) over (3.4.1-1) ...
Setting up libhogweed4:armhf (3.4.1-1+deb10u1) ...
(Reading database ... 21153 files and directories currently installed.)
Preparing to unpack .../libgnutls30_3.6.7-4+deb10u7_armhf.deb ...
Unpacking libgnutls30:armhf (3.6.7-4+deb10u7) over (3.6.7-4+deb10u6) ...
Setting up libgnutls30:armhf (3.6.7-4+deb10u7) ...
(Reading database ... 21153 files and directories currently installed.)
Preparing to unpack .../liblz4-1_1.8.3-1+deb10u1_armhf.deb ...
Unpacking liblz4-1:armhf (1.8.3-1+deb10u1) over (1.8.3-1) ...
Setting up liblz4-1:armhf (1.8.3-1+deb10u1) ...
(Reading database ... 21153 files and directories currently installed.)
Preparing to unpack .../00-isc-dhcp-client_4.4.1-2+deb10u1_armhf.deb ...
Unpacking isc-dhcp-client (4.4.1-2+deb10u1) over (4.4.1-2) ...
Preparing to unpack .../01-firmware-atheros_1%3a20190114-2+rpt1_all.deb ...
Unpacking firmware-atheros (1:20190114-2+rpt1) over (1:20190114-1+rpt11) ...
Preparing to unpack .../02-firmware-brcm80211_1%3a20190114-2+rpt1_all.deb ...
Unpacking firmware-brcm80211 (1:20190114-2+rpt1) over (1:20190114-1+rpt11) ...
Preparing to unpack .../03-firmware-iwlwifi_1%3a20190114-2+rpt1_all.deb ...
Unpacking firmware-iwlwifi (1:20190114-2+rpt1) over (1:20190114-1+rpt11) ...
Preparing to unpack .../04-firmware-misc-nonfree_1%3a20190114-2+rpt1_all.deb ...
Unpacking firmware-misc-nonfree (1:20190114-2+rpt1) over (1:20190114-1+rpt11) ...
Preparing to unpack .../05-firmware-realtek_1%3a20190114-2+rpt1_all.deb ...
Unpacking firmware-realtek (1:20190114-2+rpt1) over (1:20190114-1+rpt11) ...
Preparing to unpack .../06-libgssapi-krb5-2_1.17-3+deb10u2_armhf.deb ...
Unpacking libgssapi-krb5-2:armhf (1.17-3+deb10u2) over (1.17-3+deb10u1) ...
Preparing to unpack .../07-libkrb5-3_1.17-3+deb10u2_armhf.deb ...
Unpacking libkrb5-3:armhf (1.17-3+deb10u2) over (1.17-3+deb10u1) ...
Preparing to unpack .../08-libkrb5support0_1.17-3+deb10u2_armhf.deb ...
Unpacking libkrb5support0:armhf (1.17-3+deb10u2) over (1.17-3+deb10u1) ...
Preparing to unpack .../09-libk5crypto3_1.17-3+deb10u2_armhf.deb ...
Unpacking libk5crypto3:armhf (1.17-3+deb10u2) over (1.17-3+deb10u1) ...
Preparing to unpack .../10-raspberrypi-kernel_1%3a1.20210805-1_armhf.deb ...
Adding 'diversion of /boot/kernel.img to /usr/share/rpikernelhack/kernel.img by rpikernelhack'
Adding 'diversion of /boot/kernel7.img to /usr/share/rpikernelhack/kernel7.img by rpikernelhack'
Adding 'diversion of /boot/kernel7l.img to /usr/share/rpikernelhack/kernel7l.img by rpikernelhack'
Adding 'diversion of /boot/kernel8.img to /usr/share/rpikernelhack/kernel8.img by rpikernelhack'
Adding 'diversion of /boot/bcm2708-rpi-b-plus.dtb to /usr/share/rpikernelhack/bcm2708-rpi-b-plus.dtb by rpikernelhack'
Adding 'diversion of /boot/bcm2708-rpi-b-rev1.dtb to /usr/share/rpikernelhack/bcm2708-rpi-b-rev1.dtb by rpikernelhack'
Adding 'diversion of /boot/bcm2708-rpi-b.dtb to /usr/share/rpikernelhack/bcm2708-rpi-b.dtb by rpikernelhack'
Adding 'diversion of /boot/bcm2708-rpi-cm.dtb to /usr/share/rpikernelhack/bcm2708-rpi-cm.dtb by rpikernelhack'
Adding 'diversion of /boot/bcm2708-rpi-zero-w.dtb to /usr/share/rpikernelhack/bcm2708-rpi-zero-w.dtb by rpikernelhack'
Adding 'diversion of /boot/bcm2708-rpi-zero.dtb to /usr/share/rpikernelhack/bcm2708-rpi-zero.dtb by rpikernelhack'
Adding 'diversion of /boot/bcm2709-rpi-2-b.dtb to /usr/share/rpikernelhack/bcm2709-rpi-2-b.dtb by rpikernelhack'
Adding 'diversion of /boot/bcm2710-rpi-2-b.dtb to /usr/share/rpikernelhack/bcm2710-rpi-2-b.dtb by rpikernelhack'
Adding 'diversion of /boot/bcm2710-rpi-3-b-plus.dtb to /usr/share/rpikernelhack/bcm2710-rpi-3-b-plus.dtb by rpikernelhack'
Adding 'diversion of /boot/bcm2710-rpi-3-b.dtb to /usr/share/rpikernelhack/bcm2710-rpi-3-b.dtb by rpikernelhack'
Adding 'diversion of /boot/bcm2710-rpi-cm3.dtb to /usr/share/rpikernelhack/bcm2710-rpi-cm3.dtb by rpikernelhack'
Adding 'diversion of /boot/bcm2711-rpi-4-b.dtb to /usr/share/rpikernelhack/bcm2711-rpi-4-b.dtb by rpikernelhack'
Adding 'diversion of /boot/bcm2711-rpi-400.dtb to /usr/share/rpikernelhack/bcm2711-rpi-400.dtb by rpikernelhack'
Adding 'diversion of /boot/bcm2711-rpi-cm4.dtb to /usr/share/rpikernelhack/bcm2711-rpi-cm4.dtb by rpikernelhack'
Adding 'diversion of /boot/COPYING.linux to /usr/share/rpikernelhack/COPYING.linux by rpikernelhack'
Adding 'diversion of /boot/overlays/README to /usr/share/rpikernelhack/overlays/README by rpikernelhack'
Adding 'diversion of /boot/overlays/act-led.dtbo to /usr/share/rpikernelhack/overlays/act-led.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/adafruit18.dtbo to /usr/share/rpikernelhack/overlays/adafruit18.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/adau1977-adc.dtbo to /usr/share/rpikernelhack/overlays/adau1977-adc.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/adau7002-simple.dtbo to /usr/share/rpikernelhack/overlays/adau7002-simple.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/ads1015.dtbo to /usr/share/rpikernelhack/overlays/ads1015.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/ads1115.dtbo to /usr/share/rpikernelhack/overlays/ads1115.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/ads7846.dtbo to /usr/share/rpikernelhack/overlays/ads7846.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/adv7282m.dtbo to /usr/share/rpikernelhack/overlays/adv7282m.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/adv728x-m.dtbo to /usr/share/rpikernelhack/overlays/adv728x-m.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/akkordion-iqdacplus.dtbo to /usr/share/rpikernelhack/overlays/akkordion-iqdacplus.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/allo-boss-dac-pcm512x-audio.dtbo to /usr/share/rpikernelhack/overlays/allo-boss-dac-pcm512x-audio.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/allo-boss2-dac-audio.dtbo to /usr/share/rpikernelhack/overlays/allo-boss2-dac-audio.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/allo-digione.dtbo to /usr/share/rpikernelhack/overlays/allo-digione.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/allo-katana-dac-audio.dtbo to /usr/share/rpikernelhack/overlays/allo-katana-dac-audio.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/allo-piano-dac-pcm512x-audio.dtbo to /usr/share/rpikernelhack/overlays/allo-piano-dac-pcm512x-audio.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/allo-piano-dac-plus-pcm512x-audio.dtbo to /usr/share/rpikernelhack/overlays/allo-piano-dac-plus-pcm512x-audio.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/anyspi.dtbo to /usr/share/rpikernelhack/overlays/anyspi.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/apds9960.dtbo to /usr/share/rpikernelhack/overlays/apds9960.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/applepi-dac.dtbo to /usr/share/rpikernelhack/overlays/applepi-dac.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/at86rf233.dtbo to /usr/share/rpikernelhack/overlays/at86rf233.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/audioinjector-addons.dtbo to /usr/share/rpikernelhack/overlays/audioinjector-addons.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/audioinjector-isolated-soundcard.dtbo to /usr/share/rpikernelhack/overlays/audioinjector-isolated-soundcard.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/audioinjector-ultra.dtbo to /usr/share/rpikernelhack/overlays/audioinjector-ultra.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/audioinjector-wm8731-audio.dtbo to /usr/share/rpikernelhack/overlays/audioinjector-wm8731-audio.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/audiosense-pi.dtbo to /usr/share/rpikernelhack/overlays/audiosense-pi.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/audremap.dtbo to /usr/share/rpikernelhack/overlays/audremap.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/balena-fin.dtbo to /usr/share/rpikernelhack/overlays/balena-fin.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/cap1106.dtbo to /usr/share/rpikernelhack/overlays/cap1106.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/chipdip-dac.dtbo to /usr/share/rpikernelhack/overlays/chipdip-dac.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/cma.dtbo to /usr/share/rpikernelhack/overlays/cma.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/dht11.dtbo to /usr/share/rpikernelhack/overlays/dht11.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/dionaudio-loco-v2.dtbo to /usr/share/rpikernelhack/overlays/dionaudio-loco-v2.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/dionaudio-loco.dtbo to /usr/share/rpikernelhack/overlays/dionaudio-loco.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/disable-bt.dtbo to /usr/share/rpikernelhack/overlays/disable-bt.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/disable-wifi.dtbo to /usr/share/rpikernelhack/overlays/disable-wifi.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/dpi18.dtbo to /usr/share/rpikernelhack/overlays/dpi18.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/dpi18cpadhi.dtbo to /usr/share/rpikernelhack/overlays/dpi18cpadhi.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/dpi24.dtbo to /usr/share/rpikernelhack/overlays/dpi24.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/draws.dtbo to /usr/share/rpikernelhack/overlays/draws.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/dwc-otg.dtbo to /usr/share/rpikernelhack/overlays/dwc-otg.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/dwc2.dtbo to /usr/share/rpikernelhack/overlays/dwc2.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/edt-ft5406.dtbo to /usr/share/rpikernelhack/overlays/edt-ft5406.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/enc28j60-spi2.dtbo to /usr/share/rpikernelhack/overlays/enc28j60-spi2.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/enc28j60.dtbo to /usr/share/rpikernelhack/overlays/enc28j60.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/exc3000.dtbo to /usr/share/rpikernelhack/overlays/exc3000.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/fe-pi-audio.dtbo to /usr/share/rpikernelhack/overlays/fe-pi-audio.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/fsm-demo.dtbo to /usr/share/rpikernelhack/overlays/fsm-demo.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/ghost-amp.dtbo to /usr/share/rpikernelhack/overlays/ghost-amp.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/goodix.dtbo to /usr/share/rpikernelhack/overlays/goodix.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/googlevoicehat-soundcard.dtbo to /usr/share/rpikernelhack/overlays/googlevoicehat-soundcard.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/gpio-fan.dtbo to /usr/share/rpikernelhack/overlays/gpio-fan.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/gpio-ir-tx.dtbo to /usr/share/rpikernelhack/overlays/gpio-ir-tx.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/gpio-ir.dtbo to /usr/share/rpikernelhack/overlays/gpio-ir.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/gpio-key.dtbo to /usr/share/rpikernelhack/overlays/gpio-key.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/gpio-led.dtbo to /usr/share/rpikernelhack/overlays/gpio-led.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/gpio-no-bank0-irq.dtbo to /usr/share/rpikernelhack/overlays/gpio-no-bank0-irq.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/gpio-no-irq.dtbo to /usr/share/rpikernelhack/overlays/gpio-no-irq.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/gpio-poweroff.dtbo to /usr/share/rpikernelhack/overlays/gpio-poweroff.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/gpio-shutdown.dtbo to /usr/share/rpikernelhack/overlays/gpio-shutdown.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/hd44780-lcd.dtbo to /usr/share/rpikernelhack/overlays/hd44780-lcd.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/hdmi-backlight-hwhack-gpio.dtbo to /usr/share/rpikernelhack/overlays/hdmi-backlight-hwhack-gpio.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/hifiberry-amp.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-amp.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/hifiberry-amp100.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-amp100.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/hifiberry-dac.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dac.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/hifiberry-dacplus.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplus.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/hifiberry-dacplusadc.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplusadc.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/hifiberry-dacplusadcpro.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplusadcpro.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/hifiberry-dacplusdsp.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplusdsp.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/hifiberry-dacplushd.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplushd.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/hifiberry-digi-pro.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-digi-pro.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/hifiberry-digi.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-digi.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/highperi.dtbo to /usr/share/rpikernelhack/overlays/highperi.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/hy28a.dtbo to /usr/share/rpikernelhack/overlays/hy28a.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/hy28b-2017.dtbo to /usr/share/rpikernelhack/overlays/hy28b-2017.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/hy28b.dtbo to /usr/share/rpikernelhack/overlays/hy28b.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/i-sabre-q2m.dtbo to /usr/share/rpikernelhack/overlays/i-sabre-q2m.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/i2c-bcm2708.dtbo to /usr/share/rpikernelhack/overlays/i2c-bcm2708.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/i2c-gpio.dtbo to /usr/share/rpikernelhack/overlays/i2c-gpio.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/i2c-mux.dtbo to /usr/share/rpikernelhack/overlays/i2c-mux.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/i2c-pwm-pca9685a.dtbo to /usr/share/rpikernelhack/overlays/i2c-pwm-pca9685a.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/i2c-rtc-gpio.dtbo to /usr/share/rpikernelhack/overlays/i2c-rtc-gpio.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/i2c-rtc.dtbo to /usr/share/rpikernelhack/overlays/i2c-rtc.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/i2c-sensor.dtbo to /usr/share/rpikernelhack/overlays/i2c-sensor.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/i2c0.dtbo to /usr/share/rpikernelhack/overlays/i2c0.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/i2c1.dtbo to /usr/share/rpikernelhack/overlays/i2c1.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/i2c3.dtbo to /usr/share/rpikernelhack/overlays/i2c3.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/i2c4.dtbo to /usr/share/rpikernelhack/overlays/i2c4.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/i2c5.dtbo to /usr/share/rpikernelhack/overlays/i2c5.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/i2c6.dtbo to /usr/share/rpikernelhack/overlays/i2c6.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/i2s-gpio28-31.dtbo to /usr/share/rpikernelhack/overlays/i2s-gpio28-31.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/ilitek251x.dtbo to /usr/share/rpikernelhack/overlays/ilitek251x.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/imx219.dtbo to /usr/share/rpikernelhack/overlays/imx219.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/imx290.dtbo to /usr/share/rpikernelhack/overlays/imx290.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/imx378.dtbo to /usr/share/rpikernelhack/overlays/imx378.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/imx477.dtbo to /usr/share/rpikernelhack/overlays/imx477.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/iqaudio-codec.dtbo to /usr/share/rpikernelhack/overlays/iqaudio-codec.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/iqaudio-dac.dtbo to /usr/share/rpikernelhack/overlays/iqaudio-dac.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/iqaudio-dacplus.dtbo to /usr/share/rpikernelhack/overlays/iqaudio-dacplus.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/iqaudio-digi-wm8804-audio.dtbo to /usr/share/rpikernelhack/overlays/iqaudio-digi-wm8804-audio.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/irs1125.dtbo to /usr/share/rpikernelhack/overlays/irs1125.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/jedec-spi-nor.dtbo to /usr/share/rpikernelhack/overlays/jedec-spi-nor.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/justboom-both.dtbo to /usr/share/rpikernelhack/overlays/justboom-both.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/justboom-dac.dtbo to /usr/share/rpikernelhack/overlays/justboom-dac.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/justboom-digi.dtbo to /usr/share/rpikernelhack/overlays/justboom-digi.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/ltc294x.dtbo to /usr/share/rpikernelhack/overlays/ltc294x.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/max98357a.dtbo to /usr/share/rpikernelhack/overlays/max98357a.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/maxtherm.dtbo to /usr/share/rpikernelhack/overlays/maxtherm.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/mbed-dac.dtbo to /usr/share/rpikernelhack/overlays/mbed-dac.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/mcp23017.dtbo to /usr/share/rpikernelhack/overlays/mcp23017.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/mcp23s17.dtbo to /usr/share/rpikernelhack/overlays/mcp23s17.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/mcp2515-can0.dtbo to /usr/share/rpikernelhack/overlays/mcp2515-can0.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/mcp2515-can1.dtbo to /usr/share/rpikernelhack/overlays/mcp2515-can1.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/mcp251xfd.dtbo to /usr/share/rpikernelhack/overlays/mcp251xfd.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/mcp3008.dtbo to /usr/share/rpikernelhack/overlays/mcp3008.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/mcp3202.dtbo to /usr/share/rpikernelhack/overlays/mcp3202.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/mcp342x.dtbo to /usr/share/rpikernelhack/overlays/mcp342x.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/media-center.dtbo to /usr/share/rpikernelhack/overlays/media-center.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/merus-amp.dtbo to /usr/share/rpikernelhack/overlays/merus-amp.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/midi-uart0.dtbo to /usr/share/rpikernelhack/overlays/midi-uart0.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/midi-uart1.dtbo to /usr/share/rpikernelhack/overlays/midi-uart1.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/minipitft13.dtbo to /usr/share/rpikernelhack/overlays/minipitft13.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/miniuart-bt.dtbo to /usr/share/rpikernelhack/overlays/miniuart-bt.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/mmc.dtbo to /usr/share/rpikernelhack/overlays/mmc.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/mpu6050.dtbo to /usr/share/rpikernelhack/overlays/mpu6050.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/mz61581.dtbo to /usr/share/rpikernelhack/overlays/mz61581.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/ov5647.dtbo to /usr/share/rpikernelhack/overlays/ov5647.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/ov7251.dtbo to /usr/share/rpikernelhack/overlays/ov7251.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/ov9281.dtbo to /usr/share/rpikernelhack/overlays/ov9281.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/overlay_map.dtb to /usr/share/rpikernelhack/overlays/overlay_map.dtb by rpikernelhack'
Adding 'diversion of /boot/overlays/papirus.dtbo to /usr/share/rpikernelhack/overlays/papirus.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/pca953x.dtbo to /usr/share/rpikernelhack/overlays/pca953x.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/pcie-32bit-dma.dtbo to /usr/share/rpikernelhack/overlays/pcie-32bit-dma.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/pibell.dtbo to /usr/share/rpikernelhack/overlays/pibell.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/pifacedigital.dtbo to /usr/share/rpikernelhack/overlays/pifacedigital.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/pifi-40.dtbo to /usr/share/rpikernelhack/overlays/pifi-40.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/pifi-dac-hd.dtbo to /usr/share/rpikernelhack/overlays/pifi-dac-hd.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/pifi-dac-zero.dtbo to /usr/share/rpikernelhack/overlays/pifi-dac-zero.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/pifi-mini-210.dtbo to /usr/share/rpikernelhack/overlays/pifi-mini-210.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/piglow.dtbo to /usr/share/rpikernelhack/overlays/piglow.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/piscreen.dtbo to /usr/share/rpikernelhack/overlays/piscreen.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/piscreen2r.dtbo to /usr/share/rpikernelhack/overlays/piscreen2r.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/pisound.dtbo to /usr/share/rpikernelhack/overlays/pisound.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/pitft22.dtbo to /usr/share/rpikernelhack/overlays/pitft22.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/pitft28-capacitive.dtbo to /usr/share/rpikernelhack/overlays/pitft28-capacitive.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/pitft28-resistive.dtbo to /usr/share/rpikernelhack/overlays/pitft28-resistive.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/pitft35-resistive.dtbo to /usr/share/rpikernelhack/overlays/pitft35-resistive.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/pps-gpio.dtbo to /usr/share/rpikernelhack/overlays/pps-gpio.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/pwm-2chan.dtbo to /usr/share/rpikernelhack/overlays/pwm-2chan.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/pwm-ir-tx.dtbo to /usr/share/rpikernelhack/overlays/pwm-ir-tx.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/pwm.dtbo to /usr/share/rpikernelhack/overlays/pwm.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/qca7000.dtbo to /usr/share/rpikernelhack/overlays/qca7000.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/rotary-encoder.dtbo to /usr/share/rpikernelhack/overlays/rotary-encoder.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/rpi-backlight.dtbo to /usr/share/rpikernelhack/overlays/rpi-backlight.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/rpi-cirrus-wm5102.dtbo to /usr/share/rpikernelhack/overlays/rpi-cirrus-wm5102.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/rpi-dac.dtbo to /usr/share/rpikernelhack/overlays/rpi-dac.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/rpi-display.dtbo to /usr/share/rpikernelhack/overlays/rpi-display.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/rpi-ft5406.dtbo to /usr/share/rpikernelhack/overlays/rpi-ft5406.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/rpi-poe-plus.dtbo to /usr/share/rpikernelhack/overlays/rpi-poe-plus.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/rpi-poe.dtbo to /usr/share/rpikernelhack/overlays/rpi-poe.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/rpi-proto.dtbo to /usr/share/rpikernelhack/overlays/rpi-proto.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/rpi-sense.dtbo to /usr/share/rpikernelhack/overlays/rpi-sense.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/rpi-tv.dtbo to /usr/share/rpikernelhack/overlays/rpi-tv.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/rpivid-v4l2.dtbo to /usr/share/rpikernelhack/overlays/rpivid-v4l2.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/rra-digidac1-wm8741-audio.dtbo to /usr/share/rpikernelhack/overlays/rra-digidac1-wm8741-audio.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/sainsmart18.dtbo to /usr/share/rpikernelhack/overlays/sainsmart18.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/sc16is750-i2c.dtbo to /usr/share/rpikernelhack/overlays/sc16is750-i2c.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/sc16is752-i2c.dtbo to /usr/share/rpikernelhack/overlays/sc16is752-i2c.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/sc16is752-spi0.dtbo to /usr/share/rpikernelhack/overlays/sc16is752-spi0.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/sc16is752-spi1.dtbo to /usr/share/rpikernelhack/overlays/sc16is752-spi1.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/sdhost.dtbo to /usr/share/rpikernelhack/overlays/sdhost.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/sdio.dtbo to /usr/share/rpikernelhack/overlays/sdio.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/seeed-can-fd-hat-v1.dtbo to /usr/share/rpikernelhack/overlays/seeed-can-fd-hat-v1.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/seeed-can-fd-hat-v2.dtbo to /usr/share/rpikernelhack/overlays/seeed-can-fd-hat-v2.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/sh1106-spi.dtbo to /usr/share/rpikernelhack/overlays/sh1106-spi.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/si446x-spi0.dtbo to /usr/share/rpikernelhack/overlays/si446x-spi0.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/smi-dev.dtbo to /usr/share/rpikernelhack/overlays/smi-dev.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/smi-nand.dtbo to /usr/share/rpikernelhack/overlays/smi-nand.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/smi.dtbo to /usr/share/rpikernelhack/overlays/smi.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi-gpio35-39.dtbo to /usr/share/rpikernelhack/overlays/spi-gpio35-39.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi-gpio40-45.dtbo to /usr/share/rpikernelhack/overlays/spi-gpio40-45.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi-rtc.dtbo to /usr/share/rpikernelhack/overlays/spi-rtc.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi0-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi0-1cs.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi0-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi0-2cs.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi1-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi1-1cs.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi1-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi1-2cs.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi1-3cs.dtbo to /usr/share/rpikernelhack/overlays/spi1-3cs.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi2-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi2-1cs.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi2-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi2-2cs.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi2-3cs.dtbo to /usr/share/rpikernelhack/overlays/spi2-3cs.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi3-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi3-1cs.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi3-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi3-2cs.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi4-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi4-1cs.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi4-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi4-2cs.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi5-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi5-1cs.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi5-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi5-2cs.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi6-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi6-1cs.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/spi6-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi6-2cs.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/ssd1306-spi.dtbo to /usr/share/rpikernelhack/overlays/ssd1306-spi.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/ssd1306.dtbo to /usr/share/rpikernelhack/overlays/ssd1306.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/ssd1331-spi.dtbo to /usr/share/rpikernelhack/overlays/ssd1331-spi.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/ssd1351-spi.dtbo to /usr/share/rpikernelhack/overlays/ssd1351-spi.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/superaudioboard.dtbo to /usr/share/rpikernelhack/overlays/superaudioboard.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/sx150x.dtbo to /usr/share/rpikernelhack/overlays/sx150x.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/tc358743-audio.dtbo to /usr/share/rpikernelhack/overlays/tc358743-audio.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/tc358743.dtbo to /usr/share/rpikernelhack/overlays/tc358743.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/tinylcd35.dtbo to /usr/share/rpikernelhack/overlays/tinylcd35.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/tpm-slb9670.dtbo to /usr/share/rpikernelhack/overlays/tpm-slb9670.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/uart0.dtbo to /usr/share/rpikernelhack/overlays/uart0.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/uart1.dtbo to /usr/share/rpikernelhack/overlays/uart1.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/uart2.dtbo to /usr/share/rpikernelhack/overlays/uart2.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/uart3.dtbo to /usr/share/rpikernelhack/overlays/uart3.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/uart4.dtbo to /usr/share/rpikernelhack/overlays/uart4.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/uart5.dtbo to /usr/share/rpikernelhack/overlays/uart5.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/udrc.dtbo to /usr/share/rpikernelhack/overlays/udrc.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/ugreen-dabboard.dtbo to /usr/share/rpikernelhack/overlays/ugreen-dabboard.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/upstream-pi4.dtbo to /usr/share/rpikernelhack/overlays/upstream-pi4.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/upstream.dtbo to /usr/share/rpikernelhack/overlays/upstream.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/vc4-fkms-v3d-pi4.dtbo to /usr/share/rpikernelhack/overlays/vc4-fkms-v3d-pi4.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/vc4-fkms-v3d.dtbo to /usr/share/rpikernelhack/overlays/vc4-fkms-v3d.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/vc4-kms-dpi-at056tn53v1.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-dpi-at056tn53v1.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/vc4-kms-dsi-7inch.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-dsi-7inch.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/vc4-kms-dsi-lt070me05000-v2.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-dsi-lt070me05000-v2.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/vc4-kms-dsi-lt070me05000.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-dsi-lt070me05000.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/vc4-kms-kippah-7inch.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-kippah-7inch.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/vc4-kms-v3d-pi4.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-v3d-pi4.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/vc4-kms-v3d.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-v3d.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/vc4-kms-vga666.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-vga666.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/vga666.dtbo to /usr/share/rpikernelhack/overlays/vga666.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/w1-gpio-pullup.dtbo to /usr/share/rpikernelhack/overlays/w1-gpio-pullup.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/w1-gpio.dtbo to /usr/share/rpikernelhack/overlays/w1-gpio.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/w5500.dtbo to /usr/share/rpikernelhack/overlays/w5500.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/wittypi.dtbo to /usr/share/rpikernelhack/overlays/wittypi.dtbo by rpikernelhack'
Adding 'diversion of /boot/overlays/wm8960-soundcard.dtbo to /usr/share/rpikernelhack/overlays/wm8960-soundcard.dtbo by rpikernelhack'
Unpacking raspberrypi-kernel (1:1.20210805-1) over (1:1.20210527-1) ...
Preparing to unpack .../11-libraspberrypi-bin_1%3a1.20210805-1_armhf.deb ...
Unpacking libraspberrypi-bin (1:1.20210805-1) over (1:1.20210527-1) ...
Preparing to unpack .../12-libraspberrypi0_1%3a1.20210805-1_armhf.deb ...
Unpacking libraspberrypi0 (1:1.20210805-1) over (1:1.20210527-1) ...
Preparing to unpack .../13-raspberrypi-bootloader_1%3a1.20210805-1_armhf.deb ...
Adding 'diversion of /boot/start.elf to /usr/share/rpikernelhack/start.elf by rpikernelhack'
Adding 'diversion of /boot/start_cd.elf to /usr/share/rpikernelhack/start_cd.elf by rpikernelhack'
Adding 'diversion of /boot/start_db.elf to /usr/share/rpikernelhack/start_db.elf by rpikernelhack'
Adding 'diversion of /boot/start_x.elf to /usr/share/rpikernelhack/start_x.elf by rpikernelhack'
Adding 'diversion of /boot/fixup.dat to /usr/share/rpikernelhack/fixup.dat by rpikernelhack'
Adding 'diversion of /boot/fixup_cd.dat to /usr/share/rpikernelhack/fixup_cd.dat by rpikernelhack'
Adding 'diversion of /boot/fixup_db.dat to /usr/share/rpikernelhack/fixup_db.dat by rpikernelhack'
Adding 'diversion of /boot/fixup_x.dat to /usr/share/rpikernelhack/fixup_x.dat by rpikernelhack'
Adding 'diversion of /boot/bootcode.bin to /usr/share/rpikernelhack/bootcode.bin by rpikernelhack'
Adding 'diversion of /boot/start4.elf to /usr/share/rpikernelhack/start4.elf by rpikernelhack'
Adding 'diversion of /boot/start4cd.elf to /usr/share/rpikernelhack/start4cd.elf by rpikernelhack'
Adding 'diversion of /boot/start4db.elf to /usr/share/rpikernelhack/start4db.elf by rpikernelhack'
Adding 'diversion of /boot/start4x.elf to /usr/share/rpikernelhack/start4x.elf by rpikernelhack'
Adding 'diversion of /boot/fixup4.dat to /usr/share/rpikernelhack/fixup4.dat by rpikernelhack'
Adding 'diversion of /boot/fixup4cd.dat to /usr/share/rpikernelhack/fixup4cd.dat by rpikernelhack'
Adding 'diversion of /boot/fixup4db.dat to /usr/share/rpikernelhack/fixup4db.dat by rpikernelhack'
Adding 'diversion of /boot/fixup4x.dat to /usr/share/rpikernelhack/fixup4x.dat by rpikernelhack'
Adding 'diversion of /boot/LICENCE.broadcom to /usr/share/rpikernelhack/LICENCE.broadcom by rpikernelhack'
Unpacking raspberrypi-bootloader (1:1.20210805-1) over (1:1.20210527-1) ...
Preparing to unpack .../14-raspberrypi-sys-mods_20210706_armhf.deb ...
Unpacking raspberrypi-sys-mods (20210706) over (20210310) ...
Setting up firmware-iwlwifi (1:20190114-2+rpt1) ...
Setting up firmware-atheros (1:20190114-2+rpt1) ...
Setting up firmware-misc-nonfree (1:20190114-2+rpt1) ...
Setting up isc-dhcp-client (4.4.1-2+deb10u1) ...
Setting up raspberrypi-sys-mods (20210706) ...
Failed to try-restart sshswitch.service: Unit sshswitch.service is masked.
Failed to try-restart sshswitch.service: Unit sshswitch.service is masked.
Failed to try-restart sshswitch.service: Unit sshswitch.service is masked.
Failed to try-restart sshswitch.service: Unit sshswitch.service is masked.
Setting up raspberrypi-kernel (1:1.20210805-1) ...
Removing 'diversion of /boot/kernel.img to /usr/share/rpikernelhack/kernel.img by rpikernelhack'
Removing 'diversion of /boot/kernel7.img to /usr/share/rpikernelhack/kernel7.img by rpikernelhack'
Removing 'diversion of /boot/kernel7l.img to /usr/share/rpikernelhack/kernel7l.img by rpikernelhack'
Removing 'diversion of /boot/kernel8.img to /usr/share/rpikernelhack/kernel8.img by rpikernelhack'
Removing 'diversion of /boot/bcm2708-rpi-b-plus.dtb to /usr/share/rpikernelhack/bcm2708-rpi-b-plus.dtb by rpikernelhack'
Removing 'diversion of /boot/bcm2708-rpi-b-rev1.dtb to /usr/share/rpikernelhack/bcm2708-rpi-b-rev1.dtb by rpikernelhack'
Removing 'diversion of /boot/bcm2708-rpi-b.dtb to /usr/share/rpikernelhack/bcm2708-rpi-b.dtb by rpikernelhack'
Removing 'diversion of /boot/bcm2708-rpi-cm.dtb to /usr/share/rpikernelhack/bcm2708-rpi-cm.dtb by rpikernelhack'
Removing 'diversion of /boot/bcm2708-rpi-zero-w.dtb to /usr/share/rpikernelhack/bcm2708-rpi-zero-w.dtb by rpikernelhack'
Removing 'diversion of /boot/bcm2708-rpi-zero.dtb to /usr/share/rpikernelhack/bcm2708-rpi-zero.dtb by rpikernelhack'
Removing 'diversion of /boot/bcm2709-rpi-2-b.dtb to /usr/share/rpikernelhack/bcm2709-rpi-2-b.dtb by rpikernelhack'
Removing 'diversion of /boot/bcm2710-rpi-2-b.dtb to /usr/share/rpikernelhack/bcm2710-rpi-2-b.dtb by rpikernelhack'
Removing 'diversion of /boot/bcm2710-rpi-3-b-plus.dtb to /usr/share/rpikernelhack/bcm2710-rpi-3-b-plus.dtb by rpikernelhack'
Removing 'diversion of /boot/bcm2710-rpi-3-b.dtb to /usr/share/rpikernelhack/bcm2710-rpi-3-b.dtb by rpikernelhack'
Removing 'diversion of /boot/bcm2710-rpi-cm3.dtb to /usr/share/rpikernelhack/bcm2710-rpi-cm3.dtb by rpikernelhack'
Removing 'diversion of /boot/bcm2711-rpi-4-b.dtb to /usr/share/rpikernelhack/bcm2711-rpi-4-b.dtb by rpikernelhack'
Removing 'diversion of /boot/bcm2711-rpi-400.dtb to /usr/share/rpikernelhack/bcm2711-rpi-400.dtb by rpikernelhack'
Removing 'diversion of /boot/bcm2711-rpi-cm4.dtb to /usr/share/rpikernelhack/bcm2711-rpi-cm4.dtb by rpikernelhack'
Removing 'diversion of /boot/COPYING.linux to /usr/share/rpikernelhack/COPYING.linux by rpikernelhack'
Removing 'diversion of /boot/overlays/README to /usr/share/rpikernelhack/overlays/README by rpikernelhack'
Removing 'diversion of /boot/overlays/act-led.dtbo to /usr/share/rpikernelhack/overlays/act-led.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/adafruit18.dtbo to /usr/share/rpikernelhack/overlays/adafruit18.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/adau1977-adc.dtbo to /usr/share/rpikernelhack/overlays/adau1977-adc.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/adau7002-simple.dtbo to /usr/share/rpikernelhack/overlays/adau7002-simple.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/ads1015.dtbo to /usr/share/rpikernelhack/overlays/ads1015.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/ads1115.dtbo to /usr/share/rpikernelhack/overlays/ads1115.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/ads7846.dtbo to /usr/share/rpikernelhack/overlays/ads7846.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/adv7282m.dtbo to /usr/share/rpikernelhack/overlays/adv7282m.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/adv728x-m.dtbo to /usr/share/rpikernelhack/overlays/adv728x-m.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/akkordion-iqdacplus.dtbo to /usr/share/rpikernelhack/overlays/akkordion-iqdacplus.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/allo-boss-dac-pcm512x-audio.dtbo to /usr/share/rpikernelhack/overlays/allo-boss-dac-pcm512x-audio.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/allo-boss2-dac-audio.dtbo to /usr/share/rpikernelhack/overlays/allo-boss2-dac-audio.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/allo-digione.dtbo to /usr/share/rpikernelhack/overlays/allo-digione.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/allo-katana-dac-audio.dtbo to /usr/share/rpikernelhack/overlays/allo-katana-dac-audio.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/allo-piano-dac-pcm512x-audio.dtbo to /usr/share/rpikernelhack/overlays/allo-piano-dac-pcm512x-audio.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/allo-piano-dac-plus-pcm512x-audio.dtbo to /usr/share/rpikernelhack/overlays/allo-piano-dac-plus-pcm512x-audio.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/anyspi.dtbo to /usr/share/rpikernelhack/overlays/anyspi.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/apds9960.dtbo to /usr/share/rpikernelhack/overlays/apds9960.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/applepi-dac.dtbo to /usr/share/rpikernelhack/overlays/applepi-dac.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/at86rf233.dtbo to /usr/share/rpikernelhack/overlays/at86rf233.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/audioinjector-addons.dtbo to /usr/share/rpikernelhack/overlays/audioinjector-addons.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/audioinjector-isolated-soundcard.dtbo to /usr/share/rpikernelhack/overlays/audioinjector-isolated-soundcard.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/audioinjector-ultra.dtbo to /usr/share/rpikernelhack/overlays/audioinjector-ultra.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/audioinjector-wm8731-audio.dtbo to /usr/share/rpikernelhack/overlays/audioinjector-wm8731-audio.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/audiosense-pi.dtbo to /usr/share/rpikernelhack/overlays/audiosense-pi.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/audremap.dtbo to /usr/share/rpikernelhack/overlays/audremap.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/balena-fin.dtbo to /usr/share/rpikernelhack/overlays/balena-fin.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/cap1106.dtbo to /usr/share/rpikernelhack/overlays/cap1106.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/chipdip-dac.dtbo to /usr/share/rpikernelhack/overlays/chipdip-dac.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/cma.dtbo to /usr/share/rpikernelhack/overlays/cma.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/dht11.dtbo to /usr/share/rpikernelhack/overlays/dht11.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/dionaudio-loco-v2.dtbo to /usr/share/rpikernelhack/overlays/dionaudio-loco-v2.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/dionaudio-loco.dtbo to /usr/share/rpikernelhack/overlays/dionaudio-loco.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/disable-bt.dtbo to /usr/share/rpikernelhack/overlays/disable-bt.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/disable-wifi.dtbo to /usr/share/rpikernelhack/overlays/disable-wifi.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/dpi18.dtbo to /usr/share/rpikernelhack/overlays/dpi18.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/dpi18cpadhi.dtbo to /usr/share/rpikernelhack/overlays/dpi18cpadhi.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/dpi24.dtbo to /usr/share/rpikernelhack/overlays/dpi24.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/draws.dtbo to /usr/share/rpikernelhack/overlays/draws.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/dwc-otg.dtbo to /usr/share/rpikernelhack/overlays/dwc-otg.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/dwc2.dtbo to /usr/share/rpikernelhack/overlays/dwc2.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/edt-ft5406.dtbo to /usr/share/rpikernelhack/overlays/edt-ft5406.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/enc28j60-spi2.dtbo to /usr/share/rpikernelhack/overlays/enc28j60-spi2.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/enc28j60.dtbo to /usr/share/rpikernelhack/overlays/enc28j60.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/exc3000.dtbo to /usr/share/rpikernelhack/overlays/exc3000.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/fe-pi-audio.dtbo to /usr/share/rpikernelhack/overlays/fe-pi-audio.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/fsm-demo.dtbo to /usr/share/rpikernelhack/overlays/fsm-demo.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/ghost-amp.dtbo to /usr/share/rpikernelhack/overlays/ghost-amp.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/goodix.dtbo to /usr/share/rpikernelhack/overlays/goodix.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/googlevoicehat-soundcard.dtbo to /usr/share/rpikernelhack/overlays/googlevoicehat-soundcard.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/gpio-fan.dtbo to /usr/share/rpikernelhack/overlays/gpio-fan.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/gpio-ir-tx.dtbo to /usr/share/rpikernelhack/overlays/gpio-ir-tx.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/gpio-ir.dtbo to /usr/share/rpikernelhack/overlays/gpio-ir.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/gpio-key.dtbo to /usr/share/rpikernelhack/overlays/gpio-key.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/gpio-led.dtbo to /usr/share/rpikernelhack/overlays/gpio-led.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/gpio-no-bank0-irq.dtbo to /usr/share/rpikernelhack/overlays/gpio-no-bank0-irq.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/gpio-no-irq.dtbo to /usr/share/rpikernelhack/overlays/gpio-no-irq.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/gpio-poweroff.dtbo to /usr/share/rpikernelhack/overlays/gpio-poweroff.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/gpio-shutdown.dtbo to /usr/share/rpikernelhack/overlays/gpio-shutdown.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/hd44780-lcd.dtbo to /usr/share/rpikernelhack/overlays/hd44780-lcd.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/hdmi-backlight-hwhack-gpio.dtbo to /usr/share/rpikernelhack/overlays/hdmi-backlight-hwhack-gpio.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/hifiberry-amp.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-amp.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/hifiberry-amp100.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-amp100.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/hifiberry-dac.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dac.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/hifiberry-dacplus.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplus.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/hifiberry-dacplusadc.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplusadc.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/hifiberry-dacplusadcpro.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplusadcpro.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/hifiberry-dacplusdsp.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplusdsp.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/hifiberry-dacplushd.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplushd.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/hifiberry-digi-pro.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-digi-pro.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/hifiberry-digi.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-digi.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/highperi.dtbo to /usr/share/rpikernelhack/overlays/highperi.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/hy28a.dtbo to /usr/share/rpikernelhack/overlays/hy28a.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/hy28b-2017.dtbo to /usr/share/rpikernelhack/overlays/hy28b-2017.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/hy28b.dtbo to /usr/share/rpikernelhack/overlays/hy28b.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/i-sabre-q2m.dtbo to /usr/share/rpikernelhack/overlays/i-sabre-q2m.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/i2c-bcm2708.dtbo to /usr/share/rpikernelhack/overlays/i2c-bcm2708.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/i2c-gpio.dtbo to /usr/share/rpikernelhack/overlays/i2c-gpio.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/i2c-mux.dtbo to /usr/share/rpikernelhack/overlays/i2c-mux.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/i2c-pwm-pca9685a.dtbo to /usr/share/rpikernelhack/overlays/i2c-pwm-pca9685a.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/i2c-rtc-gpio.dtbo to /usr/share/rpikernelhack/overlays/i2c-rtc-gpio.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/i2c-rtc.dtbo to /usr/share/rpikernelhack/overlays/i2c-rtc.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/i2c-sensor.dtbo to /usr/share/rpikernelhack/overlays/i2c-sensor.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/i2c0.dtbo to /usr/share/rpikernelhack/overlays/i2c0.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/i2c1.dtbo to /usr/share/rpikernelhack/overlays/i2c1.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/i2c3.dtbo to /usr/share/rpikernelhack/overlays/i2c3.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/i2c4.dtbo to /usr/share/rpikernelhack/overlays/i2c4.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/i2c5.dtbo to /usr/share/rpikernelhack/overlays/i2c5.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/i2c6.dtbo to /usr/share/rpikernelhack/overlays/i2c6.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/i2s-gpio28-31.dtbo to /usr/share/rpikernelhack/overlays/i2s-gpio28-31.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/ilitek251x.dtbo to /usr/share/rpikernelhack/overlays/ilitek251x.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/imx219.dtbo to /usr/share/rpikernelhack/overlays/imx219.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/imx290.dtbo to /usr/share/rpikernelhack/overlays/imx290.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/imx378.dtbo to /usr/share/rpikernelhack/overlays/imx378.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/imx477.dtbo to /usr/share/rpikernelhack/overlays/imx477.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/iqaudio-codec.dtbo to /usr/share/rpikernelhack/overlays/iqaudio-codec.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/iqaudio-dac.dtbo to /usr/share/rpikernelhack/overlays/iqaudio-dac.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/iqaudio-dacplus.dtbo to /usr/share/rpikernelhack/overlays/iqaudio-dacplus.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/iqaudio-digi-wm8804-audio.dtbo to /usr/share/rpikernelhack/overlays/iqaudio-digi-wm8804-audio.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/irs1125.dtbo to /usr/share/rpikernelhack/overlays/irs1125.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/jedec-spi-nor.dtbo to /usr/share/rpikernelhack/overlays/jedec-spi-nor.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/justboom-both.dtbo to /usr/share/rpikernelhack/overlays/justboom-both.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/justboom-dac.dtbo to /usr/share/rpikernelhack/overlays/justboom-dac.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/justboom-digi.dtbo to /usr/share/rpikernelhack/overlays/justboom-digi.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/ltc294x.dtbo to /usr/share/rpikernelhack/overlays/ltc294x.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/max98357a.dtbo to /usr/share/rpikernelhack/overlays/max98357a.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/maxtherm.dtbo to /usr/share/rpikernelhack/overlays/maxtherm.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/mbed-dac.dtbo to /usr/share/rpikernelhack/overlays/mbed-dac.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/mcp23017.dtbo to /usr/share/rpikernelhack/overlays/mcp23017.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/mcp23s17.dtbo to /usr/share/rpikernelhack/overlays/mcp23s17.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/mcp2515-can0.dtbo to /usr/share/rpikernelhack/overlays/mcp2515-can0.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/mcp2515-can1.dtbo to /usr/share/rpikernelhack/overlays/mcp2515-can1.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/mcp251xfd.dtbo to /usr/share/rpikernelhack/overlays/mcp251xfd.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/mcp3008.dtbo to /usr/share/rpikernelhack/overlays/mcp3008.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/mcp3202.dtbo to /usr/share/rpikernelhack/overlays/mcp3202.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/mcp342x.dtbo to /usr/share/rpikernelhack/overlays/mcp342x.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/media-center.dtbo to /usr/share/rpikernelhack/overlays/media-center.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/merus-amp.dtbo to /usr/share/rpikernelhack/overlays/merus-amp.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/midi-uart0.dtbo to /usr/share/rpikernelhack/overlays/midi-uart0.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/midi-uart1.dtbo to /usr/share/rpikernelhack/overlays/midi-uart1.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/minipitft13.dtbo to /usr/share/rpikernelhack/overlays/minipitft13.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/miniuart-bt.dtbo to /usr/share/rpikernelhack/overlays/miniuart-bt.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/mmc.dtbo to /usr/share/rpikernelhack/overlays/mmc.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/mpu6050.dtbo to /usr/share/rpikernelhack/overlays/mpu6050.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/mz61581.dtbo to /usr/share/rpikernelhack/overlays/mz61581.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/ov5647.dtbo to /usr/share/rpikernelhack/overlays/ov5647.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/ov7251.dtbo to /usr/share/rpikernelhack/overlays/ov7251.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/ov9281.dtbo to /usr/share/rpikernelhack/overlays/ov9281.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/overlay_map.dtb to /usr/share/rpikernelhack/overlays/overlay_map.dtb by rpikernelhack'
Removing 'diversion of /boot/overlays/papirus.dtbo to /usr/share/rpikernelhack/overlays/papirus.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/pca953x.dtbo to /usr/share/rpikernelhack/overlays/pca953x.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/pcie-32bit-dma.dtbo to /usr/share/rpikernelhack/overlays/pcie-32bit-dma.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/pibell.dtbo to /usr/share/rpikernelhack/overlays/pibell.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/pifacedigital.dtbo to /usr/share/rpikernelhack/overlays/pifacedigital.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/pifi-40.dtbo to /usr/share/rpikernelhack/overlays/pifi-40.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/pifi-dac-hd.dtbo to /usr/share/rpikernelhack/overlays/pifi-dac-hd.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/pifi-dac-zero.dtbo to /usr/share/rpikernelhack/overlays/pifi-dac-zero.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/pifi-mini-210.dtbo to /usr/share/rpikernelhack/overlays/pifi-mini-210.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/piglow.dtbo to /usr/share/rpikernelhack/overlays/piglow.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/piscreen.dtbo to /usr/share/rpikernelhack/overlays/piscreen.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/piscreen2r.dtbo to /usr/share/rpikernelhack/overlays/piscreen2r.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/pisound.dtbo to /usr/share/rpikernelhack/overlays/pisound.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/pitft22.dtbo to /usr/share/rpikernelhack/overlays/pitft22.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/pitft28-capacitive.dtbo to /usr/share/rpikernelhack/overlays/pitft28-capacitive.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/pitft28-resistive.dtbo to /usr/share/rpikernelhack/overlays/pitft28-resistive.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/pitft35-resistive.dtbo to /usr/share/rpikernelhack/overlays/pitft35-resistive.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/pps-gpio.dtbo to /usr/share/rpikernelhack/overlays/pps-gpio.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/pwm-2chan.dtbo to /usr/share/rpikernelhack/overlays/pwm-2chan.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/pwm-ir-tx.dtbo to /usr/share/rpikernelhack/overlays/pwm-ir-tx.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/pwm.dtbo to /usr/share/rpikernelhack/overlays/pwm.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/qca7000.dtbo to /usr/share/rpikernelhack/overlays/qca7000.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/rotary-encoder.dtbo to /usr/share/rpikernelhack/overlays/rotary-encoder.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/rpi-backlight.dtbo to /usr/share/rpikernelhack/overlays/rpi-backlight.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/rpi-cirrus-wm5102.dtbo to /usr/share/rpikernelhack/overlays/rpi-cirrus-wm5102.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/rpi-dac.dtbo to /usr/share/rpikernelhack/overlays/rpi-dac.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/rpi-display.dtbo to /usr/share/rpikernelhack/overlays/rpi-display.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/rpi-ft5406.dtbo to /usr/share/rpikernelhack/overlays/rpi-ft5406.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/rpi-poe-plus.dtbo to /usr/share/rpikernelhack/overlays/rpi-poe-plus.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/rpi-poe.dtbo to /usr/share/rpikernelhack/overlays/rpi-poe.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/rpi-proto.dtbo to /usr/share/rpikernelhack/overlays/rpi-proto.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/rpi-sense.dtbo to /usr/share/rpikernelhack/overlays/rpi-sense.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/rpi-tv.dtbo to /usr/share/rpikernelhack/overlays/rpi-tv.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/rpivid-v4l2.dtbo to /usr/share/rpikernelhack/overlays/rpivid-v4l2.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/rra-digidac1-wm8741-audio.dtbo to /usr/share/rpikernelhack/overlays/rra-digidac1-wm8741-audio.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/sainsmart18.dtbo to /usr/share/rpikernelhack/overlays/sainsmart18.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/sc16is750-i2c.dtbo to /usr/share/rpikernelhack/overlays/sc16is750-i2c.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/sc16is752-i2c.dtbo to /usr/share/rpikernelhack/overlays/sc16is752-i2c.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/sc16is752-spi0.dtbo to /usr/share/rpikernelhack/overlays/sc16is752-spi0.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/sc16is752-spi1.dtbo to /usr/share/rpikernelhack/overlays/sc16is752-spi1.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/sdhost.dtbo to /usr/share/rpikernelhack/overlays/sdhost.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/sdio.dtbo to /usr/share/rpikernelhack/overlays/sdio.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/seeed-can-fd-hat-v1.dtbo to /usr/share/rpikernelhack/overlays/seeed-can-fd-hat-v1.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/seeed-can-fd-hat-v2.dtbo to /usr/share/rpikernelhack/overlays/seeed-can-fd-hat-v2.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/sh1106-spi.dtbo to /usr/share/rpikernelhack/overlays/sh1106-spi.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/si446x-spi0.dtbo to /usr/share/rpikernelhack/overlays/si446x-spi0.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/smi-dev.dtbo to /usr/share/rpikernelhack/overlays/smi-dev.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/smi-nand.dtbo to /usr/share/rpikernelhack/overlays/smi-nand.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/smi.dtbo to /usr/share/rpikernelhack/overlays/smi.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi-gpio35-39.dtbo to /usr/share/rpikernelhack/overlays/spi-gpio35-39.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi-gpio40-45.dtbo to /usr/share/rpikernelhack/overlays/spi-gpio40-45.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi-rtc.dtbo to /usr/share/rpikernelhack/overlays/spi-rtc.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi0-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi0-1cs.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi0-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi0-2cs.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi1-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi1-1cs.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi1-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi1-2cs.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi1-3cs.dtbo to /usr/share/rpikernelhack/overlays/spi1-3cs.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi2-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi2-1cs.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi2-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi2-2cs.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi2-3cs.dtbo to /usr/share/rpikernelhack/overlays/spi2-3cs.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi3-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi3-1cs.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi3-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi3-2cs.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi4-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi4-1cs.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi4-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi4-2cs.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi5-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi5-1cs.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi5-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi5-2cs.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi6-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi6-1cs.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/spi6-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi6-2cs.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/ssd1306-spi.dtbo to /usr/share/rpikernelhack/overlays/ssd1306-spi.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/ssd1306.dtbo to /usr/share/rpikernelhack/overlays/ssd1306.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/ssd1331-spi.dtbo to /usr/share/rpikernelhack/overlays/ssd1331-spi.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/ssd1351-spi.dtbo to /usr/share/rpikernelhack/overlays/ssd1351-spi.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/superaudioboard.dtbo to /usr/share/rpikernelhack/overlays/superaudioboard.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/sx150x.dtbo to /usr/share/rpikernelhack/overlays/sx150x.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/tc358743-audio.dtbo to /usr/share/rpikernelhack/overlays/tc358743-audio.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/tc358743.dtbo to /usr/share/rpikernelhack/overlays/tc358743.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/tinylcd35.dtbo to /usr/share/rpikernelhack/overlays/tinylcd35.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/tpm-slb9670.dtbo to /usr/share/rpikernelhack/overlays/tpm-slb9670.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/uart0.dtbo to /usr/share/rpikernelhack/overlays/uart0.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/uart1.dtbo to /usr/share/rpikernelhack/overlays/uart1.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/uart2.dtbo to /usr/share/rpikernelhack/overlays/uart2.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/uart3.dtbo to /usr/share/rpikernelhack/overlays/uart3.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/uart4.dtbo to /usr/share/rpikernelhack/overlays/uart4.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/uart5.dtbo to /usr/share/rpikernelhack/overlays/uart5.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/udrc.dtbo to /usr/share/rpikernelhack/overlays/udrc.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/ugreen-dabboard.dtbo to /usr/share/rpikernelhack/overlays/ugreen-dabboard.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/upstream-pi4.dtbo to /usr/share/rpikernelhack/overlays/upstream-pi4.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/upstream.dtbo to /usr/share/rpikernelhack/overlays/upstream.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/vc4-fkms-v3d-pi4.dtbo to /usr/share/rpikernelhack/overlays/vc4-fkms-v3d-pi4.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/vc4-fkms-v3d.dtbo to /usr/share/rpikernelhack/overlays/vc4-fkms-v3d.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/vc4-kms-dpi-at056tn53v1.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-dpi-at056tn53v1.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/vc4-kms-dsi-7inch.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-dsi-7inch.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/vc4-kms-dsi-lt070me05000-v2.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-dsi-lt070me05000-v2.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/vc4-kms-dsi-lt070me05000.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-dsi-lt070me05000.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/vc4-kms-kippah-7inch.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-kippah-7inch.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/vc4-kms-v3d-pi4.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-v3d-pi4.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/vc4-kms-v3d.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-v3d.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/vc4-kms-vga666.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-vga666.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/vga666.dtbo to /usr/share/rpikernelhack/overlays/vga666.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/w1-gpio-pullup.dtbo to /usr/share/rpikernelhack/overlays/w1-gpio-pullup.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/w1-gpio.dtbo to /usr/share/rpikernelhack/overlays/w1-gpio.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/w5500.dtbo to /usr/share/rpikernelhack/overlays/w5500.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/wittypi.dtbo to /usr/share/rpikernelhack/overlays/wittypi.dtbo by rpikernelhack'
Removing 'diversion of /boot/overlays/wm8960-soundcard.dtbo to /usr/share/rpikernelhack/overlays/wm8960-soundcard.dtbo by rpikernelhack'
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 5.10.52+ /boot/kernel.img
run-parts: executing /etc/kernel/postinst.d/dietpi-USBridgeSig 5.10.52+ /boot/kernel.img
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 5.10.52-v7+ /boot/kernel7.img
run-parts: executing /etc/kernel/postinst.d/dietpi-USBridgeSig 5.10.52-v7+ /boot/kernel7.img
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 5.10.52-v7l+ /boot/kernel7l.img
run-parts: executing /etc/kernel/postinst.d/dietpi-USBridgeSig 5.10.52-v7l+ /boot/kernel7l.img
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 5.10.52-v8+ /boot/kernel8.img
run-parts: executing /etc/kernel/postinst.d/dietpi-USBridgeSig 5.10.52-v8+ /boot/kernel8.img
Setting up libkrb5support0:armhf (1.17-3+deb10u2) ...
Setting up firmware-brcm80211 (1:20190114-2+rpt1) ...
Setting up firmware-realtek (1:20190114-2+rpt1) ...
Setting up raspberrypi-bootloader (1:1.20210805-1) ...
Removing 'diversion of /boot/start.elf to /usr/share/rpikernelhack/start.elf by rpikernelhack'
Removing 'diversion of /boot/start_cd.elf to /usr/share/rpikernelhack/start_cd.elf by rpikernelhack'
Removing 'diversion of /boot/start_db.elf to /usr/share/rpikernelhack/start_db.elf by rpikernelhack'
Removing 'diversion of /boot/start_x.elf to /usr/share/rpikernelhack/start_x.elf by rpikernelhack'
Removing 'diversion of /boot/fixup.dat to /usr/share/rpikernelhack/fixup.dat by rpikernelhack'
Removing 'diversion of /boot/fixup_cd.dat to /usr/share/rpikernelhack/fixup_cd.dat by rpikernelhack'
Removing 'diversion of /boot/fixup_db.dat to /usr/share/rpikernelhack/fixup_db.dat by rpikernelhack'
Removing 'diversion of /boot/fixup_x.dat to /usr/share/rpikernelhack/fixup_x.dat by rpikernelhack'
Removing 'diversion of /boot/bootcode.bin to /usr/share/rpikernelhack/bootcode.bin by rpikernelhack'
Removing 'diversion of /boot/start4.elf to /usr/share/rpikernelhack/start4.elf by rpikernelhack'
Removing 'diversion of /boot/start4cd.elf to /usr/share/rpikernelhack/start4cd.elf by rpikernelhack'
Removing 'diversion of /boot/start4db.elf to /usr/share/rpikernelhack/start4db.elf by rpikernelhack'
Removing 'diversion of /boot/start4x.elf to /usr/share/rpikernelhack/start4x.elf by rpikernelhack'
Removing 'diversion of /boot/fixup4.dat to /usr/share/rpikernelhack/fixup4.dat by rpikernelhack'
Removing 'diversion of /boot/fixup4cd.dat to /usr/share/rpikernelhack/fixup4cd.dat by rpikernelhack'
Removing 'diversion of /boot/fixup4db.dat to /usr/share/rpikernelhack/fixup4db.dat by rpikernelhack'
Removing 'diversion of /boot/fixup4x.dat to /usr/share/rpikernelhack/fixup4x.dat by rpikernelhack'
Removing 'diversion of /boot/LICENCE.broadcom to /usr/share/rpikernelhack/LICENCE.broadcom by rpikernelhack'
Setting up libk5crypto3:armhf (1.17-3+deb10u2) ...
Setting up libraspberrypi0 (1:1.20210805-1) ...
Setting up libkrb5-3:armhf (1.17-3+deb10u2) ...
Setting up libraspberrypi-bin (1:1.20210805-1) ...
Setting up libgssapi-krb5-2:armhf (1.17-3+deb10u2) ...
Processing triggers for libc-bin (2.28-10+rpi1) ...
[  OK  ] DietPi-Update | APT upgrade

 DietPi-Update
─────────────────────────────────────────────────────
 Phase: Installing new DietPi code
[  OK  ] DietPi-Update | Downloading update archive
[  OK  ] DietPi-Update | Unpacking update archive
[  OK  ] DietPi-Update | Installing new DietPi scripts
[  OK  ] DietPi-Update | Installing new DietPi system files
[  OK  ] DietPi-Update | Setting execute permissions for DietPi scripts
[ SUB1 ] DietPi-Set_software > verify_dietpi.txt
[  OK  ] DietPi-Set_software | Downloading current dietpi.txt
[  OK  ] DietPi-Set_software | Added setting AUTO_SETUP_DHCP_TO_STATIC=0 to end of file /boot/dietpi.txt
[  OK  ] DietPi-Set_software | Added setting SOFTWARE_K3S_EXEC= to end of file /boot/dietpi.txt
[  OK  ] verify_dietpi.txt  | Completed

 DietPi-Update
─────────────────────────────────────────────────────
 Phase: Applying incremental patches

[ INFO ] DietPi-Update | Current version : v7.2.3
[ INFO ] DietPi-Update | Latest version  : v7.4.2
[ INFO ] DietPi-Patch | Patching to DietPi v7.3...
[  OK  ] DietPi-Patch | sed -i /dtparam=i2c1=/d /boot/config.txt
[  OK  ] DietPi-Patch | Patched to DietPi v7.3

[ INFO ] DietPi-Patch | Patching to DietPi v7.4...
[  OK  ] DietPi-Patch | Patched to DietPi v7.4
[ INFO ] DietPi-Update | APT autopurge, please wait...
[  OK  ] DietPi-Update | APT autopurge
[  OK  ] DietPi-Update | Incremental patching to v7.4.2 completed

 DietPi-Update
─────────────────────────────────────────────────────
 Phase: Completed

[ INFO ] DietPi-Update | Current version : v7.4.2
[ INFO ] DietPi-Update | Latest version  : v7.4.2
[  OK  ] DietPi-Survey | Setting in /boot/dietpi.txt adjusted: SURVEY_OPTED_IN=1
[  OK  ] DietPi-Survey | Sending survey data
 ─────────────────────────────────────────────────────
 DietPi v7.4.2 : 11:34 - 日 2021年08月08日
 ─────────────────────────────────────────────────────
 - LAN IP : 172.16.77.201 (wlan0)
[  OK  ] DietPi-Software | Initialised database
[  OK  ] DietPi-Software | Reading database

 DietPi-Software
─────────────────────────────────────────────────────
 Mode: Applying initial first run setup steps

[ SUB1 ] DietPi-Set_software > passwords
[  OK  ] DietPi-Set_software | Setting in /boot/dietpi.txt adjusted: AUTO_SETUP_GLOBAL_PASSWORD=Password has been encrypted and secured on rootFS
[  OK  ] DietPi-Set_software | mkdir -p /var/lib/dietpi/dietpi-software
[  OK  ] DietPi-Set_software | chown root:root /var/lib/dietpi/dietpi-software/.GLOBAL_PW.bin
[  OK  ] DietPi-Set_software | chmod 0600 /var/lib/dietpi/dietpi-software/.GLOBAL_PW.bin
[ INFO ] DietPi-Set_software | Global software password successfully changed
[ INFO ] DietPi-Set_software | "root" and "dietpi" login passwords successfully changed
[  OK  ] passwords  | Completed
[ SUB1 ] DietPi-Set_hardware > serialconsole (disable)
[ INFO ] DietPi-Set_hardware | Disabling serial-getty on: /dev/ttyS0
Created symlink /etc/systemd/system/serial-getty@ttyS0.service → /dev/null.
[ INFO ] DietPi-Set_hardware | Disabling serial-getty on: /dev/ttyAMA0
Created symlink /etc/systemd/system/serial-getty@ttyAMA0.service → /dev/null.
[ INFO ] DietPi-Set_hardware | Disabling serial-getty on: /dev/serial0
Removed /etc/systemd/system/getty.target.wants/serial-getty@serial0.service.
Created symlink /etc/systemd/system/serial-getty@serial0.service → /dev/null.
[  OK  ] DietPi-Set_hardware | Setting in /boot/config.txt adjusted: enable_uart=0
[  OK  ] DietPi-Set_hardware | Setting in /boot/dietpi.txt adjusted: CONFIG_SERIAL_CONSOLE_ENABLE=0
[  OK  ] serialconsole disable | Completed
[ SUB1 ] DietPi-Set_hardware > serialconsole (disable)
[ INFO ] DietPi-Set_hardware | Disabling serial-getty on: /dev/serial0
Unit /etc/systemd/system/serial-getty@serial0.service is masked, ignoring.
[  OK  ] serialconsole disable | Completed
[  OK  ] DietPi-Software | mount -o remount /var/log
[ SUB1 ] DietPi-Set_software > ntpd-mode (2)
Removed /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service.
Removed /etc/systemd/system/dbus-org.freedesktop.timesync1.service.
[  OK  ] DietPi-Set_software | Setting in /boot/dietpi.txt adjusted: CONFIG_NTP_MODE=2
[  OK  ] ntpd-mode 2 | Completed
[  OK  ] DietPi-Software | Applied initial first run setup steps
[  OK  ] DietPi-Software | Free space check: path=/ | available=25591 MiB | required=500 MiB
[  OK  ] DietPi-Software | DietPi-Userdata validation: /mnt/dietpi_userdata
[  OK  ] DietPi-Software | Checking network connectivity
[  OK  ] DietPi-Software | Checking DNS resolver
[  OK  ] Network time sync | Completed
[ SUB1 ] DietPi-Services > unmask
[  OK  ] DietPi-Services | unmask : cron
[ SUB1 ] DietPi-Services > stop
[  OK  ] DietPi-Services | stop : cron
[  OK  ] DietPi-Software | mkdir -p /mnt/dietpi_userdata/Music /mnt/dietpi_userdata/Pictures /mnt/dietpi_userdata/Video /mnt/dietpi_userdata/downloads /var/www /opt
[  OK  ] DietPi-Software | chown dietpi:dietpi /mnt/dietpi_userdata/Music /mnt/dietpi_userdata/Pictures /mnt/dietpi_userdata/Video /mnt/dietpi_userdata/downloads
[  OK  ] DietPi-Software | chmod 0775 /mnt/dietpi_userdata/Music /mnt/dietpi_userdata/Pictures /mnt/dietpi_userdata/Video /mnt/dietpi_userdata/downloads
[ INFO ] DietPi-Software | APT update, please wait...
Hit:1 http://raspbian.raspberrypi.org/raspbian buster InRelease
Hit:2 https://archive.raspberrypi.org/debian buster InRelease
Reading package lists...
[  OK  ] DietPi-Software | APT update
[ INFO ] DietPi-Software | APT dist-upgrade, please wait...
[  OK  ] DietPi-Software | APT dist-upgrade

 DietPi-Software
─────────────────────────────────────────────────────
 Mode: Checking for prerequisite software


 DietPi-Software
─────────────────────────────────────────────────────
 Mode: Installing OpenSSH Server: Feature-rich SSH server with SFTP and SCP support

[  OK  ] DietPi-Software | systemctl stop dropbear
[ INFO ] DietPi-Software | APT install for: openssh-server openssh-client, please wait...
debconf: delaying package configuration, since apt-utils is not installed
Selecting previously unselected package libbsd0:armhf.
(Reading database ... 21271 files and directories currently installed.)
Preparing to unpack .../0-libbsd0_0.9.1-2+deb10u1_armhf.deb ...
Unpacking libbsd0:armhf (0.9.1-2+deb10u1) ...
Selecting previously unselected package libedit2:armhf.
Preparing to unpack .../1-libedit2_3.1-20181209-1_armhf.deb ...
Unpacking libedit2:armhf (3.1-20181209-1) ...
Selecting previously unselected package openssh-client.
Preparing to unpack .../2-openssh-client_1%3a7.9p1-10+deb10u2+rpt1_armhf.deb ...
Unpacking openssh-client (1:7.9p1-10+deb10u2+rpt1) ...
Selecting previously unselected package ucf.
Preparing to unpack .../3-ucf_3.0038+nmu1_all.deb ...
Moving old data out of the way
Unpacking ucf (3.0038+nmu1) ...
Selecting previously unselected package libwrap0:armhf.
Preparing to unpack .../4-libwrap0_7.6.q-28_armhf.deb ...
Unpacking libwrap0:armhf (7.6.q-28) ...
Selecting previously unselected package openssh-sftp-server.
Preparing to unpack .../5-openssh-sftp-server_1%3a7.9p1-10+deb10u2+rpt1_armhf.deb ...
Unpacking openssh-sftp-server (1:7.9p1-10+deb10u2+rpt1) ...
Selecting previously unselected package openssh-server.
Preparing to unpack .../6-openssh-server_1%3a7.9p1-10+deb10u2+rpt1_armhf.deb ...
Unpacking openssh-server (1:7.9p1-10+deb10u2+rpt1) ...
Setting up libwrap0:armhf (7.6.q-28) ...
Setting up ucf (3.0038+nmu1) ...
Setting up libbsd0:armhf (0.9.1-2+deb10u1) ...
Setting up libedit2:armhf (3.1-20181209-1) ...
Setting up openssh-client (1:7.9p1-10+deb10u2+rpt1) ...
Setting up openssh-sftp-server (1:7.9p1-10+deb10u2+rpt1) ...
Setting up openssh-server (1:7.9p1-10+deb10u2+rpt1) ...

Creating config file /etc/ssh/sshd_config with new version
Creating SSH2 RSA key; this may take some time ...
2048 SHA256:bT0UaLtpbjTclL7ciH1RrNXSdV9dSqtmhpfcZlWLmd0 root@DietPi (RSA)
Creating SSH2 ECDSA key; this may take some time ...
256 SHA256:9ndyjS0u7two4itU3O0SC3tx5NsDwrj+oEYi1LvmF1A root@DietPi (ECDSA)
Creating SSH2 ED25519 key; this may take some time ...
256 SHA256:Ckd1T0IM2m8IiCbdFIxv1IL7E7PfNbhHhkHcVuBgkdU root@DietPi (ED25519)
Created symlink /etc/systemd/system/sshd.service → /lib/systemd/system/ssh.service.
Created symlink /etc/systemd/system/multi-user.target.wants/ssh.service → /lib/systemd/system/ssh.service.
rescue-ssh.target is a disabled or a static unit, not starting it.
Processing triggers for systemd (241-7~deb10u7+rpi1) ...
Processing triggers for libc-bin (2.28-10+rpi1) ...
[  OK  ] DietPi-Software | APT install for: openssh-server openssh-client
[  OK  ] DietPi-Software | Comment in /etc/ssh/sshd_config converted to setting: PermitRootLogin yes
[  OK  ] DietPi-Software | systemctl enable ssh

 DietPi-Software
─────────────────────────────────────────────────────
 Mode: Installing Samba Server: Feature-rich SMB/CIFS server

[  OK  ] DietPi-Software | rm -Rf /var/cache/samba
[  OK  ] DietPi-Software | mkdir -p /run/samba-cache
[  OK  ] DietPi-Software | ln -s /run/samba-cache /var/cache/samba
[ INFO ] DietPi-Software | APT install for: samba, please wait...
debconf: delaying package configuration, since apt-utils is not installed
Selecting previously unselected package libwbclient0:armhf.
(Reading database ... 21393 files and directories currently installed.)
Preparing to unpack .../00-libwbclient0_2%3a4.9.5+dfsg-5+deb10u1+rpi1_armhf.deb ...
Unpacking libwbclient0:armhf (2:4.9.5+dfsg-5+deb10u1+rpi1) ...
Selecting previously unselected package libpython2.7-minimal:armhf.
Preparing to unpack .../01-libpython2.7-minimal_2.7.16-2+deb10u1_armhf.deb ...
Unpacking libpython2.7-minimal:armhf (2.7.16-2+deb10u1) ...
Selecting previously unselected package python2.7-minimal.
Preparing to unpack .../02-python2.7-minimal_2.7.16-2+deb10u1_armhf.deb ...
Unpacking python2.7-minimal (2.7.16-2+deb10u1) ...
Selecting previously unselected package python2-minimal.
Preparing to unpack .../03-python2-minimal_2.7.16-1_armhf.deb ...
Unpacking python2-minimal (2.7.16-1) ...
Selecting previously unselected package python-minimal.
Preparing to unpack .../04-python-minimal_2.7.16-1_armhf.deb ...
Unpacking python-minimal (2.7.16-1) ...
Selecting previously unselected package mime-support.
Preparing to unpack .../05-mime-support_3.62_all.deb ...
Unpacking mime-support (3.62) ...
Selecting previously unselected package libexpat1:armhf.
Preparing to unpack .../06-libexpat1_2.2.6-2+deb10u1_armhf.deb ...
Unpacking libexpat1:armhf (2.2.6-2+deb10u1) ...
Selecting previously unselected package libpython2.7-stdlib:armhf.
Preparing to unpack .../07-libpython2.7-stdlib_2.7.16-2+deb10u1_armhf.deb ...
Unpacking libpython2.7-stdlib:armhf (2.7.16-2+deb10u1) ...
Selecting previously unselected package python2.7.
Preparing to unpack .../08-python2.7_2.7.16-2+deb10u1_armhf.deb ...
Unpacking python2.7 (2.7.16-2+deb10u1) ...
Selecting previously unselected package libpython2-stdlib:armhf.
Preparing to unpack .../09-libpython2-stdlib_2.7.16-1_armhf.deb ...
Unpacking libpython2-stdlib:armhf (2.7.16-1) ...
Selecting previously unselected package libpython-stdlib:armhf.
Preparing to unpack .../10-libpython-stdlib_2.7.16-1_armhf.deb ...
Unpacking libpython-stdlib:armhf (2.7.16-1) ...
Setting up libpython2.7-minimal:armhf (2.7.16-2+deb10u1) ...
Setting up python2.7-minimal (2.7.16-2+deb10u1) ...
Setting up python2-minimal (2.7.16-1) ...
Selecting previously unselected package python2.
(Reading database ... 22197 files and directories currently installed.)
Preparing to unpack .../python2_2.7.16-1_armhf.deb ...
Unpacking python2 (2.7.16-1) ...
Setting up python-minimal (2.7.16-1) ...
Selecting previously unselected package python.
(Reading database ... 22228 files and directories currently installed.)
Preparing to unpack .../00-python_2.7.16-1_armhf.deb ...
Unpacking python (2.7.16-1) ...
Selecting previously unselected package python-dnspython.
Preparing to unpack .../01-python-dnspython_1.16.0-1+deb10u1_all.deb ...
Unpacking python-dnspython (1.16.0-1+deb10u1) ...
Selecting previously unselected package python-crypto.
Preparing to unpack .../02-python-crypto_2.6.1-9+b1_armhf.deb ...
Unpacking python-crypto (2.6.1-9+b1) ...
Selecting previously unselected package libtalloc2:armhf.
Preparing to unpack .../03-libtalloc2_2.1.14-2_armhf.deb ...
Unpacking libtalloc2:armhf (2.1.14-2) ...
Selecting previously unselected package libtdb1:armhf.
Preparing to unpack .../04-libtdb1_1.3.16-2+b1_armhf.deb ...
Unpacking libtdb1:armhf (1.3.16-2+b1) ...
Selecting previously unselected package libtevent0:armhf.
Preparing to unpack .../05-libtevent0_0.9.37-1_armhf.deb ...
Unpacking libtevent0:armhf (0.9.37-1) ...
Selecting previously unselected package libldb1:armhf.
Preparing to unpack .../06-libldb1_2%3a1.5.1+really1.4.6-3+deb10u1_armhf.deb ...
Unpacking libldb1:armhf (2:1.5.1+really1.4.6-3+deb10u1) ...
Selecting previously unselected package libpython2.7:armhf.
Preparing to unpack .../07-libpython2.7_2.7.16-2+deb10u1_armhf.deb ...
Unpacking libpython2.7:armhf (2.7.16-2+deb10u1) ...
Selecting previously unselected package python-ldb.
Preparing to unpack .../08-python-ldb_2%3a1.5.1+really1.4.6-3+deb10u1_armhf.deb ...
Unpacking python-ldb (2:1.5.1+really1.4.6-3+deb10u1) ...
Selecting previously unselected package python-tdb.
Preparing to unpack .../09-python-tdb_1.3.16-2+b1_armhf.deb ...
Unpacking python-tdb (1.3.16-2+b1) ...
Selecting previously unselected package libavahi-common-data:armhf.
Preparing to unpack .../10-libavahi-common-data_0.7-4+deb10u1_armhf.deb ...
Unpacking libavahi-common-data:armhf (0.7-4+deb10u1) ...
Selecting previously unselected package libavahi-common3:armhf.
Preparing to unpack .../11-libavahi-common3_0.7-4+deb10u1_armhf.deb ...
Unpacking libavahi-common3:armhf (0.7-4+deb10u1) ...
Selecting previously unselected package libavahi-client3:armhf.
Preparing to unpack .../12-libavahi-client3_0.7-4+deb10u1_armhf.deb ...
Unpacking libavahi-client3:armhf (0.7-4+deb10u1) ...
Selecting previously unselected package libcups2:armhf.
Preparing to unpack .../13-libcups2_2.2.10-6+deb10u4_armhf.deb ...
Unpacking libcups2:armhf (2.2.10-6+deb10u4) ...
Selecting previously unselected package libjansson4:armhf.
Preparing to unpack .../14-libjansson4_2.12-1_armhf.deb ...
Unpacking libjansson4:armhf (2.12-1) ...
Selecting previously unselected package python-talloc:armhf.
Preparing to unpack .../15-python-talloc_2.1.14-2_armhf.deb ...
Unpacking python-talloc:armhf (2.1.14-2) ...
Selecting previously unselected package samba-libs:armhf.
Preparing to unpack .../16-samba-libs_2%3a4.9.5+dfsg-5+deb10u1+rpi1_armhf.deb ...
Unpacking samba-libs:armhf (2:4.9.5+dfsg-5+deb10u1+rpi1) ...
Selecting previously unselected package python-samba.
Preparing to unpack .../17-python-samba_2%3a4.9.5+dfsg-5+deb10u1+rpi1_armhf.deb ...
Unpacking python-samba (2:4.9.5+dfsg-5+deb10u1+rpi1) ...
Selecting previously unselected package samba-common.
Preparing to unpack .../18-samba-common_2%3a4.9.5+dfsg-5+deb10u1+rpi1_all.deb ...
Unpacking samba-common (2:4.9.5+dfsg-5+deb10u1+rpi1) ...
Selecting previously unselected package samba-common-bin.
Preparing to unpack .../19-samba-common-bin_2%3a4.9.5+dfsg-5+deb10u1+rpi1_armhf.deb ...
Unpacking samba-common-bin (2:4.9.5+dfsg-5+deb10u1+rpi1) ...
Selecting previously unselected package tdb-tools.
Preparing to unpack .../20-tdb-tools_1.3.16-2+b1_armhf.deb ...
Unpacking tdb-tools (1.3.16-2+b1) ...
Selecting previously unselected package samba.
Preparing to unpack .../21-samba_2%3a4.9.5+dfsg-5+deb10u1+rpi1_armhf.deb ...
Unpacking samba (2:4.9.5+dfsg-5+deb10u1+rpi1) ...
Setting up libexpat1:armhf (2.2.6-2+deb10u1) ...
Setting up mime-support (3.62) ...
Setting up libtdb1:armhf (1.3.16-2+b1) ...
Setting up samba-common (2:4.9.5+dfsg-5+deb10u1+rpi1) ...

Creating config file /etc/samba/smb.conf with new version
Setting up libwbclient0:armhf (2:4.9.5+dfsg-5+deb10u1+rpi1) ...
Setting up libjansson4:armhf (2.12-1) ...
Setting up libpython2.7-stdlib:armhf (2.7.16-2+deb10u1) ...
Setting up libtalloc2:armhf (2.1.14-2) ...
Setting up libtevent0:armhf (0.9.37-1) ...
Setting up libavahi-common-data:armhf (0.7-4+deb10u1) ...
Setting up tdb-tools (1.3.16-2+b1) ...
update-alternatives: using /usr/bin/tdbbackup.tdbtools to provide /usr/bin/tdbbackup (tdbbackup) in auto mode
Setting up libpython2.7:armhf (2.7.16-2+deb10u1) ...
Setting up libldb1:armhf (2:1.5.1+really1.4.6-3+deb10u1) ...
Setting up python2.7 (2.7.16-2+deb10u1) ...
Setting up libpython2-stdlib:armhf (2.7.16-1) ...
Setting up libavahi-common3:armhf (0.7-4+deb10u1) ...
Setting up python2 (2.7.16-1) ...
Setting up libpython-stdlib:armhf (2.7.16-1) ...
Setting up python (2.7.16-1) ...
Setting up libavahi-client3:armhf (0.7-4+deb10u1) ...
Setting up python-crypto (2.6.1-9+b1) ...
Setting up python-ldb (2:1.5.1+really1.4.6-3+deb10u1) ...
Setting up libcups2:armhf (2.2.10-6+deb10u4) ...
Setting up python-tdb (1.3.16-2+b1) ...
Setting up python-dnspython (1.16.0-1+deb10u1) ...
Setting up python-talloc:armhf (2.1.14-2) ...
Setting up samba-libs:armhf (2:4.9.5+dfsg-5+deb10u1+rpi1) ...
Setting up python-samba (2:4.9.5+dfsg-5+deb10u1+rpi1) ...
Setting up samba-common-bin (2:4.9.5+dfsg-5+deb10u1+rpi1) ...
Checking smb.conf with testparm
Load smb config files from /etc/samba/smb.conf
Loaded services file OK.
Server role: ROLE_STANDALONE

Done
Setting up samba (2:4.9.5+dfsg-5+deb10u1+rpi1) ...
Adding group `sambashare' (GID 113) ...
Done.
Samba is not being run as an AD Domain Controller: Masking samba-ad-dc.service
Please ignore the following error about deb-systemd-helper not finding those services.
(samba-ad-dc.service masked)
Created symlink /etc/systemd/system/multi-user.target.wants/nmbd.service → /lib/systemd/system/nmbd.service.
Failed to preset unit: Unit file /etc/systemd/system/samba-ad-dc.service is masked.
/usr/bin/deb-systemd-helper: error: systemctl preset failed on samba-ad-dc.service: No such file or directory
Created symlink /etc/systemd/system/multi-user.target.wants/smbd.service → /lib/systemd/system/smbd.service.
Processing triggers for systemd (241-7~deb10u7+rpi1) ...
Processing triggers for libc-bin (2.28-10+rpi1) ...
[  OK  ] DietPi-Software | APT install for: samba

 DietPi-Software
─────────────────────────────────────────────────────
 Mode: Uninstalling Dropbear: Lightweight SSH server

[ INFO ] DietPi-Software | APT purge for: dropbear*, please wait...
(Reading database ... 23452 files and directories currently installed.)
Removing dropbear-run (2018.76-5) ...
Removing dropbear-bin (2018.76-5) ...
Removing libtomcrypt1:armhf (1.18.2-1) ...
Removing libtommath1:armhf (1.1.0-3) ...
Processing triggers for libc-bin (2.28-10+rpi1) ...
(Reading database ... 23417 files and directories currently installed.)
Purging configuration files for dropbear-run (2018.76-5) ...
Processing triggers for systemd (241-7~deb10u7+rpi1) ...
[  OK  ] DietPi-Software | APT purge for: dropbear*

 DietPi-Software
─────────────────────────────────────────────────────
 Mode: Finalise uninstall

[ INFO ] DietPi-Software | APT autopurge, please wait...
[  OK  ] DietPi-Software | APT autopurge
[  OK  ] DietPi-Software | systemctl daemon-reload
[ SUB1 ] DietPi-Services > stop
[  OK  ] DietPi-Services | stop : cron
[  OK  ] DietPi-Services | stop : smbd
[  OK  ] DietPi-Services | stop : nmbd

 DietPi-Software
─────────────────────────────────────────────────────
 Mode: Configuring Samba Server: Feature-rich SMB/CIFS server

Added user dietpi.
[  OK  ] DietPi-Software | /etc/samba/smb.conf: backup to /etc/samba/smb.conf.bak_080821_0
[ INFO ] DietPi-Software | For a full list of backup items, please see /var/tmp/dietpi/logs/G_BACKUP_FP.db
[  OK  ] DietPi-Software | Checking URL: https://raw.githubusercontent.com/MichaIng/DietPi/master/.conf/dps_96/conf
[  OK  ] DietPi-Software | cd /tmp/DietPi-Software
[  OK  ] DietPi-Software | curl -sSfL https://raw.githubusercontent.com/MichaIng/DietPi/master/.conf/dps_96/conf -o conf
[ INFO ] DietPi-Software | Updating file: /etc/samba/smb.conf
[  OK  ] DietPi-Software | mv conf /etc/samba/smb.conf
[  OK  ] DietPi-Software | Setting in /etc/samba/smb.conf adjusted: max connections = 2
[  OK  ] DietPi-Software | systemctl daemon-reload
[ SUB1 ] DietPi-Services > dietpi_controlled
[  OK  ] DietPi-Services | dietpi_controlled : nmbd
[  OK  ] DietPi-Services | dietpi_controlled : smbd
[  OK  ] DietPi-Services | dietpi_controlled : cron

 DietPi-Software
─────────────────────────────────────────────────────
 Mode: Applying final first run setup steps

[  OK  ] DietPi-AutoStart | systemctl daemon-reload
[  OK  ] DietPi-Software | Applied final first run setup steps

 DietPi-Software
─────────────────────────────────────────────────────
 Mode: Installation completed

[  OK  ] DietPi-Survey | Sending survey data
[ SUB1 ] DietPi-Services > restart
[  OK  ] DietPi-Services | restart : nmbd
[  OK  ] DietPi-Services | restart : smbd
[  OK  ] DietPi-Services | restart : cron
[ INFO ] DietPi-Software | Starting installed services, not controlled by DietPi-Services
[  OK  ] DietPi-Software | systemctl start ssh
 ─────────────────────────────────────────────────────
 DietPi v7.4.2 : 11:50 - 日 2021年08月08日
 ─────────────────────────────────────────────────────
 - Device model : RPi Zero W (armv6l)
 - CPU temp : 47'C : 116'F (Optimal temperature)
 - LAN IP : 172.16.77.201 (wlan0)
 - MOTD : A new month, a new release. Enjoy DietPi v7.4!
 ─────────────────────────────────────────────────────

 DietPi Team     : MichaIng (lead), Daniel Knight (founder), Joulinar (support)
 Image by        : DietPi Core Team (pre-image: Raspberry Pi OS Lite)
 Web             : https://dietpi.com | https://twitter.com/DietPi_
 Patreon Legends : Camry2731
 Contribute      : https://dietpi.com/contribute.html
 DietPi Hosting  : Powered by https://myvirtualserver.com

 dietpi-launcher : All the DietPi programs in one place
 dietpi-config   : Feature rich configuration tool for your device
 dietpi-software : Select optimised software for installation
 htop            : Resource monitor
 cpu             : Shows CPU information and stats

root@DietPi:~#

DietPi のブートメッセージを表示したい場合

plymouth をインストールする。

$ sudo apt install plymouth

ユーザー追加

# adduser tomoyan
ユーザ `tomoyan' を追加しています...
新しいグループ `tomoyan' (1001) を追加しています...
新しいユーザ `tomoyan' (1001) をグループ `tomoyan' として追加しています...
ホームディレクトリ `/home/tomoyan' を作成しています...
`/etc/skel' からファイルをコピーしています...
新しいパスワード:
新しいパスワードを再入力してください:
passwd: パスワードは正しく更新されました
tomoyan のユーザ情報を変更中
新しい値を入力してください。標準設定値を使うならリターンを押してください
        フルネーム []:
        部屋番号 []:
        職場電話番号 []:
        自宅電話番号 []:
        その他 []:
以上で正しいですか? [Y/n] y

# usermod -G tomoyan,adm,dialout,cdrom,sudo,audio,video,plugdev,games,users,input,netdev,spi,i2c,gpio tomoyan
# su - tomoyan

$ ssh-keygen -t ed25519 -f ~/.ssh/id_ed25519_tomoyan-2021 -C "Monster's Garage Co.,Ltd. TomoYan Ed25519"
Generating public/private ed25519 key pair.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/tomoyan/.ssh/id_ed25519_tomoyan-2021.
Your public key has been saved in /home/tomoyan/.ssh/id_ed25519_tomoyan-2021.pub.
The key fingerprint is:
SHA256:bdstZKSYoOSLXlPcjtN3puCTra7VORtXmcgJUXH4thA Monster's Garage Co.,Ltd. TomoYan Ed25519
The key's randomart image is:
+--[ED25519 256]--+
|          ..oo.  |
|           .E.   |
|    . .   . .o   |
|   o o o + =.ooo |
|    o o S + *o+. |
|   . o + o * o.  |
|  . + o =oB * .  |
| . . . +oo.O .   |
|  .   .o+oo      |
+----[SHA256]-----+
$ cat ~/.ssh/id_ed25519_tomoyan-2021.pub >> ~/.ssh/authorized_keys

or

$ mkdir ~/.ssh && echo "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPzxWU7ir/NzPnZGrRRvPc8/ORc/+cBUD/2WBywWwVuS Monster's Garage Co.,Ltd. TomoYan Ed25519" >> ~/.ssh/authorized_keys && chmod 700 ~/.ssh && chmod 600 ~/.ssh/authorized_keys

基本設定

bash alias の登録

$ nano ~/.bashrc
~/.bashrc
# some more ls aliases
#alias ll='ls -l'
#alias la='ls -A'
#alias l='ls -CF'
 
# User specific aliases and functions
alias diff='diff --color=auto'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias l.='ls -d .* --color=auto'
alias ll='ls -l --color=auto'
alias ls='ls --color=auto'
alias xzegrep='xzegrep --color=auto'
alias xzfgrep='xzfgrep --color=auto'
alias xzgrep='xzgrep --color=auto'
alias zegrep='zegrep --color=auto'
alias zfgrep='zfgrep --color=auto'
alias zgrep='zgrep --color=auto'

bash alias の反映

$ . ~/.bashrc

DietPi に aiyprojects のリポジトリを追加

AIY package repo を追加する。

$ echo "deb https://packages.cloud.google.com/apt aiyprojects-stable main" | sudo tee /etc/apt/sources.list.d/aiyprojects.list

deb https://packages.cloud.google.com/apt aiyprojects-stable main

Google package keys を追加する。

$ curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -

  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  2537  100  2537    0     0    996      0  0:00:02  0:00:02 --:--:--   999
Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
OK

DietPi Bullseye を Bookworm にアップグレードする

安定した OS アップグレードのために Bullseye の更新を全て済ませる

Bullseye の更新を済ませずに Bookworm への更新を行おうとすると、環境によっては更新途中で FAILED が多発するので、先に現在の OS を最新に更新しておく。

apt を更新

$ sudo apt update

Hit:1 http://raspbian.raspberrypi.org/raspbian bookworm InRelease
Hit:2 https://archive.raspberrypi.org/debian bullseye InRelease
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
1063 packages can be upgraded. Run 'apt list --upgradable' to see them.
W: Skipping acquire of configured file 'non-free-firmware/source/Sources' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'non-free-firmware/binary-armhf/Packages' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'non-free-firmware/Contents-armhf' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)

システムのパッケージを更新

$ sudo apt upgrade

Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Calculating upgrade... Done
The following packages were automatically installed and are no longer required:
  distro-info-data g++-10 golang-1.15-go golang-1.15-src libatk1.0-data libavresample4 libbpf0 libcbor0
  libdecor-0-0 libdns-export1110 libexporter-tiny-perl libfftw3-double3 libgtksourceview-3.0-1
  libgtksourceview-3.0-common libice-dev libimobiledevice6 libisc-export1105 libjsoncpp24
  liblist-moreutils-perl liblist-moreutils-xs-perl libltdl-dev libobjc-10-dev libodbc1 libpcre16-3
  libpcre2-posix2 libpcre3-dev libpcre32-3 libpcrecpp0v5 libperl5.32 libplist3 libpoppler102 libprocps8
  libpython3.8 libpython3.8-minimal libpython3.8-stdlib librest-0.7-0 libsdl2-2.0-0 libsigsegv2 libsm-dev
  libsoup-gnome2.4-1 libstdc++-10-dev libtiffxx5 libusbmuxd6 libxfce4util-common libxfce4util7 libxfconf-0-3
  libxt-dev odbcinst odbcinst1debian2 perl-modules-5.32 ruby2.7 xfconf
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
  at-spi2-common clang-14 cpp-12 cron-daemon-common dbus-bin dbus-daemon dbus-session-bus-common
  dbus-system-bus-common g++-12 gcc-11-base gcc-12 gcc-12-base golang-1.19-go golang-1.19-src
  libabsl20220623 libaom-dev libaom3 libasan8 libavcodec59 libavformat59 libavif-dev libavif15 libavutil57
  libbpf1 libcbor0.8 libcjson1 libclang-common-14-dev libclang-cpp14 libclang1-14 libcodec2-1.0 libdav1d-dev
  libdav1d6 libde265-dev libdecor-0-0 libduktape207 libffi8 libfile-find-rule-perl libflac12 libgav1-1
  libgcc-11-dev libgcc-12-dev libgspell-1-2 libgspell-1-common libgssdp-1.6-0 libgstreamer-plugins-bad1.0-0
  libgtksourceview-4-0 libgtksourceview-4-common libgupnp-1.6-0 libgupnp-igd-1.0-4 libhashkit2 libheif-dev
  libhwy1 libicu72 libimath-3-1-29 libjavascriptcoregtk-4.1-0 libjs-events libjsoncpp25 libjxl0.7
  libldap-2.5-0 libldap-dev liblerc-dev liblerc4 libllvm14 libllvm15 libmbedcrypto7 libmousepad0 libnice10
  libnumber-compare-perl libobjc-11-dev libobjc-12-dev libodbc2 libodbccr2 libodbcinst2 libopenexr-3-1-30
  libopengl0 libpcre2-posix3 libperl5.36 libpkgconf3 libpoppler126 libproc2-0 libpython3.11
  libpython3.11-minimal libpython3.11-stdlib librav1e0 librist4 libruby libruby3.1 libsoup-3.0-0
  libsoup-3.0-common libsoup2.4-common libsrt1.5-gnutls libssl3 libstdc++-11-dev libstdc++-12-dev
  libsvtav1enc1 libswresample4 libswscale6 libsystemd-shared libtext-glob-perl libtiff6 libtiffxx6 libvpx7
  libwebkit2gtk-4.1-0 libwebp7 libwmf-0.2-7 libwmflite-0.2-7 libx264-164 libx265-199 libx265-dev libxcvt0
  libyuv0 libzstd-dev llvm-11-linker-tools llvm-14-linker-tools node-events node-fancy-log node-minipass
  node-slice-ansi node-time-stamp perl-modules-5.36 pkexec pkgconf pkgconf-bin polkitd python3-six
  rpcsvc-proto ruby-sdbm ruby-webrick ruby3.1 sgml-base unixodbc-common usrmerge util-linux-extra xml-core
The following packages have been kept back:
  filezilla filezilla-common gimp gimp-data gnucobol iotop libcob5 libcob5-dev libgimp2.0 libgs9-common
  libimlib2 libinput-bin libinput10 libldb2 libnode-dev libpython3-dev libpython3-stdlib libselinux1
  libselinux1-dev libsemanage-common libtalloc2 libtdb1 libtevent0 libwacom-common libwbclient0 mesa-utils
  node-ajv node-archy node-assert-plus node-bcrypt-pbkdf node-cacache node-chalk node-getpass node-gyp
  node-hosted-git-info node-jsonstream node-lru-cache node-mime node-mkdirp node-ms node-nopt
  node-npm-package-arg node-object-assign node-opener node-puka node-punycode node-qs node-rimraf
  node-semver node-sshpk node-strip-ansi node-tweetnacl node-verror node-which nodejs npm passwd python3
  python3-dev python3-distutils python3-ldb python3-lib2to3 python3-minimal python3-numpy python3-rpi.gpio
  python3-samba python3-smbus python3-talloc python3-tdb python3-venv rpi.gpio-common samba samba-common
  samba-common-bin samba-libs samba-vfs-modules xserver-xorg-input-libinput
The following packages will be upgraded:
  adduser adwaita-icon-theme alsa-utils apache2 apache2-bin apache2-data apache2-dev apache2-utils apt
  apt-file autoconf autoconf2.64 automake autopoint autotools-dev base-files base-passwd bash
  bash-completion binutils binutils-arm-linux-gnueabihf binutils-common bison bsdextrautils bsdutils
  bubblewrap bzip2 ca-certificates clang clang-11 cmake cmake-data colorized-logs comerr-dev console-setup
  console-setup-linux coreutils cpio cpp cpp-10 cron curl dash dbus dbus-user-session dbus-x11
  dconf-gsettings-backend dconf-service debconf debhelper debianutils default-libmysqlclient-dev
  device-tree-compiler dh-strip-nondeterminism dictionaries-common diffutils dirmngr distro-info-data
  dmidecode dmsetup dpkg dpkg-dev dwz e2fsprogs emacsen-common ethtool expat fake-hwclock fakeroot fdisk
  file findutils firebird-dev firebird3.0-common firebird3.0-common-doc flac flex fontconfig
  fontconfig-config fonts-dejavu-core fonts-urw-base35 freetds-common freetds-dev g++ g++-10 galculator gcc
  gcc-10 gcc-10-base gettext gettext-base git git-man glib-networking glib-networking-common
  glib-networking-services gnupg gnupg-l10n gnupg-utils golang-1.15-go golang-1.15-src golang-go golang-src
  gparted gparted-common gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm gpgv graphviz grep
  groff-base gsettings-desktop-schemas gstreamer1.0-plugins-base gstreamer1.0-plugins-good
  gtk-update-icon-cache gyp gzip hdparm hostname htop hunspell-en-us i2c-tools icu-devtools ifupdown
  init-system-helpers initramfs-tools initramfs-tools-core intltool-debian iproute2 iputils-ping
  isc-dhcp-client iso-codes iw kbd keyboard-configuration klibc-utils kmod krb5-multidev less libaa1 libacl1
  libacl1-dev libamd2 libapparmor-dev libapparmor1 libapr1 libapr1-dev libaprutil1 libaprutil1-dbd-sqlite3
  libaprutil1-dev libaprutil1-ldap libapt-pkg-perl libapt-pkg6.0 libarchive13 libargon2-1 libargon2-dev
  libasan6 libasound2 libasound2-data libasound2-dev libasound2-plugins libaspell-dev libaspell15 libass9
  libassuan0 libasyncns0 libatk-bridge2.0-0 libatk1.0-0 libatk1.0-data libatkmm-1.6-1v5 libatlas3-base
  libatomic1 libatopology2 libatspi2.0-0 libattr1 libattr1-dev libaudit-common libaudit1 libavahi-client3
  libavahi-common-data libavahi-common3 libayatana-ido3-0.4-0 libayatana-indicator3-7 libbabl-0.1-0
  libbinutils libblas3 libblkid-dev libblkid1 libbluray2 libbrotli-dev libbrotli1 libbs2b0 libbsd-dev
  libbsd0 libbz2-1.0 libbz2-dev libc-ares2 libc-bin libc-client2007e libc-client2007e-dev libc-dev-bin
  libc-l10n libc6 libc6-dev libcaca0 libcairo-gobject2 libcairo2 libcairomm-1.0-1v5 libcamd2 libcap-ng0
  libcap2 libcap2-bin libcc1-0 libccolamd2 libcddb2 libcdparanoia0 libcdt5 libcgraph6 libcholmod3
  libchromaprint1 libclang-common-11-dev libclang-cpp11 libclang1-11 libcolamd2 libcolord2 libcom-err2
  libcrypt-dev libcrypt1 libcryptsetup12 libct4 libctf-nobfd0 libctf0 libcups2 libcurl3-gnutls libcurl4
  libcurl4-gnutls-dev libdatrie1 libdb-dev libdb5.3 libdb5.3-dev libdbus-1-3 libdbus-glib-1-2 libdc1394-25
  libdconf1 libde265-0 libdebconfclient0 libdebhelper-perl libdeflate-dev libdeflate0 libdevmapper1.02.1
  libdns-export1110 libdouble-conversion3 libdpkg-perl libdrm-amdgpu1 libdrm-common libdrm-nouveau2
  libdrm-radeon1 libdrm2 libdv4 libdvdnav4 libdvdread8 libdw1 libebml5 libedit-dev libedit2 libegl-mesa0
  libegl1 libelf1 libenchant-2-2 libenchant-2-dev libepoxy0 liberror-perl libevdev2 libevent-2.1-7
  libevent-core-2.1-7 libevent-dev libevent-extra-2.1-7 libevent-openssl-2.1-7 libevent-pthreads-2.1-7
  libexif12 libexiv2-27 libexpat1 libexpat1-dev libexporter-tiny-perl libext2fs2 libfaad2 libfakeroot
  libfann-dev libfann2 libfbclient2 libfdisk1 libfdt1 libffi-dev libfftw3-double3 libfftw3-single3
  libfido2-1 libfile-readbackwards-perl libfile-stripnondeterminism-perl libflite1 libfontconfig-dev
  libfontconfig1 libfreetype-dev libfreetype6 libfreetype6-dev libfribidi0 libgbm1 libgc1 libgcc-10-dev
  libgcc-s1 libgck-1-0 libgcr-base-3-1 libgcr-ui-3-1 libgcrypt20 libgcrypt20-dev libgd-dev libgd3
  libgdbm-compat4 libgdbm6 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgegl-0.4-0 libgegl-common
  libgexiv2-2 libgfortran5 libgif7 libgirepository-1.0-1 libgl1 libgl1-mesa-dri libglapi-mesa libgles2
  libglib2.0-0 libglib2.0-bin libglib2.0-data libglib2.0-dev libglib2.0-dev-bin libglibmm-2.4-1v5
  libglu1-mesa libglvnd0 libglx-mesa0 libglx0 libgme0 libgmp-dev libgmp10 libgmp3-dev libgmpxx4ldbl
  libgnutls30 libgomp1 libgpg-error-dev libgpg-error0 libgpm2 libgsm1 libgssapi-krb5-2 libgssrpc4
  libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 libgtk-3-0 libgtk-3-common
  libgtkmm-3.0-1v5 libgts-0.7-5 libgudev-1.0-0 libgvc6 libgvpr2 libharfbuzz-icu0 libharfbuzz0b libheif1
  libhiredis0.14 libhogweed6 libhunspell-1.7-0 libi2c0 libib-util libicu-dev libidn2-0 libiec61883-0
  libilmbase25 libimobiledevice6 libip4tc2 libisc-export1105 libisl23 libiw30 libjack-dev libjack0
  libjansson4 libjavascriptcoregtk-4.0-18 libjbig-dev libjbig0 libjbig2dec0 libjpeg-dev libjpeg62-turbo
  libjpeg62-turbo-dev libjs-inherits libjs-is-typedarray libjs-jquery libjs-psl libjs-sphinxdoc
  libjs-typedarray-to-buffer libjs-underscore libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common
  libk5crypto3 libkadm5clnt-mit12 libkadm5srv-mit12 libkdb5-10 libkeyutils1 libklibc libkmod2 libkrb5-3
  libkrb5-dev libkrb5support0 libksba8 liblab-gamut1 liblapack3 liblcms2-2 libldap2-dev
  liblightdm-gobject-1-0 liblilv-0-0 liblirc-client0 liblist-moreutils-xs-perl libllvm11
  liblocale-gettext-perl libltdl-dev libltdl7 liblua5.2-0 liblua5.3-0 liblz4-1 liblzma-dev liblzma5 libmad0
  libmagic-dev libmagic-mgc libmagic1 libmanette-0.2-0 libmariadb-dev libmariadb-dev-compat libmariadb3
  libmatroska7 libmcrypt-dev libmcrypt4 libmd-dev libmd0 libmd4c0 libmemcached11 libmemcachedutil2
  libmhash-dev libmhash2 libmount-dev libmount1 libmp3lame0 libmpc3 libmpdec3 libmpfr6 libmpg123-0
  libmtp-common libmtp9 libmysofa1 libncurses-dev libncurses5-dev libncurses6 libncursesw6 libnetsnmptrapd40
  libnettle8 libnewt0.52 libnghttp2-14 libnl-3-200 libnl-genl-3-200 libnl-route-3-200 libnotify4 libnspr4
  libnss-myhostname libnss3 libobjc-10-dev libobjc4 libobrender32v5 libobt2v5 libodbc1 libogg0 libonig-dev
  libonig5 libopenblas0-pthread libopenjp2-7 libopenmpt-modplug1 libopenmpt0 libopus0 liborc-0.4-0
  libout123-0 libp11-kit0 libpam-modules libpam-modules-bin libpam-runtime libpam-systemd libpam0g
  libpam0g-dev libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpangomm-1.4-1v5 libpangoxft-1.0-0
  libpaper1 libparted-fs-resize0 libparted2 libpathplan4 libpcap0.8 libpci-dev libpci3 libpciaccess0
  libpcre16-3 libpcre2-16-0 libpcre2-32-0 libpcre2-8-0 libpcre2-dev libpcre3 libpcre3-dev libpcre32-3
  libpcrecpp0v5 libpcsclite1 libpeas-1.0-0 libpeas-common libpipeline1 libpixman-1-0 libplist3 libplymouth5
  libpng-dev libpng16-16 libpocketsphinx3 libpolkit-agent-1-0 libpolkit-gobject-1-0 libpoppler-glib8
  libpopt0 libportaudio2 libportaudiocpp0 libpq-dev libpq5 libproxy1v5 libpsl5 libpspell-dev libpugixml1v5
  libpulse0 libpulsedsp libqdbm-dev libqdbm14 libqt5core5a libqt5dbus5 libqt5gui5 libqt5network5 libqt5svg5
  libqt5widgets5 libqt5x11extras5 librabbitmq4 libraw20 libreadline-dev libreadline8 libregexp-assemble-perl
  librhash0 librsvg2-2 librsvg2-common librubberband2 libsamplerate0 libsasl2-2 libsasl2-dev
  libsasl2-modules-db libsctp-dev libsctp1 libsdl-image1.2 libsdl1.2debian libsdl2-2.0-0 libseccomp2
  libsecret-1-0 libsecret-common libsensors-config libsensors-dev libsensors5 libserd-0-0 libshout3
  libsigc++-2.0-0v5 libsigsegv2 libslang2 libsmartcols1 libsnappy1v5 libsndfile1 libsndio7.0 libsnmp-base
  libsnmp-dev libsnmp40 libsord-0-0 libsoup-gnome2.4-1 libsoup2.4-1 libspeex1 libspeexdsp1 libsphinxbase3
  libsqlite3-0 libsqlite3-dev libsratom-0-0 libss2 libssh-gcrypt-4 libssh2-1 libssl-dev libstdc++-10-dev
  libstdc++6 libsub-override-perl libsuitesparseconfig5 libsybdb5 libsyn123-0 libsystemd-dev libsystemd0
  libtag1v5 libtag1v5-vanilla libtasn1-6 libtext-charwidth-perl libtext-iconv-perl libthai-data libthai0
  libtheora0 libtiff-dev libtinfo6 libtirpc-common libtirpc-dev libtirpc3 libtool libubsan1 libudev-dev
  libudev1 libudfread0 libumfpack5 libunistring2 libunwind8 libupower-glib3 libusb-1.0-0 libutempter0
  libuuid1 libuv1 libuv1-dev libv4l-0 libv4lconvert0 libva-drm2 libva-x11-2 libva2 libvdpau1 libvisual-0.4-0
  libvpx-dev libvte-2.91-0 libvte-2.91-common libvulkan1 libwavpack1 libwayland-client0 libwayland-cursor0
  libwayland-egl1 libwayland-server0 libwebkit2gtk-4.0-37 libwebp-dev libwebpdemux2 libwebpmux3 libwmf0.2-7
  libwoff1 libwpe-1.0-1 libwpebackend-fdo-1.0-1 libwrap0 libwrap0-dev libwxbase3.0-0v5 libwxgtk3.0-gtk3-0v5
  libx11-6 libx11-data libx11-dev libx11-xcb1 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-image0
  libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0
  libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 libxcb-xv0 libxcb1 libxcb1-dev libxcursor1 libxdamage1
  libxext6 libxfce4util-common libxfce4util7 libxfconf-0-3 libxfixes3 libxfont2 libxft2 libxi6 libxinerama1
  libxkbcommon-x11-0 libxkbcommon0 libxml2 libxml2-dev libxmlrpc-epi-dev libxmlrpc-epi0 libxmltok1
  libxmltok1-dev libxmu6 libxmuu1 libxpm-dev libxpm4 libxrandr2 libxrender1 libxres1 libxslt1-dev libxslt1.1
  libxt-dev libxt6 libxtables12 libxtst6 libxv1 libxxf86dga1 libxxhash0 libyaml-0-2 libz3-4 libzip-dev
  libzip4 libzmq5 libzstd1 libzvbi-common libzvbi0 lightdm linux-base locales locales-all login logsave
  lsb-base lsb-release lsof lua-lpeg lxrandr lxterminal m4 mailcap man-db mariadb-common mawk media-types
  mlock mount mousepad mpg123 mysql-common nano ncurses-base ncurses-bin neofetch netbase netcat-openbsd
  nmap nmap-common node-abbrev node-agent-base node-ansi node-ansi-regex node-ansi-styles node-ansistyles
  node-aproba node-are-we-there-yet node-asap node-asn1 node-asynckit node-aws-sign2 node-aws4
  node-balanced-match node-brace-expansion node-builtins node-caseless node-chownr node-clone
  node-color-convert node-color-name node-colors node-columnify node-combined-stream node-concat-map
  node-console-control-strings node-copy-concurrently node-core-util-is node-dashdash node-debug
  node-defaults node-delayed-stream node-delegates node-depd node-ecc-jsbn node-encoding node-err-code
  node-escape-string-regexp node-extend node-extsprintf node-fast-deep-equal node-forever-agent
  node-form-data node-fs-write-stream-atomic node-fs.realpath node-function-bind node-gauge node-glob
  node-graceful-fs node-har-schema node-har-validator node-has-flag node-has-unicode node-http-signature
  node-https-proxy-agent node-iconv-lite node-iferr node-imurmurhash node-indent-string node-inflight
  node-inherits node-ini node-ip node-ip-regex node-is-typedarray node-isarray node-isexe node-isstream
  node-jsbn node-json-parse-better-errors node-json-schema node-json-schema-traverse
  node-json-stable-stringify node-json-stringify-safe node-jsonify node-jsonparse node-jsprim node-leven
  node-lockfile node-mime-types node-minimatch node-move-concurrently node-mute-stream
  node-normalize-package-data node-npm-bundled node-npmlog node-number-is-nan node-oauth-sign node-once
  node-osenv node-p-map node-path-is-absolute node-performance-now node-process-nextick-args
  node-promise-inflight node-promise-retry node-promzard node-psl node-read node-read-package-json
  node-readable-stream node-resolve node-retry node-run-queue node-safe-buffer node-set-blocking
  node-signal-exit node-slash node-spdx-correct node-spdx-exceptions node-spdx-expression-parse
  node-spdx-license-ids node-ssri node-string-decoder node-string-width node-supports-color node-tar
  node-text-table node-tunnel-agent node-typedarray-to-buffer node-unique-filename node-uri-js
  node-util-deprecate node-uuid node-validate-npm-package-license node-validate-npm-package-name
  node-wcwidth.js node-wide-align node-wrappy node-write-file-atomic node-yallist ocl-icd-libopencl1
  odbcinst odbcinst1debian2 openbox openssh-client openssh-server openssh-sftp-server openssl parted pci.ids
  perl perl-base pinentry-curses pkg-config plymouth policykit-1 poppler-data portaudio19-dev procps
  proftpd-core psmisc pulseaudio pulseaudio-utils python3-colorzero python3-dnspython python3-gpiozero
  python3-pkg-resources python3-setuptools rake re2c readline-common rng-tools5 rsync ruby ruby-minitest
  ruby-net-telnet ruby-power-assert ruby-rubygems ruby-test-unit ruby-xmlrpc runit-helper screen sed
  sensible-utils shared-mime-info sudo swig swig4.0 systemd systemd-sysv systemd-timesyncd systemtap-sdt-dev
  sysvinit-utils tar tdb-tools tigervnc-common tigervnc-scraping-server tigervnc-standalone-server tmux
  tzdata ucf udev unixodbc-dev unzip upower usbutils util-linux uuid-dev vorbis-tools wget whiptail
  wireless-regdb wireless-tools wpasupplicant x11-common x11-xkb-utils x11-xserver-utils x11proto-dev
  xarchiver xauth xdg-dbus-proxy xfconf xfonts-base xfonts-encodings xkb-data xserver-common
  xserver-xorg-core xserver-xorg-video-fbdev xz-utils zenity zenity-common zlib1g zlib1g-dev zsh zsh-common
986 upgraded, 134 newly installed, 0 to remove and 77 not upgraded.
Need to get 123 kB/716 MB of archives.
After this operation, 1,270 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdevmapper1.02.1 armhf 2:1.02.185-2 [123 kB]
Fetched 48.3 kB in 4s (12.4 kB/s)             
debconf: delaying package configuration, since apt-utils is not installed
(Reading database ... 107826 files and directories currently installed.)
Preparing to unpack .../base-files_12.4+rpi1+deb12u1_armhf.deb ...
Unpacking base-files (12.4+rpi1+deb12u1) over (11.1+rpi1+deb11u7) ...
Setting up base-files (12.4+rpi1+deb12u1) ...
Installing new version of config file /etc/debian_version ...
Installing new version of config file /etc/issue ...
Installing new version of config file /etc/issue.net ...
(Reading database ... 107826 files and directories currently installed.)
Preparing to unpack .../0-libc-l10n_2.36-9+rpi1+deb12u1_all.deb ...
Unpacking libc-l10n (2.36-9+rpi1+deb12u1) over (2.31-13+rpt2+rpi1+deb11u5) ...
Preparing to unpack .../1-locales_2.36-9+rpi1+deb12u1_all.deb ...
Unpacking locales (2.36-9+rpi1+deb12u1) over (2.31-13+rpt2+rpi1+deb11u5) ...
Preparing to unpack .../2-locales-all_2.36-9+rpi1+deb12u1_armhf.deb ...
Unpacking locales-all (2.36-9+rpi1+deb12u1) over (2.31-13+rpt2+rpi1+deb11u5) ...
Preparing to unpack .../3-libc-dev-bin_2.36-9+rpi1+deb12u1_armhf.deb ...
Unpacking libc-dev-bin (2.36-9+rpi1+deb12u1) over (2.31-13+rpt2+rpi1+deb11u5) ...
Preparing to unpack .../4-binutils_2.40-2+rpi2_armhf.deb ...
Unpacking binutils (2.40-2+rpi2) over (2.35.2-2+rpi1) ...
Preparing to unpack .../5-libglib2.0-dev_2.74.6-1_armhf.deb ...
Unpacking libglib2.0-dev:armhf (2.74.6-1) over (2.66.8-1) ...
Preparing to unpack .../6-libc6-dev_2.36-9+rpi1+deb12u1_armhf.deb ...
Unpacking libc6-dev:armhf (2.36-9+rpi1+deb12u1) over (2.31-13+rpt2+rpi1+deb11u5) ...
Replacing files in old package libc6:armhf (2.31-13+rpt2+rpi1+deb11u5) ...
Selecting previously unselected package rpcsvc-proto.
Preparing to unpack .../7-rpcsvc-proto_1.4.3-1_armhf.deb ...
Unpacking rpcsvc-proto (1.4.3-1) ...
Preparing to unpack .../8-libc6_2.36-9+rpi1+deb12u1_armhf.deb ...
Checking for services that may need to be restarted...
Checking init scripts...
Unpacking libc6:armhf (2.36-9+rpi1+deb12u1) over (2.31-13+rpt2+rpi1+deb11u5) ...
Setting up libc6:armhf (2.36-9+rpi1+deb12u1) ...
Checking for services that may need to be restarted...
Checking init scripts...

Restarting services possibly affected by the upgrade:
  ssh: restarting...done.
  cron: restarting...done.

Services restarted successfully.
(Reading database ... 107867 files and directories currently installed.)
Preparing to unpack .../libzstd1_1.5.4+dfsg2-5_armhf.deb ...
Unpacking libzstd1:armhf (1.5.4+dfsg2-5) over (1.4.8+dfsg-2.1+rpi1) ...
Setting up libzstd1:armhf (1.5.4+dfsg2-5) ...
(Reading database ... 107867 files and directories currently installed.)
Preparing to unpack .../0-libctf0_2.40-2+rpi2_armhf.deb ...
Unpacking libctf0:armhf (2.40-2+rpi2) over (2.35.2-2+rpi1) ...
Preparing to unpack .../1-libctf-nobfd0_2.40-2+rpi2_armhf.deb ...
Unpacking libctf-nobfd0:armhf (2.40-2+rpi2) over (2.35.2-2+rpi1) ...
Preparing to unpack .../2-libjansson4_2.14-2_armhf.deb ...
Unpacking libjansson4:armhf (2.14-2) over (2.13.1-1.1) ...
Preparing to unpack .../3-binutils-arm-linux-gnueabihf_2.40-2+rpi2_armhf.deb ...
Unpacking binutils-arm-linux-gnueabihf (2.40-2+rpi2) over (2.35.2-2+rpi1) ...
Preparing to unpack .../4-libbinutils_2.40-2+rpi2_armhf.deb ...
Unpacking libbinutils:armhf (2.40-2+rpi2) over (2.35.2-2+rpi1) ...
Preparing to unpack .../5-binutils-common_2.40-2+rpi2_armhf.deb ...
Unpacking binutils-common:armhf (2.40-2+rpi2) over (2.35.2-2+rpi1) ...
Selecting previously unselected package libffi8:armhf.
Preparing to unpack .../6-libffi8_3.4.4-1_armhf.deb ...
Unpacking libffi8:armhf (3.4.4-1) ...
Setting up libffi8:armhf (3.4.4-1) ...
(Reading database ... 107878 files and directories currently installed.)
Preparing to unpack .../libglib2.0-dev-bin_2.74.6-1_armhf.deb ...
Unpacking libglib2.0-dev-bin (2.74.6-1) over (2.66.8-1) ...
Preparing to unpack .../libglib2.0-bin_2.74.6-1_armhf.deb ...
Unpacking libglib2.0-bin (2.74.6-1) over (2.66.8-1) ...
Preparing to unpack .../libglib2.0-0_2.74.6-1_armhf.deb ...
Unpacking libglib2.0-0:armhf (2.74.6-1) over (2.66.8-1) ...
Preparing to unpack .../libpam0g-dev_1.5.2-6_armhf.deb ...
Unpacking libpam0g-dev:armhf (1.5.2-6) over (1.4.0-9+deb11u1+rpt2) ...
Preparing to unpack .../libpam0g_1.5.2-6_armhf.deb ...
Unpacking libpam0g:armhf (1.5.2-6) over (1.4.0-9+deb11u1+rpt2) ...
Setting up libpam0g:armhf (1.5.2-6) ...
(Reading database ... 107880 files and directories currently installed.)
Preparing to unpack .../libcrypt1_1%3a4.4.33-2_armhf.deb ...
Unpacking libcrypt1:armhf (1:4.4.33-2) over (1:4.4.18-4) ...
Setting up libcrypt1:armhf (1:4.4.33-2) ...
(Reading database ... 107880 files and directories currently installed.)
Preparing to unpack .../libcrypt-dev_1%3a4.4.33-2_armhf.deb ...
Unpacking libcrypt-dev:armhf (1:4.4.33-2) over (1:4.4.18-4) ...
Preparing to unpack .../libc-bin_2.36-9+rpi1+deb12u1_armhf.deb ...
Unpacking libc-bin (2.36-9+rpi1+deb12u1) over (2.31-13+rpt2+rpi1+deb11u5) ...
Setting up libc-bin (2.36-9+rpi1+deb12u1) ...
(Reading database ... 107883 files and directories currently installed.)
Preparing to unpack .../0-libapt-pkg-perl_0.1.40+b4_armhf.deb ...
Unpacking libapt-pkg-perl (0.1.40+b4) over (0.1.39) ...
Preparing to unpack .../1-liblist-moreutils-xs-perl_0.430-3+b1_armhf.deb ...
Unpacking liblist-moreutils-xs-perl (0.430-3+b1) over (0.430-2) ...
Preparing to unpack .../2-libtext-iconv-perl_1.7-8_armhf.deb ...
Unpacking libtext-iconv-perl:armhf (1.7-8) over (1.7-7+b1) ...
Preparing to unpack .../3-libtext-charwidth-perl_0.04-11_armhf.deb ...
Unpacking libtext-charwidth-perl:armhf (0.04-11) over (0.04-10+b1) ...
Preparing to unpack .../4-perl_5.36.0-7_armhf.deb ...
Unpacking perl (5.36.0-7) over (5.32.1-4+deb11u2) ...
Selecting previously unselected package perl-modules-5.36.
Preparing to unpack .../5-perl-modules-5.36_5.36.0-7_all.deb ...
Unpacking perl-modules-5.36 (5.36.0-7) ...
Preparing to unpack .../6-libgdbm6_1.23-3_armhf.deb ...
Unpacking libgdbm6:armhf (1.23-3) over (1.19-2) ...
Selecting previously unselected package libperl5.36:armhf.
Preparing to unpack .../7-libperl5.36_5.36.0-7_armhf.deb ...
Unpacking libperl5.36:armhf (5.36.0-7) ...
Preparing to unpack .../8-perl-base_5.36.0-7_armhf.deb ...
Unpacking perl-base (5.36.0-7) over (5.32.1-4+deb11u2) ...
Setting up perl-base (5.36.0-7) ...
(Reading database ... 109809 files and directories currently installed.)
Preparing to unpack .../liblocale-gettext-perl_1.07-5_armhf.deb ...
Unpacking liblocale-gettext-perl (1.07-5) over (1.07-4+b1) ...
Preparing to unpack .../zlib1g-dev_1%3a1.2.13.dfsg-1_armhf.deb ...
Unpacking zlib1g-dev:armhf (1:1.2.13.dfsg-1) over (1:1.2.11.dfsg-2+deb11u2) ...
Preparing to unpack .../zlib1g_1%3a1.2.13.dfsg-1_armhf.deb ...
Unpacking zlib1g:armhf (1:1.2.13.dfsg-1) over (1:1.2.11.dfsg-2+deb11u2) ...
Setting up zlib1g:armhf (1:1.2.13.dfsg-1) ...
Selecting previously unselected package gcc-12-base:armhf.
(Reading database ... 109809 files and directories currently installed.)
Preparing to unpack .../gcc-12-base_12.2.0-14+rpi1_armhf.deb ...
Unpacking gcc-12-base:armhf (12.2.0-14+rpi1) ...
Setting up gcc-12-base:armhf (12.2.0-14+rpi1) ...
(Reading database ... 109814 files and directories currently installed.)
Preparing to unpack .../libgcc-s1_12.2.0-14+rpi1_armhf.deb ...
Unpacking libgcc-s1:armhf (12.2.0-14+rpi1) over (10.2.1-6+rpi1) ...
Setting up libgcc-s1:armhf (12.2.0-14+rpi1) ...
(Reading database ... 109814 files and directories currently installed.)
Preparing to unpack .../libglib2.0-data_2.74.6-1_all.deb ...
Unpacking libglib2.0-data (2.74.6-1) over (2.66.8-1) ...
Preparing to unpack .../liblzma-dev_5.4.1-0.2_armhf.deb ...
Unpacking liblzma-dev:armhf (5.4.1-0.2) over (5.2.5-2.1~deb11u1) ...
Preparing to unpack .../liblzma5_5.4.1-0.2_armhf.deb ...
Unpacking liblzma5:armhf (5.4.1-0.2) over (5.2.5-2.1~deb11u1) ...
Setting up liblzma5:armhf (5.4.1-0.2) ...
(Reading database ... 109815 files and directories currently installed.)
Preparing to unpack .../libdw1_0.188-2.1+rpi1_armhf.deb ...
Unpacking libdw1:armhf (0.188-2.1+rpi1) over (0.183-1) ...
Preparing to unpack .../libelf1_0.188-2.1+rpi1_armhf.deb ...
Unpacking libelf1:armhf (0.188-2.1+rpi1) over (0.183-1) ...
Preparing to unpack .../libblkid-dev_2.38.1-5_armhf.deb ...
Unpacking libblkid-dev:armhf (2.38.1-5) over (2.36.1-8+deb11u1) ...
Preparing to unpack .../libblkid1_2.38.1-5_armhf.deb ...
Unpacking libblkid1:armhf (2.38.1-5) over (2.36.1-8+deb11u1) ...
Setting up libblkid1:armhf (2.38.1-5) ...
(Reading database ... 109816 files and directories currently installed.)
Preparing to unpack .../uuid-dev_2.38.1-5_armhf.deb ...
Unpacking uuid-dev:armhf (2.38.1-5) over (2.36.1-8+deb11u1) ...
Preparing to unpack .../libuuid1_2.38.1-5_armhf.deb ...
Unpacking libuuid1:armhf (2.38.1-5) over (2.36.1-8+deb11u1) ...
Setting up libuuid1:armhf (2.38.1-5) ...
(Reading database ... 109816 files and directories currently installed.)
Preparing to unpack .../libmount-dev_2.38.1-5_armhf.deb ...
Unpacking libmount-dev:armhf (2.38.1-5) over (2.36.1-8+deb11u1) ...
Preparing to unpack .../libmount1_2.38.1-5_armhf.deb ...
Unpacking libmount1:armhf (2.38.1-5) over (2.36.1-8+deb11u1) ...
Setting up libmount1:armhf (2.38.1-5) ...
(Reading database ... 109817 files and directories currently installed.)
Preparing to unpack .../libpcre2-dev_10.42-1_armhf.deb ...
Unpacking libpcre2-dev:armhf (10.42-1) over (10.36-2+deb11u1) ...
Preparing to unpack .../libpcre2-16-0_10.42-1_armhf.deb ...
Unpacking libpcre2-16-0:armhf (10.42-1) over (10.36-2+deb11u1) ...
Preparing to unpack .../libpcre2-32-0_10.42-1_armhf.deb ...
Unpacking libpcre2-32-0:armhf (10.42-1) over (10.36-2+deb11u1) ...
Selecting previously unselected package libpcre2-posix3:armhf.
Preparing to unpack .../libpcre2-posix3_10.42-1_armhf.deb ...
Unpacking libpcre2-posix3:armhf (10.42-1) ...
Preparing to unpack .../libpcre2-8-0_10.42-1_armhf.deb ...
Unpacking libpcre2-8-0:armhf (10.42-1) over (10.36-2+deb11u1) ...
Setting up libpcre2-8-0:armhf (10.42-1) ...
(Reading database ... 109823 files and directories currently installed.)
Preparing to unpack .../libffi-dev_3.4.4-1_armhf.deb ...
Unpacking libffi-dev:armhf (3.4.4-1) over (3.3-6) ...
Selecting previously unselected package libpkgconf3:armhf.
Preparing to unpack .../libpkgconf3_1.8.1-1_armhf.deb ...
Unpacking libpkgconf3:armhf (1.8.1-1) ...
Selecting previously unselected package pkgconf-bin.
Preparing to unpack .../pkgconf-bin_1.8.1-1_armhf.deb ...
Unpacking pkgconf-bin (1.8.1-1) ...
Preparing to unpack .../archives/m4_1.4.19-3_armhf.deb ...
Unpacking m4 (1.4.19-3) over (1.4.18-5) ...
Preparing to unpack .../archives/adduser_3.134_all.deb ...
moving unchanged adduser.conf to adduser.conf.update-old. New dpkg-conffile will come from the package.
Unpacking adduser (3.134) over (3.118) ...
Setting up adduser (3.134) ...
Installing new version of config file /etc/deluser.conf ...
Selecting previously unselected package libbpf1:armhf.
(Reading database ... 109832 files and directories currently installed.)
Preparing to unpack .../libbpf1_1%3a1.1.0-1_armhf.deb ...
Unpacking libbpf1:armhf (1:1.1.0-1) ...
Preparing to unpack .../libmd-dev_1.0.4-2_armhf.deb ...
Unpacking libmd-dev:armhf (1.0.4-2) over (1.0.3-3) ...
Preparing to unpack .../libmd0_1.0.4-2_armhf.deb ...
Unpacking libmd0:armhf (1.0.4-2) over (1.0.3-3) ...
Setting up libmd0:armhf (1.0.4-2) ...
(Reading database ... 109837 files and directories currently installed.)
Preparing to unpack .../libbsd-dev_0.11.7-2_armhf.deb ...
Unpacking libbsd-dev:armhf (0.11.7-2) over (0.11.3-1) ...
Preparing to unpack .../libbsd0_0.11.7-2_armhf.deb ...
Unpacking libbsd0:armhf (0.11.7-2) over (0.11.3-1) ...
Preparing to unpack .../libcap2_1%3a2.66-4_armhf.deb ...
Unpacking libcap2:armhf (1:2.66-4) over (1:2.44-1) ...
Setting up libcap2:armhf (1:2.66-4) ...
(Reading database ... 109840 files and directories currently installed.)
Preparing to unpack .../libdb5.3-dev_5.3.28+dfsg2-1_armhf.deb ...
Unpacking libdb5.3-dev (5.3.28+dfsg2-1) over (5.3.28+dfsg1-0.8) ...
Preparing to unpack .../libdb5.3_5.3.28+dfsg2-1_armhf.deb ...
Unpacking libdb5.3:armhf (5.3.28+dfsg2-1) over (5.3.28+dfsg1-0.8) ...
Setting up libdb5.3:armhf (5.3.28+dfsg2-1) ...
(Reading database ... 109840 files and directories currently installed.)
Preparing to unpack .../00-libtirpc-common_1.3.3+ds-1_all.deb ...
Unpacking libtirpc-common (1.3.3+ds-1) over (1.3.1-1+deb11u1) ...
Preparing to unpack .../01-libtirpc-dev_1.3.3+ds-1_armhf.deb ...
Unpacking libtirpc-dev:armhf (1.3.3+ds-1) over (1.3.1-1+deb11u1) ...
Preparing to unpack .../02-libatomic1_12.2.0-14+rpi1_armhf.deb ...
Unpacking libatomic1:armhf (12.2.0-14+rpi1) over (10.2.1-6+rpi1) ...
Selecting previously unselected package libssl3:armhf.
Preparing to unpack .../03-libssl3_3.0.9-1_armhf.deb ...
Unpacking libssl3:armhf (3.0.9-1) ...
Preparing to unpack .../04-libkrb5-dev_1.20.1-2_armhf.deb ...
Unpacking libkrb5-dev:armhf (1.20.1-2) over (1.18.3-6+deb11u3) ...
Preparing to unpack .../05-krb5-multidev_1.20.1-2_armhf.deb ...
Unpacking krb5-multidev:armhf (1.20.1-2) over (1.18.3-6+deb11u3) ...
Preparing to unpack .../06-libgssrpc4_1.20.1-2_armhf.deb ...
Unpacking libgssrpc4:armhf (1.20.1-2) over (1.18.3-6+deb11u3) ...
Preparing to unpack .../07-comerr-dev_2.1-1.47.0-2_armhf.deb ...
Unpacking comerr-dev:armhf (2.1-1.47.0-2) over (2.1-1.46.2-2) ...
Preparing to unpack .../08-libcom-err2_1.47.0-2_armhf.deb ...
Unpacking libcom-err2:armhf (1.47.0-2) over (1.46.2-2) ...
Preparing to unpack .../09-libkdb5-10_1.20.1-2_armhf.deb ...
Unpacking libkdb5-10:armhf (1.20.1-2) over (1.18.3-6+deb11u3) ...
Preparing to unpack .../10-libkadm5srv-mit12_1.20.1-2_armhf.deb ...
Unpacking libkadm5srv-mit12:armhf (1.20.1-2) over (1.18.3-6+deb11u3) ...
Preparing to unpack .../11-libkadm5clnt-mit12_1.20.1-2_armhf.deb ...
Unpacking libkadm5clnt-mit12:armhf (1.20.1-2) over (1.18.3-6+deb11u3) ...
Preparing to unpack .../12-libkeyutils1_1.6.3-2_armhf.deb ...
Unpacking libkeyutils1:armhf (1.6.3-2) over (1.6.1-2) ...
Preparing to unpack .../13-libgssapi-krb5-2_1.20.1-2_armhf.deb ...
Unpacking libgssapi-krb5-2:armhf (1.20.1-2) over (1.18.3-6+deb11u3) ...
Preparing to unpack .../14-libk5crypto3_1.20.1-2_armhf.deb ...
Unpacking libk5crypto3:armhf (1.20.1-2) over (1.18.3-6+deb11u3) ...
Preparing to unpack .../15-libkrb5support0_1.20.1-2_armhf.deb ...
Unpacking libkrb5support0:armhf (1.20.1-2) over (1.18.3-6+deb11u3) ...
Preparing to unpack .../16-libkrb5-3_1.20.1-2_armhf.deb ...
Unpacking libkrb5-3:armhf (1.20.1-2) over (1.18.3-6+deb11u3) ...
Preparing to unpack .../17-libtirpc3_1.3.3+ds-1_armhf.deb ...
Unpacking libtirpc3:armhf (1.3.3+ds-1) over (1.3.1-1+deb11u1) ...
Preparing to unpack .../18-libxtables12_1.8.9-2_armhf.deb ...
Unpacking libxtables12:armhf (1.8.9-2) over (1.8.7-1) ...
Preparing to unpack .../19-libcap2-bin_1%3a2.66-4_armhf.deb ...
Unpacking libcap2-bin (1:2.66-4) over (1:2.44-1) ...
Preparing to unpack .../20-iproute2_6.1.0-3_armhf.deb ...
Unpacking iproute2 (6.1.0-3) over (5.10.0-4) ...
Preparing to unpack .../21-ifupdown_0.8.41_armhf.deb ...
Unpacking ifupdown (0.8.41) over (0.8.36) ...
Preparing to unpack .../22-libsmartcols1_2.38.1-5_armhf.deb ...
Unpacking libsmartcols1:armhf (2.38.1-5) over (2.36.1-8+deb11u1) ...
Setting up libsmartcols1:armhf (2.38.1-5) ...
(Reading database ... 109869 files and directories currently installed.)
Preparing to unpack .../libaudit-common_1%3a3.0.9-1_all.deb ...
Unpacking libaudit-common (1:3.0.9-1) over (1:3.0-2) ...
Setting up libaudit-common (1:3.0.9-1) ...
(Reading database ... 109869 files and directories currently installed.)
Preparing to unpack .../libcap-ng0_0.8.3-1+b1_armhf.deb ...
Unpacking libcap-ng0:armhf (0.8.3-1+b1) over (0.7.9-2.2+b1) ...
Setting up libcap-ng0:armhf (0.8.3-1+b1) ...
(Reading database ... 109871 files and directories currently installed.)
Preparing to unpack .../libaudit1_1%3a3.0.9-1_armhf.deb ...
Unpacking libaudit1:armhf (1:3.0.9-1) over (1:3.0-2) ...
Setting up libaudit1:armhf (1:3.0.9-1) ...
(Reading database ... 109871 files and directories currently installed.)
Preparing to unpack .../login_1%3a4.13+dfsg1-1_armhf.deb ...
Unpacking login (1:4.13+dfsg1-1) over (1:4.8.1-1) ...
Setting up login (1:4.13+dfsg1-1) ...
Installing new version of config file /etc/login.defs ...
(Reading database ... 109880 files and directories currently installed.)
Preparing to unpack .../libfdisk1_2.38.1-5_armhf.deb ...
Unpacking libfdisk1:armhf (2.38.1-5) over (2.36.1-8+deb11u1) ...
Preparing to unpack .../fdisk_2.38.1-5_armhf.deb ...
Unpacking fdisk (2.38.1-5) over (2.36.1-8+deb11u1) ...
Preparing to unpack .../util-linux_2.38.1-5_armhf.deb ...
Unpacking util-linux (2.38.1-5) over (2.36.1-8+deb11u1) ...
dpkg: warning: unable to delete old directory '/usr/lib/udev/rules.d': Directory not empty
dpkg: warning: unable to delete old directory '/usr/lib/udev': Directory not empty
Selecting previously unselected package util-linux-extra.
Preparing to unpack .../util-linux-extra_2.38.1-5_armhf.deb ...
Unpacking util-linux-extra (2.38.1-5) ...
Setting up util-linux-extra (2.38.1-5) ...
(Reading database ... 109891 files and directories currently installed.)
Preparing to unpack .../libncurses6_6.4-4_armhf.deb ...
Unpacking libncurses6:armhf (6.4-4) over (6.2+20201114-2+deb11u1) ...
Preparing to unpack .../libtinfo6_6.4-4_armhf.deb ...
Unpacking libtinfo6:armhf (6.4-4) over (6.2+20201114-2+deb11u1) ...
Setting up libtinfo6:armhf (6.4-4) ...
(Reading database ... 109889 files and directories currently installed.)
Preparing to unpack .../libncursesw6_6.4-4_armhf.deb ...
Unpacking libncursesw6:armhf (6.4-4) over (6.2+20201114-2+deb11u1) ...
Setting up libncursesw6:armhf (6.4-4) ...
(Reading database ... 109889 files and directories currently installed.)
Preparing to unpack .../libncurses5-dev_6.4-4_armhf.deb ...
Unpacking libncurses5-dev:armhf (6.4-4) over (6.2+20201114-2+deb11u1) ...
Preparing to unpack .../libncurses-dev_6.4-4_armhf.deb ...
Unpacking libncurses-dev:armhf (6.4-4) over (6.2+20201114-2+deb11u1) ...
Preparing to unpack .../ncurses-bin_6.4-4_armhf.deb ...
Unpacking ncurses-bin (6.4-4) over (6.2+20201114-2+deb11u1) ...
Setting up ncurses-bin (6.4-4) ...
(Reading database ... 109889 files and directories currently installed.)
Preparing to unpack .../tar_1.34+dfsg-1.2_armhf.deb ...
Unpacking tar (1.34+dfsg-1.2) over (1.34+dfsg-1) ...
Setting up tar (1.34+dfsg-1.2) ...
(Reading database ... 109889 files and directories currently installed.)
Preparing to unpack .../dpkg_1.21.22+rpi1_armhf.deb ...
Unpacking dpkg (1.21.22+rpi1) over (1.20.12+rpi1) ...
Setting up dpkg (1.21.22+rpi1) ...
Installing new version of config file /etc/cron.daily/dpkg ...
dpkg: warning: This system uses merged-usr-via-aliased-dirs, going behind dpkg's
dpkg: warning: back, breaking its core assumptions. This can cause silent file
dpkg: warning: overwrites and disappearances, and its general tools misbehavior.
dpkg: warning: See <https://wiki.debian.org/Teams/Dpkg/FAQ#broken-usrmerge>.
Created symlink /etc/systemd/system/timers.target.wants/dpkg-db-backup.timer → /lib/systemd/system/dpkg-db-bac
kup.timer.
dpkg-db-backup.service is a disabled or a static unit not running, not starting it.
(Reading database ... 109891 files and directories currently installed.)
Preparing to unpack .../libreadline-dev_8.2-1.3_armhf.deb ...
Unpacking libreadline-dev:armhf (8.2-1.3) over (8.1-1) ...
Preparing to unpack .../readline-common_8.2-1.3_all.deb ...
Unpacking readline-common (8.2-1.3) over (8.1-1) ...
Setting up readline-common (8.2-1.3) ...
(Reading database ... 109891 files and directories currently installed.)
Preparing to unpack .../libreadline8_8.2-1.3_armhf.deb ...
Unpacking libreadline8:armhf (8.2-1.3) over (8.1-1) ...
Setting up libreadline8:armhf (8.2-1.3) ...
(Reading database ... 109891 files and directories currently installed.)
Preparing to unpack .../xkb-data_2.35.1-1_all.deb ...
Unpacking xkb-data (2.35.1-1) over (2.29-2) ...
Preparing to unpack .../archives/kbd_2.5.1-1_armhf.deb ...
Unpacking kbd (2.5.1-1) over (2.3.0-3) ...
Selecting previously unselected package libnumber-compare-perl.
Preparing to unpack .../libnumber-compare-perl_0.03-3_all.deb ...
Unpacking libnumber-compare-perl (0.03-3) ...
Setting up libnumber-compare-perl (0.03-3) ...
Selecting previously unselected package libtext-glob-perl.
(Reading database ... 109900 files and directories currently installed.)
Preparing to unpack .../libtext-glob-perl_0.11-3_all.deb ...
Unpacking libtext-glob-perl (0.11-3) ...
Setting up libtext-glob-perl (0.11-3) ...
Selecting previously unselected package libfile-find-rule-perl.
(Reading database ... 109907 files and directories currently installed.)
Preparing to unpack .../libfile-find-rule-perl_0.34-3_all.deb ...
Unpacking libfile-find-rule-perl (0.34-3) ...
Setting up perl-modules-5.36 (5.36.0-7) ...
Setting up libgdbm6:armhf (1.23-3) ...
Setting up libperl5.36:armhf (5.36.0-7) ...
Setting up perl (5.36.0-7) ...
Setting up libfile-find-rule-perl (0.34-3) ...
Selecting previously unselected package usrmerge.
(Reading database ... 109921 files and directories currently installed.)
Preparing to unpack .../archives/usrmerge_35_all.deb ...
Unpacking usrmerge (35) ...
Setting up usrmerge (35) ...
(Reading database ... 109928 files and directories currently installed.)
Preparing to unpack .../init-system-helpers_1.65.2_all.deb ...
Unpacking init-system-helpers (1.65.2) over (1.60) ...
Setting up init-system-helpers (1.65.2) ...
(Reading database ... 109928 files and directories currently installed.)
Preparing to unpack .../console-setup-linux_1.221_all.deb ...
Unpacking console-setup-linux (1.221) over (1.205+rpt1) ...
Preparing to unpack .../console-setup_1.221_all.deb ...
Unpacking console-setup (1.221) over (1.205+rpt1) ...
Preparing to unpack .../keyboard-configuration_1.221_all.deb ...
Unpacking keyboard-configuration (1.221) over (1.205+rpt1) ...
Preparing to unpack .../lsb-base_11.6+rpi1_all.deb ...
Unpacking lsb-base (11.6+rpi1) over (11.1.0+rpi1) ...
Preparing to unpack .../sysvinit-utils_3.06-4_armhf.deb ...
Unpacking sysvinit-utils (3.06-4) over (2.96-7+deb11u1) ...
Setting up sysvinit-utils (3.06-4) ...
(Reading database ... 109929 files and directories currently installed.)
Preparing to unpack .../x11-common_1%3a7.7+23_all.deb ...
Unpacking x11-common (1:7.7+23) over (1:7.7+22) ...
Preparing to unpack .../debianutils_5.7-0.4_armhf.deb ...
Unpacking debianutils (5.7-0.4) over (4.11.2) ...
Setting up debianutils (5.7-0.4) ...
update-alternatives: using /usr/bin/which.debianutils to provide /usr/bin/which (which) in auto mode
(Reading database ... 109932 files and directories currently installed.)
Preparing to unpack .../0-autoconf_2.71-3_all.deb ...
Unpacking autoconf (2.71-3) over (2.69-14) ...
Preparing to unpack .../1-pkg-config_1.8.1-1_armhf.deb ...
Removing leftover symlink /usr/bin/arm-linux-gnueabihf-pkg-config
Unpacking pkg-config:armhf (1.8.1-1) over (0.29.2-1) ...
Removing obsolete conffile /etc/dpkg/dpkg.cfg.d/pkg-config-hook-config ...
Selecting previously unselected package pkgconf:armhf.
Preparing to unpack .../2-pkgconf_1.8.1-1_armhf.deb ...
Unpacking pkgconf:armhf (1.8.1-1) ...
Preparing to unpack .../3-libbz2-dev_1.0.8-5+b2_armhf.deb ...
Unpacking libbz2-dev:armhf (1.0.8-5+b2) over (1.0.8-4) ...
Preparing to unpack .../4-bzip2_1.0.8-5+b2_armhf.deb ...
Unpacking bzip2 (1.0.8-5+b2) over (1.0.8-4) ...
Preparing to unpack .../5-libbz2-1.0_1.0.8-5+b2_armhf.deb ...
Unpacking libbz2-1.0:armhf (1.0.8-5+b2) over (1.0.8-4) ...
Setting up libbz2-1.0:armhf (1.0.8-5+b2) ...
(Reading database ... 109943 files and directories currently installed.)
Preparing to unpack .../libgdbm-compat4_1.23-3_armhf.deb ...
Unpacking libgdbm-compat4:armhf (1.23-3) over (1.19-2) ...
Preparing to unpack .../libgpg-error-dev_1.46-1_armhf.deb ...
Unpacking libgpg-error-dev (1.46-1) over (1.38-2) ...
Preparing to unpack .../libgpg-error0_1.46-1_armhf.deb ...
Unpacking libgpg-error0:armhf (1.46-1) over (1.38-2) ...
Setting up libgpg-error0:armhf (1.46-1) ...
(Reading database ... 109940 files and directories currently installed.)
Preparing to unpack .../libgcrypt20-dev_1.10.1-3_armhf.deb ...
Unpacking libgcrypt20-dev (1.10.1-3) over (1.8.7-6) ...
Preparing to unpack .../libgcrypt20_1.10.1-3_armhf.deb ...
Unpacking libgcrypt20:armhf (1.10.1-3) over (1.8.7-6) ...
Setting up libgcrypt20:armhf (1.10.1-3) ...
(Reading database ... 109942 files and directories currently installed.)
Preparing to unpack .../libstdc++6_12.2.0-14+rpi1_armhf.deb ...
Unpacking libstdc++6:armhf (12.2.0-14+rpi1) over (10.2.1-6+rpi1) ...
Setting up libstdc++6:armhf (12.2.0-14+rpi1) ...
(Reading database ... 109942 files and directories currently installed.)
Preparing to unpack .../liblz4-1_1.9.4-1+rpi1+b1_armhf.deb ...
Unpacking liblz4-1:armhf (1.9.4-1+rpi1+b1) over (1.9.3-2) ...
Setting up liblz4-1:armhf (1.9.4-1+rpi1+b1) ...
(Reading database ... 109943 files and directories currently installed.)
Preparing to unpack .../0-libsystemd-dev_252.12-1~deb12u1+rpi1_armhf.deb ...
Unpacking libsystemd-dev:armhf (252.12-1~deb12u1+rpi1) over (247.3-7+rpi1+deb11u2) ...
Preparing to unpack .../1-libargon2-dev_0~20171227-0.3+deb12u1_armhf.deb ...
Unpacking libargon2-dev:armhf (0~20171227-0.3+deb12u1) over (0~20171227-0.2) ...
Preparing to unpack .../2-libargon2-1_0~20171227-0.3+deb12u1_armhf.deb ...
Unpacking libargon2-1:armhf (0~20171227-0.3+deb12u1) over (0~20171227-0.2) ...
Preparing to unpack .../3-dmsetup_2%3a1.02.185-2_armhf.deb ...
Unpacking dmsetup (2:1.02.185-2) over (2:1.02.175-2.1) ...
Preparing to unpack .../4-libudev-dev_252.12-1~deb12u1+rpi1_armhf.deb ...
Unpacking libudev-dev:armhf (252.12-1~deb12u1+rpi1) over (247.3-7+rpi1+deb11u2) ...
Preparing to unpack .../5-libattr1-dev_1%3a2.5.1-4_armhf.deb ...
Unpacking libattr1-dev:armhf (1:2.5.1-4) over (1:2.4.48-6) ...
Preparing to unpack .../6-libattr1_1%3a2.5.1-4_armhf.deb ...
Unpacking libattr1:armhf (1:2.5.1-4) over (1:2.4.48-6) ...
Setting up libattr1:armhf (1:2.5.1-4) ...
Installing new version of config file /etc/xattr.conf ...
(Reading database ... 109987 files and directories currently installed.)
Preparing to unpack .../libacl1-dev_2.3.1-3_armhf.deb ...
Unpacking libacl1-dev:armhf (2.3.1-3) over (2.2.53-10) ...
Preparing to unpack .../libacl1_2.3.1-3_armhf.deb ...
Unpacking libacl1:armhf (2.3.1-3) over (2.2.53-10) ...
Setting up libacl1:armhf (2.3.1-3) ...
(Reading database ... 109988 files and directories currently installed.)
Preparing to unpack .../0-kmod_30+20221128-1_armhf.deb ...
Unpacking kmod (30+20221128-1) over (28-1) ...
Preparing to unpack .../1-libkmod2_30+20221128-1_armhf.deb ...
Unpacking libkmod2:armhf (30+20221128-1) over (28-1) ...
Preparing to unpack .../2-less_590-2_armhf.deb ...
Unpacking less (590-2) over (551-2) ...
Preparing to unpack .../3-libpam-systemd_252.12-1~deb12u1+rpi1_armhf.deb ...
Unpacking libpam-systemd:armhf (252.12-1~deb12u1+rpi1) over (247.3-7+rpi1+deb11u2) ...
Preparing to unpack .../4-systemd-timesyncd_252.12-1~deb12u1+rpi1_armhf.deb ...
Unpacking systemd-timesyncd (252.12-1~deb12u1+rpi1) over (247.3-7+rpi1+deb11u2) ...
Preparing to unpack .../5-xserver-xorg-video-fbdev_1%3a0.5.0-2_armhf.deb ...
Unpacking xserver-xorg-video-fbdev (1:0.5.0-2) over (1:0.5.0-1+b2) ...
Preparing to unpack .../6-xserver-xorg-core_2%3a21.1.7-3_armhf.deb ...
Unpacking xserver-xorg-core (2:21.1.7-3) over (2:1.20.11-1+rpt3+deb11u6) ...
Setting up libatomic1:armhf (12.2.0-14+rpi1) ...
Setting up libssl3:armhf (3.0.9-1) ...
(Reading database ... 109989 files and directories currently installed.)
Preparing to unpack .../systemd_252.12-1~deb12u1+rpi1_armhf.deb ...
Unpacking systemd (252.12-1~deb12u1+rpi1) over (247.3-7+rpi1+deb11u2) ...
Preparing to unpack .../udev_252.12-1~deb12u1+rpi1_armhf.deb ...
Unpacking udev (252.12-1~deb12u1+rpi1) over (247.3-7+rpi1+deb11u2) ...
Preparing to unpack .../libudev1_252.12-1~deb12u1+rpi1_armhf.deb ...
Unpacking libudev1:armhf (252.12-1~deb12u1+rpi1) over (247.3-7+rpi1+deb11u2) ...
Setting up libudev1:armhf (252.12-1~deb12u1+rpi1) ...
(Reading database ... 110060 files and directories currently installed.)
Preparing to unpack .../0-libdevmapper1.02.1_2%3a1.02.185-2_armhf.deb ...
Unpacking libdevmapper1.02.1:armhf (2:1.02.185-2) over (2:1.02.175-2.1) ...
Preparing to unpack .../1-libjson-c5_0.16-2_armhf.deb ...
Unpacking libjson-c5:armhf (0.16-2) over (0.15-2+deb11u1) ...
Preparing to unpack .../2-libcryptsetup12_2%3a2.6.1-4~deb12u1_armhf.deb ...
Unpacking libcryptsetup12:armhf (2:2.6.1-4~deb12u1) over (2:2.3.7-1+deb11u1) ...
Preparing to unpack .../3-libapparmor-dev_3.0.8-3_armhf.deb ...
Unpacking libapparmor-dev:armhf (3.0.8-3) over (2.13.6-10) ...
Preparing to unpack .../4-libapparmor1_3.0.8-3_armhf.deb ...
Unpacking libapparmor1:armhf (3.0.8-3) over (2.13.6-10) ...
Preparing to unpack .../5-libip4tc2_1.8.9-2_armhf.deb ...
Unpacking libip4tc2:armhf (1.8.9-2) over (1.8.7-1) ...
Preparing to unpack .../6-libseccomp2_2.5.4-1+rpi1+b1_armhf.deb ...
Unpacking libseccomp2:armhf (2.5.4-1+rpi1+b1) over (2.5.1-1+rpi1+deb11u1) ...
Setting up libseccomp2:armhf (2.5.4-1+rpi1+b1) ...
Selecting previously unselected package libsystemd-shared:armhf.
(Reading database ... 110061 files and directories currently installed.)
Preparing to unpack .../libsystemd-shared_252.12-1~deb12u1+rpi1_armhf.deb ...
Unpacking libsystemd-shared:armhf (252.12-1~deb12u1+rpi1) ...
Preparing to unpack .../libpam-modules-bin_1.5.2-6_armhf.deb ...
Unpacking libpam-modules-bin (1.5.2-6) over (1.4.0-9+deb11u1+rpt2) ...
Replacing files in old package libpam-modules:armhf (1.4.0-9+deb11u1+rpt2) ...
Setting up libpam-modules-bin (1.5.2-6) ...
(Reading database ... 110075 files and directories currently installed.)
Preparing to unpack .../libpam-modules_1.5.2-6_armhf.deb ...
Unpacking libpam-modules:armhf (1.5.2-6) over (1.4.0-9+deb11u1+rpt2) ...
Setting up libpam-modules:armhf (1.5.2-6) ...
Installing new version of config file /etc/security/limits.conf ...
Installing new version of config file /etc/security/sepermit.conf ...
(Reading database ... 110076 files and directories currently installed.)
Preparing to unpack .../libpam-runtime_1.5.2-6_all.deb ...
Unpacking libpam-runtime (1.5.2-6) over (1.4.0-9+deb11u1+rpt2) ...
Setting up libpam-runtime (1.5.2-6) ...
(Reading database ... 110076 files and directories currently installed.)
Preparing to unpack .../00-dbus-user-session_1.14.8-2~deb12u1_armhf.deb ...
Unpacking dbus-user-session (1.14.8-2~deb12u1) over (1.12.24-0+deb11u1) ...
Preparing to unpack .../01-dbus-x11_1.14.8-2~deb12u1_armhf.deb ...
Unpacking dbus-x11 (1.14.8-2~deb12u1) over (1.12.24-0+deb11u1) ...
Preparing to unpack .../02-libdbus-1-3_1.14.8-2~deb12u1_armhf.deb ...
Unpacking libdbus-1-3:armhf (1.14.8-2~deb12u1) over (1.12.24-0+deb11u1) ...
Preparing to unpack .../03-dbus_1.14.8-2~deb12u1_armhf.deb ...
Unpacking dbus (1.14.8-2~deb12u1) over (1.12.24-0+deb11u1) ...
Selecting previously unselected package dbus-session-bus-common.
Preparing to unpack .../04-dbus-session-bus-common_1.14.8-2~deb12u1_all.deb ...
Unpacking dbus-session-bus-common (1.14.8-2~deb12u1) ...
Preparing to unpack .../05-libexpat1-dev_2.5.0-1_armhf.deb ...
Unpacking libexpat1-dev:armhf (2.5.0-1) over (2.2.10-2+deb11u5) ...
Preparing to unpack .../06-libexpat1_2.5.0-1_armhf.deb ...
Unpacking libexpat1:armhf (2.5.0-1) over (2.2.10-2+deb11u5) ...
Selecting previously unselected package dbus-daemon.
Preparing to unpack .../07-dbus-daemon_1.14.8-2~deb12u1_armhf.deb ...
Unpacking dbus-daemon (1.14.8-2~deb12u1) ...
Preparing to unpack .../08-x11proto-dev_2022.1-1_all.deb ...
Unpacking x11proto-dev (2022.1-1) over (2020.1-1) ...
Preparing to unpack .../09-libxcb1-dev_1.15-1_armhf.deb ...
Unpacking libxcb1-dev:armhf (1.15-1) over (1.14-3) ...
Preparing to unpack .../10-libxcb1_1.15-1_armhf.deb ...
Unpacking libxcb1:armhf (1.15-1) over (1.14-3) ...
Preparing to unpack .../11-libx11-dev_2%3a1.8.4-2+deb12u1_armhf.deb ...
Unpacking libx11-dev:armhf (2:1.8.4-2+deb12u1) over (2:1.7.2-1+deb11u1) ...
Preparing to unpack .../12-libx11-data_2%3a1.8.4-2+deb12u1_all.deb ...
Unpacking libx11-data (2:1.8.4-2+deb12u1) over (2:1.7.2-1+deb11u1) ...
Preparing to unpack .../13-libx11-6_2%3a1.8.4-2+deb12u1_armhf.deb ...
Unpacking libx11-6:armhf (2:1.8.4-2+deb12u1) over (2:1.7.2-1+deb11u1) ...
Preparing to unpack .../14-libx11-xcb1_2%3a1.8.4-2+deb12u1_armhf.deb ...
Unpacking libx11-xcb1:armhf (2:1.8.4-2+deb12u1) over (2:1.7.2-1+deb11u1) ...
Selecting previously unselected package dbus-bin.
Preparing to unpack .../15-dbus-bin_1.14.8-2~deb12u1_armhf.deb ...
Unpacking dbus-bin (1.14.8-2~deb12u1) ...
Selecting previously unselected package dbus-system-bus-common.
Preparing to unpack .../16-dbus-system-bus-common_1.14.8-2~deb12u1_all.deb ...
Unpacking dbus-system-bus-common (1.14.8-2~deb12u1) ...
Preparing to unpack .../17-libsystemd0_252.12-1~deb12u1+rpi1_armhf.deb ...
Unpacking libsystemd0:armhf (252.12-1~deb12u1+rpi1) over (247.3-7+rpi1+deb11u2) ...
Setting up libsystemd0:armhf (252.12-1~deb12u1+rpi1) ...
Setting up libargon2-1:armhf (0~20171227-0.3+deb12u1) ...
Setting up libjson-c5:armhf (0.16-2) ...
Setting up libfdisk1:armhf (2.38.1-5) ...
Setting up libkmod2:armhf (30+20221128-1) ...
Setting up libapparmor1:armhf (3.0.8-3) ...
Setting up libip4tc2:armhf (1.8.9-2) ...
Setting up libsystemd-shared:armhf (252.12-1~deb12u1+rpi1) ...
Setting up libdevmapper1.02.1:armhf (2:1.02.185-2) ...
Setting up libcryptsetup12:armhf (2:2.6.1-4~deb12u1) ...
Setting up systemd (252.12-1~deb12u1+rpi1) ...
Installing new version of config file /etc/systemd/journald.conf ...
Installing new version of config file /etc/systemd/logind.conf ...
Installing new version of config file /etc/systemd/networkd.conf ...
Installing new version of config file /etc/systemd/pstore.conf ...
Installing new version of config file /etc/systemd/sleep.conf ...
Installing new version of config file /etc/systemd/system.conf ...
Installing new version of config file /etc/systemd/user.conf ...
Removing obsolete conffile /etc/systemd/resolved.conf ...
Setting up dmsetup (2:1.02.185-2) ...
(Reading database ... 110100 files and directories currently installed.)
Preparing to unpack .../00-systemd-sysv_252.12-1~deb12u1+rpi1_armhf.deb ...
Unpacking systemd-sysv (252.12-1~deb12u1+rpi1) over (247.3-7+rpi1+deb11u2) ...
Preparing to unpack .../01-libxext6_2%3a1.3.4-1_armhf.deb ...
Unpacking libxext6:armhf (2:1.3.4-1) over (2:1.3.3-1.1) ...
Preparing to unpack .../02-libxt-dev_1%3a1.2.1-1.1_armhf.deb ...
Unpacking libxt-dev:armhf (1:1.2.1-1.1) over (1:1.2.0-1) ...
Preparing to unpack .../03-libxt6_1%3a1.2.1-1.1_armhf.deb ...
Unpacking libxt6:armhf (1:1.2.1-1.1) over (1:1.2.0-1) ...
Preparing to unpack .../04-libxmu6_2%3a1.1.3-3_armhf.deb ...
Unpacking libxmu6:armhf (2:1.1.3-3) over (2:1.1.2-2+b3) ...
Preparing to unpack .../05-libxpm-dev_1%3a3.5.12-1.1_armhf.deb ...
Unpacking libxpm-dev:armhf (1:3.5.12-1.1) over (1:3.5.12-1.1~deb11u1) ...
Preparing to unpack .../06-libxpm4_1%3a3.5.12-1.1_armhf.deb ...
Unpacking libxpm4:armhf (1:3.5.12-1.1) over (1:3.5.12-1.1~deb11u1) ...
Preparing to unpack .../07-libxaw7_2%3a1.0.14-1_armhf.deb ...
Unpacking libxaw7:armhf (2:1.0.14-1) over (2:1.0.13-1.1) ...
Preparing to unpack .../08-libxrender1_1%3a0.9.10-1.1_armhf.deb ...
Unpacking libxrender1:armhf (1:0.9.10-1.1) over (1:0.9.10-1) ...
Preparing to unpack .../09-libxrandr2_2%3a1.5.2-2_armhf.deb ...
Unpacking libxrandr2:armhf (2:1.5.2-2) over (2:1.5.1-1) ...
Preparing to unpack .../10-x11-xkb-utils_7.7+7_armhf.deb ...
Unpacking x11-xkb-utils (7.7+7) over (7.7+5) ...
Preparing to unpack .../11-xserver-common_2%3a21.1.7-3_all.deb ...
Unpacking xserver-common (2:21.1.7-3) over (2:1.20.11-1+rpt3+deb11u6) ...
Selecting previously unselected package libxcvt0:armhf.
Preparing to unpack .../12-libxcvt0_0.1.2-1_armhf.deb ...
Unpacking libxcvt0:armhf (0.1.2-1) ...
Preparing to unpack .../13-libgl1_1.6.0-1_armhf.deb ...
Unpacking libgl1:armhf (1.6.0-1) over (1.3.2-1) ...
Preparing to unpack .../14-libdrm-common_2.4.114-1+rpi1_all.deb ...
Unpacking libdrm-common (2.4.114-1+rpi1) over (2.4.104-1+rpi1) ...
Preparing to unpack .../15-libdrm2_2.4.114-1+rpi1_armhf.deb ...
Unpacking libdrm2:armhf (2.4.114-1+rpi1) over (2.4.104-1+rpi1) ...
Preparing to unpack .../16-libwayland-server0_1.21.0-1_armhf.deb ...
Unpacking libwayland-server0:armhf (1.21.0-1) over (1.18.0-2~exp1.1) ...
Preparing to unpack .../17-libegl-mesa0_22.3.6-1+deb12u1+rpi1_armhf.deb ...
Unpacking libegl-mesa0:armhf (22.3.6-1+deb12u1+rpi1) over (20.3.5-1+rpt5+rpi1) ...
Preparing to unpack .../18-libgbm1_22.3.6-1+deb12u1+rpi1_armhf.deb ...
Unpacking libgbm1:armhf (22.3.6-1+deb12u1+rpi1) over (20.3.5-1+rpt5+rpi1) ...
Preparing to unpack .../19-libwayland-client0_1.21.0-1_armhf.deb ...
Unpacking libwayland-client0:armhf (1.21.0-1) over (1.18.0-2~exp1.1) ...
Preparing to unpack .../20-libxcb-dri2-0_1.15-1_armhf.deb ...
Unpacking libxcb-dri2-0:armhf (1.15-1) over (1.14-3) ...
Preparing to unpack .../21-libxcb-dri3-0_1.15-1_armhf.deb ...
Unpacking libxcb-dri3-0:armhf (1.15-1) over (1.14-3) ...
Preparing to unpack .../22-libxcb-present0_1.15-1_armhf.deb ...
Unpacking libxcb-present0:armhf (1.15-1) over (1.14-3) ...
Preparing to unpack .../23-libxcb-randr0_1.15-1_armhf.deb ...
Unpacking libxcb-randr0:armhf (1.15-1) over (1.14-3) ...
Preparing to unpack .../24-libxcb-sync1_1.15-1_armhf.deb ...
Unpacking libxcb-sync1:armhf (1.15-1) over (1.14-3) ...
Preparing to unpack .../25-libxcb-xfixes0_1.15-1_armhf.deb ...
Unpacking libxcb-xfixes0:armhf (1.15-1) over (1.14-3) ...
Preparing to unpack .../26-libdrm-amdgpu1_2.4.114-1+rpi1_armhf.deb ...
Unpacking libdrm-amdgpu1:armhf (2.4.114-1+rpi1) over (2.4.104-1+rpi1) ...
Preparing to unpack .../27-libz3-4_4.8.12-3.1_armhf.deb ...
Unpacking libz3-4:armhf (4.8.12-3.1) over (4.8.10-1) ...
Preparing to unpack .../28-libedit-dev_3.1-20221030-2_armhf.deb ...
Unpacking libedit-dev:armhf (3.1-20221030-2) over (3.1-20191231-2) ...
Preparing to unpack .../29-libedit2_3.1-20221030-2_armhf.deb ...
Unpacking libedit2:armhf (3.1-20221030-2) over (3.1-20191231-2) ...
Selecting previously unselected package libicu72:armhf.
Preparing to unpack .../30-libicu72_72.1-3_armhf.deb ...
Unpacking libicu72:armhf (72.1-3) ...
dpkg: considering deconfiguration of icu-devtools, which would be broken by installation of libicu-dev:armhf .
..
dpkg: yes, will deconfigure icu-devtools (broken by libicu-dev:armhf)
Preparing to unpack .../31-libicu-dev_72.1-3_armhf.deb ...
De-configuring icu-devtools (67.1-7), to allow installation of libicu-dev:armhf (72.1-3) ...
Unpacking libicu-dev:armhf (72.1-3) over (67.1-7) ...
Preparing to unpack .../32-icu-devtools_72.1-3_armhf.deb ...
Unpacking icu-devtools (72.1-3) over (67.1-7) ...
Preparing to unpack .../33-libxml2-dev_2.9.14+dfsg-1.3~deb12u1_armhf.deb ...
Unpacking libxml2-dev:armhf (2.9.14+dfsg-1.3~deb12u1) over (2.9.10+dfsg-6.7+deb11u4) ...
Preparing to unpack .../34-libxml2_2.9.14+dfsg-1.3~deb12u1_armhf.deb ...
Unpacking libxml2:armhf (2.9.14+dfsg-1.3~deb12u1) over (2.9.10+dfsg-6.7+deb11u4) ...
Selecting previously unselected package libllvm15:armhf.
Preparing to unpack .../35-libllvm15_1%3a15.0.6-4+rpi1+b1_armhf.deb ...
Unpacking libllvm15:armhf (1:15.0.6-4+rpi1+b1) ...
Preparing to unpack .../36-libdrm-nouveau2_2.4.114-1+rpi1_armhf.deb ...
Unpacking libdrm-nouveau2:armhf (2.4.114-1+rpi1) over (2.4.104-1+rpi1) ...
Preparing to unpack .../37-libdrm-radeon1_2.4.114-1+rpi1_armhf.deb ...
Unpacking libdrm-radeon1:armhf (2.4.114-1+rpi1) over (2.4.104-1+rpi1) ...
Preparing to unpack .../38-libsensors-dev_1%3a3.6.0-7.1_armhf.deb ...
Unpacking libsensors-dev:armhf (1:3.6.0-7.1) over (1:3.6.0-7) ...
Preparing to unpack .../39-libsensors-config_1%3a3.6.0-7.1_all.deb ...
Unpacking libsensors-config (1:3.6.0-7.1) over (1:3.6.0-7) ...
Preparing to unpack .../40-libsensors5_1%3a3.6.0-7.1_armhf.deb ...
Unpacking libsensors5:armhf (1:3.6.0-7.1) over (1:3.6.0-7) ...
Preparing to unpack .../41-libgl1-mesa-dri_22.3.6-1+deb12u1+rpi1_armhf.deb ...
Unpacking libgl1-mesa-dri:armhf (22.3.6-1+deb12u1+rpi1) over (20.3.5-1+rpt5+rpi1) ...
Preparing to unpack .../42-libglx-mesa0_22.3.6-1+deb12u1+rpi1_armhf.deb ...
Unpacking libglx-mesa0:armhf (22.3.6-1+deb12u1+rpi1) over (20.3.5-1+rpt5+rpi1) ...
Preparing to unpack .../43-libglapi-mesa_22.3.6-1+deb12u1+rpi1_armhf.deb ...
Unpacking libglapi-mesa:armhf (22.3.6-1+deb12u1+rpi1) over (20.3.5-1+rpt5+rpi1) ...
Preparing to unpack .../44-libxcb-glx0_1.15-1_armhf.deb ...
Unpacking libxcb-glx0:armhf (1.15-1) over (1.14-3) ...
Preparing to unpack .../45-libxcb-shm0_1.15-1_armhf.deb ...
Unpacking libxcb-shm0:armhf (1.15-1) over (1.14-3) ...
Preparing to unpack .../46-libxfixes3_1%3a6.0.0-2_armhf.deb ...
Unpacking libxfixes3:armhf (1:6.0.0-2) over (1:5.0.3-2) ...
Preparing to unpack .../47-libglx0_1.6.0-1_armhf.deb ...
Unpacking libglx0:armhf (1.6.0-1) over (1.3.2-1) ...
Preparing to unpack .../48-libgles2_1.6.0-1_armhf.deb ...
Unpacking libgles2:armhf (1.6.0-1) over (1.3.2-1) ...
Preparing to unpack .../49-libegl1_1.6.0-1_armhf.deb ...
Unpacking libegl1:armhf (1.6.0-1) over (1.3.2-1) ...
Preparing to unpack .../50-libglvnd0_1.6.0-1_armhf.deb ...
Unpacking libglvnd0:armhf (1.6.0-1) over (1.3.2-1) ...
Preparing to unpack .../51-libepoxy0_1.5.10-1_armhf.deb ...
Unpacking libepoxy0:armhf (1.5.10-1) over (1.5.5-1) ...
Preparing to unpack .../52-libpciaccess0_0.17-2_armhf.deb ...
Unpacking libpciaccess0:armhf (0.17-2) over (0.16-1) ...
Preparing to unpack .../53-libpixman-1-0_0.42.2-1_armhf.deb ...
Unpacking libpixman-1-0:armhf (0.42.2-1) over (0.40.0-1.1~deb11u1+rpt1) ...
Preparing to unpack .../54-libunwind8_1.6.2-3_armhf.deb ...
Unpacking libunwind8:armhf (1.6.2-3) over (1.3.2-2) ...
Preparing to unpack .../55-libfreetype-dev_2.12.1+dfsg-5_armhf.deb ...
Unpacking libfreetype-dev:armhf (2.12.1+dfsg-5) over (2.10.4+dfsg-1+deb11u1) ...
Preparing to unpack .../56-libfreetype6-dev_2.12.1+dfsg-5_armhf.deb ...
Unpacking libfreetype6-dev:armhf (2.12.1+dfsg-5) over (2.10.4+dfsg-1+deb11u1) ...
Preparing to unpack .../57-libbrotli-dev_1.0.9-2+b3_armhf.deb ...
Unpacking libbrotli-dev:armhf (1.0.9-2+b3) over (1.0.9-2+b1) ...
Preparing to unpack .../58-libbrotli1_1.0.9-2+b3_armhf.deb ...
Unpacking libbrotli1:armhf (1.0.9-2+b3) over (1.0.9-2+b1) ...
Preparing to unpack .../59-libpng-dev_1.6.39-2_armhf.deb ...
Unpacking libpng-dev:armhf (1.6.39-2) over (1.6.37-3) ...
Preparing to unpack .../60-libpng16-16_1.6.39-2_armhf.deb ...
Unpacking libpng16-16:armhf (1.6.39-2) over (1.6.37-3) ...
Preparing to unpack .../61-libfreetype6_2.12.1+dfsg-5_armhf.deb ...
Unpacking libfreetype6:armhf (2.12.1+dfsg-5) over (2.10.4+dfsg-1+deb11u1) ...
Preparing to unpack .../62-libxfont2_1%3a2.0.6-1_armhf.deb ...
Unpacking libxfont2:armhf (1:2.0.6-1) over (1:2.0.4-1) ...
Preparing to unpack .../63-libp11-kit0_0.24.1-2_armhf.deb ...
Unpacking libp11-kit0:armhf (0.24.1-2) over (0.23.22-1) ...
Setting up libp11-kit0:armhf (0.24.1-2) ...
(Reading database ... 110147 files and directories currently installed.)
Preparing to unpack .../mount_2.38.1-5_armhf.deb ...
Unpacking mount (2.38.1-5) over (2.36.1-8+deb11u1) ...
Preparing to unpack .../libxxhash0_0.8.1-1_armhf.deb ...
Unpacking libxxhash0:armhf (0.8.1-1) over (0.8.0-2+rpi1) ...
Setting up libxxhash0:armhf (0.8.1-1) ...
(Reading database ... 110147 files and directories currently installed.)
Preparing to unpack .../libapt-pkg6.0_2.6.1_armhf.deb ...
Unpacking libapt-pkg6.0:armhf (2.6.1) over (2.2.4) ...
Setting up libapt-pkg6.0:armhf (2.6.1) ...
(Reading database ... 110147 files and directories currently installed.)
Preparing to unpack .../debconf_1.5.82_all.deb ...
Unpacking debconf (1.5.82) over (1.5.77) ...
Setting up debconf (1.5.82) ...
(Reading database ... 110146 files and directories currently installed.)
Preparing to unpack .../bash_5.2.15-2_armhf.deb ...
Unpacking bash (5.2.15-2) over (5.1-2+deb11u1) ...
Setting up bash (5.2.15-2) ...
update-alternatives: using /usr/share/man/man7/bash-builtins.7.gz to provide /usr/share/man/man7/builtins.7.gz
 (builtins.7.gz) in auto mode
(Reading database ... 110147 files and directories currently installed.)
Preparing to unpack .../bsdutils_1%3a2.38.1-5_armhf.deb ...
Unpacking bsdutils (1:2.38.1-5) over (1:2.36.1-8+deb11u1) ...
Setting up bsdutils (1:2.38.1-5) ...
(Reading database ... 110147 files and directories currently installed.)
Preparing to unpack .../libgmp3-dev_2%3a6.2.1+dfsg1-1.1_armhf.deb ...
Unpacking libgmp3-dev:armhf (2:6.2.1+dfsg1-1.1) over (2:6.2.1+dfsg-1+deb11u1) ...
Preparing to unpack .../libgmp-dev_2%3a6.2.1+dfsg1-1.1_armhf.deb ...
Unpacking libgmp-dev:armhf (2:6.2.1+dfsg1-1.1) over (2:6.2.1+dfsg-1+deb11u1) ...
Preparing to unpack .../libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_armhf.deb ...
Unpacking libgmpxx4ldbl:armhf (2:6.2.1+dfsg1-1.1) over (2:6.2.1+dfsg-1+deb11u1) ...
Preparing to unpack .../libgmp10_2%3a6.2.1+dfsg1-1.1_armhf.deb ...
Unpacking libgmp10:armhf (2:6.2.1+dfsg1-1.1) over (2:6.2.1+dfsg-1+deb11u1) ...
Setting up libgmp10:armhf (2:6.2.1+dfsg1-1.1) ...
(Reading database ... 110147 files and directories currently installed.)
Preparing to unpack .../coreutils_9.1-1_armhf.deb ...
Unpacking coreutils (9.1-1) over (8.32-4) ...
Setting up coreutils (9.1-1) ...
(Reading database ... 110147 files and directories currently installed.)
Preparing to unpack .../dash_0.5.12-2_armhf.deb ...
Unpacking dash (0.5.12-2) over (0.5.11+git20200708+dd9ef66-5) ...
Setting up dash (0.5.12-2) ...
(Reading database ... 110148 files and directories currently installed.)
Preparing to unpack .../diffutils_1%3a3.8-4_armhf.deb ...
Unpacking diffutils (1:3.8-4) over (1:3.7-5) ...
Setting up diffutils (1:3.8-4) ...
(Reading database ... 110148 files and directories currently installed.)
Preparing to unpack .../findutils_4.9.0-4_armhf.deb ...
Unpacking findutils (4.9.0-4) over (4.8.0-1) ...
Setting up findutils (4.9.0-4) ...
(Reading database ... 110148 files and directories currently installed.)
Preparing to unpack .../archives/grep_3.8-5_armhf.deb ...
Unpacking grep (3.8-5) over (3.6-1+deb11u1) ...
Setting up grep (3.8-5) ...
(Reading database ... 110150 files and directories currently installed.)
Preparing to unpack .../archives/gzip_1.12-1_armhf.deb ...
Unpacking gzip (1.12-1) over (1.10-4+deb11u1) ...
Setting up gzip (1.12-1) ...
(Reading database ... 110150 files and directories currently installed.)
Preparing to unpack .../hostname_3.23+nmu1_armhf.deb ...
Unpacking hostname (3.23+nmu1) over (3.23) ...
Setting up hostname (3.23+nmu1) ...
(Reading database ... 110150 files and directories currently installed.)
Preparing to unpack .../archives/sed_4.9-1_armhf.deb ...
Unpacking sed (4.9-1) over (4.7-1) ...
Setting up sed (4.9-1) ...
(Reading database ... 110151 files and directories currently installed.)
Preparing to unpack .../libdebconfclient0_0.270_armhf.deb ...
Unpacking libdebconfclient0:armhf (0.270) over (0.260) ...
Setting up libdebconfclient0:armhf (0.270) ...
(Reading database ... 110151 files and directories currently installed.)
Preparing to unpack .../base-passwd_3.6.1_armhf.deb ...
Unpacking base-passwd (3.6.1) over (3.5.51) ...
Setting up base-passwd (3.6.1) ...
(Reading database ... 110151 files and directories currently installed.)
Preparing to unpack .../ncurses-base_6.4-4_all.deb ...
Unpacking ncurses-base (6.4-4) over (6.2+20201114-2+deb11u1) ...
Setting up ncurses-base (6.4-4) ...
(Reading database ... 110153 files and directories currently installed.)
Preparing to unpack .../libnettle8_3.8.1-2_armhf.deb ...
Unpacking libnettle8:armhf (3.8.1-2) over (3.7.3-1) ...
Setting up libnettle8:armhf (3.8.1-2) ...
(Reading database ... 110153 files and directories currently installed.)
Preparing to unpack .../libhogweed6_3.8.1-2_armhf.deb ...
Unpacking libhogweed6:armhf (3.8.1-2) over (3.7.3-1) ...
Setting up libhogweed6:armhf (3.8.1-2) ...
(Reading database ... 110153 files and directories currently installed.)
Preparing to unpack .../libunistring2_1.0-2_armhf.deb ...
Unpacking libunistring2:armhf (1.0-2) over (0.9.10-4) ...
Setting up libunistring2:armhf (1.0-2) ...
(Reading database ... 110153 files and directories currently installed.)
Preparing to unpack .../libidn2-0_2.3.3-1+b2_armhf.deb ...
Unpacking libidn2-0:armhf (2.3.3-1+b2) over (2.3.0-5) ...
Setting up libidn2-0:armhf (2.3.3-1+b2) ...
(Reading database ... 110155 files and directories currently installed.)
Preparing to unpack .../libtasn1-6_4.19.0-2_armhf.deb ...
Unpacking libtasn1-6:armhf (4.19.0-2) over (4.16.0-2+deb11u1) ...
Setting up libtasn1-6:armhf (4.19.0-2) ...
(Reading database ... 110155 files and directories currently installed.)
Preparing to unpack .../libgnutls30_3.7.9-2_armhf.deb ...
Unpacking libgnutls30:armhf (3.7.9-2) over (3.7.1-5+deb11u3) ...
Setting up libgnutls30:armhf (3.7.9-2) ...
(Reading database ... 110157 files and directories currently installed.)
Preparing to unpack .../libksba8_1.6.3-2_armhf.deb ...
Unpacking libksba8:armhf (1.6.3-2) over (1.5.0-3+deb11u2) ...
Setting up libksba8:armhf (1.6.3-2) ...
(Reading database ... 110157 files and directories currently installed.)
Preparing to unpack .../libassuan0_2.5.5-5_armhf.deb ...
Unpacking libassuan0:armhf (2.5.5-5) over (2.5.3-7.1) ...
Setting up libassuan0:armhf (2.5.5-5) ...
(Reading database ... 110157 files and directories currently installed.)
Preparing to unpack .../libsasl2-modules-db_2.1.28+dfsg-10_armhf.deb ...
Unpacking libsasl2-modules-db:armhf (2.1.28+dfsg-10) over (2.1.27+dfsg-2.1+deb11u1) ...
Setting up libsasl2-modules-db:armhf (2.1.28+dfsg-10) ...
(Reading database ... 110156 files and directories currently installed.)
Preparing to unpack .../libsasl2-dev_2.1.28+dfsg-10_armhf.deb ...
Unpacking libsasl2-dev (2.1.28+dfsg-10) over (2.1.27+dfsg-2.1+deb11u1) ...
Preparing to unpack .../libsasl2-2_2.1.28+dfsg-10_armhf.deb ...
Unpacking libsasl2-2:armhf (2.1.28+dfsg-10) over (2.1.27+dfsg-2.1+deb11u1) ...
Setting up libsasl2-2:armhf (2.1.28+dfsg-10) ...
Selecting previously unselected package libldap-2.5-0:armhf.
(Reading database ... 110154 files and directories currently installed.)
Preparing to unpack .../libldap-2.5-0_2.5.13+dfsg-5+rpi1_armhf.deb ...
Unpacking libldap-2.5-0:armhf (2.5.13+dfsg-5+rpi1) ...
Setting up libldap-2.5-0:armhf (2.5.13+dfsg-5+rpi1) ...
(Reading database ... 110164 files and directories currently installed.)
Preparing to unpack .../gnupg-l10n_2.2.40-1.1_all.deb ...
Unpacking gnupg-l10n (2.2.40-1.1) over (2.2.27-2+deb11u2) ...
Setting up gnupg-l10n (2.2.40-1.1) ...
(Reading database ... 110164 files and directories currently installed.)
Preparing to unpack .../gnupg-utils_2.2.40-1.1_armhf.deb ...
Unpacking gnupg-utils (2.2.40-1.1) over (2.2.27-2+deb11u2) ...
Setting up gnupg-utils (2.2.40-1.1) ...
(Reading database ... 110164 files and directories currently installed.)
Preparing to unpack .../gpgconf_2.2.40-1.1_armhf.deb ...
Unpacking gpgconf (2.2.40-1.1) over (2.2.27-2+deb11u2) ...
Setting up gpgconf (2.2.40-1.1) ...
(Reading database ... 110164 files and directories currently installed.)
Preparing to unpack .../dirmngr_2.2.40-1.1_armhf.deb ...
Unpacking dirmngr (2.2.40-1.1) over (2.2.27-2+deb11u2) ...
Setting up lsb-base (11.6+rpi1) ...
Setting up dirmngr (2.2.40-1.1) ...
(Reading database ... 110164 files and directories currently installed.)
Preparing to unpack .../gpg_2.2.40-1.1_armhf.deb ...
Unpacking gpg (2.2.40-1.1) over (2.2.27-2+deb11u2) ...
Setting up gpg (2.2.40-1.1) ...
(Reading database ... 110164 files and directories currently installed.)
Preparing to unpack .../gpg-agent_2.2.40-1.1_armhf.deb ...
Unpacking gpg-agent (2.2.40-1.1) over (2.2.27-2+deb11u2) ...
Setting up gpg-agent (2.2.40-1.1) ...
(Reading database ... 110164 files and directories currently installed.)
Preparing to unpack .../gpg-wks-client_2.2.40-1.1_armhf.deb ...
Unpacking gpg-wks-client (2.2.40-1.1) over (2.2.27-2+deb11u2) ...
Setting up gpg-wks-client (2.2.40-1.1) ...
(Reading database ... 110164 files and directories currently installed.)
Preparing to unpack .../gpg-wks-server_2.2.40-1.1_armhf.deb ...
Unpacking gpg-wks-server (2.2.40-1.1) over (2.2.27-2+deb11u2) ...
Setting up gpg-wks-server (2.2.40-1.1) ...
(Reading database ... 110164 files and directories currently installed.)
Preparing to unpack .../gpgv_2.2.40-1.1_armhf.deb ...
Unpacking gpgv (2.2.40-1.1) over (2.2.27-2+deb11u2) ...
Setting up gpgv (2.2.40-1.1) ...
(Reading database ... 110164 files and directories currently installed.)
Preparing to unpack .../gpgsm_2.2.40-1.1_armhf.deb ...
Unpacking gpgsm (2.2.40-1.1) over (2.2.27-2+deb11u2) ...
Setting up gpgsm (2.2.40-1.1) ...
(Reading database ... 110164 files and directories currently installed.)
Preparing to unpack .../gnupg_2.2.40-1.1_all.deb ...
Unpacking gnupg (2.2.40-1.1) over (2.2.27-2+deb11u2) ...
Setting up gnupg (2.2.40-1.1) ...
(Reading database ... 110165 files and directories currently installed.)
Preparing to unpack .../libsqlite3-dev_3.40.1-2_armhf.deb ...
Unpacking libsqlite3-dev:armhf (3.40.1-2) over (3.34.1-3) ...
Preparing to unpack .../libsqlite3-0_3.40.1-2_armhf.deb ...
Unpacking libsqlite3-0:armhf (3.40.1-2) over (3.34.1-3) ...
Setting up libsqlite3-0:armhf (3.40.1-2) ...
(Reading database ... 110165 files and directories currently installed.)
Preparing to unpack .../pinentry-curses_1.2.1-1_armhf.deb ...
Unpacking pinentry-curses (1.2.1-1) over (1.1.0-4) ...
Setting up pinentry-curses (1.2.1-1) ...
(Reading database ... 110165 files and directories currently installed.)
Preparing to unpack .../archives/apt_2.6.1_armhf.deb ...
Unpacking apt (2.6.1) over (2.2.4) ...
Setting up apt (2.6.1) ...

Configuration file '/etc/apt/apt.conf.d/01autoremove'
 ==> Deleted (by you or by a script) since installation.
 ==> Package distributor has shipped an updated version.
 ==> Keeping old config file as default.
Installing new version of config file /etc/cron.daily/apt-compat ...
Removing obsolete conffile /etc/kernel/postinst.d/apt-auto-removal ...
apt-daily-upgrade.timer is a disabled or a static unit not running, not starting it.
apt-daily.timer is a disabled or a static unit not running, not starting it.
(Reading database ... 110162 files and directories currently installed.)
Preparing to unpack .../logsave_1.47.0-2_armhf.deb ...
Unpacking logsave (1.47.0-2) over (1.46.2-2) ...
Preparing to unpack .../klibc-utils_2.0.12-1+rpi1_armhf.deb ...
Unpacking klibc-utils (2.0.12-1+rpi1) over (2.0.8-6.1+rpi1) ...
Preparing to unpack .../initramfs-tools_0.142_all.deb ...
Unpacking initramfs-tools (0.142) over (0.140) ...
Preparing to unpack .../initramfs-tools-core_0.142_all.deb ...
Unpacking initramfs-tools-core (0.142) over (0.140) ...
Preparing to unpack .../libext2fs2_1.47.0-2_armhf.deb ...
Unpacking libext2fs2:armhf (1.47.0-2) over (1.46.2-2) ...
Setting up libcom-err2:armhf (1.47.0-2) ...
Setting up libext2fs2:armhf (1.47.0-2) ...
(Reading database ... 110163 files and directories currently installed.)
Preparing to unpack .../e2fsprogs_1.47.0-2_armhf.deb ...
Unpacking e2fsprogs (1.47.0-2) over (1.46.2-2) ...
Preparing to unpack .../libklibc_2.0.12-1+rpi1_armhf.deb ...
Unpacking libklibc:armhf (2.0.12-1+rpi1) over (2.0.8-6.1+rpi1) ...
Preparing to unpack .../linux-base_4.9_all.deb ...
Unpacking linux-base (4.9) over (4.6) ...
Preparing to unpack .../cpio_2.13+dfsg-7.1_armhf.deb ...
Unpacking cpio (2.13+dfsg-7.1) over (2.13+dfsg-4) ...
(Reading database ... 110159 files and directories currently installed.)
Removing cron (3.0pl1-137) ...
Selecting previously unselected package cron-daemon-common.
(Reading database ... 110134 files and directories currently installed.)
Preparing to unpack .../cron-daemon-common_3.0pl1-162_all.deb ...
Unpacking cron-daemon-common (3.0pl1-162) ...
Setting up cron-daemon-common (3.0pl1-162) ...

Configuration file '/etc/crontab'
 ==> Modified (by you or by a script) since installation.
 ==> Package distributor has shipped an updated version.
 ==> Keeping old config file as default.
Selecting previously unselected package cron.
(Reading database ... 110143 files and directories currently installed.)
Preparing to unpack .../000-cron_3.0pl1-162_armhf.deb ...
Unpacking cron (3.0pl1-162) ...
Preparing to unpack .../001-sensible-utils_0.0.17+nmu1_all.deb ...
Unpacking sensible-utils (0.0.17+nmu1) over (0.0.14) ...
Preparing to unpack .../002-libsctp-dev_1.0.19+dfsg-2_armhf.deb ...
Unpacking libsctp-dev:armhf (1.0.19+dfsg-2) over (1.0.18+dfsg-1) ...
Preparing to unpack .../003-libsctp1_1.0.19+dfsg-2_armhf.deb ...
Unpacking libsctp1:armhf (1.0.19+dfsg-2) over (1.0.18+dfsg-1) ...
Preparing to unpack .../004-libapr1-dev_1.7.2-3_armhf.deb ...
Unpacking libapr1-dev (1.7.2-3) over (1.7.0-6+deb11u2) ...
Preparing to unpack .../005-libaprutil1-dbd-sqlite3_1.6.3-1_armhf.deb ...
Unpacking libaprutil1-dbd-sqlite3:armhf (1.6.3-1) over (1.6.1-5+deb11u1) ...
Preparing to unpack .../006-libaprutil1-ldap_1.6.3-1_armhf.deb ...
Unpacking libaprutil1-ldap:armhf (1.6.3-1) over (1.6.1-5+deb11u1) ...
Preparing to unpack .../007-libldap2-dev_2.5.13+dfsg-5+rpi1_all.deb ...
Unpacking libldap2-dev (2.5.13+dfsg-5+rpi1) over (2.4.57+dfsg-3+deb11u1) ...
Selecting previously unselected package libldap-dev:armhf.
Preparing to unpack .../008-libldap-dev_2.5.13+dfsg-5+rpi1_armhf.deb ...
Unpacking libldap-dev:armhf (2.5.13+dfsg-5+rpi1) ...
Preparing to unpack .../009-libaprutil1-dev_1.6.3-1_armhf.deb ...
Unpacking libaprutil1-dev (1.6.3-1) over (1.6.1-5+deb11u1) ...
Preparing to unpack .../010-libaprutil1_1.6.3-1_armhf.deb ...
Unpacking libaprutil1:armhf (1.6.3-1) over (1.6.1-5+deb11u1) ...
Preparing to unpack .../011-libapr1_1.7.2-3_armhf.deb ...
Unpacking libapr1:armhf (1.7.2-3) over (1.7.0-6+deb11u2) ...
Preparing to unpack .../012-curl_7.88.1-10+rpi1_armhf.deb ...
Unpacking curl (7.88.1-10+rpi1) over (7.74.0-1.3+deb11u7) ...
Preparing to unpack .../013-libnghttp2-14_1.52.0-1_armhf.deb ...
Unpacking libnghttp2-14:armhf (1.52.0-1) over (1.43.0-1) ...
Preparing to unpack .../014-libpsl5_0.21.2-1_armhf.deb ...
Unpacking libpsl5:armhf (0.21.2-1) over (0.21.0-1.2) ...
Preparing to unpack .../015-libssh2-1_1.10.0-3+b1_armhf.deb ...
Unpacking libssh2-1:armhf (1.10.0-3+b1) over (1.9.0-2) ...
Preparing to unpack .../016-libcurl4_7.88.1-10+rpi1_armhf.deb ...
Unpacking libcurl4:armhf (7.88.1-10+rpi1) over (7.74.0-1.3+deb11u7) ...
Preparing to unpack .../017-liblua5.3-0_5.3.6-2_armhf.deb ...
Unpacking liblua5.3-0:armhf (5.3.6-2) over (5.3.3-1.1+b1) ...
Preparing to unpack .../018-apache2_2.4.57-2_armhf.deb ...
Unpacking apache2 (2.4.57-2) over (2.4.56-1~deb11u2) ...
Preparing to unpack .../019-apache2-bin_2.4.57-2_armhf.deb ...
Unpacking apache2-bin (2.4.57-2) over (2.4.56-1~deb11u2) ...
Preparing to unpack .../020-apache2-data_2.4.57-2_all.deb ...
Unpacking apache2-data (2.4.57-2) over (2.4.56-1~deb11u2) ...
Preparing to unpack .../021-apache2-utils_2.4.57-2_armhf.deb ...
Unpacking apache2-utils (2.4.57-2) over (2.4.56-1~deb11u2) ...
Preparing to unpack .../022-media-types_10.0.0_all.deb ...
Unpacking media-types (10.0.0) over (4.0.0) ...
Selecting previously unselected package libproc2-0:armhf.
Preparing to unpack .../023-libproc2-0_2%3a4.0.2-3_armhf.deb ...
Unpacking libproc2-0:armhf (2:4.0.2-3) ...
Preparing to unpack .../024-procps_2%3a4.0.2-3_armhf.deb ...
Unpacking procps (2:4.0.2-3) over (2:3.3.17-5) ...
Preparing to unpack .../025-flex_2.6.4-8.2_armhf.deb ...
Unpacking flex (2.6.4-8.2) over (2.6.4-8) ...
Preparing to unpack .../026-git_1%3a2.39.2-1.1_armhf.deb ...
Unpacking git (1:2.39.2-1.1) over (1:2.30.2-1+deb11u2) ...
Preparing to unpack .../027-git-man_1%3a2.39.2-1.1_all.deb ...
Unpacking git-man (1:2.39.2-1.1) over (1:2.30.2-1+deb11u2) ...
Preparing to unpack .../028-libcurl4-gnutls-dev_7.88.1-10+rpi1_armhf.deb ...
Unpacking libcurl4-gnutls-dev:armhf (7.88.1-10+rpi1) over (7.74.0-1.3+deb11u7) ...
Preparing to unpack .../029-libcurl3-gnutls_7.88.1-10+rpi1_armhf.deb ...
Unpacking libcurl3-gnutls:armhf (7.88.1-10+rpi1) over (7.74.0-1.3+deb11u7) ...
Preparing to unpack .../030-liberror-perl_0.17029-2_all.deb ...
Unpacking liberror-perl (0.17029-2) over (0.17029-1) ...
Selecting previously unselected package libcbor0.8:armhf.
Preparing to unpack .../031-libcbor0.8_0.8.0-2_armhf.deb ...
Unpacking libcbor0.8:armhf (0.8.0-2) ...
Preparing to unpack .../032-libfido2-1_1.12.0-2_armhf.deb ...
Unpacking libfido2-1:armhf (1.12.0-2) over (1.6.0-2) ...
Preparing to unpack .../033-openssh-sftp-server_1%3a9.2p1-2_armhf.deb ...
Unpacking openssh-sftp-server (1:9.2p1-2) over (1:8.4p1-5+deb11u1) ...
Preparing to unpack .../034-openssh-server_1%3a9.2p1-2_armhf.deb ...
Unpacking openssh-server (1:9.2p1-2) over (1:8.4p1-5+deb11u1) ...
Preparing to unpack .../035-openssh-client_1%3a9.2p1-2_armhf.deb ...
Unpacking openssh-client (1:9.2p1-2) over (1:8.4p1-5+deb11u1) ...
Preparing to unpack .../036-ucf_3.0043+nmu1_all.deb ...
Unpacking ucf (3.0043+nmu1) over (3.0043) ...
Preparing to unpack .../037-runit-helper_2.15.2_all.deb ...
Unpacking runit-helper (2.15.2) over (2.10.3) ...
Preparing to unpack .../038-libwrap0-dev_7.6.q-32_armhf.deb ...
Unpacking libwrap0-dev:armhf (7.6.q-32) over (7.6.q-31) ...
Preparing to unpack .../039-libwrap0_7.6.q-32_armhf.deb ...
Unpacking libwrap0:armhf (7.6.q-32) over (7.6.q-31) ...
Preparing to unpack .../040-poppler-data_0.4.12-1_all.deb ...
Unpacking poppler-data (0.4.12-1) over (0.4.10-1) ...
Preparing to unpack .../041-netbase_6.4_all.deb ...
Unpacking netbase (6.4) over (6.3) ...
Preparing to unpack .../042-libhiredis0.14_0.14.1-3_armhf.deb ...
Unpacking libhiredis0.14:armhf (0.14.1-3) over (0.14.1-1) ...
Selecting previously unselected package libhashkit2:armhf.
Preparing to unpack .../043-libhashkit2_1.1.4-1_armhf.deb ...
Unpacking libhashkit2:armhf (1.1.4-1) ...
Preparing to unpack .../044-libmemcached11_1.1.4-1_armhf.deb ...
Unpacking libmemcached11:armhf (1.1.4-1) over (1.0.18-4.2) ...
Preparing to unpack .../045-libmemcachedutil2_1.1.4-1_armhf.deb ...
Unpacking libmemcachedutil2:armhf (1.1.4-1) over (1.0.18-4.2) ...
Preparing to unpack .../046-proftpd-core_1.3.8+dfsg-4+deb12u1_armhf.deb ...
Unpacking proftpd-core (1.3.8+dfsg-4+deb12u1) over (1.3.7a+dfsg-12+deb11u2) ...
Preparing to unpack .../047-libatopology2_1.2.8-1+b1_armhf.deb ...
Unpacking libatopology2:armhf (1.2.8-1+b1) over (1.2.4-1.1+rpt2) ...
Preparing to unpack .../048-libasound2-dev_1.2.8-1+b1_armhf.deb ...
Unpacking libasound2-dev:armhf (1.2.8-1+b1) over (1.2.4-1.1+rpt2) ...
Preparing to unpack .../049-libasound2_1.2.8-1+b1_armhf.deb ...
Unpacking libasound2:armhf (1.2.8-1+b1) over (1.2.4-1.1+rpt2) ...
Preparing to unpack .../050-libasound2-data_1.2.8-1_all.deb ...
Unpacking libasound2-data (1.2.8-1) over (1.2.4-1.1+rpt2) ...
Preparing to unpack .../051-libgomp1_12.2.0-14+rpi1_armhf.deb ...
Unpacking libgomp1:armhf (12.2.0-14+rpi1) over (10.2.1-6+rpi1) ...
Preparing to unpack .../052-libfftw3-single3_3.3.10-1_armhf.deb ...
Unpacking libfftw3-single3:armhf (3.3.10-1) over (3.3.8-2) ...
Preparing to unpack .../053-libgstreamer1.0-0_1.22.0-2_armhf.deb ...
Unpacking libgstreamer1.0-0:armhf (1.22.0-2) over (1.18.4-2.1) ...
Preparing to unpack .../054-liborc-0.4-0_1%3a0.4.33-2_armhf.deb ...
Unpacking liborc-0.4-0:armhf (1:0.4.33-2) over (1:0.4.32-1) ...
Preparing to unpack .../055-iso-codes_4.15.0-1_all.deb ...
Unpacking iso-codes (4.15.0-1) over (4.6.0-1) ...
Preparing to unpack .../056-libgstreamer-plugins-base1.0-0_1.22.0-3+deb12u1_armhf.deb ...
Unpacking libgstreamer-plugins-base1.0-0:armhf (1.22.0-3+deb12u1) over (1.18.4-2+deb11u1) ...
Preparing to unpack .../057-autotools-dev_20220109.1_all.deb ...
Unpacking autotools-dev (20220109.1) over (20180224.1+nmu1) ...
Preparing to unpack .../058-automake_1%3a1.16.5-1.3_all.deb ...
Unpacking automake (1:1.16.5-1.3) over (1:1.16.3-2) ...
Preparing to unpack .../059-libltdl-dev_2.4.7-5_armhf.deb ...
Unpacking libltdl-dev:armhf (2.4.7-5) over (2.4.6-15) ...
Preparing to unpack .../060-libltdl7_2.4.7-5_armhf.deb ...
Unpacking libltdl7:armhf (2.4.7-5) over (2.4.6-15) ...
Preparing to unpack .../061-libogg0_1.3.5-3_armhf.deb ...
Unpacking libogg0:armhf (1.3.5-3) over (1.3.4-0.1) ...
Selecting previously unselected package libflac12:armhf.
Preparing to unpack .../062-libflac12_1.4.2+ds-2_armhf.deb ...
Unpacking libflac12:armhf (1.4.2+ds-2) ...
Preparing to unpack .../063-libmp3lame0_3.100-6_armhf.deb ...
Unpacking libmp3lame0:armhf (3.100-6) over (3.100-3) ...
Preparing to unpack .../064-libmpg123-0_1.31.2-1_armhf.deb ...
Unpacking libmpg123-0:armhf (1.31.2-1) over (1.26.4-1) ...
Preparing to unpack .../065-libopus0_1.3.1-3_armhf.deb ...
Unpacking libopus0:armhf (1.3.1-3) over (1.3.1-0.1) ...
Preparing to unpack .../066-libsndfile1_1.2.0-1_armhf.deb ...
Unpacking libsndfile1:armhf (1.2.0-1) over (1.0.31-2) ...
Preparing to unpack .../067-libpulsedsp_16.1+dfsg1-2+b2_armhf.deb ...
Unpacking libpulsedsp:armhf (16.1+dfsg1-2+b2) over (14.2-2+rpt1) ...
Preparing to unpack .../068-pulseaudio_16.1+dfsg1-2+b2_armhf.deb ...
Unpacking pulseaudio (16.1+dfsg1-2+b2) over (14.2-2+rpt1) ...
Preparing to unpack .../069-pulseaudio-utils_16.1+dfsg1-2+b2_armhf.deb ...
Unpacking pulseaudio-utils (16.1+dfsg1-2+b2) over (14.2-2+rpt1) ...
Preparing to unpack .../070-libasyncns0_0.8-6+b3_armhf.deb ...
Unpacking libasyncns0:armhf (0.8-6+b3) over (0.8-6) ...
Preparing to unpack .../071-libpulse0_16.1+dfsg1-2+b2_armhf.deb ...
Unpacking libpulse0:armhf (16.1+dfsg1-2+b2) over (14.2-2+rpt1) ...
Preparing to unpack .../072-libspeexdsp1_1.2.1-1_armhf.deb ...
Unpacking libspeexdsp1:armhf (1.2.1-1) over (1.2~rc1.2-1.1) ...
Preparing to unpack .../073-libxtst6_2%3a1.2.3-1.1_armhf.deb ...
Unpacking libxtst6:armhf (2:1.2.3-1.1) over (2:1.2.3-1) ...
Selecting previously unselected package libaom3:armhf.
Preparing to unpack .../074-libaom3_3.6.0-1_armhf.deb ...
Unpacking libaom3:armhf (3.6.0-1) ...
Preparing to unpack .../075-libva-x11-2_2.17.0-1_armhf.deb ...
Unpacking libva-x11-2:armhf (2.17.0-1) over (2.10.0-1) ...
Preparing to unpack .../076-libva-drm2_2.17.0-1_armhf.deb ...
Unpacking libva-drm2:armhf (2.17.0-1) over (2.10.0-1) ...
Preparing to unpack .../077-libva2_2.17.0-1_armhf.deb ...
Unpacking libva2:armhf (2.17.0-1) over (2.10.0-1) ...
Preparing to unpack .../078-libvdpau1_1.5-2_armhf.deb ...
Unpacking libvdpau1:armhf (1.5-2) over (1.4-3) ...
Preparing to unpack .../079-ocl-icd-libopencl1_2.3.1-1_armhf.deb ...
Unpacking ocl-icd-libopencl1:armhf (2.3.1-1) over (2.2.14-2) ...
Selecting previously unselected package libavutil57:armhf.
Preparing to unpack .../080-libavutil57_7%3a5.1.3-1_armhf.deb ...
Unpacking libavutil57:armhf (7:5.1.3-1) ...
Preparing to unpack .../081-libcairo-gobject2_1.16.0-7_armhf.deb ...
Unpacking libcairo-gobject2:armhf (1.16.0-7) over (1.16.0-5+rpt1) ...
Preparing to unpack .../082-libfontconfig-dev_2.14.1-4_armhf.deb ...
Unpacking libfontconfig-dev:armhf (2.14.1-4) over (2.13.1-4.2) ...
Preparing to unpack .../083-fonts-dejavu-core_2.37-6_all.deb ...
Unpacking fonts-dejavu-core (2.37-6) over (2.37-2) ...
Preparing to unpack .../084-fonts-urw-base35_20200910-7_all.deb ...
Unpacking fonts-urw-base35 (20200910-7) over (20200910-1) ...
Preparing to unpack .../085-fontconfig-config_2.14.1-4_armhf.deb ...
Unpacking fontconfig-config (2.14.1-4) over (2.13.1-4.2) ...
Preparing to unpack .../086-libfontconfig1_2.14.1-4_armhf.deb ...
Unpacking libfontconfig1:armhf (2.14.1-4) over (2.13.1-4.2) ...
Preparing to unpack .../087-libxcb-render0_1.15-1_armhf.deb ...
Unpacking libxcb-render0:armhf (1.15-1) over (1.14-3) ...
Preparing to unpack .../088-libcairo2_1.16.0-7_armhf.deb ...
Unpacking libcairo2:armhf (1.16.0-7) over (1.16.0-5+rpt1) ...
Selecting previously unselected package libcodec2-1.0:armhf.
Preparing to unpack .../089-libcodec2-1.0_1.0.5-1_armhf.deb ...
Unpacking libcodec2-1.0:armhf (1.0.5-1) ...
Selecting previously unselected package libdav1d6:armhf.
Preparing to unpack .../090-libdav1d6_1.0.0-2+rpi1_armhf.deb ...
Unpacking libdav1d6:armhf (1.0.0-2+rpi1) ...
Preparing to unpack .../091-libgsm1_1.0.22-1_armhf.deb ...
Unpacking libgsm1:armhf (1.0.22-1) over (1.0.18-2) ...
Selecting previously unselected package libhwy1:armhf.
Preparing to unpack .../092-libhwy1_1.0.3-3+rpi1_armhf.deb ...
Unpacking libhwy1:armhf (1.0.3-3+rpi1) ...
Preparing to unpack .../093-liblcms2-2_2.14-2_armhf.deb ...
Unpacking liblcms2-2:armhf (2.14-2) over (2.12~rc1-2) ...
Selecting previously unselected package libjxl0.7:armhf.
Preparing to unpack .../094-libjxl0.7_0.7.0-10_armhf.deb ...
Unpacking libjxl0.7:armhf (0.7.0-10) ...
Preparing to unpack .../095-libopenjp2-7_2.5.0-2_armhf.deb ...
Unpacking libopenjp2-7:armhf (2.5.0-2) over (2.4.0-3) ...
Selecting previously unselected package librav1e0:armhf.
Preparing to unpack .../096-librav1e0_0.5.1-6_armhf.deb ...
Unpacking librav1e0:armhf (0.5.1-6) ...
Preparing to unpack .../097-libgdk-pixbuf-2.0-0_2.42.10+dfsg-1+b1_armhf.deb ...
Unpacking libgdk-pixbuf-2.0-0:armhf (2.42.10+dfsg-1+b1) over (2.42.2+dfsg-1+deb11u1) ...
Preparing to unpack .../098-libgdk-pixbuf2.0-common_2.42.10+dfsg-1_all.deb ...
Unpacking libgdk-pixbuf2.0-common (2.42.10+dfsg-1) over (2.42.2+dfsg-1+deb11u1) ...
Preparing to unpack .../099-shared-mime-info_2.2-1_armhf.deb ...
Unpacking shared-mime-info (2.2-1) over (2.0-1) ...
Preparing to unpack .../100-libjpeg62-turbo-dev_1%3a2.1.5-2_armhf.deb ...
Unpacking libjpeg62-turbo-dev:armhf (1:2.1.5-2) over (1:2.0.6-4) ...
Preparing to unpack .../101-libjpeg62-turbo_1%3a2.1.5-2_armhf.deb ...
Unpacking libjpeg62-turbo:armhf (1:2.1.5-2) over (1:2.0.6-4) ...
Preparing to unpack .../102-libdeflate-dev_1.14-1_armhf.deb ...
Unpacking libdeflate-dev:armhf (1.14-1) over (1.7-1) ...
Preparing to unpack .../103-libdeflate0_1.14-1_armhf.deb ...
Unpacking libdeflate0:armhf (1.14-1) over (1.7-1) ...
Preparing to unpack .../104-libjbig-dev_2.1-6.1_armhf.deb ...
Unpacking libjbig-dev:armhf (2.1-6.1) over (2.1-3.1+b2) ...
Preparing to unpack .../105-libjbig0_2.1-6.1_armhf.deb ...
Unpacking libjbig0:armhf (2.1-6.1) over (2.1-3.1+b2) ...
Selecting previously unselected package liblerc4:armhf.
Preparing to unpack .../106-liblerc4_4.0.0+ds-2_armhf.deb ...
Unpacking liblerc4:armhf (4.0.0+ds-2) ...
Selecting previously unselected package libwebp7:armhf.
Preparing to unpack .../107-libwebp7_1.2.4-0.2_armhf.deb ...
Unpacking libwebp7:armhf (1.2.4-0.2) ...
Selecting previously unselected package libtiff6:armhf.
Preparing to unpack .../108-libtiff6_4.5.0-6_armhf.deb ...
Unpacking libtiff6:armhf (4.5.0-6) ...
Preparing to unpack .../109-librsvg2-common_2.54.7+dfsg-1~deb12u1_armhf.deb ...
Unpacking librsvg2-common:armhf (2.54.7+dfsg-1~deb12u1) over (2.50.3+dfsg-1+deb11u1) ...
Preparing to unpack .../110-libharfbuzz0b_6.0.0+dfsg-3_armhf.deb ...
Unpacking libharfbuzz0b:armhf (6.0.0+dfsg-3) over (2.7.4-1) ...
Preparing to unpack .../111-libxft2_2.3.6-1_armhf.deb ...
Unpacking libxft2:armhf (2.3.6-1) over (2.3.2-2) ...
Preparing to unpack .../112-libpangocairo-1.0-0_1.50.12+ds-1_armhf.deb ...
Unpacking libpangocairo-1.0-0:armhf (1.50.12+ds-1) over (1.46.2-3) ...
Preparing to unpack .../113-libpangoft2-1.0-0_1.50.12+ds-1_armhf.deb ...
Unpacking libpangoft2-1.0-0:armhf (1.50.12+ds-1) over (1.46.2-3) ...
Preparing to unpack .../114-libpango-1.0-0_1.50.12+ds-1_armhf.deb ...
Unpacking libpango-1.0-0:armhf (1.50.12+ds-1) over (1.46.2-3) ...
Preparing to unpack .../115-libpangoxft-1.0-0_1.50.12+ds-1_armhf.deb ...
Unpacking libpangoxft-1.0-0:armhf (1.50.12+ds-1) over (1.46.2-3) ...
Preparing to unpack .../116-fontconfig_2.14.1-4_armhf.deb ...
Unpacking fontconfig (2.14.1-4) over (2.13.1-4.2) ...
Preparing to unpack .../117-libfribidi0_1.0.8-2.1_armhf.deb ...
Unpacking libfribidi0:armhf (1.0.8-2.1) over (1.0.8-2+deb11u1) ...
Preparing to unpack .../118-libthai-data_0.1.29-1_all.deb ...
Unpacking libthai-data (0.1.29-1) over (0.1.28-3) ...
Preparing to unpack .../119-libdatrie1_0.2.13-2+b2_armhf.deb ...
Unpacking libdatrie1:armhf (0.2.13-2+b2) over (0.2.13-1+b1) ...
Preparing to unpack .../120-libthai0_0.1.29-1_armhf.deb ...
Unpacking libthai0:armhf (0.1.29-1) over (0.1.28-3) ...
Preparing to unpack .../121-librsvg2-2_2.54.7+dfsg-1~deb12u1_armhf.deb ...
Unpacking librsvg2-2:armhf (2.54.7+dfsg-1~deb12u1) over (2.50.3+dfsg-1+deb11u1) ...
Preparing to unpack .../122-libsnappy1v5_1.1.9-3_armhf.deb ...
Unpacking libsnappy1v5:armhf (1.1.9-3) over (1.1.8-1) ...
Preparing to unpack .../123-libspeex1_1.2.1-2_armhf.deb ...
Unpacking libspeex1:armhf (1.2.1-2) over (1.2~rc1.2-1.1) ...
Selecting previously unselected package libsvtav1enc1:armhf.
Preparing to unpack .../124-libsvtav1enc1_1.4.1+dfsg-1_armhf.deb ...
Unpacking libsvtav1enc1:armhf (1.4.1+dfsg-1) ...
Selecting previously unselected package libswresample4:armhf.
Preparing to unpack .../125-libswresample4_7%3a5.1.3-1_armhf.deb ...
Unpacking libswresample4:armhf (7:5.1.3-1) ...
Preparing to unpack .../126-libtheora0_1.1.1+dfsg.1-16.1_armhf.deb ...
Unpacking libtheora0:armhf (1.1.1+dfsg.1-16.1) over (1.1.1+dfsg.1-15) ...
Selecting previously unselected package libvpx7:armhf.
Preparing to unpack .../127-libvpx7_1.12.0-1_armhf.deb ...
Unpacking libvpx7:armhf (1.12.0-1) ...
Preparing to unpack .../128-libwebp-dev_1.2.4-0.2_armhf.deb ...
Unpacking libwebp-dev:armhf (1.2.4-0.2) over (0.6.1-2.1+deb11u1) ...
Preparing to unpack .../129-libwebpdemux2_1.2.4-0.2_armhf.deb ...
Unpacking libwebpdemux2:armhf (1.2.4-0.2) over (0.6.1-2.1+deb11u1) ...
Preparing to unpack .../130-libwebpmux3_1.2.4-0.2_armhf.deb ...
Unpacking libwebpmux3:armhf (1.2.4-0.2) over (0.6.1-2.1+deb11u1) ...
Selecting previously unselected package libx264-164:armhf.
Preparing to unpack .../131-libx264-164_2%3a0.164.3095+gitbaee400-3+rpi1_armhf.deb ...
Unpacking libx264-164:armhf (2:0.164.3095+gitbaee400-3+rpi1) ...
Selecting previously unselected package libx265-199:armhf.
Preparing to unpack .../132-libx265-199_3.5-2_armhf.deb ...
Unpacking libx265-199:armhf (3.5-2) ...
Preparing to unpack .../133-libzvbi0_0.2.41-1_armhf.deb ...
Unpacking libzvbi0:armhf (0.2.41-1) over (0.2.35-18) ...
Preparing to unpack .../134-libzvbi-common_0.2.41-1_all.deb ...
Unpacking libzvbi-common (0.2.41-1) over (0.2.35-18) ...
Selecting previously unselected package libavcodec59:armhf.
Preparing to unpack .../135-libavcodec59_7%3a5.1.3-1_armhf.deb ...
Unpacking libavcodec59:armhf (7:5.1.3-1) ...
Preparing to unpack .../136-libjack-dev_1%3a0.126.0-2_armhf.deb ...
Unpacking libjack-dev:armhf (1:0.126.0-2) over (1:0.125.0-3+b1) ...
Preparing to unpack .../137-libjack0_1%3a0.126.0-2_armhf.deb ...
Unpacking libjack0:armhf (1:0.126.0-2) over (1:0.125.0-3+b1) ...
Preparing to unpack .../138-libsamplerate0_0.2.2-3_armhf.deb ...
Unpacking libsamplerate0:armhf (0.2.2-3) over (0.2.1+ds0-1) ...
Preparing to unpack .../139-libasound2-plugins_1.2.7.1-1_armhf.deb ...
Unpacking libasound2-plugins:armhf (1.2.7.1-1) over (1.2.2-2) ...
Preparing to unpack .../140-libpopt0_1.19+dfsg-1_armhf.deb ...
Unpacking libpopt0:armhf (1.19+dfsg-1) over (1.18-2) ...
Preparing to unpack .../141-rsync_3.2.7-1_armhf.deb ...
Unpacking rsync (3.2.7-1) over (3.2.3-4+deb11u1) ...
Selecting previously unselected package sgml-base.
Preparing to unpack .../142-sgml-base_1.31_all.deb ...
Unpacking sgml-base (1.31) ...
Preparing to unpack .../143-sudo_1.9.13p3-1+deb12u1_armhf.deb ...
Unpacking sudo (1.9.13p3-1+deb12u1) over (1.9.5p2-3+deb11u1) ...
Preparing to unpack .../144-libpcre3-dev_2%3a8.39-15_armhf.deb ...
Unpacking libpcre3-dev:armhf (2:8.39-15) over (2:8.39-13) ...
Preparing to unpack .../145-libpcre16-3_2%3a8.39-15_armhf.deb ...
Unpacking libpcre16-3:armhf (2:8.39-15) over (2:8.39-13) ...
Preparing to unpack .../146-libpcre32-3_2%3a8.39-15_armhf.deb ...
Unpacking libpcre32-3:armhf (2:8.39-15) over (2:8.39-13) ...
Preparing to unpack .../147-libpcrecpp0v5_2%3a8.39-15_armhf.deb ...
Unpacking libpcrecpp0v5:armhf (2:8.39-15) over (2:8.39-13) ...
Preparing to unpack .../148-libpcre3_2%3a8.39-15_armhf.deb ...
Unpacking libpcre3:armhf (2:8.39-15) over (2:8.39-13) ...
Setting up libpcre3:armhf (2:8.39-15) ...
(Reading database ... 110617 files and directories currently installed.)
Preparing to unpack .../000-libgc1_1%3a8.2.2-3_armhf.deb ...
Unpacking libgc1:armhf (1:8.2.2-3) over (1:8.0.4-3) ...
Preparing to unpack .../001-libobjc4_12.2.0-14+rpi1_armhf.deb ...
Unpacking libobjc4:armhf (12.2.0-14+rpi1) over (10.2.1-6+rpi1) ...
Preparing to unpack .../002-libobjc-10-dev_10.4.0-7+rpi1_armhf.deb ...
Unpacking libobjc-10-dev:armhf (10.4.0-7+rpi1) over (10.2.1-6+rpi1) ...
Selecting previously unselected package gcc-11-base:armhf.
Preparing to unpack .../003-gcc-11-base_11.3.0-12+rpi1_armhf.deb ...
Unpacking gcc-11-base:armhf (11.3.0-12+rpi1) ...
Preparing to unpack .../004-libasan6_11.3.0-12+rpi1_armhf.deb ...
Unpacking libasan6:armhf (11.3.0-12+rpi1) over (10.2.1-6+rpi1) ...
Preparing to unpack .../005-libubsan1_12.2.0-14+rpi1_armhf.deb ...
Unpacking libubsan1:armhf (12.2.0-14+rpi1) over (10.2.1-6+rpi1) ...
Preparing to unpack .../006-g++-10_10.4.0-7+rpi1_armhf.deb ...
Unpacking g++-10 (10.4.0-7+rpi1) over (10.2.1-6+rpi1) ...
Preparing to unpack .../007-gcc-10_10.4.0-7+rpi1_armhf.deb ...
Unpacking gcc-10 (10.4.0-7+rpi1) over (10.2.1-6+rpi1) ...
Preparing to unpack .../008-libstdc++-10-dev_10.4.0-7+rpi1_armhf.deb ...
Unpacking libstdc++-10-dev:armhf (10.4.0-7+rpi1) over (10.2.1-6+rpi1) ...
Preparing to unpack .../009-libgcc-10-dev_10.4.0-7+rpi1_armhf.deb ...
Unpacking libgcc-10-dev:armhf (10.4.0-7+rpi1) over (10.2.1-6+rpi1) ...
Preparing to unpack .../010-libisl23_0.25-1_armhf.deb ...
Unpacking libisl23:armhf (0.25-1) over (0.23-1) ...
Preparing to unpack .../011-libmpfr6_4.2.0-1_armhf.deb ...
Unpacking libmpfr6:armhf (4.2.0-1) over (4.1.0-3) ...
Preparing to unpack .../012-libmpc3_1.3.1-1_armhf.deb ...
Unpacking libmpc3:armhf (1.3.1-1) over (1.2.0-1) ...
Preparing to unpack .../013-libcc1-0_12.2.0-14+rpi1_armhf.deb ...
Unpacking libcc1-0:armhf (12.2.0-14+rpi1) over (10.2.1-6+rpi1) ...
Preparing to unpack .../014-cpp-10_10.4.0-7+rpi1_armhf.deb ...
Unpacking cpp-10 (10.4.0-7+rpi1) over (10.2.1-6+rpi1) ...
Preparing to unpack .../015-libgfortran5_12.2.0-14+rpi1_armhf.deb ...
Unpacking libgfortran5:armhf (12.2.0-14+rpi1) over (10.2.1-6+rpi1) ...
Preparing to unpack .../016-gcc-10-base_10.4.0-7+rpi1_armhf.deb ...
Unpacking gcc-10-base:armhf (10.4.0-7+rpi1) over (10.2.1-6+rpi1) ...
Preparing to unpack .../017-libplymouth5_22.02.122-3_armhf.deb ...
Unpacking libplymouth5:armhf (22.02.122-3) over (0.9.5-3+rpt2) ...
Preparing to unpack .../018-plymouth_22.02.122-3_armhf.deb ...
Failed to stop plymouth-switch-root-initramfs.service: Unit plymouth-switch-root-initramfs.service not loaded.
Unpacking plymouth (22.02.122-3) over (0.9.5-3+rpt2) ...
Preparing to unpack .../019-mawk_1.3.4.20200120-3.1_armhf.deb ...
Unpacking mawk (1.3.4.20200120-3.1) over (1.3.4.20200120-2) ...
Preparing to unpack .../020-tzdata_2023c-5_all.deb ...
Unpacking tzdata (2023c-5) over (2021a-1+deb11u10) ...
Preparing to unpack .../021-dmidecode_3.4-1_armhf.deb ...
Unpacking dmidecode (3.4-1) over (3.3-2) ...
Preparing to unpack .../022-groff-base_1.22.4-10_armhf.deb ...
Unpacking groff-base (1.22.4-10) over (1.22.4-6) ...
Preparing to unpack .../023-iputils-ping_3%3a20221126-1_armhf.deb ...
Unpacking iputils-ping (3:20221126-1) over (3:20210202-1) ...
Preparing to unpack .../024-isc-dhcp-client_4.4.3-P1-2_armhf.deb ...
Unpacking isc-dhcp-client (4.4.3-P1-2) over (4.4.1-2.3+deb11u2) ...
Preparing to unpack .../025-bsdextrautils_2.38.1-5_armhf.deb ...
Unpacking bsdextrautils (2.38.1-5) over (2.36.1-8+deb11u1) ...
Preparing to unpack .../026-libpipeline1_1.5.7-1_armhf.deb ...
Unpacking libpipeline1:armhf (1.5.7-1) over (1.5.3-1) ...
Preparing to unpack .../027-man-db_2.11.2-2_armhf.deb ...
Unpacking man-db (2.11.2-2) over (2.9.4-2) ...
Preparing to unpack .../028-nano_7.2-1_armhf.deb ...
Unpacking nano (7.2-1) over (5.4-2+deb11u2) ...
Preparing to unpack .../029-netcat-openbsd_1.219-1_armhf.deb ...
Unpacking netcat-openbsd (1.219-1) over (1.217-3) ...
Preparing to unpack .../030-bash-completion_1%3a2.11-6_all.deb ...
Unpacking bash-completion (1:2.11-6) over (1:2.11-2) ...
Preparing to unpack .../031-openssl_3.0.9-1_armhf.deb ...
Unpacking openssl (3.0.9-1) over (1.1.1n-0+deb11u5+rpt1) ...
Preparing to unpack .../032-ca-certificates_20230311_all.deb ...
Unpacking ca-certificates (20230311) over (20210119) ...
Preparing to unpack .../033-file_1%3a5.44-3_armhf.deb ...
Unpacking file (1:5.44-3) over (1:5.39-3+deb11u1) ...
Preparing to unpack .../034-libmagic-dev_1%3a5.44-3_armhf.deb ...
Unpacking libmagic-dev:armhf (1:5.44-3) over (1:5.39-3+deb11u1) ...
Preparing to unpack .../035-libmagic1_1%3a5.44-3_armhf.deb ...
Unpacking libmagic1:armhf (1:5.44-3) over (1:5.39-3+deb11u1) ...
Preparing to unpack .../036-libmagic-mgc_1%3a5.44-3_armhf.deb ...
Unpacking libmagic-mgc (1:5.44-3) over (1:5.39-3+deb11u1) ...
Preparing to unpack .../037-gettext-base_0.21-12_armhf.deb ...
Unpacking gettext-base (0.21-12) over (0.21-4) ...
Preparing to unpack .../038-lsof_4.95.0-1+rpi1_armhf.deb ...
Unpacking lsof (4.95.0-1+rpi1) over (4.93.2+dfsg-1.1) ...
Preparing to unpack .../039-libutempter0_1.2.1-3_armhf.deb ...
Unpacking libutempter0:armhf (1.2.1-3) over (1.2.1-2) ...
Preparing to unpack .../040-screen_4.9.0-4_armhf.deb ...
Unpacking screen (4.9.0-4) over (4.8.0-6) ...
Preparing to unpack .../041-wget_1.21.3-1+b1_armhf.deb ...
Unpacking wget (1.21.3-1+b1) over (1.21-1+deb11u1) ...
Preparing to unpack .../042-xz-utils_5.4.1-0.2_armhf.deb ...
Unpacking xz-utils (5.4.1-0.2) over (5.2.5-2.1~deb11u1) ...
Preparing to unpack .../043-gtk-update-icon-cache_3.24.37-2_armhf.deb ...
Unpacking gtk-update-icon-cache (3.24.37-2) over (3.24.24-4+deb11u3) ...
Preparing to unpack .../044-adwaita-icon-theme_43-1_all.deb ...
Unpacking adwaita-icon-theme (43-1) over (3.38.0-1) ...
Preparing to unpack .../045-alsa-utils_1.2.8-1_armhf.deb ...
Unpacking alsa-utils (1.2.8-1) over (1.2.4-1+rpt1) ...
Preparing to unpack .../046-dpkg-dev_1.21.22+rpi1_all.deb ...
Unpacking dpkg-dev (1.21.22+rpi1) over (1.20.12+rpi1) ...
Preparing to unpack .../047-debhelper_13.11.4_all.deb ...
Unpacking debhelper (13.11.4) over (13.3.4) ...
Preparing to unpack .../048-libdebhelper-perl_13.11.4_all.deb ...
Unpacking libdebhelper-perl (13.11.4) over (13.3.4) ...
Preparing to unpack .../049-libdpkg-perl_1.21.22+rpi1_all.deb ...
Unpacking libdpkg-perl (1.21.22+rpi1) over (1.20.12+rpi1) ...
Preparing to unpack .../050-libsub-override-perl_0.09-4_all.deb ...
Unpacking libsub-override-perl (0.09-4) over (0.09-2) ...
Preparing to unpack .../051-dh-strip-nondeterminism_1.13.1-1_all.deb ...
Unpacking dh-strip-nondeterminism (1.13.1-1) over (1.12.0-1) ...
Preparing to unpack .../052-libfile-stripnondeterminism-perl_1.13.1-1_all.deb ...
Unpacking libfile-stripnondeterminism-perl (1.13.1-1) over (1.12.0-1) ...
Preparing to unpack .../053-dwz_0.15-1_armhf.deb ...
Unpacking dwz (0.15-1) over (0.13+20210201-1) ...
Preparing to unpack .../054-apache2-dev_2.4.57-2_armhf.deb ...
Unpacking apache2-dev (2.4.57-2) over (2.4.56-1~deb11u2) ...
Preparing to unpack .../055-libregexp-assemble-perl_0.38-2_all.deb ...
Unpacking libregexp-assemble-perl (0.38-2) over (0.36-1.1) ...
Preparing to unpack .../056-apt-file_3.3_all.deb ...
Unpacking apt-file (3.3) over (3.2.2) ...
Selecting previously unselected package at-spi2-common.
Preparing to unpack .../057-at-spi2-common_2.46.0-5_all.deb ...
Unpacking at-spi2-common (2.46.0-5) ...
Preparing to unpack .../058-autoconf2.64_2.64+dfsg-1.1_all.deb ...
Unpacking autoconf2.64 (2.64+dfsg-1.1) over (2.64+dfsg-1) ...
Preparing to unpack .../059-gettext_0.21-12_armhf.deb ...
Unpacking gettext (0.21-12) over (0.21-4) ...
Preparing to unpack .../060-autopoint_0.21-12_all.deb ...
Unpacking autopoint (0.21-12) over (0.21-4) ...
Preparing to unpack .../061-bison_2%3a3.8.2+dfsg-1_armhf.deb ...
Unpacking bison (2:3.8.2+dfsg-1) over (2:3.7.5+dfsg-1) ...
Preparing to unpack .../062-bubblewrap_0.8.0-2_armhf.deb ...
Unpacking bubblewrap (0.8.0-2) over (0.4.1-3) ...
Selecting previously unselected package libllvm14:armhf.
Preparing to unpack .../063-libllvm14_1%3a14.0.6-12+rpi1_armhf.deb ...
Unpacking libllvm14:armhf (1:14.0.6-12+rpi1) ...
Selecting previously unselected package libclang-cpp14.
Preparing to unpack .../064-libclang-cpp14_1%3a14.0.6-12+rpi1_armhf.deb ...
Unpacking libclang-cpp14 (1:14.0.6-12+rpi1) ...
Selecting previously unselected package libasan8:armhf.
Preparing to unpack .../065-libasan8_12.2.0-14+rpi1_armhf.deb ...
Unpacking libasan8:armhf (12.2.0-14+rpi1) ...
Selecting previously unselected package libgcc-12-dev:armhf.
Preparing to unpack .../066-libgcc-12-dev_12.2.0-14+rpi1_armhf.deb ...
Unpacking libgcc-12-dev:armhf (12.2.0-14+rpi1) ...
Selecting previously unselected package libstdc++-12-dev:armhf.
Preparing to unpack .../067-libstdc++-12-dev_12.2.0-14+rpi1_armhf.deb ...
Unpacking libstdc++-12-dev:armhf (12.2.0-14+rpi1) ...
Selecting previously unselected package libobjc-12-dev:armhf.
Preparing to unpack .../068-libobjc-12-dev_12.2.0-14+rpi1_armhf.deb ...
Unpacking libobjc-12-dev:armhf (12.2.0-14+rpi1) ...
Selecting previously unselected package libclang-common-14-dev.
Preparing to unpack .../069-libclang-common-14-dev_1%3a14.0.6-12+rpi1_all.deb ...
Unpacking libclang-common-14-dev (1:14.0.6-12+rpi1) ...
Selecting previously unselected package llvm-14-linker-tools.
Preparing to unpack .../070-llvm-14-linker-tools_1%3a14.0.6-12+rpi1_armhf.deb ...
Unpacking llvm-14-linker-tools (1:14.0.6-12+rpi1) ...
Selecting previously unselected package libclang1-14.
Preparing to unpack .../071-libclang1-14_1%3a14.0.6-12+rpi1_armhf.deb ...
Unpacking libclang1-14 (1:14.0.6-12+rpi1) ...
Selecting previously unselected package clang-14.
Preparing to unpack .../072-clang-14_1%3a14.0.6-12+rpi1_armhf.deb ...
Unpacking clang-14 (1:14.0.6-12+rpi1) ...
Preparing to unpack .../073-clang_1%3a14.0-55.6_armhf.deb ...
Unpacking clang (1:14.0-55.6) over (1:11.0-51+nmu5) ...
Preparing to unpack .../074-clang-11_1%3a11.1.0-6+rpi2_armhf.deb ...
Unpacking clang-11 (1:11.1.0-6+rpi2) over (1:11.0.1-2+rpi1) ...
Preparing to unpack .../075-libclang-common-11-dev_1%3a11.1.0-6+rpi2_armhf.deb ...
Unpacking libclang-common-11-dev (1:11.1.0-6+rpi2) over (1:11.0.1-2+rpi1) ...
Preparing to unpack .../076-libclang-cpp11_1%3a11.1.0-6+rpi2_armhf.deb ...
Unpacking libclang-cpp11 (1:11.1.0-6+rpi2) over (1:11.0.1-2+rpi1) ...
Preparing to unpack .../077-libllvm11_1%3a11.1.0-6+rpi2_armhf.deb ...
Unpacking libllvm11:armhf (1:11.1.0-6+rpi2) over (1:11.0.1-2+rpi1) ...
Selecting previously unselected package libgcc-11-dev:armhf.
Preparing to unpack .../078-libgcc-11-dev_11.3.0-12+rpi1_armhf.deb ...
Unpacking libgcc-11-dev:armhf (11.3.0-12+rpi1) ...
Selecting previously unselected package libstdc++-11-dev:armhf.
Preparing to unpack .../079-libstdc++-11-dev_11.3.0-12+rpi1_armhf.deb ...
Unpacking libstdc++-11-dev:armhf (11.3.0-12+rpi1) ...
Selecting previously unselected package libobjc-11-dev:armhf.
Preparing to unpack .../080-libobjc-11-dev_11.3.0-12+rpi1_armhf.deb ...
Unpacking libobjc-11-dev:armhf (11.3.0-12+rpi1) ...
Selecting previously unselected package llvm-11-linker-tools.
Preparing to unpack .../081-llvm-11-linker-tools_1%3a11.1.0-6+rpi2_armhf.deb ...
Unpacking llvm-11-linker-tools (1:11.1.0-6+rpi2) ...
Preparing to unpack .../082-libclang1-11_1%3a11.1.0-6+rpi2_armhf.deb ...
Unpacking libclang1-11 (1:11.1.0-6+rpi2) over (1:11.0.1-2+rpi1) ...
Preparing to unpack .../083-libarchive13_3.6.2-1_armhf.deb ...
Unpacking libarchive13:armhf (3.6.2-1) over (3.4.3-2+deb11u1) ...
Selecting previously unselected package libjsoncpp25:armhf.
Preparing to unpack .../084-libjsoncpp25_1.9.5-4_armhf.deb ...
Unpacking libjsoncpp25:armhf (1.9.5-4) ...
Preparing to unpack .../085-librhash0_1.4.3-3_armhf.deb ...
Unpacking librhash0:armhf (1.4.3-3) over (1.4.1-2) ...
Preparing to unpack .../086-libuv1-dev_1.44.2-1+rpi1_armhf.deb ...
Unpacking libuv1-dev:armhf (1.44.2-1+rpi1) over (1.40.0-2) ...
Preparing to unpack .../087-libuv1_1.44.2-1+rpi1_armhf.deb ...
Unpacking libuv1:armhf (1.44.2-1+rpi1) over (1.40.0-2) ...
Preparing to unpack .../088-cmake_3.25.1-1_armhf.deb ...
Unpacking cmake (3.25.1-1) over (3.18.4-2+rpt1+rpi1+deb11u1) ...
Preparing to unpack .../089-cmake-data_3.25.1-1_all.deb ...
Unpacking cmake-data (3.25.1-1) over (3.18.4-2+rpt1+rpi1+deb11u1) ...
Preparing to unpack .../090-colorized-logs_2.6-1_armhf.deb ...
Unpacking colorized-logs (2.6-1) over (2.5-1) ...
Selecting previously unselected package cpp-12.
Preparing to unpack .../091-cpp-12_12.2.0-14+rpi1_armhf.deb ...
Unpacking cpp-12 (12.2.0-14+rpi1) ...
Selecting previously unselected package gcc-12.
Preparing to unpack .../092-gcc-12_12.2.0-14+rpi1_armhf.deb ...
Unpacking gcc-12 (12.2.0-14+rpi1) ...
Preparing to unpack .../093-g++_4%3a12.2.0-3+rpi1_armhf.deb ...
Unpacking g++ (4:12.2.0-3+rpi1) over (4:10.2.1-1+rpi1) ...
Preparing to unpack .../094-gcc_4%3a12.2.0-3+rpi1_armhf.deb ...
Unpacking gcc (4:12.2.0-3+rpi1) over (4:10.2.1-1+rpi1) ...
Selecting previously unselected package g++-12.
Preparing to unpack .../095-g++-12_12.2.0-14+rpi1_armhf.deb ...
Unpacking g++-12 (12.2.0-14+rpi1) ...
Preparing to unpack .../096-cpp_4%3a12.2.0-3+rpi1_armhf.deb ...
Unpacking cpp (4:12.2.0-3+rpi1) over (4:10.2.1-1+rpi1) ...
Preparing to unpack .../097-dconf-gsettings-backend_0.40.0-4_armhf.deb ...
Unpacking dconf-gsettings-backend:armhf (0.40.0-4) over (0.38.0-2) ...
Preparing to unpack .../098-dconf-service_0.40.0-4_armhf.deb ...
Unpacking dconf-service (0.40.0-4) over (0.38.0-2) ...
Preparing to unpack .../099-libdconf1_0.40.0-4_armhf.deb ...
Unpacking libdconf1:armhf (0.40.0-4) over (0.38.0-2) ...
Preparing to unpack .../100-mysql-common_5.8+1.1.0_all.deb ...
Unpacking mysql-common (5.8+1.1.0) over (5.8+1.0.7) ...
Preparing to unpack .../101-mariadb-common_1%3a10.11.3-1+rpi1_all.deb ...
Unpacking mariadb-common (1:10.11.3-1+rpi1) over (1:10.5.19-0+deb11u2) ...
Preparing to unpack .../102-libmariadb-dev-compat_1%3a10.11.3-1+rpi1_armhf.deb ...
Unpacking libmariadb-dev-compat (1:10.11.3-1+rpi1) over (1:10.5.19-0+deb11u2) ...
Preparing to unpack .../103-libmariadb-dev_1%3a10.11.3-1+rpi1_armhf.deb ...
Unpacking libmariadb-dev (1:10.11.3-1+rpi1) over (1:10.5.19-0+deb11u2) ...
Preparing to unpack .../104-libmariadb3_1%3a10.11.3-1+rpi1_armhf.deb ...
Unpacking libmariadb3:armhf (1:10.11.3-1+rpi1) over (1:10.5.19-0+deb11u2) ...
Preparing to unpack .../105-libssl-dev_3.0.9-1_armhf.deb ...
Unpacking libssl-dev:armhf (3.0.9-1) over (1.1.1n-0+deb11u5+rpt1) ...
Preparing to unpack .../106-default-libmysqlclient-dev_1.1.0_armhf.deb ...
Unpacking default-libmysqlclient-dev:armhf (1.1.0) over (1.0.7) ...
Preparing to unpack .../107-libfdt1_1.6.1-4+b1_armhf.deb ...
Unpacking libfdt1:armhf (1.6.1-4+b1) over (1.6.0-1) ...
Preparing to unpack .../108-libyaml-0-2_0.2.5-1_armhf.deb ...
Unpacking libyaml-0-2:armhf (0.2.5-1) over (0.2.2-1) ...
Preparing to unpack .../109-device-tree-compiler_1.6.1-4+b1_armhf.deb ...
Unpacking device-tree-compiler (1.6.1-4+b1) over (1.6.0-1) ...
Preparing to unpack .../110-emacsen-common_3.0.5_all.deb ...
Unpacking emacsen-common (3.0.5) over (3.0.4) ...
Preparing to unpack .../111-dictionaries-common_1.29.5_all.deb ...
Leaving 'diversion of /usr/share/dict/words to /usr/share/dict/words.pre-dictionaries-common by dictionaries-c
ommon'
Unpacking dictionaries-common (1.29.5) over (1.28.4) ...
Preparing to unpack .../112-distro-info-data_0.58_all.deb ...
Unpacking distro-info-data (0.58) over (0.51+deb11u3) ...
Preparing to unpack .../113-ethtool_1%3a6.1-1_armhf.deb ...
Unpacking ethtool (1:6.1-1) over (1:5.9-1) ...
Preparing to unpack .../114-expat_2.5.0-1_armhf.deb ...
Unpacking expat (2.5.0-1) over (2.2.10-2+deb11u5) ...
Preparing to unpack .../115-fake-hwclock_0.12+nmu1_all.deb ...
Unpacking fake-hwclock (0.12+nmu1) over (0.12) ...
Preparing to unpack .../116-libfakeroot_1.31-1.2_armhf.deb ...
Unpacking libfakeroot:armhf (1.31-1.2) over (1.25.3-1.1) ...
Preparing to unpack .../117-fakeroot_1.31-1.2_armhf.deb ...
Unpacking fakeroot (1.31-1.2) over (1.25.3-1.1) ...
Preparing to unpack .../118-libib-util_3.0.11.33637.ds4-2+b1_armhf.deb ...
Unpacking libib-util:armhf (3.0.11.33637.ds4-2+b1) over (3.0.7.33374.ds4-2) ...
Preparing to unpack .../119-firebird-dev_3.0.11.33637.ds4-2+b1_armhf.deb ...
Unpacking firebird-dev (3.0.11.33637.ds4-2+b1) over (3.0.7.33374.ds4-2) ...
Preparing to unpack .../120-libfbclient2_3.0.11.33637.ds4-2+b1_armhf.deb ...
Unpacking libfbclient2:armhf (3.0.11.33637.ds4-2+b1) over (3.0.7.33374.ds4-2) ...
Preparing to unpack .../121-firebird3.0-common_3.0.11.33637.ds4-2_all.deb ...
Unpacking firebird3.0-common (3.0.11.33637.ds4-2) over (3.0.7.33374.ds4-2) ...
Preparing to unpack .../122-firebird3.0-common-doc_3.0.11.33637.ds4-2_all.deb ...
Unpacking firebird3.0-common-doc (3.0.11.33637.ds4-2) over (3.0.7.33374.ds4-2) ...
Preparing to unpack .../123-flac_1.4.2+ds-2_armhf.deb ...
Unpacking flac (1.4.2+ds-2) over (1.3.3-2+deb11u1) ...
Preparing to unpack .../124-freetds-common_1.3.17+ds-2_all.deb ...
Unpacking freetds-common (1.3.17+ds-2) over (1.2.3-1) ...
Preparing to unpack .../125-freetds-dev_1.3.17+ds-2_armhf.deb ...
Unpacking freetds-dev (1.3.17+ds-2) over (1.2.3-1) ...
Preparing to unpack .../126-libct4_1.3.17+ds-2_armhf.deb ...
Unpacking libct4:armhf (1.3.17+ds-2) over (1.2.3-1) ...
Preparing to unpack .../127-libsybdb5_1.3.17+ds-2_armhf.deb ...
Unpacking libsybdb5:armhf (1.3.17+ds-2) over (1.2.3-1) ...
Preparing to unpack .../128-libatk1.0-0_2.46.0-5_armhf.deb ...
Unpacking libatk1.0-0:armhf (2.46.0-5) over (2.36.0-2) ...
Preparing to unpack .../129-libxi6_2%3a1.8-1_armhf.deb ...
Unpacking libxi6:armhf (2:1.8-1) over (2:1.7.10-1) ...
Preparing to unpack .../130-libatspi2.0-0_2.46.0-5_armhf.deb ...
Unpacking libatspi2.0-0:armhf (2.46.0-5) over (2.38.0-4+deb11u1) ...
Preparing to unpack .../131-libatk-bridge2.0-0_2.46.0-5_armhf.deb ...
Unpacking libatk-bridge2.0-0:armhf (2.46.0-5) over (2.38.0-1) ...
Preparing to unpack .../132-libcolord2_1.4.6-2.2_armhf.deb ...
Unpacking libcolord2:armhf (1.4.6-2.2) over (1.4.5-3) ...
Preparing to unpack .../133-libavahi-client3_0.8-10_armhf.deb ...
Unpacking libavahi-client3:armhf (0.8-10) over (0.8-5+deb11u2) ...
Preparing to unpack .../134-libavahi-common3_0.8-10_armhf.deb ...
Unpacking libavahi-common3:armhf (0.8-10) over (0.8-5+deb11u2) ...
Preparing to unpack .../135-libavahi-common-data_0.8-10_armhf.deb ...
Unpacking libavahi-common-data:armhf (0.8-10) over (0.8-5+deb11u2) ...
Preparing to unpack .../136-libcups2_2.4.2-3+deb12u1_armhf.deb ...
Unpacking libcups2:armhf (2.4.2-3+deb12u1) over (2.3.3op2-3+deb11u2) ...
Preparing to unpack .../137-libwayland-cursor0_1.21.0-1_armhf.deb ...
Unpacking libwayland-cursor0:armhf (1.21.0-1) over (1.18.0-2~exp1.1) ...
Preparing to unpack .../138-libwayland-egl1_1.21.0-1_armhf.deb ...
Unpacking libwayland-egl1:armhf (1.21.0-1) over (1.18.0-2~exp1.1) ...
Preparing to unpack .../139-libxcursor1_1%3a1.2.1-1_armhf.deb ...
Unpacking libxcursor1:armhf (1:1.2.1-1) over (1:1.2.0-2) ...
Preparing to unpack .../140-libxdamage1_1%3a1.1.6-1_armhf.deb ...
Unpacking libxdamage1:armhf (1:1.1.6-1) over (1:1.1.5-2) ...
Preparing to unpack .../141-libxinerama1_2%3a1.1.4-3_armhf.deb ...
Unpacking libxinerama1:armhf (2:1.1.4-3) over (2:1.1.4-2) ...
Preparing to unpack .../142-libxcb-xkb1_1.15-1_armhf.deb ...
Unpacking libxcb-xkb1:armhf (1.15-1) over (1.14-3) ...
Preparing to unpack .../143-libxkbcommon-x11-0_1.5.0-1_armhf.deb ...
Unpacking libxkbcommon-x11-0:armhf (1.5.0-1) over (1.0.3-2) ...
Preparing to unpack .../144-libxkbcommon0_1.5.0-1_armhf.deb ...
Unpacking libxkbcommon0:armhf (1.5.0-1) over (1.0.3-2) ...
Preparing to unpack .../145-libgtk-3-common_3.24.37-2_all.deb ...
Unpacking libgtk-3-common (3.24.37-2) over (3.24.24-4+deb11u3) ...
Preparing to unpack .../146-libgtk-3-0_3.24.37-2_armhf.deb ...
Unpacking libgtk-3-0:armhf (3.24.37-2) over (3.24.24-4+deb11u3) ...
Preparing to unpack .../147-galculator_2.1.4-1.2_armhf.deb ...
Unpacking galculator (2.1.4-1.2) over (2.1.4-1.1) ...
Preparing to unpack .../148-libproxy1v5_0.4.18-1.2_armhf.deb ...
Unpacking libproxy1v5:armhf (0.4.18-1.2) over (0.4.17-1) ...
Preparing to unpack .../149-glib-networking-common_2.74.0-4_all.deb ...
Unpacking glib-networking-common (2.74.0-4) over (2.66.0-2) ...
Preparing to unpack .../150-glib-networking_2.74.0-4_armhf.deb ...
Unpacking glib-networking:armhf (2.74.0-4) over (2.66.0-2) ...
Preparing to unpack .../151-glib-networking-services_2.74.0-4_armhf.deb ...
Unpacking glib-networking-services (2.74.0-4) over (2.66.0-2) ...
Preparing to unpack .../152-gsettings-desktop-schemas_43.0-1_all.deb ...
Unpacking gsettings-desktop-schemas (43.0-1) over (3.38.0-2+rpt1) ...
Preparing to unpack .../153-golang-1.15-src_1.15.15-5+rpi1_armhf.deb ...
Unpacking golang-1.15-src (1.15.15-5+rpi1) over (1.15.15-1~deb11u4+rpi1) ...
Preparing to unpack .../154-golang-1.15-go_1.15.15-5+rpi1_armhf.deb ...
Unpacking golang-1.15-go (1.15.15-5+rpi1) over (1.15.15-1~deb11u4+rpi1) ...
Selecting previously unselected package golang-1.19-src.
Preparing to unpack .../155-golang-1.19-src_1.19.8-2_all.deb ...
Unpacking golang-1.19-src (1.19.8-2) ...
Selecting previously unselected package golang-1.19-go.
Preparing to unpack .../156-golang-1.19-go_1.19.8-2_armhf.deb ...
Unpacking golang-1.19-go (1.19.8-2) ...
Preparing to unpack .../157-golang-src_2%3a1.19~1_all.deb ...
Unpacking golang-src (2:1.19~1) over (2:1.15~1) ...
Preparing to unpack .../158-golang-go_2%3a1.19~1_armhf.deb ...
Unpacking golang-go:armhf (2:1.19~1) over (2:1.15~1) ...
Preparing to unpack .../159-gparted_1.3.1-1_armhf.deb ...
Unpacking gparted (1.3.1-1) over (1.2.0-1) ...
Preparing to unpack .../160-gparted-common_1.3.1-1_all.deb ...
Unpacking gparted-common (1.3.1-1) over (1.2.0-1) ...
Preparing to unpack .../161-libsigc++-2.0-0v5_2.12.0-1_armhf.deb ...
Unpacking libsigc++-2.0-0v5:armhf (2.12.0-1) over (2.10.4-2) ...
Preparing to unpack .../162-libglibmm-2.4-1v5_2.66.5-2_armhf.deb ...
Unpacking libglibmm-2.4-1v5:armhf (2.66.5-2) over (2.64.2-2) ...
Preparing to unpack .../163-libatkmm-1.6-1v5_2.28.3-1_armhf.deb ...
Unpacking libatkmm-1.6-1v5:armhf (2.28.3-1) over (2.28.0-3) ...
Preparing to unpack .../164-libcairomm-1.0-1v5_1.14.4-2_armhf.deb ...
Unpacking libcairomm-1.0-1v5:armhf (1.14.4-2) over (1.12.2-4) ...
Preparing to unpack .../165-libpangomm-1.4-1v5_2.46.3-1_armhf.deb ...
Unpacking libpangomm-1.4-1v5:armhf (2.46.3-1) over (2.42.1-1) ...
Preparing to unpack .../166-libgtkmm-3.0-1v5_3.24.7-1_armhf.deb ...
Unpacking libgtkmm-3.0-1v5:armhf (3.24.7-1) over (3.24.2-2) ...
Preparing to unpack .../167-parted_3.5-3_armhf.deb ...
Unpacking parted (3.5-3) over (3.4-1) ...
Preparing to unpack .../168-libparted-fs-resize0_3.5-3_armhf.deb ...
Unpacking libparted-fs-resize0:armhf (3.5-3) over (3.4-1) ...
Preparing to unpack .../169-libparted2_3.5-3_armhf.deb ...
Unpacking libparted2:armhf (3.5-3) over (3.4-1) ...
Selecting previously unselected package xml-core.
Preparing to unpack .../170-xml-core_0.18+nmu1_all.deb ...
Unpacking xml-core (0.18+nmu1) ...
Selecting previously unselected package libduktape207:armhf.
Preparing to unpack .../171-libduktape207_2.7.0-2_armhf.deb ...
Unpacking libduktape207:armhf (2.7.0-2) ...
Preparing to unpack .../172-policykit-1_122-3_armhf.deb ...
Unpacking policykit-1 (122-3) over (0.105-31+rpt1+deb11u1) ...
Preparing to unpack .../173-libpolkit-agent-1-0_122-3_armhf.deb ...
Unpacking libpolkit-agent-1-0:armhf (122-3) over (0.105-31+rpt1+deb11u1) ...
Preparing to unpack .../174-libpolkit-gobject-1-0_122-3_armhf.deb ...
Unpacking libpolkit-gobject-1-0:armhf (122-3) over (0.105-31+rpt1+deb11u1) ...
Selecting previously unselected package polkitd.
Preparing to unpack .../175-polkitd_122-3_armhf.deb ...
Unpacking polkitd (122-3) ...
Selecting previously unselected package pkexec.
Preparing to unpack .../176-pkexec_122-3_armhf.deb ...
Unpacking pkexec (122-3) ...
Preparing to unpack .../177-libcdt5_2.42.2-7+b2_armhf.deb ...
Unpacking libcdt5:armhf (2.42.2-7+b2) over (2.42.2-5) ...
Preparing to unpack .../178-libcgraph6_2.42.2-7+b2_armhf.deb ...
Unpacking libcgraph6:armhf (2.42.2-7+b2) over (2.42.2-5) ...
Selecting previously unselected package libabsl20220623:armhf.
Preparing to unpack .../179-libabsl20220623_20220623.1-1+rpi1_armhf.deb ...
Unpacking libabsl20220623:armhf (20220623.1-1+rpi1) ...
Selecting previously unselected package libgav1-1:armhf.
Preparing to unpack .../180-libgav1-1_0.18.0-1+rpi1+b1_armhf.deb ...
Unpacking libgav1-1:armhf (0.18.0-1+rpi1+b1) ...
Selecting previously unselected package libyuv0:armhf.
Preparing to unpack .../181-libyuv0_0.0~git20230123.b2528b0-1_armhf.deb ...
Unpacking libyuv0:armhf (0.0~git20230123.b2528b0-1) ...
Selecting previously unselected package libavif15:armhf.
Preparing to unpack .../182-libavif15_0.11.1-1_armhf.deb ...
Unpacking libavif15:armhf (0.11.1-1) ...
Selecting previously unselected package libavif-dev:armhf.
Preparing to unpack .../183-libavif-dev_0.11.1-1_armhf.deb ...
Unpacking libavif-dev:armhf (0.11.1-1) ...
Preparing to unpack .../184-libde265-0_1.0.11-1+rpi1_armhf.deb ...
Unpacking libde265-0:armhf (1.0.11-1+rpi1) over (1.0.11-0+deb11u1+rpi1) ...
Preparing to unpack .../185-libheif1_1.15.1-1_armhf.deb ...
Unpacking libheif1:armhf (1.15.1-1) over (1.11.0-1) ...
Selecting previously unselected package libaom-dev:armhf.
Preparing to unpack .../186-libaom-dev_3.6.0-1_armhf.deb ...
Unpacking libaom-dev:armhf (3.6.0-1) ...
Selecting previously unselected package libdav1d-dev:armhf.
Preparing to unpack .../187-libdav1d-dev_1.0.0-2+rpi1_armhf.deb ...
Unpacking libdav1d-dev:armhf (1.0.0-2+rpi1) ...
Selecting previously unselected package libde265-dev:armhf.
Preparing to unpack .../188-libde265-dev_1.0.11-1+rpi1_armhf.deb ...
Unpacking libde265-dev:armhf (1.0.11-1+rpi1) ...
Selecting previously unselected package libx265-dev:armhf.
Preparing to unpack .../189-libx265-dev_3.5-2_armhf.deb ...
Unpacking libx265-dev:armhf (3.5-2) ...
Selecting previously unselected package libheif-dev:armhf.
Preparing to unpack .../190-libheif-dev_1.15.1-1_armhf.deb ...
Unpacking libheif-dev:armhf (1.15.1-1) ...
Preparing to unpack .../191-libjpeg-dev_1%3a2.1.5-2_armhf.deb ...
Unpacking libjpeg-dev:armhf (1:2.1.5-2) over (1:2.0.6-4) ...
Selecting previously unselected package libzstd-dev:armhf.
Preparing to unpack .../192-libzstd-dev_1.5.4+dfsg2-5_armhf.deb ...
Unpacking libzstd-dev:armhf (1.5.4+dfsg2-5) ...
Selecting previously unselected package libtiffxx6:armhf.
Preparing to unpack .../193-libtiffxx6_4.5.0-6_armhf.deb ...
Unpacking libtiffxx6:armhf (4.5.0-6) ...
Selecting previously unselected package liblerc-dev:armhf.
Preparing to unpack .../194-liblerc-dev_4.0.0+ds-2_armhf.deb ...
Unpacking liblerc-dev:armhf (4.0.0+ds-2) ...
Preparing to unpack .../195-libtiff-dev_4.5.0-6_armhf.deb ...
Unpacking libtiff-dev:armhf (4.5.0-6) over (4.2.0-1+deb11u4) ...
Preparing to unpack .../196-libvpx-dev_1.12.0-1_armhf.deb ...
Unpacking libvpx-dev:armhf (1.12.0-1) over (1.9.0-1) ...
Preparing to unpack .../197-libgd-dev_2.3.3-9_armhf.deb ...
Unpacking libgd-dev:armhf (2.3.3-9) over (2.3.0-2) ...
Preparing to unpack .../198-libgd3_2.3.3-9_armhf.deb ...
Unpacking libgd3:armhf (2.3.3-9) over (2.3.0-2) ...
Preparing to unpack .../199-libgts-0.7-5_0.7.6+darcs121130-5_armhf.deb ...
Unpacking libgts-0.7-5:armhf (0.7.6+darcs121130-5) over (0.7.6+darcs121130-4) ...
Preparing to unpack .../200-libpathplan4_2.42.2-7+b2_armhf.deb ...
Unpacking libpathplan4:armhf (2.42.2-7+b2) over (2.42.2-5) ...
Preparing to unpack .../201-libgvc6_2.42.2-7+b2_armhf.deb ...
Unpacking libgvc6 (2.42.2-7+b2) over (2.42.2-5) ...
Preparing to unpack .../202-libgvpr2_2.42.2-7+b2_armhf.deb ...
Unpacking libgvpr2:armhf (2.42.2-7+b2) over (2.42.2-5) ...
Preparing to unpack .../203-liblab-gamut1_2.42.2-7+b2_armhf.deb ...
Unpacking liblab-gamut1:armhf (2.42.2-7+b2) over (2.42.2-5) ...
Preparing to unpack .../204-graphviz_2.42.2-7+b2_armhf.deb ...
Unpacking graphviz (2.42.2-7+b2) over (2.42.2-5) ...
Preparing to unpack .../205-libcdparanoia0_3.10.2+debian-14_armhf.deb ...
Unpacking libcdparanoia0:armhf (3.10.2+debian-14) over (3.10.2+debian-13.1) ...
Preparing to unpack .../206-libvisual-0.4-0_0.4.0-19_armhf.deb ...
Unpacking libvisual-0.4-0:armhf (0.4.0-19) over (0.4.0-17) ...
Preparing to unpack .../207-gstreamer1.0-plugins-base_1.22.0-3+deb12u1_armhf.deb ...
Unpacking gstreamer1.0-plugins-base:armhf (1.22.0-3+deb12u1) over (1.18.4-2+deb11u1) ...
Preparing to unpack .../208-libgpm2_1.20.7-10+b2_armhf.deb ...
Unpacking libgpm2:armhf (1.20.7-10+b2) over (1.20.7-8) ...
Preparing to unpack .../209-libslang2_2.3.3-3_armhf.deb ...
Unpacking libslang2:armhf (2.3.3-3) over (2.3.2-5) ...
Preparing to unpack .../210-libaa1_1.4p5-50_armhf.deb ...
Unpacking libaa1:armhf (1.4p5-50) over (1.4p5-48) ...
Preparing to unpack .../211-libcaca0_0.99.beta20-3_armhf.deb ...
Unpacking libcaca0:armhf (0.99.beta20-3) over (0.99.beta19-2.2) ...
Preparing to unpack .../212-libdv4_1.0.0-15_armhf.deb ...
Unpacking libdv4:armhf (1.0.0-15) over (1.0.0-13) ...
Preparing to unpack .../213-libgudev-1.0-0_237-2_armhf.deb ...
Unpacking libgudev-1.0-0:armhf (237-2) over (234-1) ...
Preparing to unpack .../214-libiec61883-0_1.2.0-6_armhf.deb ...
Unpacking libiec61883-0:armhf (1.2.0-6) over (1.2.0-4) ...
Preparing to unpack .../215-libshout3_2.4.6-1+b1_armhf.deb ...
Unpacking libshout3:armhf (2.4.6-1+b1) over (2.4.5-1) ...
Preparing to unpack .../216-libtag1v5_1.13-2_armhf.deb ...
Unpacking libtag1v5:armhf (1.13-2) over (1.11.1+dfsg.1-3) ...
Preparing to unpack .../217-libtag1v5-vanilla_1.13-2_armhf.deb ...
Unpacking libtag1v5-vanilla:armhf (1.13-2) over (1.11.1+dfsg.1-3) ...
Preparing to unpack .../218-libv4l-0_1.22.1-5_armhf.deb ...
Unpacking libv4l-0:armhf (1.22.1-5) over (1.20.0-2) ...
Preparing to unpack .../219-libv4lconvert0_1.22.1-5_armhf.deb ...
Unpacking libv4lconvert0:armhf (1.22.1-5) over (1.20.0-2) ...
Preparing to unpack .../220-libwavpack1_5.6.0-1_armhf.deb ...
Unpacking libwavpack1:armhf (5.6.0-1) over (5.4.0-1) ...
Preparing to unpack .../221-libsoup-gnome2.4-1_2.74.3-1_armhf.deb ...
Unpacking libsoup-gnome2.4-1:armhf (2.74.3-1) over (2.72.0-2) ...
Selecting previously unselected package libsoup2.4-common.
Preparing to unpack .../222-libsoup2.4-common_2.74.3-1_all.deb ...
Unpacking libsoup2.4-common (2.74.3-1) ...
Preparing to unpack .../223-libsoup2.4-1_2.74.3-1_armhf.deb ...
Unpacking libsoup2.4-1:armhf (2.74.3-1) over (2.72.0-2) ...
Selecting previously unselected package libsoup-3.0-common.
Preparing to unpack .../224-libsoup-3.0-common_3.2.2-2_all.deb ...
Unpacking libsoup-3.0-common (3.2.2-2) ...
Selecting previously unselected package libsoup-3.0-0:armhf.
Preparing to unpack .../225-libsoup-3.0-0_3.2.2-2_armhf.deb ...
Unpacking libsoup-3.0-0:armhf (3.2.2-2) ...
Preparing to unpack .../226-gstreamer1.0-plugins-good_1.22.0-5+deb12u1_armhf.deb ...
Unpacking gstreamer1.0-plugins-good:armhf (1.22.0-5+deb12u1) over (1.18.4-2+deb11u2+rpt1) ...
Preparing to unpack .../227-python3-setuptools_66.1.1-1_all.deb ...
Unpacking python3-setuptools (66.1.1-1) over (52.0.0-4) ...
Preparing to unpack .../228-python3-pkg-resources_66.1.1-1_all.deb ...
Unpacking python3-pkg-resources (66.1.1-1) over (52.0.0-4) ...
Selecting previously unselected package python3-six.
Preparing to unpack .../229-python3-six_1.16.0-4_all.deb ...
Unpacking python3-six (1.16.0-4) ...
Preparing to unpack .../230-gyp_0.1+20220404git9ecf45e-2_all.deb ...
Unpacking gyp (0.1+20220404git9ecf45e-2) over (0.1+20200513gitcaa6002-2) ...
Preparing to unpack .../231-hdparm_9.65+ds-1_armhf.deb ...
Unpacking hdparm (9.65+ds-1) over (9.60+ds-1) ...
Preparing to unpack .../232-libnl-route-3-200_3.7.0-0.2_armhf.deb ...
Unpacking libnl-route-3-200:armhf (3.7.0-0.2) over (3.4.0-1) ...
Preparing to unpack .../233-libnl-genl-3-200_3.7.0-0.2_armhf.deb ...
Unpacking libnl-genl-3-200:armhf (3.7.0-0.2) over (3.4.0-1) ...
Preparing to unpack .../234-libnl-3-200_3.7.0-0.2_armhf.deb ...
Unpacking libnl-3-200:armhf (3.7.0-0.2) over (3.4.0-1) ...
Preparing to unpack .../235-htop_3.2.2-2_armhf.deb ...
Unpacking htop (3.2.2-2) over (3.0.5-7) ...
Preparing to unpack .../236-hunspell-en-us_1%3a2020.12.07-2_all.deb ...
Unpacking hunspell-en-us (1:2020.12.07-2) over (1:2019.10.06-1) ...
Preparing to unpack .../237-libi2c0_4.3-2+b2_armhf.deb ...
Unpacking libi2c0:armhf (4.3-2+b2) over (4.2-1+b1) ...
Preparing to unpack .../238-i2c-tools_4.3-2+b2_armhf.deb ...
Unpacking i2c-tools (4.3-2+b2) over (4.2-1+b1) ...
Preparing to unpack .../239-intltool-debian_0.35.0+20060710.6_all.deb ...
Unpacking intltool-debian (0.35.0+20060710.6) over (0.35.0+20060710.5) ...
Preparing to unpack .../240-iw_5.19-1_armhf.deb ...
Unpacking iw (5.19-1) over (5.9-3) ...
Preparing to unpack .../241-libsuitesparseconfig5_1%3a5.12.0+dfsg-2_armhf.deb ...
Unpacking libsuitesparseconfig5:armhf (1:5.12.0+dfsg-2) over (1:5.8.1+dfsg-2) ...
Preparing to unpack .../242-libamd2_1%3a5.12.0+dfsg-2_armhf.deb ...
Unpacking libamd2:armhf (1:5.12.0+dfsg-2) over (1:5.8.1+dfsg-2) ...
Preparing to unpack .../243-libpspell-dev_0.60.8-4_armhf.deb ...
Unpacking libpspell-dev:armhf (0.60.8-4) over (0.60.8-3) ...
Preparing to unpack .../244-libaspell-dev_0.60.8-4_armhf.deb ...
Unpacking libaspell-dev:armhf (0.60.8-4) over (0.60.8-3) ...
Preparing to unpack .../245-libaspell15_0.60.8-4_armhf.deb ...
Unpacking libaspell15:armhf (0.60.8-4) over (0.60.8-3) ...
Preparing to unpack .../246-libass9_1%3a0.17.1-1_armhf.deb ...
Unpacking libass9:armhf (1:0.17.1-1) over (1:0.15.0-2) ...
Preparing to unpack .../247-libatk1.0-data_2.38.0-1_all.deb ...
Unpacking libatk1.0-data (2.38.0-1) over (2.36.0-2) ...
Preparing to unpack .../248-libopenblas0-pthread_0.3.21+ds-4+rpi1_armhf.deb ...
Unpacking libopenblas0-pthread:armhf (0.3.21+ds-4+rpi1) over (0.3.13+ds-3+rpi1) ...
Preparing to unpack .../249-liblapack3_3.11.0-2_armhf.deb ...
Unpacking liblapack3:armhf (3.11.0-2) over (3.9.0-3) ...
Preparing to unpack .../250-libatlas3-base_3.10.3-13+rpi1_armhf.deb ...
Unpacking libatlas3-base:armhf (3.10.3-13+rpi1) over (3.10.3-10+rpi1) ...
Preparing to unpack .../251-libblas3_3.11.0-2_armhf.deb ...
Unpacking libblas3:armhf (3.11.0-2) over (3.9.0-3) ...
Preparing to unpack .../252-libudfread0_1.1.2-1_armhf.deb ...
Unpacking libudfread0:armhf (1.1.2-1) over (1.1.1-1) ...
Preparing to unpack .../253-libbluray2_1%3a1.3.4-1_armhf.deb ...
Unpacking libbluray2:armhf (1:1.3.4-1) over (1:1.2.1-4+deb11u2) ...
Preparing to unpack .../254-libchromaprint1_1.5.1-2+b2_armhf.deb ...
Unpacking libchromaprint1:armhf (1.5.1-2+b2) over (1.5.0-2) ...
Preparing to unpack .../255-libgme0_0.6.3-6_armhf.deb ...
Unpacking libgme0:armhf (0.6.3-6) over (0.6.3-2) ...
Preparing to unpack .../256-libopenmpt0_0.6.9-1_armhf.deb ...
Unpacking libopenmpt0:armhf (0.6.9-1) over (0.4.11-1) ...
Preparing to unpack .../257-librabbitmq4_0.11.0-1+b1_armhf.deb ...
Unpacking librabbitmq4:armhf (0.11.0-1+b1) over (0.10.0-1) ...
Selecting previously unselected package libcjson1:armhf.
Preparing to unpack .../258-libcjson1_1.7.15-1_armhf.deb ...
Unpacking libcjson1:armhf (1.7.15-1) ...
Selecting previously unselected package libmbedcrypto7:armhf.
Preparing to unpack .../259-libmbedcrypto7_2.28.3-1_armhf.deb ...
Unpacking libmbedcrypto7:armhf (2.28.3-1) ...
Selecting previously unselected package librist4:armhf.
Preparing to unpack .../260-librist4_0.2.7+dfsg-1_armhf.deb ...
Unpacking librist4:armhf (0.2.7+dfsg-1) ...
Selecting previously unselected package libsrt1.5-gnutls:armhf.
Preparing to unpack .../261-libsrt1.5-gnutls_1.5.1-1_armhf.deb ...
Unpacking libsrt1.5-gnutls:armhf (1.5.1-1) ...
Preparing to unpack .../262-libssh-gcrypt-4_0.10.5-2_armhf.deb ...
Unpacking libssh-gcrypt-4:armhf (0.10.5-2) over (0.9.7-0+deb11u1) ...
Preparing to unpack .../263-libzmq5_4.3.4-6_armhf.deb ...
Unpacking libzmq5:armhf (4.3.4-6) over (4.3.4-1) ...
Selecting previously unselected package libavformat59:armhf.
Preparing to unpack .../264-libavformat59_7%3a5.1.3-1_armhf.deb ...
Unpacking libavformat59:armhf (7:5.1.3-1) ...
Preparing to unpack .../265-libayatana-ido3-0.4-0_0.9.3-1_armhf.deb ...
Unpacking libayatana-ido3-0.4-0:armhf (0.9.3-1) over (0.8.2-1) ...
Preparing to unpack .../266-libayatana-indicator3-7_0.9.3-1_armhf.deb ...
Unpacking libayatana-indicator3-7:armhf (0.9.3-1) over (0.8.4-1+deb11u2) ...
Preparing to unpack .../267-libbabl-0.1-0_1%3a0.1.98-1+rpi1_armhf.deb ...
Unpacking libbabl-0.1-0:armhf (1:0.1.98-1+rpi1) over (1:0.1.82-1) ...
Preparing to unpack .../268-libbs2b0_3.1.0+dfsg-7_armhf.deb ...
Unpacking libbs2b0:armhf (3.1.0+dfsg-7) over (3.1.0+dfsg-2.2) ...
Preparing to unpack .../269-libc-ares2_1.18.1-3_armhf.deb ...
Unpacking libc-ares2:armhf (1.18.1-3) over (1.17.1-1+deb11u3) ...
Preparing to unpack .../270-libc-client2007e-dev_8%3a2007f~dfsg-7+b1_armhf.deb ...
Unpacking libc-client2007e-dev (8:2007f~dfsg-7+b1) over (8:2007f~dfsg-7) ...
Preparing to unpack .../271-mlock_8%3a2007f~dfsg-7+b1_armhf.deb ...
Unpacking mlock (8:2007f~dfsg-7+b1) over (8:2007f~dfsg-7) ...
Preparing to unpack .../272-libc-client2007e_8%3a2007f~dfsg-7+b1_armhf.deb ...
Unpacking libc-client2007e (8:2007f~dfsg-7+b1) over (8:2007f~dfsg-7) ...
Preparing to unpack .../273-libcamd2_1%3a5.12.0+dfsg-2_armhf.deb ...
Unpacking libcamd2:armhf (1:5.12.0+dfsg-2) over (1:5.8.1+dfsg-2) ...
Preparing to unpack .../274-libccolamd2_1%3a5.12.0+dfsg-2_armhf.deb ...
Unpacking libccolamd2:armhf (1:5.12.0+dfsg-2) over (1:5.8.1+dfsg-2) ...
Preparing to unpack .../275-libcddb2_1.3.2-7_armhf.deb ...
Unpacking libcddb2 (1.3.2-7) over (1.3.2-6) ...
Preparing to unpack .../276-libcolamd2_1%3a5.12.0+dfsg-2_armhf.deb ...
Unpacking libcolamd2:armhf (1:5.12.0+dfsg-2) over (1:5.8.1+dfsg-2) ...
Preparing to unpack .../277-libcholmod3_1%3a5.12.0+dfsg-2_armhf.deb ...
Unpacking libcholmod3:armhf (1:5.12.0+dfsg-2) over (1:5.8.1+dfsg-2) ...
Preparing to unpack .../278-libdb-dev_5.3.2_armhf.deb ...
Unpacking libdb-dev:armhf (5.3.2) over (5.3.1+nmu1+b1) ...
Preparing to unpack .../279-libdbus-glib-1-2_0.112-3_armhf.deb ...
Unpacking libdbus-glib-1-2:armhf (0.112-3) over (0.110-6) ...
Preparing to unpack .../280-libusb-1.0-0_2%3a1.0.26-1_armhf.deb ...
Unpacking libusb-1.0-0:armhf (2:1.0.26-1) over (2:1.0.24-3) ...
Preparing to unpack .../281-libdc1394-25_2.2.6-4_armhf.deb ...
Unpacking libdc1394-25:armhf (2.2.6-4) over (2.2.6-3) ...
Selecting previously unselected package libdecor-0-0:armhf.
Preparing to unpack .../282-libdecor-0-0_0.1.1-2_armhf.deb ...
Unpacking libdecor-0-0:armhf (0.1.1-2) ...
Preparing to unpack .../283-libisc-export1105_1%3a9.11.19+dfsg-2.1+b1_armhf.deb ...
Unpacking libisc-export1105:armhf (1:9.11.19+dfsg-2.1+b1) over (1:9.11.19+dfsg-2.1) ...
Preparing to unpack .../284-libdns-export1110_1%3a9.11.19+dfsg-2.1+b1_armhf.deb ...
Unpacking libdns-export1110 (1:9.11.19+dfsg-2.1+b1) over (1:9.11.19+dfsg-2.1) ...
Preparing to unpack .../285-libdouble-conversion3_3.2.1-1_armhf.deb ...
Unpacking libdouble-conversion3:armhf (3.2.1-1) over (3.1.5-6.1) ...
Preparing to unpack .../286-libdvdread8_6.1.3-1_armhf.deb ...
Unpacking libdvdread8:armhf (6.1.3-1) over (6.1.1-2) ...
Preparing to unpack .../287-libdvdnav4_6.1.1-1_armhf.deb ...
Unpacking libdvdnav4:armhf (6.1.1-1) over (6.1.0-1+b1) ...
Preparing to unpack .../288-libebml5_1.4.4-1_armhf.deb ...
Unpacking libebml5:armhf (1.4.4-1) over (1.4.2-1) ...
Preparing to unpack .../289-libenchant-2-dev_2.3.3-2_armhf.deb ...
Unpacking libenchant-2-dev:armhf (2.3.3-2) over (2.2.15-1) ...
Preparing to unpack .../290-libhunspell-1.7-0_1.7.1-1+b2_armhf.deb ...
Unpacking libhunspell-1.7-0:armhf (1.7.1-1+b2) over (1.7.0-3+b1) ...
Preparing to unpack .../291-libenchant-2-2_2.3.3-2_armhf.deb ...
Unpacking libenchant-2-2:armhf (2.3.3-2) over (2.2.15-1) ...
Preparing to unpack .../292-libevdev2_1.13.0+dfsg-1+rpi1_armhf.deb ...
Unpacking libevdev2:armhf (1.13.0+dfsg-1+rpi1) over (1.11.0+dfsg-1+rpi1) ...
Preparing to unpack .../293-libevent-dev_2.1.12-stable-8_armhf.deb ...
Unpacking libevent-dev (2.1.12-stable-8) over (2.1.12-stable-1) ...
Preparing to unpack .../294-libevent-pthreads-2.1-7_2.1.12-stable-8_armhf.deb ...
Unpacking libevent-pthreads-2.1-7:armhf (2.1.12-stable-8) over (2.1.12-stable-1) ...
Preparing to unpack .../295-libevent-openssl-2.1-7_2.1.12-stable-8_armhf.deb ...
Unpacking libevent-openssl-2.1-7:armhf (2.1.12-stable-8) over (2.1.12-stable-1) ...
Preparing to unpack .../296-libevent-extra-2.1-7_2.1.12-stable-8_armhf.deb ...
Unpacking libevent-extra-2.1-7:armhf (2.1.12-stable-8) over (2.1.12-stable-1) ...
Preparing to unpack .../297-libevent-core-2.1-7_2.1.12-stable-8_armhf.deb ...
Unpacking libevent-core-2.1-7:armhf (2.1.12-stable-8) over (2.1.12-stable-1) ...
Preparing to unpack .../298-libevent-2.1-7_2.1.12-stable-8_armhf.deb ...
Unpacking libevent-2.1-7:armhf (2.1.12-stable-8) over (2.1.12-stable-1) ...
Preparing to unpack .../299-libexif12_0.6.24-1+b2_armhf.deb ...
Unpacking libexif12:armhf (0.6.24-1+b2) over (0.6.22-3) ...
Preparing to unpack .../300-libexiv2-27_0.27.6-1_armhf.deb ...
Unpacking libexiv2-27:armhf (0.27.6-1) over (0.27.3-3+deb11u2) ...
Preparing to unpack .../301-libexporter-tiny-perl_1.006000-1_all.deb ...
Unpacking libexporter-tiny-perl (1.006000-1) over (1.002002-1) ...
Preparing to unpack .../302-libfaad2_2.10.1-1_armhf.deb ...
Unpacking libfaad2:armhf (2.10.1-1) over (2.10.0-1) ...
Preparing to unpack .../303-libfann-dev_2.2.0+ds-8_armhf.deb ...
Unpacking libfann-dev:armhf (2.2.0+ds-8) over (2.2.0+ds-6) ...
Preparing to unpack .../304-libfann2_2.2.0+ds-8_armhf.deb ...
Unpacking libfann2:armhf (2.2.0+ds-8) over (2.2.0+ds-6) ...
Preparing to unpack .../305-libfftw3-double3_3.3.10-1_armhf.deb ...
Unpacking libfftw3-double3:armhf (3.3.10-1) over (3.3.8-2) ...
Preparing to unpack .../306-libfile-readbackwards-perl_1.06-2_all.deb ...
Unpacking libfile-readbackwards-perl (1.06-2) over (1.05-2) ...
Preparing to unpack .../307-libflite1_2.2-5_armhf.deb ...
Unpacking libflite1:armhf (2.2-5) over (2.2-2) ...
Preparing to unpack .../308-libgcr-ui-3-1_3.41.1-1_armhf.deb ...
Unpacking libgcr-ui-3-1:armhf (3.41.1-1) over (3.38.1-2) ...
Preparing to unpack .../309-libgcr-base-3-1_3.41.1-1_armhf.deb ...
Unpacking libgcr-base-3-1:armhf (3.41.1-1) over (3.38.1-2) ...
Preparing to unpack .../310-libgck-1-0_3.41.1-1_armhf.deb ...
Unpacking libgck-1-0:armhf (3.41.1-1) over (3.38.1-2) ...
Preparing to unpack .../311-libjson-glib-1.0-common_1.6.6-1_all.deb ...
Unpacking libjson-glib-1.0-common (1.6.6-1) over (1.6.2-1) ...
Preparing to unpack .../312-libjson-glib-1.0-0_1.6.6-1_armhf.deb ...
Unpacking libjson-glib-1.0-0:armhf (1.6.6-1) over (1.6.2-1) ...
Selecting previously unselected package libimath-3-1-29:armhf.
Preparing to unpack .../313-libimath-3-1-29_3.1.6-1+b1_armhf.deb ...
Unpacking libimath-3-1-29:armhf (3.1.6-1+b1) ...
Selecting previously unselected package libopenexr-3-1-30:armhf.
Preparing to unpack .../314-libopenexr-3-1-30_3.1.5-5_armhf.deb ...
Unpacking libopenexr-3-1-30:armhf (3.1.5-5) ...
Preparing to unpack .../315-libnspr4_2%3a4.35-1_armhf.deb ...
Unpacking libnspr4:armhf (2:4.35-1) over (2:4.29-1) ...
Preparing to unpack .../316-libnss3_2%3a3.87.1-1_armhf.deb ...
Unpacking libnss3:armhf (2:3.87.1-1) over (2:3.61-1+deb11u3) ...
Selecting previously unselected package libpoppler126:armhf.
Preparing to unpack .../317-libpoppler126_22.12.0-2_armhf.deb ...
Unpacking libpoppler126:armhf (22.12.0-2) ...
Preparing to unpack .../318-libpoppler-glib8_22.12.0-2_armhf.deb ...
Unpacking libpoppler-glib8:armhf (22.12.0-2) over (20.09.0-3.1+deb11u1) ...
Preparing to unpack .../319-libraw20_0.20.2-2.1_armhf.deb ...
Unpacking libraw20:armhf (0.20.2-2.1) over (0.20.2-1+deb11u1) ...
Selecting previously unselected package libswscale6:armhf.
Preparing to unpack .../320-libswscale6_7%3a5.1.3-1_armhf.deb ...
Unpacking libswscale6:armhf (7:5.1.3-1) ...
Preparing to unpack .../321-libumfpack5_1%3a5.12.0+dfsg-2_armhf.deb ...
Unpacking libumfpack5:armhf (1:5.12.0+dfsg-2) over (1:5.8.1+dfsg-2) ...
Preparing to unpack .../322-libgegl-common_1%3a0.4.42-2_all.deb ...
Unpacking libgegl-common (1:0.4.42-2) over (1:0.4.26-2) ...
Preparing to unpack .../323-libgegl-0.4-0_1%3a0.4.42-2_armhf.deb ...
Unpacking libgegl-0.4-0:armhf (1:0.4.42-2) over (1:0.4.26-2) ...
Preparing to unpack .../324-libgexiv2-2_0.14.0-1_armhf.deb ...
Unpacking libgexiv2-2:armhf (0.14.0-1) over (0.12.1-1) ...
Preparing to unpack .../325-libgif7_5.2.1-2.5_armhf.deb ...
Unpacking libgif7:armhf (5.2.1-2.5) over (5.1.9-2) ...
Preparing to unpack .../326-libgirepository-1.0-1_1.74.0-3+b1_armhf.deb ...
Unpacking libgirepository-1.0-1:armhf (1.74.0-3+b1) over (1.66.1-1+b1) ...
Selecting previously unselected package libopengl0:armhf.
Preparing to unpack .../327-libopengl0_1.6.0-1_armhf.deb ...
Unpacking libopengl0:armhf (1.6.0-1) ...
Preparing to unpack .../328-libglu1-mesa_9.0.2-1.1_armhf.deb ...
Unpacking libglu1-mesa:armhf (9.0.2-1.1) over (9.0.1-1) ...
Selecting previously unselected package libgspell-1-common.
Preparing to unpack .../329-libgspell-1-common_1.12.0-1_all.deb ...
Unpacking libgspell-1-common (1.12.0-1) ...
Selecting previously unselected package libgspell-1-2:armhf.
Preparing to unpack .../330-libgspell-1-2_1.12.0-1+b1_armhf.deb ...
Unpacking libgspell-1-2:armhf (1.12.0-1+b1) ...
Selecting previously unselected package libgssdp-1.6-0:armhf.
Preparing to unpack .../331-libgssdp-1.6-0_1.6.2-2_armhf.deb ...
Unpacking libgssdp-1.6-0:armhf (1.6.2-2) ...
Preparing to unpack .../332-libgstreamer-gl1.0-0_1.22.0-3+deb12u1_armhf.deb ...
Unpacking libgstreamer-gl1.0-0:armhf (1.22.0-3+deb12u1) over (1.18.4-2+deb11u1) ...
Selecting previously unselected package libgupnp-1.6-0:armhf.
Preparing to unpack .../333-libgupnp-1.6-0_1.6.3-1_armhf.deb ...
Unpacking libgupnp-1.6-0:armhf (1.6.3-1) ...
Selecting previously unselected package libgupnp-igd-1.0-4:armhf.
Preparing to unpack .../334-libgupnp-igd-1.0-4_1.2.0-3_armhf.deb ...
Unpacking libgupnp-igd-1.0-4:armhf (1.2.0-3) ...
Selecting previously unselected package libnice10:armhf.
Preparing to unpack .../335-libnice10_0.1.21-1_armhf.deb ...
Unpacking libnice10:armhf (0.1.21-1) ...
Preparing to unpack .../336-libvulkan1_1.3.239.0-1_armhf.deb ...
Unpacking libvulkan1:armhf (1.3.239.0-1) over (1.2.162.0-1) ...
Selecting previously unselected package libgstreamer-plugins-bad1.0-0:armhf.
Preparing to unpack .../337-libgstreamer-plugins-bad1.0-0_1.22.0-4+deb12u1_armhf.deb ...
Unpacking libgstreamer-plugins-bad1.0-0:armhf (1.22.0-4+deb12u1) ...
Selecting previously unselected package libgtksourceview-4-common.
Preparing to unpack .../338-libgtksourceview-4-common_4.8.4-4_all.deb ...
Unpacking libgtksourceview-4-common (4.8.4-4) ...
Selecting previously unselected package libgtksourceview-4-0:armhf.
Preparing to unpack .../339-libgtksourceview-4-0_4.8.4-4_armhf.deb ...
Unpacking libgtksourceview-4-0:armhf (4.8.4-4) ...
Preparing to unpack .../340-libharfbuzz-icu0_6.0.0+dfsg-3_armhf.deb ...
Unpacking libharfbuzz-icu0:armhf (6.0.0+dfsg-3) over (2.7.4-1) ...
Preparing to unpack .../341-libilmbase25_2.5.7-2_armhf.deb ...
Unpacking libilmbase25:armhf (2.5.7-2) over (2.5.4-1) ...
Preparing to unpack .../342-libplist3_2.2.0-6+b2_armhf.deb ...
Unpacking libplist3:armhf (2.2.0-6+b2) over (2.2.0-6) ...
Preparing to unpack .../343-libimobiledevice6_1.3.0-6+b3_armhf.deb ...
Unpacking libimobiledevice6:armhf (1.3.0-6+b3) over (1.3.0-6) ...
Preparing to unpack .../344-libiw30_30~pre9-14_armhf.deb ...
Unpacking libiw30:armhf (30~pre9-14) over (30~pre9-13.1) ...
Preparing to unpack .../345-xdg-dbus-proxy_0.1.4-3_armhf.deb ...
Unpacking xdg-dbus-proxy (0.1.4-3) over (0.1.2-2) ...
Preparing to unpack .../346-libmanette-0.2-0_0.2.6-3_armhf.deb ...
Unpacking libmanette-0.2-0:armhf (0.2.6-3) over (0.2.5-1) ...
Preparing to unpack .../347-libsecret-common_0.20.5-3+rpi1_all.deb ...
Unpacking libsecret-common (0.20.5-3+rpi1) over (0.20.4-2) ...
Preparing to unpack .../348-libsecret-1-0_0.20.5-3+rpi1_armhf.deb ...
Unpacking libsecret-1-0:armhf (0.20.5-3+rpi1) over (0.20.4-2) ...
Preparing to unpack .../349-libwoff1_1.0.2-2_armhf.deb ...
Unpacking libwoff1:armhf (1.0.2-2) over (1.0.2-1) ...
Preparing to unpack .../350-libwpe-1.0-1_1.14.0-1_armhf.deb ...
Unpacking libwpe-1.0-1:armhf (1.14.0-1) over (1.10.0-2) ...
Preparing to unpack .../351-libwpebackend-fdo-1.0-1_1.14.2-1_armhf.deb ...
Unpacking libwpebackend-fdo-1.0-1:armhf (1.14.2-1) over (1.8.0-1) ...
Preparing to unpack .../352-libxslt1-dev_1.1.35-1_armhf.deb ...
Unpacking libxslt1-dev:armhf (1.1.35-1) over (1.1.34-4+deb11u1) ...
Preparing to unpack .../353-libxslt1.1_1.1.35-1_armhf.deb ...
Unpacking libxslt1.1:armhf (1.1.35-1) over (1.1.34-4+deb11u1) ...
Preparing to unpack .../354-libwebkit2gtk-4.0-37_2.40.3-2~deb12u2+rpi1_armhf.deb ...
Unpacking libwebkit2gtk-4.0-37:armhf (2.40.3-2~deb12u2+rpi1) over (2.38.5-1~deb11u1+rpi1) ...
Preparing to unpack .../355-libjavascriptcoregtk-4.0-18_2.40.3-2~deb12u2+rpi1_armhf.deb ...
Unpacking libjavascriptcoregtk-4.0-18:armhf (2.40.3-2~deb12u2+rpi1) over (2.38.5-1~deb11u1+rpi1) ...
Selecting previously unselected package libjavascriptcoregtk-4.1-0:armhf.
Preparing to unpack .../356-libjavascriptcoregtk-4.1-0_2.40.3-2~deb12u2+rpi1_armhf.deb ...
Unpacking libjavascriptcoregtk-4.1-0:armhf (2.40.3-2~deb12u2+rpi1) ...
Preparing to unpack .../357-libjbig2dec0_0.19-3+b2_armhf.deb ...
Unpacking libjbig2dec0:armhf (0.19-3+b2) over (0.19-2) ...
Selecting previously unselected package libjs-events.
Preparing to unpack .../358-libjs-events_3.3.0+~3.0.0-3_all.deb ...
Unpacking libjs-events (3.3.0+~3.0.0-3) ...
Preparing to unpack .../359-libjs-inherits_2.0.4-6_all.deb ...
Unpacking libjs-inherits (2.0.4-6) over (2.0.4-1) ...
Preparing to unpack .../360-libjs-is-typedarray_1.0.0-4_all.deb ...
Unpacking libjs-is-typedarray (1.0.0-4) over (1.0.0-3) ...
Preparing to unpack .../361-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ...
Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) over (3.5.1+dfsg+~3.5.5-7) ...
Preparing to unpack .../362-libjs-psl_1.8.0+ds-9_all.deb ...
Unpacking libjs-psl (1.8.0+ds-9) over (1.8.0+ds-4) ...
Preparing to unpack .../363-libjs-underscore_1.13.4~dfsg+~1.11.4-3_all.deb ...
Unpacking libjs-underscore (1.13.4~dfsg+~1.11.4-3) over (1.9.1~dfsg-3) ...
Preparing to unpack .../364-libjs-sphinxdoc_5.3.0-4_all.deb ...
Unpacking libjs-sphinxdoc (5.3.0-4) over (3.4.3-2) ...
Preparing to unpack .../365-node-is-typedarray_1.0.0-4_all.deb ...
Unpacking node-is-typedarray (1.0.0-4) over (1.0.0-3) ...
Preparing to unpack .../366-node-typedarray-to-buffer_4.0.0-2_all.deb ...
Unpacking node-typedarray-to-buffer (4.0.0-2) over (4.0.0-1) ...
Preparing to unpack .../367-libjs-typedarray-to-buffer_4.0.0-2_all.deb ...
Unpacking libjs-typedarray-to-buffer (4.0.0-2) over (4.0.0-1) ...
Preparing to unpack .../368-liblightdm-gobject-1-0_1.26.0-8_armhf.deb ...
Unpacking liblightdm-gobject-1-0:armhf (1.26.0-8) over (1.26.0-7+rpt1) ...
Preparing to unpack .../369-libserd-0-0_0.30.16-1_armhf.deb ...
Unpacking libserd-0-0:armhf (0.30.16-1) over (0.30.10-2) ...
Preparing to unpack .../370-libsord-0-0_0.16.14+git221008-1_armhf.deb ...
Unpacking libsord-0-0:armhf (0.16.14+git221008-1) over (0.16.8-2) ...
Preparing to unpack .../371-libsratom-0-0_0.6.14-1_armhf.deb ...
Unpacking libsratom-0-0:armhf (0.6.14-1) over (0.6.8-1) ...
Preparing to unpack .../372-liblilv-0-0_0.24.14-1_armhf.deb ...
Unpacking liblilv-0-0:armhf (0.24.14-1) over (0.24.12-2) ...
Preparing to unpack .../373-liblirc-client0_0.10.1-7.2_armhf.deb ...
Unpacking liblirc-client0:armhf (0.10.1-7.2) over (0.10.1-6.3) ...
Preparing to unpack .../374-liblua5.2-0_5.2.4-3_armhf.deb ...
Unpacking liblua5.2-0:armhf (5.2.4-3) over (5.2.4-1.1+b2) ...
Preparing to unpack .../375-libmad0_0.15.1b-10.1_armhf.deb ...
Unpacking libmad0:armhf (0.15.1b-10.1) over (0.15.1b-10) ...
Preparing to unpack .../376-libmatroska7_1.7.1-1_armhf.deb ...
Unpacking libmatroska7:armhf (1.7.1-1) over (1.6.2-1) ...
Preparing to unpack .../377-libmcrypt-dev_2.5.8-7_armhf.deb ...
Unpacking libmcrypt-dev (2.5.8-7) over (2.5.8-3.4) ...
Preparing to unpack .../378-libmcrypt4_2.5.8-7_armhf.deb ...
Unpacking libmcrypt4 (2.5.8-7) over (2.5.8-3.4) ...
Preparing to unpack .../379-libmd4c0_0.4.8-1_armhf.deb ...
Unpacking libmd4c0:armhf (0.4.8-1) over (0.4.7-2) ...
Preparing to unpack .../380-libmhash-dev_0.9.9.9-9+b2_armhf.deb ...
Unpacking libmhash-dev (0.9.9.9-9+b2) over (0.9.9.9-9) ...
Preparing to unpack .../381-libmhash2_0.9.9.9-9+b2_armhf.deb ...
Unpacking libmhash2:armhf (0.9.9.9-9+b2) over (0.9.9.9-9) ...
Selecting previously unselected package libmousepad0:armhf.
Preparing to unpack .../382-libmousepad0_0.5.10-2_armhf.deb ...
Unpacking libmousepad0:armhf (0.5.10-2) ...
Preparing to unpack .../383-libmpdec3_2.5.1-2+rpi1_armhf.deb ...
Unpacking libmpdec3:armhf (2.5.1-2+rpi1) over (2.5.1-1+rpi1) ...
Preparing to unpack .../384-libmtp-common_1.1.20-1_all.deb ...
Unpacking libmtp-common (1.1.20-1) over (1.1.17-3) ...
Preparing to unpack .../385-libmtp9_1.1.20-1_armhf.deb ...
Unpacking libmtp9:armhf (1.1.20-1) over (1.1.17-3) ...
Preparing to unpack .../386-libmysofa1_1.3.1~dfsg0-1_armhf.deb ...
Unpacking libmysofa1:armhf (1.3.1~dfsg0-1) over (1.2~dfsg0-1) ...
Preparing to unpack .../387-libpci-dev_1%3a3.9.0-4_armhf.deb ...
Unpacking libpci-dev:armhf (1:3.9.0-4) over (1:3.7.0-5) ...
Preparing to unpack .../388-pci.ids_0.0~2023.04.11-1_all.deb ...
Unpacking pci.ids (0.0~2023.04.11-1) over (0.0~2021.02.08-1) ...
Preparing to unpack .../389-libpci3_1%3a3.9.0-4_armhf.deb ...
Unpacking libpci3:armhf (1:3.9.0-4) over (1:3.7.0-5) ...
Preparing to unpack .../390-libsnmp-base_5.9.3+dfsg-2_all.deb ...
Unpacking libsnmp-base (5.9.3+dfsg-2) over (5.9+dfsg-4+deb11u1) ...
Preparing to unpack .../391-libsnmp-dev_5.9.3+dfsg-2_armhf.deb ...
Unpacking libsnmp-dev (5.9.3+dfsg-2) over (5.9+dfsg-4+deb11u1) ...
Preparing to unpack .../392-libnetsnmptrapd40_5.9.3+dfsg-2_armhf.deb ...
Unpacking libnetsnmptrapd40:armhf (5.9.3+dfsg-2) over (5.9+dfsg-4+deb11u1) ...
Preparing to unpack .../393-libsnmp40_5.9.3+dfsg-2_armhf.deb ...
Unpacking libsnmp40:armhf (5.9.3+dfsg-2) over (5.9+dfsg-4+deb11u1) ...
Preparing to unpack .../394-libnewt0.52_0.52.23-1+b1_armhf.deb ...
Unpacking libnewt0.52:armhf (0.52.23-1+b1) over (0.52.21-4+b2) ...
Preparing to unpack .../395-libnotify4_0.8.1-1_armhf.deb ...
Unpacking libnotify4:armhf (0.8.1-1) over (0.7.9-3) ...
Preparing to unpack .../396-libnss-myhostname_252.12-1~deb12u1+rpi1_armhf.deb ...
Unpacking libnss-myhostname:armhf (252.12-1~deb12u1+rpi1) over (247.3-7+rpi1+deb11u2) ...
Preparing to unpack .../397-libobt2v5_3.6.1-10_armhf.deb ...
Unpacking libobt2v5 (3.6.1-10) over (3.6.1-9+deb11u1) ...
Preparing to unpack .../398-libobrender32v5_3.6.1-10_armhf.deb ...
Unpacking libobrender32v5 (3.6.1-10) over (3.6.1-9+deb11u1) ...
Preparing to unpack .../399-unixodbc-dev_2.3.11-2+deb12u1_armhf.deb ...
Unpacking unixodbc-dev:armhf (2.3.11-2+deb12u1) over (2.3.6-0.1+b1) ...
Preparing to unpack .../400-libodbc1_2.3.11-2+deb12u1_armhf.deb ...
Unpacking libodbc1:armhf (2.3.11-2+deb12u1) over (2.3.6-0.1+b1) ...
Selecting previously unselected package libodbc2:armhf.
Preparing to unpack .../401-libodbc2_2.3.11-2+deb12u1_armhf.deb ...
Unpacking libodbc2:armhf (2.3.11-2+deb12u1) ...
Selecting previously unselected package libodbccr2:armhf.
Preparing to unpack .../402-libodbccr2_2.3.11-2+deb12u1_armhf.deb ...
Unpacking libodbccr2:armhf (2.3.11-2+deb12u1) ...
Preparing to unpack .../403-odbcinst_2.3.11-2+deb12u1_armhf.deb ...
Unpacking odbcinst (2.3.11-2+deb12u1) over (2.3.6-0.1+b1) ...
Preparing to unpack .../404-odbcinst1debian2_2.3.11-2+deb12u1_armhf.deb ...
Unpacking odbcinst1debian2:armhf (2.3.11-2+deb12u1) over (2.3.6-0.1+b1) ...
Selecting previously unselected package unixodbc-common.
Preparing to unpack .../405-unixodbc-common_2.3.11-2+deb12u1_all.deb ...
Unpacking unixodbc-common (2.3.11-2+deb12u1) ...
Selecting previously unselected package libodbcinst2:armhf.
Preparing to unpack .../406-libodbcinst2_2.3.11-2+deb12u1_armhf.deb ...
Unpacking libodbcinst2:armhf (2.3.11-2+deb12u1) ...
Preparing to unpack .../407-libonig-dev_6.9.8-1_armhf.deb ...
Unpacking libonig-dev (6.9.8-1) over (6.9.6-1.1) ...
Preparing to unpack .../408-libonig5_6.9.8-1_armhf.deb ...
Unpacking libonig5:armhf (6.9.8-1) over (6.9.6-1.1) ...
Preparing to unpack .../409-libopenmpt-modplug1_0.8.9.0-openmpt1-2_armhf.deb ...
Unpacking libopenmpt-modplug1:armhf (0.8.9.0-openmpt1-2) over (0.4.11-1) ...
Preparing to unpack .../410-libout123-0_1.31.2-1_armhf.deb ...
Unpacking libout123-0:armhf (1.31.2-1) over (1.26.4-1) ...
Preparing to unpack .../411-libpaper1_1.1.29_armhf.deb ...
Unpacking libpaper1:armhf (1.1.29) over (1.1.28) ...
Preparing to unpack .../412-libpcap0.8_1.10.3-1_armhf.deb ...
Unpacking libpcap0.8:armhf (1.10.3-1) over (1.10.0-2) ...
Preparing to unpack .../413-libpcsclite1_1.9.9-2_armhf.deb ...
Unpacking libpcsclite1:armhf (1.9.9-2) over (1.9.1-1) ...
Preparing to unpack .../414-libpeas-common_1.34.0-1_all.deb ...
Unpacking libpeas-common (1.34.0-1) over (1.28.0-2) ...
Selecting previously unselected package libpython3.11-minimal:armhf.
Preparing to unpack .../415-libpython3.11-minimal_3.11.2-6_armhf.deb ...
Unpacking libpython3.11-minimal:armhf (3.11.2-6) ...
Selecting previously unselected package libpython3.11-stdlib:armhf.
Preparing to unpack .../416-libpython3.11-stdlib_3.11.2-6_armhf.deb ...
Unpacking libpython3.11-stdlib:armhf (3.11.2-6) ...
Selecting previously unselected package libpython3.11:armhf.
Preparing to unpack .../417-libpython3.11_3.11.2-6_armhf.deb ...
Unpacking libpython3.11:armhf (3.11.2-6) ...
Preparing to unpack .../418-libpeas-1.0-0_1.34.0-1+b1_armhf.deb ...
Unpacking libpeas-1.0-0:armhf (1.34.0-1+b1) over (1.28.0-2) ...
Preparing to unpack .../419-libsphinxbase3_0.8+5prealpha+1-16_armhf.deb ...
Unpacking libsphinxbase3:armhf (0.8+5prealpha+1-16) over (0.8+5prealpha+1-12) ...
Preparing to unpack .../420-libpocketsphinx3_0.8+5prealpha+1-15_armhf.deb ...
Unpacking libpocketsphinx3:armhf (0.8+5prealpha+1-15) over (0.8+5prealpha+1-13) ...
Preparing to unpack .../421-portaudio19-dev_19.6.0-1.2_armhf.deb ...
Unpacking portaudio19-dev:armhf (19.6.0-1.2) over (19.6.0-1.1) ...
Preparing to unpack .../422-libportaudiocpp0_19.6.0-1.2_armhf.deb ...
Unpacking libportaudiocpp0:armhf (19.6.0-1.2) over (19.6.0-1.1) ...
Preparing to unpack .../423-libportaudio2_19.6.0-1.2_armhf.deb ...
Unpacking libportaudio2:armhf (19.6.0-1.2) over (19.6.0-1.1) ...
Preparing to unpack .../424-libpq-dev_15.3-0+deb12u1_armhf.deb ...
Unpacking libpq-dev (15.3-0+deb12u1) over (13.11-0+deb11u1) ...
Preparing to unpack .../425-libpq5_15.3-0+deb12u1_armhf.deb ...
Unpacking libpq5:armhf (15.3-0+deb12u1) over (13.11-0+deb11u1) ...
Preparing to unpack .../426-libpugixml1v5_1.13-0.2_armhf.deb ...
Unpacking libpugixml1v5:armhf (1.13-0.2) over (1.11.4-1) ...
Preparing to unpack .../427-libqdbm-dev_1.8.78-12_armhf.deb ...
Unpacking libqdbm-dev (1.8.78-12) over (1.8.78-10) ...
Preparing to unpack .../428-libqdbm14_1.8.78-12_armhf.deb ...
Unpacking libqdbm14 (1.8.78-12) over (1.8.78-10) ...
Preparing to unpack .../429-libqt5x11extras5_5.15.8-2_armhf.deb ...
Unpacking libqt5x11extras5:armhf (5.15.8-2) over (5.15.2-2) ...
Preparing to unpack .../430-libqt5dbus5_5.15.8+dfsg-11+rpi1_armhf.deb ...
Unpacking libqt5dbus5:armhf (5.15.8+dfsg-11+rpi1) over (5.15.2+dfsg-9+rpi1) ...
Preparing to unpack .../431-libqt5network5_5.15.8+dfsg-11+rpi1_armhf.deb ...
Unpacking libqt5network5:armhf (5.15.8+dfsg-11+rpi1) over (5.15.2+dfsg-9+rpi1) ...
Preparing to unpack .../432-libxcb-image0_0.4.0-2_armhf.deb ...
Unpacking libxcb-image0:armhf (0.4.0-2) over (0.4.0-1+b3) ...
Preparing to unpack .../433-libxcb-shape0_1.15-1_armhf.deb ...
Unpacking libxcb-shape0:armhf (1.15-1) over (1.14-3) ...
Preparing to unpack .../434-libxcb-xinerama0_1.15-1_armhf.deb ...
Unpacking libxcb-xinerama0:armhf (1.15-1) over (1.14-3) ...
Preparing to unpack .../435-libxcb-xinput0_1.15-1_armhf.deb ...
Unpacking libxcb-xinput0:armhf (1.15-1) over (1.14-3) ...
Preparing to unpack .../436-libqt5gui5_5.15.8+dfsg-11+rpi1_armhf.deb ...
Unpacking libqt5gui5:armhf (5.15.8+dfsg-11+rpi1) over (5.15.2+dfsg-9+rpi1) ...
Preparing to unpack .../437-libqt5widgets5_5.15.8+dfsg-11+rpi1_armhf.deb ...
Unpacking libqt5widgets5:armhf (5.15.8+dfsg-11+rpi1) over (5.15.2+dfsg-9+rpi1) ...
Preparing to unpack .../438-libqt5svg5_5.15.8-3_armhf.deb ...
Unpacking libqt5svg5:armhf (5.15.8-3) over (5.15.2-3) ...
Preparing to unpack .../439-libqt5core5a_5.15.8+dfsg-11+rpi1_armhf.deb ...
Unpacking libqt5core5a:armhf (5.15.8+dfsg-11+rpi1) over (5.15.2+dfsg-9+rpi1) ...
Preparing to unpack .../440-librubberband2_3.1.2+dfsg0-1_armhf.deb ...
Unpacking librubberband2:armhf (3.1.2+dfsg0-1) over (1.9.0-1) ...
Preparing to unpack .../441-ruby-rubygems_3.3.15-2_all.deb ...
Unpacking ruby-rubygems (3.3.15-2) over (3.2.5-2) ...
Selecting previously unselected package ruby3.1.
Preparing to unpack .../442-ruby3.1_3.1.2-7_armhf.deb ...
Unpacking ruby3.1 (3.1.2-7) ...
Preparing to unpack .../443-ruby_1%3a3.1_armhf.deb ...
Unpacking ruby (1:3.1) over (1:2.7+2) ...
Preparing to unpack .../444-rake_13.0.6-3_all.deb ...
Unpacking rake (13.0.6-3) over (13.0.3-1) ...
Preparing to unpack .../445-ruby-net-telnet_0.2.0-1_all.deb ...
Unpacking ruby-net-telnet (0.2.0-1) over (0.1.1-2) ...
Selecting previously unselected package ruby-webrick.
Preparing to unpack .../446-ruby-webrick_1.8.1-1_all.deb ...
Unpacking ruby-webrick (1.8.1-1) ...
Preparing to unpack .../447-ruby-xmlrpc_0.3.2-2_all.deb ...
Unpacking ruby-xmlrpc (0.3.2-2) over (0.3.0-2) ...
Selecting previously unselected package ruby-sdbm:armhf.
Preparing to unpack .../448-ruby-sdbm_1.0.0-5+rpi1_armhf.deb ...
Unpacking ruby-sdbm:armhf (1.0.0-5+rpi1) ...
Selecting previously unselected package libruby3.1:armhf.
Preparing to unpack .../449-libruby3.1_3.1.2-7_armhf.deb ...
Unpacking libruby3.1:armhf (3.1.2-7) ...
Selecting previously unselected package libruby:armhf.
Preparing to unpack .../450-libruby_1%3a3.1_armhf.deb ...
Unpacking libruby:armhf (1:3.1) ...
Preparing to unpack .../451-libsdl1.2debian_1.2.15+dfsg2-8_armhf.deb ...
Unpacking libsdl1.2debian:armhf (1.2.15+dfsg2-8) over (1.2.15+dfsg2-6) ...
Preparing to unpack .../452-libsdl-image1.2_1.2.12-13+b2_armhf.deb ...
Unpacking libsdl-image1.2:armhf (1.2.12-13+b2) over (1.2.12-12) ...
Preparing to unpack .../453-libsdl2-2.0-0_2.26.5+dfsg-1_armhf.deb ...
Unpacking libsdl2-2.0-0:armhf (2.26.5+dfsg-1) over (2.0.14+dfsg2-3+deb11u1) ...
Preparing to unpack .../454-libsigsegv2_2.14-1_armhf.deb ...
Unpacking libsigsegv2:armhf (2.14-1) over (2.13-1) ...
Preparing to unpack .../455-libsndio7.0_1.9.0-0.3_armhf.deb ...
Unpacking libsndio7.0:armhf (1.9.0-0.3) over (1.5.0-3) ...
Preparing to unpack .../456-libss2_1.47.0-2_armhf.deb ...
Unpacking libss2:armhf (1.47.0-2) over (1.46.2-2) ...
Preparing to unpack .../457-libsyn123-0_1.31.2-1_armhf.deb ...
Unpacking libsyn123-0:armhf (1.31.2-1) over (1.26.4-1) ...
Preparing to unpack .../458-libtool_2.4.7-5_all.deb ...
Unpacking libtool (2.4.7-5) over (2.4.6-15) ...
Preparing to unpack .../459-upower_0.99.20-2_armhf.deb ...
Unpacking upower (0.99.20-2) over (0.99.11-2) ...
Preparing to unpack .../460-libupower-glib3_0.99.20-2_armhf.deb ...
Unpacking libupower-glib3:armhf (0.99.20-2) over (0.99.11-2) ...
Preparing to unpack .../461-libvte-2.91-0_0.70.6-1~deb12u1_armhf.deb ...
Unpacking libvte-2.91-0:armhf (0.70.6-1~deb12u1) over (0.62.3-1) ...
Preparing to unpack .../462-libvte-2.91-common_0.70.6-1~deb12u1_armhf.deb ...
Unpacking libvte-2.91-common (0.70.6-1~deb12u1) over (0.62.3-1) ...
Selecting previously unselected package libwebkit2gtk-4.1-0:armhf.
Preparing to unpack .../463-libwebkit2gtk-4.1-0_2.40.3-2~deb12u2+rpi1_armhf.deb ...
Unpacking libwebkit2gtk-4.1-0:armhf (2.40.3-2~deb12u2+rpi1) ...
Preparing to unpack .../464-libwmf0.2-7_0.2.12-5.1_armhf.deb ...
Unpacking libwmf0.2-7:armhf (0.2.12-5.1) over (0.2.8.4-17) ...
Selecting previously unselected package libwmflite-0.2-7:armhf.
Preparing to unpack .../465-libwmflite-0.2-7_0.2.12-5.1_armhf.deb ...
Unpacking libwmflite-0.2-7:armhf (0.2.12-5.1) ...
Selecting previously unselected package libwmf-0.2-7:armhf.
Preparing to unpack .../466-libwmf-0.2-7_0.2.12-5.1_armhf.deb ...
Unpacking libwmf-0.2-7:armhf (0.2.12-5.1) ...
Preparing to unpack .../467-libwxbase3.0-0v5_3.0.5.1+dfsg-5+b1_armhf.deb ...
Unpacking libwxbase3.0-0v5:armhf (3.0.5.1+dfsg-5+b1) over (3.0.5.1+dfsg-2) ...
Preparing to unpack .../468-libwxgtk3.0-gtk3-0v5_3.0.5.1+dfsg-5+b1_armhf.deb ...
Unpacking libwxgtk3.0-gtk3-0v5:armhf (3.0.5.1+dfsg-5+b1) over (3.0.5.1+dfsg-2) ...
Preparing to unpack .../469-libxcb-xv0_1.15-1_armhf.deb ...
Unpacking libxcb-xv0:armhf (1.15-1) over (1.14-3) ...
Preparing to unpack .../470-libxfce4util-common_4.18.1-2_all.deb ...
Unpacking libxfce4util-common (4.18.1-2) over (4.16.0-1) ...
Preparing to unpack .../471-libxfce4util7_4.18.1-2_armhf.deb ...
Unpacking libxfce4util7:armhf (4.18.1-2) over (4.16.0-1) ...
Preparing to unpack .../472-xfconf_4.18.0-2_armhf.deb ...
Unpacking xfconf (4.18.0-2) over (4.16.0-2) ...
Preparing to unpack .../473-libxfconf-0-3_4.18.0-2_armhf.deb ...
Unpacking libxfconf-0-3:armhf (4.18.0-2) over (4.16.0-2) ...
Preparing to unpack .../474-libxmltok1-dev_1.2-4+b2_armhf.deb ...
Unpacking libxmltok1-dev (1.2-4+b2) over (1.2-4) ...
Preparing to unpack .../475-libxmltok1_1.2-4+b2_armhf.deb ...
Unpacking libxmltok1 (1.2-4+b2) over (1.2-4) ...
Preparing to unpack .../476-libxmuu1_2%3a1.1.3-3_armhf.deb ...
Unpacking libxmuu1:armhf (2:1.1.3-3) over (2:1.1.2-2+b3) ...
Preparing to unpack .../477-libxres1_2%3a1.2.1-1_armhf.deb ...
Unpacking libxres1:armhf (2:1.2.1-1) over (2:1.2.0-4) ...
Preparing to unpack .../478-libxv1_2%3a1.0.11-1.1_armhf.deb ...
Unpacking libxv1:armhf (2:1.0.11-1.1) over (2:1.0.11-1) ...
Preparing to unpack .../479-libxxf86dga1_2%3a1.1.5-1_armhf.deb ...
Unpacking libxxf86dga1:armhf (2:1.1.5-1) over (2:1.1.4-1+b1) ...
Preparing to unpack .../480-libzip-dev_1.7.3-1+b1_armhf.deb ...
Unpacking libzip-dev:armhf (1.7.3-1+b1) over (1.7.3-1) ...
Preparing to unpack .../481-libzip4_1.7.3-1+b1_armhf.deb ...
Unpacking libzip4:armhf (1.7.3-1+b1) over (1.7.3-1) ...
Preparing to unpack .../482-lightdm_1.26.0-8_armhf.deb ...
Unpacking lightdm (1.26.0-8) over (1.26.0-7+rpt1) ...
Preparing to unpack .../483-lsb-release_12.0-1_all.deb ...
Unpacking lsb-release (12.0-1) over (11.1.0+rpi1) ...
Preparing to unpack .../484-lua-lpeg_1.0.2-2_armhf.deb ...
Unpacking lua-lpeg:armhf (1.0.2-2) over (1.0.2-1) ...
Preparing to unpack .../485-x11-xserver-utils_7.7+9_armhf.deb ...
Unpacking x11-xserver-utils (7.7+9) over (7.7+8) ...
Preparing to unpack .../486-lxrandr_0.3.2-1.1_armhf.deb ...
Unpacking lxrandr (0.3.2-1.1) over (0.3.2-1+b10) ...
Preparing to unpack .../487-lxterminal_0.4.0-2_armhf.deb ...
Unpacking lxterminal (0.4.0-2) over (0.4.0-1) ...
Preparing to unpack .../488-mailcap_3.70+nmu1_all.deb ...
Unpacking mailcap (3.70+nmu1) over (3.69) ...
Preparing to unpack .../489-mousepad_0.5.10-2_armhf.deb ...
Unpacking mousepad (0.5.10-2) over (0.5.2-1) ...
Preparing to unpack .../490-mpg123_1.31.2-1_armhf.deb ...
Unpacking mpg123 (1.31.2-1) over (1.26.4-1) ...
Preparing to unpack .../491-neofetch_7.1.0-4_all.deb ...
Unpacking neofetch (7.1.0-4) over (7.1.0-2) ...
Preparing to unpack .../492-nmap_7.93+dfsg1-1_armhf.deb ...
Unpacking nmap (7.93+dfsg1-1) over (7.91+dfsg1+really7.80+dfsg1-2) ...
Preparing to unpack .../493-nmap-common_7.93+dfsg1-1_all.deb ...
Unpacking nmap-common (7.93+dfsg1-1) over (7.91+dfsg1+really7.80+dfsg1-2) ...
Preparing to unpack .../494-node-abbrev_1.1.1+~1.1.2-1_all.deb ...
Unpacking node-abbrev (1.1.1+~1.1.2-1) over (1.1.1-2) ...
Preparing to unpack .../495-node-debug_4.3.4+~cs4.1.7-1_all.deb ...
Unpacking node-debug (4.3.4+~cs4.1.7-1) over (4.3.1+~cs4.1.5-1) ...
Preparing to unpack .../496-node-agent-base_6.0.2+~cs5.4.2-2_all.deb ...
Unpacking node-agent-base (6.0.2+~cs5.4.2-2) over (6.0.2-2) ...
Preparing to unpack .../497-node-ansi_0.3.1-2_all.deb ...
Unpacking node-ansi (0.3.1-2) over (0.3.1-1) ...
Preparing to unpack .../498-node-ansi-regex_5.0.1-1_all.deb ...
Unpacking node-ansi-regex (5.0.1-1) over (5.0.1-1~deb11u1) ...
Preparing to unpack .../499-node-color-name_1.1.4+~1.1.1-2_all.deb ...
Unpacking node-color-name (1.1.4+~1.1.1-2) over (1.1.4+~1.1.1-1) ...
Preparing to unpack .../500-node-color-convert_2.0.1+~cs2.0.0-2_all.deb ...
Unpacking node-color-convert (2.0.1+~cs2.0.0-2) over (1.9.3-1) ...
Preparing to unpack .../501-node-ansi-styles_6.2.1-2_all.deb ...
Unpacking node-ansi-styles (6.2.1-2) over (4.2.1-1) ...
Preparing to unpack .../502-node-ansistyles_0.1.3-5_all.deb ...
Unpacking node-ansistyles (0.1.3-5) over (0.1.3-2) ...
Preparing to unpack .../503-node-aproba_2.0.0-3_all.deb ...
Unpacking node-aproba (2.0.0-3) over (2.0.0-1) ...
Preparing to unpack .../504-node-delegates_1.0.0-3_all.deb ...
Unpacking node-delegates (1.0.0-3) over (1.0.0-2) ...
Preparing to unpack .../505-node-inherits_2.0.4-6_all.deb ...
Unpacking node-inherits (2.0.4-6) over (2.0.4-1) ...
Preparing to unpack .../506-node-core-util-is_1.0.3-1_all.deb ...
Unpacking node-core-util-is (1.0.3-1) over (1.0.2-2) ...
Preparing to unpack .../507-node-safe-buffer_5.2.1+~cs2.1.2-3_all.deb ...
Unpacking node-safe-buffer (5.2.1+~cs2.1.2-3) over (5.2.1+~cs2.1.2-1) ...
Preparing to unpack .../508-node-string-decoder_1.3.0-6_all.deb ...
Unpacking node-string-decoder (1.3.0-6) over (1.3.0-2) ...
Preparing to unpack .../509-node-process-nextick-args_2.0.1-3_all.deb ...
Unpacking node-process-nextick-args (2.0.1-3) over (2.0.0-1) ...
Preparing to unpack .../510-node-util-deprecate_1.0.2-3_all.deb ...
Unpacking node-util-deprecate (1.0.2-3) over (1.0.2-1) ...
Preparing to unpack .../511-node-isarray_2.0.5-4_all.deb ...
Unpacking node-isarray (2.0.5-4) over (2.0.5-1) ...
Preparing to unpack .../512-node-readable-stream_3.6.0+~cs3.0.0-4_all.deb ...
Unpacking node-readable-stream (3.6.0+~cs3.0.0-4) over (3.6.0-2) ...
Preparing to unpack .../513-node-are-we-there-yet_3.0.1+~1.1.0-1_all.deb ...
Unpacking node-are-we-there-yet (3.0.1+~1.1.0-1) over (1.1.5-1) ...
Preparing to unpack .../514-node-asap_2.0.6+~2.0.0-1_all.deb ...
Unpacking node-asap (2.0.6+~2.0.0-1) over (2.0.6-2) ...
Preparing to unpack .../515-node-asn1_0.2.6+~0.2.0-2_all.deb ...
Unpacking node-asn1 (0.2.6+~0.2.0-2) over (0.2.3-2) ...
Preparing to unpack .../516-node-asynckit_0.4.0-5_all.deb ...
Unpacking node-asynckit (0.4.0-5) over (0.4.0-3) ...
Preparing to unpack .../517-node-aws-sign2_0.7.1-4_all.deb ...
Unpacking node-aws-sign2 (0.7.1-4) over (0.7.1-2) ...
Preparing to unpack .../518-node-aws4_1.11.0-2_all.deb ...
Unpacking node-aws4 (1.11.0-2) over (1.11.0-1) ...
Preparing to unpack .../519-node-balanced-match_2.0.0-1_all.deb ...
Unpacking node-balanced-match (2.0.0-1) over (1.0.0-1) ...
Preparing to unpack .../520-node-brace-expansion_2.0.1-2_all.deb ...
Unpacking node-brace-expansion (2.0.1-2) over (2.0.0-1) ...
Preparing to unpack .../521-node-validate-npm-package-name_5.0.0+~4.0.0-1_all.deb ...
Unpacking node-validate-npm-package-name (5.0.0+~4.0.0-1) over (3.0.0-1.1) ...
Preparing to unpack .../522-node-builtins_5.0.1-1_all.deb ...
Unpacking node-builtins (5.0.1-1) over (1.0.3-2) ...
Preparing to unpack .../523-node-caseless_0.12.1-2_all.deb ...
Unpacking node-caseless (0.12.1-2) over (0.12.1-1) ...
Preparing to unpack .../524-node-chownr_2.0.0-2_all.deb ...
Unpacking node-chownr (2.0.0-2) over (1.1.3-5) ...
Preparing to unpack .../525-node-clone_2.1.2-4_all.deb ...
Unpacking node-clone (2.1.2-4) over (2.1.2-2) ...
Preparing to unpack .../526-node-colors_1.4.0-4_all.deb ...
Unpacking node-colors (1.4.0-4) over (1.4.0-1) ...
Preparing to unpack .../527-node-defaults_1.0.4+~1.0.3-1_all.deb ...
Unpacking node-defaults (1.0.4+~1.0.3-1) over (1.0.3-2) ...
Preparing to unpack .../528-node-wcwidth.js_1.0.2-2_all.deb ...
Unpacking node-wcwidth.js (1.0.2-2) over (1.0.0-1.1) ...
Preparing to unpack .../529-node-columnify_1.6.0+~1.5.1-1_all.deb ...
Unpacking node-columnify (1.6.0+~1.5.1-1) over (1.5.4-3) ...
Preparing to unpack .../530-node-delayed-stream_1.0.0-5_all.deb ...
Unpacking node-delayed-stream (1.0.0-5) over (1.0.0-4) ...
Preparing to unpack .../531-node-combined-stream_1.0.8+~1.0.3-1_all.deb ...
Unpacking node-combined-stream (1.0.8+~1.0.3-1) over (1.0.8-1) ...
Preparing to unpack .../532-node-concat-map_0.0.2+~0.0.1-1_all.deb ...
Unpacking node-concat-map (0.0.2+~0.0.1-1) over (0.0.1-2) ...
Preparing to unpack .../533-node-console-control-strings_1.1.0-3_all.deb ...
Unpacking node-console-control-strings (1.1.0-3) over (1.1.0-2) ...
Preparing to unpack .../534-node-graceful-fs_4.2.10-1_all.deb ...
Unpacking node-graceful-fs (4.2.10-1) over (4.2.4+repack-1) ...
Preparing to unpack .../535-node-iferr_1.0.2+~1.0.2-1_all.deb ...
Unpacking node-iferr (1.0.2+~1.0.2-1) over (1.0.2-1) ...
Preparing to unpack .../536-node-imurmurhash_0.1.4+dfsg+~0.1.1-2_all.deb ...
Unpacking node-imurmurhash (0.1.4+dfsg+~0.1.1-2) over (0.1.4-1.1) ...
Preparing to unpack .../537-node-fs-write-stream-atomic_1.0.10-6_all.deb ...
Unpacking node-fs-write-stream-atomic (1.0.10-6) over (1.0.10-4) ...
Preparing to unpack .../538-node-run-queue_2.0.0-3_all.deb ...
Unpacking node-run-queue (2.0.0-3) over (2.0.0-1) ...
Preparing to unpack .../539-node-copy-concurrently_1.0.5-9_all.deb ...
Unpacking node-copy-concurrently (1.0.5-9) over (1.0.5-7) ...
Preparing to unpack .../540-node-dashdash_2.0.0-4_all.deb ...
Unpacking node-dashdash (2.0.0-4) over (2.0.0-1) ...
Preparing to unpack .../541-node-depd_2.0.0-2_all.deb ...
Unpacking node-depd (2.0.0-2) over (2.0.0-1) ...
Preparing to unpack .../542-node-jsbn_1.1.0+~1.2.29-1_all.deb ...
Unpacking node-jsbn (1.1.0+~1.2.29-1) over (1.1.0-1.1) ...
Preparing to unpack .../543-node-ecc-jsbn_0.2.0-4_all.deb ...
Unpacking node-ecc-jsbn (0.2.0-4) over (0.2.0-2) ...
Preparing to unpack .../544-node-iconv-lite_0.6.3-3_all.deb ...
Unpacking node-iconv-lite (0.6.3-3) over (0.5.1-3) ...
Preparing to unpack .../545-node-encoding_0.1.13-2_all.deb ...
Unpacking node-encoding (0.1.13-2) over (0.1.13-1) ...
Preparing to unpack .../546-node-err-code_2.0.3+dfsg-3_all.deb ...
Unpacking node-err-code (2.0.3+dfsg-3) over (2.0.3+dfsg-1) ...
Preparing to unpack .../547-node-escape-string-regexp_4.0.0-2_all.deb ...
Unpacking node-escape-string-regexp (4.0.0-2) over (4.0.0-1) ...
Selecting previously unselected package node-events.
Preparing to unpack .../548-node-events_3.3.0+~3.0.0-3_all.deb ...
Unpacking node-events (3.3.0+~3.0.0-3) ...
Preparing to unpack .../549-node-extend_3.0.2+~3.0.1-3_all.deb ...
Unpacking node-extend (3.0.2+~3.0.1-3) over (3.0.2-1) ...
Preparing to unpack .../550-node-extsprintf_1.4.1+~1.4.1-2_all.deb ...
Unpacking node-extsprintf (1.4.1+~1.4.1-2) over (1.4.0-1) ...
Selecting previously unselected package node-time-stamp.
Preparing to unpack .../551-node-time-stamp_2.2.0-2_all.deb ...
Unpacking node-time-stamp (2.2.0-2) ...
Selecting previously unselected package node-fancy-log.
Preparing to unpack .../552-node-fancy-log_1.3.3+~cs1.3.1-2_all.deb ...
Unpacking node-fancy-log (1.3.3+~cs1.3.1-2) ...
Preparing to unpack .../553-node-fast-deep-equal_3.1.3-3_all.deb ...
Unpacking node-fast-deep-equal (3.1.3-3) over (3.1.3-1) ...
Preparing to unpack .../554-node-forever-agent_0.6.1+~0.6.1-2_all.deb ...
Unpacking node-forever-agent (0.6.1+~0.6.1-2) over (0.6.1-2) ...
Preparing to unpack .../555-node-mime-types_2.1.35-1_all.deb ...
Unpacking node-mime-types (2.1.35-1) over (2.1.28-1) ...
Preparing to unpack .../556-node-form-data_4.0.0-1_all.deb ...
Unpacking node-form-data (4.0.0-1) over (3.0.0-2) ...
Preparing to unpack .../557-node-fs.realpath_1.0.0-3_all.deb ...
Unpacking node-fs.realpath (1.0.0-3) over (1.0.0-1.1) ...
Preparing to unpack .../558-node-function-bind_1.1.1+repacked+~1.0.3-2_all.deb ...
Unpacking node-function-bind (1.1.1+repacked+~1.0.3-2) over (1.1.1+repack-1) ...
Preparing to unpack .../559-node-has-unicode_2.0.1-5_all.deb ...
Unpacking node-has-unicode (2.0.1-5) over (2.0.1-2) ...
Preparing to unpack .../560-node-signal-exit_3.0.7+~3.0.1-1_all.deb ...
Unpacking node-signal-exit (3.0.7+~3.0.1-1) over (3.0.3-1) ...
Selecting previously unselected package node-slice-ansi.
Preparing to unpack .../561-node-slice-ansi_5.0.0+~cs9.0.0-5_all.deb ...
Unpacking node-slice-ansi (5.0.0+~cs9.0.0-5) ...
Preparing to unpack .../562-node-string-width_4.2.3+~cs13.2.3-1_all.deb ...
Unpacking node-string-width (4.2.3+~cs13.2.3-1) over (4.2.0-1) ...
Preparing to unpack .../563-node-wide-align_1.1.3-4_all.deb ...
Unpacking node-wide-align (1.1.3-4) over (1.1.3-1) ...
Preparing to unpack .../564-node-gauge_4.0.4-1_all.deb ...
Unpacking node-gauge (4.0.4-1) over (2.7.4-1.1) ...
Preparing to unpack .../565-node-wrappy_1.0.2-3_all.deb ...
Unpacking node-wrappy (1.0.2-3) over (1.0.2-1.1) ...
Preparing to unpack .../566-node-once_1.4.0-7_all.deb ...
Unpacking node-once (1.4.0-7) over (1.4.0-3) ...
Preparing to unpack .../567-node-inflight_1.0.6-2_all.deb ...
Unpacking node-inflight (1.0.6-2) over (1.0.6-1.1) ...
Preparing to unpack .../568-node-minimatch_5.1.1+~5.1.2-1_all.deb ...
Unpacking node-minimatch (5.1.1+~5.1.2-1) over (3.0.4+~3.0.3-1+deb11u2) ...
Preparing to unpack .../569-node-glob_8.0.3+~cs8.4.15-1_all.deb ...
Unpacking node-glob (8.0.3+~cs8.4.15-1) over (7.1.6+~7.1.3-1) ...
Preparing to unpack .../570-node-har-schema_2.0.0-5_all.deb ...
Unpacking node-har-schema (2.0.0-5) over (2.0.0-4) ...
Preparing to unpack .../571-node-har-validator_5.1.5-3_all.deb ...
Unpacking node-har-validator (5.1.5-3) over (5.1.5-1) ...
Preparing to unpack .../572-node-has-flag_4.0.0-3_all.deb ...
Unpacking node-has-flag (4.0.0-3) over (4.0.0-1) ...
Preparing to unpack .../573-node-json-schema_0.4.0+~7.0.11-1_all.deb ...
Unpacking node-json-schema (0.4.0+~7.0.11-1) over (0.3.0+~7.0.6-1+deb11u1) ...
Preparing to unpack .../574-node-jsprim_2.0.1-1_all.deb ...
Unpacking node-jsprim (2.0.1-1) over (2.0.0-1) ...
Preparing to unpack .../575-node-http-signature_1.3.6-2_all.deb ...
Unpacking node-http-signature (1.3.6-2) over (1.3.5-1) ...
Preparing to unpack .../576-node-https-proxy-agent_5.0.1+~cs8.0.0-3_all.deb ...
Unpacking node-https-proxy-agent (5.0.1+~cs8.0.0-3) over (5.0.0-3) ...
Preparing to unpack .../577-node-indent-string_4.0.0-2_all.deb ...
Unpacking node-indent-string (4.0.0-2) over (4.0.0-1) ...
Preparing to unpack .../578-node-ini_3.0.1-2_all.deb ...
Unpacking node-ini (3.0.1-2) over (2.0.0-1) ...
Preparing to unpack .../579-node-ip_2.0.0+~1.1.0-1_all.deb ...
Unpacking node-ip (2.0.0+~1.1.0-1) over (1.1.5-5) ...
Preparing to unpack .../580-node-ip-regex_4.3.0+~4.1.1-1_all.deb ...
Unpacking node-ip-regex (4.3.0+~4.1.1-1) over (4.3.0-1) ...
Preparing to unpack .../581-node-isexe_2.0.0+~2.0.1-5_all.deb ...
Unpacking node-isexe (2.0.0+~2.0.1-5) over (2.0.0-5) ...
Preparing to unpack .../582-node-isstream_0.1.2+dfsg+~0.1.0-1_all.deb ...
Unpacking node-isstream (0.1.2+dfsg+~0.1.0-1) over (0.1.2+dfsg-1.1) ...
Preparing to unpack .../583-node-json-parse-better-errors_1.0.2+~cs3.3.1-2_all.deb ...
Unpacking node-json-parse-better-errors (1.0.2+~cs3.3.1-2) over (1.0.2+~2.3.1-1) ...
Preparing to unpack .../584-node-json-schema-traverse_1.0.0-3_all.deb ...
Unpacking node-json-schema-traverse (1.0.0-3) over (1.0.0-2) ...
Preparing to unpack .../585-node-jsonify_0.0.1-1_all.deb ...
Unpacking node-jsonify (0.0.1-1) over (0.0.0-1.1) ...
Preparing to unpack .../586-node-json-stable-stringify_1.0.2+~cs5.2.34-1_all.deb ...
Unpacking node-json-stable-stringify (1.0.2+~cs5.2.34-1) over (1.0.1+~cs5.1.32-1) ...
Preparing to unpack .../587-node-json-stringify-safe_5.0.1+repack-6_all.deb ...
Unpacking node-json-stringify-safe (5.0.1+repack-6) over (5.0.1+repack-3) ...
Preparing to unpack .../588-node-jsonparse_1.3.1-10_all.deb ...
Unpacking node-jsonparse (1.3.1-10) over (1.3.1-7) ...
Preparing to unpack .../589-node-leven_4.0.0+~cs1.1.1-2_all.deb ...
Unpacking node-leven (4.0.0+~cs1.1.1-2) over (3.1.0+~cs1.1.1-1) ...
Preparing to unpack .../590-node-lockfile_1.0.4+~1.0.2-1_all.deb ...
Unpacking node-lockfile (1.0.4+~1.0.2-1) over (1.0.4-3) ...
Preparing to unpack .../591-node-yallist_4.0.0+~4.0.1-1_all.deb ...
Unpacking node-yallist (4.0.0+~4.0.1-1) over (4.0.0-1) ...
Selecting previously unselected package node-minipass.
Preparing to unpack .../592-node-minipass_3.3.6+~cs9.4.19-1_all.deb ...
Unpacking node-minipass (3.3.6+~cs9.4.19-1) ...
Preparing to unpack .../593-node-move-concurrently_1.0.1-5_all.deb ...
Unpacking node-move-concurrently (1.0.1-5) over (1.0.1-2) ...
Preparing to unpack .../594-node-mute-stream_0.0.8+~0.0.1-3_all.deb ...
Unpacking node-mute-stream (0.0.8+~0.0.1-3) over (0.0.8-2) ...
Preparing to unpack .../595-node-resolve_1.22.1+~cs5.31.10-1_all.deb ...
Unpacking node-resolve (1.22.1+~cs5.31.10-1) over (1.19.0+~cs5.20.8-2) ...
Preparing to unpack .../596-node-spdx-license-ids_3.0.12-1_all.deb ...
Unpacking node-spdx-license-ids (3.0.12-1) over (3.0.7-1) ...
Preparing to unpack .../597-node-spdx-exceptions_2.3.0-2_all.deb ...
Unpacking node-spdx-exceptions (2.3.0-2) over (2.3.0-1) ...
Preparing to unpack .../598-node-spdx-expression-parse_3.0.1+~3.0.1-1_all.deb ...
Unpacking node-spdx-expression-parse (3.0.1+~3.0.1-1) over (3.0.1-1) ...
Preparing to unpack .../599-node-spdx-correct_3.1.1-2_all.deb ...
Unpacking node-spdx-correct (3.1.1-2) over (3.1.1-1) ...
Preparing to unpack .../600-node-validate-npm-package-license_3.0.4-2_all.deb ...
Unpacking node-validate-npm-package-license (3.0.4-2) over (3.0.4-1) ...
Preparing to unpack .../601-node-normalize-package-data_4.0.1+~2.4.1-1_all.deb ...
Unpacking node-normalize-package-data (4.0.1+~2.4.1-1) over (3.0.0+~2.4.0-1) ...
Preparing to unpack .../602-node-slash_4.0.0-3_all.deb ...
Unpacking node-slash (4.0.0-3) over (3.0.0-1) ...
Preparing to unpack .../603-node-read-package-json_5.0.2+~2.0.0-1_all.deb ...
Unpacking node-read-package-json (5.0.2+~2.0.0-1) over (3.0.0-1) ...
Preparing to unpack .../604-node-npm-bundled_2.0.1-2_all.deb ...
Unpacking node-npm-bundled (2.0.1-2) over (1.1.1-1) ...
Preparing to unpack .../605-node-set-blocking_2.0.0-2_all.deb ...
Unpacking node-set-blocking (2.0.0-2) over (2.0.0-1.1) ...
Preparing to unpack .../606-node-npmlog_7.0.1+~4.1.4-1_all.deb ...
Unpacking node-npmlog (7.0.1+~4.1.4-1) over (4.1.2-2) ...
Preparing to unpack .../607-node-number-is-nan_2.0.0-3_all.deb ...
Unpacking node-number-is-nan (2.0.0-3) over (2.0.0-1) ...
Preparing to unpack .../608-node-oauth-sign_0.9.0-4_all.deb ...
Unpacking node-oauth-sign (0.9.0-4) over (0.9.0-2) ...
Preparing to unpack .../609-node-osenv_0.1.5+~0.1.1-1_all.deb ...
Unpacking node-osenv (0.1.5+~0.1.1-1) over (0.1.5-1) ...
Preparing to unpack .../610-node-p-map_4.0.0+~3.1.0+~3.0.1-1_all.deb ...
Unpacking node-p-map (4.0.0+~3.1.0+~3.0.1-1) over (4.0.0-1) ...
Preparing to unpack .../611-node-path-is-absolute_2.0.0-2_all.deb ...
Unpacking node-path-is-absolute (2.0.0-2) over (2.0.0-1) ...
Preparing to unpack .../612-node-performance-now_2.1.0+debian-4_all.deb ...
Unpacking node-performance-now (2.1.0+debian-4) over (2.1.0+debian-1.1) ...
Preparing to unpack .../613-node-promise-inflight_1.0.1+~1.0.0-1_all.deb ...
Unpacking node-promise-inflight (1.0.1+~1.0.0-1) over (1.0.1-1.1) ...
Preparing to unpack .../614-node-retry_0.13.1+~0.12.1-1_all.deb ...
Unpacking node-retry (0.13.1+~0.12.1-1) over (0.12.0-1) ...
Preparing to unpack .../615-node-promise-retry_2.0.1-4_all.deb ...
Unpacking node-promise-retry (2.0.1-4) over (2.0.1-1) ...
Preparing to unpack .../616-node-read_1.0.7-5_all.deb ...
Unpacking node-read (1.0.7-5) over (1.0.7-2) ...
Preparing to unpack .../617-node-promzard_0.3.0-2_all.deb ...
Unpacking node-promzard (0.3.0-2) over (0.3.0-1.1) ...
Preparing to unpack .../618-node-psl_1.8.0+ds-9_all.deb ...
Unpacking node-psl (1.8.0+ds-9) over (1.8.0+ds-4) ...
Preparing to unpack .../619-node-ssri_9.0.1-2_all.deb ...
Unpacking node-ssri (9.0.1-2) over (8.0.1-2) ...
Preparing to unpack .../620-node-supports-color_8.1.1+~8.1.1-1_all.deb ...
Unpacking node-supports-color (8.1.1+~8.1.1-1) over (8.1.0+~7.2.0-1) ...
Preparing to unpack .../621-node-tar_6.1.13+~cs7.0.5-1_all.deb ...
Unpacking node-tar (6.1.13+~cs7.0.5-1) over (6.0.5+ds1+~cs11.3.9-1+deb11u2) ...
Preparing to unpack .../622-node-text-table_0.2.0-4_all.deb ...
Unpacking node-text-table (0.2.0-4) over (0.2.0-2) ...
Preparing to unpack .../623-node-tunnel-agent_0.6.1-4_all.deb ...
Unpacking node-tunnel-agent (0.6.1-4) over (0.6.1-2) ...
Preparing to unpack .../624-node-unique-filename_1.1.1+ds-2_all.deb ...
Unpacking node-unique-filename (1.1.1+ds-2) over (1.1.1+ds-1) ...
Preparing to unpack .../625-node-uri-js_4.4.0+dfsg-8_all.deb ...
Unpacking node-uri-js (4.4.0+dfsg-8) over (4.4.0+dfsg-5) ...
Preparing to unpack .../626-node-uuid_8.3.2+~8.3.3-3_all.deb ...
Unpacking node-uuid (8.3.2+~8.3.3-3) over (8.3.2+~8.3.0-4) ...
Preparing to unpack .../627-node-write-file-atomic_4.0.2+~4.0.0-1_all.deb ...
Unpacking node-write-file-atomic (4.0.2+~4.0.0-1) over (3.0.3+~3.0.1-1) ...
Preparing to unpack .../628-openbox_3.6.1-10_armhf.deb ...
Unpacking openbox (3.6.1-10) over (3.6.1-9+deb11u1) ...
Preparing to unpack .../629-psmisc_23.6-1_armhf.deb ...
Unpacking psmisc (23.6-1) over (23.4-2) ...
Preparing to unpack .../630-python3-colorzero_2.0-2_all.deb ...
Unpacking python3-colorzero (2.0-2) over (1.1) ...
Preparing to unpack .../631-python3-dnspython_2.3.0-1_all.deb ...
Unpacking python3-dnspython (2.3.0-1) over (2.0.0-1) ...
Preparing to unpack .../632-python3-gpiozero_1.6.2-1+b4_armhf.deb ...
Unpacking python3-gpiozero (1.6.2-1+b4) over (1.6.2-1) ...
Preparing to unpack .../633-re2c_3.0-2_armhf.deb ...
Unpacking re2c (3.0-2) over (2.0.3-1) ...
Preparing to unpack .../634-rng-tools5_5-4.1_armhf.deb ...
Unpacking rng-tools5 (5-4.1) over (5-4) ...
Preparing to unpack .../635-ruby-minitest_5.17.0-1_all.deb ...
Unpacking ruby-minitest (5.17.0-1) over (5.13.0-1) ...
Preparing to unpack .../636-ruby-power-assert_2.0.3-1_all.deb ...
Unpacking ruby-power-assert (2.0.3-1) over (1.1.7-2) ...
Preparing to unpack .../637-ruby-test-unit_3.5.7-1_all.deb ...
Unpacking ruby-test-unit (3.5.7-1) over (3.3.9-1) ...
Preparing to unpack .../638-swig4.0_4.1.0-0.2_armhf.deb ...
Unpacking swig4.0 (4.1.0-0.2) over (4.0.2-1) ...
Preparing to unpack .../639-swig_4.1.0-0.2_all.deb ...
Unpacking swig (4.1.0-0.2) over (4.0.2-1) ...
Preparing to unpack .../640-systemtap-sdt-dev_4.8-2_armhf.deb ...
Unpacking systemtap-sdt-dev:armhf (4.8-2) over (4.4-2) ...
Preparing to unpack .../641-tdb-tools_1.4.8-2_armhf.deb ...
Unpacking tdb-tools (1.4.8-2) over (1.4.3-1+b1) ...
Preparing to unpack .../642-tigervnc-scraping-server_1.12.0+dfsg-8_armhf.deb ...
Unpacking tigervnc-scraping-server (1.12.0+dfsg-8) over (1.11.0+dfsg-2+deb11u1) ...
Preparing to unpack .../643-xauth_1%3a1.1.2-1_armhf.deb ...
Unpacking xauth (1:1.1.2-1) over (1:1.1-1) ...
Preparing to unpack .../644-tigervnc-standalone-server_1.12.0+dfsg-8_armhf.deb ...
Unpacking tigervnc-standalone-server (1.12.0+dfsg-8) over (1.11.0+dfsg-2+deb11u1) ...
Preparing to unpack .../645-tigervnc-common_1.12.0+dfsg-8_armhf.deb ...
Unpacking tigervnc-common (1.12.0+dfsg-8) over (1.11.0+dfsg-2+deb11u1) ...
Preparing to unpack .../646-tmux_3.3a-3_armhf.deb ...
Unpacking tmux (3.3a-3) over (3.1c-1+deb11u1) ...
Preparing to unpack .../647-unzip_6.0-28_armhf.deb ...
Unpacking unzip (6.0-28) over (6.0-26+deb11u1) ...
Preparing to unpack .../648-usbutils_1%3a014-1_armhf.deb ...
Unpacking usbutils (1:014-1) over (1:013-3) ...
Preparing to unpack .../649-vorbis-tools_1.4.2-1+b1_armhf.deb ...
Unpacking vorbis-tools (1.4.2-1+b1) over (1.4.0-11) ...
Preparing to unpack .../650-whiptail_0.52.23-1+b1_armhf.deb ...
Unpacking whiptail (0.52.23-1+b1) over (0.52.21-4+b2) ...
Preparing to unpack .../651-wireless-regdb_2022.06.06-1_all.deb ...
Unpacking wireless-regdb (2022.06.06-1) over (2022.04.08-2~deb11u1) ...
Preparing to unpack .../652-wireless-tools_30~pre9-14_armhf.deb ...
Unpacking wireless-tools (30~pre9-14) over (30~pre9-13.1) ...
Preparing to unpack .../653-wpasupplicant_2%3a2.10-12_armhf.deb ...
Unpacking wpasupplicant (2:2.10-12) over (2:2.9.0-21) ...
Preparing to unpack .../654-xarchiver_1%3a0.5.4.20-2_armhf.deb ...
Unpacking xarchiver (1:0.5.4.20-2) over (1:0.5.4.17-2) ...
Preparing to unpack .../655-xfonts-base_1%3a1.0.5+nmu1_all.deb ...
Unpacking xfonts-base (1:1.0.5+nmu1) over (1:1.0.5) ...
Preparing to unpack .../656-xfonts-encodings_1%3a1.0.4-2.2_all.deb ...
Unpacking xfonts-encodings (1:1.0.4-2.2) over (1:1.0.4-2.1) ...
Preparing to unpack .../657-zenity-common_3.44.0-1_all.deb ...
Unpacking zenity-common (3.44.0-1) over (3.32.0-6) ...
Preparing to unpack .../658-zenity_3.44.0-1_armhf.deb ...
Unpacking zenity (3.44.0-1) over (3.32.0-6) ...
Preparing to unpack .../659-zsh_5.9-4_armhf.deb ...
Unpacking zsh (5.9-4) over (5.8-6+deb11u1) ...
Preparing to unpack .../660-zsh-common_5.9-4_all.deb ...
Unpacking zsh-common (5.9-4) over (5.8-6+deb11u1) ...
Preparing to unpack .../661-libxmlrpc-epi-dev_0.54.2-1.3_armhf.deb ...
Unpacking libxmlrpc-epi-dev:armhf (0.54.2-1.3) over (0.54.2-1.2) ...
Preparing to unpack .../662-libxmlrpc-epi0_0.54.2-1.3_armhf.deb ...
Unpacking libxmlrpc-epi0:armhf (0.54.2-1.3) over (0.54.2-1.2) ...
Setting up libgme0:armhf (0.6.3-6) ...
Setting up python3-pkg-resources (66.1.1-1) ...
Setting up node-forever-agent (0.6.1+~0.6.1-2) ...
Setting up libapt-pkg-perl (0.1.40+b4) ...
Setting up libexpat1:armhf (2.5.0-1) ...
Setting up media-types (10.0.0) ...
Installing new version of config file /etc/mime.types ...
Setting up cpio (2.13+dfsg-7.1) ...
Setting up x11proto-dev (2022.1-1) ...
Setting up libpcrecpp0v5:armhf (2:8.39-15) ...
Setting up node-delayed-stream (1.0.0-5) ...
Setting up bubblewrap (0.8.0-2) ...
Setting up libpipeline1:armhf (1.5.7-1) ...
Setting up node-isstream (0.1.2+dfsg+~0.1.0-1) ...
Setting up node-builtins (5.0.1-1) ...
Setting up libtext-iconv-perl:armhf (1.7-8) ...
Setting up liblcms2-2:armhf (2.14-2) ...
Setting up node-colors (1.4.0-4) ...
Setting up libpixman-1-0:armhf (0.42.2-1) ...
Setting up node-fs.realpath (1.0.0-3) ...
Setting up libudfread0:armhf (1.1.2-1) ...
Setting up fake-hwclock (0.12+nmu1) ...
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
Setting up libtext-charwidth-perl:armhf (0.04-11) ...
Setting up runit-helper (2.15.2) ...
Setting up libcdparanoia0:armhf (3.10.2+debian-14) ...
Setting up gcc-11-base:armhf (11.3.0-12+rpi1) ...
Setting up libwayland-server0:armhf (1.21.0-1) ...
Setting up node-oauth-sign (0.9.0-4) ...
Setting up libaom3:armhf (3.6.0-1) ...
Setting up node-jsbn (1.1.0+~1.2.29-1) ...
Setting up libebml5:armhf (1.4.4-1) ...
Setting up libpciaccess0:armhf (0.17-2) ...
Setting up mysql-common (5.8+1.1.0) ...
Setting up node-extsprintf (1.4.1+~1.4.1-2) ...
Setting up libabsl20220623:armhf (20220623.1-1+rpi1) ...
Setting up node-leven (4.0.0+~cs1.1.1-2) ...
Setting up librabbitmq4:armhf (0.11.0-1+b1) ...
Setting up systemd-sysv (252.12-1~deb12u1+rpi1) ...
Setting up libdouble-conversion3:armhf (3.2.1-1) ...
Setting up lua-lpeg:armhf (1.0.2-2) ...
Setting up libkeyutils1:armhf (1.6.3-2) ...
Setting up libproxy1v5:armhf (0.4.18-1.2) ...
Setting up libc-l10n (2.36-9+rpi1+deb12u1) ...
Setting up pci.ids (0.0~2023.04.11-1) ...
Setting up libpsl5:armhf (0.21.2-1) ...
Setting up node-abbrev (1.1.1+~1.1.2-1) ...
Setting up libxcb1:armhf (1.15-1) ...
Setting up libtag1v5-vanilla:armhf (1.13-2) ...
Setting up libcodec2-1.0:armhf (1.0.5-1) ...
Setting up libgpm2:armhf (1.20.7-10+b2) ...
Setting up libicu72:armhf (72.1-3) ...
Setting up linux-base (4.9) ...
Setting up libmpg123-0:armhf (1.31.2-1) ...
Setting up libxcb-xfixes0:armhf (1.15-1) ...
Setting up libxcb1-dev:armhf (1.15-1) ...
Setting up libogg0:armhf (1.3.5-3) ...
Setting up node-yallist (4.0.0+~4.0.1-1) ...
Setting up liblerc4:armhf (4.0.0+ds-2) ...
Setting up libzstd-dev:armhf (1.5.4+dfsg2-5) ...
Setting up libjs-inherits (2.0.4-6) ...
Setting up libspeex1:armhf (1.2.1-2) ...
Setting up bsdextrautils (2.38.1-5) ...
Setting up python3-setuptools (66.1.1-1) ...
Setting up node-ansi-regex (5.0.1-1) ...
Setting up wget (1.21.3-1+b1) ...
Setting up libplist3:armhf (2.2.0-6+b2) ...
Setting up libpcre16-3:armhf (2:8.39-15) ...
Setting up libwmflite-0.2-7:armhf (0.2.12-5.1) ...
Setting up libx264-164:armhf (2:0.164.3095+gitbaee400-3+rpi1) ...
Setting up libxcb-xinput0:armhf (1.15-1) ...
Setting up libvte-2.91-common (0.70.6-1~deb12u1) ...
Installing new version of config file /etc/profile.d/vte-2.91.sh ...
Installing new version of config file /etc/profile.d/vte.csh ...
Setting up libdatrie1:armhf (0.2.13-2+b2) ...
Setting up node-slash (4.0.0-3) ...
Setting up libgspell-1-common (1.12.0-1) ...
Setting up node-util-deprecate (1.0.2-3) ...
Setting up ruby-power-assert (2.0.3-1) ...
Setting up libmagic-mgc (1:5.44-3) ...
Setting up node-retry (0.13.1+~0.12.1-1) ...
Setting up libgsm1:armhf (1.0.22-1) ...
Setting up python3-colorzero (2.0-2) ...
Setting up libvisual-0.4-0:armhf (0.4.0-19) ...
Setting up node-concat-map (0.0.2+~0.0.1-1) ...
Setting up psmisc (23.6-1) ...
Setting up zsh-common (5.9-4) ...
Installing new version of config file /etc/zsh/zshrc ...
Setting up libxcb-render0:armhf (1.15-1) ...
Setting up golang-1.15-src (1.15.15-5+rpi1) ...
Setting up libyaml-0-2:armhf (0.2.5-1) ...
Setting up libglib2.0-0:armhf (2.74.6-1) ...
Setting up libaspell15:armhf (0.60.8-4) ...
Setting up distro-info-data (0.58) ...
Setting up libglvnd0:armhf (1.6.0-1) ...
Setting up node-ansistyles (0.1.3-5) ...
Setting up libi2c0:armhf (4.3-2+b2) ...
Setting up libsnmp-base (5.9.3+dfsg-2) ...
Setting up node-delegates (1.0.0-3) ...
Setting up libtirpc-common (1.3.3+ds-1) ...
Setting up node-depd (2.0.0-2) ...
Setting up libzip4:armhf (1.7.3-1+b1) ...
Setting up libxcb-glx0:armhf (1.15-1) ...
Setting up node-isexe (2.0.0+~2.0.1-5) ...
Setting up unzip (6.0-28) ...
Setting up libcbor0.8:armhf (0.8.0-2) ...
Setting up libxmlrpc-epi0:armhf (0.54.2-1.3) ...
Setting up libdebhelper-perl (13.11.4) ...
Setting up libbrotli1:armhf (1.0.9-2+b3) ...
Setting up node-jsonparse (1.3.1-10) ...
Setting up libbabl-0.1-0:armhf (1:0.1.98-1+rpi1) ...
Setting up wireless-regdb (2022.06.06-1) ...
Setting up liblab-gamut1:armhf (2.42.2-7+b2) ...
Setting up libxfce4util-common (4.18.1-2) ...
Setting up libgdk-pixbuf2.0-common (2.42.10+dfsg-1) ...
Setting up node-escape-string-regexp (4.0.0-2) ...
Setting up libmysofa1:armhf (1.3.1~dfsg0-1) ...
Setting up libxcb-shape0:armhf (1.15-1) ...
Setting up binutils-common:armhf (2.40-2+rpi2) ...
Setting up x11-common (1:7.7+23) ...
Installing new version of config file /etc/X11/Xsession ...
Installing new version of config file /etc/X11/Xsession.d/20x11-common_process-args ...
Installing new version of config file /etc/X11/Xsession.d/90x11-common_ssh-agent ...
Installing new version of config file /etc/init.d/x11-common ...
Setting up libsensors-config (1:3.6.0-7.1) ...
Setting up libnghttp2-14:armhf (1.52.0-1) ...
Setting up libmagic1:armhf (1:5.44-3) ...
Setting up libjavascriptcoregtk-4.0-18:armhf (2.40.3-2~deb12u2+rpi1) ...
Setting up libdeflate0:armhf (1.14-1) ...
Setting up libaspell-dev:armhf (0.60.8-4) ...
Setting up libapr1:armhf (1.7.2-3) ...
Setting up less (590-2) ...
Setting up libctf-nobfd0:armhf (2.40-2+rpi2) ...
Setting up gettext-base (0.21-12) ...
Setting up node-aws-sign2 (0.7.1-4) ...
Setting up golang-1.19-src (1.19.8-2) ...
Setting up m4 (1.4.19-3) ...
Setting up node-color-name (1.1.4+~1.1.1-2) ...
Setting up xkb-data (2.35.1-1) ...
Setting up node-console-control-strings (1.1.0-3) ...
Setting up hdparm (9.65+ds-1) ...
Setting up libhwy1:armhf (1.0.3-3+rpi1) ...
Setting up libilmbase25:armhf (2.5.7-2) ...
Setting up libpeas-common (1.34.0-1) ...
Setting up libxcb-shm0:armhf (1.15-1) ...
Setting up node-debug (4.3.4+~cs4.1.7-1) ...
Setting up libc-ares2:armhf (1.18.1-3) ...
Setting up file (1:5.44-3) ...
Setting up node-uuid (8.3.2+~8.3.3-3) ...
Setting up libsvtav1enc1:armhf (1.4.1+dfsg-1) ...
Setting up libsoup-3.0-common (3.2.2-2) ...
Setting up fonts-urw-base35 (20200910-7) ...
Setting up rng-tools5 (5-4.1) ...
Setting up kmod (30+20221128-1) ...
Installing new version of config file /etc/init.d/kmod ...
Setting up node-extend (3.0.2+~3.0.1-3) ...
Setting up libmagic-dev:armhf (1:5.44-3) ...
Setting up node-agent-base (6.0.2+~cs5.4.2-2) ...
Setting up libgomp1:armhf (12.2.0-14+rpi1) ...
Setting up libimath-3-1-29:armhf (3.1.6-1+b1) ...
Setting up libcjson1:armhf (1.7.15-1) ...
Setting up libfdt1:armhf (1.6.1-4+b1) ...
Setting up bzip2 (1.0.8-5+b2) ...
Setting up libffi-dev:armhf (3.4.4-1) ...
Setting up locales (2.36-9+rpi1+deb12u1) ...
Installing new version of config file /etc/locale.alias ...
locales-all installed, skipping locales generation
Setting up libunwind8:armhf (1.6.2-3) ...
Setting up node-aws4 (1.11.0-2) ...
Setting up libjbig0:armhf (2.1-6.1) ...
Setting up firebird3.0-common-doc (3.0.11.33637.ds4-2) ...
Setting up node-indent-string (4.0.0-2) ...
Setting up locales-all (2.36-9+rpi1+deb12u1) ...
Setting up librav1e0:armhf (0.5.1-6) ...
Setting up libpcre2-16-0:armhf (10.42-1) ...
Setting up libcolord2:armhf (1.4.6-2.2) ...
Setting up libpugixml1v5:armhf (1.13-0.2) ...
Setting up fdisk (2.38.1-5) ...
Setting up libopengl0:armhf (1.6.0-1) ...
Setting up libhashkit2:armhf (1.1.4-1) ...
Setting up neofetch (7.1.0-4) ...
Setting up libfakeroot:armhf (1.31-1.2) ...
Setting up gparted-common (1.3.1-1) ...
Setting up node-dashdash (2.0.0-4) ...
Setting up libasan6:armhf (11.3.0-12+rpi1) ...
Setting up libjansson4:armhf (2.14-2) ...
Setting up node-function-bind (1.1.1+repacked+~1.0.3-2) ...
Setting up libsnappy1v5:armhf (1.1.9-3) ...
Setting up poppler-data (0.4.12-1) ...
Setting up node-clone (2.1.2-4) ...
Setting up node-p-map (4.0.0+~3.1.0+~3.0.1-1) ...
Setting up libxcb-xkb1:armhf (1.15-1) ...
Setting up libxcb-image0:armhf (0.4.0-2) ...
Setting up node-iferr (1.0.2+~1.0.2-1) ...
Setting up libkrb5support0:armhf (1.20.1-2) ...
Setting up node-chownr (2.0.0-2) ...
Setting up node-has-flag (4.0.0-3) ...
Setting up libout123-0:armhf (1.31.2-1) ...
Setting up libaom-dev:armhf (3.6.0-1) ...
Setting up node-validate-npm-package-name (5.0.0+~4.0.0-1) ...
Setting up tzdata (2023c-5) ...

Current default time zone: 'Asia/Tokyo'
Local time is now:      Mon Sep 11 05:13:55 JST 2023.
Universal Time is now:  Sun Sep 10 20:13:55 UTC 2023.
Run 'dpkg-reconfigure tzdata' if you wish to change it.

Setting up libcap2-bin (1:2.66-4) ...
Setting up fakeroot (1.31-1.2) ...
Setting up libxcb-present0:armhf (1.15-1) ...
Setting up liberror-perl (0.17029-2) ...
Setting up libdconf1:armhf (0.40.0-4) ...
Setting up libsyn123-0:armhf (1.31.2-1) ...
Setting up firebird3.0-common (3.0.11.33637.ds4-2) ...
Installing new version of config file /etc/firebird/3.0/firebird.conf ...
Setting up libgts-0.7-5:armhf (0.7.6+darcs121130-5) ...
Setting up ruby-minitest (5.17.0-1) ...
Setting up mariadb-common (1:10.11.3-1+rpi1) ...
Setting up libexiv2-27:armhf (0.27.6-1) ...
Setting up libcddb2 (1.3.2-7) ...
Setting up python3-six (1.16.0-4) ...
Setting up libjs-psl (1.8.0+ds-9) ...
Setting up libasound2-data (1.2.8-1) ...
Setting up node-json-schema-traverse (1.0.0-3) ...
Setting up node-asap (2.0.6+~2.0.0-1) ...
Setting up node-inherits (2.0.4-6) ...
Setting up libxmlrpc-epi-dev:armhf (0.54.2-1.3) ...
Setting up node-path-is-absolute (2.0.0-2) ...
Setting up libqdbm14 (1.8.78-12) ...
Setting up libklibc:armhf (2.0.12-1+rpi1) ...
Setting up node-ini (3.0.1-2) ...
Setting up gcc-10-base:armhf (10.4.0-7+rpi1) ...
Setting up node-ecc-jsbn (0.2.0-4) ...
Setting up autotools-dev (20220109.1) ...
Setting up libz3-4:armhf (4.8.12-3.1) ...
Setting up libpcre2-32-0:armhf (10.42-1) ...
Setting up xfonts-base (1:1.0.5+nmu1) ...
Setting up node-safe-buffer (5.2.1+~cs2.1.2-3) ...
Setting up node-promise-inflight (1.0.1+~1.0.0-1) ...
Setting up libblas3:armhf (3.11.0-2) ...
Setting up libisc-export1105:armhf (1:9.11.19+dfsg-2.1+b1) ...
Setting up libglib2.0-data (2.74.6-1) ...
Setting up libxcb-xinerama0:armhf (1.15-1) ...
Setting up libjavascriptcoregtk-4.1-0:armhf (2.40.3-2~deb12u2+rpi1) ...
Setting up libpkgconf3:armhf (1.8.1-1) ...
Setting up libgmpxx4ldbl:armhf (2:6.2.1+dfsg1-1.1) ...
Setting up libuv1:armhf (1.44.2-1+rpi1) ...
Setting up libflac12:armhf (1.4.2+ds-2) ...
Setting up rpcsvc-proto (1.4.3-1) ...
Setting up node-combined-stream (1.0.8+~1.0.3-1) ...
Setting up libgles2:armhf (1.6.0-1) ...
Setting up flac (1.4.2+ds-2) ...
Setting up node-json-stringify-safe (5.0.1+repack-6) ...
Setting up node-json-parse-better-errors (1.0.2+~cs3.3.1-2) ...
Setting up libjpeg62-turbo:armhf (1:2.1.5-2) ...
Setting up libdvdread8:armhf (6.1.3-1) ...
Setting up emacsen-common (3.0.5) ...
Setting up expat (2.5.0-1) ...
Setting up libslang2:armhf (2.3.3-3) ...
Setting up systemtap-sdt-dev:armhf (4.8-2) ...
Setting up libva2:armhf (2.17.0-1) ...
Setting up node-fast-deep-equal (3.1.3-3) ...
Setting up ruby-test-unit (3.5.7-1) ...
Setting up node-har-schema (2.0.0-5) ...
Setting up python3-gpiozero (1.6.2-1+b4) ...
Setting up node-mime-types (2.1.35-1) ...
Setting up node-performance-now (2.1.0+debian-4) ...
Setting up node-err-code (2.0.3+dfsg-3) ...
Setting up libwrap0:armhf (7.6.q-32) ...
Setting up libmbedcrypto7:armhf (2.28.3-1) ...
Setting up libx11-data (2:1.8.4-2+deb12u1) ...
Setting up libgpg-error-dev (1.46-1) ...
Setting up libepoxy0:armhf (1.5.10-1) ...
Setting up libmpfr6:armhf (4.2.0-1) ...
Setting up libnspr4:armhf (2:4.35-1) ...
Setting up libxcb-sync1:armhf (1.15-1) ...
Setting up libjbig2dec0:armhf (0.19-3+b2) ...
Setting up node-balanced-match (2.0.0-1) ...
Setting up libsigc++-2.0-0v5:armhf (2.12.0-1) ...
Setting up libjack0:armhf (1:0.126.0-2) ...
Setting up node-ansi (0.3.1-2) ...
Setting up node-brace-expansion (2.0.1-2) ...
Setting up bash-completion (1:2.11-6) ...
Setting up libldap-dev:armhf (2.5.13+dfsg-5+rpi1) ...
Setting up libpathplan4:armhf (2.42.2-7+b2) ...
Setting up libavahi-common-data:armhf (0.8-10) ...
Setting up liblirc-client0:armhf (0.10.1-7.2) ...
Setting up libncurses6:armhf (6.4-4) ...
Setting up tdb-tools (1.4.8-2) ...
update-alternatives: using /usr/bin/tdbbackup.tdbtools to provide /usr/bin/tdbbackup (tdbbackup) in auto mode
Setting up node-spdx-exceptions (2.3.0-2) ...
Setting up libdbus-1-3:armhf (1.14.8-2~deb12u1) ...
Setting up ruby-net-telnet (0.2.0-1) ...
Setting up libsigsegv2:armhf (2.14-1) ...
Setting up xz-utils (5.4.1-0.2) ...
Setting up xfonts-encodings (1:1.0.4-2.2) ...
Setting up libopenexr-3-1-30:armhf (3.1.5-5) ...
Setting up zenity-common (3.44.0-1) ...
Setting up libfribidi0:armhf (1.0.8-2.1) ...
Setting up libmtp-common (1.1.20-1) ...
Setting up libopus0:armhf (1.3.1-3) ...
Setting up libfaad2:armhf (2.10.1-1) ...
Setting up libexif12:armhf (0.6.24-1+b2) ...
Setting up libproc2-0:armhf (2:4.0.2-3) ...
Setting up node-set-blocking (2.0.0-2) ...
Setting up libfile-readbackwards-perl (1.06-2) ...
Setting up libssl-dev:armhf (3.0.9-1) ...
Setting up libpng16-16:armhf (1.6.39-2) ...
Setting up libpcre32-3:armhf (2:8.39-15) ...
Setting up libmpc3:armhf (1.3.1-1) ...
Setting up node-tunnel-agent (0.6.1-4) ...
Setting up systemd-timesyncd (252.12-1~deb12u1+rpi1) ...

Configuration file '/etc/systemd/timesyncd.conf'
 ==> Modified (by you or by a script) since installation.
 ==> Package distributor has shipped an updated version.
 ==> Keeping old config file as default.
Setting up libevent-core-2.1-7:armhf (2.1.12-stable-8) ...
Setting up udev (252.12-1~deb12u1+rpi1) ...
configuration error - unknown item 'NONEXISTENT' (notify administrator)
configuration error - unknown item 'PREVENT_NO_AUTH' (notify administrator)
Setting up libevent-2.1-7:armhf (2.1.12-stable-8) ...
Setting up libss2:armhf (1.47.0-2) ...
Setting up liborc-0.4-0:armhf (1:0.4.33-2) ...
Setting up autopoint (0.21-12) ...
Setting up libnss-myhostname:armhf (252.12-1~deb12u1+rpi1) ...
Setting up libjsoncpp25:armhf (1.9.5-4) ...
Setting up icu-devtools (72.1-3) ...
Setting up sudo (1.9.13p3-1+deb12u1) ...
Installing new version of config file /etc/init.d/sudo ...
Installing new version of config file /etc/pam.d/sudo ...
Installing new version of config file /etc/sudo.conf ...
Installing new version of config file /etc/sudo_logsrvd.conf ...
Installing new version of config file /etc/sudoers ...
Installing new version of config file /etc/sudoers.d/README ...
Setting up libmariadb3:armhf (1:10.11.3-1+rpi1) ...
Setting up fonts-dejavu-core (2.37-6) ...
Setting up node-signal-exit (3.0.7+~3.0.1-1) ...
Setting up unixodbc-common (2.3.11-2+deb12u1) ...
Setting up libgdbm-compat4:armhf (1.23-3) ...
Setting up libudev-dev:armhf (252.12-1~deb12u1+rpi1) ...
Setting up util-linux (2.38.1-5) ...
fstrim.service is a disabled or a static unit not running, not starting it.
Setting up device-tree-compiler (1.6.1-4+b1) ...
Setting up libgav1-1:armhf (0.18.0-1+rpi1+b1) ...
Setting up liblist-moreutils-xs-perl (0.430-3+b1) ...
Setting up libpcsclite1:armhf (1.9.9-2) ...
Setting up pkgconf-bin (1.8.1-1) ...
Setting up libsensors5:armhf (1:3.6.0-7.1) ...
Setting up liblerc-dev:armhf (4.0.0+ds-2) ...
Setting up libjxl0.7:armhf (0.7.0-10) ...
Setting up libxmltok1 (1.2-4+b2) ...
Setting up libk5crypto3:armhf (1.20.1-2) ...
Setting up libxtables12:armhf (1.8.9-2) ...
Setting up libraw20:armhf (0.20.2-2.1) ...
Setting up libgc1:armhf (1:8.2.2-3) ...
Setting up libdav1d6:armhf (1.0.0-2+rpi1) ...
Setting up libltdl7:armhf (2.4.7-5) ...
Setting up node-wrappy (1.0.2-3) ...
Setting up libfftw3-double3:armhf (3.3.10-1) ...
Setting up libglapi-mesa:armhf (22.3.6-1+deb12u1+rpi1) ...
Setting up node-text-table (0.2.0-4) ...
Setting up libdpkg-perl (1.21.22+rpi1) ...
Setting up logsave (1.47.0-2) ...
Setting up libgfortran5:armhf (12.2.0-14+rpi1) ...
Setting up node-asynckit (0.4.0-5) ...
Setting up libvulkan1:armhf (1.3.239.0-1) ...
Setting up autoconf (2.71-3) ...
Setting up node-ip (2.0.0+~1.1.0-1) ...
Setting up libx265-199:armhf (3.5-2) ...
Setting up libsoup2.4-common (2.74.3-1) ...
Setting up libwebp7:armhf (1.2.4-0.2) ...
Setting up librubberband2:armhf (3.1.2+dfsg0-1) ...
Setting up libmhash2:armhf (0.9.9.9-9+b2) ...
Setting up ruby-webrick (1.8.1-1) ...
Setting up libutempter0:armhf (1.2.1-3) ...
Setting up liblzma-dev:armhf (5.4.1-0.2) ...
Setting up libubsan1:armhf (12.2.0-14+rpi1) ...
Setting up libxcb-dri2-0:armhf (1.15-1) ...
Setting up node-defaults (1.0.4+~1.0.3-1) ...
Setting up libgif7:armhf (5.2.1-2.5) ...
Setting up libatk1.0-data (2.38.0-1) ...
Setting up libodbc2:armhf (2.3.11-2+deb12u1) ...
Setting up nano (7.2-1) ...
Installing new version of config file /etc/nanorc ...
Setting up node-mute-stream (0.0.8+~0.0.1-3) ...
Setting up libpci3:armhf (1:3.9.0-4) ...
Setting up xdg-dbus-proxy (0.1.4-3) ...
Setting up libparted2:armhf (3.5-3) ...
Setting up libpcre2-posix3:armhf (10.42-1) ...
Setting up libgcc-11-dev:armhf (11.3.0-12+rpi1) ...
Setting up libjs-typedarray-to-buffer (4.0.0-2) ...
Setting up libsrt1.5-gnutls:armhf (1.5.1-1) ...
Setting up libsctp1:armhf (1.0.19+dfsg-2) ...
Setting up nmap-common (7.93+dfsg1-1) ...
Setting up libtag1v5:armhf (1.13-2) ...
Setting up node-number-is-nan (2.0.0-3) ...
Setting up libparted-fs-resize0:armhf (3.5-3) ...
Setting up mount (2.38.1-5) ...
Setting up liblua5.2-0:armhf (5.2.4-3) ...
Setting up libmemcached11:armhf (1.1.4-1) ...
Setting up sensible-utils (0.0.17+nmu1) ...
Setting up libdv4:armhf (1.0.0-15) ...
Setting up node-graceful-fs (4.2.10-1) ...
Setting up ocl-icd-libopencl1:armhf (2.3.1-1) ...
Setting up libduktape207:armhf (2.7.0-2) ...
Setting up libasyncns0:armhf (0.8-6+b3) ...
Setting up groff-base (1.22.4-10) ...
Installing new version of config file /etc/groff/man.local ...
Setting up libmatroska7:armhf (1.7.1-1) ...
Setting up at-spi2-common (2.46.0-5) ...
Setting up librhash0:armhf (1.4.3-3) ...
Setting up libdb5.3-dev (5.3.28+dfsg2-1) ...
Setting up libcrypt-dev:armhf (1:4.4.33-2) ...
Setting up libwavpack1:armhf (5.6.0-1) ...
Setting up libtiff6:armhf (4.5.0-6) ...
Setting up libbs2b0:armhf (3.1.0+dfsg-7) ...
Setting up libxcb-randr0:armhf (1.15-1) ...
Setting up libplymouth5:armhf (22.02.122-3) ...
Setting up dbus-session-bus-common (1.14.8-2~deb12u1) ...
Setting up node-jsonify (0.0.1-1) ...
Setting up libxcb-xv0:armhf (1.15-1) ...
Setting up libwrap0-dev:armhf (7.6.q-32) ...
Setting up libasan8:armhf (12.2.0-14+rpi1) ...
Setting up liblua5.3-0:armhf (5.3.6-2) ...
Setting up procps (2:4.0.2-3) ...
Installing new version of config file /etc/init.d/procps ...
Installing new version of config file /etc/sysctl.d/README.sysctl ...
Setting up libspeexdsp1:armhf (1.2.1-1) ...
Setting up libasound2:armhf (1.2.8-1+b1) ...
Setting up libv4lconvert0:armhf (1.22.1-5) ...
Setting up node-json-stable-stringify (1.0.2+~cs5.2.34-1) ...
Setting up libmd-dev:armhf (1.0.4-2) ...
Setting up libnl-3-200:armhf (3.7.0-0.2) ...
Setting up node-aproba (2.0.0-3) ...
Setting up bison (2:3.8.2+dfsg-1) ...
Setting up libmpdec3:armhf (2.5.1-2+rpi1) ...
Setting up libgegl-common (1:0.4.42-2) ...
Setting up libxcvt0:armhf (0.1.2-1) ...
Setting up libmd4c0:armhf (0.4.8-1) ...
Setting up libupower-glib3:armhf (0.99.20-2) ...
Setting up node-ip-regex (4.3.0+~4.1.1-1) ...
Setting up libopenjp2-7:armhf (2.5.0-2) ...
Setting up libsub-override-perl (0.09-4) ...
Setting up git-man (1:2.39.2-1.1) ...
Setting up libx11-6:armhf (2:1.8.4-2+deb12u1) ...
Setting up libthai-data (0.1.29-1) ...
Setting up libgirepository-1.0-1:armhf (1.74.0-3+b1) ...
Setting up node-spdx-license-ids (3.0.12-1) ...
Setting up node-string-decoder (1.3.0-6) ...
Setting up kbd (2.5.1-1) ...
Setting up libssh2-1:armhf (1.10.0-3+b1) ...
Setting up netbase (6.4) ...
Installing new version of config file /etc/ethertypes ...
Installing new version of config file /etc/protocols ...
Installing new version of config file /etc/rpc ...
Setting up libwxbase3.0-0v5:armhf (3.0.5.1+dfsg-5+b1) ...
Setting up node-time-stamp (2.2.0-2) ...
Setting up libjson-glib-1.0-common (1.6.6-1) ...
Setting up libvpx7:armhf (1.12.0-1) ...
Setting up sgml-base (1.31) ...
Setting up libjs-events (3.3.0+~3.0.0-3) ...
Setting up cmake-data (3.25.1-1) ...
Removing obsolete conffile /etc/emacs/site-start.d/50cmake-data.el ...
Setting up node-run-queue (2.0.0-3) ...
Setting up libcdt5:armhf (2.42.2-7+b2) ...
Setting up mawk (1.3.4.20200120-3.1) ...
Setting up libatk1.0-0:armhf (2.46.0-5) ...
Setting up libkrb5-3:armhf (1.20.1-2) ...
Setting up libxfce4util7:armhf (4.18.1-2) ...
Setting up libcgraph6:armhf (2.42.2-7+b2) ...
Setting up libglu1-mesa:armhf (9.0.2-1.1) ...
Setting up libapparmor-dev:armhf (3.0.8-3) ...
Setting up node-core-util-is (1.0.3-1) ...
Setting up libpython3.11-minimal:armhf (3.11.2-6) ...
Setting up node-json-schema (0.4.0+~7.0.11-1) ...
Setting up apache2-data (2.4.57-2) ...
Setting up node-uri-js (4.4.0+dfsg-8) ...
Setting up libwayland-egl1:armhf (1.21.0-1) ...
Setting up libusb-1.0-0:armhf (2:1.0.26-1) ...
Setting up node-minimatch (5.1.1+~5.1.2-1) ...
Setting up libsensors-dev:armhf (1:3.6.0-7.1) ...
Setting up re2c (3.0-2) ...
Setting up zsh (5.9-4) ...
Setting up libgexiv2-2:armhf (0.14.0-1) ...
Setting up tigervnc-common (1.12.0+dfsg-8) ...
Installing new version of config file /etc/tigervnc/openssl.cnf ...

Configuration file '/etc/tigervnc/vncserver-config-defaults'
 ==> Modified (by you or by a script) since installation.
 ==> Package distributor has shipped an updated version.
 ==> Keeping old config file as default.
Setting up libib-util:armhf (3.0.11.33637.ds4-2+b1) ...
Setting up freetds-common (1.3.17+ds-2) ...
Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
Setting up dmidecode (3.4-1) ...
Setting up libhunspell-1.7-0:armhf (1.7.1-1+b2) ...
Setting up libexporter-tiny-perl (1.006000-1) ...
Setting up glib-networking-common (2.74.0-4) ...
Setting up libbinutils:armhf (2.40-2+rpi2) ...
Setting up libgck-1-0:armhf (3.41.1-1) ...
Setting up lsb-release (12.0-1) ...
Setting up dbus-system-bus-common (1.14.8-2~deb12u1) ...
Setting up node-caseless (0.12.1-2) ...
Setting up swig4.0 (4.1.0-0.2) ...
Setting up node-imurmurhash (0.1.4+dfsg+~0.1.1-2) ...
Setting up libfido2-1:armhf (1.12.0-2) ...
Setting up libisl23:armhf (0.25-1) ...
Setting up libpspell-dev:armhf (0.60.8-4) ...
Setting up libasound2-dev:armhf (1.2.8-1+b1) ...
Setting up libmcrypt4 (2.5.8-7) ...
Setting up libde265-0:armhf (1.0.11-1+rpi1) ...
Setting up libc-dev-bin (2.36-9+rpi1+deb12u1) ...
Setting up libfann2:armhf (2.2.0+ds-8) ...
Setting up klibc-utils (2.0.12-1+rpi1) ...
Setting up libregexp-assemble-perl (0.38-2) ...
Setting up node-read (1.0.7-5) ...
Setting up libsamplerate0:armhf (0.2.2-3) ...
Setting up libargon2-dev:armhf (0~20171227-0.3+deb12u1) ...
Setting up libimobiledevice6:armhf (1.3.0-6+b3) ...
Setting up golang-src (2:1.19~1) ...
Setting up openssl (3.0.9-1) ...
Installing new version of config file /etc/ssl/openssl.cnf ...
Setting up libwebpmux3:armhf (1.2.4-0.2) ...
Setting up libbsd0:armhf (0.11.7-2) ...
Setting up libtiffxx6:armhf (4.5.0-6) ...
Setting up libdeflate-dev:armhf (1.14-1) ...
Setting up libatopology2:armhf (1.2.8-1+b1) ...
Setting up golang-1.15-go (1.15.15-5+rpi1) ...
Setting up libdrm-common (2.4.114-1+rpi1) ...
Setting up libyuv0:armhf (0.0~git20230123.b2528b0-1) ...
Setting up mailcap (3.70+nmu1) ...
Setting up libelf1:armhf (0.188-2.1+rpi1) ...
Setting up libgcr-base-3-1:armhf (3.41.1-1) ...
Setting up iputils-ping (3:20221126-1) ...
Setting up libevdev2:armhf (1.13.0+dfsg-1+rpi1) ...
Setting up libgtksourceview-4-common (4.8.4-4) ...
Setting up node-asn1 (0.2.6+~0.2.0-2) ...
Setting up ruby-xmlrpc (0.3.2-2) ...
Setting up libxml2:armhf (2.9.14+dfsg-1.3~deb12u1) ...
Setting up tmux (3.3a-3) ...
Setting up libopenmpt0:armhf (0.6.9-1) ...
Setting up node-color-convert (2.0.1+~cs2.0.0-2) ...
Setting up libbsd-dev:armhf (0.11.7-2) ...
Setting up libsuitesparseconfig5:armhf (1:5.12.0+dfsg-2) ...
Setting up libcc1-0:armhf (12.2.0-14+rpi1) ...
Setting up iso-codes (4.15.0-1) ...
Setting up libxmuu1:armhf (2:1.1.3-3) ...
Setting up dbus-bin (1.14.8-2~deb12u1) ...
Setting up libsystemd-dev:armhf (252.12-1~deb12u1+rpi1) ...
Setting up libonig5:armhf (6.9.8-1) ...
Setting up liblocale-gettext-perl (1.07-5) ...
Setting up libiw30:armhf (30~pre9-14) ...
Setting up libbrotli-dev:armhf (1.0.9-2+b3) ...
Setting up libgudev-1.0-0:armhf (237-2) ...
Setting up libpolkit-gobject-1-0:armhf (122-3) ...
Setting up libzvbi-common (0.2.41-1) ...
Setting up libbpf1:armhf (1:1.1.0-1) ...
Setting up libsecret-common (0.20.5-3+rpi1) ...
Setting up cpp-10 (10.4.0-7+rpi1) ...
Setting up libmp3lame0:armhf (3.100-6) ...
Setting up node-isarray (2.0.5-4) ...
Setting up node-osenv (0.1.5+~0.1.1-1) ...
Setting up libdvdnav4:armhf (6.1.1-1) ...
Setting up libjs-underscore (1.13.4~dfsg+~1.11.4-3) ...
Setting up libpopt0:armhf (1.19+dfsg-1) ...
Setting up ethtool (1:6.1-1) ...
Setting up libaa1:armhf (1.4p5-50) ...
Setting up libodbccr2:armhf (2.3.11-2+deb12u1) ...
Setting up libiec61883-0:armhf (1.2.0-6) ...
Setting up libevent-pthreads-2.1-7:armhf (2.1.12-stable-8) ...
Setting up libjs-is-typedarray (1.0.0-4) ...
Setting up libfann-dev:armhf (2.2.0+ds-8) ...
Setting up libserd-0-0:armhf (0.30.16-1) ...
Setting up libhiredis0.14:armhf (0.14.1-3) ...
Setting up libaprutil1:armhf (1.6.3-1) ...
Setting up libxkbcommon0:armhf (1.5.0-1) ...
Setting up node-process-nextick-args (2.0.1-3) ...
Setting up golang-1.19-go (1.19.8-2) ...
Setting up node-has-unicode (2.0.1-5) ...
Setting up gyp (0.1+20220404git9ecf45e-2) ...
Setting up libwayland-client0:armhf (1.21.0-1) ...
Setting up libctf0:armhf (2.40-2+rpi2) ...
Setting up colorized-logs (2.6-1) ...
Setting up automake (1:1.16.5-1.3) ...
Setting up libfile-stripnondeterminism-perl (1.13.1-1) ...
Setting up node-har-validator (5.1.5-3) ...
Setting up libuv1-dev:armhf (1.44.2-1+rpi1) ...
Setting up libxcb-dri3-0:armhf (1.15-1) ...
Setting up libglib2.0-dev-bin (2.74.6-1) ...
Setting up glib-networking-services (2.74.0-4) ...
Setting up libglibmm-2.4-1v5:armhf (2.66.5-2) ...
Setting up libzvbi0:armhf (0.2.41-1) ...
Setting up libamd2:armhf (1:5.12.0+dfsg-2) ...
Setting up node-readable-stream (3.6.0+~cs3.0.0-4) ...
Setting up libportaudio2:armhf (19.6.0-1.2) ...
Setting up libx11-xcb1:armhf (2:1.8.4-2+deb12u1) ...
Setting up libqdbm-dev (1.8.78-12) ...
Setting up libdw1:armhf (0.188-2.1+rpi1) ...
Setting up libodbcinst2:armhf (2.3.11-2+deb12u1) ...
Setting up libevent-extra-2.1-7:armhf (2.1.12-stable-8) ...
Setting up flex (2.6.4-8.2) ...
Setting up liblapack3:armhf (3.11.0-2) ...
Setting up odbcinst (2.3.11-2+deb12u1) ...
Setting up node-promise-retry (2.0.1-4) ...
Setting up cpp-12 (12.2.0-14+rpi1) ...
Setting up gettext (0.21-12) ...
Setting up libnewt0.52:armhf (0.52.23-1+b1) ...
Setting up libfftw3-single3:armhf (3.3.10-1) ...
Setting up swig (4.1.0-0.2) ...
Setting up node-supports-color (8.1.1+~8.1.1-1) ...
Setting up libxdamage1:armhf (1:1.1.6-1) ...
Setting up libopenblas0-pthread:armhf (0.3.21+ds-4+rpi1) ...
Setting up libgmp-dev:armhf (2:6.2.1+dfsg1-1.1) ...
Setting up libatlas3-base:armhf (3.10.3-13+rpi1) ...
Setting up libcolamd2:armhf (1:5.12.0+dfsg-2) ...
Setting up libcaca0:armhf (0.99.beta20-3) ...
Setting up libxpm4:armhf (1:3.5.12-1.1) ...
Setting up libavif15:armhf (0.11.1-1) ...
Setting up node-once (1.4.0-7) ...
Setting up libwoff1:armhf (1.0.2-2) ...
Setting up node-psl (1.8.0+ds-9) ...
Setting up libxrender1:armhf (1:0.9.10-1.1) ...
Setting up dictionaries-common (1.29.5) ...
Setting up libonig-dev (6.9.8-1) ...
Setting up node-jsprim (2.0.1-1) ...
Setting up libarchive13:armhf (3.6.2-1) ...
Setting up golang-go:armhf (2:1.19~1) ...
Setting up libwpe-1.0-1:armhf (1.14.0-1) ...
Setting up fontconfig-config (2.14.1-4) ...
Installing new version of config file /etc/fonts/conf.d/README ...
Installing new version of config file /etc/fonts/fonts.conf ...
Setting up libwebpdemux2:armhf (1.2.4-0.2) ...
Setting up libgcc-10-dev:armhf (10.4.0-7+rpi1) ...
Setting up mlock (8:2007f~dfsg-7+b1) ...
Setting up libmanette-0.2-0:armhf (0.2.6-3) ...
Setting up node-resolve (1.22.1+~cs5.31.10-1) ...
Setting up libedit2:armhf (3.1-20221030-2) ...
Setting up cron (3.0pl1-162) ...
Setting up libheif1:armhf (1.15.1-1) ...
Setting up libmemcachedutil2:armhf (1.1.4-1) ...
Setting up wireless-tools (30~pre9-14) ...
Setting up node-are-we-there-yet (3.0.1+~1.1.0-1) ...
Setting up netcat-openbsd (1.219-1) ...
Setting up libavahi-common3:armhf (0.8-10) ...
Setting up libjbig-dev:armhf (2.1-6.1) ...
Setting up libx11-dev:armhf (2:1.8.4-2+deb12u1) ...
Setting up libxext6:armhf (2:1.3.4-1) ...
Setting up libdns-export1110 (1:9.11.19+dfsg-2.1+b1) ...
Setting up libevent-openssl-2.1-7:armhf (2.1.12-stable-8) ...
Setting up libglib2.0-bin (2.74.6-1) ...
Setting up parted (3.5-3) ...
Setting up screen (4.9.0-4) ...
Setting up libobjc4:armhf (12.2.0-14+rpi1) ...
Setting up e2fsprogs (1.47.0-2) ...
Installing new version of config file /etc/mke2fs.conf ...
update-initramfs: deferring update (trigger activated)
e2scrub_all.service is a disabled or a static unit not running, not starting it.
e2scrub_all.timer is a disabled or a static unit not running, not starting it.
e2scrub_reap.service is a disabled or a static unit not running, not starting it.
Setting up apt-file (3.3) ...
Setting up libnss3:armhf (2:3.87.1-1) ...
Setting up dbus-daemon (1.14.8-2~deb12u1) ...
Setting up libaprutil1-ldap:armhf (1.6.3-1) ...
Setting up node-events (3.3.0+~3.0.0-3) ...
Setting up libaprutil1-dbd-sqlite3:armhf (1.6.3-1) ...
Setting up man-db (2.11.2-2) ...
Installing new version of config file /etc/cron.daily/man-db ...
Installing new version of config file /etc/cron.weekly/man-db ...
Installing new version of config file /etc/manpath.config ...
Updating database of manual pages ...
man-db.service is a disabled or a static unit not running, not starting it.
Setting up libfbclient2:armhf (3.0.11.33637.ds4-2+b1) ...
Setting up usbutils (1:014-1) ...
Setting up node-fancy-log (1.3.3+~cs1.3.1-2) ...
Setting up node-http-signature (1.3.6-2) ...
Setting up pkgconf:armhf (1.8.1-1) ...
Setting up libjson-glib-1.0-0:armhf (1.6.6-1) ...
Setting up intltool-debian (0.35.0+20060710.6) ...
Setting up libportaudiocpp0:armhf (19.6.0-1.2) ...
Setting up libnl-route-3-200:armhf (3.7.0-0.2) ...
Setting up librist4:armhf (0.2.7+dfsg-1) ...
Setting up node-promzard (0.3.0-2) ...
Setting up node-wcwidth.js (1.0.2-2) ...
Setting up libv4l-0:armhf (1.22.1-5) ...
Setting up libldap2-dev (2.5.13+dfsg-5+rpi1) ...
Setting up libltdl-dev:armhf (2.4.7-5) ...
Setting up libthai0:armhf (0.1.29-1) ...
Setting up ca-certificates (20230311) ...
Updating certificates in /etc/ssl/certs...
rehash: warning: skipping ca-certificates.crt,it does not contain exactly one certificate or CRL
26 added, 15 removed; done.
Setting up libcamd2:armhf (1:5.12.0+dfsg-2) ...
Setting up alsa-utils (1.2.8-1) ...
Installing new version of config file /etc/init.d/alsa-utils ...
alsa-state.service is a disabled or a static unit not running, not starting it.
Setting up node-iconv-lite (0.6.3-3) ...
Setting up libwpebackend-fdo-1.0-1:armhf (1.14.2-1) ...
Setting up libsnmp40:armhf (5.9.3+dfsg-2) ...
Setting up libsecret-1-0:armhf (0.20.5-3+rpi1) ...
Setting up libwebp-dev:armhf (1.2.4-0.2) ...
Setting up libmcrypt-dev (2.5.8-7) ...
Setting up node-unique-filename (1.1.1+ds-2) ...
Setting up libllvm11:armhf (1:11.1.0-6+rpi2) ...
Setting up libfreetype6:armhf (2.12.1+dfsg-5) ...
Setting up node-ansi-styles (6.2.1-2) ...
Setting up libpcap0.8:armhf (1.10.3-1) ...
Setting up libvpx-dev:armhf (1.12.0-1) ...
Setting up libde265-dev:armhf (1.0.11-1+rpi1) ...
Setting up libxfixes3:armhf (1:6.0.0-2) ...
Setting up libdbus-glib-1-2:armhf (0.112-3) ...
Setting up libdb-dev:armhf (5.3.2) ...
Setting up dbus (1.14.8-2~deb12u1) ...
A reboot is required to replace the running dbus-daemon.
Please reboot the system when convenient.
dbus.service is a disabled or a static unit, not starting it.
Setting up libdav1d-dev:armhf (1.0.0-2+rpi1) ...
Setting up libgcc-12-dev:armhf (12.2.0-14+rpi1) ...
Setting up libx265-dev:armhf (3.5-2) ...
Setting up shared-mime-info (2.2-1) ...
Setting up libxinerama1:armhf (2:1.1.4-3) ...
Setting up libxpm-dev:armhf (1:3.5.12-1.1) ...
Setting up node-form-data (4.0.0-1) ...
Setting up libxkbcommon-x11-0:armhf (1.5.0-1) ...
Setting up libdc1394-25:armhf (2.2.6-4) ...
Setting up libxv1:armhf (2:1.0.11-1.1) ...
Setting up libavif-dev:armhf (0.11.1-1) ...
Setting up libevent-dev (2.1.12-stable-8) ...
Setting up autoconf2.64 (2.64+dfsg-1.1) ...
Setting up i2c-tools (4.3-2+b2) ...
Setting up libgssapi-krb5-2:armhf (1.20.1-2) ...
Setting up libclang1-11 (1:11.1.0-6+rpi2) ...
Setting up libxrandr2:armhf (2:1.5.2-2) ...
Setting up libobt2v5 (3.6.1-10) ...
Setting up node-lockfile (1.0.4+~1.0.2-1) ...
Setting up pkg-config:armhf (1.8.1-1) ...
Setting up libodbc1:armhf (2.3.11-2+deb12u1) ...
Setting up node-spdx-expression-parse (3.0.1+~3.0.1-1) ...
Setting up ucf (3.0043+nmu1) ...
Setting up libxt6:armhf (1:1.2.1-1.1) ...
Setting up libqt5core5a:armhf (5.15.8+dfsg-11+rpi1) ...
Setting up libjs-sphinxdoc (5.3.0-4) ...
Setting up llvm-11-linker-tools (1:11.1.0-6+rpi2) ...
Setting up libnetsnmptrapd40:armhf (5.9.3+dfsg-2) ...
Setting up libsndio7.0:armhf (1.9.0-0.3) ...
Setting up dh-strip-nondeterminism (1.13.1-1) ...
Setting up node-is-typedarray (1.0.0-4) ...
Setting up libllvm14:armhf (1:14.0.6-12+rpi1) ...
Setting up libobjc-12-dev:armhf (12.2.0-14+rpi1) ...
Setting up libgvpr2:armhf (2.42.2-7+b2) ...
Setting up libobjc-10-dev:armhf (10.4.0-7+rpi1) ...
Setting up libdrm2:armhf (2.4.114-1+rpi1) ...
Setting up dwz (0.15-1) ...
Setting up whiptail (0.52.23-1+b1) ...
Setting up liblightdm-gobject-1-0:armhf (1.26.0-8) ...
Setting up libmad0:armhf (0.15.1b-10.1) ...
Setting up libflite1:armhf (2.2-5) ...
Setting up libva-drm2:armhf (2.17.0-1) ...
Setting up xauth (1:1.1.2-1) ...
Setting up node-inflight (1.0.6-2) ...
Setting up python3-dnspython (2.3.0-1) ...
Setting up libvdpau1:armhf (1.5-2) ...
Setting up dbus-x11 (1.14.8-2~deb12u1) ...
Setting up libqt5dbus5:armhf (5.15.8+dfsg-11+rpi1) ...
Setting up libsord-0-0:armhf (0.16.14+git221008-1) ...
Setting up libccolamd2:armhf (1:5.12.0+dfsg-2) ...
Setting up libwayland-cursor0:armhf (1.21.0-1) ...
Setting up cpp (4:12.2.0-3+rpi1) ...
Setting up xml-core (0.18+nmu1) ...
Setting up libsratom-0-0:armhf (0.6.14-1) ...
Setting up libllvm15:armhf (1:15.0.6-4+rpi1+b1) ...
Setting up libnl-genl-3-200:armhf (3.7.0-0.2) ...
Setting up libgmp3-dev:armhf (2:6.2.1+dfsg1-1.1) ...
Setting up libxslt1.1:armhf (1.1.35-1) ...
Setting up libclang-common-11-dev (1:11.1.0-6+rpi2) ...
Setting up hunspell-en-us (1:2020.12.07-2) ...
Setting up libpam-systemd:armhf (252.12-1~deb12u1+rpi1) ...
Setting up libdecor-0-0:armhf (0.1.1-2) ...
Setting up libcurl4:armhf (7.88.1-10+rpi1) ...
Setting up libpolkit-agent-1-0:armhf (122-3) ...
Setting up libc6-dev:armhf (2.36-9+rpi1+deb12u1) ...
Setting up libharfbuzz0b:armhf (6.0.0+dfsg-3) ...
Setting up libmtp9:armhf (1.1.20-1) ...
Setting up libgdk-pixbuf-2.0-0:armhf (2.42.10+dfsg-1+b1) ...
Setting up libopenmpt-modplug1:armhf (0.8.9.0-openmpt1-2) ...
Setting up curl (7.88.1-10+rpi1) ...
Setting up libfontconfig1:armhf (2.14.1-4) ...
Setting up libjack-dev:armhf (1:0.126.0-2) ...
Setting up libsndfile1:armhf (1.2.0-1) ...
Setting up libc-client2007e (8:2007f~dfsg-7+b1) ...
Setting up libatkmm-1.6-1v5:armhf (2.28.3-1) ...
Setting up keyboard-configuration (1.221) ...
Setting up xfconf (4.18.0-2) ...
Setting up odbcinst1debian2:armhf (2.3.11-2+deb12u1) ...
Setting up iw (5.19-1) ...
Setting up initramfs-tools-core (0.142) ...
Installing new version of config file /etc/initramfs-tools/initramfs.conf ...
Setting up libbluray2:armhf (1:1.3.4-1) ...
Setting up node-encoding (0.1.13-2) ...
Setting up llvm-14-linker-tools (1:14.0.6-12+rpi1) ...
Setting up libva-x11-2:armhf (2.17.0-1) ...
Setting up binutils-arm-linux-gnueabihf (2.40-2+rpi2) ...
Setting up liblilv-0-0:armhf (0.24.14-1) ...
Setting up libxfont2:armhf (1:2.0.6-1) ...
Setting up libicu-dev:armhf (72.1-3) ...
Setting up unixodbc-dev:armhf (2.3.11-2+deb12u1) ...
Setting up libavahi-client3:armhf (0.8-10) ...
Setting up libcholmod3:armhf (1:5.12.0+dfsg-2) ...
Setting up libgstreamer1.0-0:armhf (1.22.0-2) ...
Setcap worked! gst-ptp-helper is not suid!
Setting up node-slice-ansi (5.0.0+~cs9.0.0-5) ...
Setting up node-https-proxy-agent (5.0.1+~cs8.0.0-3) ...
Setting up rsync (3.2.7-1) ...
Setting up firebird-dev (3.0.11.33637.ds4-2+b1) ...
Setting up libxres1:armhf (2:1.2.1-1) ...
Setting up node-string-width (4.2.3+~cs13.2.3-1) ...
Setting up apache2-utils (2.4.57-2) ...
Setting up libdrm-amdgpu1:armhf (2.4.114-1+rpi1) ...
Setting up libbz2-dev:armhf (1.0.8-5+b2) ...
Setting up lightdm (1.26.0-8) ...
Setting up node-fs-write-stream-atomic (1.0.10-6) ...
Setting up libssh-gcrypt-4:armhf (0.10.5-2) ...
Setting up libmhash-dev (0.9.9.9-9+b2) ...
Setting up libtirpc3:armhf (1.3.3+ds-1) ...
Setting up libpaper1:armhf (1.1.29) ...
Setting up gtk-update-icon-cache (3.24.37-2) ...
Setting up libxfconf-0-3:armhf (4.18.0-2) ...
Setting up fontconfig (2.14.1-4) ...
Regenerating fonts cache... done.
Setting up proftpd-core (1.3.8+dfsg-4+deb12u1) ...
Installing new version of config file /etc/proftpd/dhparams.pem ...
configuration error - unknown item 'NONEXISTENT' (notify administrator)
configuration error - unknown item 'PREVENT_NO_AUTH' (notify administrator)
usermod: no changes
Server configured as standalone.
proftpd.service is a disabled or a static unit not running, not starting it.
Setting up libxft2:armhf (2.3.6-1) ...
Setting up libncurses-dev:armhf (6.4-4) ...
Setting up libxmu6:armhf (2:1.1.3-3) ...
Setting up libdrm-nouveau2:armhf (2.4.114-1+rpi1) ...
Setting up libstdc++-10-dev:armhf (10.4.0-7+rpi1) ...
Setting up libharfbuzz-icu0:armhf (6.0.0+dfsg-3) ...
Setting up libzmq5:armhf (4.3.4-6) ...
Setting up initramfs-tools (0.142) ...
update-initramfs: deferring update (trigger activated)
Setting up libpcre2-dev:armhf (10.42-1) ...
Setting up libxi6:armhf (2:1.8-1) ...
Setting up libattr1-dev:armhf (1:2.5.1-4) ...
Setting up libxmltok1-dev (1.2-4+b2) ...
Setting up libstdc++-12-dev:armhf (12.2.0-14+rpi1) ...
Setting up node-columnify (1.6.0+~1.5.1-1) ...
Setting up libgbm1:armhf (22.3.6-1+deb12u1+rpi1) ...
Setting up libpam0g-dev:armhf (1.5.2-6) ...
Setting up libpulse0:armhf (16.1+dfsg1-2+b2) ...
Setting up libenchant-2-2:armhf (2.3.3-2) ...
Setting up plymouth (22.02.122-3) ...
Installing new version of config file /etc/plymouth/plymouthd.conf ...
update-initramfs: deferring update (trigger activated)
Setting up node-copy-concurrently (1.0.5-9) ...
Setting up libpcre3-dev:armhf (2:8.39-15) ...
Setting up libdrm-radeon1:armhf (2.4.114-1+rpi1) ...
Setting up htop (3.2.2-2) ...
Setting up iproute2 (6.1.0-3) ...
Installing new version of config file /etc/iproute2/rt_protos ...
Setting up openssh-client (1:9.2p1-2) ...
configuration error - unknown item 'NONEXISTENT' (notify administrator)
configuration error - unknown item 'PREVENT_NO_AUTH' (notify administrator)
Setting up libxtst6:armhf (2:1.2.3-1.1) ...
Setting up libpython3.11-stdlib:armhf (3.11.2-6) ...
Setting up libxcursor1:armhf (1:1.2.1-1) ...
Setting up libpango-1.0-0:armhf (1.50.12+ds-1) ...
Setting up libgl1-mesa-dri:armhf (22.3.6-1+deb12u1+rpi1) ...
Setting up upower (0.99.20-2) ...
Installing new version of config file /etc/UPower/UPower.conf ...
upower.service is a disabled or a static unit not running, not starting it.
Setting up libpq5:armhf (15.3-0+deb12u1) ...
Setting up libxxf86dga1:armhf (2:1.1.5-1) ...
Setting up node-move-concurrently (1.0.1-5) ...
Setting up isc-dhcp-client (4.4.3-P1-2) ...
Setting up libobjc-11-dev:armhf (11.3.0-12+rpi1) ...
Setting up libclang1-14 (1:14.0.6-12+rpi1) ...
Setting up libheif-dev:armhf (1.15.1-1) ...
Setting up libpulsedsp:armhf (16.1+dfsg1-2+b2) ...
Setting up libgstreamer-plugins-base1.0-0:armhf (1.22.0-3+deb12u1) ...
Setting up libsybdb5:armhf (1.3.17+ds-2) ...
Setting up tigervnc-scraping-server (1.12.0+dfsg-8) ...
Setting up libpq-dev (15.3-0+deb12u1) ...
Setting up libcurl3-gnutls:armhf (7.88.1-10+rpi1) ...
Setting up dconf-service (0.40.0-4) ...
Setting up binutils (2.40-2+rpi2) ...
Setting up libxaw7:armhf (2:1.0.14-1) ...
Setting up libatspi2.0-0:armhf (2.46.0-5) ...
Setting up libreadline-dev:armhf (8.2-1.3) ...
Setting up libcurl4-gnutls-dev:armhf (7.88.1-10+rpi1) ...
Setting up apache2-bin (2.4.57-2) ...
Setting up x11-xserver-utils (7.7+9) ...
Setting up nmap (7.93+dfsg1-1) ...
Setting up libcairo2:armhf (1.16.0-7) ...
Setting up mpg123 (1.31.2-1) ...
Setting up libqt5network5:armhf (5.15.8+dfsg-11+rpi1) ...
Setting up lxrandr (0.3.2-1.1) ...
Setting up dpkg-dev (1.21.22+rpi1) ...
Setting up portaudio19-dev:armhf (19.6.0-1.2) ...
Setting up libclang-cpp11 (1:11.1.0-6+rpi2) ...
Setting up libcairomm-1.0-1v5:armhf (1.14.4-2) ...
Setting up wpasupplicant (2:2.10-12) ...
Installing new version of config file /etc/dbus-1/system.d/wpa_supplicant.conf ...
wpa_supplicant.service is a disabled or a static unit not running, not starting it.
Setting up libatk-bridge2.0-0:armhf (2.46.0-5) ...
Setting up libgssrpc4:armhf (1.20.1-2) ...
Setting up dbus-user-session (1.14.8-2~deb12u1) ...
Setting up libavutil57:armhf (7:5.1.3-1) ...
Setting up node-spdx-correct (3.1.1-2) ...
Setting up libxml2-dev:armhf (2.9.14+dfsg-1.3~deb12u1) ...
Setting up libegl-mesa0:armhf (22.3.6-1+deb12u1+rpi1) ...
Setting up libsasl2-dev (2.1.28+dfsg-10) ...
Setting up libtirpc-dev:armhf (1.3.3+ds-1) ...
Setting up libumfpack5:armhf (1:5.12.0+dfsg-2) ...
Setting up libexpat1-dev:armhf (2.5.0-1) ...
Setting up libass9:armhf (1:0.17.1-1) ...
Setting up libgcrypt20-dev (1.10.1-3) ...
Setting up libwmf-0.2-7:armhf (0.2.12-5.1) ...
Setting up libsqlite3-dev:armhf (3.40.1-2) ...
Setting up libct4:armhf (1.3.17+ds-2) ...
Setting up node-glob (8.0.3+~cs8.4.15-1) ...
Setting up adwaita-icon-theme (43-1) ...
Setting up libjpeg62-turbo-dev:armhf (1:2.1.5-2) ...
Setting up gcc-12 (12.2.0-14+rpi1) ...
Setting up libswresample4:armhf (7:5.1.3-1) ...
Setting up libxt-dev:armhf (1:1.2.1-1.1) ...
Setting up uuid-dev:armhf (2.38.1-5) ...
Setting up libnotify4:armhf (0.8.1-1) ...
Setting up ifupdown (0.8.41) ...
Installing new version of config file /etc/init.d/networking ...
Setting up pulseaudio-utils (16.1+dfsg1-2+b2) ...
Setting up libsdl1.2debian:armhf (1.2.15+dfsg2-8) ...
Setting up libedit-dev:armhf (3.1-20221030-2) ...
Setting up libgd3:armhf (2.3.3-9) ...
Setting up comerr-dev:armhf (2.1-1.47.0-2) ...
Setting up libclang-common-14-dev (1:14.0.6-12+rpi1) ...
Setting up libsctp-dev:armhf (1.0.19+dfsg-2) ...
Setting up libclang-cpp14 (1:14.0.6-12+rpi1) ...
Setting up git (1:2.39.2-1.1) ...
Setting up libpoppler126:armhf (22.12.0-2) ...
Setting up gcc-10 (10.4.0-7+rpi1) ...
Setting up node-typedarray-to-buffer (4.0.0-2) ...
Setting up lsof (4.95.0-1+rpi1) ...
Setting up libstdc++-11-dev:armhf (11.3.0-12+rpi1) ...
Setting up libcups2:armhf (2.4.2-3+deb12u1) ...
Setting up zlib1g-dev:armhf (1:1.2.13.dfsg-1) ...
Setting up node-minipass (3.3.6+~cs9.4.19-1) ...
Setting up libtheora0:armhf (1.1.1+dfsg.1-16.1) ...
Setting up libncurses5-dev:armhf (6.4-4) ...
Setting up libegl1:armhf (1.6.0-1) ...
Setting up cmake (3.25.1-1) ...
Setting up console-setup-linux (1.221) ...
Installing new version of config file /etc/console-setup/compose.ISO-8859-1.inc ...
Installing new version of config file /etc/console-setup/compose.ISO-8859-13.inc ...
Installing new version of config file /etc/console-setup/compose.ISO-8859-14.inc ...
Installing new version of config file /etc/console-setup/compose.ISO-8859-15.inc ...
Installing new version of config file /etc/console-setup/compose.ISO-8859-2.inc ...
Installing new version of config file /etc/console-setup/compose.ISO-8859-3.inc ...
Installing new version of config file /etc/console-setup/compose.ISO-8859-4.inc ...
Installing new version of config file /etc/console-setup/compose.ISO-8859-7.inc ...
Installing new version of config file /etc/console-setup/compose.ISO-8859-9.inc ...
Installing new version of config file /etc/console-setup/compose.KOI8-R.inc ...
Installing new version of config file /etc/console-setup/compose.KOI8-U.inc ...
Installing new version of config file /etc/console-setup/compose.VISCII.inc ...
Installing new version of config file /etc/init.d/console-setup.sh ...
Installing new version of config file /etc/init.d/keyboard-setup.sh ...
Setting up libcairo-gobject2:armhf (1.16.0-7) ...
Setting up node-wide-align (1.1.3-4) ...
Setting up libpangoft2-1.0-0:armhf (1.50.12+ds-1) ...
Setting up libsdl2-2.0-0:armhf (2.26.5+dfsg-1) ...
Setting up libswscale6:armhf (7:5.1.3-1) ...
Setting up clang-11 (1:11.1.0-6+rpi2) ...
Setting up libpci-dev:armhf (1:3.9.0-4) ...
Setting up libpangocairo-1.0-0:armhf (1.50.12+ds-1) ...
Setting up libkadm5clnt-mit12:armhf (1.20.1-2) ...
Setting up libacl1-dev:armhf (2.3.1-3) ...
Setting up g++-12 (12.2.0-14+rpi1) ...
Setting up node-validate-npm-package-license (3.0.4-2) ...
Setting up vorbis-tools (1.4.2-1+b1) ...
Setting up libblkid-dev:armhf (2.38.1-5) ...
Setting up node-ssri (9.0.1-2) ...
Setting up openssh-sftp-server (1:9.2p1-2) ...
Setting up libzip-dev:armhf (1.7.3-1+b1) ...
Setting up console-setup (1.221) ...
Setting up libsdl-image1.2:armhf (1.2.12-13+b2) ...
Setting up libglx-mesa0:armhf (22.3.6-1+deb12u1+rpi1) ...
Setting up libkdb5-10:armhf (1.20.1-2) ...
Setting up clang-14 (1:14.0.6-12+rpi1) ...
Setting up libpoppler-glib8:armhf (22.12.0-2) ...
Setting up g++-10 (10.4.0-7+rpi1) ...
Setting up libxslt1-dev:armhf (1.1.35-1) ...
Setting up libpython3.11:armhf (3.11.2-6) ...
Setting up libpangoxft-1.0-0:armhf (1.50.12+ds-1) ...
Setting up libglx0:armhf (1.6.0-1) ...
Setting up openssh-server (1:9.2p1-2) ...
Installing new version of config file /etc/init.d/ssh ...
Installing new version of config file /etc/ssh/moduli ...
Replacing config file /etc/ssh/sshd_config with new version
rescue-ssh.target is a disabled or a static unit not running, not starting it.
ssh.socket is a disabled or a static unit not running, not starting it.
Setting up dconf-gsettings-backend:armhf (0.40.0-4) ...
Setting up node-write-file-atomic (4.0.2+~4.0.0-1) ...
Setting up freetds-dev (1.3.17+ds-2) ...
Setting up libtool (2.4.7-5) ...
Setting up libsphinxbase3:armhf (0.8+5prealpha+1-16) ...
Setting up libwmf0.2-7:armhf (0.2.12-5.1) ...
Setting up x11-xkb-utils (7.7+7) ...
Setting up apache2 (2.4.57-2) ...
Installing new version of config file /etc/apache2/apache2.conf ...
Installing new version of config file /etc/apache2/conf-available/charset.conf ...
Installing new version of config file /etc/apache2/conf-available/localized-error-pages.conf ...
Installing new version of config file /etc/apache2/conf-available/other-vhosts-access-log.conf ...
Installing new version of config file /etc/apache2/conf-available/security.conf ...
Installing new version of config file /etc/apache2/conf-available/serve-cgi-bin.conf ...
Installing new version of config file /etc/apache2/mods-available/actions.conf ...
Installing new version of config file /etc/apache2/mods-available/alias.conf ...
Installing new version of config file /etc/apache2/mods-available/autoindex.conf ...
Installing new version of config file /etc/apache2/mods-available/cache_disk.conf ...
Installing new version of config file /etc/apache2/mods-available/cgid.conf ...
Installing new version of config file /etc/apache2/mods-available/dav_fs.conf ...
Installing new version of config file /etc/apache2/mods-available/deflate.conf ...
Installing new version of config file /etc/apache2/mods-available/dir.conf ...
Installing new version of config file /etc/apache2/mods-available/http2.conf ...
Installing new version of config file /etc/apache2/mods-available/info.conf ...
Installing new version of config file /etc/apache2/mods-available/ldap.conf ...
Installing new version of config file /etc/apache2/mods-available/mime.conf ...
Installing new version of config file /etc/apache2/mods-available/mime_magic.conf ...
Installing new version of config file /etc/apache2/mods-available/mpm_event.conf ...
Installing new version of config file /etc/apache2/mods-available/mpm_prefork.conf ...
Installing new version of config file /etc/apache2/mods-available/mpm_worker.conf ...
Installing new version of config file /etc/apache2/mods-available/negotiation.conf ...
Installing new version of config file /etc/apache2/mods-available/proxy.conf ...
Installing new version of config file /etc/apache2/mods-available/proxy_balancer.conf ...
Installing new version of config file /etc/apache2/mods-available/proxy_ftp.conf ...
Installing new version of config file /etc/apache2/mods-available/proxy_html.conf ...
Installing new version of config file /etc/apache2/mods-available/reqtimeout.conf ...
Installing new version of config file /etc/apache2/mods-available/setenvif.conf ...
Installing new version of config file /etc/apache2/mods-available/ssl.conf ...
Installing new version of config file /etc/apache2/mods-available/status.conf ...
Installing new version of config file /etc/apache2/mods-available/userdir.conf ...
Installing new version of config file /etc/apache2/ports.conf ...
Installing new version of config file /etc/apache2/sites-available/000-default.conf ...
Installing new version of config file /etc/apache2/sites-available/default-ssl.conf ...
Installing new version of config file /etc/init.d/apache2 ...
Installing new version of config file /etc/logrotate.d/apache2 ...
apache2.service is a disabled or a static unit not running, not starting it.
apache-htcacheclean.service is a disabled or a static unit not running, not starting it.
Setting up libpng-dev:armhf (1.6.39-2) ...
Setting up libqt5gui5:armhf (5.15.8+dfsg-11+rpi1) ...
Setting up libjpeg-dev:armhf (1:2.1.5-2) ...
Setting up debhelper (13.11.4) ...
Setting up libqt5widgets5:armhf (5.15.8+dfsg-11+rpi1) ...
Setting up gcc (4:12.2.0-3+rpi1) ...
Setting up libfreetype-dev:armhf (2.12.1+dfsg-5) ...
Setting up librsvg2-2:armhf (2.54.7+dfsg-1~deb12u1) ...
Setting up libpocketsphinx3:armhf (0.8+5prealpha+1-15) ...
Setting up node-gauge (4.0.4-1) ...
Setting up gstreamer1.0-plugins-base:armhf (1.22.0-3+deb12u1) ...
Setting up libgl1:armhf (1.6.0-1) ...
Setting up node-normalize-package-data (4.0.1+~2.4.1-1) ...
Setting up libtiff-dev:armhf (4.5.0-6) ...
Setting up libapr1-dev (1.7.2-3) ...
Setting up clang (1:14.0-55.6) ...
Setting up libshout3:armhf (2.4.6-1+b1) ...
Setting up libgvc6 (2.42.2-7+b2) ...
Setting up librsvg2-common:armhf (2.54.7+dfsg-1~deb12u1) ...
Setting up libpangomm-1.4-1v5:armhf (2.46.3-1) ...
Setting up libmariadb-dev (1:10.11.3-1+rpi1) ...
Setting up g++ (4:12.2.0-3+rpi1) ...
Setting up node-tar (6.1.13+~cs7.0.5-1) ...
Setting up libsnmp-dev (5.9.3+dfsg-2) ...
Installing new version of config file /etc/snmp/mib2c.table_data.conf ...
Setting up libkadm5srv-mit12:armhf (1.20.1-2) ...
Setting up libaprutil1-dev (1.6.3-1) ...
Setting up xserver-common (2:21.1.7-3) ...
Setting up libobrender32v5 (3.6.1-10) ...
Setting up libavcodec59:armhf (7:5.1.3-1) ...
Setting up libmount-dev:armhf (2.38.1-5) ...
Setting up node-npmlog (7.0.1+~4.1.4-1) ...
Setting up libgtk-3-common (3.24.37-2) ...
Setting up apache2-dev (2.4.57-2) ...
Setting up krb5-multidev:armhf (1.20.1-2) ...
Setting up libchromaprint1:armhf (1.5.1-2+b2) ...
Setting up gsettings-desktop-schemas (43.0-1) ...
Setting up graphviz (2.42.2-7+b2) ...
Setting up libmariadb-dev-compat (1:10.11.3-1+rpi1) ...
Setting up libqt5x11extras5:armhf (5.15.8-2) ...
Setting up libasound2-plugins:armhf (1.2.7.1-1) ...
Setting up libc-client2007e-dev (8:2007f~dfsg-7+b1) ...
Setting up libavformat59:armhf (7:5.1.3-1) ...
Setting up node-read-package-json (5.0.2+~2.0.0-1) ...
Setting up libfontconfig-dev:armhf (2.14.1-4) ...
Setting up libgtk-3-0:armhf (3.24.37-2) ...
Setting up libqt5svg5:armhf (5.15.8-3) ...
Setting up xserver-xorg-core (2:21.1.7-3) ...
Setting up libvte-2.91-0:armhf (0.70.6-1~deb12u1) ...
Setting up libayatana-ido3-0.4-0:armhf (0.9.3-1) ...
Setting up pulseaudio (16.1+dfsg1-2+b2) ...
Installing new version of config file /etc/pulse/daemon.conf ...
Installing new version of config file /etc/pulse/default.pa ...
Installing new version of config file /etc/pulse/system.pa ...
Installing new version of config file /etc/xdg/autostart/pulseaudio.desktop ...
Setting up libwxgtk3.0-gtk3-0v5:armhf (3.0.5.1+dfsg-5+b1) ...
Setting up tigervnc-standalone-server (1.12.0+dfsg-8) ...
Setting up libfreetype6-dev:armhf (2.12.1+dfsg-5) ...
Setting up libkrb5-dev:armhf (1.20.1-2) ...
Setting up libgtksourceview-4-0:armhf (4.8.4-4) ...
Setting up libgstreamer-gl1.0-0:armhf (1.22.0-3+deb12u1) ...
Setting up xserver-xorg-video-fbdev (1:0.5.0-2) ...
Setting up libglib2.0-dev:armhf (2.74.6-1) ...
Setting up openbox (3.6.1-10) ...
Setting up libgd-dev:armhf (2.3.3-9) ...
Setting up node-npm-bundled (2.0.1-2) ...
Setting up xarchiver (1:0.5.4.20-2) ...
Setting up lxterminal (0.4.0-2) ...
Setting up libpeas-1.0-0:armhf (1.34.0-1+b1) ...
Setting up galculator (2.1.4-1.2) ...
Setting up glib-networking:armhf (2.74.0-4) ...
Setting up libayatana-indicator3-7:armhf (0.9.3-1) ...
Setting up libgegl-0.4-0:armhf (1:0.4.42-2) ...
Setting up libgspell-1-2:armhf (1.12.0-1+b1) ...
Setting up default-libmysqlclient-dev:armhf (1.1.0) ...
Setting up libgcr-ui-3-1:armhf (3.41.1-1) ...
Setting up libsoup2.4-1:armhf (2.74.3-1) ...
Setting up libgtkmm-3.0-1v5:armhf (3.24.7-1) ...
Setting up gstreamer1.0-plugins-good:armhf (1.22.0-5+deb12u1) ...
Setting up libenchant-2-dev:armhf (2.3.3-2) ...
Setting up libsoup-3.0-0:armhf (3.2.2-2) ...
Setting up libmousepad0:armhf (0.5.10-2) ...
Setting up libgssdp-1.6-0:armhf (1.6.2-2) ...
Setting up mousepad (0.5.10-2) ...
Setting up libsoup-gnome2.4-1:armhf (2.74.3-1) ...
Setting up libgupnp-1.6-0:armhf (1.6.3-1) ...
Setting up libgupnp-igd-1.0-4:armhf (1.2.0-3) ...
Setting up libnice10:armhf (0.1.21-1) ...
Setting up libgstreamer-plugins-bad1.0-0:armhf (1.22.0-4+deb12u1) ...
Setting up libwebkit2gtk-4.0-37:armhf (2.40.3-2~deb12u2+rpi1) ...
Setting up libwebkit2gtk-4.1-0:armhf (2.40.3-2~deb12u2+rpi1) ...
Setting up zenity (3.44.0-1) ...
Setting up libruby3.1:armhf (3.1.2-7) ...
Setting up libruby:armhf (1:3.1) ...
Setting up ruby3.1 (3.1.2-7) ...
Setting up ruby-sdbm:armhf (1.0.0-5+rpi1) ...
Setting up ruby (1:3.1) ...
Setting up rake (13.0.6-3) ...
Setting up ruby-rubygems (3.3.15-2) ...
Processing triggers for debianutils (5.7-0.4) ...
Processing triggers for hicolor-icon-theme (0.17-2) ...
Processing triggers for libc-bin (2.36-9+rpi1+deb12u1) ...
Processing triggers for sgml-base (1.31) ...
Setting up polkitd (122-3) ...
Creating group 'polkitd' with GID 995.
Creating user 'polkitd' (polkit) with UID 995 and GID 995.
Setting up pkexec (122-3) ...
Setting up policykit-1 (122-3) ...
Removing obsolete conffile /etc/pam.d/polkit-1 ...
Removing obsolete conffile /etc/polkit-1/localauthority.conf.d/50-localauthority.conf ...
Removing obsolete conffile /etc/polkit-1/localauthority.conf.d/51-debian-sudo.conf ...
Setting up gparted (1.3.1-1) ...
Processing triggers for dictionaries-common (1.29.5) ...
Processing triggers for ca-certificates (20230311) ...
Updating certificates in /etc/ssl/certs...
0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...
done.
Processing triggers for initramfs-tools (0.142) ...
Processing triggers for dbus (1.14.8-2~deb12u1) ...
Processing triggers for libgdk-pixbuf-2.0-0:armhf (2.42.10+dfsg-1+b1) ...

依存関係が無くなった不要パッケージの削除

$ sudo apt autoremove

Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages will be REMOVED:
  distro-info-data g++-10 golang-1.15-go golang-1.15-src libatk1.0-data libavresample4 libbpf0 libcbor0
  libdecor-0-0 libdns-export1110 libexporter-tiny-perl libfftw3-double3 libgtksourceview-3.0-1
  libgtksourceview-3.0-common libice-dev libimobiledevice6 libisc-export1105 libjsoncpp24
  liblist-moreutils-perl liblist-moreutils-xs-perl libltdl-dev libobjc-10-dev libodbc1 libpcre16-3
  libpcre2-posix2 libpcre3-dev libpcre32-3 libpcrecpp0v5 libperl5.32 libplist3 libpoppler102 libprocps8
  libpython3.8 libpython3.8-minimal libpython3.8-stdlib librest-0.7-0 libsdl2-2.0-0 libsigsegv2 libsm-dev
  libsoup-gnome2.4-1 libstdc++-10-dev libtiffxx5 libusbmuxd6 libxfce4util-common libxfce4util7 libxfconf-0-3
  libxt-dev odbcinst odbcinst1debian2 perl-modules-5.32 ruby2.7 xfconf
0 upgraded, 0 newly installed, 52 to remove and 77 not upgraded.
After this operation, 452 MB disk space will be freed.
Do you want to continue? [Y/n] y
(Reading database ... 131543 files and directories currently installed.)
Removing distro-info-data (0.58) ...
Removing g++-10 (10.4.0-7+rpi1) ...
Removing golang-1.15-go (1.15.15-5+rpi1) ...
Removing golang-1.15-src (1.15.15-5+rpi1) ...
Removing libatk1.0-data (2.38.0-1) ...
Removing libavresample4:armhf (8:4.3.6-0+deb11u1+rpt5) ...
Removing libbpf0:armhf (1:0.3-2+rpi1) ...
Removing libcbor0:armhf (0.5.0+dfsg-2) ...
Removing libsdl2-2.0-0:armhf (2.26.5+dfsg-1) ...
Removing libdecor-0-0:armhf (0.1.1-2) ...
Removing libdns-export1110 (1:9.11.19+dfsg-2.1+b1) ...
Removing liblist-moreutils-perl (0.430-2) ...
Removing libexporter-tiny-perl (1.006000-1) ...
Removing libfftw3-double3:armhf (3.3.10-1) ...
Removing libgtksourceview-3.0-1:armhf (3.24.11-2) ...
Removing libgtksourceview-3.0-common (3.24.11-2) ...
Removing libxt-dev:armhf (1:1.2.1-1.1) ...
Removing libsm-dev:armhf (2:1.2.3-1) ...
Removing libice-dev:armhf (2:1.0.10-1) ...
Removing libimobiledevice6:armhf (1.3.0-6+b3) ...
Removing libisc-export1105:armhf (1:9.11.19+dfsg-2.1+b1) ...
Removing libjsoncpp24:armhf (1.9.4-4) ...
Removing liblist-moreutils-xs-perl (0.430-3+b1) ...
Removing libltdl-dev:armhf (2.4.7-5) ...
Removing libobjc-10-dev:armhf (10.4.0-7+rpi1) ...
Removing libodbc1:armhf (2.3.11-2+deb12u1) ...
Removing libpcre3-dev:armhf (2:8.39-15) ...
Removing libpcre16-3:armhf (2:8.39-15) ...
Removing libpcre2-posix2:armhf (10.36-2+deb11u1) ...
Removing libpcre32-3:armhf (2:8.39-15) ...
Removing libpcrecpp0v5:armhf (2:8.39-15) ...
Removing libperl5.32:armhf (5.32.1-4+deb11u2) ...
Removing libusbmuxd6:armhf (2.0.2-3) ...
Removing libplist3:armhf (2.2.0-6+b2) ...
Removing libpoppler102:armhf (20.09.0-3.1+deb11u1) ...
Removing libprocps8:armhf (2:3.3.17-5) ...
Removing libpython3.8:armhf (3.8.7-1) ...
Removing libpython3.8-stdlib:armhf (3.8.7-1) ...
Removing libpython3.8-minimal:armhf (3.8.7-1) ...
Removing librest-0.7-0:armhf (0.8.1-1.1) ...
Removing libsigsegv2:armhf (2.14-1) ...
Removing libsoup-gnome2.4-1:armhf (2.74.3-1) ...
Removing libstdc++-10-dev:armhf (10.4.0-7+rpi1) ...
Removing libtiffxx5:armhf (4.2.0-1+deb11u4) ...
Removing libxfconf-0-3:armhf (4.18.0-2) ...
Removing xfconf (4.18.0-2) ...
Removing libxfce4util7:armhf (4.18.1-2) ...
Removing libxfce4util-common (4.18.1-2) ...
Removing odbcinst1debian2:armhf (2.3.11-2+deb12u1) ...
Removing odbcinst (2.3.11-2+deb12u1) ...
Removing perl-modules-5.32 (5.32.1-4+deb11u2) ...
Removing ruby2.7 (2.7.4-1+deb11u1) ...
Processing triggers for man-db (2.11.2-2) ...
Processing triggers for libc-bin (2.36-9+rpi1+deb12u1) ...

Bullseye を Bookworm へアップグレード

$ sudo bash -c "$(curl -sSf 'https://raw.githubusercontent.com/MichaIng/DietPi/master/.meta/dietpi-bookworm-upgrade')"

RPi Zero W (armv6l) | IP: 192.168.1.201
┌────────────────────────────────────────┤ dietpi-bookworm-upgrade ├─────────────────────────────────────────┐ │ │ │ Would you like to create (or update) a "DietPi-Backup" of the system, before proceeding? │ │ │ │ "DietPi-Backup" creates a system restore point, which can be recovered if unexpected issues occur. │ │ │ │ For more information on "DietPi-Backup", please use the link below: │ │ - https://dietpi.com/docs/dietpi_tools/#dietpi-backup-backuprestore │ │ │ │ <Ok> <Cancel> │ │ │ └────────────────────────────────────────────────────────────────────────────────────────────────────────────┘

[ SUB1 ] DietPi-Backup > Backup
[  OK  ] DietPi-Backup | mkdir -p /mnt/dietpi-backup
[  OK  ] DietPi-Backup | rmdir /mnt/dietpi-backup
[  OK  ] DietPi-Backup | mkdir -p /mnt/dietpi-backup/data
[ SUB2 ] DietPi-Services > stop 
[  OK  ] DietPi-Services | stop : cron
[ INFO ] DietPi-Services | skip : apache2 (masked)
[ INFO ] DietPi-Services | skip : smbd (masked)
[ INFO ] DietPi-Services | skip : nmbd (masked)
[ INFO ] DietPi-Services | skip : proftpd (masked)
[ INFO ] DietPi-Backup | Checking for required APT packages: rsync
[ INFO ] DietPi-Backup | Backup to /mnt/dietpi-backup in progress, please wait...
sending incremental file list
  1,470,785,602  62%    2.41MB/s    0:05:54 (xfr#60799, ir-chk=1107/74967)

RPi Zero W (armv6l) | IP: 192.168.1.201
┌─────────────────────────────────────────────┤ DietPi-Backup ├──────────────────────────────────────────────┐ │ │ │ Backup completed: │ │ - /mnt/dietpi-backup │ │ │ │ <Ok> │ │ │ └────────────────────────────────────────────────────────────────────────────────────────────────────────────┘

RPi Zero W (armv6l) | IP: 192.168.1.201 | Use up/down buttons to scroll text─────────────────────────────────┐
│ │ │ Backup log from 2023-09-09_14:22:56 │ │ 2023/09/09 14:22:56 [27561] building file list │ 2023/09/09 14:22:56 [27561] .d..t...... ./ │ 2023/09/09 14:22:58 [27561] .d..t...... home/dietpi/ │ 2023/09/09 14:23:54 [27561] .d..t...... │ home/dietpi/.rustup/toolchains/stable-arm-unknown-linux-gnueabihf/bin/ │ 2023/09/09 14:23:59 [27561] >f+++++++++ │ home/dietpi/.rustup/toolchains/stable-arm-unknown-linux-gnueabihf/bin/cargo │ 2023/09/09 14:23:59 [27561] >f+++++++++ │ home/dietpi/.rustup/toolchains/stable-arm-unknown-linux-gnueabihf/bin/cargo-clippy │ 2023/09/09 14:24:01 [27561] >f+++++++++ │ home/dietpi/.rustup/toolchains/stable-arm-unknown-linux-gnueabihf/bin/cargo-fmt │ 2023/09/09 14:24:04 [27561] >f+++++++++ │ home/dietpi/.rustup/toolchains/stable-arm-unknown-linux-gnueabihf/bin/clippy-driver │ 2023/09/09 14:24:04 [27561] >f+++++++++ │ home/dietpi/.rustup/toolchains/stable-arm-unknown-linux-gnueabihf/bin/rust-gdb │ 2023/09/09 14:24:04 [27561] >f+++++++++ │ home/dietpi/.rustup/toolchains/stable-arm-unknown-linux-gnueabihf/bin/rust-gdbgui │ 2023/09/09 14:24:04 [27561] >f+++++++++ │ home/dietpi/.rustup/toolchains/stable-arm-unknown-linux-gnueabihf/bin/rust-lldb │ 2023/09/09 14:24:04 [27561] >f+++++++++ │ home/dietpi/.rustup/toolchains/stable-arm-unknown-linux-gnueabihf/bin/rustc │ 2023/09/09 14:24:07 [27561] >f+++++++++ │ home/dietpi/.rustup/toolchains/stable-arm-unknown-linux-gnueabihf/bin/rustdoc │ 2023/09/09 14:24:08 [27561] >f+++++++++ │ home/dietpi/.rustup/toolchains/stable-arm-unknown-linux-gnueabihf/bin/rustfmt │ 2023/09/09 14:24:08 [27561] .d..t...... │ home/dietpi/.rustup/toolchains/stable-arm-unknown-linux-gnueabihf/etc/ │ 2023/09/09 14:24:08 [27561] >f+++++++++ │ │ <Ok> │ │ └────────────────────────────────────────────────────────────────────────────────────────────────────────────┘

[  OK  ] DietPi-Backup | touch /mnt/dietpi-backup/data
[ SUB2 ] DietPi-Services > start 
[ INFO ] DietPi-Services | skip : proftpd (masked)
[ INFO ] DietPi-Services | skip : nmbd (masked)
[ INFO ] DietPi-Services | skip : smbd (masked)
[ INFO ] DietPi-Services | skip : apache2 (masked)
[  OK  ] DietPi-Services | start : cron
[  OK  ] DietPi-Backup: Backup | Completed
[  OK  ] DietPi-Backup | Completed
[ INFO ] dietpi-bookworm-upgrade | Upgrading APT packages to latest versions provided by Debian Bullseye
[ SUB1 ] DietPi-Services > stop 
[  OK  ] DietPi-Services | stop : cron
[ INFO ] DietPi-Services | skip : apache2 (masked)
[ INFO ] DietPi-Services | skip : smbd (masked)
[ INFO ] DietPi-Services | skip : nmbd (masked)
[ INFO ] DietPi-Services | skip : proftpd (masked)
[ INFO ] dietpi-bookworm-upgrade | APT update, please wait...
Hit:1 http://raspbian.raspberrypi.org/raspbian bookworm InRelease
Hit:2 https://archive.raspberrypi.org/debian bullseye InRelease
Reading package lists...
W: Skipping acquire of configured file 'non-free-firmware/source/Sources' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'non-free-firmware/binary-armhf/Packages' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'non-free-firmware/Contents-armhf' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
[  OK  ] dietpi-bookworm-upgrade | APT update
[ INFO ] dietpi-bookworm-upgrade | APT dist-upgrade, please wait...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
The following packages were automatically installed and are no longer required:
  libcob5 libcob5-dev libglew2.1 libglu1-mesa libgs9-common libicu67
  libilmbase25 libjs-psl libldap-2.4-2 libmpdec3 libncurses5-dev libopenexr25
  libopengl0 libpython3.9 libpython3.9-dev libpython3.9-minimal
  libpython3.9-stdlib libsepol1 libtiff5 liburing1 libwmf0.2-7
  libwxbase3.0-0v5 libwxgtk3.0-gtk3-0v5 node-ansi node-ansistyles node-asap
  node-asn1 node-assert-plus node-asynckit node-aws-sign2 node-aws4
  node-bcrypt-pbkdf node-caseless node-combined-stream node-concat-map
  node-dashdash node-delayed-stream node-ecc-jsbn node-extend node-extsprintf
  node-forever-agent node-form-data node-getpass node-har-schema
  node-har-validator node-http-signature node-isstream node-jsbn
  node-json-stringify-safe node-jsonstream node-jsprim node-leven
  node-lockfile node-number-is-nan node-oauth-sign node-opener
  node-performance-now node-psl node-puka node-qs node-sshpk node-tunnel-agent
  node-tweetnacl node-verror python3.9 python3.9-dev python3.9-minimal
Use 'sudo apt autoremove' to remove them.
The following packages will be REMOVED:
  gnucobol libfilezilla11 libgs9 libnode72 libsemanage1 libsepol1-dev
  libwacom2 mesa-utils-extra python-pip-whl python3.9-venv
The following NEW packages will be installed:
  eslint handlebars libfilezilla-common libfilezilla34 libgs-common libgs10
  libgs10-common libidn12 libjs-async libjs-prettify libjs-regenerate
  libjs-source-map libjs-sprintf-js libjs-util libnode108 libpython3.11-dev
  libsemanage2 libsepol-dev libsepol2 libspectre1 liburing2 libwacom9
  libwxbase3.2-1 libwxgtk3.2-1 mesa-utils-bin node-acorn node-ajv-keywords
  node-ampproject-remapping node-ansi-escapes node-anymatch node-argparse
  node-arrify node-assert node-async node-async-each
  node-babel-helper-define-polyfill-provider
  node-babel-plugin-add-module-exports node-babel-plugin-lodash
  node-babel-plugin-polyfill-corejs2 node-babel-plugin-polyfill-corejs3
  node-babel-plugin-polyfill-regenerator node-babel7 node-babel7-runtime
  node-base64-js node-binary-extensions node-braces node-browserslist
  node-busboy node-camelcase node-caniuse-lite node-chokidar
  node-chrome-trace-event node-ci-info node-cjs-module-lexer node-cli-table
  node-cliui node-clone-deep node-commander node-commondir node-concat-stream
  node-convert-source-map node-core-js node-core-js-compat node-core-js-pure
  node-css-loader node-css-selector-tokenizer node-data-uri-to-buffer
  node-debbundle-es-to-primitive node-decamelize node-decompress-response
  node-deep-equal node-deep-is node-define-properties node-defined node-del
  node-diff node-doctrine node-electron-to-chromium node-end-of-stream
  node-enhanced-resolve node-errno node-error-ex node-es-abstract
  node-es-module-lexer node-es6-error node-escodegen node-eslint-scope
  node-eslint-utils node-eslint-visitor-keys node-espree node-esprima
  node-esquery node-esrecurse node-estraverse node-esutils
  node-fast-levenshtein node-fetch node-file-entry-cache node-fill-range
  node-find-cache-dir node-find-up node-flat-cache node-flatted node-for-in
  node-for-own node-foreground-child node-fs-readdir-recursive
  node-functional-red-black-tree node-get-caller-file node-get-stream
  node-glob-parent node-globals node-globby node-got node-icss-utils
  node-ieee754 node-ignore node-interpret node-is-arrayish node-is-binary-path
  node-is-buffer node-is-extendable node-is-extglob node-is-glob
  node-is-number node-is-path-cwd node-is-path-inside node-is-plain-obj
  node-is-plain-object node-is-stream node-is-windows node-isobject
  node-istanbul node-jest-debbundle node-jest-worker node-js-tokens
  node-js-yaml node-jsesc node-json-buffer node-json5 node-kind-of node-levn
  node-loader-runner node-locate-path node-lodash node-lodash-packages
  node-lowercase-keys node-make-dir node-memfs node-memory-fs
  node-merge-stream node-micromatch node-mimic-response node-minimist node-n3
  node-negotiator node-neo-async node-normalize-path node-npm-run-path
  node-object-inspect node-optimist node-optionator node-p-cancelable
  node-p-limit node-p-locate node-parse-json node-path-dirname
  node-path-exists node-path-is-inside node-path-type node-picocolors
  node-pify node-pkg-dir node-postcss node-postcss-modules-extract-imports
  node-postcss-modules-values node-postcss-value-parser node-prelude-ls
  node-progress node-prr node-pump node-quick-lru node-randombytes
  node-read-pkg node-readdirp node-rechoir node-regenerate
  node-regenerate-unicode-properties node-regenerator-runtime
  node-regenerator-transform node-regexpp node-regexpu-core node-regjsgen
  node-regjsparser node-repeat-string node-require-directory node-resolve-cwd
  node-resumer node-schema-utils node-serialize-javascript
  node-set-immediate-shim node-shebang-command node-shebang-regex
  node-source-list-map node-source-map node-source-map-support node-sprintf-js
  node-strip-bom node-strip-json-comments node-tapable node-tape node-terser
  node-to-fast-properties node-to-regex-range node-tslib node-type-check
  node-typedarray node-undici node-unicode-canonical-property-names-ecmascript
  node-unicode-match-property-ecmascript
  node-unicode-match-property-value-ecmascript
  node-unicode-property-aliases-ecmascript node-util node-v8-compile-cache
  node-v8flags node-watchpack node-webassemblyjs node-webpack-sources
  node-wordwrap node-wrap-ansi node-write node-xtend node-y18n node-yargs
  node-yargs-parser python3-pip-whl python3-setuptools-whl python3.11
  python3.11-dev python3.11-minimal python3.11-venv terser webpack
The following packages will be upgraded:
  filezilla filezilla-common gimp gimp-data iotop libcob5 libcob5-dev
  libgimp2.0 libgs9-common libimlib2 libinput-bin libinput10 libldb2
  libnode-dev libpython3-dev libpython3-stdlib libselinux1 libselinux1-dev
  libsemanage-common libtalloc2 libtdb1 libtevent0 libwacom-common
  libwbclient0 mesa-utils node-ajv node-archy node-assert-plus
  node-bcrypt-pbkdf node-cacache node-chalk node-getpass node-gyp
  node-hosted-git-info node-jsonstream node-lru-cache node-mime node-mkdirp
  node-ms node-nopt node-npm-package-arg node-object-assign node-opener
  node-puka node-punycode node-qs node-rimraf node-semver node-sshpk
  node-strip-ansi node-tweetnacl node-verror node-which nodejs npm passwd
  python3 python3-dev python3-distutils python3-ldb python3-lib2to3
  python3-minimal python3-numpy python3-rpi.gpio python3-samba python3-smbus
  python3-talloc python3-tdb python3-venv rpi.gpio-common samba samba-common
  samba-common-bin samba-libs samba-vfs-modules xserver-xorg-input-libinput
76 upgraded, 243 newly installed, 10 to remove and 0 not upgraded.
Need to get 76.4 MB of archives.
After this operation, 134 MB of additional disk space will be used.
Get:1 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf filezilla armhf 3.63.0-1 [1598 kB]
Get:2 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf filezilla-common all 3.63.0-1 [2324 kB]
Get:3 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfilezilla-common all 0.41.0-2 [72.5 kB]
Get:4 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfilezilla34 armhf 0.41.0-2 [218 kB]
Get:5 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxbase3.2-1 armhf 3.2.2+dfsg-2 [820 kB]
Get:6 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxgtk3.2-1 armhf 3.2.2+dfsg-2 [3737 kB]
Get:7 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gimp armhf 2.10.34-1 [3526 kB]
Get:8 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgimp2.0 armhf 2.10.34-1 [736 kB]
Get:9 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gimp-data all 2.10.34-1 [14.2 MB]
Get:36 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-venv armhf 3.11.2-1 [1188 B]
Get:10 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs9-common all 10.0.0~dfsg-11+deb12u1 [27.6 kB]
Get:11 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs-common all 10.0.0~dfsg-11+deb12u1 [149 kB]
Get:12 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs10-common all 10.0.0~dfsg-11+deb12u1 [586 kB]
Get:13 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libidn12 armhf 1.41-1+b1 [77.0 kB]
Get:14 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs10 armhf 10.0.0~dfsg-11+deb12u1 [2055 kB]
Get:15 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-xtend all 4.0.2-3 [3932 B]
Get:16 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnode-dev armhf 18.13.0+dfsg1-1+rpi1 [498 kB]
Get:17 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf nodejs armhf 18.13.0+dfsg1-1+rpi1 [304 kB]
Get:18 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-acorn all 8.8.1+ds+~cs25.17.7-2 [128 kB]
Get:19 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cjs-module-lexer all 1.2.2+dfsg-5 [30.1 kB]
Get:20 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-busboy all 1.6.0+~cs2.6.0-2 [16.9 kB]
Get:21 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-undici all 5.15.0+dfsg1+~cs20.10.9.3-1+deb12u1 [284 kB]
Get:22 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnode108 armhf 18.13.0+dfsg1-1+rpi1 [8798 kB]
Get:23 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsepol2 armhf 3.4-2.1 [228 kB]
Get:24 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsepol-dev armhf 3.4-2.1 [309 kB]
Get:25 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libselinux1-dev armhf 3.4-1+b2 [143 kB]
Get:26 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libselinux1 armhf 3.4-1+b2 [64.5 kB]
Get:27 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsemanage-common all 3.4-1 [21.6 kB]
Get:28 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsemanage2 armhf 3.4-1+b2 [75.6 kB]
Get:29 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf passwd armhf 1:4.13+dfsg1-1 [905 kB]
Get:30 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libinput10 armhf 1.22.1-1 [106 kB]
Get:31 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libinput-bin armhf 1.22.1-1 [21.7 kB]
Get:32 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwacom-common all 2.6.0-1 [58.4 kB]
Get:33 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwacom9 armhf 2.6.0-1 [18.5 kB]
Get:34 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11-minimal armhf 3.11.2-6 [1679 kB]
Get:35 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11 armhf 3.11.2-6 [572 kB]
Get:37 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-pip-whl all 23.0.1+dfsg-1 [1717 kB]
Get:38 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-setuptools-whl all 66.1.1-1 [1111 kB]
Get:39 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3-dev armhf 3.11.2-1 [9248 B]
Get:40 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-dev armhf 3.11.2-1 [26.2 kB]
Get:41 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-vfs-modules armhf 2:4.17.8+dfsg-2 [386 kB]
Get:42 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-ldb armhf 2:2.6.2+samba4.17.8+dfsg-2 [53.8 kB]
Get:43 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldb2 armhf 2:2.6.2+samba4.17.8+dfsg-2 [133 kB]
Get:44 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba armhf 2:4.17.8+dfsg-2 [845 kB]
Get:45 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-tdb armhf 1.4.8-2 [15.5 kB]
Get:46 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtalloc2 armhf 2.4.0-f2 [23.9 kB]
Get:47 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-talloc armhf 2.4.0-f2 [13.8 kB]
Get:48 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-smbus armhf 4.3-2+b2 [11.3 kB]
Get:49 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-samba armhf 2:4.17.8+dfsg-2 [2408 kB]
Get:50 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-rpi.gpio armhf 0.7.1~a4-1+b2 [21.2 kB]
Get:51 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-numpy armhf 1:1.24.2-1 [3826 kB]
Get:52 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-distutils all 3.11.2-3 [131 kB]
Get:53 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-lib2to3 all 3.11.2-3 [76.3 kB]
Get:54 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-minimal armhf 3.11.2-1 [26.0 kB]
Get:55 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3 armhf 3.11.2-1 [26.0 kB]
Get:56 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-dev armhf 3.11.2-6 [3364 kB]
Get:57 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11-dev armhf 3.11.2-6 [511 kB]
Get:58 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtdb1 armhf 1.4.8-2 [39.6 kB]
Get:59 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtevent0 armhf 0.14.1-1 [32.4 kB]
Get:60 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-common-bin armhf 2:4.17.8+dfsg-2 [1050 kB]
Get:61 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-common all 2:4.17.8+dfsg-2 [83.3 kB]
Get:62 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwbclient0 armhf 2:4.17.8+dfsg-2 [47.5 kB]
Get:63 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-libs armhf 2:4.17.8+dfsg-2 [4832 kB]
Get:64 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liburing2 armhf 2.3-3 [12.7 kB]
Get:65 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf rpi.gpio-common armhf 0.7.1~a4-1+b2 [6808 B]
Get:66 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3-stdlib armhf 3.11.2-1 [9012 B]
Get:67 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11-venv armhf 3.11.2-6 [5892 B]
Get:68 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ajv all 6.12.6-3 [74.0 kB]
Get:69 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-typedarray all 0.0.7-1 [11.4 kB]
Get:70 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-concat-stream all 2.0.0+~2.0.0-2 [6388 B]
Get:71 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-esutils all 2.0.3+~2.0.0-1 [12.4 kB]
Get:72 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-doctrine all 3.0.0-4 [19.9 kB]
Get:73 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-eslint-visitor-keys all 3.3.0+~1.0.0-1 [17.1 kB]
Get:74 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-estraverse all 5.3.0+ds+~5.1.1-1 [11.6 kB]
Get:75 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-object-assign all 4.1.1-7 [4684 B]
Get:76 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-esrecurse all 4.3.0-2 [6048 B]
Get:77 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-eslint-scope all 7.1.1+~3.7.4-1 [35.6 kB]
Get:78 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-espree all 9.4.1~dfsg-1 [41.0 kB]
Get:79 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-esquery all 1.4.2~ds-1 [24.9 kB]
Get:80 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-eslint-utils all 3.0.0-3 [15.5 kB]
Get:81 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-flatted all 3.2.7~ds-1 [10.3 kB]
Get:82 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-rimraf all 3.0.2-2 [11.1 kB]
Get:83 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-write all 2.0.0~6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5 [17.8 kB]
Get:84 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-flat-cache all 3.0.4~6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5 [20.1 kB]
Get:85 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-file-entry-cache all 6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5 [15.0 kB]
Get:86 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-functional-red-black-tree all 1.0.1+20181105-7 [14.1 kB]
Get:87 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-extglob all 2.1.1-5 [4612 B]
Get:88 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-glob all 4.0.3-2 [6620 B]
Get:89 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-dirname all 1.0.2-2 [4312 B]
Get:90 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-glob-parent all 6.0.2+~5.1.1-2 [8784 B]
Get:91 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-globals all 13.18.0-1 [11.1 kB]
Get:92 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ignore all 5.2.1-1 [26.4 kB]
Get:93 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-prelude-ls all 1.2.1+dfsg-3 [11.3 kB]
Get:94 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-type-check all 0.4.0+dfsg-3 [9184 B]
Get:95 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-levn all 0.4.1+dfsg-2 [10.2 kB]
Get:96 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-lodash all 4.17.21+dfsg+~cs8.31.198.20210220-9 [462 kB]
Get:97 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-memfs all 3.4.12+~cs1.0.3-1 [46.8 kB]
Get:98 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-mkdirp all 1.0.4+~1.0.2-4 [11.6 kB]
Get:99 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-deep-is all 0.1.4-1 [5136 B]
Get:100 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fast-levenshtein all 2.0.6+ds-3 [6040 B]
Get:101 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-optionator all 0.9.1+dfsg+~cs1.2.3-1 [17.6 kB]
Get:102 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-progress all 2.0.3-2 [8256 B]
Get:103 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-regenerate all 1.4.2-3 [14.3 kB]
Get:104 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-regenerate all 1.4.2-3 [7388 B]
Get:105 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regenerate-unicode-properties all 10.1.0+ds-1 [50.7 kB]
Get:106 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-regexpp all 3.2.0-4 [27.0 kB]
Get:107 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-archy all 1.0.0-6 [4556 B]
Get:108 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-base64-js all 1.5.1+dfsg+~1.3.0-2 [7140 B]
Get:109 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-binary-extensions all 2.2.0-2 [4408 B]
Get:110 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chalk all 5.2.0-1 [18.0 kB]
Get:111 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ci-info all 3.6.1+~cs1.1.0-1 [11.7 kB]
Get:112 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cli-table all 0.3.11+~cs0.13.4-3 [23.6 kB]
Get:113 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-css-selector-tokenizer all 0.8.0+~cs4.8.3-1 [13.0 kB]
Get:114 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-diff all 5.0.0~dfsg+~5.0.1-4 [69.7 kB]
Get:115 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-mimic-response all 3.1.0-8 [5404 B]
Get:116 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-decompress-response all 6.0.0-2 [4620 B]
Get:117 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-end-of-stream all 1.4.4+~1.4.1-1 [5292 B]
Get:118 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-pump all 3.0.0-5 [5136 B]
Get:119 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-get-stream all 6.0.1-1 [7208 B]
Get:120 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-lowercase-keys all 2.0.0-2 [3768 B]
Get:121 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-buffer all 3.0.1+~3.0.0-1 [4536 B]
Get:122 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-p-cancelable all 2.1.1-1 [7272 B]
Get:123 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-quick-lru all 6.1.1-4 [8076 B]
Get:124 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-got all 11.8.5+~cs58.13.36-3 [121 kB]
Get:125 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-data-uri-to-buffer all 4.0.0-3 [5540 B]
Get:126 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fetch all 3.3.0+~cs11.4.11-2 [212 kB]
Get:127 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-nopt all 5.0.0-4 [12.1 kB]
Get:128 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-which all 2.0.2+~cs1.3.2-3 [8368 B]
Get:129 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-semver all 7.3.5+~7.3.9-2 [42.1 kB]
Get:130 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-gyp all 9.3.0-2 [57.9 kB]
Get:131 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf npm all 9.2.0~ds1-1 [669 kB]
Get:132 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-hosted-git-info all 6.1.1-2 [12.6 kB]
Get:133 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ieee754 all 1.2.1-3 [5268 B]
Get:134 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ms all 2.1.3+~cs0.7.31-3 [5648 B]
Get:135 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-negotiator all 0.6.3+~0.6.1-1 [10.8 kB]
Get:136 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-npm-package-arg all 10.0.0+~3.0.0-2 [11.4 kB]
Get:137 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-camelcase all 7.0.0-3 [6032 B]
Get:138 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-isobject all 4.0.0-2 [5332 B]
Get:139 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-picocolors all 1.0.0-4 [6652 B]
Get:140 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-postcss all 8.4.20+~cs8.0.23-1 [180 kB]
Get:141 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-icss-utils all 5.1.0+~5.1.0-1 [7564 B]
Get:142 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-postcss-modules-extract-imports all 3.0.0-2 [6584 B]
Get:143 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-postcss-modules-values all 4.0.0+~4.0.0-1 [7180 B]
Get:144 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-postcss-value-parser all 4.2.0-1 [10.4 kB]
Get:145 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-caniuse-lite all 1.0.30001436+dfsg+~1.0.1-1 [208 kB]
Get:146 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-electron-to-chromium all 1.4.284-1 [20.6 kB]
Get:147 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-browserslist all 4.21.4+~cs6.1.17-2 [63.5 kB]
Get:148 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-tslib all 2.4.1-1 [19.5 kB]
Get:149 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chrome-trace-event all 1.0.3-2 [6984 B]
Get:150 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-commander all 9.4.1-1 [65.3 kB]
Get:151 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-prr all 1.0.1-3 [4352 B]
Get:152 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-errno all 1.0.0-3 [7736 B]
Get:153 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-memory-fs all 0.5.0+~0.3.3-2 [7676 B]
Get:154 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-tapable all 2.2.1-2 [13.6 kB]
Get:155 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-enhanced-resolve all 5.10.0-1 [33.6 kB]
Get:156 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-es-module-lexer all 1.1.0+dfsg-2 [19.7 kB]
Get:157 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ansi-escapes all 5.0.0+really.4.3.1-1 [8896 B]
Get:158 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ampproject-remapping all 2.2.0+~cs5.15.37-1 [59.4 kB]
Get:159 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-add-module-exports all 1.0.4+dfsg1~cs5.8.0-4 [8672 B]
Get:160 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regenerator-runtime all 0.15.1+~0.10.8-1 [10.6 kB]
Get:161 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel7-runtime all 7.20.15+ds1+~cs214.269.168-3 [116 kB]
Get:162 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-lodash-packages all 4.17.21+dfsg+~cs8.31.198.20210220-9 [179 kB]
Get:163 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-helper-define-polyfill-provider all 0.3.3~0~20220913+ds1-1 [27.4 kB]
Get:164 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-polyfill-corejs2 all 0.3.3~0~20220913+ds1-1 [17.1 kB]
Get:165 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-js-compat all 3.26.1-3 [66.1 kB]
Get:166 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-polyfill-corejs3 all 0.6.0~0~20220913+ds1-1 [29.5 kB]
Get:167 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-polyfill-regenerator all 0.4.1~0~20220913+ds1-1 [5036 B]
Get:168 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-for-in all 1.0.2-4 [4840 B]
Get:169 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-for-own all 1.0.0-3 [4800 B]
Get:170 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-plain-object all 5.0.0-7 [6108 B]
Get:171 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-extendable all 1.0.1-3 [5228 B]
Get:172 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-buffer all 2.0.5-2 [4112 B]
Get:173 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-kind-of all 6.0.3+dfsg-2 [10.2 kB]
Get:174 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-clone-deep all 4.0.1+~cs7.0.2-1 [6720 B]
Get:175 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-convert-source-map all 1.9.0+~1.5.2-1 [8176 B]
Get:176 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-js all 3.26.1-3 [268 kB]
Get:177 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-js-pure all 3.26.1-3 [250 kB]
Get:178 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-commondir all 1.0.1+~1.0.0-1 [4388 B]
Get:179 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-number all 7.0.0-4 [6020 B]
Get:180 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-repeat-string all 1.6.1+repack-1 [5600 B]
Get:181 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-to-regex-range all 5.0.1-4 [10.5 kB]
Get:182 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fill-range all 7.0.1+~7.0.0-1 [8952 B]
Get:183 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-braces all 3.0.2+~3.0.1-1 [20.8 kB]
Get:184 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-normalize-path all 3.0.0+~3.0.0-1 [6608 B]
Get:185 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-anymatch all 3.1.3+~cs4.6.1-2 [33.4 kB]
Get:186 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-micromatch all 4.0.5+~4.0.2-1 [25.8 kB]
Get:187 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-pify all 5.0.0+~cs5.0.1-1 [7072 B]
Get:188 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-type all 4.0.0-3 [3944 B]
Get:189 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-n3 all 1.16.3+~1.2.3+~1.10.4-1 [37.0 kB]
Get:190 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-globby all 13.1.3+~cs16.25.40-1 [40.3 kB]
Get:191 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-path-cwd all 2.2.0-2 [3672 B]
Get:192 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-path-is-inside all 1.0.2+~1.0.0-1 [5072 B]
Get:193 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-path-inside all 3.0.3-2 [3980 B]
Get:194 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-del all 7.0.0-5 [6804 B]
Get:195 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-make-dir all 3.1.0-3 [6040 B]
Get:196 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-p-limit all 4.0.0+~cs4.0.0-5 [7576 B]
Get:197 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-p-locate all 6.0.0-12 [5752 B]
Get:198 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-locate-path all 7.1.1-2 [5584 B]
Get:199 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-exists all 5.0.0-8 [4732 B]
Get:200 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-find-up all 6.3.0-7 [9388 B]
Get:201 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-pkg-dir all 5.0.0-2 [4260 B]
Get:202 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-find-cache-dir all 3.3.2+~3.2.1-1 [6152 B]
Get:203 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fs-readdir-recursive all 1.1.0+~1.1.0-1 [4540 B]
Get:204 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-js-tokens all 8.0.0-2 [14.9 kB]
Get:205 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jsesc all 3.0.2+~3.0.1-1 [17.6 kB]
Get:206 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json5 all 2.2.3+dfsg-1 [25.6 kB]
Get:207 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regenerator-transform all 0.15.1+~0.10.8-1 [24.6 kB]
Get:208 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regjsgen all 0.7.1+ds-1 [6968 B]
Get:209 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regjsparser all 0.9.1+ds-2 [22.1 kB]
Get:210 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-unicode-canonical-property-names-ecmascript all 2.0.0-2 [4540 B]
Get:211 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-unicode-property-aliases-ecmascript all 2.1.0+ds-1 [5256 B]
Get:212 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-unicode-match-property-ecmascript all 2.0.0-2 [4440 B]
Get:213 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-unicode-match-property-value-ecmascript all 2.1.0+ds-1 [7272 B]
Get:214 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-regexpu-core all 5.2.2-3 [13.9 kB]
Get:215 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-source-map all 0.7.0++dfsg2+really.0.6.1-15 [29.6 kB]
Get:216 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-source-map all 0.7.0++dfsg2+really.0.6.1-15 [41.7 kB]
Get:217 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-source-map-support all 0.5.21+ds+~0.5.4-1 [14.5 kB]
Get:218 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-to-fast-properties all 3.0.1-3 [4332 B]
Get:219 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-v8flags all 3.2.0+~3.1.1-1 [7612 B]
Get:220 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel7 all 7.20.15+ds1+~cs214.269.168-3 [712 kB]
Get:221 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-lodash all 3.3.4+~cs2.0.1-6 [11.0 kB]
Get:222 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-resolve-cwd all 3.0.0-2 [4212 B]
Get:223 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-strip-ansi all 6.0.1-2 [4120 B]
Get:224 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jest-debbundle all 29.3.1~ds1+~cs70.48.25-2 [129 kB]
Get:225 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-interpret all 2.2.0-3 [7660 B]
Get:226 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-merge-stream all 2.0.0+~1.1.2-2 [5124 B]
Get:227 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jest-worker all 29.3.1~ds1+~cs70.48.25-2 [112 kB]
Get:228 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-loader-runner all 4.3.0-1 [7644 B]
Get:229 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-neo-async all 2.6.2+~cs3.0.0-2 [35.2 kB]
Get:230 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-rechoir all 0.8.0+~0.6.1-2 [6628 B]
Get:231 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ajv-keywords all 3.5.2-2 [20.3 kB]
Get:232 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-schema-utils all 3.1.1~ds-2 [20.0 kB]
Get:233 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-randombytes all 2.1.0+~2.0.0-2 [4852 B]
Get:234 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-serialize-javascript all 6.0.0-2 [12.7 kB]
Get:235 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-async-each all 1.0.3-3 [4292 B]
Get:236 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-binary-path all 2.1.0-5 [3684 B]
Get:237 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-set-immediate-shim all 2.0.0-2 [3740 B]
Get:238 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-readdirp all 3.6.0-1 [11.5 kB]
Get:239 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chokidar all 3.5.3-2 [32.3 kB]
Get:240 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-watchpack all 2.4.0+~cs2.8.1-1 [20.2 kB]
Get:241 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-define-properties all 1.1.4+~1.1.3-1 [6828 B]
Get:242 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-defined all 1.0.1+~1.0.0-1 [6776 B]
Get:243 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-arrify all 2.0.1-3 [3700 B]
Get:244 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-plain-obj all 3.0.0-2 [3972 B]
Get:245 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-minimist all 1.2.7+~cs5.3.2-2 [14.7 kB]
Get:246 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wordwrap all 1.0.0-4 [4628 B]
Get:247 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-optimist all 0.6.1+~0.0.30-2 [13.5 kB]
Get:248 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf handlebars all 3:4.7.7+~4.1.0-1 [199 kB]
Get:249 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-prettify all 2015.12.04+dfsg-1.1 [41.7 kB]
Get:250 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-async all 0.8.0-6 [24.2 kB]
Get:251 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-async all 0.8.0-6 [3748 B]
Get:252 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-decamelize all 4.0.0-2 [4080 B]
Get:253 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-es6-error all 4.1.1-5 [6148 B]
Get:254 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-esprima all 4.0.1+ds+~4.0.3-2 [69.3 kB]
Get:255 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-escodegen all 2.0.0+dfsg+~0.0.7-2 [23.0 kB]
Get:256 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-foreground-child all 2.0.0-5 [6384 B]
Get:257 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-stream all 3.0.0-4 [5076 B]
Get:258 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-is-windows all 1.0.2+~cs1.0.0-1 [5936 B]
Get:259 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-sprintf-js all 1.1.2+ds1+~1.1.2-1 [12.8 kB]
Get:260 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-sprintf-js all 1.1.2+ds1+~1.1.2-1 [4024 B]
Get:261 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-argparse all 2.0.1-2 [34.6 kB]
Get:262 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-js-yaml all 4.1.0+dfsg+~4.0.5-7 [66.6 kB]
Get:263 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-npm-run-path all 5.1.0+~4.0.0-8 [6276 B]
Get:264 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-shebang-regex all 3.0.0-2 [3528 B]
Get:265 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-shebang-command all 2.0.0-1 [3500 B]
Get:266 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-strip-bom all 4.0.0-2 [4144 B]
Get:267 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-util all 0.12.5+~1.0.10-1 [16.0 kB]
Get:268 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-util all 0.12.5+~1.0.10-1 [5700 B]
Get:269 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-assert all 2.0.0+~cs3.9.8-2 [26.8 kB]
Get:270 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-arrayish all 0.3.2-3 [3960 B]
Get:271 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-error-ex all 1.3.2-4 [5656 B]
Get:272 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-parse-json all 5.2.0+~cs5.1.7-1 [7356 B]
Get:273 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-read-pkg all 5.2.0-2 [24.0 kB]
Get:274 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-wrap-ansi all 8.0.1+~8.0.1-3 [11.8 kB]
Get:275 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cliui all 7.0.4+repack+~cs3.1.0-4 [11.5 kB]
Get:276 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-get-caller-file all 2.0.5+~cs1.1.1-4 [5728 B]
Get:277 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-require-directory all 2.1.1+~2.1.2-1 [7092 B]
Get:278 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-y18n all 5.0.8+~5.0.0-3 [10.2 kB]
Get:279 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-yargs-parser all 21.1.1+~21.0.0-4 [28.4 kB]
Get:280 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-yargs all 16.2.0+~16.0.4-7 [128 kB]
Get:281 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-istanbul all 0.4.5+repack10+~cs97.25.57-3 [207 kB]
Get:282 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-object-inspect all 1.12.2+~cs1.8.1-1 [20.8 kB]
Get:283 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-resumer all 0.0.0-6 [4144 B]
Get:284 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-tape all 5.6.1+~cs8.20.19-1 [70.9 kB]
Get:285 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-deep-equal all 2.1.0+~cs31.12.80-1 [34.5 kB]
Get:286 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-debbundle-es-to-primitive all 1.2.1+~cs9.7.25-2 [39.9 kB]
Get:287 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-es-abstract all 1.20.4+~cs26.27.47-1 [137 kB]
Get:288 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-webassemblyjs all 1.11.4+dfsg+~cs10.11.17-2 [139 kB]
Get:289 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-source-list-map all 2.0.1+dfsg-2 [9348 B]
Get:290 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-webpack-sources all 3.2.3+~3.2.0-2 [23.2 kB]
Get:291 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-terser all 5.16.5-2 [204 kB]
Get:292 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf terser all 5.16.5-2 [16.5 kB]
Get:293 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf webpack all 5.75.0+dfsg+~cs17.16.14-1+deb12u1 [756 kB]
Get:294 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-css-loader all 6.7.2+~cs14.0.11-1 [73.0 kB]
Get:295 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cacache all 17.0.3+~cs10.3.7-1 [45.1 kB]
Get:296 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-lru-cache all 7.14.1-1 [26.3 kB]
Get:297 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-strip-json-comments all 4.0.0-4 [5668 B]
Get:298 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-v8-compile-cache all 2.3.0-3 [8344 B]
Get:299 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf eslint all 6.4.0~dfsg+~6.1.9-7 [606 kB]
Get:300 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf iotop armhf 0.6-42-ga14256a-0.1+b1 [24.1 kB]
Get:301 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcob5-dev armhf 4.0~early~20200606-6 [177 kB]
Get:302 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcob5 armhf 4.0~early~20200606-6 [147 kB]
Get:303 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspectre1 armhf 0.2.12-1 [46.0 kB]
Get:304 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libimlib2 armhf 1.10.0-4 [176 kB]
Get:305 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mesa-utils-bin armhf 8.5.0-1 [45.5 kB]
Get:306 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mesa-utils armhf 8.5.0-1 [955 kB]
Get:307 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-assert-plus all 1.0.0-4 [6852 B]
Get:308 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-tweetnacl all 1.0.3+dfsg-3 [34.9 kB]
Get:309 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-bcrypt-pbkdf all 1.0.2-3 [11.1 kB]
Get:310 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-getpass all 0.1.7-3 [4796 B]
Get:311 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsonstream all 1.3.5-3 [8472 B]
Get:312 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-mime all 3.0.0+dfsg+~cs3.97.1-1 [40.4 kB]
Get:313 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-opener all 1.5.2+~1.4.0-1 [5940 B]
Get:314 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-puka all 1.0.1+dfsg-3 [29.0 kB]
Get:315 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-punycode all 2.1.1-6 [9444 B]
Get:316 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-qs all 6.11.0+ds+~6.9.7-3 [43.2 kB]
Get:317 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-sshpk all 1.17.0+dfsg-2 [52.5 kB]
Get:318 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-verror all 1.10.1+~1.10.5-2 [17.0 kB]
Get:319 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-xorg-input-libinput armhf 1.2.1-1 [60.3 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 76.4 MB in 5min 40s (225 kB/s)
(Reading database ... 116337 files and directories currently installed.)
Removing gnucobol (4.0~early~20200606-3+b2) ...
dpkg: libfilezilla11: dependency problems, but removing anyway as you requested:
 filezilla depends on libfilezilla11 (>= 0.26.0).

Removing libfilezilla11 (0.26.0-1) ...
(Reading database ... 116243 files and directories currently installed.)
Preparing to unpack .../0-filezilla_3.63.0-1_armhf.deb ...
Unpacking filezilla (3.63.0-1) over (3.52.2-3) ...
Preparing to unpack .../1-filezilla-common_3.63.0-1_all.deb ...
Unpacking filezilla-common (3.63.0-1) over (3.52.2-3) ...
Selecting previously unselected package libfilezilla-common.
Preparing to unpack .../2-libfilezilla-common_0.41.0-2_all.deb ...
Unpacking libfilezilla-common (0.41.0-2) ...
Selecting previously unselected package libfilezilla34:armhf.
Preparing to unpack .../3-libfilezilla34_0.41.0-2_armhf.deb ...
Unpacking libfilezilla34:armhf (0.41.0-2) ...
Selecting previously unselected package libwxbase3.2-1:armhf.
Preparing to unpack .../4-libwxbase3.2-1_3.2.2+dfsg-2_armhf.deb ...
Unpacking libwxbase3.2-1:armhf (3.2.2+dfsg-2) ...
Selecting previously unselected package libwxgtk3.2-1:armhf.
Preparing to unpack .../5-libwxgtk3.2-1_3.2.2+dfsg-2_armhf.deb ...
Unpacking libwxgtk3.2-1:armhf (3.2.2+dfsg-2) ...
Preparing to unpack .../6-gimp_2.10.34-1_armhf.deb ...
Unpacking gimp (2.10.34-1) over (2.10.22-4) ...
Preparing to unpack .../7-libgimp2.0_2.10.34-1_armhf.deb ...
Unpacking libgimp2.0:armhf (2.10.34-1) over (2.10.22-4) ...
Preparing to unpack .../8-gimp-data_2.10.34-1_all.deb ...
Unpacking gimp-data (2.10.34-1) over (2.10.22-4) ...
(Reading database ... 116301 files and directories currently installed.)
Removing libgs9:armhf (9.53.3~dfsg-7+deb11u5) ...
(Reading database ... 116295 files and directories currently installed.)
Preparing to unpack .../0-libgs9-common_10.0.0~dfsg-11+deb12u1_all.deb ...
Unpacking libgs9-common (10.0.0~dfsg-11+deb12u1) over (9.53.3~dfsg-7+deb11u5) ...
Selecting previously unselected package libgs-common.
Preparing to unpack .../1-libgs-common_10.0.0~dfsg-11+deb12u1_all.deb ...
Unpacking libgs-common (10.0.0~dfsg-11+deb12u1) ...
Selecting previously unselected package libgs10-common.
Preparing to unpack .../2-libgs10-common_10.0.0~dfsg-11+deb12u1_all.deb ...
Unpacking libgs10-common (10.0.0~dfsg-11+deb12u1) ...
Selecting previously unselected package libidn12:armhf.
Preparing to unpack .../3-libidn12_1.41-1+b1_armhf.deb ...
Unpacking libidn12:armhf (1.41-1+b1) ...
Selecting previously unselected package libgs10:armhf.
Preparing to unpack .../4-libgs10_10.0.0~dfsg-11+deb12u1_armhf.deb ...
Unpacking libgs10:armhf (10.0.0~dfsg-11+deb12u1) ...
Selecting previously unselected package node-xtend.
Preparing to unpack .../5-node-xtend_4.0.2-3_all.deb ...
Unpacking node-xtend (4.0.2-3) ...
Preparing to unpack .../6-libnode-dev_18.13.0+dfsg1-1+rpi1_armhf.deb ...
Unpacking libnode-dev (18.13.0+dfsg1-1+rpi1) over (12.22.12~dfsg-1~deb11u4) ...
dpkg: libnode72:armhf: dependency problems, but removing anyway as you requested:
 nodejs depends on libnode72 (= 12.22.12~dfsg-1~deb11u4).

(Reading database ... 116496 files and directories currently installed.)
Removing libnode72:armhf (12.22.12~dfsg-1~deb11u4) ...
(Reading database ... 116490 files and directories currently installed.)
Preparing to unpack .../0-nodejs_18.13.0+dfsg1-1+rpi1_armhf.deb ...
Unpacking nodejs (18.13.0+dfsg1-1+rpi1) over (12.22.12~dfsg-1~deb11u4) ...
Selecting previously unselected package node-acorn.
Preparing to unpack .../1-node-acorn_8.8.1+ds+~cs25.17.7-2_all.deb ...
Unpacking node-acorn (8.8.1+ds+~cs25.17.7-2) ...
Selecting previously unselected package node-cjs-module-lexer.
Preparing to unpack .../2-node-cjs-module-lexer_1.2.2+dfsg-5_all.deb ...
Unpacking node-cjs-module-lexer (1.2.2+dfsg-5) ...
Selecting previously unselected package node-busboy.
Preparing to unpack .../3-node-busboy_1.6.0+~cs2.6.0-2_all.deb ...
Unpacking node-busboy (1.6.0+~cs2.6.0-2) ...
Selecting previously unselected package node-undici.
Preparing to unpack .../4-node-undici_5.15.0+dfsg1+~cs20.10.9.3-1+deb12u1_all.deb ...
Unpacking node-undici (5.15.0+dfsg1+~cs20.10.9.3-1+deb12u1) ...
Selecting previously unselected package libnode108:armhf.
Preparing to unpack .../5-libnode108_18.13.0+dfsg1-1+rpi1_armhf.deb ...
Unpacking libnode108:armhf (18.13.0+dfsg1-1+rpi1) ...
Selecting previously unselected package libsepol2:armhf.
Preparing to unpack .../6-libsepol2_3.4-2.1_armhf.deb ...
Unpacking libsepol2:armhf (3.4-2.1) ...
Setting up libsepol2:armhf (3.4-2.1) ...
dpkg: libsepol1-dev:armhf: dependency problems, but removing anyway as you requested:
 libselinux1-dev:armhf depends on libsepol1-dev (>= 3.1).

(Reading database ... 116951 files and directories currently installed.)
Removing libsepol1-dev:armhf (3.1-1) ...
Selecting previously unselected package libsepol-dev:armhf.
(Reading database ... 116895 files and directories currently installed.)
Preparing to unpack .../libsepol-dev_3.4-2.1_armhf.deb ...
Unpacking libsepol-dev:armhf (3.4-2.1) ...
Preparing to unpack .../libselinux1-dev_3.4-1+b2_armhf.deb ...
Unpacking libselinux1-dev:armhf (3.4-1+b2) over (3.1-3) ...
Preparing to unpack .../libselinux1_3.4-1+b2_armhf.deb ...
Unpacking libselinux1:armhf (3.4-1+b2) over (3.1-3) ...
Setting up libselinux1:armhf (3.4-1+b2) ...
(Reading database ... 116954 files and directories currently installed.)
Preparing to unpack .../libsemanage-common_3.4-1_all.deb ...
Unpacking libsemanage-common (3.4-1) over (3.1-1) ...
Setting up libsemanage-common (3.4-1) ...
Installing new version of config file /etc/selinux/semanage.conf ...
Selecting previously unselected package libsemanage2:armhf.
(Reading database ... 116954 files and directories currently installed.)
Preparing to unpack .../libsemanage2_3.4-1+b2_armhf.deb ...
Unpacking libsemanage2:armhf (3.4-1+b2) ...
Setting up libsemanage2:armhf (3.4-1+b2) ...
(Reading database ... 116959 files and directories currently installed.)
Preparing to unpack .../passwd_1%3a4.13+dfsg1-1_armhf.deb ...
Unpacking passwd (1:4.13+dfsg1-1) over (1:4.8.1-1) ...
Setting up passwd (1:4.13+dfsg1-1) ...
Installing new version of config file /etc/default/useradd ...
(Reading database ... 116993 files and directories currently installed.)
Removing libsemanage1:armhf (3.1-1+b1) ...
(Reading database ... 116988 files and directories currently installed.)
Preparing to unpack .../libinput10_1.22.1-1_armhf.deb ...
Unpacking libinput10:armhf (1.22.1-1) over (1.16.4-3) ...
Preparing to unpack .../libinput-bin_1.22.1-1_armhf.deb ...
Unpacking libinput-bin (1.22.1-1) over (1.16.4-3) ...
(Reading database ... 116997 files and directories currently installed.)
Removing libwacom2:armhf (1.8-2) ...
(Reading database ... 116992 files and directories currently installed.)
Preparing to unpack .../libwacom-common_2.6.0-1_all.deb ...
Unpacking libwacom-common (2.6.0-1) over (1.8-2) ...
Selecting previously unselected package libwacom9:armhf.
Preparing to unpack .../libwacom9_2.6.0-1_armhf.deb ...
Unpacking libwacom9:armhf (2.6.0-1) ...
(Reading database ... 117077 files and directories currently installed.)
Removing mesa-utils-extra (8.4.0-1+b1) ...
Selecting previously unselected package python3.11-minimal.
(Reading database ... 117062 files and directories currently installed.)
Preparing to unpack .../python3.11-minimal_3.11.2-6_armhf.deb ...
Unpacking python3.11-minimal (3.11.2-6) ...
Selecting previously unselected package python3.11.
Preparing to unpack .../python3.11_3.11.2-6_armhf.deb ...
Unpacking python3.11 (3.11.2-6) ...
Preparing to unpack .../python3-venv_3.11.2-1_armhf.deb ...
Unpacking python3-venv (3.11.2-1) over (3.9.2-3) ...
(Reading database ... 117090 files and directories currently installed.)
Removing python3.9-venv (3.9.2-1+rpi1) ...
Removing python-pip-whl (20.3.4-4+rpt1+deb11u1) ...
Selecting previously unselected package python3-pip-whl.
(Reading database ... 117052 files and directories currently installed.)
Preparing to unpack .../00-python3-pip-whl_23.0.1+dfsg-1_all.deb ...
Unpacking python3-pip-whl (23.0.1+dfsg-1) ...
Selecting previously unselected package python3-setuptools-whl.
Preparing to unpack .../01-python3-setuptools-whl_66.1.1-1_all.deb ...
Unpacking python3-setuptools-whl (66.1.1-1) ...
Preparing to unpack .../02-libpython3-dev_3.11.2-1_armhf.deb ...
Unpacking libpython3-dev:armhf (3.11.2-1) over (3.9.2-3) ...
Preparing to unpack .../03-python3-dev_3.11.2-1_armhf.deb ...
Unpacking python3-dev (3.11.2-1) over (3.9.2-3) ...
Preparing to unpack .../04-samba-vfs-modules_2%3a4.17.8+dfsg-2_armhf.deb ...
Unpacking samba-vfs-modules:armhf (2:4.17.8+dfsg-2) over (2:4.13.13+dfsg-1~deb11u5) ...
Preparing to unpack .../05-python3-ldb_2%3a2.6.2+samba4.17.8+dfsg-2_armhf.deb ...
Unpacking python3-ldb (2:2.6.2+samba4.17.8+dfsg-2) over (2:2.2.3-2~deb11u2) ...
Preparing to unpack .../06-libldb2_2%3a2.6.2+samba4.17.8+dfsg-2_armhf.deb ...
Unpacking libldb2:armhf (2:2.6.2+samba4.17.8+dfsg-2) over (2:2.2.3-2~deb11u2) ...
Preparing to unpack .../07-samba_2%3a4.17.8+dfsg-2_armhf.deb ...
Unpacking samba (2:4.17.8+dfsg-2) over (2:4.13.13+dfsg-1~deb11u5) ...
Preparing to unpack .../08-python3-tdb_1.4.8-2_armhf.deb ...
Unpacking python3-tdb (1.4.8-2) over (1.4.3-1+b1) ...
Preparing to unpack .../09-libtalloc2_2.4.0-f2_armhf.deb ...
Unpacking libtalloc2:armhf (2.4.0-f2) over (2.3.1-2+b1) ...
Preparing to unpack .../10-python3-talloc_2.4.0-f2_armhf.deb ...
Unpacking python3-talloc:armhf (2.4.0-f2) over (2.3.1-2+b1) ...
Preparing to unpack .../11-python3-smbus_4.3-2+b2_armhf.deb ...
Unpacking python3-smbus:armhf (4.3-2+b2) over (4.2-1+b1) ...
Preparing to unpack .../12-python3-samba_2%3a4.17.8+dfsg-2_armhf.deb ...
Unpacking python3-samba (2:4.17.8+dfsg-2) over (2:4.13.13+dfsg-1~deb11u5) ...
Preparing to unpack .../13-python3-rpi.gpio_0.7.1~a4-1+b2_armhf.deb ...
Unpacking python3-rpi.gpio (0.7.1~a4-1+b2) over (0.7.0-0.2+b1) ...
Preparing to unpack .../14-python3-numpy_1%3a1.24.2-1_armhf.deb ...
Unpacking python3-numpy (1:1.24.2-1) over (1:1.19.5-1) ...
Preparing to unpack .../15-python3-distutils_3.11.2-3_all.deb ...
Unpacking python3-distutils (3.11.2-3) over (3.9.2-1) ...
Preparing to unpack .../16-python3-lib2to3_3.11.2-3_all.deb ...
Unpacking python3-lib2to3 (3.11.2-3) over (3.9.2-1) ...
Setting up python3.11-minimal (3.11.2-6) ...
(Reading database ... 117528 files and directories currently installed.)
Preparing to unpack .../python3-minimal_3.11.2-1_armhf.deb ...
Unpacking python3-minimal (3.11.2-1) over (3.9.2-3) ...
Setting up python3-minimal (3.11.2-1) ...
(Reading database ... 117528 files and directories currently installed.)
Preparing to unpack .../000-python3_3.11.2-1_armhf.deb ...
Unpacking python3 (3.11.2-1) over (3.9.2-3) ...
Selecting previously unselected package libpython3.11-dev:armhf.
Preparing to unpack .../001-libpython3.11-dev_3.11.2-6_armhf.deb ...
Unpacking libpython3.11-dev:armhf (3.11.2-6) ...
Selecting previously unselected package python3.11-dev.
Preparing to unpack .../002-python3.11-dev_3.11.2-6_armhf.deb ...
Unpacking python3.11-dev (3.11.2-6) ...
Preparing to unpack .../003-libtdb1_1.4.8-2_armhf.deb ...
Unpacking libtdb1:armhf (1.4.8-2) over (1.4.3-1+b1) ...
Preparing to unpack .../004-libtevent0_0.14.1-1_armhf.deb ...
Unpacking libtevent0:armhf (0.14.1-1) over (0.10.2-1) ...
Preparing to unpack .../005-samba-common-bin_2%3a4.17.8+dfsg-2_armhf.deb ...
Unpacking samba-common-bin (2:4.17.8+dfsg-2) over (2:4.13.13+dfsg-1~deb11u5) ...
Preparing to unpack .../006-samba-common_2%3a4.17.8+dfsg-2_all.deb ...
Unpacking samba-common (2:4.17.8+dfsg-2) over (2:4.13.13+dfsg-1~deb11u5) ...
Preparing to unpack .../007-libwbclient0_2%3a4.17.8+dfsg-2_armhf.deb ...
Unpacking libwbclient0:armhf (2:4.17.8+dfsg-2) over (2:4.13.13+dfsg-1~deb11u5) ...
Preparing to unpack .../008-samba-libs_2%3a4.17.8+dfsg-2_armhf.deb ...
Unpacking samba-libs:armhf (2:4.17.8+dfsg-2) over (2:4.13.13+dfsg-1~deb11u5) ...
Selecting previously unselected package liburing2:armhf.
Preparing to unpack .../009-liburing2_2.3-3_armhf.deb ...
Unpacking liburing2:armhf (2.3-3) ...
Preparing to unpack .../010-rpi.gpio-common_0.7.1~a4-1+b2_armhf.deb ...
Unpacking rpi.gpio-common:armhf (0.7.1~a4-1+b2) over (0.7.0-0.2+b1) ...
Preparing to unpack .../011-libpython3-stdlib_3.11.2-1_armhf.deb ...
Unpacking libpython3-stdlib:armhf (3.11.2-1) over (3.9.2-3) ...
Selecting previously unselected package python3.11-venv.
Preparing to unpack .../012-python3.11-venv_3.11.2-6_armhf.deb ...
Unpacking python3.11-venv (3.11.2-6) ...
Preparing to unpack .../013-node-ajv_6.12.6-3_all.deb ...
Unpacking node-ajv (6.12.6-3) over (6.12.6-2) ...
Selecting previously unselected package node-typedarray.
Preparing to unpack .../014-node-typedarray_0.0.7-1_all.deb ...
Unpacking node-typedarray (0.0.7-1) ...
Selecting previously unselected package node-concat-stream.
Preparing to unpack .../015-node-concat-stream_2.0.0+~2.0.0-2_all.deb ...
Unpacking node-concat-stream (2.0.0+~2.0.0-2) ...
Selecting previously unselected package node-esutils.
Preparing to unpack .../016-node-esutils_2.0.3+~2.0.0-1_all.deb ...
Unpacking node-esutils (2.0.3+~2.0.0-1) ...
Selecting previously unselected package node-doctrine.
Preparing to unpack .../017-node-doctrine_3.0.0-4_all.deb ...
Unpacking node-doctrine (3.0.0-4) ...
Selecting previously unselected package node-eslint-visitor-keys.
Preparing to unpack .../018-node-eslint-visitor-keys_3.3.0+~1.0.0-1_all.deb ...
Unpacking node-eslint-visitor-keys (3.3.0+~1.0.0-1) ...
Selecting previously unselected package node-estraverse.
Preparing to unpack .../019-node-estraverse_5.3.0+ds+~5.1.1-1_all.deb ...
Unpacking node-estraverse (5.3.0+ds+~5.1.1-1) ...
Preparing to unpack .../020-node-object-assign_4.1.1-7_all.deb ...
Unpacking node-object-assign (4.1.1-7) over (4.1.1-3) ...
Selecting previously unselected package node-esrecurse.
Preparing to unpack .../021-node-esrecurse_4.3.0-2_all.deb ...
Unpacking node-esrecurse (4.3.0-2) ...
Selecting previously unselected package node-eslint-scope.
Preparing to unpack .../022-node-eslint-scope_7.1.1+~3.7.4-1_all.deb ...
Unpacking node-eslint-scope (7.1.1+~3.7.4-1) ...
Selecting previously unselected package node-espree.
Preparing to unpack .../023-node-espree_9.4.1~dfsg-1_all.deb ...
Unpacking node-espree (9.4.1~dfsg-1) ...
Selecting previously unselected package node-esquery.
Preparing to unpack .../024-node-esquery_1.4.2~ds-1_all.deb ...
Unpacking node-esquery (1.4.2~ds-1) ...
Selecting previously unselected package node-eslint-utils.
Preparing to unpack .../025-node-eslint-utils_3.0.0-3_all.deb ...
Unpacking node-eslint-utils (3.0.0-3) ...
Selecting previously unselected package node-flatted.
Preparing to unpack .../026-node-flatted_3.2.7~ds-1_all.deb ...
Unpacking node-flatted (3.2.7~ds-1) ...
Preparing to unpack .../027-node-rimraf_3.0.2-2_all.deb ...
Unpacking node-rimraf (3.0.2-2) over (3.0.2-1) ...
Selecting previously unselected package node-write.
Preparing to unpack .../028-node-write_2.0.0~6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5_all.deb ...
Unpacking node-write (2.0.0~6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5) ...
Selecting previously unselected package node-flat-cache.
Preparing to unpack .../029-node-flat-cache_3.0.4~6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5_all.deb ...
Unpacking node-flat-cache (3.0.4~6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5) ...
Selecting previously unselected package node-file-entry-cache.
Preparing to unpack .../030-node-file-entry-cache_6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5_all.deb ...
Unpacking node-file-entry-cache (6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5) ...
Selecting previously unselected package node-functional-red-black-tree.
Preparing to unpack .../031-node-functional-red-black-tree_1.0.1+20181105-7_all.deb ...
Unpacking node-functional-red-black-tree (1.0.1+20181105-7) ...
Selecting previously unselected package node-is-extglob.
Preparing to unpack .../032-node-is-extglob_2.1.1-5_all.deb ...
Unpacking node-is-extglob (2.1.1-5) ...
Selecting previously unselected package node-is-glob.
Preparing to unpack .../033-node-is-glob_4.0.3-2_all.deb ...
Unpacking node-is-glob (4.0.3-2) ...
Selecting previously unselected package node-path-dirname.
Preparing to unpack .../034-node-path-dirname_1.0.2-2_all.deb ...
Unpacking node-path-dirname (1.0.2-2) ...
Selecting previously unselected package node-glob-parent.
Preparing to unpack .../035-node-glob-parent_6.0.2+~5.1.1-2_all.deb ...
Unpacking node-glob-parent (6.0.2+~5.1.1-2) ...
Selecting previously unselected package node-globals.
Preparing to unpack .../036-node-globals_13.18.0-1_all.deb ...
Unpacking node-globals (13.18.0-1) ...
Selecting previously unselected package node-ignore.
Preparing to unpack .../037-node-ignore_5.2.1-1_all.deb ...
Unpacking node-ignore (5.2.1-1) ...
Selecting previously unselected package node-prelude-ls.
Preparing to unpack .../038-node-prelude-ls_1.2.1+dfsg-3_all.deb ...
Unpacking node-prelude-ls (1.2.1+dfsg-3) ...
Selecting previously unselected package node-type-check.
Preparing to unpack .../039-node-type-check_0.4.0+dfsg-3_all.deb ...
Unpacking node-type-check (0.4.0+dfsg-3) ...
Selecting previously unselected package node-levn.
Preparing to unpack .../040-node-levn_0.4.1+dfsg-2_all.deb ...
Unpacking node-levn (0.4.1+dfsg-2) ...
Selecting previously unselected package node-lodash.
Preparing to unpack .../041-node-lodash_4.17.21+dfsg+~cs8.31.198.20210220-9_all.deb ...
Unpacking node-lodash (4.17.21+dfsg+~cs8.31.198.20210220-9) ...
Selecting previously unselected package node-memfs.
Preparing to unpack .../042-node-memfs_3.4.12+~cs1.0.3-1_all.deb ...
Unpacking node-memfs (3.4.12+~cs1.0.3-1) ...
Preparing to unpack .../043-node-mkdirp_1.0.4+~1.0.2-4_all.deb ...
Unpacking node-mkdirp (1.0.4+~1.0.2-4) over (1.0.4+~1.0.1-1) ...
Selecting previously unselected package node-deep-is.
Preparing to unpack .../044-node-deep-is_0.1.4-1_all.deb ...
Unpacking node-deep-is (0.1.4-1) ...
Selecting previously unselected package node-fast-levenshtein.
Preparing to unpack .../045-node-fast-levenshtein_2.0.6+ds-3_all.deb ...
Unpacking node-fast-levenshtein (2.0.6+ds-3) ...
Selecting previously unselected package node-optionator.
Preparing to unpack .../046-node-optionator_0.9.1+dfsg+~cs1.2.3-1_all.deb ...
Unpacking node-optionator (0.9.1+dfsg+~cs1.2.3-1) ...
Selecting previously unselected package node-progress.
Preparing to unpack .../047-node-progress_2.0.3-2_all.deb ...
Unpacking node-progress (2.0.3-2) ...
Selecting previously unselected package libjs-regenerate.
Preparing to unpack .../048-libjs-regenerate_1.4.2-3_all.deb ...
Unpacking libjs-regenerate (1.4.2-3) ...
Selecting previously unselected package node-regenerate.
Preparing to unpack .../049-node-regenerate_1.4.2-3_all.deb ...
Unpacking node-regenerate (1.4.2-3) ...
Selecting previously unselected package node-regenerate-unicode-properties.
Preparing to unpack .../050-node-regenerate-unicode-properties_10.1.0+ds-1_all.deb ...
Unpacking node-regenerate-unicode-properties (10.1.0+ds-1) ...
Selecting previously unselected package node-regexpp.
Preparing to unpack .../051-node-regexpp_3.2.0-4_all.deb ...
Unpacking node-regexpp (3.2.0-4) ...
Preparing to unpack .../052-node-archy_1.0.0-6_all.deb ...
Unpacking node-archy (1.0.0-6) over (1.0.0-3) ...
Selecting previously unselected package node-base64-js.
Preparing to unpack .../053-node-base64-js_1.5.1+dfsg+~1.3.0-2_all.deb ...
Unpacking node-base64-js (1.5.1+dfsg+~1.3.0-2) ...
Selecting previously unselected package node-binary-extensions.
Preparing to unpack .../054-node-binary-extensions_2.2.0-2_all.deb ...
Unpacking node-binary-extensions (2.2.0-2) ...
Preparing to unpack .../055-node-chalk_5.2.0-1_all.deb ...
Unpacking node-chalk (5.2.0-1) over (4.1.0-1) ...
Selecting previously unselected package node-ci-info.
Preparing to unpack .../056-node-ci-info_3.6.1+~cs1.1.0-1_all.deb ...
Unpacking node-ci-info (3.6.1+~cs1.1.0-1) ...
Selecting previously unselected package node-cli-table.
Preparing to unpack .../057-node-cli-table_0.3.11+~cs0.13.4-3_all.deb ...
Unpacking node-cli-table (0.3.11+~cs0.13.4-3) ...
Selecting previously unselected package node-css-selector-tokenizer.
Preparing to unpack .../058-node-css-selector-tokenizer_0.8.0+~cs4.8.3-1_all.deb ...
Unpacking node-css-selector-tokenizer (0.8.0+~cs4.8.3-1) ...
Selecting previously unselected package node-diff.
Preparing to unpack .../059-node-diff_5.0.0~dfsg+~5.0.1-4_all.deb ...
Unpacking node-diff (5.0.0~dfsg+~5.0.1-4) ...
Selecting previously unselected package node-mimic-response.
Preparing to unpack .../060-node-mimic-response_3.1.0-8_all.deb ...
Unpacking node-mimic-response (3.1.0-8) ...
Selecting previously unselected package node-decompress-response.
Preparing to unpack .../061-node-decompress-response_6.0.0-2_all.deb ...
Unpacking node-decompress-response (6.0.0-2) ...
Selecting previously unselected package node-end-of-stream.
Preparing to unpack .../062-node-end-of-stream_1.4.4+~1.4.1-1_all.deb ...
Unpacking node-end-of-stream (1.4.4+~1.4.1-1) ...
Selecting previously unselected package node-pump.
Preparing to unpack .../063-node-pump_3.0.0-5_all.deb ...
Unpacking node-pump (3.0.0-5) ...
Selecting previously unselected package node-get-stream.
Preparing to unpack .../064-node-get-stream_6.0.1-1_all.deb ...
Unpacking node-get-stream (6.0.1-1) ...
Selecting previously unselected package node-lowercase-keys.
Preparing to unpack .../065-node-lowercase-keys_2.0.0-2_all.deb ...
Unpacking node-lowercase-keys (2.0.0-2) ...
Selecting previously unselected package node-json-buffer.
Preparing to unpack .../066-node-json-buffer_3.0.1+~3.0.0-1_all.deb ...
Unpacking node-json-buffer (3.0.1+~3.0.0-1) ...
Selecting previously unselected package node-p-cancelable.
Preparing to unpack .../067-node-p-cancelable_2.1.1-1_all.deb ...
Unpacking node-p-cancelable (2.1.1-1) ...
Selecting previously unselected package node-quick-lru.
Preparing to unpack .../068-node-quick-lru_6.1.1-4_all.deb ...
Unpacking node-quick-lru (6.1.1-4) ...
Selecting previously unselected package node-got.
Preparing to unpack .../069-node-got_11.8.5+~cs58.13.36-3_all.deb ...
Unpacking node-got (11.8.5+~cs58.13.36-3) ...
Selecting previously unselected package node-data-uri-to-buffer.
Preparing to unpack .../070-node-data-uri-to-buffer_4.0.0-3_all.deb ...
Unpacking node-data-uri-to-buffer (4.0.0-3) ...
Selecting previously unselected package node-fetch.
Preparing to unpack .../071-node-fetch_3.3.0+~cs11.4.11-2_all.deb ...
Unpacking node-fetch (3.3.0+~cs11.4.11-2) ...
Preparing to unpack .../072-node-nopt_5.0.0-4_all.deb ...
Unpacking node-nopt (5.0.0-4) over (5.0.0-1) ...
Preparing to unpack .../073-node-which_2.0.2+~cs1.3.2-3_all.deb ...
Unpacking node-which (2.0.2+~cs1.3.2-3) over (2.0.2+~cs1.3.2-1) ...
Preparing to unpack .../074-node-semver_7.3.5+~7.3.9-2_all.deb ...
Unpacking node-semver (7.3.5+~7.3.9-2) over (7.3.4-1) ...
Preparing to unpack .../075-node-gyp_9.3.0-2_all.deb ...
Unpacking node-gyp (9.3.0-2) over (7.1.2-4) ...
Preparing to unpack .../076-npm_9.2.0~ds1-1_all.deb ...
Unpacking npm (9.2.0~ds1-1) over (7.5.2+ds-2) ...
Preparing to unpack .../077-node-hosted-git-info_6.1.1-2_all.deb ...
Unpacking node-hosted-git-info (6.1.1-2) over (3.0.8-1) ...
Selecting previously unselected package node-ieee754.
Preparing to unpack .../078-node-ieee754_1.2.1-3_all.deb ...
Unpacking node-ieee754 (1.2.1-3) ...
Preparing to unpack .../079-node-ms_2.1.3+~cs0.7.31-3_all.deb ...
Unpacking node-ms (2.1.3+~cs0.7.31-3) over (2.1.3+~cs0.7.31-1) ...
Selecting previously unselected package node-negotiator.
Preparing to unpack .../080-node-negotiator_0.6.3+~0.6.1-1_all.deb ...
Unpacking node-negotiator (0.6.3+~0.6.1-1) ...
Preparing to unpack .../081-node-npm-package-arg_10.0.0+~3.0.0-2_all.deb ...
Unpacking node-npm-package-arg (10.0.0+~3.0.0-2) over (8.1.0-1) ...
Selecting previously unselected package node-camelcase.
Preparing to unpack .../082-node-camelcase_7.0.0-3_all.deb ...
Unpacking node-camelcase (7.0.0-3) ...
Selecting previously unselected package node-isobject.
Preparing to unpack .../083-node-isobject_4.0.0-2_all.deb ...
Unpacking node-isobject (4.0.0-2) ...
Selecting previously unselected package node-picocolors.
Preparing to unpack .../084-node-picocolors_1.0.0-4_all.deb ...
Unpacking node-picocolors (1.0.0-4) ...
Selecting previously unselected package node-postcss.
Preparing to unpack .../085-node-postcss_8.4.20+~cs8.0.23-1_all.deb ...
Unpacking node-postcss (8.4.20+~cs8.0.23-1) ...
Selecting previously unselected package node-icss-utils.
Preparing to unpack .../086-node-icss-utils_5.1.0+~5.1.0-1_all.deb ...
Unpacking node-icss-utils (5.1.0+~5.1.0-1) ...
Selecting previously unselected package node-postcss-modules-extract-imports.
Preparing to unpack .../087-node-postcss-modules-extract-imports_3.0.0-2_all.deb ...
Unpacking node-postcss-modules-extract-imports (3.0.0-2) ...
Selecting previously unselected package node-postcss-modules-values.
Preparing to unpack .../088-node-postcss-modules-values_4.0.0+~4.0.0-1_all.deb ...
Unpacking node-postcss-modules-values (4.0.0+~4.0.0-1) ...
Selecting previously unselected package node-postcss-value-parser.
Preparing to unpack .../089-node-postcss-value-parser_4.2.0-1_all.deb ...
Unpacking node-postcss-value-parser (4.2.0-1) ...
Selecting previously unselected package node-caniuse-lite.
Preparing to unpack .../090-node-caniuse-lite_1.0.30001436+dfsg+~1.0.1-1_all.deb ...
Unpacking node-caniuse-lite (1.0.30001436+dfsg+~1.0.1-1) ...
Selecting previously unselected package node-electron-to-chromium.
Preparing to unpack .../091-node-electron-to-chromium_1.4.284-1_all.deb ...
Unpacking node-electron-to-chromium (1.4.284-1) ...
Selecting previously unselected package node-browserslist.
Preparing to unpack .../092-node-browserslist_4.21.4+~cs6.1.17-2_all.deb ...
Unpacking node-browserslist (4.21.4+~cs6.1.17-2) ...
Selecting previously unselected package node-tslib.
Preparing to unpack .../093-node-tslib_2.4.1-1_all.deb ...
Unpacking node-tslib (2.4.1-1) ...
Selecting previously unselected package node-chrome-trace-event.
Preparing to unpack .../094-node-chrome-trace-event_1.0.3-2_all.deb ...
Unpacking node-chrome-trace-event (1.0.3-2) ...
Selecting previously unselected package node-commander.
Preparing to unpack .../095-node-commander_9.4.1-1_all.deb ...
Unpacking node-commander (9.4.1-1) ...
Selecting previously unselected package node-prr.
Preparing to unpack .../096-node-prr_1.0.1-3_all.deb ...
Unpacking node-prr (1.0.1-3) ...
Selecting previously unselected package node-errno.
Preparing to unpack .../097-node-errno_1.0.0-3_all.deb ...
Unpacking node-errno (1.0.0-3) ...
Selecting previously unselected package node-memory-fs.
Preparing to unpack .../098-node-memory-fs_0.5.0+~0.3.3-2_all.deb ...
Unpacking node-memory-fs (0.5.0+~0.3.3-2) ...
Selecting previously unselected package node-tapable.
Preparing to unpack .../099-node-tapable_2.2.1-2_all.deb ...
Unpacking node-tapable (2.2.1-2) ...
Selecting previously unselected package node-enhanced-resolve.
Preparing to unpack .../100-node-enhanced-resolve_5.10.0-1_all.deb ...
Unpacking node-enhanced-resolve (5.10.0-1) ...
Selecting previously unselected package node-es-module-lexer.
Preparing to unpack .../101-node-es-module-lexer_1.1.0+dfsg-2_all.deb ...
Unpacking node-es-module-lexer (1.1.0+dfsg-2) ...
Selecting previously unselected package node-ansi-escapes.
Preparing to unpack .../102-node-ansi-escapes_5.0.0+really.4.3.1-1_all.deb ...
Unpacking node-ansi-escapes (5.0.0+really.4.3.1-1) ...
Selecting previously unselected package node-ampproject-remapping.
Preparing to unpack .../103-node-ampproject-remapping_2.2.0+~cs5.15.37-1_all.deb ...
Unpacking node-ampproject-remapping (2.2.0+~cs5.15.37-1) ...
Selecting previously unselected package node-babel-plugin-add-module-exports.
Preparing to unpack .../104-node-babel-plugin-add-module-exports_1.0.4+dfsg1~cs5.8.0-4_all.deb ...
Unpacking node-babel-plugin-add-module-exports (1.0.4+dfsg1~cs5.8.0-4) ...
Selecting previously unselected package node-regenerator-runtime.
Preparing to unpack .../105-node-regenerator-runtime_0.15.1+~0.10.8-1_all.deb ...
Unpacking node-regenerator-runtime (0.15.1+~0.10.8-1) ...
Selecting previously unselected package node-babel7-runtime.
Preparing to unpack .../106-node-babel7-runtime_7.20.15+ds1+~cs214.269.168-3_all.deb ...
Unpacking node-babel7-runtime (7.20.15+ds1+~cs214.269.168-3) ...
Selecting previously unselected package node-lodash-packages.
Preparing to unpack .../107-node-lodash-packages_4.17.21+dfsg+~cs8.31.198.20210220-9_all.deb ...
Unpacking node-lodash-packages (4.17.21+dfsg+~cs8.31.198.20210220-9) ...
Selecting previously unselected package node-babel-helper-define-polyfill-provider.
Preparing to unpack .../108-node-babel-helper-define-polyfill-provider_0.3.3~0~20220913+ds1-1_all.deb ...
Unpacking node-babel-helper-define-polyfill-provider (0.3.3~0~20220913+ds1-1) ...
Selecting previously unselected package node-babel-plugin-polyfill-corejs2.
Preparing to unpack .../109-node-babel-plugin-polyfill-corejs2_0.3.3~0~20220913+ds1-1_all.deb ...
Unpacking node-babel-plugin-polyfill-corejs2 (0.3.3~0~20220913+ds1-1) ...
Selecting previously unselected package node-core-js-compat.
Preparing to unpack .../110-node-core-js-compat_3.26.1-3_all.deb ...
Unpacking node-core-js-compat (3.26.1-3) ...
Selecting previously unselected package node-babel-plugin-polyfill-corejs3.
Preparing to unpack .../111-node-babel-plugin-polyfill-corejs3_0.6.0~0~20220913+ds1-1_all.deb ...
Unpacking node-babel-plugin-polyfill-corejs3 (0.6.0~0~20220913+ds1-1) ...
Selecting previously unselected package node-babel-plugin-polyfill-regenerator.
Preparing to unpack .../112-node-babel-plugin-polyfill-regenerator_0.4.1~0~20220913+ds1-1_all.deb ...
Unpacking node-babel-plugin-polyfill-regenerator (0.4.1~0~20220913+ds1-1) ...
Selecting previously unselected package node-for-in.
Preparing to unpack .../113-node-for-in_1.0.2-4_all.deb ...
Unpacking node-for-in (1.0.2-4) ...
Selecting previously unselected package node-for-own.
Preparing to unpack .../114-node-for-own_1.0.0-3_all.deb ...
Unpacking node-for-own (1.0.0-3) ...
Selecting previously unselected package node-is-plain-object.
Preparing to unpack .../115-node-is-plain-object_5.0.0-7_all.deb ...
Unpacking node-is-plain-object (5.0.0-7) ...
Selecting previously unselected package node-is-extendable.
Preparing to unpack .../116-node-is-extendable_1.0.1-3_all.deb ...
Unpacking node-is-extendable (1.0.1-3) ...
Selecting previously unselected package node-is-buffer.
Preparing to unpack .../117-node-is-buffer_2.0.5-2_all.deb ...
Unpacking node-is-buffer (2.0.5-2) ...
Selecting previously unselected package node-kind-of.
Preparing to unpack .../118-node-kind-of_6.0.3+dfsg-2_all.deb ...
Unpacking node-kind-of (6.0.3+dfsg-2) ...
Selecting previously unselected package node-clone-deep.
Preparing to unpack .../119-node-clone-deep_4.0.1+~cs7.0.2-1_all.deb ...
Unpacking node-clone-deep (4.0.1+~cs7.0.2-1) ...
Selecting previously unselected package node-convert-source-map.
Preparing to unpack .../120-node-convert-source-map_1.9.0+~1.5.2-1_all.deb ...
Unpacking node-convert-source-map (1.9.0+~1.5.2-1) ...
Selecting previously unselected package node-core-js.
Preparing to unpack .../121-node-core-js_3.26.1-3_all.deb ...
Unpacking node-core-js (3.26.1-3) ...
Selecting previously unselected package node-core-js-pure.
Preparing to unpack .../122-node-core-js-pure_3.26.1-3_all.deb ...
Unpacking node-core-js-pure (3.26.1-3) ...
Selecting previously unselected package node-commondir.
Preparing to unpack .../123-node-commondir_1.0.1+~1.0.0-1_all.deb ...
Unpacking node-commondir (1.0.1+~1.0.0-1) ...
Selecting previously unselected package node-is-number.
Preparing to unpack .../124-node-is-number_7.0.0-4_all.deb ...
Unpacking node-is-number (7.0.0-4) ...
Selecting previously unselected package node-repeat-string.
Preparing to unpack .../125-node-repeat-string_1.6.1+repack-1_all.deb ...
Unpacking node-repeat-string (1.6.1+repack-1) ...
Selecting previously unselected package node-to-regex-range.
Preparing to unpack .../126-node-to-regex-range_5.0.1-4_all.deb ...
Unpacking node-to-regex-range (5.0.1-4) ...
Selecting previously unselected package node-fill-range.
Preparing to unpack .../127-node-fill-range_7.0.1+~7.0.0-1_all.deb ...
Unpacking node-fill-range (7.0.1+~7.0.0-1) ...
Selecting previously unselected package node-braces.
Preparing to unpack .../128-node-braces_3.0.2+~3.0.1-1_all.deb ...
Unpacking node-braces (3.0.2+~3.0.1-1) ...
Selecting previously unselected package node-normalize-path.
Preparing to unpack .../129-node-normalize-path_3.0.0+~3.0.0-1_all.deb ...
Unpacking node-normalize-path (3.0.0+~3.0.0-1) ...
Selecting previously unselected package node-anymatch.
Preparing to unpack .../130-node-anymatch_3.1.3+~cs4.6.1-2_all.deb ...
Unpacking node-anymatch (3.1.3+~cs4.6.1-2) ...
Selecting previously unselected package node-micromatch.
Preparing to unpack .../131-node-micromatch_4.0.5+~4.0.2-1_all.deb ...
Unpacking node-micromatch (4.0.5+~4.0.2-1) ...
Selecting previously unselected package node-pify.
Preparing to unpack .../132-node-pify_5.0.0+~cs5.0.1-1_all.deb ...
Unpacking node-pify (5.0.0+~cs5.0.1-1) ...
Selecting previously unselected package node-path-type.
Preparing to unpack .../133-node-path-type_4.0.0-3_all.deb ...
Unpacking node-path-type (4.0.0-3) ...
Selecting previously unselected package node-n3.
Preparing to unpack .../134-node-n3_1.16.3+~1.2.3+~1.10.4-1_all.deb ...
Unpacking node-n3 (1.16.3+~1.2.3+~1.10.4-1) ...
Selecting previously unselected package node-globby.
Preparing to unpack .../135-node-globby_13.1.3+~cs16.25.40-1_all.deb ...
Unpacking node-globby (13.1.3+~cs16.25.40-1) ...
Selecting previously unselected package node-is-path-cwd.
Preparing to unpack .../136-node-is-path-cwd_2.2.0-2_all.deb ...
Unpacking node-is-path-cwd (2.2.0-2) ...
Selecting previously unselected package node-path-is-inside.
Preparing to unpack .../137-node-path-is-inside_1.0.2+~1.0.0-1_all.deb ...
Unpacking node-path-is-inside (1.0.2+~1.0.0-1) ...
Selecting previously unselected package node-is-path-inside.
Preparing to unpack .../138-node-is-path-inside_3.0.3-2_all.deb ...
Unpacking node-is-path-inside (3.0.3-2) ...
Selecting previously unselected package node-del.
Preparing to unpack .../139-node-del_7.0.0-5_all.deb ...
Unpacking node-del (7.0.0-5) ...
Selecting previously unselected package node-make-dir.
Preparing to unpack .../140-node-make-dir_3.1.0-3_all.deb ...
Unpacking node-make-dir (3.1.0-3) ...
Selecting previously unselected package node-p-limit.
Preparing to unpack .../141-node-p-limit_4.0.0+~cs4.0.0-5_all.deb ...
Unpacking node-p-limit (4.0.0+~cs4.0.0-5) ...
Selecting previously unselected package node-p-locate.
Preparing to unpack .../142-node-p-locate_6.0.0-12_all.deb ...
Unpacking node-p-locate (6.0.0-12) ...
Selecting previously unselected package node-locate-path.
Preparing to unpack .../143-node-locate-path_7.1.1-2_all.deb ...
Unpacking node-locate-path (7.1.1-2) ...
Selecting previously unselected package node-path-exists.
Preparing to unpack .../144-node-path-exists_5.0.0-8_all.deb ...
Unpacking node-path-exists (5.0.0-8) ...
Selecting previously unselected package node-find-up.
Preparing to unpack .../145-node-find-up_6.3.0-7_all.deb ...
Unpacking node-find-up (6.3.0-7) ...
Selecting previously unselected package node-pkg-dir.
Preparing to unpack .../146-node-pkg-dir_5.0.0-2_all.deb ...
Unpacking node-pkg-dir (5.0.0-2) ...
Selecting previously unselected package node-find-cache-dir.
Preparing to unpack .../147-node-find-cache-dir_3.3.2+~3.2.1-1_all.deb ...
Unpacking node-find-cache-dir (3.3.2+~3.2.1-1) ...
Selecting previously unselected package node-fs-readdir-recursive.
Preparing to unpack .../148-node-fs-readdir-recursive_1.1.0+~1.1.0-1_all.deb ...
Unpacking node-fs-readdir-recursive (1.1.0+~1.1.0-1) ...
Selecting previously unselected package node-js-tokens.
Preparing to unpack .../149-node-js-tokens_8.0.0-2_all.deb ...
Unpacking node-js-tokens (8.0.0-2) ...
Selecting previously unselected package node-jsesc.
Preparing to unpack .../150-node-jsesc_3.0.2+~3.0.1-1_all.deb ...
Unpacking node-jsesc (3.0.2+~3.0.1-1) ...
Selecting previously unselected package node-json5.
Preparing to unpack .../151-node-json5_2.2.3+dfsg-1_all.deb ...
Unpacking node-json5 (2.2.3+dfsg-1) ...
Selecting previously unselected package node-regenerator-transform.
Preparing to unpack .../152-node-regenerator-transform_0.15.1+~0.10.8-1_all.deb ...
Unpacking node-regenerator-transform (0.15.1+~0.10.8-1) ...
Selecting previously unselected package node-regjsgen.
Preparing to unpack .../153-node-regjsgen_0.7.1+ds-1_all.deb ...
Unpacking node-regjsgen (0.7.1+ds-1) ...
Selecting previously unselected package node-regjsparser.
Preparing to unpack .../154-node-regjsparser_0.9.1+ds-2_all.deb ...
Unpacking node-regjsparser (0.9.1+ds-2) ...
Selecting previously unselected package node-unicode-canonical-property-names-ecmascript.
Preparing to unpack .../155-node-unicode-canonical-property-names-ecmascript_2.0.0-2_all.deb ...
Unpacking node-unicode-canonical-property-names-ecmascript (2.0.0-2) ...
Selecting previously unselected package node-unicode-property-aliases-ecmascript.
Preparing to unpack .../156-node-unicode-property-aliases-ecmascript_2.1.0+ds-1_all.deb ...
Unpacking node-unicode-property-aliases-ecmascript (2.1.0+ds-1) ...
Selecting previously unselected package node-unicode-match-property-ecmascript.
Preparing to unpack .../157-node-unicode-match-property-ecmascript_2.0.0-2_all.deb ...
Unpacking node-unicode-match-property-ecmascript (2.0.0-2) ...
Selecting previously unselected package node-unicode-match-property-value-ecmascript.
Preparing to unpack .../158-node-unicode-match-property-value-ecmascript_2.1.0+ds-1_all.deb ...
Unpacking node-unicode-match-property-value-ecmascript (2.1.0+ds-1) ...
Selecting previously unselected package node-regexpu-core.
Preparing to unpack .../159-node-regexpu-core_5.2.2-3_all.deb ...
Unpacking node-regexpu-core (5.2.2-3) ...
Selecting previously unselected package libjs-source-map.
Preparing to unpack .../160-libjs-source-map_0.7.0++dfsg2+really.0.6.1-15_all.deb ...
Unpacking libjs-source-map (0.7.0++dfsg2+really.0.6.1-15) ...
Selecting previously unselected package node-source-map.
Preparing to unpack .../161-node-source-map_0.7.0++dfsg2+really.0.6.1-15_all.deb ...
Unpacking node-source-map (0.7.0++dfsg2+really.0.6.1-15) ...
Selecting previously unselected package node-source-map-support.
Preparing to unpack .../162-node-source-map-support_0.5.21+ds+~0.5.4-1_all.deb ...
Unpacking node-source-map-support (0.5.21+ds+~0.5.4-1) ...
Selecting previously unselected package node-to-fast-properties.
Preparing to unpack .../163-node-to-fast-properties_3.0.1-3_all.deb ...
Unpacking node-to-fast-properties (3.0.1-3) ...
Selecting previously unselected package node-v8flags.
Preparing to unpack .../164-node-v8flags_3.2.0+~3.1.1-1_all.deb ...
Unpacking node-v8flags (3.2.0+~3.1.1-1) ...
Selecting previously unselected package node-babel7.
Preparing to unpack .../165-node-babel7_7.20.15+ds1+~cs214.269.168-3_all.deb ...
Unpacking node-babel7 (7.20.15+ds1+~cs214.269.168-3) ...
Selecting previously unselected package node-babel-plugin-lodash.
Preparing to unpack .../166-node-babel-plugin-lodash_3.3.4+~cs2.0.1-6_all.deb ...
Unpacking node-babel-plugin-lodash (3.3.4+~cs2.0.1-6) ...
Selecting previously unselected package node-resolve-cwd.
Preparing to unpack .../167-node-resolve-cwd_3.0.0-2_all.deb ...
Unpacking node-resolve-cwd (3.0.0-2) ...
Preparing to unpack .../168-node-strip-ansi_6.0.1-2_all.deb ...
Unpacking node-strip-ansi (6.0.1-2) over (6.0.0-2) ...
Selecting previously unselected package node-jest-debbundle.
Preparing to unpack .../169-node-jest-debbundle_29.3.1~ds1+~cs70.48.25-2_all.deb ...
Unpacking node-jest-debbundle (29.3.1~ds1+~cs70.48.25-2) ...
Selecting previously unselected package node-interpret.
Preparing to unpack .../170-node-interpret_2.2.0-3_all.deb ...
Unpacking node-interpret (2.2.0-3) ...
Selecting previously unselected package node-merge-stream.
Preparing to unpack .../171-node-merge-stream_2.0.0+~1.1.2-2_all.deb ...
Unpacking node-merge-stream (2.0.0+~1.1.2-2) ...
Selecting previously unselected package node-jest-worker.
Preparing to unpack .../172-node-jest-worker_29.3.1~ds1+~cs70.48.25-2_all.deb ...
Unpacking node-jest-worker (29.3.1~ds1+~cs70.48.25-2) ...
Selecting previously unselected package node-loader-runner.
Preparing to unpack .../173-node-loader-runner_4.3.0-1_all.deb ...
Unpacking node-loader-runner (4.3.0-1) ...
Selecting previously unselected package node-neo-async.
Preparing to unpack .../174-node-neo-async_2.6.2+~cs3.0.0-2_all.deb ...
Unpacking node-neo-async (2.6.2+~cs3.0.0-2) ...
Selecting previously unselected package node-rechoir.
Preparing to unpack .../175-node-rechoir_0.8.0+~0.6.1-2_all.deb ...
Unpacking node-rechoir (0.8.0+~0.6.1-2) ...
Selecting previously unselected package node-ajv-keywords.
Preparing to unpack .../176-node-ajv-keywords_3.5.2-2_all.deb ...
Unpacking node-ajv-keywords (3.5.2-2) ...
Selecting previously unselected package node-schema-utils.
Preparing to unpack .../177-node-schema-utils_3.1.1~ds-2_all.deb ...
Unpacking node-schema-utils (3.1.1~ds-2) ...
Selecting previously unselected package node-randombytes.
Preparing to unpack .../178-node-randombytes_2.1.0+~2.0.0-2_all.deb ...
Unpacking node-randombytes (2.1.0+~2.0.0-2) ...
Selecting previously unselected package node-serialize-javascript.
Preparing to unpack .../179-node-serialize-javascript_6.0.0-2_all.deb ...
Unpacking node-serialize-javascript (6.0.0-2) ...
Selecting previously unselected package node-async-each.
Preparing to unpack .../180-node-async-each_1.0.3-3_all.deb ...
Unpacking node-async-each (1.0.3-3) ...
Selecting previously unselected package node-is-binary-path.
Preparing to unpack .../181-node-is-binary-path_2.1.0-5_all.deb ...
Unpacking node-is-binary-path (2.1.0-5) ...
Selecting previously unselected package node-set-immediate-shim.
Preparing to unpack .../182-node-set-immediate-shim_2.0.0-2_all.deb ...
Unpacking node-set-immediate-shim (2.0.0-2) ...
Selecting previously unselected package node-readdirp.
Preparing to unpack .../183-node-readdirp_3.6.0-1_all.deb ...
Unpacking node-readdirp (3.6.0-1) ...
Selecting previously unselected package node-chokidar.
Preparing to unpack .../184-node-chokidar_3.5.3-2_all.deb ...
Unpacking node-chokidar (3.5.3-2) ...
Selecting previously unselected package node-watchpack.
Preparing to unpack .../185-node-watchpack_2.4.0+~cs2.8.1-1_all.deb ...
Unpacking node-watchpack (2.4.0+~cs2.8.1-1) ...
Selecting previously unselected package node-define-properties.
Preparing to unpack .../186-node-define-properties_1.1.4+~1.1.3-1_all.deb ...
Unpacking node-define-properties (1.1.4+~1.1.3-1) ...
Selecting previously unselected package node-defined.
Preparing to unpack .../187-node-defined_1.0.1+~1.0.0-1_all.deb ...
Unpacking node-defined (1.0.1+~1.0.0-1) ...
Selecting previously unselected package node-arrify.
Preparing to unpack .../188-node-arrify_2.0.1-3_all.deb ...
Unpacking node-arrify (2.0.1-3) ...
Selecting previously unselected package node-is-plain-obj.
Preparing to unpack .../189-node-is-plain-obj_3.0.0-2_all.deb ...
Unpacking node-is-plain-obj (3.0.0-2) ...
Selecting previously unselected package node-minimist.
Preparing to unpack .../190-node-minimist_1.2.7+~cs5.3.2-2_all.deb ...
Unpacking node-minimist (1.2.7+~cs5.3.2-2) ...
Selecting previously unselected package node-wordwrap.
Preparing to unpack .../191-node-wordwrap_1.0.0-4_all.deb ...
Unpacking node-wordwrap (1.0.0-4) ...
Selecting previously unselected package node-optimist.
Preparing to unpack .../192-node-optimist_0.6.1+~0.0.30-2_all.deb ...
Unpacking node-optimist (0.6.1+~0.0.30-2) ...
Selecting previously unselected package handlebars.
Preparing to unpack .../193-handlebars_3%3a4.7.7+~4.1.0-1_all.deb ...
Unpacking handlebars (3:4.7.7+~4.1.0-1) ...
Selecting previously unselected package libjs-prettify.
Preparing to unpack .../194-libjs-prettify_2015.12.04+dfsg-1.1_all.deb ...
Unpacking libjs-prettify (2015.12.04+dfsg-1.1) ...
Selecting previously unselected package libjs-async.
Preparing to unpack .../195-libjs-async_0.8.0-6_all.deb ...
Unpacking libjs-async (0.8.0-6) ...
Selecting previously unselected package node-async.
Preparing to unpack .../196-node-async_0.8.0-6_all.deb ...
Unpacking node-async (0.8.0-6) ...
Selecting previously unselected package node-decamelize.
Preparing to unpack .../197-node-decamelize_4.0.0-2_all.deb ...
Unpacking node-decamelize (4.0.0-2) ...
Selecting previously unselected package node-es6-error.
Preparing to unpack .../198-node-es6-error_4.1.1-5_all.deb ...
Unpacking node-es6-error (4.1.1-5) ...
Selecting previously unselected package node-esprima.
Preparing to unpack .../199-node-esprima_4.0.1+ds+~4.0.3-2_all.deb ...
Unpacking node-esprima (4.0.1+ds+~4.0.3-2) ...
Selecting previously unselected package node-escodegen.
Preparing to unpack .../200-node-escodegen_2.0.0+dfsg+~0.0.7-2_all.deb ...
Unpacking node-escodegen (2.0.0+dfsg+~0.0.7-2) ...
Selecting previously unselected package node-foreground-child.
Preparing to unpack .../201-node-foreground-child_2.0.0-5_all.deb ...
Unpacking node-foreground-child (2.0.0-5) ...
Selecting previously unselected package node-is-stream.
Preparing to unpack .../202-node-is-stream_3.0.0-4_all.deb ...
Unpacking node-is-stream (3.0.0-4) ...
Selecting previously unselected package node-is-windows.
Preparing to unpack .../203-node-is-windows_1.0.2+~cs1.0.0-1_all.deb ...
Unpacking node-is-windows (1.0.2+~cs1.0.0-1) ...
Selecting previously unselected package libjs-sprintf-js.
Preparing to unpack .../204-libjs-sprintf-js_1.1.2+ds1+~1.1.2-1_all.deb ...
Unpacking libjs-sprintf-js (1.1.2+ds1+~1.1.2-1) ...
Selecting previously unselected package node-sprintf-js.
Preparing to unpack .../205-node-sprintf-js_1.1.2+ds1+~1.1.2-1_all.deb ...
Unpacking node-sprintf-js (1.1.2+ds1+~1.1.2-1) ...
Selecting previously unselected package node-argparse.
Preparing to unpack .../206-node-argparse_2.0.1-2_all.deb ...
Unpacking node-argparse (2.0.1-2) ...
Selecting previously unselected package node-js-yaml.
Preparing to unpack .../207-node-js-yaml_4.1.0+dfsg+~4.0.5-7_all.deb ...
Unpacking node-js-yaml (4.1.0+dfsg+~4.0.5-7) ...
Selecting previously unselected package node-npm-run-path.
Preparing to unpack .../208-node-npm-run-path_5.1.0+~4.0.0-8_all.deb ...
Unpacking node-npm-run-path (5.1.0+~4.0.0-8) ...
Selecting previously unselected package node-shebang-regex.
Preparing to unpack .../209-node-shebang-regex_3.0.0-2_all.deb ...
Unpacking node-shebang-regex (3.0.0-2) ...
Selecting previously unselected package node-shebang-command.
Preparing to unpack .../210-node-shebang-command_2.0.0-1_all.deb ...
Unpacking node-shebang-command (2.0.0-1) ...
Selecting previously unselected package node-strip-bom.
Preparing to unpack .../211-node-strip-bom_4.0.0-2_all.deb ...
Unpacking node-strip-bom (4.0.0-2) ...
Selecting previously unselected package libjs-util.
Preparing to unpack .../212-libjs-util_0.12.5+~1.0.10-1_all.deb ...
Unpacking libjs-util (0.12.5+~1.0.10-1) ...
Selecting previously unselected package node-util.
Preparing to unpack .../213-node-util_0.12.5+~1.0.10-1_all.deb ...
Unpacking node-util (0.12.5+~1.0.10-1) ...
Selecting previously unselected package node-assert.
Preparing to unpack .../214-node-assert_2.0.0+~cs3.9.8-2_all.deb ...
Unpacking node-assert (2.0.0+~cs3.9.8-2) ...
Selecting previously unselected package node-is-arrayish.
Preparing to unpack .../215-node-is-arrayish_0.3.2-3_all.deb ...
Unpacking node-is-arrayish (0.3.2-3) ...
Selecting previously unselected package node-error-ex.
Preparing to unpack .../216-node-error-ex_1.3.2-4_all.deb ...
Unpacking node-error-ex (1.3.2-4) ...
Selecting previously unselected package node-parse-json.
Preparing to unpack .../217-node-parse-json_5.2.0+~cs5.1.7-1_all.deb ...
Unpacking node-parse-json (5.2.0+~cs5.1.7-1) ...
Selecting previously unselected package node-read-pkg.
Preparing to unpack .../218-node-read-pkg_5.2.0-2_all.deb ...
Unpacking node-read-pkg (5.2.0-2) ...
Selecting previously unselected package node-wrap-ansi.
Preparing to unpack .../219-node-wrap-ansi_8.0.1+~8.0.1-3_all.deb ...
Unpacking node-wrap-ansi (8.0.1+~8.0.1-3) ...
Selecting previously unselected package node-cliui.
Preparing to unpack .../220-node-cliui_7.0.4+repack+~cs3.1.0-4_all.deb ...
Unpacking node-cliui (7.0.4+repack+~cs3.1.0-4) ...
Selecting previously unselected package node-get-caller-file.
Preparing to unpack .../221-node-get-caller-file_2.0.5+~cs1.1.1-4_all.deb ...
Unpacking node-get-caller-file (2.0.5+~cs1.1.1-4) ...
Selecting previously unselected package node-require-directory.
Preparing to unpack .../222-node-require-directory_2.1.1+~2.1.2-1_all.deb ...
Unpacking node-require-directory (2.1.1+~2.1.2-1) ...
Selecting previously unselected package node-y18n.
Preparing to unpack .../223-node-y18n_5.0.8+~5.0.0-3_all.deb ...
Unpacking node-y18n (5.0.8+~5.0.0-3) ...
Selecting previously unselected package node-yargs-parser.
Preparing to unpack .../224-node-yargs-parser_21.1.1+~21.0.0-4_all.deb ...
Unpacking node-yargs-parser (21.1.1+~21.0.0-4) ...
Selecting previously unselected package node-yargs.
Preparing to unpack .../225-node-yargs_16.2.0+~16.0.4-7_all.deb ...
Unpacking node-yargs (16.2.0+~16.0.4-7) ...
Selecting previously unselected package node-istanbul.
Preparing to unpack .../226-node-istanbul_0.4.5+repack10+~cs97.25.57-3_all.deb ...
Unpacking node-istanbul (0.4.5+repack10+~cs97.25.57-3) ...
Selecting previously unselected package node-object-inspect.
Preparing to unpack .../227-node-object-inspect_1.12.2+~cs1.8.1-1_all.deb ...
Unpacking node-object-inspect (1.12.2+~cs1.8.1-1) ...
Selecting previously unselected package node-resumer.
Preparing to unpack .../228-node-resumer_0.0.0-6_all.deb ...
Unpacking node-resumer (0.0.0-6) ...
Selecting previously unselected package node-tape.
Preparing to unpack .../229-node-tape_5.6.1+~cs8.20.19-1_all.deb ...
Unpacking node-tape (5.6.1+~cs8.20.19-1) ...
Selecting previously unselected package node-deep-equal.
Preparing to unpack .../230-node-deep-equal_2.1.0+~cs31.12.80-1_all.deb ...
Unpacking node-deep-equal (2.1.0+~cs31.12.80-1) ...
Selecting previously unselected package node-debbundle-es-to-primitive.
Preparing to unpack .../231-node-debbundle-es-to-primitive_1.2.1+~cs9.7.25-2_all.deb ...
Unpacking node-debbundle-es-to-primitive (1.2.1+~cs9.7.25-2) ...
Selecting previously unselected package node-es-abstract.
Preparing to unpack .../232-node-es-abstract_1.20.4+~cs26.27.47-1_all.deb ...
Unpacking node-es-abstract (1.20.4+~cs26.27.47-1) ...
Selecting previously unselected package node-webassemblyjs.
Preparing to unpack .../233-node-webassemblyjs_1.11.4+dfsg+~cs10.11.17-2_all.deb ...
Unpacking node-webassemblyjs (1.11.4+dfsg+~cs10.11.17-2) ...
Selecting previously unselected package node-source-list-map.
Preparing to unpack .../234-node-source-list-map_2.0.1+dfsg-2_all.deb ...
Unpacking node-source-list-map (2.0.1+dfsg-2) ...
Selecting previously unselected package node-webpack-sources.
Preparing to unpack .../235-node-webpack-sources_3.2.3+~3.2.0-2_all.deb ...
Unpacking node-webpack-sources (3.2.3+~3.2.0-2) ...
Selecting previously unselected package node-terser.
Preparing to unpack .../236-node-terser_5.16.5-2_all.deb ...
Unpacking node-terser (5.16.5-2) ...
Selecting previously unselected package terser.
Preparing to unpack .../237-terser_5.16.5-2_all.deb ...
Unpacking terser (5.16.5-2) ...
Selecting previously unselected package webpack.
Preparing to unpack .../238-webpack_5.75.0+dfsg+~cs17.16.14-1+deb12u1_all.deb ...
Unpacking webpack (5.75.0+dfsg+~cs17.16.14-1+deb12u1) ...
Selecting previously unselected package node-css-loader.
Preparing to unpack .../239-node-css-loader_6.7.2+~cs14.0.11-1_all.deb ...
Unpacking node-css-loader (6.7.2+~cs14.0.11-1) ...
Preparing to unpack .../240-node-cacache_17.0.3+~cs10.3.7-1_all.deb ...
Unpacking node-cacache (17.0.3+~cs10.3.7-1) over (15.0.5+~cs13.9.21-1) ...
Preparing to unpack .../241-node-lru-cache_7.14.1-1_all.deb ...
Unpacking node-lru-cache (7.14.1-1) over (5.1.1-5) ...
Selecting previously unselected package node-strip-json-comments.
Preparing to unpack .../242-node-strip-json-comments_4.0.0-4_all.deb ...
Unpacking node-strip-json-comments (4.0.0-4) ...
Selecting previously unselected package node-v8-compile-cache.
Preparing to unpack .../243-node-v8-compile-cache_2.3.0-3_all.deb ...
Unpacking node-v8-compile-cache (2.3.0-3) ...
Selecting previously unselected package eslint.
Preparing to unpack .../244-eslint_6.4.0~dfsg+~6.1.9-7_all.deb ...
Unpacking eslint (6.4.0~dfsg+~6.1.9-7) ...
Preparing to unpack .../245-iotop_0.6-42-ga14256a-0.1+b1_armhf.deb ...
Unpacking iotop (0.6-42-ga14256a-0.1+b1) over (0.6-24-g733f3f8-1.1) ...
Preparing to unpack .../246-libcob5-dev_4.0~early~20200606-6_armhf.deb ...
Unpacking libcob5-dev:armhf (4.0~early~20200606-6) over (4.0~early~20200606-3+b2) ...
Preparing to unpack .../247-libcob5_4.0~early~20200606-6_armhf.deb ...
Unpacking libcob5:armhf (4.0~early~20200606-6) over (4.0~early~20200606-3+b2) ...
Selecting previously unselected package libspectre1:armhf.
Preparing to unpack .../248-libspectre1_0.2.12-1_armhf.deb ...
Unpacking libspectre1:armhf (0.2.12-1) ...
Preparing to unpack .../249-libimlib2_1.10.0-4_armhf.deb ...
Unpacking libimlib2:armhf (1.10.0-4) over (1.7.1-2) ...
Selecting previously unselected package mesa-utils-bin:armhf.
Preparing to unpack .../250-mesa-utils-bin_8.5.0-1_armhf.deb ...
Unpacking mesa-utils-bin:armhf (8.5.0-1) ...
Preparing to unpack .../251-mesa-utils_8.5.0-1_armhf.deb ...
Unpacking mesa-utils (8.5.0-1) over (8.4.0-1+b1) ...
Preparing to unpack .../252-node-assert-plus_1.0.0-4_all.deb ...
Unpacking node-assert-plus (1.0.0-4) over (1.0.0-2) ...
Preparing to unpack .../253-node-tweetnacl_1.0.3+dfsg-3_all.deb ...
Unpacking node-tweetnacl (1.0.3+dfsg-3) over (1.0.3+dfsg-1) ...
Preparing to unpack .../254-node-bcrypt-pbkdf_1.0.2-3_all.deb ...
Unpacking node-bcrypt-pbkdf (1.0.2-3) over (1.0.2-1) ...
Preparing to unpack .../255-node-getpass_0.1.7-3_all.deb ...
Unpacking node-getpass (0.1.7-3) over (0.1.7-1.1) ...
Preparing to unpack .../256-node-jsonstream_1.3.5-3_all.deb ...
Unpacking node-jsonstream (1.3.5-3) over (1.3.5-1) ...
Preparing to unpack .../257-node-mime_3.0.0+dfsg+~cs3.97.1-1_all.deb ...
Unpacking node-mime (3.0.0+dfsg+~cs3.97.1-1) over (2.5.0+dfsg+~cs3.90.0-1) ...
Preparing to unpack .../258-node-opener_1.5.2+~1.4.0-1_all.deb ...
Unpacking node-opener (1.5.2+~1.4.0-1) over (1.5.2-1) ...
Preparing to unpack .../259-node-puka_1.0.1+dfsg-3_all.deb ...
Unpacking node-puka (1.0.1+dfsg-3) over (1.0.1+dfsg-2) ...
Preparing to unpack .../260-node-punycode_2.1.1-6_all.deb ...
Unpacking node-punycode (2.1.1-6) over (2.1.1-3) ...
Preparing to unpack .../261-node-qs_6.11.0+ds+~6.9.7-3_all.deb ...
Unpacking node-qs (6.11.0+ds+~6.9.7-3) over (6.9.4+ds-1+deb11u1) ...
Preparing to unpack .../262-node-sshpk_1.17.0+dfsg-2_all.deb ...
Unpacking node-sshpk (1.17.0+dfsg-2) over (1.16.1+dfsg-2) ...
Preparing to unpack .../263-node-verror_1.10.1+~1.10.5-2_all.deb ...
Unpacking node-verror (1.10.1+~1.10.5-2) over (1.10.0-1.1) ...
Preparing to unpack .../264-xserver-xorg-input-libinput_1.2.1-1_armhf.deb ...
Unpacking xserver-xorg-input-libinput (1.2.1-1) over (0.30.0-1) ...
Setting up node-ampproject-remapping (2.2.0+~cs5.15.37-1) ...
Setting up node-diff (5.0.0~dfsg+~5.0.1-4) ...
Setting up python3.11 (3.11.2-6) ...
Setting up node-lru-cache (7.14.1-1) ...
Setting up python3-setuptools-whl (66.1.1-1) ...
Setting up node-path-is-inside (1.0.2+~1.0.0-1) ...
Setting up libjs-sprintf-js (1.1.2+ds1+~1.1.2-1) ...
Setting up node-pify (5.0.0+~cs5.0.1-1) ...
Setting up node-end-of-stream (1.4.4+~1.4.1-1) ...
Setting up node-p-limit (4.0.0+~cs4.0.0-5) ...
Setting up node-p-cancelable (2.1.1-1) ...
Setting up node-is-windows (1.0.2+~cs1.0.0-1) ...
Setting up node-pump (3.0.0-5) ...
Setting up node-loader-runner (4.3.0-1) ...
Setting up node-object-inspect (1.12.2+~cs1.8.1-1) ...
Setting up node-n3 (1.16.3+~1.2.3+~1.10.4-1) ...
Setting up libcob5:armhf (4.0~early~20200606-6) ...
Setting up node-ieee754 (1.2.1-3) ...
Setting up node-fs-readdir-recursive (1.1.0+~1.1.0-1) ...
Setting up node-v8flags (3.2.0+~3.1.1-1) ...
Setting up node-get-caller-file (2.0.5+~cs1.1.1-4) ...
Setting up python3-pip-whl (23.0.1+dfsg-1) ...
Setting up node-arrify (2.0.1-3) ...
Setting up node-eslint-visitor-keys (3.3.0+~1.0.0-1) ...
Setting up node-caniuse-lite (1.0.30001436+dfsg+~1.0.1-1) ...
Setting up node-isobject (4.0.0-2) ...
Setting up libtdb1:armhf (1.4.8-2) ...
Setting up rpi.gpio-common:armhf (0.7.1~a4-1+b2) ...
Setting up libgs-common (10.0.0~dfsg-11+deb12u1) ...
Setting up node-core-js-pure (3.26.1-3) ...
Setting up node-es-module-lexer (1.1.0+dfsg-2) ...
Setting up node-path-exists (5.0.0-8) ...
Setting up node-unicode-match-property-value-ecmascript (2.1.0+ds-1) ...
Setting up libjs-source-map (0.7.0++dfsg2+really.0.6.1-15) ...
Setting up node-p-locate (6.0.0-12) ...
Setting up node-negotiator (0.6.3+~0.6.1-1) ...
Setting up node-tslib (2.4.1-1) ...
Setting up node-strip-bom (4.0.0-2) ...
Setting up libfilezilla-common (0.41.0-2) ...
Setting up node-ci-info (3.6.1+~cs1.1.0-1) ...
Setting up node-chrome-trace-event (1.0.3-2) ...
Setting up node-json-buffer (3.0.1+~3.0.0-1) ...
Setting up node-electron-to-chromium (1.4.284-1) ...
Setting up node-cjs-module-lexer (1.2.2+dfsg-5) ...
Setting up node-source-list-map (2.0.1+dfsg-2) ...
Setting up node-camelcase (7.0.0-3) ...
Setting up node-resumer (0.0.0-6) ...
Setting up samba-common (2:4.17.8+dfsg-2) ...
Setting up libcob5-dev:armhf (4.0~early~20200606-6) ...
Setting up libwxbase3.2-1:armhf (3.2.2+dfsg-2) ...
Setting up node-terser (5.16.5-2) ...
Setting up node-path-type (4.0.0-3) ...
Setting up libwbclient0:armhf (2:4.17.8+dfsg-2) ...
Setting up node-typedarray (0.0.7-1) ...
Setting up node-estraverse (5.3.0+ds+~5.1.1-1) ...
Setting up node-regjsgen (0.7.1+ds-1) ...
Setting up libtalloc2:armhf (2.4.0-f2) ...
Setting up node-lodash-packages (4.17.21+dfsg+~cs8.31.198.20210220-9) ...
Setting up node-resolve-cwd (3.0.0-2) ...
Setting up node-locate-path (7.1.1-2) ...
Setting up node-postcss-value-parser (4.2.0-1) ...
Setting up node-rechoir (0.8.0+~0.6.1-2) ...
Setting up node-unicode-canonical-property-names-ecmascript (2.0.0-2) ...
Setting up node-sprintf-js (1.1.2+ds1+~1.1.2-1) ...
Setting up libtevent0:armhf (0.14.1-1) ...
Setting up node-flatted (3.2.7~ds-1) ...
Setting up node-y18n (5.0.8+~5.0.0-3) ...
Setting up node-shebang-regex (3.0.0-2) ...
Setting up mesa-utils-bin:armhf (8.5.0-1) ...
Setting up node-convert-source-map (1.9.0+~1.5.2-1) ...
Setting up libpython3.11-dev:armhf (3.11.2-6) ...
Setting up node-is-stream (3.0.0-4) ...
Setting up node-get-stream (6.0.1-1) ...
Setting up filezilla-common (3.63.0-1) ...
Setting up node-js-tokens (8.0.0-2) ...
Setting up node-core-js (3.26.1-3) ...
Setting up node-interpret (2.2.0-3) ...
Setting up node-prr (1.0.1-3) ...
Setting up node-repeat-string (1.6.1+repack-1) ...
Setting up libidn12:armhf (1.41-1+b1) ...
Setting up node-globals (13.18.0-1) ...
Setting up node-deep-is (0.1.4-1) ...
Setting up node-randombytes (2.1.0+~2.0.0-2) ...
Setting up libsepol-dev:armhf (3.4-2.1) ...
Setting up node-source-map (0.7.0++dfsg2+really.0.6.1-15) ...
Setting up node-require-directory (2.1.1+~2.1.2-1) ...
Setting up node-quick-lru (6.1.1-4) ...
Setting up node-regenerator-runtime (0.15.1+~0.10.8-1) ...
Setting up node-concat-stream (2.0.0+~2.0.0-2) ...
Setting up node-cli-table (0.3.11+~cs0.13.4-3) ...
Setting up node-to-fast-properties (3.0.1-3) ...
Setting up node-memfs (3.4.12+~cs1.0.3-1) ...
Setting up node-mimic-response (3.1.0-8) ...
Setting up node-commander (9.4.1-1) ...
Setting up gimp-data (2.10.34-1) ...
Installing new version of config file /etc/gimp/2.0/gimprc ...
Setting up node-merge-stream (2.0.0+~1.1.2-2) ...
Setting up node-is-path-cwd (2.2.0-2) ...
Setting up node-fast-levenshtein (2.0.6+ds-3) ...
Setting up libjs-regenerate (1.4.2-3) ...
Setting up node-hosted-git-info (6.1.1-2) ...
Setting up node-unicode-property-aliases-ecmascript (2.1.0+ds-1) ...
Setting up node-binary-extensions (2.2.0-2) ...
Setting up node-is-plain-object (5.0.0-7) ...
Setting up node-eslint-utils (3.0.0-3) ...
Setting up node-path-dirname (1.0.2-2) ...
Setting up node-esutils (2.0.3+~2.0.0-1) ...
Setting up libfilezilla34:armhf (0.41.0-2) ...
Setting up node-commondir (1.0.1+~1.0.0-1) ...
Setting up libjs-prettify (2015.12.04+dfsg-1.1) ...
Setting up libgimp2.0:armhf (2.10.34-1) ...
Setting up node-prelude-ls (1.2.1+dfsg-3) ...
Setting up liburing2:armhf (2.3-3) ...
Setting up libjs-async (0.8.0-6) ...
Setting up node-xtend (4.0.2-3) ...
Setting up node-set-immediate-shim (2.0.0-2) ...
Setting up node-foreground-child (2.0.0-5) ...
Setting up node-wordwrap (1.0.0-4) ...
Setting up libldb2:armhf (2:2.6.2+samba4.17.8+dfsg-2) ...
Setting up node-regexpp (3.2.0-4) ...
Setting up node-is-arrayish (0.3.2-3) ...
Setting up node-base64-js (1.5.1+dfsg+~1.3.0-2) ...
Setting up node-esquery (1.4.2~ds-1) ...
Setting up node-npm-run-path (5.1.0+~4.0.0-8) ...
Setting up node-is-buffer (2.0.5-2) ...
Setting up node-data-uri-to-buffer (4.0.0-3) ...
Setting up node-async-each (1.0.3-3) ...
Setting up node-is-plain-obj (3.0.0-2) ...
Setting up node-is-extglob (2.1.1-5) ...
Setting up libpython3-stdlib:armhf (3.11.2-1) ...
Setting up node-tapable (2.2.1-2) ...
Setting up node-shebang-command (2.0.0-1) ...
Setting up node-lowercase-keys (2.0.0-2) ...
Setting up libwacom-common (2.6.0-1) ...
Setting up node-babel-plugin-add-module-exports (1.0.4+dfsg1~cs5.8.0-4) ...
Setting up node-decompress-response (6.0.0-2) ...
Setting up node-busboy (1.6.0+~cs2.6.0-2) ...
Setting up libgs9-common (10.0.0~dfsg-11+deb12u1) ...
Setting up libgs10-common (10.0.0~dfsg-11+deb12u1) ...
Setting up libwxgtk3.2-1:armhf (3.2.2+dfsg-2) ...
Setting up libpython3-dev:armhf (3.11.2-1) ...
Setting up node-error-ex (1.3.2-4) ...
Setting up node-webpack-sources (3.2.3+~3.2.0-2) ...
Setting up libwacom9:armhf (2.6.0-1) ...
Setting up libselinux1-dev:armhf (3.4-1+b2) ...
Setting up python3.11-dev (3.11.2-6) ...
Setting up node-serialize-javascript (6.0.0-2) ...
Setting up node-find-up (6.3.0-7) ...
Setting up node-kind-of (6.0.3+dfsg-2) ...
Setting up samba-libs:armhf (2:4.17.8+dfsg-2) ...
Setting up python3 (3.11.2-1) ...
Setting up node-is-binary-path (2.1.0-5) ...
Setting up python3-rpi.gpio (0.7.1~a4-1+b2) ...
Setting up node-minimist (1.2.7+~cs5.3.2-2) ...
Setting up libinput-bin (1.22.1-1) ...
Setting up node-fetch (3.3.0+~cs11.4.11-2) ...
Setting up node-babel7-runtime (7.20.15+ds1+~cs214.269.168-3) ...
Setting up python3-tdb (1.4.8-2) ...
Setting up node-type-check (0.4.0+dfsg-3) ...
Setting up iotop (0.6-42-ga14256a-0.1+b1) ...
Setting up mesa-utils (8.5.0-1) ...
Setting up node-pkg-dir (5.0.0-2) ...
Setting up node-got (11.8.5+~cs58.13.36-3) ...
Setting up python3-ldb (2:2.6.2+samba4.17.8+dfsg-2) ...
Setting up node-async (0.8.0-6) ...
Setting up node-optimist (0.6.1+~0.0.30-2) ...
Setting up python3-numpy (1:1.24.2-1) ...
Setting up node-undici (5.15.0+dfsg1+~cs20.10.9.3-1+deb12u1) ...
Setting up filezilla (3.63.0-1) ...
Setting up python3-smbus:armhf (4.3-2+b2) ...
Setting up python3-lib2to3 (3.11.2-3) ...
Setting up libgs10:armhf (10.0.0~dfsg-11+deb12u1) ...
Setting up python3-distutils (3.11.2-3) ...
Setting up gimp (2.10.34-1) ...
Setting up libinput10:armhf (1.22.1-1) ...
Setting up node-regenerator-transform (0.15.1+~0.10.8-1) ...
Setting up python3-talloc:armhf (2.4.0-f2) ...
Setting up samba-vfs-modules:armhf (2:4.17.8+dfsg-2) ...
Setting up xserver-xorg-input-libinput (1.2.1-1) ...
Setting up libspectre1:armhf (0.2.12-1) ...
Setting up node-levn (0.4.1+dfsg-2) ...
Setting up python3.11-venv (3.11.2-6) ...
Setting up python3-dev (3.11.2-1) ...
Setting up libimlib2:armhf (1.10.0-4) ...
Setting up python3-samba (2:4.17.8+dfsg-2) ...
Setting up node-optionator (0.9.1+dfsg+~cs1.2.3-1) ...
Setting up python3-venv (3.11.2-1) ...
Setting up samba-common-bin (2:4.17.8+dfsg-2) ...
Setting up samba (2:4.17.8+dfsg-2) ...
Installing new version of config file /etc/init.d/nmbd ...
Installing new version of config file /etc/init.d/samba-ad-dc ...
Installing new version of config file /etc/init.d/smbd ...
Created symlink /etc/systemd/system/multi-user.target.wants/samba-ad-dc.service → /lib/systemd/system/samba-ad-dc.service.
nmbd.service is a disabled or a static unit not running, not starting it.
smbd.service is a disabled or a static unit not running, not starting it.
Setting up node-define-properties (1.1.4+~1.1.3-1) ...
Setting up node-acorn (8.8.1+ds+~cs25.17.7-2) ...
Setting up node-espree (9.4.1~dfsg-1) ...
Setting up node-debbundle-es-to-primitive (1.2.1+~cs9.7.25-2) ...
Setting up node-deep-equal (2.1.0+~cs31.12.80-1) ...
Setting up node-qs (6.11.0+ds+~6.9.7-3) ...
Setting up libnode108:armhf (18.13.0+dfsg1-1+rpi1) ...
Setting up libjs-util (0.12.5+~1.0.10-1) ...
Setting up nodejs (18.13.0+dfsg1-1+rpi1) ...
Setting up node-argparse (2.0.1-2) ...
Setting up terser (5.16.5-2) ...
Setting up node-mime (3.0.0+dfsg+~cs3.97.1-1) ...
Setting up node-source-map-support (0.5.21+ds+~0.5.4-1) ...
Setting up node-unicode-match-property-ecmascript (2.0.0-2) ...
Setting up node-defined (1.0.1+~1.0.0-1) ...
Setting up node-ansi-escapes (5.0.0+really.4.3.1-1) ...
Setting up node-strip-ansi (6.0.1-2) ...
Setting up node-write (2.0.0~6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5) ...
Setting up node-ignore (5.2.1-1) ...
Setting up node-chalk (5.2.0-1) ...
Setting up node-which (2.0.2+~cs1.3.2-3) ...
Setting up node-punycode (2.1.1-6) ...
Setting up node-css-selector-tokenizer (0.8.0+~cs4.8.3-1) ...
Setting up node-esprima (4.0.1+ds+~4.0.3-2) ...
Setting up node-is-path-inside (3.0.3-2) ...
Setting up node-neo-async (2.6.2+~cs3.0.0-2) ...
Setting up node-mkdirp (1.0.4+~1.0.2-4) ...
Setting up node-es6-error (4.1.1-5) ...
Setting up node-opener (1.5.2+~1.4.0-1) ...
Setting up node-archy (1.0.0-6) ...
Setting up node-js-yaml (4.1.0+dfsg+~4.0.5-7) ...
Setting up node-nopt (5.0.0-4) ...
Setting up node-lodash (4.17.21+dfsg+~cs8.31.198.20210220-9) ...
Setting up node-progress (2.0.3-2) ...
Setting up node-json5 (2.2.3+dfsg-1) ...
Setting up node-ms (2.1.3+~cs0.7.31-3) ...
Setting up node-rimraf (3.0.2-2) ...
Setting up node-regenerate (1.4.2-3) ...
Setting up node-semver (7.3.5+~7.3.9-2) ...
Setting up node-picocolors (1.0.0-4) ...
Setting up node-es-abstract (1.20.4+~cs26.27.47-1) ...
Setting up handlebars (3:4.7.7+~4.1.0-1) ...
Setting up node-object-assign (4.1.1-7) ...
Setting up node-is-glob (4.0.3-2) ...
Setting up node-v8-compile-cache (2.3.0-3) ...
Setting up node-cacache (17.0.3+~cs10.3.7-1) ...
Setting up node-flat-cache (3.0.4~6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5) ...
Setting up node-is-number (7.0.0-4) ...
Setting up node-for-in (1.0.2-4) ...
Setting up node-puka (1.0.1+dfsg-3) ...
Setting up node-webassemblyjs (1.11.4+dfsg+~cs10.11.17-2) ...
Setting up node-strip-json-comments (4.0.0-4) ...
Setting up libnode-dev (18.13.0+dfsg1-1+rpi1) ...
Setting up node-is-extendable (1.0.1-3) ...
Setting up node-doctrine (3.0.0-4) ...
Setting up node-assert-plus (1.0.0-4) ...
Setting up node-ajv (6.12.6-3) ...
Setting up node-tweetnacl (1.0.3+dfsg-3) ...
Setting up node-jsesc (3.0.2+~3.0.1-1) ...
Setting up node-regjsparser (0.9.1+ds-2) ...
Setting up node-errno (1.0.0-3) ...
Setting up node-decamelize (4.0.0-2) ...
Setting up node-normalize-path (3.0.0+~3.0.0-1) ...
Setting up node-util (0.12.5+~1.0.10-1) ...
Setting up node-functional-red-black-tree (1.0.1+20181105-7) ...
Setting up node-jsonstream (1.3.5-3) ...
Setting up node-browserslist (4.21.4+~cs6.1.17-2) ...
Setting up node-yargs-parser (21.1.1+~21.0.0-4) ...
Setting up node-make-dir (3.1.0-3) ...
Setting up node-esrecurse (4.3.0-2) ...
Setting up node-file-entry-cache (6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5) ...
Setting up node-wrap-ansi (8.0.1+~8.0.1-3) ...
Setting up node-for-own (1.0.0-3) ...
Setting up node-eslint-scope (7.1.1+~3.7.4-1) ...
Setting up node-escodegen (2.0.0+dfsg+~0.0.7-2) ...
Setting up node-memory-fs (0.5.0+~0.3.3-2) ...
Setting up node-babel-helper-define-polyfill-provider (0.3.3~0~20220913+ds1-1) ...
Setting up node-assert (2.0.0+~cs3.9.8-2) ...
Setting up node-gyp (9.3.0-2) ...
Setting up node-regenerate-unicode-properties (10.1.0+ds-1) ...
Setting up node-glob-parent (6.0.2+~5.1.1-2) ...
Setting up node-enhanced-resolve (5.10.0-1) ...
Setting up node-postcss (8.4.20+~cs8.0.23-1) ...
Setting up node-npm-package-arg (10.0.0+~3.0.0-2) ...
Setting up node-anymatch (3.1.3+~cs4.6.1-2) ...
Setting up node-verror (1.10.1+~1.10.5-2) ...
Setting up node-getpass (0.1.7-3) ...
Setting up node-postcss-modules-extract-imports (3.0.0-2) ...
Setting up node-cliui (7.0.4+repack+~cs3.1.0-4) ...
Setting up node-regexpu-core (5.2.2-3) ...
Setting up node-yargs (16.2.0+~16.0.4-7) ...
Setting up node-to-regex-range (5.0.1-4) ...
Setting up node-bcrypt-pbkdf (1.0.2-3) ...
Setting up node-babel-plugin-polyfill-corejs2 (0.3.3~0~20220913+ds1-1) ...
Setting up node-ajv-keywords (3.5.2-2) ...
Setting up node-core-js-compat (3.26.1-3) ...
Setting up node-clone-deep (4.0.1+~cs7.0.2-1) ...
Setting up eslint (6.4.0~dfsg+~6.1.9-7) ...
Setting up node-babel-plugin-polyfill-regenerator (0.4.1~0~20220913+ds1-1) ...
Setting up node-readdirp (3.6.0-1) ...
Setting up node-icss-utils (5.1.0+~5.1.0-1) ...
Setting up node-schema-utils (3.1.1~ds-2) ...
Setting up node-jest-worker (29.3.1~ds1+~cs70.48.25-2) ...
Setting up node-sshpk (1.17.0+dfsg-2) ...
Setting up node-babel-plugin-polyfill-corejs3 (0.6.0~0~20220913+ds1-1) ...
Setting up node-postcss-modules-values (4.0.0+~4.0.0-1) ...
Setting up node-fill-range (7.0.1+~7.0.0-1) ...
Setting up node-braces (3.0.2+~3.0.1-1) ...
Setting up node-chokidar (3.5.3-2) ...
Setting up node-watchpack (2.4.0+~cs2.8.1-1) ...
Setting up node-micromatch (4.0.5+~4.0.2-1) ...
Setting up node-globby (13.1.3+~cs16.25.40-1) ...
Setting up node-del (7.0.0-5) ...
Setting up node-find-cache-dir (3.3.2+~3.2.1-1) ...
Setting up node-babel7 (7.20.15+ds1+~cs214.269.168-3) ...
update-alternatives: using /usr/bin/babeljs-7 to provide /usr/bin/babeljs (babeljs) in auto mode
update-alternatives: using /usr/bin/babeljs-7-external-helpers to provide /usr/bin/babeljs-external-helpers (babeljs-external-helpers) in auto mode
update-alternatives: using /usr/bin/babeljs-7-node to provide /usr/bin/babeljs-node (babeljs-node) in auto mode
update-alternatives: using /usr/bin/babeljs-7-parser to provide /usr/bin/babeljs-parser (babeljs-parser) in auto mode
Setting up node-babel-plugin-lodash (3.3.4+~cs2.0.1-6) ...
Setting up node-jest-debbundle (29.3.1~ds1+~cs70.48.25-2) ...
Setting up node-parse-json (5.2.0+~cs5.1.7-1) ...
Setting up node-read-pkg (5.2.0-2) ...
Setting up node-istanbul (0.4.5+repack10+~cs97.25.57-3) ...
Setting up node-tape (5.6.1+~cs8.20.19-1) ...
Setting up webpack (5.75.0+dfsg+~cs17.16.14-1+deb12u1) ...
Setting up node-css-loader (6.7.2+~cs14.0.11-1) ...
Setting up npm (9.2.0~ds1-1) ...
Processing triggers for libc-bin (2.36-9+rpi1+deb12u1) ...
Processing triggers for systemd (252.12-1~deb12u1+rpi1) ...
Processing triggers for man-db (2.11.2-2) ...
Processing triggers for udev (252.12-1~deb12u1+rpi1) ...
Processing triggers for mailcap (3.70+nmu1) ...
Processing triggers for hicolor-icon-theme (0.17-2) ...
[  OK  ] dietpi-bookworm-upgrade | APT dist-upgrade
[ INFO ] dietpi-bookworm-upgrade | APT autopurge, please wait...
Reading package lists...
Building dependency tree...
Reading state information...
The following packages will be REMOVED:
  libcob5* libcob5-dev* libglew2.1* libglu1-mesa* libgs9-common* libicu67*
  libilmbase25* libjs-psl* libldap-2.4-2* libmpdec3* libncurses5-dev*
  libopenexr25* libopengl0* libpython3.9* libpython3.9-dev*
  libpython3.9-minimal* libpython3.9-stdlib* libsepol1* libtiff5* liburing1*
  libwmf0.2-7* libwxbase3.0-0v5* libwxgtk3.0-gtk3-0v5* node-ansi*
  node-ansistyles* node-asap* node-asn1* node-assert-plus* node-asynckit*
  node-aws-sign2* node-aws4* node-bcrypt-pbkdf* node-caseless*
  node-combined-stream* node-concat-map* node-dashdash* node-delayed-stream*
  node-ecc-jsbn* node-extend* node-extsprintf* node-forever-agent*
  node-form-data* node-getpass* node-har-schema* node-har-validator*
  node-http-signature* node-isstream* node-jsbn* node-json-stringify-safe*
  node-jsonstream* node-jsprim* node-leven* node-lockfile* node-number-is-nan*
  node-oauth-sign* node-opener* node-performance-now* node-psl* node-puka*
  node-qs* node-sshpk* node-tunnel-agent* node-tweetnacl* node-verror*
  python3.9* python3.9-dev* python3.9-minimal*
0 upgraded, 0 newly installed, 67 to remove and 0 not upgraded.
                                                               After this operation, 97.3 MB disk space will be freed.
(Reading database ... 142127 files and directories currently installed.)
Removing libcob5-dev:armhf (4.0~early~20200606-6) ...
Removing libcob5:armhf (4.0~early~20200606-6) ...
Removing libglew2.1:armhf (2.1.0-4) ...
Removing libglu1-mesa:armhf (9.0.2-1.1) ...
Removing libgs9-common (10.0.0~dfsg-11+deb12u1) ...
Removing libicu67:armhf (67.1-7) ...
Removing libopenexr25:armhf (2.5.4-2+deb11u1) ...
Removing libilmbase25:armhf (2.5.7-2) ...
Removing node-psl (1.8.0+ds-9) ...
Removing libjs-psl (1.8.0+ds-9) ...
Removing libldap-2.4-2:armhf (2.4.57+dfsg-3+deb11u1) ...
Removing python3.9-dev (3.9.2-1+rpi1) ...
Removing python3.9 (3.9.2-1+rpi1) ...
Removing libpython3.9-dev:armhf (3.9.2-1+rpi1) ...
Removing libpython3.9:armhf (3.9.2-1+rpi1) ...
Removing libpython3.9-stdlib:armhf (3.9.2-1+rpi1) ...
Removing libmpdec3:armhf (2.5.1-2+rpi1) ...
Removing libncurses5-dev:armhf (6.4-4) ...
Removing libopengl0:armhf (1.6.0-1) ...
Removing python3.9-minimal (3.9.2-1+rpi1) ...
Removing libpython3.9-minimal:armhf (3.9.2-1+rpi1) ...
Removing libsepol1:armhf (3.1-1) ...
Removing libtiff5:armhf (4.2.0-1+deb11u4) ...
Removing liburing1:armhf (0.7-3) ...
Removing libwmf0.2-7:armhf (0.2.12-5.1) ...
Removing libwxgtk3.0-gtk3-0v5:armhf (3.0.5.1+dfsg-5+b1) ...
Removing libwxbase3.0-0v5:armhf (3.0.5.1+dfsg-5+b1) ...
Removing node-ansi (0.3.1-2) ...
Removing node-ansistyles (0.1.3-5) ...
Removing node-asap (2.0.6+~2.0.0-1) ...
Removing node-http-signature (1.3.6-2) ...
Removing node-sshpk (1.17.0+dfsg-2) ...
Removing node-asn1 (0.2.6+~0.2.0-2) ...
Removing node-dashdash (2.0.0-4) ...
Removing node-jsprim (2.0.1-1) ...
Removing node-verror (1.10.1+~1.10.5-2) ...
Removing node-form-data (4.0.0-1) ...
Removing node-asynckit (0.4.0-5) ...
Removing node-aws-sign2 (0.7.1-4) ...
Removing node-aws4 (1.11.0-2) ...
Removing node-bcrypt-pbkdf (1.0.2-3) ...
Removing node-caseless (0.12.1-2) ...
Removing node-combined-stream (1.0.8+~1.0.3-1) ...
Removing node-concat-map (0.0.2+~0.0.1-1) ...
Removing node-delayed-stream (1.0.0-5) ...
Removing node-ecc-jsbn (0.2.0-4) ...
Removing node-extend (3.0.2+~3.0.1-3) ...
Removing node-extsprintf (1.4.1+~1.4.1-2) ...
Removing node-forever-agent (0.6.1+~0.6.1-2) ...
Removing node-getpass (0.1.7-3) ...
Removing node-har-validator (5.1.5-3) ...
Removing node-har-schema (2.0.0-5) ...
Removing node-isstream (0.1.2+dfsg+~0.1.0-1) ...
Removing node-jsbn (1.1.0+~1.2.29-1) ...
Removing node-json-stringify-safe (5.0.1+repack-6) ...
Removing node-jsonstream (1.3.5-3) ...
Removing node-leven (4.0.0+~cs1.1.1-2) ...
Removing node-lockfile (1.0.4+~1.0.2-1) ...
Removing node-number-is-nan (2.0.0-3) ...
Removing node-oauth-sign (0.9.0-4) ...
Removing node-opener (1.5.2+~1.4.0-1) ...
Removing node-performance-now (2.1.0+debian-4) ...
Removing node-puka (1.0.1+dfsg-3) ...
Removing node-qs (6.11.0+ds+~6.9.7-3) ...
Removing node-tunnel-agent (0.6.1-4) ...
Removing node-tweetnacl (1.0.3+dfsg-3) ...
Removing node-assert-plus (1.0.0-4) ...
Processing triggers for man-db (2.11.2-2) ...
Processing triggers for mailcap (3.70+nmu1) ...
Processing triggers for libc-bin (2.36-9+rpi1+deb12u1) ...
(Reading database ... 140529 files and directories currently installed.)
Purging configuration files for libpython3.9-minimal:armhf (3.9.2-1+rpi1) ...
Purging configuration files for python3.9-minimal (3.9.2-1+rpi1) ...
[  OK  ] dietpi-bookworm-upgrade | APT autopurge
[ INFO ] dietpi-bookworm-upgrade | Updating DietPi to latest version
[ SUB1 ] DietPi-Update > Checking for available DietPi update
[  OK  ] DietPi-Update | Checking IPv4 network connectivity
[  OK  ] DietPi-Update | Checking DNS resolver
[  OK  ] DietPi-TimeSync | systemctl stop systemd-timesyncd
[  OK  ] DietPi-TimeSync | mkdir -p /run/systemd/timesync
[ INFO ] DietPi-Update | Getting latest version from: https://raw.githubusercontent.com/MichaIng/DietPi/master/.update/version
[  OK  ] DietPi-Update | Got valid latest version: 8.21.1
[  OK  ] DietPi-Update | No update required, your DietPi installation is already up to date:
[ INFO ] DietPi-Update | Current version : v8.21.1
[ INFO ] DietPi-Update | Latest version  : v8.21.1
[ INFO ] DietPi-Update | Checking for new available live patches
[ INFO ] DietPi-Update | APT update, please wait...
Hit:1 http://raspbian.raspberrypi.org/raspbian bookworm InRelease
Hit:2 https://archive.raspberrypi.org/debian bullseye InRelease
Reading package lists...
W: Skipping acquire of configured file 'non-free-firmware/source/Sources' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'non-free-firmware/binary-armhf/Packages' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'non-free-firmware/Contents-armhf' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
[  OK  ] DietPi-Update | APT update
[ INFO ] DietPi-Update | No APT upgrades were found, not creating file: /run/dietpi/.apt_updates
[ INFO ] dietpi-bookworm-upgrade | Migrating package lists to Bookworm suite
[  OK  ] dietpi-bookworm-upgrade | sed -i -e s/bullseye/bookworm/g -e s/ non-free$/ non-free non-free-firmware/ /etc/apt/sources.list
[  OK  ] dietpi-bookworm-upgrade | sed -i s/bullseye/bookworm/g /etc/apt/sources.list.d/raspi.list
[ INFO ] dietpi-bookworm-upgrade | Reverting some package lists to Bullseye which have no Bookworm suite (yet)
[  OK  ] dietpi-bookworm-upgrade | sed -i s/bookworm/bullseye/ /etc/apt/sources.list.d/raspi.list
[ INFO ] dietpi-bookworm-upgrade | Enforcing Debian Bookworm FFmpeg packages over RPi repo ones
[ INFO ] dietpi-bookworm-upgrade | Applying the actual upgrade to Debian Bookworm
[ SUB1 ] DietPi-Services > stop 
[  OK  ] DietPi-Services | stop : cron
[ INFO ] DietPi-Services | skip : apache2 (masked)
[  OK  ] DietPi-Services | stop : smbd
[  OK  ] DietPi-Services | stop : nmbd
[ INFO ] DietPi-Services | skip : proftpd (masked)
[ INFO ] dietpi-bookworm-upgrade | APT update, please wait...
Hit:1 http://raspbian.raspberrypi.org/raspbian bookworm InRelease
Hit:2 https://archive.raspberrypi.org/debian bullseye InRelease
Reading package lists...
W: Skipping acquire of configured file 'non-free-firmware/source/Sources' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'non-free-firmware/binary-armhf/Packages' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'non-free-firmware/Contents-armhf' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)

[  OK  ] dietpi-bookworm-upgrade | APT update
[ INFO ] dietpi-bookworm-upgrade | APT upgrade, please wait...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
[  OK  ] dietpi-bookworm-upgrade | APT upgrade
[ INFO ] dietpi-bookworm-upgrade | APT dist-upgrade, please wait...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
[  OK  ] dietpi-bookworm-upgrade | APT dist-upgrade
[  OK  ] dietpi-bookworm-upgrade | Congratulations, you are now on Bookworm:
PRETTY_NAME="Raspbian GNU/Linux 12 (bookworm)"
NAME="Raspbian GNU/Linux"
VERSION_ID="12"
VERSION="12 (bookworm)"

Next, some migrations are done for all software to run nicely on Bookworm. This can include dietpi-software reinstalls. Press ENTER to continue or CTRL+C to abort ... <- Enter で続行
[ INFO ] dietpi-bookworm-upgrade | Running post upgrade migrations
[ SUB1 ] DietPi-Services > stop 
[  OK  ] DietPi-Services | stop : cron
[ INFO ] DietPi-Services | skip : apache2 (masked)
[  OK  ] DietPi-Services | stop : smbd
[  OK  ] DietPi-Services | stop : nmbd
[ INFO ] DietPi-Services | skip : proftpd (masked)
[  OK  ] dietpi-bookworm-upgrade | Setting in /root/.ssh/known_hosts adjusted: [ssh.dietpi.com]:29248 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM5EEt51Pq/6j6COdHKcvYQohqPnL5Eaj4eH3iMehsEk
[  OK  ] dietpi-bookworm-upgrade | update-alternatives --set regulatory.db /lib/firmware/regulatory.db-upstream
[  OK  ] dietpi-bookworm-upgrade | apt-mark manual wireless-regdb
[ INFO ] dietpi-bookworm-upgrade | APT purge crda, please wait...
[ INFO ] dietpi-bookworm-upgrade | None of the packages are currently installed. Aborting...
[  OK  ] dietpi-bookworm-upgrade | APT purge crda
[ INFO ] dietpi-bookworm-upgrade | APT purge gcc-8-base gcc-9-base gcc-10-base gcc-11-base, please wait...
Reading package lists...
Building dependency tree...
Reading state information...
The following packages were automatically installed and are no longer required:
  libclang-common-11-dev libclang-cpp11 libclang1-11 libllvm11
  llvm-11-linker-tools
Use 'sudo apt autoremove' to remove them.
The following packages will be REMOVED:
  clang-11* cpp-10* gcc-10* gcc-10-base* gcc-11-base* libasan6* libgcc-10-dev*
  libgcc-11-dev* libobjc-11-dev* libstdc++-11-dev*
0 upgraded, 0 newly installed, 10 to remove and 0 not upgraded.
                                                               After this operation, 104 MB disk space will be freed.
(Reading database ... 140527 files and directories currently installed.)
Removing clang-11 (1:11.1.0-6+rpi2) ...
Removing gcc-10 (10.4.0-7+rpi1) ...
Removing cpp-10 (10.4.0-7+rpi1) ...
Removing libgcc-10-dev:armhf (10.4.0-7+rpi1) ...
Removing gcc-10-base:armhf (10.4.0-7+rpi1) ...
Removing libstdc++-11-dev:armhf (11.3.0-12+rpi1) ...
Removing libobjc-11-dev:armhf (11.3.0-12+rpi1) ...
Removing libgcc-11-dev:armhf (11.3.0-12+rpi1) ...
Removing libasan6:armhf (11.3.0-12+rpi1) ...
Removing gcc-11-base:armhf (11.3.0-12+rpi1) ...
Processing triggers for man-db (2.11.2-2) ...
Processing triggers for libc-bin (2.36-9+rpi1+deb12u1) ...
[  OK  ] dietpi-bookworm-upgrade | APT purge gcc-8-base gcc-9-base gcc-10-base gcc-11-base
[ INFO ] dietpi-bookworm-upgrade | APT purge *php7.4*, please wait...
[ INFO ] dietpi-bookworm-upgrade | None of the packages are currently installed. Aborting...
[  OK  ] dietpi-bookworm-upgrade | APT purge *php7.4*
[  OK  ] dietpi-bookworm-upgrade | rm -Rf /etc/php/7.4 /usr/local/lib/python3.9 /usr/local/bin/pip3 /usr/local/bin/pip3.9
[  OK  ] DietPi-Software | Initialised database
[  OK  ] DietPi-Software | Reading database
[ SUB1 ] DietPi-Software > Automated reinstall
[ INFO ] DietPi-Software | 31: Kodi is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 31" to install Kodi.
[  OK  ] DietPi-Software | No changes applied for: Kodi
[ INFO ] DietPi-Software | 38: FreshRSS is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 38" to install FreshRSS.
[  OK  ] DietPi-Software | No changes applied for: FreshRSS
[ INFO ] DietPi-Software | 40: Ampache is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 40" to install Ampache.
[  OK  ] DietPi-Software | No changes applied for: Ampache
[ INFO ] DietPi-Software | 47: ownCloud is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 47" to install ownCloud.
[  OK  ] DietPi-Software | No changes applied for: ownCloud
[ INFO ] DietPi-Software | 48: Pydio is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 48" to install Pydio.
[  OK  ] DietPi-Software | No changes applied for: Pydio
[ INFO ] DietPi-Software | 83: Apache is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 83" to install Apache.
[  OK  ] DietPi-Software | No changes applied for: Apache
[ INFO ] DietPi-Software | 84: Lighttpd is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 84" to install Lighttpd.
[  OK  ] DietPi-Software | No changes applied for: Lighttpd
[ INFO ] DietPi-Software | 85: Nginx is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 85" to install Nginx.
[  OK  ] DietPi-Software | No changes applied for: Nginx
[ INFO ] DietPi-Software | 89: PHP is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 89" to install PHP.
[  OK  ] DietPi-Software | No changes applied for: PHP
[ INFO ] DietPi-Software | 93: Pi-hole is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 93" to install Pi-hole.
[  OK  ] DietPi-Software | No changes applied for: Pi-hole
[ INFO ] DietPi-Software | 114: Nextcloud is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 114" to install Nextcloud.
[  OK  ] DietPi-Software | No changes applied for: Nextcloud
[ INFO ] DietPi-Software | 118: Mopidy is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 118" to install Mopidy.
[  OK  ] DietPi-Software | No changes applied for: Mopidy
[ INFO ] DietPi-Software | 125: Synapse is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 125" to install Synapse.
[  OK  ] DietPi-Software | No changes applied for: Synapse
[  OK  ] DietPi-Software | Reinstalling Python 3: Runtime system, pip package installer and development headers
[ INFO ] DietPi-Software | 134: Docker Compose is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 134" to install Docker Compose.
[  OK  ] DietPi-Software | No changes applied for: Docker Compose
[ INFO ] DietPi-Software | 136: motionEye is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 136" to install motionEye.
[  OK  ] DietPi-Software | No changes applied for: motionEye
[ INFO ] DietPi-Software | 139: SABnzbd is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 139" to install SABnzbd.
[  OK  ] DietPi-Software | No changes applied for: SABnzbd
[ INFO ] DietPi-Software | 143: Koel is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 143" to install Koel.
[  OK  ] DietPi-Software | No changes applied for: Koel
[ INFO ] DietPi-Software | 153: OctoPrint is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 153" to install OctoPrint.
[  OK  ] DietPi-Software | No changes applied for: OctoPrint
[ INFO ] DietPi-Software | 155: HTPC Manager is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 155" to install HTPC Manager.
[  OK  ] DietPi-Software | No changes applied for: HTPC Manager
[ INFO ] DietPi-Software | 157: Home Assistant is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 157" to install Home Assistant.
[  OK  ] DietPi-Software | No changes applied for: Home Assistant
[ INFO ] DietPi-Software | 180: Bazarr is not currently installed
[ INFO ] DietPi-Software | Use "dietpi-software install 180" to install Bazarr.
[  OK  ] DietPi-Software | No changes applied for: Bazarr
[  OK  ] DietPi-Software | DietPi-Userdata validation: /mnt/dietpi_userdata
[ SUB1 ] DietPi-Software > Checking for conflicts and missing inputs
[ SUB1 ] DietPi-Software > Checking for prerequisite software
[  OK  ] DietPi-Software | mkdir -p /mnt/dietpi_userdata/Music /mnt/dietpi_userdata/Pictures /mnt/dietpi_userdata/Video /mnt/dietpi_userdata/downloads /var/www /opt /usr/local/bin
[  OK  ] DietPi-Software | chown dietpi:dietpi /mnt/dietpi_userdata/Music /mnt/dietpi_userdata/Pictures /mnt/dietpi_userdata/Video /mnt/dietpi_userdata/downloads
[  OK  ] DietPi-Software | chmod 0775 /mnt/dietpi_userdata/Music /mnt/dietpi_userdata/Pictures /mnt/dietpi_userdata/Video /mnt/dietpi_userdata/downloads
[ SUB2 ] DietPi-Services > stop 
[  OK  ] DietPi-Services | stop : cron
[ INFO ] DietPi-Services | skip : apache2 (masked)
[  OK  ] DietPi-Services | stop : smbd
[  OK  ] DietPi-Services | stop : nmbd
[ INFO ] DietPi-Services | skip : proftpd (masked)
[ INFO ] DietPi-Software | APT update, please wait...
Hit:1 http://raspbian.raspberrypi.org/raspbian bookworm InRelease
Hit:2 https://archive.raspberrypi.org/debian bullseye InRelease
Reading package lists...
W: Skipping acquire of configured file 'non-free-firmware/source/Sources' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'non-free-firmware/binary-armhf/Packages' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'non-free-firmware/Contents-armhf' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
[  OK  ] DietPi-Software | APT update
[ SUB1 ] DietPi-Software > Installing Python 3: Runtime system, pip package installer and development headers
[  OK  ] DietPi-Software | Desired setting in /etc/pip.conf was already set: [global]
[  OK  ] DietPi-Software | Added setting break-system-packages=true to /etc/pip.conf after line [global]
[  OK  ] DietPi-Software | Added setting no-cache-dir=true to /etc/pip.conf after line [global]
[  OK  ] DietPi-Software | Desired setting in /etc/pip.conf was already set: extra-index-url=https://www.piwheels.org/simple/
[  OK  ] DietPi-Software | cd /tmp/DietPi-Software
[  OK  ] DietPi-Software | Checking URL: https://bootstrap.pypa.io/get-pip.py
[ INFO ] DietPi-Software | G_THREAD_START_0 | curl -sSfL https://bootstrap.pypa.io/get-pip.py -o get-pip.py
[ INFO ] DietPi-Software | APT install python3-dev, please wait...
Reading package lists...
Building dependency tree...
Reading state information...
python3-dev is already the newest version (3.11.2-1).
The following packages were automatically installed and are no longer required:
  libclang-common-11-dev libclang-cpp11 libclang1-11 libllvm11
  llvm-11-linker-tools
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
[  OK  ] DietPi-Software | APT install python3-dev
[  OK  ] DietPi-Software | G_THREAD: All threads finished
[ INFO ] DietPi-Software | python3 get-pip.py, please wait...
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple/
Collecting pip
  Downloading https://www.piwheels.org/simple/pip/pip-23.2.1-py3-none-any.whl (2.1 MB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/2.1 MB 588.8 kB/s eta 0:00:00
Collecting wheel
  Downloading https://www.piwheels.org/simple/wheel/wheel-0.41.2-py3-none-any.whl (64 kB)
     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 64.8/64.8 kB 227.3 kB/s eta 0:00:00
Installing collected packages: wheel, pip
Successfully installed pip-23.2.1 wheel-0.41.2
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
[  OK  ] DietPi-Software | python3 get-pip.py
[  OK  ] DietPi-Software | rm get-pip.py
[ SUB1 ] DietPi-Software > Finalising install
[  OK  ] DietPi-Software | systemctl daemon-reload
2023-09-11 06:57:40 [ INFO ] DietPi-RAMlog | Storing /var/log to /var/tmp/dietpi/logs/dietpi-ramlog_store...
2023-09-11 06:57:40 [  OK  ] DietPi-RAMlog | Stored /var/log to /var/tmp/dietpi/logs/dietpi-ramlog_store.
[ SUB1 ] DietPi-Software > Install completed
[  OK  ] DietPi-Survey | Sending survey data
[ SUB2 ] DietPi-Services > restart 
[ INFO ] DietPi-Services | skip : proftpd (masked)
[ INFO ] DietPi-Services | skip : nmbd (disabled)
[ INFO ] DietPi-Services | skip : smbd (disabled)
[ INFO ] DietPi-Services | skip : apache2 (masked)
[  OK  ] DietPi-Services | restart : cron

再起動する。

$ sudo reboot


Raspbian GNU/Linux 12 (bookworm) の DietPi へようこそ!

$ neofetch

`.::///+:/-. --///+//-:`` dietpi@dietpi-001 `+oooooooooooo: `+oooooooooooo: ----------------- /oooo++//ooooo: ooooo+//+ooooo. OS: Raspbian GNU/Linux 12 (bookworm) armv6l `+ooooooo:-:oo- +o+::/ooooooo: Host: Raspberry Pi Zero W Rev 1.1 `:oooooooo+`` `.oooooooo+- Kernel: 6.1.21+ `:++ooo/. :+ooo+/.` Uptime: 2 mins ...` `.----.` ``.. Packages: 1550 (dpkg) .::::-``:::::::::.`-:::-` Shell: zsh 5.9 -:::-` .:::::::-` `-:::- Terminal: /dev/pts/0 `::. `.--.` `` `.---.``.::` CPU: BCM2835 (1) @ 1.100GHz .::::::::` -::::::::` ` Memory: 49MiB / 429MiB .::` .:::::::::- `::::::::::``::. -:::` ::::::::::. ::::::::::.`:::- :::: -::::::::. `-:::::::: :::: -::- .-:::-.``....``.-::-. -::- .. `` .::::::::. `..`.. -:::-` -::::::::::` .:::::` :::::::` -::::::::::` :::::::. .::::::: -::::::::. :::::::: `-:::::` ..--.` ::::::. `...` `...--..` `...` .:::::::::: `.-::::-`

付録

1回目失敗😅

$ sudo bash -c "$(curl -sSf 'https://raw.githubusercontent.com/MichaIng/DietPi/master/.meta/dietpi-bookworm-upgrade')"

[ SUB1 ] DietPi-Backup > Backup
[ SUB2 ] DietPi-Services > stop 
[  OK  ] DietPi-Services | stop : cron
[ INFO ] DietPi-Services | skip : apache2 (masked)
[ INFO ] DietPi-Services | skip : smbd (masked)
[ INFO ] DietPi-Services | skip : nmbd (masked)
[ INFO ] DietPi-Services | skip : proftpd (masked)
[ INFO ] DietPi-Backup | Checking for required APT packages: rsync
[ INFO ] DietPi-Backup | Backup to /mnt/dietpi-backup in progress, please wait...
sending incremental file list
 12,682,449,412  83%    3.00MB/s    1:07:15 (xfr#392675, to-chk=0/503751)     

sent 12,716,001,240 bytes  received 7,673,058 bytes  3,108,262.93 bytes/sec
total size is 15,231,122,271  speedup is 1.20
[  OK  ] DietPi-Backup | touch /mnt/dietpi-backup/data
[ SUB2 ] DietPi-Services > start 
[ INFO ] DietPi-Services | skip : proftpd (masked)
[ INFO ] DietPi-Services | skip : nmbd (masked)
[ INFO ] DietPi-Services | skip : smbd (masked)
[ INFO ] DietPi-Services | skip : apache2 (masked)
[  OK  ] DietPi-Services | start : cron
[  OK  ] DietPi-Backup: Backup | Completed
[  OK  ] DietPi-Backup | Completed
[ INFO ] dietpi-bookworm-upgrade | Upgrading APT packages to latest versions provided by Debian Bullseye
[ SUB1 ] DietPi-Services > stop 
[  OK  ] DietPi-Services | stop : cron
[ INFO ] DietPi-Services | skip : apache2 (masked)
[ INFO ] DietPi-Services | skip : smbd (masked)
[ INFO ] DietPi-Services | skip : nmbd (masked)
[ INFO ] DietPi-Services | skip : proftpd (masked)
[ INFO ] dietpi-bookworm-upgrade | APT update, please wait...
Hit:1 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
Get:2 https://archive.raspberrypi.org/debian bullseye InRelease [23.6 kB]
Get:3 https://archive.raspberrypi.org/debian bullseye/main armhf Packages [314 kB]
Fetched 338 kB in 10s (35.3 kB/s)
Reading package lists...
[  OK  ] dietpi-bookworm-upgrade | APT update
[ INFO ] dietpi-bookworm-upgrade | APT dist-upgrade, please wait...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
The following packages will be upgraded:
  file libaom0 libmagic-dev libmagic-mgc libmagic1
5 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 1354 kB of archives.
After this operation, 34.8 kB disk space will be freed.
Get:1 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf file armhf 1:5.39-3+deb11u1 [68.1 kB]
Get:2 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf libmagic-dev armhf 1:5.39-3+deb11u1 [127 kB]
Get:3 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf libmagic1 armhf 1:5.39-3+deb11u1 [119 kB]
Get:4 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf libmagic-mgc armhf 1:5.39-3+deb11u1 [273 kB]
Get:5 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf libaom0 armhf 1.0.0.errata1-3+deb11u1 [767 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 1354 kB in 6s (245 kB/s)
(Reading database ... 107826 files and directories currently installed.)
Preparing to unpack .../file_1%3a5.39-3+deb11u1_armhf.deb ...
Unpacking file (1:5.39-3+deb11u1) over (1:5.39-3) ...
Preparing to unpack .../libmagic-dev_1%3a5.39-3+deb11u1_armhf.deb ...
Unpacking libmagic-dev:armhf (1:5.39-3+deb11u1) over (1:5.39-3) ...
Preparing to unpack .../libmagic1_1%3a5.39-3+deb11u1_armhf.deb ...
Unpacking libmagic1:armhf (1:5.39-3+deb11u1) over (1:5.39-3) ...
Preparing to unpack .../libmagic-mgc_1%3a5.39-3+deb11u1_armhf.deb ...
Unpacking libmagic-mgc (1:5.39-3+deb11u1) over (1:5.39-3) ...
Preparing to unpack .../libaom0_1.0.0.errata1-3+deb11u1_armhf.deb ...
Unpacking libaom0:armhf (1.0.0.errata1-3+deb11u1) over (1.0.0.errata1-3) ...
Setting up libmagic-mgc (1:5.39-3+deb11u1) ...
Setting up libaom0:armhf (1.0.0.errata1-3+deb11u1) ...
Setting up libmagic1:armhf (1:5.39-3+deb11u1) ...
Setting up file (1:5.39-3+deb11u1) ...
Setting up libmagic-dev:armhf (1:5.39-3+deb11u1) ...
Processing triggers for libc-bin (2.31-13+rpt2+rpi1+deb11u5) ...
Processing triggers for man-db (2.9.4-2) ...
[  OK  ] dietpi-bookworm-upgrade | APT dist-upgrade
[ INFO ] dietpi-bookworm-upgrade | APT autopurge, please wait...
Reading package lists...
Building dependency tree...
Reading state information...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
[  OK  ] dietpi-bookworm-upgrade | APT autopurge
[ INFO ] dietpi-bookworm-upgrade | Updating DietPi to latest version
[ SUB1 ] DietPi-Update > Checking for available DietPi update
[  OK  ] DietPi-Update | Checking IPv4 network connectivity
[  OK  ] DietPi-Update | Checking DNS resolver
[ INFO ] DietPi-Update | Getting latest version from: https://raw.githubusercontent.com/MichaIng/DietPi/master/.update/version
[  OK  ] DietPi-Update | Got valid latest version: 8.21.1
[  OK  ] DietPi-Update | No update required, your DietPi installation is already up to date:
[ INFO ] DietPi-Update | Current version : v8.21.1
[ INFO ] DietPi-Update | Latest version  : v8.21.1
[ INFO ] DietPi-Update | Checking for new available live patches
[ INFO ] DietPi-Update | APT update, please wait...
Hit:1 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
Hit:2 https://archive.raspberrypi.org/debian bullseye InRelease
Reading package lists...
[  OK  ] DietPi-Update | APT update
[ INFO ] DietPi-Update | No APT upgrades were found, not creating file: /run/dietpi/.apt_updates
[ INFO ] dietpi-bookworm-upgrade | Migrating package lists to Bookworm suite
[  OK  ] dietpi-bookworm-upgrade | sed -i -e s/bullseye/bookworm/g -e s/ non-free$/ non-free non-free-firmware/ /etc/apt/sources.list
[  OK  ] dietpi-bookworm-upgrade | sed -i s/bullseye/bookworm/g /etc/apt/sources.list.d/raspi.list
[ INFO ] dietpi-bookworm-upgrade | Reverting some package lists to Bullseye which have no Bookworm suite (yet)
[  OK  ] dietpi-bookworm-upgrade | sed -i s/bookworm/bullseye/ /etc/apt/sources.list.d/raspi.list
[ INFO ] dietpi-bookworm-upgrade | Enforcing Debian Bookworm FFmpeg packages over RPi repo ones
[ INFO ] dietpi-bookworm-upgrade | Applying the actual upgrade to Debian Bookworm
[ SUB1 ] DietPi-Services > stop 
[  OK  ] DietPi-Services | stop : cron
[ INFO ] DietPi-Services | skip : apache2 (masked)
[ INFO ] DietPi-Services | skip : smbd (masked)
[ INFO ] DietPi-Services | skip : nmbd (masked)
[ INFO ] DietPi-Services | skip : proftpd (masked)
[ INFO ] dietpi-bookworm-upgrade | APT update, please wait...
Get:1 http://raspbian.raspberrypi.org/raspbian bookworm InRelease [15.0 kB]
Hit:2 https://archive.raspberrypi.org/debian bullseye InRelease
Get:3 http://raspbian.raspberrypi.org/raspbian bookworm/contrib Sources [94.1 kB]
Get:4 http://raspbian.raspberrypi.org/raspbian bookworm/main Sources [13.7 MB]
Get:5 http://raspbian.raspberrypi.org/raspbian bookworm/non-free Sources [150 kB]
Get:6 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf Packages [14.5 MB]
Get:7 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf Contents (deb) [45.8 MB]
Get:8 http://raspbian.raspberrypi.org/raspbian bookworm/contrib armhf Packages [62.3 kB]
Get:9 http://raspbian.raspberrypi.org/raspbian bookworm/contrib armhf Contents (deb) [249 kB]
Get:10 http://raspbian.raspberrypi.org/raspbian bookworm/non-free armhf Packages [118 kB]
Get:11 http://raspbian.raspberrypi.org/raspbian bookworm/non-free armhf Contents (deb) [971 kB]
Fetched 75.7 MB in 3min 19s (381 kB/s)
Reading package lists...
W: Skipping acquire of configured file 'non-free-firmware/source/Sources' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'non-free-firmware/binary-armhf/Packages' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'non-free-firmware/Contents-armhf' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
[  OK  ] dietpi-bookworm-upgrade | APT update
[ INFO ] dietpi-bookworm-upgrade | APT upgrade, please wait...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
The following packages were automatically installed and are no longer required:
  distro-info-data g++-10 golang-1.15-go golang-1.15-src libatk1.0-data
  libavresample4 libbpf0 libcbor0 libdecor-0-0 libdns-export1110
  libexporter-tiny-perl libfftw3-double3 libgtksourceview-3.0-1
  libgtksourceview-3.0-common libice-dev libimobiledevice6 libisc-export1105
  libjsoncpp24 liblist-moreutils-perl liblist-moreutils-xs-perl libltdl-dev
  libobjc-10-dev libodbc1 libpcre16-3 libpcre2-posix2 libpcre3-dev libpcre32-3
  libpcrecpp0v5 libperl5.32 libplist3 libpoppler102 libprocps8 libpython3.8
  libpython3.8-minimal libpython3.8-stdlib librest-0.7-0 libsdl2-2.0-0
  libsigsegv2 libsm-dev libsoup-gnome2.4-1 libstdc++-10-dev libtiffxx5
  libusbmuxd6 libxfce4util-common libxfce4util7 libxfconf-0-3 libxt-dev
  odbcinst odbcinst1debian2 perl-modules-5.32 ruby2.7 xfconf
Use 'sudo apt autoremove' to remove them.



The following NEW packages will be installed:
  at-spi2-common clang-14 cpp-12 cron-daemon-common dbus-bin dbus-daemon
  dbus-session-bus-common dbus-system-bus-common g++-12 gcc-11-base gcc-12
  gcc-12-base golang-1.19-go golang-1.19-src libabsl20220623 libaom-dev
  libaom3 libasan8 libavcodec59 libavformat59 libavif-dev libavif15
  libavutil57 libbpf1 libcbor0.8 libcjson1 libclang-common-14-dev
  libclang-cpp14 libclang1-14 libcodec2-1.0 libdav1d-dev libdav1d6
  libde265-dev libdecor-0-0 libduktape207 libffi8 libfile-find-rule-perl
  libflac12 libgav1-1 libgcc-11-dev libgcc-12-dev libgspell-1-2
  libgspell-1-common libgssdp-1.6-0 libgstreamer-plugins-bad1.0-0
  libgtksourceview-4-0 libgtksourceview-4-common libgupnp-1.6-0
  libgupnp-igd-1.0-4 libhashkit2 libheif-dev libhwy1 libicu72 libimath-3-1-29
  libjavascriptcoregtk-4.1-0 libjs-events libjsoncpp25 libjxl0.7 libldap-2.5-0
  libldap-dev liblerc-dev liblerc4 libllvm14 libllvm15 libmbedcrypto7
  libmousepad0 libnice10 libnumber-compare-perl libobjc-11-dev libobjc-12-dev
  libodbc2 libodbccr2 libodbcinst2 libopenexr-3-1-30 libopengl0
  libpcre2-posix3 libperl5.36 libpkgconf3 libpoppler126 libproc2-0
  libpython3.11 libpython3.11-minimal libpython3.11-stdlib librav1e0 librist4
  libruby libruby3.1 libsoup-3.0-0 libsoup-3.0-common libsoup2.4-common
  libsrt1.5-gnutls libssl3 libstdc++-11-dev libstdc++-12-dev libsvtav1enc1
  libswresample4 libswscale6 libsystemd-shared libtext-glob-perl libtiff6
  libtiffxx6 libvpx7 libwebkit2gtk-4.1-0 libwebp7 libwmf-0.2-7
  libwmflite-0.2-7 libx264-164 libx265-199 libx265-dev libxcvt0 libyuv0
  libzstd-dev llvm-11-linker-tools llvm-14-linker-tools node-events
  node-fancy-log node-minipass node-slice-ansi node-time-stamp
  perl-modules-5.36 pkexec pkgconf pkgconf-bin polkitd python3-six
  rpcsvc-proto ruby-sdbm ruby-webrick ruby3.1 sgml-base unixodbc-common
  usrmerge util-linux-extra xml-core
The following packages have been kept back:
  filezilla filezilla-common gimp gimp-data gnucobol iotop libcob5 libcob5-dev
  libgimp2.0 libgs9-common libimlib2 libinput-bin libinput10 libldb2
  libnode-dev libpython3-dev libpython3-stdlib libselinux1 libselinux1-dev
  libsemanage-common libtalloc2 libtdb1 libtevent0 libwacom-common
  libwbclient0 mesa-utils node-ajv node-archy node-assert-plus
  node-bcrypt-pbkdf node-cacache node-chalk node-getpass node-gyp
  node-hosted-git-info node-jsonstream node-lru-cache node-mime node-mkdirp
  node-ms node-nopt node-npm-package-arg node-object-assign node-opener
  node-puka node-punycode node-qs node-rimraf node-semver node-sshpk
  node-strip-ansi node-tweetnacl node-verror node-which nodejs npm passwd
  python3 python3-dev python3-distutils python3-ldb python3-lib2to3
  python3-minimal python3-numpy python3-rpi.gpio python3-samba python3-smbus
  python3-talloc python3-tdb python3-venv rpi.gpio-common samba samba-common
  samba-common-bin samba-libs samba-vfs-modules xserver-xorg-input-libinput
The following packages will be upgraded:
  adduser adwaita-icon-theme alsa-utils apache2 apache2-bin apache2-data
  apache2-dev apache2-utils apt apt-file autoconf autoconf2.64 automake
  autopoint autotools-dev base-files base-passwd bash bash-completion binutils
  binutils-arm-linux-gnueabihf binutils-common bison bsdextrautils bsdutils
  bubblewrap bzip2 ca-certificates clang clang-11 cmake cmake-data
  colorized-logs comerr-dev console-setup console-setup-linux coreutils cpio
  cpp cpp-10 cron curl dash dbus dbus-user-session dbus-x11
  dconf-gsettings-backend dconf-service debconf debhelper debianutils
  default-libmysqlclient-dev device-tree-compiler dh-strip-nondeterminism
  dictionaries-common diffutils dirmngr distro-info-data dmidecode dmsetup
  dpkg dpkg-dev dwz e2fsprogs emacsen-common ethtool expat fake-hwclock
  fakeroot fdisk file findutils firebird-dev firebird3.0-common
  firebird3.0-common-doc flac flex fontconfig fontconfig-config
  fonts-dejavu-core fonts-urw-base35 freetds-common freetds-dev g++ g++-10
  galculator gcc gcc-10 gcc-10-base gettext gettext-base git git-man
  glib-networking glib-networking-common glib-networking-services gnupg
  gnupg-l10n gnupg-utils golang-1.15-go golang-1.15-src golang-go golang-src
  gparted gparted-common gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf
  gpgsm gpgv graphviz grep groff-base gsettings-desktop-schemas
  gstreamer1.0-plugins-base gstreamer1.0-plugins-good gtk-update-icon-cache
  gyp gzip hdparm hostname htop hunspell-en-us i2c-tools icu-devtools ifupdown
  init-system-helpers initramfs-tools initramfs-tools-core intltool-debian
  iproute2 iputils-ping isc-dhcp-client iso-codes iw kbd
  keyboard-configuration klibc-utils kmod krb5-multidev less libaa1 libacl1
  libacl1-dev libamd2 libapparmor-dev libapparmor1 libapr1 libapr1-dev
  libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-dev libaprutil1-ldap
  libapt-pkg-perl libapt-pkg6.0 libarchive13 libargon2-1 libargon2-dev
  libasan6 libasound2 libasound2-data libasound2-dev libasound2-plugins
  libaspell-dev libaspell15 libass9 libassuan0 libasyncns0 libatk-bridge2.0-0
  libatk1.0-0 libatk1.0-data libatkmm-1.6-1v5 libatlas3-base libatomic1
  libatopology2 libatspi2.0-0 libattr1 libattr1-dev libaudit-common libaudit1
  libavahi-client3 libavahi-common-data libavahi-common3 libayatana-ido3-0.4-0
  libayatana-indicator3-7 libbabl-0.1-0 libbinutils libblas3 libblkid-dev
  libblkid1 libbluray2 libbrotli-dev libbrotli1 libbs2b0 libbsd-dev libbsd0
  libbz2-1.0 libbz2-dev libc-ares2 libc-bin libc-client2007e
  libc-client2007e-dev libc-dev-bin libc-l10n libc6 libc6-dev libcaca0
  libcairo-gobject2 libcairo2 libcairomm-1.0-1v5 libcamd2 libcap-ng0 libcap2
  libcap2-bin libcc1-0 libccolamd2 libcddb2 libcdparanoia0 libcdt5 libcgraph6
  libcholmod3 libchromaprint1 libclang-common-11-dev libclang-cpp11
  libclang1-11 libcolamd2 libcolord2 libcom-err2 libcrypt-dev libcrypt1
  libcryptsetup12 libct4 libctf-nobfd0 libctf0 libcups2 libcurl3-gnutls
  libcurl4 libcurl4-gnutls-dev libdatrie1 libdb-dev libdb5.3 libdb5.3-dev
  libdbus-1-3 libdbus-glib-1-2 libdc1394-25 libdconf1 libde265-0
  libdebconfclient0 libdebhelper-perl libdeflate-dev libdeflate0
  libdevmapper1.02.1 libdns-export1110 libdouble-conversion3 libdpkg-perl
  libdrm-amdgpu1 libdrm-common libdrm-nouveau2 libdrm-radeon1 libdrm2 libdv4
  libdvdnav4 libdvdread8 libdw1 libebml5 libedit-dev libedit2 libegl-mesa0
  libegl1 libelf1 libenchant-2-2 libenchant-2-dev libepoxy0 liberror-perl
  libevdev2 libevent-2.1-7 libevent-core-2.1-7 libevent-dev
  libevent-extra-2.1-7 libevent-openssl-2.1-7 libevent-pthreads-2.1-7
  libexif12 libexiv2-27 libexpat1 libexpat1-dev libexporter-tiny-perl
  libext2fs2 libfaad2 libfakeroot libfann-dev libfann2 libfbclient2 libfdisk1
  libfdt1 libffi-dev libfftw3-double3 libfftw3-single3 libfido2-1
  libfile-readbackwards-perl libfile-stripnondeterminism-perl libflite1
  libfontconfig-dev libfontconfig1 libfreetype-dev libfreetype6
  libfreetype6-dev libfribidi0 libgbm1 libgc1 libgcc-10-dev libgcc-s1
  libgck-1-0 libgcr-base-3-1 libgcr-ui-3-1 libgcrypt20 libgcrypt20-dev
  libgd-dev libgd3 libgdbm-compat4 libgdbm6 libgdk-pixbuf-2.0-0
  libgdk-pixbuf2.0-common libgegl-0.4-0 libgegl-common libgexiv2-2
  libgfortran5 libgif7 libgirepository-1.0-1 libgl1 libgl1-mesa-dri
  libglapi-mesa libgles2 libglib2.0-0 libglib2.0-bin libglib2.0-data
  libglib2.0-dev libglib2.0-dev-bin libglibmm-2.4-1v5 libglu1-mesa libglvnd0
  libglx-mesa0 libglx0 libgme0 libgmp-dev libgmp10 libgmp3-dev libgmpxx4ldbl
  libgnutls30 libgomp1 libgpg-error-dev libgpg-error0 libgpm2 libgsm1
  libgssapi-krb5-2 libgssrpc4 libgstreamer-gl1.0-0
  libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 libgtk-3-0 libgtk-3-common
  libgtkmm-3.0-1v5 libgts-0.7-5 libgudev-1.0-0 libgvc6 libgvpr2
  libharfbuzz-icu0 libharfbuzz0b libheif1 libhiredis0.14 libhogweed6
  libhunspell-1.7-0 libi2c0 libib-util libicu-dev libidn2-0 libiec61883-0
  libilmbase25 libimobiledevice6 libip4tc2 libisc-export1105 libisl23 libiw30
  libjack-dev libjack0 libjansson4 libjavascriptcoregtk-4.0-18 libjbig-dev
  libjbig0 libjbig2dec0 libjpeg-dev libjpeg62-turbo libjpeg62-turbo-dev
  libjs-inherits libjs-is-typedarray libjs-jquery libjs-psl libjs-sphinxdoc
  libjs-typedarray-to-buffer libjs-underscore libjson-c5 libjson-glib-1.0-0
  libjson-glib-1.0-common libk5crypto3 libkadm5clnt-mit12 libkadm5srv-mit12
  libkdb5-10 libkeyutils1 libklibc libkmod2 libkrb5-3 libkrb5-dev
  libkrb5support0 libksba8 liblab-gamut1 liblapack3 liblcms2-2 libldap2-dev
  liblightdm-gobject-1-0 liblilv-0-0 liblirc-client0 liblist-moreutils-xs-perl
  libllvm11 liblocale-gettext-perl libltdl-dev libltdl7 liblua5.2-0
  liblua5.3-0 liblz4-1 liblzma-dev liblzma5 libmad0 libmagic-dev libmagic-mgc
  libmagic1 libmanette-0.2-0 libmariadb-dev libmariadb-dev-compat libmariadb3
  libmatroska7 libmcrypt-dev libmcrypt4 libmd-dev libmd0 libmd4c0
  libmemcached11 libmemcachedutil2 libmhash-dev libmhash2 libmount-dev
  libmount1 libmp3lame0 libmpc3 libmpdec3 libmpfr6 libmpg123-0 libmtp-common
  libmtp9 libmysofa1 libncurses-dev libncurses5-dev libncurses6 libncursesw6
  libnetsnmptrapd40 libnettle8 libnewt0.52 libnghttp2-14 libnl-3-200
  libnl-genl-3-200 libnl-route-3-200 libnotify4 libnspr4 libnss-myhostname
  libnss3 libobjc-10-dev libobjc4 libobrender32v5 libobt2v5 libodbc1 libogg0
  libonig-dev libonig5 libopenblas0-pthread libopenjp2-7 libopenmpt-modplug1
  libopenmpt0 libopus0 liborc-0.4-0 libout123-0 libp11-kit0 libpam-modules
  libpam-modules-bin libpam-runtime libpam-systemd libpam0g libpam0g-dev
  libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpangomm-1.4-1v5
  libpangoxft-1.0-0 libpaper1 libparted-fs-resize0 libparted2 libpathplan4
  libpcap0.8 libpci-dev libpci3 libpciaccess0 libpcre16-3 libpcre2-16-0
  libpcre2-32-0 libpcre2-8-0 libpcre2-dev libpcre3 libpcre3-dev libpcre32-3
  libpcrecpp0v5 libpcsclite1 libpeas-1.0-0 libpeas-common libpipeline1
  libpixman-1-0 libplist3 libplymouth5 libpng-dev libpng16-16 libpocketsphinx3
  libpolkit-agent-1-0 libpolkit-gobject-1-0 libpoppler-glib8 libpopt0
  libportaudio2 libportaudiocpp0 libpq-dev libpq5 libproxy1v5 libpsl5
  libpspell-dev libpugixml1v5 libpulse0 libpulsedsp libqdbm-dev libqdbm14
  libqt5core5a libqt5dbus5 libqt5gui5 libqt5network5 libqt5svg5 libqt5widgets5
  libqt5x11extras5 librabbitmq4 libraw20 libreadline-dev libreadline8
  libregexp-assemble-perl librhash0 librsvg2-2 librsvg2-common librubberband2
  libsamplerate0 libsasl2-2 libsasl2-dev libsasl2-modules-db libsctp-dev
  libsctp1 libsdl-image1.2 libsdl1.2debian libsdl2-2.0-0 libseccomp2
  libsecret-1-0 libsecret-common libsensors-config libsensors-dev libsensors5
  libserd-0-0 libshout3 libsigc++-2.0-0v5 libsigsegv2 libslang2 libsmartcols1
  libsnappy1v5 libsndfile1 libsndio7.0 libsnmp-base libsnmp-dev libsnmp40
  libsord-0-0 libsoup-gnome2.4-1 libsoup2.4-1 libspeex1 libspeexdsp1
  libsphinxbase3 libsqlite3-0 libsqlite3-dev libsratom-0-0 libss2
  libssh-gcrypt-4 libssh2-1 libssl-dev libstdc++-10-dev libstdc++6
  libsub-override-perl libsuitesparseconfig5 libsybdb5 libsyn123-0
  libsystemd-dev libsystemd0 libtag1v5 libtag1v5-vanilla libtasn1-6
  libtext-charwidth-perl libtext-iconv-perl libthai-data libthai0 libtheora0
  libtiff-dev libtinfo6 libtirpc-common libtirpc-dev libtirpc3 libtool
  libubsan1 libudev-dev libudev1 libudfread0 libumfpack5 libunistring2
  libunwind8 libupower-glib3 libusb-1.0-0 libutempter0 libuuid1 libuv1
  libuv1-dev libv4l-0 libv4lconvert0 libva-drm2 libva-x11-2 libva2 libvdpau1
  libvisual-0.4-0 libvpx-dev libvte-2.91-0 libvte-2.91-common libvulkan1
  libwavpack1 libwayland-client0 libwayland-cursor0 libwayland-egl1
  libwayland-server0 libwebkit2gtk-4.0-37 libwebp-dev libwebpdemux2
  libwebpmux3 libwmf0.2-7 libwoff1 libwpe-1.0-1 libwpebackend-fdo-1.0-1
  libwrap0 libwrap0-dev libwxbase3.0-0v5 libwxgtk3.0-gtk3-0v5 libx11-6
  libx11-data libx11-dev libx11-xcb1 libxaw7 libxcb-dri2-0 libxcb-dri3-0
  libxcb-glx0 libxcb-image0 libxcb-present0 libxcb-randr0 libxcb-render0
  libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb-xinerama0
  libxcb-xinput0 libxcb-xkb1 libxcb-xv0 libxcb1 libxcb1-dev libxcursor1
  libxdamage1 libxext6 libxfce4util-common libxfce4util7 libxfconf-0-3
  libxfixes3 libxfont2 libxft2 libxi6 libxinerama1 libxkbcommon-x11-0
  libxkbcommon0 libxml2 libxml2-dev libxmlrpc-epi-dev libxmlrpc-epi0
  libxmltok1 libxmltok1-dev libxmu6 libxmuu1 libxpm-dev libxpm4 libxrandr2
  libxrender1 libxres1 libxslt1-dev libxslt1.1 libxt-dev libxt6 libxtables12
  libxtst6 libxv1 libxxf86dga1 libxxhash0 libyaml-0-2 libz3-4 libzip-dev
  libzip4 libzmq5 libzstd1 libzvbi-common libzvbi0 lightdm linux-base locales
  locales-all login logsave lsb-base lsb-release lsof lua-lpeg lxrandr
  lxterminal m4 mailcap man-db mariadb-common mawk media-types mlock mount
  mousepad mpg123 mysql-common nano ncurses-base ncurses-bin neofetch netbase
  netcat-openbsd nmap nmap-common node-abbrev node-agent-base node-ansi
  node-ansi-regex node-ansi-styles node-ansistyles node-aproba
  node-are-we-there-yet node-asap node-asn1 node-asynckit node-aws-sign2
  node-aws4 node-balanced-match node-brace-expansion node-builtins
  node-caseless node-chownr node-clone node-color-convert node-color-name
  node-colors node-columnify node-combined-stream node-concat-map
  node-console-control-strings node-copy-concurrently node-core-util-is
  node-dashdash node-debug node-defaults node-delayed-stream node-delegates
  node-depd node-ecc-jsbn node-encoding node-err-code
  node-escape-string-regexp node-extend node-extsprintf node-fast-deep-equal
  node-forever-agent node-form-data node-fs-write-stream-atomic
  node-fs.realpath node-function-bind node-gauge node-glob node-graceful-fs
  node-har-schema node-har-validator node-has-flag node-has-unicode
  node-http-signature node-https-proxy-agent node-iconv-lite node-iferr
  node-imurmurhash node-indent-string node-inflight node-inherits node-ini
  node-ip node-ip-regex node-is-typedarray node-isarray node-isexe
  node-isstream node-jsbn node-json-parse-better-errors node-json-schema
  node-json-schema-traverse node-json-stable-stringify
  node-json-stringify-safe node-jsonify node-jsonparse node-jsprim node-leven
  node-lockfile node-mime-types node-minimatch node-move-concurrently
  node-mute-stream node-normalize-package-data node-npm-bundled node-npmlog
  node-number-is-nan node-oauth-sign node-once node-osenv node-p-map
  node-path-is-absolute node-performance-now node-process-nextick-args
  node-promise-inflight node-promise-retry node-promzard node-psl node-read
  node-read-package-json node-readable-stream node-resolve node-retry
  node-run-queue node-safe-buffer node-set-blocking node-signal-exit
  node-slash node-spdx-correct node-spdx-exceptions node-spdx-expression-parse
  node-spdx-license-ids node-ssri node-string-decoder node-string-width
  node-supports-color node-tar node-text-table node-tunnel-agent
  node-typedarray-to-buffer node-unique-filename node-uri-js
  node-util-deprecate node-uuid node-validate-npm-package-license
  node-validate-npm-package-name node-wcwidth.js node-wide-align node-wrappy
  node-write-file-atomic node-yallist ocl-icd-libopencl1 odbcinst
  odbcinst1debian2 openbox openssh-client openssh-server openssh-sftp-server
  openssl parted pci.ids perl perl-base pinentry-curses pkg-config plymouth
  policykit-1 poppler-data portaudio19-dev procps proftpd-core psmisc
  pulseaudio pulseaudio-utils python3-colorzero python3-dnspython
  python3-gpiozero python3-pkg-resources python3-setuptools rake re2c
  readline-common rng-tools5 rsync ruby ruby-minitest ruby-net-telnet
  ruby-power-assert ruby-rubygems ruby-test-unit ruby-xmlrpc runit-helper
  screen sed sensible-utils shared-mime-info sudo swig swig4.0 systemd
  systemd-sysv systemd-timesyncd systemtap-sdt-dev sysvinit-utils tar
  tdb-tools tigervnc-common tigervnc-scraping-server
  tigervnc-standalone-server tmux tzdata ucf udev unixodbc-dev unzip upower
  usbutils util-linux uuid-dev vorbis-tools wget whiptail wireless-regdb
  wireless-tools wpasupplicant x11-common x11-xkb-utils x11-xserver-utils
  x11proto-dev xarchiver xauth xdg-dbus-proxy xfconf xfonts-base
  xfonts-encodings xkb-data xserver-common xserver-xorg-core
  xserver-xorg-video-fbdev xz-utils zenity zenity-common zlib1g zlib1g-dev zsh
  zsh-common
986 upgraded, 134 newly installed, 0 to remove and 77 not upgraded.
Need to get 716 MB of archives.
After this operation, 1270 MB of additional disk space will be used.
Get:1 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf base-files armhf 12.4+rpi1+deb12u1 [70.9 kB]
Get:2 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-l10n all 2.36-9+rpi1+deb12u1 [675 kB]
Get:3 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf locales all 2.36-9+rpi1+deb12u1 [3902 kB]
Get:4 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf locales-all armhf 2.36-9+rpi1+deb12u1 [10.7 MB]
Get:5 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-dev-bin armhf 2.36-9+rpi1+deb12u1 [43.7 kB]
Get:6 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf binutils armhf 2.40-2+rpi2 [65.4 kB]
Get:7 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-dev armhf 2.74.6-1 [1464 kB]
Get:8 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc6-dev armhf 2.36-9+rpi1+deb12u1 [1256 kB]
Get:9 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rpcsvc-proto armhf 1.4.3-1 [55.1 kB]
Get:10 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc6 armhf 2.36-9+rpi1+deb12u1 [2106 kB]
Get:11 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzstd1 armhf 1.5.4+dfsg2-5 [237 kB]
Get:12 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libctf0 armhf 2.40-2+rpi2 [71.5 kB]
Get:13 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libctf-nobfd0 armhf 2.40-2+rpi2 [133 kB]
Get:14 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjansson4 armhf 2.14-2 [37.0 kB]
Get:15 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf binutils-arm-linux-gnueabihf armhf 2.40-2+rpi2 [2052 kB]
Get:16 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbinutils armhf 2.40-2+rpi2 [406 kB]
Get:17 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf binutils-common armhf 2.40-2+rpi2 [2470 kB]
Get:18 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libffi8 armhf 3.4.4-1 [19.4 kB]
Get:19 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-dev-bin armhf 2.74.6-1 [147 kB]
Get:20 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-bin armhf 2.74.6-1 [101 kB]
Get:21 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-0 armhf 2.74.6-1 [1203 kB]
Get:22 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam0g-dev armhf 1.5.2-6 [141 kB]
Get:23 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam0g armhf 1.5.2-6 [86.2 kB]
Get:24 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcrypt1 armhf 1:4.4.33-2 [93.3 kB]
Get:25 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcrypt-dev armhf 1:4.4.33-2 [121 kB]
Get:26 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-bin armhf 2.36-9+rpi1+deb12u1 [493 kB]
Get:27 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libapt-pkg-perl armhf 0.1.40+b4 [64.3 kB]
Get:28 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblist-moreutils-xs-perl armhf 0.430-3+b1 [35.1 kB]
Get:29 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtext-iconv-perl armhf 1.7-8 [13.8 kB]
Get:30 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtext-charwidth-perl armhf 0.04-11 [9328 B]
Get:31 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf perl-modules-5.36 all 5.36.0-7 [2815 kB]
Get:32 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgdbm6 armhf 1.23-3 [68.3 kB]
Get:33 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libperl5.36 armhf 5.36.0-7 [3462 kB]
Get:34 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf perl armhf 5.36.0-7 [239 kB]
Get:35 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf perl-base armhf 5.36.0-7 [1413 kB]
Get:36 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblocale-gettext-perl armhf 1.07-5 [14.9 kB]
Get:37 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zlib1g-dev armhf 1:1.2.13.dfsg-1 [901 kB]
Get:38 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zlib1g armhf 1:1.2.13.dfsg-1 [73.5 kB]
Get:39 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-12-base armhf 12.2.0-14+rpi1 [37.7 kB]
Get:40 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-s1 armhf 12.2.0-14+rpi1 [36.3 kB]
Get:41 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-data all 2.74.6-1 [1208 kB]
Get:42 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblzma-dev armhf 5.4.1-0.2 [246 kB]
Get:43 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblzma5 armhf 5.4.1-0.2 [192 kB]
Get:44 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdw1 armhf 0.188-2.1+rpi1 [212 kB]
Get:45 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libelf1 armhf 0.188-2.1+rpi1 [171 kB]
Get:46 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libblkid-dev armhf 2.38.1-5 [162 kB]
Get:47 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libblkid1 armhf 2.38.1-5 [131 kB]
Get:48 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf uuid-dev armhf 2.38.1-5 [37.7 kB]
Get:49 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libuuid1 armhf 2.38.1-5 [27.1 kB]
Get:50 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmount-dev armhf 2.38.1-5 [22.2 kB]
Get:51 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmount1 armhf 2.38.1-5 [143 kB]
Get:52 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-dev armhf 10.42-1 [648 kB]
Get:53 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-16-0 armhf 10.42-1 [210 kB]
Get:54 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-32-0 armhf 10.42-1 [201 kB]
Get:55 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-posix3 armhf 10.42-1 [55.1 kB]
Get:56 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-8-0 armhf 10.42-1 [225 kB]
Get:57 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libffi-dev armhf 3.4.4-1 [60.4 kB]
Get:58 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpkgconf3 armhf 1.8.1-1 [31.3 kB]
Get:59 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkgconf-bin armhf 1.8.1-1 [27.8 kB]
Get:60 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf m4 armhf 1.4.19-3 [256 kB]
Get:61 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf adduser all 3.134 [183 kB]
Get:62 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbpf1 armhf 1:1.1.0-1 [122 kB]
Get:63 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmd-dev armhf 1.0.4-2 [46.6 kB]
Get:64 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmd0 armhf 1.0.4-2 [28.6 kB]
Get:65 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbsd-dev armhf 0.11.7-2 [235 kB]
Get:66 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbsd0 armhf 0.11.7-2 [112 kB]
Get:67 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcap2 armhf 1:2.66-4 [23.5 kB]
Get:68 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdb5.3-dev armhf 5.3.28+dfsg2-1 [629 kB]
Get:69 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdb5.3 armhf 5.3.28+dfsg2-1 [571 kB]
Get:70 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtirpc-common all 1.3.3+ds-1 [14.0 kB]
Get:71 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtirpc-dev armhf 1.3.3+ds-1 [174 kB]
Get:72 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libatomic1 armhf 12.2.0-14+rpi1 [8240 B]
Get:73 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libssl3 armhf 3.0.9-1 [1619 kB]
Get:74 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkrb5-dev armhf 1.20.1-2 [14.6 kB]
Get:75 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf krb5-multidev armhf 1.20.1-2 [125 kB]
Get:76 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgssrpc4 armhf 1.20.1-2 [50.3 kB]
Get:77 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf comerr-dev armhf 2.1-1.47.0-2 [50.8 kB]
Get:78 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcom-err2 armhf 1.47.0-2 [19.1 kB]
Get:79 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkdb5-10 armhf 1.20.1-2 [35.2 kB]
Get:80 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkadm5srv-mit12 armhf 1.20.1-2 [45.2 kB]
Get:81 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkadm5clnt-mit12 armhf 1.20.1-2 [35.6 kB]
Get:82 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkeyutils1 armhf 1.6.3-2 [7892 B]
Get:83 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgssapi-krb5-2 armhf 1.20.1-2 [109 kB]
Get:84 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libk5crypto3 armhf 1.20.1-2 [72.9 kB]
Get:85 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkrb5support0 armhf 1.20.1-2 [29.3 kB]
Get:86 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkrb5-3 armhf 1.20.1-2 [283 kB]
Get:87 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtirpc3 armhf 1.3.3+ds-1 [72.0 kB]
Get:88 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxtables12 armhf 1.8.9-2 [27.9 kB]
Get:89 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcap2-bin armhf 1:2.66-4 [32.4 kB]
Get:90 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iproute2 armhf 6.1.0-3 [899 kB]
Get:104 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libncurses5-dev armhf 6.4-4 [932 B]
Get:91 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ifupdown armhf 0.8.41 [55.1 kB]
Get:92 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsmartcols1 armhf 2.38.1-5 [90.9 kB]
Get:93 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaudit-common all 1:3.0.9-1 [10.4 kB]
Err:93 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaudit-common all 1:3.0.9-1
  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
Get:94 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcap-ng0 armhf 0.8.3-1+b1 [15.6 kB]
Get:95 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaudit1 armhf 1:3.0.9-1 [43.7 kB]
Get:96 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf login armhf 1:4.13+dfsg1-1 [611 kB]
Get:97 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfdisk1 armhf 2.38.1-5 [178 kB]
Get:98 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fdisk armhf 2.38.1-5 [127 kB]
Get:99 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf util-linux-extra armhf 2.38.1-5 [97.5 kB]
Get:100 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf util-linux armhf 2.38.1-5 [1063 kB]
Get:101 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libncurses6 armhf 6.4-4 [80.0 kB]
Get:102 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtinfo6 armhf 6.4-4 [317 kB]
Get:103 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libncursesw6 armhf 6.4-4 [106 kB]
Get:105 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libncurses-dev armhf 6.4-4 [292 kB]
Get:106 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ncurses-bin armhf 6.4-4 [414 kB]
Get:107 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tar armhf 1.34+dfsg-1.2 [788 kB]
Get:108 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dpkg armhf 1.21.22+rpi1 [1497 kB]
Get:109 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libreadline-dev armhf 8.2-1.3 [123 kB]
Get:110 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf readline-common all 8.2-1.3 [69.0 kB]
Get:111 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libreadline8 armhf 8.2-1.3 [142 kB]
Get:112 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xkb-data all 2.35.1-1 [764 kB]
Get:113 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf kbd armhf 2.5.1-1 [300 kB]
Get:114 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnumber-compare-perl all 0.03-3 [6332 B]
Get:115 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtext-glob-perl all 0.11-3 [7676 B]
Get:116 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfile-find-rule-perl all 0.34-3 [26.6 kB]
Get:117 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf usrmerge all 35 [12.5 kB]
Get:118 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf init-system-helpers all 1.65.2 [49.8 kB]
Get:119 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf console-setup-linux all 1.221 [1882 kB]
Get:120 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf console-setup all 1.221 [102 kB]
Get:121 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf keyboard-configuration all 1.221 [416 kB]
Get:122 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf sysvinit-utils armhf 3.06-4 [29.2 kB]
Get:123 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf lsb-base all 11.6+rpi1 [4808 B]
Get:124 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf x11-common all 1:7.7+23 [252 kB]
Get:125 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf debianutils armhf 5.7-0.4 [101 kB]
Get:126 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf autoconf all 2.71-3 [332 kB]
Get:127 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkg-config armhf 1.8.1-1 [13.7 kB]
Get:128 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkgconf armhf 1.8.1-1 [25.9 kB]
Get:129 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbz2-dev armhf 1.0.8-5+b2 [26.8 kB]
Get:130 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf bzip2 armhf 1.0.8-5+b2 [47.4 kB]
Get:131 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbz2-1.0 armhf 1.0.8-5+b2 [43.5 kB]
Get:132 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgdbm-compat4 armhf 1.23-3 [47.8 kB]
Get:133 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgpg-error-dev armhf 1.46-1 [119 kB]
Get:134 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgpg-error0 armhf 1.46-1 [66.2 kB]
Get:135 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcrypt20-dev armhf 1.10.1-3 [685 kB]
Get:136 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcrypt20 armhf 1.10.1-3 [627 kB]
Get:137 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++6 armhf 12.2.0-14+rpi1 [504 kB]
Get:138 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblz4-1 armhf 1.9.4-1+rpi1+b1 [52.7 kB]
Get:139 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd-dev armhf 252.12-1~deb12u1+rpi1 [352 kB]
Get:140 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libargon2-dev armhf 0~20171227-0.3+deb12u1 [23.3 kB]
Get:141 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libargon2-1 armhf 0~20171227-0.3+deb12u1 [19.1 kB]
Get:142 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dmsetup armhf 2:1.02.185-2 [81.8 kB]
Get:143 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libudev-dev armhf 252.12-1~deb12u1+rpi1 [52.0 kB]
Get:144 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libattr1-dev armhf 1:2.5.1-4 [34.5 kB]
Get:145 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libattr1 armhf 1:2.5.1-4 [21.2 kB]
Get:146 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libacl1-dev armhf 2.3.1-3 [89.7 kB]
Get:147 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libacl1 armhf 2.3.1-3 [28.8 kB]
Get:148 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf kmod armhf 30+20221128-1 [82.2 kB]
Get:149 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libkmod2 armhf 30+20221128-1 [49.9 kB]
Get:150 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf less armhf 590-2 [114 kB]
Get:151 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpam-systemd armhf 252.12-1~deb12u1+rpi1 [200 kB]
Get:152 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd-timesyncd armhf 252.12-1~deb12u1+rpi1 [62.9 kB]
Get:153 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-xorg-video-fbdev armhf 1:0.5.0-2 [24.2 kB]
Get:154 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-xorg-core armhf 2:21.1.7-3 [3450 kB]
Get:155 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd armhf 252.12-1~deb12u1+rpi1 [2881 kB]
Get:156 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf udev armhf 252.12-1~deb12u1+rpi1 [1577 kB]
Get:157 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libudev1 armhf 252.12-1~deb12u1+rpi1 [99.1 kB]
Get:158 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdevmapper1.02.1 armhf 2:1.02.185-2 [123 kB]
Get:159 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-c5 armhf 0.16-2 [40.0 kB]
Get:160 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcryptsetup12 armhf 2:2.6.1-4~deb12u1 [191 kB]
Get:161 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapparmor-dev armhf 3.0.8-3 [80.7 kB]
Get:162 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapparmor1 armhf 3.0.8-3 [37.1 kB]
Get:163 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libip4tc2 armhf 1.8.9-2 [17.1 kB]
Get:164 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libseccomp2 armhf 2.5.4-1+rpi1+b1 [46.2 kB]
Get:165 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd-shared armhf 252.12-1~deb12u1+rpi1 [1511 kB]
Get:166 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam-modules-bin armhf 1.5.2-6 [71.5 kB]
Get:167 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam-modules armhf 1.5.2-6 [274 kB]
Get:168 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam-runtime all 1.5.2-6 [161 kB]
Get:169 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-user-session armhf 1.14.8-2~deb12u1 [77.4 kB]
Get:170 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-x11 armhf 1.14.8-2~deb12u1 [88.8 kB]
Get:171 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdbus-1-3 armhf 1.14.8-2~deb12u1 [176 kB]
Get:172 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus armhf 1.14.8-2~deb12u1 [94.5 kB]
Get:173 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-session-bus-common all 1.14.8-2~deb12u1 [77.5 kB]
Get:174 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexpat1-dev armhf 2.5.0-1 [130 kB]
Get:175 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexpat1 armhf 2.5.0-1 [77.2 kB]
Get:176 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-daemon armhf 1.14.8-2~deb12u1 [168 kB]
Get:177 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf x11proto-dev all 2022.1-1 [599 kB]
Get:178 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb1-dev armhf 1.15-1 [175 kB]
Get:179 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb1 armhf 1.15-1 [139 kB]
Get:180 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-dev armhf 2:1.8.4-2+deb12u1 [769 kB]
Get:181 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-data all 2:1.8.4-2+deb12u1 [292 kB]
Get:182 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-6 armhf 2:1.8.4-2+deb12u1 [691 kB]
Get:183 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-xcb1 armhf 2:1.8.4-2+deb12u1 [192 kB]
Get:184 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-bin armhf 1.14.8-2~deb12u1 [102 kB]
Get:185 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-system-bus-common all 1.14.8-2~deb12u1 [78.5 kB]
Get:186 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd-sysv armhf 252.12-1~deb12u1+rpi1 [41.9 kB]
Get:187 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxext6 armhf 2:1.3.4-1 [48.0 kB]
Get:188 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxt-dev armhf 1:1.2.1-1.1 [368 kB]
Get:189 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxt6 armhf 1:1.2.1-1.1 [155 kB]
Get:190 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmu6 armhf 2:1.1.3-3 [52.0 kB]
Get:191 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxpm-dev armhf 1:3.5.12-1.1 [96.5 kB]
Get:192 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxpm4 armhf 1:3.5.12-1.1 [42.0 kB]
Get:193 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxaw7 armhf 2:1.0.14-1 [165 kB]
Get:194 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxrender1 armhf 1:0.9.10-1.1 [30.0 kB]
Get:195 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxrandr2 armhf 2:1.5.2-2 [35.5 kB]
Get:196 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf x11-xkb-utils armhf 7.7+7 [140 kB]
Get:197 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-common all 2:21.1.7-3 [2382 kB]
Get:198 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcvt0 armhf 0.1.2-1 [5976 B]
Get:199 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgl1 armhf 1.6.0-1 [89.9 kB]
Get:200 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-common all 2.4.114-1+rpi1 [7276 B]
Get:201 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm2 armhf 2.4.114-1+rpi1 [32.8 kB]
Get:202 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-server0 armhf 1.21.0-1 [29.3 kB]
Get:203 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libegl-mesa0 armhf 22.3.6-1+deb12u1+rpi1 [93.0 kB]
Get:204 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgbm1 armhf 22.3.6-1+deb12u1+rpi1 [34.3 kB]
Get:205 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-client0 armhf 1.21.0-1 [23.3 kB]
Get:206 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-dri2-0 armhf 1.15-1 [107 kB]
Get:207 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-dri3-0 armhf 1.15-1 [107 kB]
Get:208 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-present0 armhf 1.15-1 [105 kB]
Get:209 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-randr0 armhf 1.15-1 [116 kB]
Get:210 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-sync1 armhf 1.15-1 [108 kB]
Get:211 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xfixes0 armhf 1.15-1 [109 kB]
Get:212 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-amdgpu1 armhf 2.4.114-1+rpi1 [19.3 kB]
Get:213 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libz3-4 armhf 4.8.12-3.1 [5797 kB]
Get:214 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libedit-dev armhf 3.1-20221030-2 [94.4 kB]
Get:215 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libedit2 armhf 3.1-20221030-2 [76.2 kB]
Get:216 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libicu72 armhf 72.1-3 [9009 kB]
Get:229 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libglapi-mesa armhf 22.3.6-1+deb12u1+rpi1 [45.8 kB]
Get:217 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf icu-devtools armhf 72.1-3 [175 kB]
Get:218 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libicu-dev armhf 72.1-3 [9959 kB]
Get:219 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxml2-dev armhf 2.9.14+dfsg-1.3~deb12u1 [637 kB]
Get:220 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxml2 armhf 2.9.14+dfsg-1.3~deb12u1 [570 kB]
Get:221 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libllvm15 armhf 1:15.0.6-4+rpi1+b1 [20.7 MB]
Get:222 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-nouveau2 armhf 2.4.114-1+rpi1 [17.0 kB]
Get:223 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-radeon1 armhf 2.4.114-1+rpi1 [20.7 kB]
Get:224 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsensors-dev armhf 1:3.6.0-7.1 [39.5 kB]
Get:225 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsensors-config all 1:3.6.0-7.1 [14.3 kB]
Get:226 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsensors5 armhf 1:3.6.0-7.1 [31.6 kB]
Get:227 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgl1-mesa-dri armhf 22.3.6-1+deb12u1+rpi1 [5636 kB]
Get:228 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libglx-mesa0 armhf 22.3.6-1+deb12u1+rpi1 [130 kB]
Get:230 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-glx0 armhf 1.15-1 [121 kB]
Get:231 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-shm0 armhf 1.15-1 [106 kB]
Get:232 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfixes3 armhf 1:6.0.0-2 [21.2 kB]
Get:233 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglx0 armhf 1.6.0-1 [32.0 kB]
Get:234 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgles2 armhf 1.6.0-1 [17.2 kB]
Get:235 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libegl1 armhf 1.6.0-1 [28.3 kB]
Get:236 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglvnd0 armhf 1.6.0-1 [53.8 kB]
Get:237 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libepoxy0 armhf 1.5.10-1 [172 kB]
Get:238 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpciaccess0 armhf 0.17-2 [48.8 kB]
Get:239 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpixman-1-0 armhf 0.42.2-1 [461 kB]
Get:240 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libunwind8 armhf 1.6.2-3 [42.6 kB]
Get:241 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfreetype-dev armhf 2.12.1+dfsg-5 [493 kB]
Get:242 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfreetype6-dev armhf 2.12.1+dfsg-5 [46.4 kB]
Get:243 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbrotli-dev armhf 1.0.9-2+b3 [270 kB]
Get:244 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbrotli1 armhf 1.0.9-2+b3 [258 kB]
Get:245 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpng-dev armhf 1.6.39-2 [336 kB]
Get:246 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpng16-16 armhf 1.6.39-2 [258 kB]
Get:247 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfreetype6 armhf 2.12.1+dfsg-5 [329 kB]
Get:248 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfont2 armhf 1:2.0.6-1 [120 kB]
Get:249 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libp11-kit0 armhf 0.24.1-2 [324 kB]
Get:250 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mount armhf 2.38.1-5 [125 kB]
Get:251 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd0 armhf 252.12-1~deb12u1+rpi1 [299 kB]
Get:252 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxxhash0 armhf 0.8.1-1 [27.8 kB]
Get:253 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapt-pkg6.0 armhf 2.6.1 [805 kB]
Get:254 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf debconf all 1.5.82 [121 kB]
Get:255 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bash armhf 5.2.15-2 [1365 kB]
Get:256 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bsdutils armhf 1:2.38.1-5 [84.2 kB]
Get:257 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmp3-dev armhf 2:6.2.1+dfsg1-1.1 [331 kB]
Get:258 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmp-dev armhf 2:6.2.1+dfsg1-1.1 [582 kB]
Get:259 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmpxx4ldbl armhf 2:6.2.1+dfsg1-1.1 [338 kB]
Get:260 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmp10 armhf 2:6.2.1+dfsg1-1.1 [507 kB]
Get:261 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf coreutils armhf 9.1-1 [2702 kB]
Get:262 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dash armhf 0.5.12-2 [78.9 kB]
Get:263 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf diffutils armhf 1:3.8-4 [332 kB]
Get:264 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf findutils armhf 4.9.0-4 [616 kB]
Get:265 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf grep armhf 3.8-5 [404 kB]
Get:266 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gzip armhf 1.12-1 [132 kB]
Get:267 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf hostname armhf 3.23+nmu1 [9908 B]
Get:268 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf sed armhf 4.9-1 [318 kB]
Get:269 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdebconfclient0 armhf 0.270 [9536 B]
Get:270 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf base-passwd armhf 3.6.1 [57.6 kB]
Get:271 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ncurses-base all 6.4-4 [261 kB]
Get:272 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnettle8 armhf 3.8.1-2 [293 kB]
Get:273 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libhogweed6 armhf 3.8.1-2 [315 kB]
Get:274 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libunistring2 armhf 1.0-2 [407 kB]
Get:275 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libidn2-0 armhf 2.3.3-1+b2 [117 kB]
Get:276 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtasn1-6 armhf 4.19.0-2 [50.9 kB]
Get:277 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgnutls30 armhf 3.7.9-2 [1309 kB]
Get:278 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libksba8 armhf 1.6.3-2 [107 kB]
Get:279 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libassuan0 armhf 2.5.5-5 [42.2 kB]
Get:280 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsasl2-modules-db armhf 2.1.28+dfsg-10 [19.1 kB]
Get:281 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsasl2-dev armhf 2.1.28+dfsg-10 [206 kB]
Get:282 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsasl2-2 armhf 2.1.28+dfsg-10 [51.9 kB]
Get:283 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldap-2.5-0 armhf 2.5.13+dfsg-5+rpi1 [154 kB]
Get:284 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gnupg-l10n all 2.2.40-1.1 [1093 kB]
Get:285 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gnupg-utils armhf 2.2.40-1.1 [812 kB]
Get:286 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgconf armhf 2.2.40-1.1 [540 kB]
Get:287 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dirmngr armhf 2.2.40-1.1 [731 kB]
Get:288 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg armhf 2.2.40-1.1 [843 kB]
Get:289 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg-agent armhf 2.2.40-1.1 [636 kB]
Get:290 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg-wks-client armhf 2.2.40-1.1 [518 kB]
Get:291 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg-wks-server armhf 2.2.40-1.1 [511 kB]
Get:292 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgv armhf 2.2.40-1.1 [601 kB]
Get:293 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgsm armhf 2.2.40-1.1 [621 kB]
Get:294 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gnupg all 2.2.40-1.1 [846 kB]
Get:295 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsqlite3-dev armhf 3.40.1-2 [893 kB]
Get:296 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsqlite3-0 armhf 3.40.1-2 [724 kB]
Get:297 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pinentry-curses armhf 1.2.1-1 [72.0 kB]
Get:298 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apt armhf 2.6.1 [1296 kB]
Get:299 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf logsave armhf 1.47.0-2 [19.1 kB]
Get:300 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf klibc-utils armhf 2.0.12-1+rpi1 [87.1 kB]
Get:301 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf initramfs-tools all 0.142 [72.9 kB]
Get:302 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf initramfs-tools-core all 0.142 [105 kB]
Get:303 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libext2fs2 armhf 1.47.0-2 [184 kB]
Get:304 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf e2fsprogs armhf 1.47.0-2 [521 kB]
Get:305 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libklibc armhf 2.0.12-1+rpi1 [42.1 kB]
Get:306 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf linux-base all 4.9 [31.8 kB]
Get:307 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpio armhf 2.13+dfsg-7.1 [229 kB]
Get:308 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cron-daemon-common all 3.0pl1-162 [12.7 kB]
Get:309 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cron armhf 3.0pl1-162 [68.2 kB]
Get:310 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf sensible-utils all 0.0.17+nmu1 [19.0 kB]
Get:311 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsctp-dev armhf 1.0.19+dfsg-2 [71.5 kB]
Get:312 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsctp1 armhf 1.0.19+dfsg-2 [29.1 kB]
Get:313 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapr1-dev armhf 1.7.2-3 [732 kB]
Get:314 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1-dbd-sqlite3 armhf 1.6.3-1 [12.3 kB]
Get:315 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1-ldap armhf 1.6.3-1 [11.3 kB]
Get:316 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldap2-dev all 2.5.13+dfsg-5+rpi1 [22.7 kB]
Get:317 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldap-dev armhf 2.5.13+dfsg-5+rpi1 [259 kB]
Get:318 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1-dev armhf 1.6.3-1 [397 kB]
Get:319 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1 armhf 1.6.3-1 [75.2 kB]
Get:320 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapr1 armhf 1.7.2-3 [82.4 kB]
Get:321 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf curl armhf 7.88.1-10+rpi1 [300 kB]
Get:322 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnghttp2-14 armhf 1.52.0-1 [60.6 kB]
Get:323 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpsl5 armhf 0.21.2-1 [57.5 kB]
Get:324 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libssh2-1 armhf 1.10.0-3+b1 [161 kB]
Get:325 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl4 armhf 7.88.1-10+rpi1 [343 kB]
Get:326 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblua5.3-0 armhf 5.3.6-2 [98.3 kB]
Get:327 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2 armhf 2.4.57-2 [215 kB]
Get:328 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-bin armhf 2.4.57-2 [1161 kB]
Get:329 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-data all 2.4.57-2 [160 kB]
Get:330 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-utils armhf 2.4.57-2 [201 kB]
Get:331 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf media-types all 10.0.0 [26.1 kB]
Get:332 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libproc2-0 armhf 2:4.0.2-3 [53.6 kB]
Get:333 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf procps armhf 2:4.0.2-3 [679 kB]
Get:334 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf flex armhf 2.6.4-8.2 [391 kB]
Get:335 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf git armhf 1:2.39.2-1.1 [5459 kB]
Get:336 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf git-man all 1:2.39.2-1.1 [2049 kB]
Get:337 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl4-gnutls-dev armhf 7.88.1-10+rpi1 [419 kB]
Get:338 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl3-gnutls armhf 7.88.1-10+rpi1 [337 kB]
Get:339 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liberror-perl all 0.17029-2 [29.0 kB]
Get:340 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcbor0.8 armhf 0.8.0-2 [22.8 kB]
Get:341 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfido2-1 armhf 1.12.0-2 [67.6 kB]
Get:342 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssh-sftp-server armhf 1:9.2p1-2 [55.5 kB]
Get:343 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssh-server armhf 1:9.2p1-2 [377 kB]
Get:344 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssh-client armhf 1:9.2p1-2 [818 kB]
Get:345 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf ucf all 3.0043+nmu1 [55.2 kB]
Get:346 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf runit-helper all 2.15.2 [6520 B]
Get:347 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwrap0-dev armhf 7.6.q-32 [18.4 kB]
Get:348 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwrap0 armhf 7.6.q-32 [52.6 kB]
Get:349 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf poppler-data all 0.4.12-1 [1601 kB]
Get:350 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf netbase all 6.4 [12.8 kB]
Get:351 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libhiredis0.14 armhf 0.14.1-3 [30.7 kB]
Get:352 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libhashkit2 armhf 1.1.4-1 [16.3 kB]
Get:353 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmemcached11 armhf 1.1.4-1 [70.2 kB]
Get:354 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmemcachedutil2 armhf 1.1.4-1 [13.7 kB]
Get:355 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf proftpd-core armhf 1.3.8+dfsg-4+deb12u1 [2437 kB]
Get:356 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libatopology2 armhf 1.2.8-1+b1 [47.0 kB]
Get:357 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasound2-dev armhf 1.2.8-1+b1 [110 kB]
Get:358 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasound2 armhf 1.2.8-1+b1 [302 kB]
Get:359 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libasound2-data all 1.2.8-1 [20.5 kB]
Get:360 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgomp1 armhf 12.2.0-14+rpi1 [95.4 kB]
Get:361 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfftw3-single3 armhf 3.3.10-1 [509 kB]
Get:362 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgstreamer1.0-0 armhf 1.22.0-2 [1073 kB]
Get:363 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liborc-0.4-0 armhf 1:0.4.33-2 [135 kB]
Get:364 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iso-codes all 4.15.0-1 [2906 kB]
Get:365 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-plugins-base1.0-0 armhf 1.22.0-3+deb12u1 [840 kB]
Get:366 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf autotools-dev all 20220109.1 [51.6 kB]
Get:367 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf automake all 1:1.16.5-1.3 [823 kB]
Get:368 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libltdl-dev armhf 2.4.7-5 [161 kB]
Get:369 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libltdl7 armhf 2.4.7-5 [390 kB]
Get:370 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libogg0 armhf 1.3.5-3 [21.7 kB]
Get:371 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libflac12 armhf 1.4.2+ds-2 [149 kB]
Get:372 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmp3lame0 armhf 3.100-6 [347 kB]
Get:373 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmpg123-0 armhf 1.31.2-1 [126 kB]
Get:374 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopus0 armhf 1.3.1-3 [171 kB]
Get:375 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsndfile1 armhf 1.2.0-1 [177 kB]
Get:376 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpulsedsp armhf 16.1+dfsg1-2+b2 [34.8 kB]
Get:377 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf pulseaudio armhf 16.1+dfsg1-2+b2 [1079 kB]
Get:378 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf pulseaudio-utils armhf 16.1+dfsg1-2+b2 [81.8 kB]
Get:379 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasyncns0 armhf 0.8-6+b3 [12.0 kB]
Get:380 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpulse0 armhf 16.1+dfsg1-2+b2 [239 kB]
Get:381 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspeexdsp1 armhf 1.2.1-1 [33.6 kB]
Get:382 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxtst6 armhf 2:1.2.3-1.1 [26.3 kB]
Get:383 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaom3 armhf 3.6.0-1 [1332 kB]
Get:384 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libva-x11-2 armhf 2.17.0-1 [19.6 kB]
Get:385 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libva-drm2 armhf 2.17.0-1 [15.9 kB]
Get:386 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libva2 armhf 2.17.0-1 [61.1 kB]
Get:387 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvdpau1 armhf 1.5-2 [23.9 kB]
Get:388 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ocl-icd-libopencl1 armhf 2.3.1-1 [40.3 kB]
Get:389 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavutil57 armhf 7:5.1.3-1 [325 kB]
Get:390 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcairo-gobject2 armhf 1.16.0-7 [111 kB]
Get:391 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfontconfig-dev armhf 2.14.1-4 [383 kB]
Get:392 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fonts-dejavu-core all 2.37-6 [1068 kB]
Get:393 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fonts-urw-base35 all 20200910-7 [10.8 MB]
Get:453 http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian bookworm/main armhf libpcre3-dev armhf 2:8.39-15 [576 kB]
Get:394 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fontconfig-config armhf 2.14.1-4 [315 kB]
Err:394 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fontconfig-config armhf 2.14.1-4
  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
Get:395 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfontconfig1 armhf 2.14.1-4 [366 kB]
Get:396 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-render0 armhf 1.15-1 [114 kB]
Get:397 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcairo2 armhf 1.16.0-7 [482 kB]
Get:398 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcodec2-1.0 armhf 1.0.5-1 [8151 kB]
Get:399 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdav1d6 armhf 1.0.0-2+rpi1 [205 kB]
Get:400 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgsm1 armhf 1.0.22-1 [28.3 kB]
Get:401 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libhwy1 armhf 1.0.3-3+rpi1 [20.9 kB]
Get:402 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblcms2-2 armhf 2.14-2 [124 kB]
Get:403 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjxl0.7 armhf 0.7.0-10 [627 kB]
Get:404 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenjp2-7 armhf 2.5.0-2 [164 kB]
Get:405 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf librav1e0 armhf 0.5.1-6 [521 kB]
Get:406 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgdk-pixbuf-2.0-0 armhf 2.42.10+dfsg-1+b1 [123 kB]
Get:407 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgdk-pixbuf2.0-common all 2.42.10+dfsg-1 [306 kB]
Get:408 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf shared-mime-info armhf 2.2-1 [726 kB]
Get:409 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjpeg62-turbo-dev armhf 1:2.1.5-2 [258 kB]
Get:410 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjpeg62-turbo armhf 1:2.1.5-2 [143 kB]
Get:411 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdeflate-dev armhf 1.14-1 [48.1 kB]
Get:412 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdeflate0 armhf 1.14-1 [50.9 kB]
Get:413 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjbig-dev armhf 2.1-6.1 [27.2 kB]
Get:414 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjbig0 armhf 2.1-6.1 [27.0 kB]
Get:415 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblerc4 armhf 4.0.0+ds-2 [133 kB]
Get:416 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebp7 armhf 1.2.4-0.2 [242 kB]
Get:417 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtiff6 armhf 4.5.0-6 [293 kB]
Get:418 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librsvg2-common armhf 2.54.7+dfsg-1~deb12u1 [21.0 kB]
Get:419 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libharfbuzz0b armhf 6.0.0+dfsg-3 [1894 kB]
Get:420 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxft2 armhf 2.3.6-1 [53.7 kB]
Get:421 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpangocairo-1.0-0 armhf 1.50.12+ds-1 [30.1 kB]
Get:422 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpangoft2-1.0-0 armhf 1.50.12+ds-1 [40.5 kB]
Get:423 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpango-1.0-0 armhf 1.50.12+ds-1 [186 kB]
Get:424 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpangoxft-1.0-0 armhf 1.50.12+ds-1 [24.2 kB]
Get:425 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fontconfig armhf 2.14.1-4 [449 kB]
Get:426 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfribidi0 armhf 1.0.8-2.1 [63.7 kB]
Get:427 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libthai-data all 0.1.29-1 [176 kB]
Get:428 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdatrie1 armhf 0.2.13-2+b2 [39.9 kB]
Get:429 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libthai0 armhf 0.1.29-1 [54.5 kB]
Get:430 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librsvg2-2 armhf 2.54.7+dfsg-1~deb12u1 [2205 kB]
Get:431 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsnappy1v5 armhf 1.1.9-3 [23.9 kB]
Get:432 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspeex1 armhf 1.2.1-2 [45.5 kB]
Get:433 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsvtav1enc1 armhf 1.4.1+dfsg-1 [880 kB]
Get:434 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libswresample4 armhf 7:5.1.3-1 [85.1 kB]
Get:435 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtheora0 armhf 1.1.1+dfsg.1-16.1 [130 kB]
Get:436 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvpx7 armhf 1.12.0-1 [1210 kB]
Get:437 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebp-dev armhf 1.2.4-0.2 [350 kB]
Get:438 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebpdemux2 armhf 1.2.4-0.2 [98.4 kB]
Get:439 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebpmux3 armhf 1.2.4-0.2 [106 kB]
Get:440 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx264-164 armhf 2:0.164.3095+gitbaee400-3+rpi1 [688 kB]
Get:441 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libx265-199 armhf 3.5-2 [548 kB]
Get:442 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libzvbi0 armhf 0.2.41-1 [241 kB]
Get:443 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libzvbi-common all 0.2.41-1 [69.7 kB]
Get:444 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavcodec59 armhf 7:5.1.3-1 [4578 kB]
Get:445 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjack-dev armhf 1:0.126.0-2 [148 kB]
Get:446 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjack0 armhf 1:0.126.0-2 [81.1 kB]
Get:447 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsamplerate0 armhf 0.2.2-3 [943 kB]
Get:448 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libasound2-plugins armhf 1.2.7.1-1 [66.4 kB]
Get:449 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpopt0 armhf 1.19+dfsg-1 [40.4 kB]
Get:450 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rsync armhf 3.2.7-1 [368 kB]
Get:451 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf sgml-base all 1.31 [15.4 kB]
Get:452 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf sudo armhf 1.9.13p3-1+deb12u1 [1825 kB]
Get:454 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre16-3 armhf 2:8.39-15 [234 kB]
Get:455 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre32-3 armhf 2:8.39-15 [225 kB]
Get:456 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcrecpp0v5 armhf 2:8.39-15 [141 kB]
Get:457 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre3 armhf 2:8.39-15 [313 kB]
Get:458 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgc1 armhf 1:8.2.2-3 [235 kB]
Get:459 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc4 armhf 12.2.0-14+rpi1 [33.6 kB]
Get:460 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc-10-dev armhf 10.4.0-7+rpi1 [159 kB]
Get:461 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-11-base armhf 11.3.0-12+rpi1 [38.6 kB]
Get:462 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasan6 armhf 11.3.0-12+rpi1 [1946 kB]
Get:463 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libubsan1 armhf 12.2.0-14+rpi1 [861 kB]
Get:464 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf g++-10 armhf 10.4.0-7+rpi1 [7360 kB]
Get:551 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf g++ armhf 4:12.2.0-3+rpi1 [1344 B]
Get:465 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-10 armhf 10.4.0-7+rpi1 [13.4 MB]
Get:466 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++-10-dev armhf 10.4.0-7+rpi1 [1763 kB]
Get:467 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-10-dev armhf 10.4.0-7+rpi1 [682 kB]
Get:468 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libisl23 armhf 0.25-1 [519 kB]
Get:469 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmpfr6 armhf 4.2.0-1 [574 kB]
Get:470 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmpc3 armhf 1.3.1-1 [41.0 kB]
Get:471 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcc1-0 armhf 12.2.0-14+rpi1 [32.2 kB]
Get:472 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpp-10 armhf 10.4.0-7+rpi1 [6697 kB]
Get:473 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgfortran5 armhf 12.2.0-14+rpi1 [238 kB]
Get:474 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-10-base armhf 10.4.0-7+rpi1 [36.0 kB]
Get:475 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libplymouth5 armhf 22.02.122-3 [84.3 kB]
Get:476 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf plymouth armhf 22.02.122-3 [121 kB]
Get:477 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mawk armhf 1.3.4.20200120-3.1 [102 kB]
Get:478 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf tzdata all 2023c-5 [296 kB]
Get:479 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dmidecode armhf 3.4-1 [55.4 kB]
Get:480 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf groff-base armhf 1.22.4-10 [774 kB]
Get:481 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iputils-ping armhf 3:20221126-1 [43.9 kB]
Get:482 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf isc-dhcp-client armhf 4.4.3-P1-2 [945 kB]
Get:483 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bsdextrautils armhf 2.38.1-5 [78.5 kB]
Get:484 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpipeline1 armhf 1.5.7-1 [33.4 kB]
Get:485 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf man-db armhf 2.11.2-2 [1342 kB]
Get:486 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf nano armhf 7.2-1 [663 kB]
Get:487 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf netcat-openbsd armhf 1.219-1 [38.9 kB]
Get:488 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bash-completion all 1:2.11-6 [234 kB]
Err:488 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bash-completion all 1:2.11-6
  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
Get:489 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssl armhf 3.0.9-1 [1365 kB]
Get:490 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ca-certificates all 20230311 [153 kB]
Get:491 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf file armhf 1:5.44-3 [41.5 kB]
Get:492 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmagic-dev armhf 1:5.44-3 [107 kB]
Get:493 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmagic1 armhf 1:5.44-3 [95.3 kB]
Get:494 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmagic-mgc armhf 1:5.44-3 [305 kB]
Get:495 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gettext-base armhf 0.21-12 [156 kB]
Get:496 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf lsof armhf 4.95.0-1+rpi1 [305 kB]
Get:497 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libutempter0 armhf 1.2.1-3 [8404 B]
Get:498 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf screen armhf 4.9.0-4 [539 kB]
Get:499 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf wget armhf 1.21.3-1+b1 [942 kB]
Get:500 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xz-utils armhf 5.4.1-0.2 [467 kB]
Get:501 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gtk-update-icon-cache armhf 3.24.37-2 [42.3 kB]
Get:502 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf adwaita-icon-theme all 43-1 [5124 kB]
Get:503 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf alsa-utils armhf 1.2.8-1 [1057 kB]
Get:504 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dpkg-dev all 1.21.22+rpi1 [1353 kB]
Get:505 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf debhelper all 13.11.4 [942 kB]
Get:506 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdebhelper-perl all 13.11.4 [81.2 kB]
Get:507 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdpkg-perl all 1.21.22+rpi1 [603 kB]
Get:508 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsub-override-perl all 0.09-4 [9304 B]
Get:509 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dh-strip-nondeterminism all 1.13.1-1 [8620 B]
Get:510 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfile-stripnondeterminism-perl all 1.13.1-1 [19.4 kB]
Get:511 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dwz armhf 0.15-1 [92.4 kB]
Get:512 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-dev armhf 2.4.57-2 [306 kB]
Get:513 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libregexp-assemble-perl all 0.38-2 [77.8 kB]
Get:514 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apt-file all 3.3 [39.1 kB]
Get:515 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf at-spi2-common all 2.46.0-5 [162 kB]
Get:516 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf autoconf2.64 all 2.64+dfsg-1.1 [480 kB]
Get:517 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gettext armhf 0.21-12 [1201 kB]
Get:518 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf autopoint all 0.21-12 [495 kB]
Get:519 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf bison armhf 2:3.8.2+dfsg-1 [1114 kB]
Get:520 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bubblewrap armhf 0.8.0-2 [42.7 kB]
Get:521 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libllvm14 armhf 1:14.0.6-12+rpi1 [19.5 MB]
Get:522 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-cpp14 armhf 1:14.0.6-12+rpi1 [9464 kB]
Get:523 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasan8 armhf 12.2.0-14+rpi1 [2088 kB]
Get:524 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-12-dev armhf 12.2.0-14+rpi1 [727 kB]
Get:525 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++-12-dev armhf 12.2.0-14+rpi1 [2027 kB]
Get:526 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc-12-dev armhf 12.2.0-14+rpi1 [159 kB]
Get:527 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-common-14-dev all 1:14.0.6-12+rpi1 [891 kB]
Get:528 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf llvm-14-linker-tools armhf 1:14.0.6-12+rpi1 [1044 kB]
Get:529 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang1-14 armhf 1:14.0.6-12+rpi1 [5208 kB]
Get:530 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf clang-14 armhf 1:14.0.6-12+rpi1 [95.7 kB]
Get:531 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf clang armhf 1:14.0-55.6 [4972 B]
Get:532 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf clang-11 armhf 1:11.1.0-6+rpi2 [77.6 kB]
Get:533 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-common-11-dev armhf 1:11.1.0-6+rpi2 [2794 kB]
Get:534 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-cpp11 armhf 1:11.1.0-6+rpi2 [8244 kB]
Get:535 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libllvm11 armhf 1:11.1.0-6+rpi2 [15.6 MB]
Get:536 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-11-dev armhf 11.3.0-12+rpi1 [698 kB]
Get:537 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++-11-dev armhf 11.3.0-12+rpi1 [1976 kB]
Get:538 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc-11-dev armhf 11.3.0-12+rpi1 [160 kB]
Get:539 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf llvm-11-linker-tools armhf 1:11.1.0-6+rpi2 [912 kB]
Get:540 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang1-11 armhf 1:11.1.0-6+rpi2 [4620 kB]
Get:736 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdb-dev armhf 5.3.2 [1744 B]
Get:541 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libarchive13 armhf 3.6.2-1 [293 kB]
Get:542 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjsoncpp25 armhf 1.9.5-4 [66.7 kB]
Get:543 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf librhash0 armhf 1.4.3-3 [142 kB]
Get:544 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libuv1-dev armhf 1.44.2-1+rpi1 [157 kB]
Get:545 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libuv1 armhf 1.44.2-1+rpi1 [125 kB]
Get:546 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cmake armhf 3.25.1-1 [3859 kB]
Get:547 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cmake-data all 3.25.1-1 [2026 kB]
Get:548 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf colorized-logs armhf 2.6-1 [15.4 kB]
Get:549 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpp-12 armhf 12.2.0-14+rpi1 [7159 kB]
Get:550 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-12 armhf 12.2.0-14+rpi1 [14.2 MB]
Get:552 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc armhf 4:12.2.0-3+rpi1 [5216 B]
Get:553 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf g++-12 armhf 12.2.0-14+rpi1 [7914 kB]
Get:554 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpp armhf 4:12.2.0-3+rpi1 [7048 B]
Get:555 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dconf-gsettings-backend armhf 0.40.0-4 [23.1 kB]
Get:556 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dconf-service armhf 0.40.0-4 [28.9 kB]
Get:557 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdconf1 armhf 0.40.0-4 [36.0 kB]
Get:558 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mysql-common all 5.8+1.1.0 [6636 B]
Get:559 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mariadb-common all 1:10.11.3-1+rpi1 [24.1 kB]
Get:560 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmariadb-dev-compat armhf 1:10.11.3-1+rpi1 [22.9 kB]
Get:561 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmariadb-dev armhf 1:10.11.3-1+rpi1 [247 kB]
Get:562 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmariadb3 armhf 1:10.11.3-1+rpi1 [154 kB]
Get:563 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libssl-dev armhf 3.0.9-1 [2099 kB]
Get:564 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf default-libmysqlclient-dev armhf 1.1.0 [3092 B]
Get:565 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfdt1 armhf 1.6.1-4+b1 [15.7 kB]
Get:566 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libyaml-0-2 armhf 0.2.5-1 [44.6 kB]
Get:567 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf device-tree-compiler armhf 1.6.1-4+b1 [216 kB]
Get:568 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf emacsen-common all 3.0.5 [12.3 kB]
Get:569 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dictionaries-common all 1.29.5 [184 kB]
Get:570 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf distro-info-data all 0.58 [5848 B]
Get:571 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ethtool armhf 1:6.1-1 [160 kB]
Get:572 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf expat armhf 2.5.0-1 [38.3 kB]
Get:573 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf fake-hwclock all 0.12+nmu1 [6336 B]
Get:574 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfakeroot armhf 1.31-1.2 [25.7 kB]
Get:575 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fakeroot armhf 1.31-1.2 [66.0 kB]
Get:576 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libib-util armhf 3.0.11.33637.ds4-2+b1 [3360 B]
Get:577 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf firebird-dev armhf 3.0.11.33637.ds4-2+b1 [120 kB]
Get:578 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfbclient2 armhf 3.0.11.33637.ds4-2+b1 [452 kB]
Get:579 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf firebird3.0-common all 3.0.11.33637.ds4-2 [15.3 kB]
Get:580 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf firebird3.0-common-doc all 3.0.11.33637.ds4-2 [27.0 kB]
Get:581 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf flac armhf 1.4.2+ds-2 [154 kB]
Get:582 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf freetds-common all 1.3.17+ds-2 [28.9 kB]
Get:583 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf freetds-dev armhf 1.3.17+ds-2 [237 kB]
Get:584 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libct4 armhf 1.3.17+ds-2 [142 kB]
Get:585 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsybdb5 armhf 1.3.17+ds-2 [165 kB]
Get:586 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatk1.0-0 armhf 2.46.0-5 [41.4 kB]
Get:587 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxi6 armhf 2:1.8-1 [78.1 kB]
Get:588 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatspi2.0-0 armhf 2.46.0-5 [63.8 kB]
Get:589 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatk-bridge2.0-0 armhf 2.46.0-5 [55.6 kB]
Get:590 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcolord2 armhf 1.4.6-2.2 [115 kB]
Get:591 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavahi-client3 armhf 0.8-10 [41.1 kB]
Get:592 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavahi-common3 armhf 0.8-10 [38.5 kB]
Get:593 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavahi-common-data armhf 0.8-10 [107 kB]
Get:594 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcups2 armhf 2.4.2-3+deb12u1 [205 kB]
Get:595 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-cursor0 armhf 1.21.0-1 [13.2 kB]
Get:596 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-egl1 armhf 1.21.0-1 [8448 B]
Get:597 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcursor1 armhf 1:1.2.1-1 [38.0 kB]
Get:598 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxdamage1 armhf 1:1.1.6-1 [14.7 kB]
Get:599 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxinerama1 armhf 2:1.1.4-3 [17.4 kB]
Get:600 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xkb1 armhf 1.15-1 [126 kB]
Get:601 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxkbcommon-x11-0 armhf 1.5.0-1 [13.8 kB]
Get:602 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxkbcommon0 armhf 1.5.0-1 [93.1 kB]
Get:603 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgtk-3-common all 3.24.37-2 [3891 kB]
Get:604 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgtk-3-0 armhf 3.24.37-2 [2351 kB]
Get:605 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf galculator armhf 2.1.4-1.2 [152 kB]
Get:606 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libproxy1v5 armhf 0.4.18-1.2 [48.8 kB]
Get:607 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf glib-networking-common all 2.74.0-4 [80.3 kB]
Get:608 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf glib-networking armhf 2.74.0-4 [60.8 kB]
Get:609 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf glib-networking-services armhf 2.74.0-4 [11.4 kB]
Get:610 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gsettings-desktop-schemas all 43.0-1 [643 kB]
Get:611 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-1.15-src armhf 1.15.15-5+rpi1 [13.9 MB]
Get:612 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-1.15-go armhf 1.15.15-5+rpi1 [43.2 MB]
Get:908 http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian bookworm/main armhf libruby armhf 1:3.1 [4968 B]
Get:613 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf golang-1.19-src all 1.19.8-2 [18.3 MB]
Get:974 http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian bookworm/main armhf node-asynckit all 0.4.0-5 [10.3 kB]
Get:614 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf golang-1.19-go armhf 1.19.8-2 [56.9 MB]
Get:615 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-src all 2:1.19~1 [5756 B]
Get:616 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-go armhf 2:1.19~1 [45.0 kB]
Get:617 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gparted armhf 1.3.1-1 [714 kB]
Get:618 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gparted-common all 1.3.1-1 [1711 kB]
Get:619 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsigc++-2.0-0v5 armhf 2.12.0-1 [24.2 kB]
Get:620 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglibmm-2.4-1v5 armhf 2.66.5-2 [494 kB]
Get:621 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatkmm-1.6-1v5 armhf 2.28.3-1 [67.3 kB]
Get:622 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcairomm-1.0-1v5 armhf 1.14.4-2 [49.1 kB]
Get:623 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpangomm-1.4-1v5 armhf 2.46.3-1 [57.3 kB]
Get:624 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtkmm-3.0-1v5 armhf 3.24.7-1 [808 kB]
Get:625 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf parted armhf 3.5-3 [34.5 kB]
Get:626 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libparted-fs-resize0 armhf 3.5-3 [35.3 kB]
Get:627 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libparted2 armhf 3.5-3 [283 kB]
Get:628 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf xml-core all 0.18+nmu1 [23.8 kB]
Get:629 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libduktape207 armhf 2.7.0-2 [115 kB]
Get:630 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf policykit-1 armhf 122-3 [11.8 kB]
Get:631 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpolkit-agent-1-0 armhf 122-3 [22.1 kB]
Get:632 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpolkit-gobject-1-0 armhf 122-3 [38.1 kB]
Get:633 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf polkitd armhf 122-3 [108 kB]
Get:634 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkexec armhf 122-3 [22.2 kB]
Get:635 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcdt5 armhf 2.42.2-7+b2 [37.3 kB]
Get:636 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcgraph6 armhf 2.42.2-7+b2 [56.0 kB]
Get:637 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libabsl20220623 armhf 20220623.1-1+rpi1 [361 kB]
Get:638 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgav1-1 armhf 0.18.0-1+rpi1+b1 [285 kB]
Get:639 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libyuv0 armhf 0.0~git20230123.b2528b0-1 [82.7 kB]
Get:640 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavif15 armhf 0.11.1-1 [84.1 kB]
Get:641 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavif-dev armhf 0.11.1-1 [41.7 kB]
Get:642 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libde265-0 armhf 1.0.11-1+rpi1 [137 kB]
Get:643 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libheif1 armhf 1.15.1-1 [178 kB]
Get:644 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaom-dev armhf 3.6.0-1 [1528 kB]
Get:645 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdav1d-dev armhf 1.0.0-2+rpi1 [25.7 kB]
Get:646 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libde265-dev armhf 1.0.11-1+rpi1 [13.8 kB]
Get:647 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libx265-dev armhf 3.5-2 [571 kB]
Get:648 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libheif-dev armhf 1.15.1-1 [33.5 kB]
Get:649 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjpeg-dev armhf 1:2.1.5-2 [71.8 kB]
Get:650 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzstd-dev armhf 1.5.4+dfsg2-5 [297 kB]
Get:651 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtiffxx6 armhf 4.5.0-6 [144 kB]
Get:652 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblerc-dev armhf 4.0.0+ds-2 [147 kB]
Get:653 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtiff-dev armhf 4.5.0-6 [415 kB]
Get:654 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvpx-dev armhf 1.12.0-1 [658 kB]
Get:655 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgd-dev armhf 2.3.3-9 [237 kB]
Get:656 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgd3 armhf 2.3.3-9 [103 kB]
Get:657 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgts-0.7-5 armhf 0.7.6+darcs121130-5 [134 kB]
Get:658 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpathplan4 armhf 2.42.2-7+b2 [39.5 kB]
Get:659 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgvc6 armhf 2.42.2-7+b2 [566 kB]
Get:660 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgvpr2 armhf 2.42.2-7+b2 [162 kB]
Get:661 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblab-gamut1 armhf 2.42.2-7+b2 [197 kB]
Get:662 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf graphviz armhf 2.42.2-7+b2 [479 kB]
Get:663 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcdparanoia0 armhf 3.10.2+debian-14 [41.7 kB]
Get:664 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvisual-0.4-0 armhf 0.4.0-19 [117 kB]
Get:665 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gstreamer1.0-plugins-base armhf 1.22.0-3+deb12u1 [670 kB]
Get:666 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgpm2 armhf 1.20.7-10+b2 [35.5 kB]
Get:667 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libslang2 armhf 2.3.3-3 [500 kB]
Get:668 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaa1 armhf 1.4p5-50 [50.8 kB]
Get:669 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcaca0 armhf 0.99.beta20-3 [194 kB]
Get:670 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdv4 armhf 1.0.0-15 [65.6 kB]
Get:671 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgudev-1.0-0 armhf 237-2 [13.2 kB]
Get:672 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libiec61883-0 armhf 1.2.0-6 [28.0 kB]
Get:673 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libshout3 armhf 2.4.6-1+b1 [48.5 kB]
Get:674 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtag1v5 armhf 1.13-2 [18.7 kB]
Get:675 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtag1v5-vanilla armhf 1.13-2 [243 kB]
Get:676 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libv4l-0 armhf 1.22.1-5 [105 kB]
Get:677 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libv4lconvert0 armhf 1.22.1-5 [133 kB]
Get:678 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwavpack1 armhf 5.6.0-1 [72.5 kB]
Get:679 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup-gnome2.4-1 armhf 2.74.3-1 [10.6 kB]
Get:680 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup2.4-common all 2.74.3-1 [56.0 kB]
Get:681 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup2.4-1 armhf 2.74.3-1 [230 kB]
Err:681 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup2.4-1 armhf 2.74.3-1
  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
Get:682 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup-3.0-common all 3.2.2-2 [60.8 kB]
Get:683 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup-3.0-0 armhf 3.2.2-2 [233 kB]
Get:684 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gstreamer1.0-plugins-good armhf 1.22.0-5+deb12u1 [1988 kB]
Get:685 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-setuptools all 66.1.1-1 [521 kB]
Get:686 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-pkg-resources all 66.1.1-1 [296 kB]
Get:687 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-six all 1.16.0-4 [17.5 kB]
Get:688 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gyp all 0.1+20220404git9ecf45e-2 [237 kB]
Get:689 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf hdparm armhf 9.65+ds-1 [97.7 kB]
Get:690 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnl-route-3-200 armhf 3.7.0-0.2 [152 kB]
Get:691 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnl-genl-3-200 armhf 3.7.0-0.2 [19.7 kB]
Get:692 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnl-3-200 armhf 3.7.0-0.2 [55.0 kB]
Get:693 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf htop armhf 3.2.2-2 [129 kB]
Get:694 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf hunspell-en-us all 1:2020.12.07-2 [269 kB]
Get:695 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libi2c0 armhf 4.3-2+b2 [9156 B]
Get:696 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf i2c-tools armhf 4.3-2+b2 [77.6 kB]
Get:697 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf intltool-debian all 0.35.0+20060710.6 [22.9 kB]
Get:698 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iw armhf 5.19-1 [85.5 kB]
Get:699 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsuitesparseconfig5 armhf 1:5.12.0+dfsg-2 [23.6 kB]
Get:700 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libamd2 armhf 1:5.12.0+dfsg-2 [30.2 kB]
Get:701 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpspell-dev armhf 0.60.8-4 [31.2 kB]
Get:702 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaspell-dev armhf 0.60.8-4 [34.7 kB]
Get:703 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaspell15 armhf 0.60.8-4 [295 kB]
Get:704 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libass9 armhf 1:0.17.1-1 [85.6 kB]
Get:705 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatk1.0-data all 2.38.0-1 [150 kB]
Get:706 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libopenblas0-pthread armhf 0.3.21+ds-4+rpi1 [2159 kB]
Get:707 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblapack3 armhf 3.11.0-2 [1624 kB]
Get:708 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libatlas3-base armhf 3.10.3-13+rpi1 [2356 kB]
Get:709 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libblas3 armhf 3.11.0-2 [100.0 kB]
Get:710 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libudfread0 armhf 1.1.2-1 [14.6 kB]
Get:711 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbluray2 armhf 1:1.3.4-1 [120 kB]
Get:712 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libchromaprint1 armhf 1.5.1-2+b2 [33.7 kB]
Get:713 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgme0 armhf 0.6.3-6 [105 kB]
Get:714 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenmpt0 armhf 0.6.9-1 [597 kB]
Get:715 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librabbitmq4 armhf 0.11.0-1+b1 [38.3 kB]
Get:716 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcjson1 armhf 1.7.15-1 [20.9 kB]
Get:717 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmbedcrypto7 armhf 2.28.3-1 [241 kB]
Get:718 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librist4 armhf 0.2.7+dfsg-1 [67.1 kB]
Get:719 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsrt1.5-gnutls armhf 1.5.1-1 [263 kB]
Get:720 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libssh-gcrypt-4 armhf 0.10.5-2 [185 kB]
Get:721 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libzmq5 armhf 4.3.4-6 [226 kB]
Get:722 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavformat59 armhf 7:5.1.3-1 [1011 kB]
Get:723 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libayatana-ido3-0.4-0 armhf 0.9.3-1 [46.8 kB]
Get:724 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libayatana-indicator3-7 armhf 0.9.3-1 [28.3 kB]
Get:725 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbabl-0.1-0 armhf 1:0.1.98-1+rpi1 [264 kB]
Get:726 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbs2b0 armhf 3.1.0+dfsg-7 [10.7 kB]
Get:727 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libc-ares2 armhf 1.18.1-3 [95.4 kB]
Get:728 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-client2007e-dev armhf 8:2007f~dfsg-7+b1 [476 kB]
Get:729 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mlock armhf 8:2007f~dfsg-7+b1 [35.9 kB]
Get:730 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-client2007e armhf 8:2007f~dfsg-7+b1 [551 kB]
Get:731 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcamd2 armhf 1:5.12.0+dfsg-2 [30.7 kB]
Get:732 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libccolamd2 armhf 1:5.12.0+dfsg-2 [31.7 kB]
Get:733 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcddb2 armhf 1.3.2-7 [44.0 kB]
Get:734 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcolamd2 armhf 1:5.12.0+dfsg-2 [28.3 kB]
Get:735 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcholmod3 armhf 1:5.12.0+dfsg-2 [212 kB]
Get:737 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdbus-glib-1-2 armhf 0.112-3 [48.2 kB]
Get:738 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libusb-1.0-0 armhf 2:1.0.26-1 [55.8 kB]
Get:739 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdc1394-25 armhf 2.2.6-4 [102 kB]
Get:740 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdecor-0-0 armhf 0.1.1-2 [12.0 kB]
Get:741 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libisc-export1105 armhf 1:9.11.19+dfsg-2.1+b1 [376 kB]
Get:742 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdns-export1110 armhf 1:9.11.19+dfsg-2.1+b1 [893 kB]
Get:743 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdouble-conversion3 armhf 3.2.1-1 [38.8 kB]
Get:744 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdvdread8 armhf 6.1.3-1 [87.4 kB]
Get:745 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdvdnav4 armhf 6.1.1-1 [43.3 kB]
Get:746 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libebml5 armhf 1.4.4-1 [41.0 kB]
Get:747 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libenchant-2-dev armhf 2.3.3-2 [18.7 kB]
Get:748 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libhunspell-1.7-0 armhf 1.7.1-1+b2 [167 kB]
Get:749 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libenchant-2-2 armhf 2.3.3-2 [39.7 kB]
Get:750 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libevdev2 armhf 1.13.0+dfsg-1+rpi1 [27.9 kB]
Get:751 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-dev armhf 2.1.12-stable-8 [274 kB]
Get:752 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-pthreads-2.1-7 armhf 2.1.12-stable-8 [53.2 kB]
Get:753 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-openssl-2.1-7 armhf 2.1.12-stable-8 [58.3 kB]
Get:754 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-extra-2.1-7 armhf 2.1.12-stable-8 [97.3 kB]
Get:755 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-core-2.1-7 armhf 2.1.12-stable-8 [119 kB]
Get:756 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-2.1-7 armhf 2.1.12-stable-8 [160 kB]
Get:757 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libexif12 armhf 0.6.24-1+b2 [388 kB]
Get:758 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexiv2-27 armhf 0.27.6-1 [1418 kB]
Get:759 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexporter-tiny-perl all 1.006000-1 [38.6 kB]
Get:760 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfaad2 armhf 2.10.1-1 [142 kB]
Get:761 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfann-dev armhf 2.2.0+ds-8 [85.6 kB]
Get:762 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfann2 armhf 2.2.0+ds-8 [57.1 kB]
Get:763 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfftw3-double3 armhf 3.3.10-1 [325 kB]
Get:764 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfile-readbackwards-perl all 1.06-2 [11.6 kB]
Get:765 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libflite1 armhf 2.2-5 [12.4 MB]
Get:766 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcr-ui-3-1 armhf 3.41.1-1 [120 kB]
Get:767 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcr-base-3-1 armhf 3.41.1-1 [175 kB]
Get:768 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgck-1-0 armhf 3.41.1-1 [76.9 kB]
Get:769 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-glib-1.0-common all 1.6.6-1 [57.1 kB]
Get:770 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-glib-1.0-0 armhf 1.6.6-1 [57.1 kB]
Get:771 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libimath-3-1-29 armhf 3.1.6-1+b1 [37.4 kB]
Get:772 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenexr-3-1-30 armhf 3.1.5-5 [814 kB]
Get:773 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnspr4 armhf 2:4.35-1 [90.9 kB]
Get:774 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnss3 armhf 2:3.87.1-1 [1090 kB]
Get:775 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpoppler126 armhf 22.12.0-2 [1682 kB]
Get:776 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpoppler-glib8 armhf 22.12.0-2 [108 kB]
Get:777 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libraw20 armhf 0.20.2-2.1 [323 kB]
Get:778 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libswscale6 armhf 7:5.1.3-1 [170 kB]
Get:779 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libumfpack5 armhf 1:5.12.0+dfsg-2 [128 kB]
Get:780 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgegl-common all 1:0.4.42-2 [745 kB]
Get:781 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgegl-0.4-0 armhf 1:0.4.42-2 [1501 kB]
Get:782 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgexiv2-2 armhf 0.14.0-1 [68.0 kB]
Get:783 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgif7 armhf 5.2.1-2.5 [44.7 kB]
Get:784 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgirepository-1.0-1 armhf 1.74.0-3+b1 [87.5 kB]
Get:785 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopengl0 armhf 1.6.0-1 [31.6 kB]
Get:786 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglu1-mesa armhf 9.0.2-1.1 [133 kB]
Get:787 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgspell-1-common all 1.12.0-1 [32.9 kB]
Get:788 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgspell-1-2 armhf 1.12.0-1+b1 [44.7 kB]
Get:789 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgssdp-1.6-0 armhf 1.6.2-2 [34.1 kB]
Get:790 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-gl1.0-0 armhf 1.22.0-3+deb12u1 [219 kB]
Get:791 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgupnp-1.6-0 armhf 1.6.3-1 [74.9 kB]
Get:792 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgupnp-igd-1.0-4 armhf 1.2.0-3 [12.3 kB]
Get:793 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnice10 armhf 0.1.21-1 [130 kB]
Get:794 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvulkan1 armhf 1.3.239.0-1 [99.6 kB]
Get:795 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-plugins-bad1.0-0 armhf 1.22.0-4+deb12u1 [698 kB]
Get:796 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtksourceview-4-common all 4.8.4-4 [532 kB]
Get:797 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtksourceview-4-0 armhf 4.8.4-4 [176 kB]
Get:798 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libharfbuzz-icu0 armhf 6.0.0+dfsg-3 [1556 kB]
Get:799 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libilmbase25 armhf 2.5.7-2 [196 kB]
Get:800 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libplist3 armhf 2.2.0-6+b2 [31.5 kB]
Get:801 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libimobiledevice6 armhf 1.3.0-6+b3 [62.4 kB]
Get:802 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libiw30 armhf 30~pre9-14 [14.2 kB]
Get:803 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xdg-dbus-proxy armhf 0.1.4-3 [20.3 kB]
Get:804 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmanette-0.2-0 armhf 0.2.6-3 [26.4 kB]
Get:805 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsecret-common all 0.20.5-3+rpi1 [28.5 kB]
Get:806 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsecret-1-0 armhf 0.20.5-3+rpi1 [96.8 kB]
Get:807 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwoff1 armhf 1.0.2-2 [35.9 kB]
Get:808 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwpe-1.0-1 armhf 1.14.0-1 [17.1 kB]
Get:809 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwpebackend-fdo-1.0-1 armhf 1.14.2-1 [27.0 kB]
Get:810 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxslt1-dev armhf 1.1.35-1 [358 kB]
Get:811 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxslt1.1 armhf 1.1.35-1 [221 kB]
Get:812 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwebkit2gtk-4.0-37 armhf 2.40.3-2~deb12u2+rpi1 [15.6 MB]
Get:813 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjavascriptcoregtk-4.0-18 armhf 2.40.3-2~deb12u2+rpi1 [2630 kB]
Get:814 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjavascriptcoregtk-4.1-0 armhf 2.40.3-2~deb12u2+rpi1 [2630 kB]
Get:815 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjbig2dec0 armhf 0.19-3+b2 [58.6 kB]
Get:816 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-events all 3.3.0+~3.0.0-3 [11.3 kB]
Get:817 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-inherits all 2.0.4-6 [3548 B]
Get:818 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-is-typedarray all 1.0.0-4 [3816 B]
Get:819 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [326 kB]
Get:820 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-psl all 1.8.0+ds-9 [66.2 kB]
Get:821 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [116 kB]
Get:822 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-sphinxdoc all 5.3.0-4 [130 kB]
Get:823 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-typedarray all 1.0.0-4 [3292 B]
Get:824 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-typedarray-to-buffer all 4.0.0-2 [3380 B]
Get:825 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-typedarray-to-buffer all 4.0.0-2 [4668 B]
Get:826 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblightdm-gobject-1-0 armhf 1.26.0-8 [57.0 kB]
Get:827 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libserd-0-0 armhf 0.30.16-1 [40.7 kB]
Get:828 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsord-0-0 armhf 0.16.14+git221008-1 [17.8 kB]
Get:829 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsratom-0-0 armhf 0.6.14-1 [15.7 kB]
Get:830 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblilv-0-0 armhf 0.24.14-1 [42.1 kB]
Get:831 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblirc-client0 armhf 0.10.1-7.2 [44.9 kB]
Get:832 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblua5.2-0 armhf 5.2.4-3 [85.7 kB]
Get:833 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmad0 armhf 0.15.1b-10.1 [66.2 kB]
Get:834 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmatroska7 armhf 1.7.1-1 [89.7 kB]
Get:835 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmcrypt-dev armhf 2.5.8-7 [86.2 kB]
Get:836 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmcrypt4 armhf 2.5.8-7 [63.0 kB]
Get:837 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmd4c0 armhf 0.4.8-1 [39.4 kB]
Get:838 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmhash-dev armhf 0.9.9.9-9+b2 [114 kB]
Get:839 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmhash2 armhf 0.9.9.9-9+b2 [101 kB]
Get:840 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmousepad0 armhf 0.5.10-2 [303 kB]
Get:841 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmpdec3 armhf 2.5.1-2+rpi1 [73.5 kB]
Get:842 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmtp-common all 1.1.20-1 [58.6 kB]
Get:843 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmtp9 armhf 1.1.20-1 [195 kB]
Get:844 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmysofa1 armhf 1.3.1~dfsg0-1 [1154 kB]
Get:845 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpci-dev armhf 1:3.9.0-4 [63.9 kB]
Get:846 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf pci.ids all 0.0~2023.04.11-1 [243 kB]
Get:847 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpci3 armhf 1:3.9.0-4 [61.3 kB]
Get:848 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsnmp-base all 5.9.3+dfsg-2 [1753 kB]
Get:849 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsnmp-dev armhf 5.9.3+dfsg-2 [201 kB]
Get:850 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnetsnmptrapd40 armhf 5.9.3+dfsg-2 [20.0 kB]
Get:851 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsnmp40 armhf 5.9.3+dfsg-2 [2432 kB]
Get:852 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnewt0.52 armhf 0.52.23-1+b1 [51.0 kB]
Get:853 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnotify4 armhf 0.8.1-1 [27.5 kB]
Get:854 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnss-myhostname armhf 252.12-1~deb12u1+rpi1 [76.5 kB]
Get:855 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libobt2v5 armhf 3.6.1-10 [65.1 kB]
Get:856 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libobrender32v5 armhf 3.6.1-10 [71.9 kB]
Get:857 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf unixodbc-dev armhf 2.3.11-2+deb12u1 [200 kB]
Get:858 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbc1 armhf 2.3.11-2+deb12u1 [5008 B]
Get:859 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbc2 armhf 2.3.11-2+deb12u1 [123 kB]
Get:860 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbccr2 armhf 2.3.11-2+deb12u1 [14.7 kB]
Get:861 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf odbcinst armhf 2.3.11-2+deb12u1 [11.5 kB]
Get:862 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf odbcinst1debian2 armhf 2.3.11-2+deb12u1 [5112 B]
Get:863 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf unixodbc-common all 2.3.11-2+deb12u1 [8172 B]
Get:864 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbcinst2 armhf 2.3.11-2+deb12u1 [27.6 kB]
Get:865 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libonig-dev armhf 6.9.8-1 [96.7 kB]
Get:866 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libonig5 armhf 6.9.8-1 [166 kB]
Get:867 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenmpt-modplug1 armhf 0.8.9.0-openmpt1-2 [20.2 kB]
Get:868 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libout123-0 armhf 1.31.2-1 [24.2 kB]
Get:869 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpaper1 armhf 1.1.29 [11.9 kB]
Get:870 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcap0.8 armhf 1.10.3-1 [140 kB]
Get:871 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcsclite1 armhf 1.9.9-2 [47.0 kB]
Get:872 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpeas-common all 1.34.0-1 [54.3 kB]
Get:873 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-minimal armhf 3.11.2-6 [797 kB]
Get:874 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-stdlib armhf 3.11.2-6 [1668 kB]
Err:874 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-stdlib armhf 3.11.2-6
  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
Get:875 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11 armhf 3.11.2-6 [1667 kB]
Get:876 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpeas-1.0-0 armhf 1.34.0-1+b1 [52.2 kB]
Get:877 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsphinxbase3 armhf 0.8+5prealpha+1-16 [97.7 kB]
Get:878 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpocketsphinx3 armhf 0.8+5prealpha+1-15 [106 kB]
Get:879 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf portaudio19-dev armhf 19.6.0-1.2 [98.3 kB]
Get:880 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libportaudiocpp0 armhf 19.6.0-1.2 [17.0 kB]
Get:881 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libportaudio2 armhf 19.6.0-1.2 [57.3 kB]
Get:882 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpq-dev armhf 15.3-0+deb12u1 [129 kB]
Get:883 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpq5 armhf 15.3-0+deb12u1 [166 kB]
Get:884 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpugixml1v5 armhf 1.13-0.2 [71.8 kB]
Get:885 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqdbm-dev armhf 1.8.78-12 [135 kB]
Get:886 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqdbm14 armhf 1.8.78-12 [74.3 kB]
Get:887 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqt5x11extras5 armhf 5.15.8-2 [9576 B]
Get:888 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5dbus5 armhf 5.15.8+dfsg-11+rpi1 [182 kB]
Get:889 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5network5 armhf 5.15.8+dfsg-11+rpi1 [571 kB]
Get:890 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-image0 armhf 0.4.0-2 [21.9 kB]
Get:891 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-shape0 armhf 1.15-1 [106 kB]
Get:892 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xinerama0 armhf 1.15-1 [105 kB]
Get:893 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xinput0 armhf 1.15-1 [127 kB]
Get:894 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5gui5 armhf 5.15.8+dfsg-11+rpi1 [2533 kB]
Get:895 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5widgets5 armhf 5.15.8+dfsg-11+rpi1 [2037 kB]
Get:896 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqt5svg5 armhf 5.15.8-3 [113 kB]
Get:897 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5core5a armhf 5.15.8+dfsg-11+rpi1 [1500 kB]
Get:898 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librubberband2 armhf 3.1.2+dfsg0-1 [110 kB]
Get:899 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-rubygems all 3.3.15-2 [293 kB]
Get:900 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby3.1 armhf 3.1.2-7 [663 kB]
Get:901 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby armhf 1:3.1 [5868 B]
Get:902 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rake all 13.0.6-3 [83.9 kB]
Get:903 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-net-telnet all 0.2.0-1 [13.1 kB]
Get:904 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-webrick all 1.8.1-1 [51.4 kB]
Get:905 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-xmlrpc all 0.3.2-2 [24.4 kB]
Get:906 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf ruby-sdbm armhf 1.0.0-5+rpi1 [15.9 kB]
Get:907 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libruby3.1 armhf 3.1.2-7 [5011 kB]
Get:909 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsdl1.2debian armhf 1.2.15+dfsg2-8 [164 kB]
Get:910 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsdl-image1.2 armhf 1.2.12-13+b2 [28.9 kB]
Get:911 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsdl2-2.0-0 armhf 2.26.5+dfsg-1 [524 kB]
Get:912 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsigsegv2 armhf 2.14-1 [36.6 kB]
Get:913 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsndio7.0 armhf 1.9.0-0.3 [24.7 kB]
Get:914 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libss2 armhf 1.47.0-2 [22.7 kB]
Get:915 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsyn123-0 armhf 1.31.2-1 [71.8 kB]
Get:916 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtool all 2.4.7-5 [517 kB]
Get:917 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf upower armhf 0.99.20-2 [75.6 kB]
Get:918 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libupower-glib3 armhf 0.99.20-2 [29.8 kB]
Get:919 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libvte-2.91-0 armhf 0.70.6-1~deb12u1 [765 kB]
Get:920 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libvte-2.91-common armhf 0.70.6-1~deb12u1 [641 kB]
Get:921 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwebkit2gtk-4.1-0 armhf 2.40.3-2~deb12u2+rpi1 [15.6 MB]
Get:922 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwmf0.2-7 armhf 0.2.12-5.1 [25.8 kB]
Get:923 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwmflite-0.2-7 armhf 0.2.12-5.1 [67.9 kB]
Get:924 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwmf-0.2-7 armhf 0.2.12-5.1 [101 kB]
Get:925 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxbase3.0-0v5 armhf 3.0.5.1+dfsg-5+b1 [858 kB]
Get:926 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxgtk3.0-gtk3-0v5 armhf 3.0.5.1+dfsg-5+b1 [3542 kB]
Get:927 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xv0 armhf 1.15-1 [109 kB]
Get:928 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfce4util-common all 4.18.1-2 [66.0 kB]
Get:929 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfce4util7 armhf 4.18.1-2 [32.4 kB]
Get:930 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xfconf armhf 4.18.0-2 [119 kB]
Get:931 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfconf-0-3 armhf 4.18.0-2 [37.5 kB]
Get:932 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxmltok1-dev armhf 1.2-4+b2 [56.0 kB]
Get:933 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxmltok1 armhf 1.2-4+b2 [39.5 kB]
Get:934 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmuu1 armhf 2:1.1.3-3 [23.3 kB]
Get:935 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxres1 armhf 2:1.2.1-1 [18.7 kB]
Get:936 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxv1 armhf 2:1.0.11-1.1 [23.3 kB]
Get:937 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxxf86dga1 armhf 2:1.1.5-1 [20.9 kB]
Get:938 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzip-dev armhf 1.7.3-1+b1 [163 kB]
Get:939 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzip4 armhf 1.7.3-1+b1 [49.8 kB]
Get:940 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lightdm armhf 1.26.0-8 [151 kB]
Get:941 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lsb-release all 12.0-1 [6416 B]
Get:942 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lua-lpeg armhf 1.0.2-2 [32.3 kB]
Get:943 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf x11-xserver-utils armhf 7.7+9 [151 kB]
Get:944 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lxrandr armhf 0.3.2-1.1 [51.4 kB]
Get:945 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lxterminal armhf 0.4.0-2 [91.4 kB]
Get:946 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mailcap all 3.70+nmu1 [32.0 kB]
Get:947 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mousepad armhf 0.5.10-2 [519 kB]
Get:948 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mpg123 armhf 1.31.2-1 [186 kB]
Get:949 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf neofetch all 7.1.0-4 [81.8 kB]
Get:950 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf nmap armhf 7.93+dfsg1-1 [1768 kB]
Get:951 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf nmap-common all 7.93+dfsg1-1 [4148 kB]
Get:952 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-abbrev all 1.1.1+~1.1.2-1 [5692 B]
Get:953 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-debug all 4.3.4+~cs4.1.7-1 [18.1 kB]
Get:954 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-agent-base all 6.0.2+~cs5.4.2-2 [17.3 kB]
Get:955 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansi all 0.3.1-2 [9728 B]
Get:956 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansi-regex all 5.0.1-1 [4912 B]
Get:957 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-color-name all 1.1.4+~1.1.1-2 [5920 B]
Get:958 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-color-convert all 2.0.1+~cs2.0.0-2 [13.1 kB]
Get:959 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansi-styles all 6.2.1-2 [8640 B]
Get:960 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansistyles all 0.1.3-5 [4548 B]
Get:961 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-aproba all 2.0.0-3 [5844 B]
Get:962 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-delegates all 1.0.0-3 [4528 B]
Get:963 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-inherits all 2.0.4-6 [4548 B]
Get:964 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-util-is all 1.0.3-1 [4072 B]
Get:965 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-safe-buffer all 5.2.1+~cs2.1.2-3 [15.5 kB]
Get:966 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-string-decoder all 1.3.0-6 [7180 B]
Get:967 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-process-nextick-args all 2.0.1-3 [3816 B]
Get:968 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-util-deprecate all 1.0.2-3 [4436 B]
Get:969 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-isarray all 2.0.5-4 [4040 B]
Get:970 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-readable-stream all 3.6.0+~cs3.0.0-4 [32.0 kB]
Get:971 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-are-we-there-yet all 3.0.1+~1.1.0-1 [10.0 kB]
Get:972 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-asap all 2.0.6+~2.0.0-1 [15.4 kB]
Get:973 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-asn1 all 0.2.6+~0.2.0-2 [8760 B]
Get:975 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-aws-sign2 all 0.7.1-4 [4396 B]
Get:976 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-aws4 all 1.11.0-2 [10.4 kB]
Get:977 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-balanced-match all 2.0.0-1 [4872 B]
Get:978 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-brace-expansion all 2.0.1-2 [7320 B]
Get:979 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-validate-npm-package-name all 5.0.0+~4.0.0-1 [7444 B]
Get:980 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-builtins all 5.0.1-1 [4072 B]
Get:981 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-caseless all 0.12.1-2 [3976 B]
Get:982 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chownr all 2.0.0-2 [4424 B]
Get:983 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-clone all 2.1.2-4 [8280 B]
Get:984 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-colors all 1.4.0-4 [11.9 kB]
Get:985 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-defaults all 1.0.4+~1.0.3-1 [4400 B]
Get:986 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wcwidth.js all 1.0.2-2 [7088 B]
Get:987 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-columnify all 1.6.0+~1.5.1-1 [12.4 kB]
Get:988 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-delayed-stream all 1.0.0-5 [5436 B]
Get:989 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-combined-stream all 1.0.8+~1.0.3-1 [7316 B]
Get:990 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-concat-map all 0.0.2+~0.0.1-1 [7148 B]
Get:991 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-console-control-strings all 1.1.0-3 [5564 B]
Get:992 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-graceful-fs all 4.2.10-1 [14.4 kB]
Get:993 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-iferr all 1.0.2+~1.0.2-1 [4588 B]
Get:994 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-imurmurhash all 0.1.4+dfsg+~0.1.1-2 [8412 B]
Get:995 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-fs-write-stream-atomic all 1.0.10-6 [5316 B]
Get:996 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-run-queue all 2.0.0-3 [5156 B]
Get:997 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-copy-concurrently all 1.0.5-9 [7100 B]
Get:998 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-dashdash all 2.0.0-4 [30.3 kB]
Get:999 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-depd all 2.0.0-2 [11.2 kB]
Get:1000 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jsbn all 1.1.0+~1.2.29-1 [15.6 kB]
Get:1001 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ecc-jsbn all 0.2.0-4 [9520 B]
Get:1002 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-iconv-lite all 0.6.3-3 [115 kB]
Get:1003 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-encoding all 0.1.13-2 [4400 B]
Get:1004 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-err-code all 2.0.3+dfsg-3 [4884 B]
Get:1005 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-escape-string-regexp all 4.0.0-2 [4296 B]
Get:1006 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-events all 3.3.0+~3.0.0-3 [5888 B]
Get:1007 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-extend all 3.0.2+~3.0.1-3 [7816 B]
Get:1008 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-extsprintf all 1.4.1+~1.4.1-2 [6464 B]
Get:1009 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-time-stamp all 2.2.0-2 [6016 B]
Get:1010 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fancy-log all 1.3.3+~cs1.3.1-2 [7940 B]
Get:1011 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-fast-deep-equal all 3.1.3-3 [5768 B]
Get:1012 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-forever-agent all 0.6.1+~0.6.1-2 [5616 B]
Get:1013 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-mime-types all 2.1.35-1 [9456 B]
Get:1014 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-form-data all 4.0.0-1 [13.2 kB]
Get:1015 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-fs.realpath all 1.0.0-3 [6172 B]
Get:1016 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-function-bind all 1.1.1+repacked+~1.0.3-2 [5252 B]
Get:1017 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-has-unicode all 2.0.1-5 [3992 B]
Get:1018 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-signal-exit all 3.0.7+~3.0.1-1 [7600 B]
Get:1019 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-slice-ansi all 5.0.0+~cs9.0.0-5 [8788 B]
Get:1020 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-string-width all 4.2.3+~cs13.2.3-1 [10.7 kB]
Get:1021 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wide-align all 1.1.3-4 [4244 B]
Get:1022 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-gauge all 4.0.4-1 [19.6 kB]
Get:1023 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wrappy all 1.0.2-3 [3776 B]
Get:1024 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-once all 1.4.0-7 [4492 B]
Get:1025 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-inflight all 1.0.6-2 [3952 B]
Get:1026 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-minimatch all 5.1.1+~5.1.2-1 [18.6 kB]
Get:1027 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-glob all 8.0.3+~cs8.4.15-1 [133 kB]
Get:1028 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-har-schema all 2.0.0-5 [5952 B]
Get:1029 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-har-validator all 5.1.5-3 [7328 B]
Get:1030 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-has-flag all 4.0.0-3 [4304 B]
Get:1031 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-schema all 0.4.0+~7.0.11-1 [13.1 kB]
Get:1032 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsprim all 2.0.1-1 [13.5 kB]
Get:1033 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-http-signature all 1.3.6-2 [13.2 kB]
Get:1034 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-https-proxy-agent all 5.0.1+~cs8.0.0-3 [16.1 kB]
Get:1035 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-indent-string all 4.0.0-2 [4144 B]
Get:1036 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ini all 3.0.1-2 [6928 B]
Get:1037 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ip all 2.0.0+~1.1.0-1 [8128 B]
Get:1038 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ip-regex all 4.3.0+~4.1.1-1 [5188 B]
Get:1039 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-isexe all 2.0.0+~2.0.1-5 [6084 B]
Get:1040 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-isstream all 0.1.2+dfsg+~0.1.0-1 [4648 B]
Get:1041 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-parse-better-errors all 1.0.2+~cs3.3.1-2 [7800 B]
Get:1042 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-json-schema-traverse all 1.0.0-3 [6308 B]
Get:1043 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsonify all 0.0.1-1 [8704 B]
Get:1044 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-stable-stringify all 1.0.2+~cs5.2.34-1 [11.3 kB]
Get:1045 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-stringify-safe all 5.0.1+repack-6 [21.0 kB]
Get:1046 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsonparse all 1.3.1-10 [8020 B]
Get:1047 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-leven all 4.0.0+~cs1.1.1-2 [6224 B]
Get:1048 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-lockfile all 1.0.4+~1.0.2-1 [8948 B]
Get:1049 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-yallist all 4.0.0+~4.0.1-1 [8172 B]
Get:1050 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-minipass all 3.3.6+~cs9.4.19-1 [43.0 kB]
Get:1051 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-move-concurrently all 1.0.1-5 [5152 B]
Get:1052 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-mute-stream all 0.0.8+~0.0.1-3 [6232 B]
Get:1053 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-resolve all 1.22.1+~cs5.31.10-1 [28.1 kB]
Get:1054 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-spdx-license-ids all 3.0.12-1 [6276 B]
Get:1055 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-spdx-exceptions all 2.3.0-2 [3992 B]
Get:1056 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-spdx-expression-parse all 3.0.1+~3.0.1-1 [7532 B]
Get:1057 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-spdx-correct all 3.1.1-2 [5464 B]
Get:1058 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-validate-npm-package-license all 3.0.4-2 [4280 B]
Get:1059 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-normalize-package-data all 4.0.1+~2.4.1-1 [13.6 kB]
Get:1060 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-slash all 4.0.0-3 [4292 B]
Get:1061 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-read-package-json all 5.0.2+~2.0.0-1 [12.0 kB]
Get:1062 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-npm-bundled all 2.0.1-2 [6408 B]
Get:1063 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-set-blocking all 2.0.0-2 [4248 B]
Get:1064 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-npmlog all 7.0.1+~4.1.4-1 [11.4 kB]
Get:1065 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-number-is-nan all 2.0.0-3 [3624 B]
Get:1066 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-oauth-sign all 0.9.0-4 [4404 B]
Get:1067 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-osenv all 0.1.5+~0.1.1-1 [5884 B]
Get:1068 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-p-map all 4.0.0+~3.1.0+~3.0.1-1 [7912 B]
Get:1069 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-is-absolute all 2.0.0-2 [4068 B]
Get:1070 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-performance-now all 2.1.0+debian-4 [5296 B]
Get:1071 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-promise-inflight all 1.0.1+~1.0.0-1 [4864 B]
Get:1072 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-retry all 0.13.1+~0.12.1-1 [11.2 kB]
Get:1073 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-promise-retry all 2.0.1-4 [5016 B]
Get:1074 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-read all 1.0.7-5 [5388 B]
Get:1075 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-promzard all 0.3.0-2 [6788 B]
Get:1076 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-psl all 1.8.0+ds-9 [38.1 kB]
Get:1077 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ssri all 9.0.1-2 [18.0 kB]
Get:1078 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-supports-color all 8.1.1+~8.1.1-1 [6920 B]
Get:1079 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-tar all 6.1.13+~cs7.0.5-1 [51.1 kB]
Get:1080 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-text-table all 0.2.0-4 [4736 B]
Get:1081 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-tunnel-agent all 0.6.1-4 [5100 B]
Get:1082 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-unique-filename all 1.1.1+ds-2 [4032 B]
Get:1083 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-uri-js all 4.4.0+dfsg-8 [47.3 kB]
Get:1084 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-uuid all 8.3.2+~8.3.3-3 [44.0 kB]
Get:1085 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-write-file-atomic all 4.0.2+~4.0.0-1 [9284 B]
Get:1086 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openbox armhf 3.6.1-10 [290 kB]
Get:1087 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf psmisc armhf 23.6-1 [253 kB]
Get:1088 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-colorzero all 2.0-2 [22.3 kB]
Get:1089 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-dnspython all 2.3.0-1 [152 kB]
Get:1090 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-gpiozero armhf 1.6.2-1+b4 [105 kB]
Get:1091 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf re2c armhf 3.0-2 [406 kB]
Get:1092 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rng-tools5 armhf 5-4.1 [19.2 kB]
Get:1093 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-minitest all 5.17.0-1 [61.4 kB]
Get:1094 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-power-assert all 2.0.3-1 [11.8 kB]
Get:1095 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-test-unit all 3.5.7-1 [78.2 kB]
Get:1096 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf swig4.0 armhf 4.1.0-0.2 [1220 kB]
Get:1097 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf swig all 4.1.0-0.2 [321 kB]
Get:1098 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf systemtap-sdt-dev armhf 4.8-2 [19.4 kB]
Get:1099 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf tdb-tools armhf 1.4.8-2 [26.0 kB]
Get:1100 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-scraping-server armhf 1.12.0+dfsg-8 [185 kB]
Get:1101 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xauth armhf 1:1.1.2-1 [32.4 kB]
Get:1102 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-standalone-server armhf 1.12.0+dfsg-8 [828 kB]
Get:1103 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-common armhf 1.12.0+dfsg-8 [89.6 kB]
Get:1104 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf tmux armhf 3.3a-3 [362 kB]
Get:1105 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf unzip armhf 6.0-28 [147 kB]
Get:1106 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf usbutils armhf 1:014-1 [67.0 kB]
Get:1107 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf vorbis-tools armhf 1.4.2-1+b1 [168 kB]
Get:1108 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf whiptail armhf 0.52.23-1+b1 [23.1 kB]
Get:1109 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf wireless-regdb all 2022.06.06-1 [13.1 kB]
Get:1110 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf wireless-tools armhf 30~pre9-14 [102 kB]
Get:1111 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf wpasupplicant armhf 2:2.10-12 [1121 kB]
Get:1112 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xarchiver armhf 1:0.5.4.20-2 [453 kB]
Get:1113 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf xfonts-base all 1:1.0.5+nmu1 [5895 kB]
Get:1114 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xfonts-encodings all 1:1.0.4-2.2 [577 kB]
Get:1115 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zenity-common all 3.44.0-1 [2974 kB]
Get:1116 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zenity armhf 3.44.0-1 [56.3 kB]
Get:1117 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zsh armhf 5.9-4 [767 kB]
Get:1118 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zsh-common all 5.9-4 [4147 kB]
Get:1119 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmlrpc-epi-dev armhf 0.54.2-1.3 [40.3 kB]
Get:1120 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmlrpc-epi0 armhf 0.54.2-1.3 [28.8 kB]
Fetched 713 MB in 18min 17s (650 kB/s)
E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/a/audit/libaudit-common_3.0.9-1_all.deb  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/f/fontconfig/fontconfig-config_2.14.1-4_armhf.deb  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/b/bash-completion/bash-completion_2.11-6_all.deb  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/libs/libsoup2.4/libsoup2.4-1_2.74.3-1_armhf.deb  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/p/python3.11/libpython3.11-stdlib_3.11.2-6_armhf.deb  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
[FAILED] dietpi-bookworm-upgrade | APT upgrade
 - Command: apt-get -y --with-new-pkgs upgrade

--------------------------------------------------------------------- - DietPi has encountered an error - - Please create a ticket: https://github.com/MichaIng/DietPi/issues - - Copy and paste only the BLUE lines below into the ticket - --------------------------------------------------------------------- #### Details: - Date | Sat Sep 9 16:57:07 JST 2023 - DietPi version | v8.21.1 (MichaIng/master) - Image creator | - Pre-image | - Hardware | RPi Zero W (armv6l) (ID=1) - Kernel version | `Linux dietpi-001 6.1.21+ #1642 Mon Apr 3 17:19:14 BST 2023 armv6l GNU/Linux` - Distro | bullseye (ID=6,RASPBIAN=1) - Command | `apt-get -y --with-new-pkgs upgrade` - Exit code | 100 - Software title | dietpi-bookworm-upgrade #### Steps to reproduce: <!-- Explain how to reproduce the issue --> 1. ... 2. ... #### Expected behaviour: <!-- What SHOULD happen? --> - ... #### Actual behaviour: <!-- What IS happening? --> - ... #### Extra details: <!-- Please post any extra details that might help solve the issue --> - ... #### Additional logs: ``` Reading package lists... Building dependency tree... Reading state information... Calculating upgrade... The following packages were automatically installed and are no longer required: distro-info-data g++-10 golang-1.15-go golang-1.15-src libatk1.0-data libavresample4 libbpf0 libcbor0 libdecor-0-0 libdns-export1110 libexporter-tiny-perl libfftw3-double3 libgtksourceview-3.0-1 libgtksourceview-3.0-common libice-dev libimobiledevice6 libisc-export1105 libjsoncpp24 liblist-moreutils-perl liblist-moreutils-xs-perl libltdl-dev libobjc-10-dev libodbc1 libpcre16-3 libpcre2-posix2 libpcre3-dev libpcre32-3 libpcrecpp0v5 libperl5.32 libplist3 libpoppler102 libprocps8 libpython3.8 libpython3.8-minimal libpython3.8-stdlib librest-0.7-0 libsdl2-2.0-0 libsigsegv2 libsm-dev libsoup-gnome2.4-1 libstdc++-10-dev libtiffxx5 libusbmuxd6 libxfce4util-common libxfce4util7 libxfconf-0-3 libxt-dev odbcinst odbcinst1debian2 perl-modules-5.32 ruby2.7 xfconf Use 'sudo apt autoremove' to remove them. The following NEW packages will be installed: at-spi2-common clang-14 cpp-12 cron-daemon-common dbus-bin dbus-daemon dbus-session-bus-common dbus-system-bus-common g++-12 gcc-11-base gcc-12 gcc-12-base golang-1.19-go golang-1.19-src libabsl20220623 libaom-dev libaom3 libasan8 libavcodec59 libavformat59 libavif-dev libavif15 libavutil57 libbpf1 libcbor0.8 libcjson1 libclang-common-14-dev libclang-cpp14 libclang1-14 libcodec2-1.0 libdav1d-dev libdav1d6 libde265-dev libdecor-0-0 libduktape207 libffi8 libfile-find-rule-perl libflac12 libgav1-1 libgcc-11-dev libgcc-12-dev libgspell-1-2 libgspell-1-common libgssdp-1.6-0 libgstreamer-plugins-bad1.0-0 libgtksourceview-4-0 libgtksourceview-4-common libgupnp-1.6-0 libgupnp-igd-1.0-4 libhashkit2 libheif-dev libhwy1 libicu72 libimath-3-1-29 libjavascriptcoregtk-4.1-0 libjs-events libjsoncpp25 libjxl0.7 libldap-2.5-0 libldap-dev liblerc-dev liblerc4 libllvm14 libllvm15 libmbedcrypto7 libmousepad0 libnice10 libnumber-compare-perl libobjc-11-dev libobjc-12-dev libodbc2 libodbccr2 libodbcinst2 libopenexr-3-1-30 libopengl0 libpcre2-posix3 libperl5.36 libpkgconf3 libpoppler126 libproc2-0 libpython3.11 libpython3.11-minimal libpython3.11-stdlib librav1e0 librist4 libruby libruby3.1 libsoup-3.0-0 libsoup-3.0-common libsoup2.4-common libsrt1.5-gnutls libssl3 libstdc++-11-dev libstdc++-12-dev libsvtav1enc1 libswresample4 libswscale6 libsystemd-shared libtext-glob-perl libtiff6 libtiffxx6 libvpx7 libwebkit2gtk-4.1-0 libwebp7 libwmf-0.2-7 libwmflite-0.2-7 libx264-164 libx265-199 libx265-dev libxcvt0 libyuv0 libzstd-dev llvm-11-linker-tools llvm-14-linker-tools node-events node-fancy-log node-minipass node-slice-ansi node-time-stamp perl-modules-5.36 pkexec pkgconf pkgconf-bin polkitd python3-six rpcsvc-proto ruby-sdbm ruby-webrick ruby3.1 sgml-base unixodbc-common usrmerge util-linux-extra xml-core The following packages have been kept back: filezilla filezilla-common gimp gimp-data gnucobol iotop libcob5 libcob5-dev libgimp2.0 libgs9-common libimlib2 libinput-bin libinput10 libldb2 libnode-dev libpython3-dev libpython3-stdlib libselinux1 libselinux1-dev libsemanage-common libtalloc2 libtdb1 libtevent0 libwacom-common libwbclient0 mesa-utils node-ajv node-archy node-assert-plus node-bcrypt-pbkdf node-cacache node-chalk node-getpass node-gyp node-hosted-git-info node-jsonstream node-lru-cache node-mime node-mkdirp node-ms node-nopt node-npm-package-arg node-object-assign node-opener node-puka node-punycode node-qs node-rimraf node-semver node-sshpk node-strip-ansi node-tweetnacl node-verror node-which nodejs npm passwd python3 python3-dev python3-distutils python3-ldb python3-lib2to3 python3-minimal python3-numpy python3-rpi.gpio python3-samba python3-smbus python3-talloc python3-tdb python3-venv rpi.gpio-common samba samba-common samba-common-bin samba-libs samba-vfs-modules xserver-xorg-input-libinput The following packages will be upgraded: adduser adwaita-icon-theme alsa-utils apache2 apache2-bin apache2-data apache2-dev apache2-utils apt apt-file autoconf autoconf2.64 automake autopoint autotools-dev base-files base-passwd bash bash-completion binutils binutils-arm-linux-gnueabihf binutils-common bison bsdextrautils bsdutils bubblewrap bzip2 ca-certificates clang clang-11 cmake cmake-data colorized-logs comerr-dev console-setup console-setup-linux coreutils cpio cpp cpp-10 cron curl dash dbus dbus-user-session dbus-x11 dconf-gsettings-backend dconf-service debconf debhelper debianutils default-libmysqlclient-dev device-tree-compiler dh-strip-nondeterminism dictionaries-common diffutils dirmngr distro-info-data dmidecode dmsetup dpkg dpkg-dev dwz e2fsprogs emacsen-common ethtool expat fake-hwclock fakeroot fdisk file findutils firebird-dev firebird3.0-common firebird3.0-common-doc flac flex fontconfig fontconfig-config fonts-dejavu-core fonts-urw-base35 freetds-common freetds-dev g++ g++-10 galculator gcc gcc-10 gcc-10-base gettext gettext-base git git-man glib-networking glib-networking-common glib-networking-services gnupg gnupg-l10n gnupg-utils golang-1.15-go golang-1.15-src golang-go golang-src gparted gparted-common gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm gpgv graphviz grep groff-base gsettings-desktop-schemas gstreamer1.0-plugins-base gstreamer1.0-plugins-good gtk-update-icon-cache gyp gzip hdparm hostname htop hunspell-en-us i2c-tools icu-devtools ifupdown init-system-helpers initramfs-tools initramfs-tools-core intltool-debian iproute2 iputils-ping isc-dhcp-client iso-codes iw kbd keyboard-configuration klibc-utils kmod krb5-multidev less libaa1 libacl1 libacl1-dev libamd2 libapparmor-dev libapparmor1 libapr1 libapr1-dev libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-dev libaprutil1-ldap libapt-pkg-perl libapt-pkg6.0 libarchive13 libargon2-1 libargon2-dev libasan6 libasound2 libasound2-data libasound2-dev libasound2-plugins libaspell-dev libaspell15 libass9 libassuan0 libasyncns0 libatk-bridge2.0-0 libatk1.0-0 libatk1.0-data libatkmm-1.6-1v5 libatlas3-base libatomic1 libatopology2 libatspi2.0-0 libattr1 libattr1-dev libaudit-common libaudit1 libavahi-client3 libavahi-common-data libavahi-common3 libayatana-ido3-0.4-0 libayatana-indicator3-7 libbabl-0.1-0 libbinutils libblas3 libblkid-dev libblkid1 libbluray2 libbrotli-dev libbrotli1 libbs2b0 libbsd-dev libbsd0 libbz2-1.0 libbz2-dev libc-ares2 libc-bin libc-client2007e libc-client2007e-dev libc-dev-bin libc-l10n libc6 libc6-dev libcaca0 libcairo-gobject2 libcairo2 libcairomm-1.0-1v5 libcamd2 libcap-ng0 libcap2 libcap2-bin libcc1-0 libccolamd2 libcddb2 libcdparanoia0 libcdt5 libcgraph6 libcholmod3 libchromaprint1 libclang-common-11-dev libclang-cpp11 libclang1-11 libcolamd2 libcolord2 libcom-err2 libcrypt-dev libcrypt1 libcryptsetup12 libct4 libctf-nobfd0 libctf0 libcups2 libcurl3-gnutls libcurl4 libcurl4-gnutls-dev libdatrie1 libdb-dev libdb5.3 libdb5.3-dev libdbus-1-3 libdbus-glib-1-2 libdc1394-25 libdconf1 libde265-0 libdebconfclient0 libdebhelper-perl libdeflate-dev libdeflate0 libdevmapper1.02.1 libdns-export1110 libdouble-conversion3 libdpkg-perl libdrm-amdgpu1 libdrm-common libdrm-nouveau2 libdrm-radeon1 libdrm2 libdv4 libdvdnav4 libdvdread8 libdw1 libebml5 libedit-dev libedit2 libegl-mesa0 libegl1 libelf1 libenchant-2-2 libenchant-2-dev libepoxy0 liberror-perl libevdev2 libevent-2.1-7 libevent-core-2.1-7 libevent-dev libevent-extra-2.1-7 libevent-openssl-2.1-7 libevent-pthreads-2.1-7 libexif12 libexiv2-27 libexpat1 libexpat1-dev libexporter-tiny-perl libext2fs2 libfaad2 libfakeroot libfann-dev libfann2 libfbclient2 libfdisk1 libfdt1 libffi-dev libfftw3-double3 libfftw3-single3 libfido2-1 libfile-readbackwards-perl libfile-stripnondeterminism-perl libflite1 libfontconfig-dev libfontconfig1 libfreetype-dev libfreetype6 libfreetype6-dev libfribidi0 libgbm1 libgc1 libgcc-10-dev libgcc-s1 libgck-1-0 libgcr-base-3-1 libgcr-ui-3-1 libgcrypt20 libgcrypt20-dev libgd-dev libgd3 libgdbm-compat4 libgdbm6 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgegl-0.4-0 libgegl-common libgexiv2-2 libgfortran5 libgif7 libgirepository-1.0-1 libgl1 libgl1-mesa-dri libglapi-mesa libgles2 libglib2.0-0 libglib2.0-bin libglib2.0-data libglib2.0-dev libglib2.0-dev-bin libglibmm-2.4-1v5 libglu1-mesa libglvnd0 libglx-mesa0 libglx0 libgme0 libgmp-dev libgmp10 libgmp3-dev libgmpxx4ldbl libgnutls30 libgomp1 libgpg-error-dev libgpg-error0 libgpm2 libgsm1 libgssapi-krb5-2 libgssrpc4 libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 libgtk-3-0 libgtk-3-common libgtkmm-3.0-1v5 libgts-0.7-5 libgudev-1.0-0 libgvc6 libgvpr2 libharfbuzz-icu0 libharfbuzz0b libheif1 libhiredis0.14 libhogweed6 libhunspell-1.7-0 libi2c0 libib-util libicu-dev libidn2-0 libiec61883-0 libilmbase25 libimobiledevice6 libip4tc2 libisc-export1105 libisl23 libiw30 libjack-dev libjack0 libjansson4 libjavascriptcoregtk-4.0-18 libjbig-dev libjbig0 libjbig2dec0 libjpeg-dev libjpeg62-turbo libjpeg62-turbo-dev libjs-inherits libjs-is-typedarray libjs-jquery libjs-psl libjs-sphinxdoc libjs-typedarray-to-buffer libjs-underscore libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libk5crypto3 libkadm5clnt-mit12 libkadm5srv-mit12 libkdb5-10 libkeyutils1 libklibc libkmod2 libkrb5-3 libkrb5-dev libkrb5support0 libksba8 liblab-gamut1 liblapack3 liblcms2-2 libldap2-dev liblightdm-gobject-1-0 liblilv-0-0 liblirc-client0 liblist-moreutils-xs-perl libllvm11 liblocale-gettext-perl libltdl-dev libltdl7 liblua5.2-0 liblua5.3-0 liblz4-1 liblzma-dev liblzma5 libmad0 libmagic-dev libmagic-mgc libmagic1 libmanette-0.2-0 libmariadb-dev libmariadb-dev-compat libmariadb3 libmatroska7 libmcrypt-dev libmcrypt4 libmd-dev libmd0 libmd4c0 libmemcached11 libmemcachedutil2 libmhash-dev libmhash2 libmount-dev libmount1 libmp3lame0 libmpc3 libmpdec3 libmpfr6 libmpg123-0 libmtp-common libmtp9 libmysofa1 libncurses-dev libncurses5-dev libncurses6 libncursesw6 libnetsnmptrapd40 libnettle8 libnewt0.52 libnghttp2-14 libnl-3-200 libnl-genl-3-200 libnl-route-3-200 libnotify4 libnspr4 libnss-myhostname libnss3 libobjc-10-dev libobjc4 libobrender32v5 libobt2v5 libodbc1 libogg0 libonig-dev libonig5 libopenblas0-pthread libopenjp2-7 libopenmpt-modplug1 libopenmpt0 libopus0 liborc-0.4-0 libout123-0 libp11-kit0 libpam-modules libpam-modules-bin libpam-runtime libpam-systemd libpam0g libpam0g-dev libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpangomm-1.4-1v5 libpangoxft-1.0-0 libpaper1 libparted-fs-resize0 libparted2 libpathplan4 libpcap0.8 libpci-dev libpci3 libpciaccess0 libpcre16-3 libpcre2-16-0 libpcre2-32-0 libpcre2-8-0 libpcre2-dev libpcre3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpcsclite1 libpeas-1.0-0 libpeas-common libpipeline1 libpixman-1-0 libplist3 libplymouth5 libpng-dev libpng16-16 libpocketsphinx3 libpolkit-agent-1-0 libpolkit-gobject-1-0 libpoppler-glib8 libpopt0 libportaudio2 libportaudiocpp0 libpq-dev libpq5 libproxy1v5 libpsl5 libpspell-dev libpugixml1v5 libpulse0 libpulsedsp libqdbm-dev libqdbm14 libqt5core5a libqt5dbus5 libqt5gui5 libqt5network5 libqt5svg5 libqt5widgets5 libqt5x11extras5 librabbitmq4 libraw20 libreadline-dev libreadline8 libregexp-assemble-perl librhash0 librsvg2-2 librsvg2-common librubberband2 libsamplerate0 libsasl2-2 libsasl2-dev libsasl2-modules-db libsctp-dev libsctp1 libsdl-image1.2 libsdl1.2debian libsdl2-2.0-0 libseccomp2 libsecret-1-0 libsecret-common libsensors-config libsensors-dev libsensors5 libserd-0-0 libshout3 libsigc++-2.0-0v5 libsigsegv2 libslang2 libsmartcols1 libsnappy1v5 libsndfile1 libsndio7.0 libsnmp-base libsnmp-dev libsnmp40 libsord-0-0 libsoup-gnome2.4-1 libsoup2.4-1 libspeex1 libspeexdsp1 libsphinxbase3 libsqlite3-0 libsqlite3-dev libsratom-0-0 libss2 libssh-gcrypt-4 libssh2-1 libssl-dev libstdc++-10-dev libstdc++6 libsub-override-perl libsuitesparseconfig5 libsybdb5 libsyn123-0 libsystemd-dev libsystemd0 libtag1v5 libtag1v5-vanilla libtasn1-6 libtext-charwidth-perl libtext-iconv-perl libthai-data libthai0 libtheora0 libtiff-dev libtinfo6 libtirpc-common libtirpc-dev libtirpc3 libtool libubsan1 libudev-dev libudev1 libudfread0 libumfpack5 libunistring2 libunwind8 libupower-glib3 libusb-1.0-0 libutempter0 libuuid1 libuv1 libuv1-dev libv4l-0 libv4lconvert0 libva-drm2 libva-x11-2 libva2 libvdpau1 libvisual-0.4-0 libvpx-dev libvte-2.91-0 libvte-2.91-common libvulkan1 libwavpack1 libwayland-client0 libwayland-cursor0 libwayland-egl1 libwayland-server0 libwebkit2gtk-4.0-37 libwebp-dev libwebpdemux2 libwebpmux3 libwmf0.2-7 libwoff1 libwpe-1.0-1 libwpebackend-fdo-1.0-1 libwrap0 libwrap0-dev libwxbase3.0-0v5 libwxgtk3.0-gtk3-0v5 libx11-6 libx11-data libx11-dev libx11-xcb1 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-image0 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 libxcb-xv0 libxcb1 libxcb1-dev libxcursor1 libxdamage1 libxext6 libxfce4util-common libxfce4util7 libxfconf-0-3 libxfixes3 libxfont2 libxft2 libxi6 libxinerama1 libxkbcommon-x11-0 libxkbcommon0 libxml2 libxml2-dev libxmlrpc-epi-dev libxmlrpc-epi0 libxmltok1 libxmltok1-dev libxmu6 libxmuu1 libxpm-dev libxpm4 libxrandr2 libxrender1 libxres1 libxslt1-dev libxslt1.1 libxt-dev libxt6 libxtables12 libxtst6 libxv1 libxxf86dga1 libxxhash0 libyaml-0-2 libz3-4 libzip-dev libzip4 libzmq5 libzstd1 libzvbi-common libzvbi0 lightdm linux-base locales locales-all login logsave lsb-base lsb-release lsof lua-lpeg lxrandr lxterminal m4 mailcap man-db mariadb-common mawk media-types mlock mount mousepad mpg123 mysql-common nano ncurses-base ncurses-bin neofetch netbase netcat-openbsd nmap nmap-common node-abbrev node-agent-base node-ansi node-ansi-regex node-ansi-styles node-ansistyles node-aproba node-are-we-there-yet node-asap node-asn1 node-asynckit node-aws-sign2 node-aws4 node-balanced-match node-brace-expansion node-builtins node-caseless node-chownr node-clone node-color-convert node-color-name node-colors node-columnify node-combined-stream node-concat-map node-console-control-strings node-copy-concurrently node-core-util-is node-dashdash node-debug node-defaults node-delayed-stream node-delegates node-depd node-ecc-jsbn node-encoding node-err-code node-escape-string-regexp node-extend node-extsprintf node-fast-deep-equal node-forever-agent node-form-data node-fs-write-stream-atomic node-fs.realpath node-function-bind node-gauge node-glob node-graceful-fs node-har-schema node-har-validator node-has-flag node-has-unicode node-http-signature node-https-proxy-agent node-iconv-lite node-iferr node-imurmurhash node-indent-string node-inflight node-inherits node-ini node-ip node-ip-regex node-is-typedarray node-isarray node-isexe node-isstream node-jsbn node-json-parse-better-errors node-json-schema node-json-schema-traverse node-json-stable-stringify node-json-stringify-safe node-jsonify node-jsonparse node-jsprim node-leven node-lockfile node-mime-types node-minimatch node-move-concurrently node-mute-stream node-normalize-package-data node-npm-bundled node-npmlog node-number-is-nan node-oauth-sign node-once node-osenv node-p-map node-path-is-absolute node-performance-now node-process-nextick-args node-promise-inflight node-promise-retry node-promzard node-psl node-read node-read-package-json node-readable-stream node-resolve node-retry node-run-queue node-safe-buffer node-set-blocking node-signal-exit node-slash node-spdx-correct node-spdx-exceptions node-spdx-expression-parse node-spdx-license-ids node-ssri node-string-decoder node-string-width node-supports-color node-tar node-text-table node-tunnel-agent node-typedarray-to-buffer node-unique-filename node-uri-js node-util-deprecate node-uuid node-validate-npm-package-license node-validate-npm-package-name node-wcwidth.js node-wide-align node-wrappy node-write-file-atomic node-yallist ocl-icd-libopencl1 odbcinst odbcinst1debian2 openbox openssh-client openssh-server openssh-sftp-server openssl parted pci.ids perl perl-base pinentry-curses pkg-config plymouth policykit-1 poppler-data portaudio19-dev procps proftpd-core psmisc pulseaudio pulseaudio-utils python3-colorzero python3-dnspython python3-gpiozero python3-pkg-resources python3-setuptools rake re2c readline-common rng-tools5 rsync ruby ruby-minitest ruby-net-telnet ruby-power-assert ruby-rubygems ruby-test-unit ruby-xmlrpc runit-helper screen sed sensible-utils shared-mime-info sudo swig swig4.0 systemd systemd-sysv systemd-timesyncd systemtap-sdt-dev sysvinit-utils tar tdb-tools tigervnc-common tigervnc-scraping-server tigervnc-standalone-server tmux tzdata ucf udev unixodbc-dev unzip upower usbutils util-linux uuid-dev vorbis-tools wget whiptail wireless-regdb wireless-tools wpasupplicant x11-common x11-xkb-utils x11-xserver-utils x11proto-dev xarchiver xauth xdg-dbus-proxy xfconf xfonts-base xfonts-encodings xkb-data xserver-common xserver-xorg-core xserver-xorg-video-fbdev xz-utils zenity zenity-common zlib1g zlib1g-dev zsh zsh-common 986 upgraded, 134 newly installed, 0 to remove and 77 not upgraded. Need to get 716 MB of archives. After this operation, 1270 MB of additional disk space will be used. Get:1 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf base-files armhf 12.4+rpi1+deb12u1 [70.9 kB] Get:2 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-l10n all 2.36-9+rpi1+deb12u1 [675 kB] Get:3 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf locales all 2.36-9+rpi1+deb12u1 [3902 kB] Get:4 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf locales-all armhf 2.36-9+rpi1+deb12u1 [10.7 MB] Get:5 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-dev-bin armhf 2.36-9+rpi1+deb12u1 [43.7 kB] Get:6 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf binutils armhf 2.40-2+rpi2 [65.4 kB] Get:7 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-dev armhf 2.74.6-1 [1464 kB] Get:8 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc6-dev armhf 2.36-9+rpi1+deb12u1 [1256 kB] Get:9 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rpcsvc-proto armhf 1.4.3-1 [55.1 kB] Get:10 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc6 armhf 2.36-9+rpi1+deb12u1 [2106 kB] Get:11 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzstd1 armhf 1.5.4+dfsg2-5 [237 kB] Get:12 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libctf0 armhf 2.40-2+rpi2 [71.5 kB] Get:13 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libctf-nobfd0 armhf 2.40-2+rpi2 [133 kB] Get:14 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjansson4 armhf 2.14-2 [37.0 kB] Get:15 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf binutils-arm-linux-gnueabihf armhf 2.40-2+rpi2 [2052 kB] Get:16 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbinutils armhf 2.40-2+rpi2 [406 kB] Get:17 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf binutils-common armhf 2.40-2+rpi2 [2470 kB] Get:18 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libffi8 armhf 3.4.4-1 [19.4 kB] Get:19 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-dev-bin armhf 2.74.6-1 [147 kB] Get:20 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-bin armhf 2.74.6-1 [101 kB] Get:21 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-0 armhf 2.74.6-1 [1203 kB] Get:22 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam0g-dev armhf 1.5.2-6 [141 kB] Get:23 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam0g armhf 1.5.2-6 [86.2 kB] Get:24 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcrypt1 armhf 1:4.4.33-2 [93.3 kB] Get:25 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcrypt-dev armhf 1:4.4.33-2 [121 kB] Get:26 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-bin armhf 2.36-9+rpi1+deb12u1 [493 kB] Get:27 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libapt-pkg-perl armhf 0.1.40+b4 [64.3 kB] Get:28 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblist-moreutils-xs-perl armhf 0.430-3+b1 [35.1 kB] Get:29 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtext-iconv-perl armhf 1.7-8 [13.8 kB] Get:30 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtext-charwidth-perl armhf 0.04-11 [9328 B] Get:31 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf perl-modules-5.36 all 5.36.0-7 [2815 kB] Get:32 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgdbm6 armhf 1.23-3 [68.3 kB] Get:33 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libperl5.36 armhf 5.36.0-7 [3462 kB] Get:34 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf perl armhf 5.36.0-7 [239 kB] Get:35 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf perl-base armhf 5.36.0-7 [1413 kB] Get:36 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblocale-gettext-perl armhf 1.07-5 [14.9 kB] Get:37 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zlib1g-dev armhf 1:1.2.13.dfsg-1 [901 kB] Get:38 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zlib1g armhf 1:1.2.13.dfsg-1 [73.5 kB] Get:39 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-12-base armhf 12.2.0-14+rpi1 [37.7 kB] Get:40 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-s1 armhf 12.2.0-14+rpi1 [36.3 kB] Get:41 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-data all 2.74.6-1 [1208 kB] Get:42 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblzma-dev armhf 5.4.1-0.2 [246 kB] Get:43 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblzma5 armhf 5.4.1-0.2 [192 kB] Get:44 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdw1 armhf 0.188-2.1+rpi1 [212 kB] Get:45 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libelf1 armhf 0.188-2.1+rpi1 [171 kB] Get:46 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libblkid-dev armhf 2.38.1-5 [162 kB] Get:47 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libblkid1 armhf 2.38.1-5 [131 kB] Get:48 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf uuid-dev armhf 2.38.1-5 [37.7 kB] Get:49 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libuuid1 armhf 2.38.1-5 [27.1 kB] Get:50 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmount-dev armhf 2.38.1-5 [22.2 kB] Get:51 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmount1 armhf 2.38.1-5 [143 kB] Get:52 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-dev armhf 10.42-1 [648 kB] Get:53 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-16-0 armhf 10.42-1 [210 kB] Get:54 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-32-0 armhf 10.42-1 [201 kB] Get:55 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-posix3 armhf 10.42-1 [55.1 kB] Get:56 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-8-0 armhf 10.42-1 [225 kB] Get:57 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libffi-dev armhf 3.4.4-1 [60.4 kB] Get:58 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpkgconf3 armhf 1.8.1-1 [31.3 kB] Get:59 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkgconf-bin armhf 1.8.1-1 [27.8 kB] Get:60 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf m4 armhf 1.4.19-3 [256 kB] Get:61 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf adduser all 3.134 [183 kB] Get:62 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbpf1 armhf 1:1.1.0-1 [122 kB] Get:63 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmd-dev armhf 1.0.4-2 [46.6 kB] Get:64 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmd0 armhf 1.0.4-2 [28.6 kB] Get:65 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbsd-dev armhf 0.11.7-2 [235 kB] Get:66 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbsd0 armhf 0.11.7-2 [112 kB] Get:67 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcap2 armhf 1:2.66-4 [23.5 kB] Get:68 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdb5.3-dev armhf 5.3.28+dfsg2-1 [629 kB] Get:69 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdb5.3 armhf 5.3.28+dfsg2-1 [571 kB] Get:70 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtirpc-common all 1.3.3+ds-1 [14.0 kB] Get:71 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtirpc-dev armhf 1.3.3+ds-1 [174 kB] Get:72 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libatomic1 armhf 12.2.0-14+rpi1 [8240 B] Get:73 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libssl3 armhf 3.0.9-1 [1619 kB] Get:74 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkrb5-dev armhf 1.20.1-2 [14.6 kB] Get:75 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf krb5-multidev armhf 1.20.1-2 [125 kB] Get:76 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgssrpc4 armhf 1.20.1-2 [50.3 kB] Get:77 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf comerr-dev armhf 2.1-1.47.0-2 [50.8 kB] Get:78 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcom-err2 armhf 1.47.0-2 [19.1 kB] Get:79 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkdb5-10 armhf 1.20.1-2 [35.2 kB] Get:80 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkadm5srv-mit12 armhf 1.20.1-2 [45.2 kB] Get:81 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkadm5clnt-mit12 armhf 1.20.1-2 [35.6 kB] Get:82 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkeyutils1 armhf 1.6.3-2 [7892 B] Get:83 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgssapi-krb5-2 armhf 1.20.1-2 [109 kB] Get:84 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libk5crypto3 armhf 1.20.1-2 [72.9 kB] Get:85 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkrb5support0 armhf 1.20.1-2 [29.3 kB] Get:86 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkrb5-3 armhf 1.20.1-2 [283 kB] Get:87 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtirpc3 armhf 1.3.3+ds-1 [72.0 kB] Get:88 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxtables12 armhf 1.8.9-2 [27.9 kB] Get:89 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcap2-bin armhf 1:2.66-4 [32.4 kB] Get:90 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iproute2 armhf 6.1.0-3 [899 kB] Get:104 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libncurses5-dev armhf 6.4-4 [932 B] Get:91 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ifupdown armhf 0.8.41 [55.1 kB] Get:92 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsmartcols1 armhf 2.38.1-5 [90.9 kB] Get:93 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaudit-common all 1:3.0.9-1 [10.4 kB] Err:93 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaudit-common all 1:3.0.9-1 Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] Get:94 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcap-ng0 armhf 0.8.3-1+b1 [15.6 kB] Get:95 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaudit1 armhf 1:3.0.9-1 [43.7 kB] Get:96 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf login armhf 1:4.13+dfsg1-1 [611 kB] Get:97 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfdisk1 armhf 2.38.1-5 [178 kB] Get:98 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fdisk armhf 2.38.1-5 [127 kB] Get:99 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf util-linux-extra armhf 2.38.1-5 [97.5 kB] Get:100 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf util-linux armhf 2.38.1-5 [1063 kB] Get:101 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libncurses6 armhf 6.4-4 [80.0 kB] Get:102 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtinfo6 armhf 6.4-4 [317 kB] Get:103 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libncursesw6 armhf 6.4-4 [106 kB] Get:105 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libncurses-dev armhf 6.4-4 [292 kB] Get:106 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ncurses-bin armhf 6.4-4 [414 kB] Get:107 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tar armhf 1.34+dfsg-1.2 [788 kB] Get:108 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dpkg armhf 1.21.22+rpi1 [1497 kB] Get:109 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libreadline-dev armhf 8.2-1.3 [123 kB] Get:110 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf readline-common all 8.2-1.3 [69.0 kB] Get:111 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libreadline8 armhf 8.2-1.3 [142 kB] Get:112 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xkb-data all 2.35.1-1 [764 kB] Get:113 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf kbd armhf 2.5.1-1 [300 kB] Get:114 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnumber-compare-perl all 0.03-3 [6332 B] Get:115 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtext-glob-perl all 0.11-3 [7676 B] Get:116 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfile-find-rule-perl all 0.34-3 [26.6 kB] Get:117 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf usrmerge all 35 [12.5 kB] Get:118 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf init-system-helpers all 1.65.2 [49.8 kB] Get:119 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf console-setup-linux all 1.221 [1882 kB] Get:120 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf console-setup all 1.221 [102 kB] Get:121 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf keyboard-configuration all 1.221 [416 kB] Get:122 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf sysvinit-utils armhf 3.06-4 [29.2 kB] Get:123 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf lsb-base all 11.6+rpi1 [4808 B] Get:124 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf x11-common all 1:7.7+23 [252 kB] Get:125 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf debianutils armhf 5.7-0.4 [101 kB] Get:126 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf autoconf all 2.71-3 [332 kB] Get:127 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkg-config armhf 1.8.1-1 [13.7 kB] Get:128 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkgconf armhf 1.8.1-1 [25.9 kB] Get:129 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbz2-dev armhf 1.0.8-5+b2 [26.8 kB] Get:130 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf bzip2 armhf 1.0.8-5+b2 [47.4 kB] Get:131 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbz2-1.0 armhf 1.0.8-5+b2 [43.5 kB] Get:132 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgdbm-compat4 armhf 1.23-3 [47.8 kB] Get:133 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgpg-error-dev armhf 1.46-1 [119 kB] Get:134 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgpg-error0 armhf 1.46-1 [66.2 kB] Get:135 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcrypt20-dev armhf 1.10.1-3 [685 kB] Get:136 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcrypt20 armhf 1.10.1-3 [627 kB] Get:137 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++6 armhf 12.2.0-14+rpi1 [504 kB] Get:138 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblz4-1 armhf 1.9.4-1+rpi1+b1 [52.7 kB] Get:139 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd-dev armhf 252.12-1~deb12u1+rpi1 [352 kB] Get:140 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libargon2-dev armhf 0~20171227-0.3+deb12u1 [23.3 kB] Get:141 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libargon2-1 armhf 0~20171227-0.3+deb12u1 [19.1 kB] Get:142 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dmsetup armhf 2:1.02.185-2 [81.8 kB] Get:143 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libudev-dev armhf 252.12-1~deb12u1+rpi1 [52.0 kB] Get:144 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libattr1-dev armhf 1:2.5.1-4 [34.5 kB] Get:145 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libattr1 armhf 1:2.5.1-4 [21.2 kB] Get:146 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libacl1-dev armhf 2.3.1-3 [89.7 kB] Get:147 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libacl1 armhf 2.3.1-3 [28.8 kB] Get:148 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf kmod armhf 30+20221128-1 [82.2 kB] Get:149 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libkmod2 armhf 30+20221128-1 [49.9 kB] Get:150 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf less armhf 590-2 [114 kB] Get:151 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpam-systemd armhf 252.12-1~deb12u1+rpi1 [200 kB] Get:152 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd-timesyncd armhf 252.12-1~deb12u1+rpi1 [62.9 kB] Get:153 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-xorg-video-fbdev armhf 1:0.5.0-2 [24.2 kB] Get:154 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-xorg-core armhf 2:21.1.7-3 [3450 kB] Get:155 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd armhf 252.12-1~deb12u1+rpi1 [2881 kB] Get:156 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf udev armhf 252.12-1~deb12u1+rpi1 [1577 kB] Get:157 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libudev1 armhf 252.12-1~deb12u1+rpi1 [99.1 kB] Get:158 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdevmapper1.02.1 armhf 2:1.02.185-2 [123 kB] Get:159 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-c5 armhf 0.16-2 [40.0 kB] Get:160 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcryptsetup12 armhf 2:2.6.1-4~deb12u1 [191 kB] Get:161 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapparmor-dev armhf 3.0.8-3 [80.7 kB] Get:162 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapparmor1 armhf 3.0.8-3 [37.1 kB] Get:163 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libip4tc2 armhf 1.8.9-2 [17.1 kB] Get:164 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libseccomp2 armhf 2.5.4-1+rpi1+b1 [46.2 kB] Get:165 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd-shared armhf 252.12-1~deb12u1+rpi1 [1511 kB] Get:166 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam-modules-bin armhf 1.5.2-6 [71.5 kB] Get:167 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam-modules armhf 1.5.2-6 [274 kB] Get:168 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam-runtime all 1.5.2-6 [161 kB] Get:169 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-user-session armhf 1.14.8-2~deb12u1 [77.4 kB] Get:170 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-x11 armhf 1.14.8-2~deb12u1 [88.8 kB] Get:171 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdbus-1-3 armhf 1.14.8-2~deb12u1 [176 kB] Get:172 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus armhf 1.14.8-2~deb12u1 [94.5 kB] Get:173 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-session-bus-common all 1.14.8-2~deb12u1 [77.5 kB] Get:174 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexpat1-dev armhf 2.5.0-1 [130 kB] Get:175 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexpat1 armhf 2.5.0-1 [77.2 kB] Get:176 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-daemon armhf 1.14.8-2~deb12u1 [168 kB] Get:177 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf x11proto-dev all 2022.1-1 [599 kB] Get:178 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb1-dev armhf 1.15-1 [175 kB] Get:179 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb1 armhf 1.15-1 [139 kB] Get:180 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-dev armhf 2:1.8.4-2+deb12u1 [769 kB] Get:181 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-data all 2:1.8.4-2+deb12u1 [292 kB] Get:182 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-6 armhf 2:1.8.4-2+deb12u1 [691 kB] Get:183 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-xcb1 armhf 2:1.8.4-2+deb12u1 [192 kB] Get:184 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-bin armhf 1.14.8-2~deb12u1 [102 kB] Get:185 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-system-bus-common all 1.14.8-2~deb12u1 [78.5 kB] Get:186 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd-sysv armhf 252.12-1~deb12u1+rpi1 [41.9 kB] Get:187 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxext6 armhf 2:1.3.4-1 [48.0 kB] Get:188 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxt-dev armhf 1:1.2.1-1.1 [368 kB] Get:189 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxt6 armhf 1:1.2.1-1.1 [155 kB] Get:190 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmu6 armhf 2:1.1.3-3 [52.0 kB] Get:191 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxpm-dev armhf 1:3.5.12-1.1 [96.5 kB] Get:192 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxpm4 armhf 1:3.5.12-1.1 [42.0 kB] Get:193 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxaw7 armhf 2:1.0.14-1 [165 kB] Get:194 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxrender1 armhf 1:0.9.10-1.1 [30.0 kB] Get:195 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxrandr2 armhf 2:1.5.2-2 [35.5 kB] Get:196 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf x11-xkb-utils armhf 7.7+7 [140 kB] Get:197 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-common all 2:21.1.7-3 [2382 kB] Get:198 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcvt0 armhf 0.1.2-1 [5976 B] Get:199 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgl1 armhf 1.6.0-1 [89.9 kB] Get:200 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-common all 2.4.114-1+rpi1 [7276 B] Get:201 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm2 armhf 2.4.114-1+rpi1 [32.8 kB] Get:202 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-server0 armhf 1.21.0-1 [29.3 kB] Get:203 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libegl-mesa0 armhf 22.3.6-1+deb12u1+rpi1 [93.0 kB] Get:204 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgbm1 armhf 22.3.6-1+deb12u1+rpi1 [34.3 kB] Get:205 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-client0 armhf 1.21.0-1 [23.3 kB] Get:206 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-dri2-0 armhf 1.15-1 [107 kB] Get:207 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-dri3-0 armhf 1.15-1 [107 kB] Get:208 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-present0 armhf 1.15-1 [105 kB] Get:209 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-randr0 armhf 1.15-1 [116 kB] Get:210 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-sync1 armhf 1.15-1 [108 kB] Get:211 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xfixes0 armhf 1.15-1 [109 kB] Get:212 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-amdgpu1 armhf 2.4.114-1+rpi1 [19.3 kB] Get:213 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libz3-4 armhf 4.8.12-3.1 [5797 kB] Get:214 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libedit-dev armhf 3.1-20221030-2 [94.4 kB] Get:215 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libedit2 armhf 3.1-20221030-2 [76.2 kB] Get:216 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libicu72 armhf 72.1-3 [9009 kB] Get:229 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libglapi-mesa armhf 22.3.6-1+deb12u1+rpi1 [45.8 kB] Get:217 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf icu-devtools armhf 72.1-3 [175 kB] Get:218 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libicu-dev armhf 72.1-3 [9959 kB] Get:219 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxml2-dev armhf 2.9.14+dfsg-1.3~deb12u1 [637 kB] Get:220 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxml2 armhf 2.9.14+dfsg-1.3~deb12u1 [570 kB] Get:221 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libllvm15 armhf 1:15.0.6-4+rpi1+b1 [20.7 MB] Get:222 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-nouveau2 armhf 2.4.114-1+rpi1 [17.0 kB] Get:223 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-radeon1 armhf 2.4.114-1+rpi1 [20.7 kB] Get:224 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsensors-dev armhf 1:3.6.0-7.1 [39.5 kB] Get:225 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsensors-config all 1:3.6.0-7.1 [14.3 kB] Get:226 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsensors5 armhf 1:3.6.0-7.1 [31.6 kB] Get:227 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgl1-mesa-dri armhf 22.3.6-1+deb12u1+rpi1 [5636 kB] Get:228 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libglx-mesa0 armhf 22.3.6-1+deb12u1+rpi1 [130 kB] Get:230 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-glx0 armhf 1.15-1 [121 kB] Get:231 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-shm0 armhf 1.15-1 [106 kB] Get:232 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfixes3 armhf 1:6.0.0-2 [21.2 kB] Get:233 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglx0 armhf 1.6.0-1 [32.0 kB] Get:234 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgles2 armhf 1.6.0-1 [17.2 kB] Get:235 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libegl1 armhf 1.6.0-1 [28.3 kB] Get:236 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglvnd0 armhf 1.6.0-1 [53.8 kB] Get:237 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libepoxy0 armhf 1.5.10-1 [172 kB] Get:238 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpciaccess0 armhf 0.17-2 [48.8 kB] Get:239 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpixman-1-0 armhf 0.42.2-1 [461 kB] Get:240 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libunwind8 armhf 1.6.2-3 [42.6 kB] Get:241 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfreetype-dev armhf 2.12.1+dfsg-5 [493 kB] Get:242 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfreetype6-dev armhf 2.12.1+dfsg-5 [46.4 kB] Get:243 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbrotli-dev armhf 1.0.9-2+b3 [270 kB] Get:244 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbrotli1 armhf 1.0.9-2+b3 [258 kB] Get:245 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpng-dev armhf 1.6.39-2 [336 kB] Get:246 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpng16-16 armhf 1.6.39-2 [258 kB] Get:247 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfreetype6 armhf 2.12.1+dfsg-5 [329 kB] Get:248 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfont2 armhf 1:2.0.6-1 [120 kB] Get:249 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libp11-kit0 armhf 0.24.1-2 [324 kB] Get:250 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mount armhf 2.38.1-5 [125 kB] Get:251 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd0 armhf 252.12-1~deb12u1+rpi1 [299 kB] Get:252 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxxhash0 armhf 0.8.1-1 [27.8 kB] Get:253 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapt-pkg6.0 armhf 2.6.1 [805 kB] Get:254 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf debconf all 1.5.82 [121 kB] Get:255 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bash armhf 5.2.15-2 [1365 kB] Get:256 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bsdutils armhf 1:2.38.1-5 [84.2 kB] Get:257 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmp3-dev armhf 2:6.2.1+dfsg1-1.1 [331 kB] Get:258 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmp-dev armhf 2:6.2.1+dfsg1-1.1 [582 kB] Get:259 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmpxx4ldbl armhf 2:6.2.1+dfsg1-1.1 [338 kB] Get:260 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmp10 armhf 2:6.2.1+dfsg1-1.1 [507 kB] Get:261 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf coreutils armhf 9.1-1 [2702 kB] Get:262 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dash armhf 0.5.12-2 [78.9 kB] Get:263 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf diffutils armhf 1:3.8-4 [332 kB] Get:264 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf findutils armhf 4.9.0-4 [616 kB] Get:265 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf grep armhf 3.8-5 [404 kB] Get:266 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gzip armhf 1.12-1 [132 kB] Get:267 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf hostname armhf 3.23+nmu1 [9908 B] Get:268 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf sed armhf 4.9-1 [318 kB] Get:269 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdebconfclient0 armhf 0.270 [9536 B] Get:270 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf base-passwd armhf 3.6.1 [57.6 kB] Get:271 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ncurses-base all 6.4-4 [261 kB] Get:272 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnettle8 armhf 3.8.1-2 [293 kB] Get:273 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libhogweed6 armhf 3.8.1-2 [315 kB] Get:274 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libunistring2 armhf 1.0-2 [407 kB] Get:275 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libidn2-0 armhf 2.3.3-1+b2 [117 kB] Get:276 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtasn1-6 armhf 4.19.0-2 [50.9 kB] Get:277 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgnutls30 armhf 3.7.9-2 [1309 kB] Get:278 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libksba8 armhf 1.6.3-2 [107 kB] Get:279 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libassuan0 armhf 2.5.5-5 [42.2 kB] Get:280 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsasl2-modules-db armhf 2.1.28+dfsg-10 [19.1 kB] Get:281 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsasl2-dev armhf 2.1.28+dfsg-10 [206 kB] Get:282 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsasl2-2 armhf 2.1.28+dfsg-10 [51.9 kB] Get:283 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldap-2.5-0 armhf 2.5.13+dfsg-5+rpi1 [154 kB] Get:284 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gnupg-l10n all 2.2.40-1.1 [1093 kB] Get:285 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gnupg-utils armhf 2.2.40-1.1 [812 kB] Get:286 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgconf armhf 2.2.40-1.1 [540 kB] Get:287 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dirmngr armhf 2.2.40-1.1 [731 kB] Get:288 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg armhf 2.2.40-1.1 [843 kB] Get:289 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg-agent armhf 2.2.40-1.1 [636 kB] Get:290 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg-wks-client armhf 2.2.40-1.1 [518 kB] Get:291 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg-wks-server armhf 2.2.40-1.1 [511 kB] Get:292 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgv armhf 2.2.40-1.1 [601 kB] Get:293 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgsm armhf 2.2.40-1.1 [621 kB] Get:294 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gnupg all 2.2.40-1.1 [846 kB] Get:295 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsqlite3-dev armhf 3.40.1-2 [893 kB] Get:296 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsqlite3-0 armhf 3.40.1-2 [724 kB] Get:297 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pinentry-curses armhf 1.2.1-1 [72.0 kB] Get:298 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apt armhf 2.6.1 [1296 kB] Get:299 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf logsave armhf 1.47.0-2 [19.1 kB] Get:300 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf klibc-utils armhf 2.0.12-1+rpi1 [87.1 kB] Get:301 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf initramfs-tools all 0.142 [72.9 kB] Get:302 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf initramfs-tools-core all 0.142 [105 kB] Get:303 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libext2fs2 armhf 1.47.0-2 [184 kB] Get:304 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf e2fsprogs armhf 1.47.0-2 [521 kB] Get:305 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libklibc armhf 2.0.12-1+rpi1 [42.1 kB] Get:306 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf linux-base all 4.9 [31.8 kB] Get:307 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpio armhf 2.13+dfsg-7.1 [229 kB] Get:308 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cron-daemon-common all 3.0pl1-162 [12.7 kB] Get:309 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cron armhf 3.0pl1-162 [68.2 kB] Get:310 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf sensible-utils all 0.0.17+nmu1 [19.0 kB] Get:311 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsctp-dev armhf 1.0.19+dfsg-2 [71.5 kB] Get:312 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsctp1 armhf 1.0.19+dfsg-2 [29.1 kB] Get:313 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapr1-dev armhf 1.7.2-3 [732 kB] Get:314 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1-dbd-sqlite3 armhf 1.6.3-1 [12.3 kB] Get:315 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1-ldap armhf 1.6.3-1 [11.3 kB] Get:316 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldap2-dev all 2.5.13+dfsg-5+rpi1 [22.7 kB] Get:317 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldap-dev armhf 2.5.13+dfsg-5+rpi1 [259 kB] Get:318 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1-dev armhf 1.6.3-1 [397 kB] Get:319 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1 armhf 1.6.3-1 [75.2 kB] Get:320 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapr1 armhf 1.7.2-3 [82.4 kB] Get:321 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf curl armhf 7.88.1-10+rpi1 [300 kB] Get:322 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnghttp2-14 armhf 1.52.0-1 [60.6 kB] Get:323 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpsl5 armhf 0.21.2-1 [57.5 kB] Get:324 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libssh2-1 armhf 1.10.0-3+b1 [161 kB] Get:325 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl4 armhf 7.88.1-10+rpi1 [343 kB] Get:326 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblua5.3-0 armhf 5.3.6-2 [98.3 kB] Get:327 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2 armhf 2.4.57-2 [215 kB] Get:328 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-bin armhf 2.4.57-2 [1161 kB] Get:329 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-data all 2.4.57-2 [160 kB] Get:330 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-utils armhf 2.4.57-2 [201 kB] Get:331 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf media-types all 10.0.0 [26.1 kB] Get:332 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libproc2-0 armhf 2:4.0.2-3 [53.6 kB] Get:333 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf procps armhf 2:4.0.2-3 [679 kB] Get:334 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf flex armhf 2.6.4-8.2 [391 kB] Get:335 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf git armhf 1:2.39.2-1.1 [5459 kB] Get:336 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf git-man all 1:2.39.2-1.1 [2049 kB] Get:337 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl4-gnutls-dev armhf 7.88.1-10+rpi1 [419 kB] Get:338 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl3-gnutls armhf 7.88.1-10+rpi1 [337 kB] Get:339 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liberror-perl all 0.17029-2 [29.0 kB] Get:340 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcbor0.8 armhf 0.8.0-2 [22.8 kB] Get:341 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfido2-1 armhf 1.12.0-2 [67.6 kB] Get:342 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssh-sftp-server armhf 1:9.2p1-2 [55.5 kB] Get:343 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssh-server armhf 1:9.2p1-2 [377 kB] Get:344 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssh-client armhf 1:9.2p1-2 [818 kB] Get:345 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf ucf all 3.0043+nmu1 [55.2 kB] Get:346 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf runit-helper all 2.15.2 [6520 B] Get:347 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwrap0-dev armhf 7.6.q-32 [18.4 kB] Get:348 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwrap0 armhf 7.6.q-32 [52.6 kB] Get:349 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf poppler-data all 0.4.12-1 [1601 kB] Get:350 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf netbase all 6.4 [12.8 kB] Get:351 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libhiredis0.14 armhf 0.14.1-3 [30.7 kB] Get:352 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libhashkit2 armhf 1.1.4-1 [16.3 kB] Get:353 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmemcached11 armhf 1.1.4-1 [70.2 kB] Get:354 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmemcachedutil2 armhf 1.1.4-1 [13.7 kB] Get:355 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf proftpd-core armhf 1.3.8+dfsg-4+deb12u1 [2437 kB] Get:356 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libatopology2 armhf 1.2.8-1+b1 [47.0 kB] Get:357 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasound2-dev armhf 1.2.8-1+b1 [110 kB] Get:358 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasound2 armhf 1.2.8-1+b1 [302 kB] Get:359 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libasound2-data all 1.2.8-1 [20.5 kB] Get:360 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgomp1 armhf 12.2.0-14+rpi1 [95.4 kB] Get:361 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfftw3-single3 armhf 3.3.10-1 [509 kB] Get:362 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgstreamer1.0-0 armhf 1.22.0-2 [1073 kB] Get:363 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liborc-0.4-0 armhf 1:0.4.33-2 [135 kB] Get:364 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iso-codes all 4.15.0-1 [2906 kB] Get:365 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-plugins-base1.0-0 armhf 1.22.0-3+deb12u1 [840 kB] Get:366 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf autotools-dev all 20220109.1 [51.6 kB] Get:367 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf automake all 1:1.16.5-1.3 [823 kB] Get:368 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libltdl-dev armhf 2.4.7-5 [161 kB] Get:369 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libltdl7 armhf 2.4.7-5 [390 kB] Get:370 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libogg0 armhf 1.3.5-3 [21.7 kB] Get:371 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libflac12 armhf 1.4.2+ds-2 [149 kB] Get:372 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmp3lame0 armhf 3.100-6 [347 kB] Get:373 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmpg123-0 armhf 1.31.2-1 [126 kB] Get:374 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopus0 armhf 1.3.1-3 [171 kB] Get:375 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsndfile1 armhf 1.2.0-1 [177 kB] Get:376 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpulsedsp armhf 16.1+dfsg1-2+b2 [34.8 kB] Get:377 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf pulseaudio armhf 16.1+dfsg1-2+b2 [1079 kB] Get:378 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf pulseaudio-utils armhf 16.1+dfsg1-2+b2 [81.8 kB] Get:379 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasyncns0 armhf 0.8-6+b3 [12.0 kB] Get:380 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpulse0 armhf 16.1+dfsg1-2+b2 [239 kB] Get:381 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspeexdsp1 armhf 1.2.1-1 [33.6 kB] Get:382 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxtst6 armhf 2:1.2.3-1.1 [26.3 kB] Get:383 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaom3 armhf 3.6.0-1 [1332 kB] Get:384 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libva-x11-2 armhf 2.17.0-1 [19.6 kB] Get:385 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libva-drm2 armhf 2.17.0-1 [15.9 kB] Get:386 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libva2 armhf 2.17.0-1 [61.1 kB] Get:387 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvdpau1 armhf 1.5-2 [23.9 kB] Get:388 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ocl-icd-libopencl1 armhf 2.3.1-1 [40.3 kB] Get:389 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavutil57 armhf 7:5.1.3-1 [325 kB] Get:390 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcairo-gobject2 armhf 1.16.0-7 [111 kB] Get:391 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfontconfig-dev armhf 2.14.1-4 [383 kB] Get:392 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fonts-dejavu-core all 2.37-6 [1068 kB] Get:393 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fonts-urw-base35 all 20200910-7 [10.8 MB] Get:453 http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian bookworm/main armhf libpcre3-dev armhf 2:8.39-15 [576 kB] Get:394 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fontconfig-config armhf 2.14.1-4 [315 kB] Err:394 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fontconfig-config armhf 2.14.1-4 Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] Get:395 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfontconfig1 armhf 2.14.1-4 [366 kB] Get:396 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-render0 armhf 1.15-1 [114 kB] Get:397 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcairo2 armhf 1.16.0-7 [482 kB] Get:398 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcodec2-1.0 armhf 1.0.5-1 [8151 kB] Get:399 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdav1d6 armhf 1.0.0-2+rpi1 [205 kB] Get:400 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgsm1 armhf 1.0.22-1 [28.3 kB] Get:401 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libhwy1 armhf 1.0.3-3+rpi1 [20.9 kB] Get:402 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblcms2-2 armhf 2.14-2 [124 kB] Get:403 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjxl0.7 armhf 0.7.0-10 [627 kB] Get:404 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenjp2-7 armhf 2.5.0-2 [164 kB] Get:405 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf librav1e0 armhf 0.5.1-6 [521 kB] Get:406 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgdk-pixbuf-2.0-0 armhf 2.42.10+dfsg-1+b1 [123 kB] Get:407 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgdk-pixbuf2.0-common all 2.42.10+dfsg-1 [306 kB] Get:408 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf shared-mime-info armhf 2.2-1 [726 kB] Get:409 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjpeg62-turbo-dev armhf 1:2.1.5-2 [258 kB] Get:410 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjpeg62-turbo armhf 1:2.1.5-2 [143 kB] Get:411 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdeflate-dev armhf 1.14-1 [48.1 kB] Get:412 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdeflate0 armhf 1.14-1 [50.9 kB] Get:413 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjbig-dev armhf 2.1-6.1 [27.2 kB] Get:414 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjbig0 armhf 2.1-6.1 [27.0 kB] Get:415 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblerc4 armhf 4.0.0+ds-2 [133 kB] Get:416 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebp7 armhf 1.2.4-0.2 [242 kB] Get:417 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtiff6 armhf 4.5.0-6 [293 kB] Get:418 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librsvg2-common armhf 2.54.7+dfsg-1~deb12u1 [21.0 kB] Get:419 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libharfbuzz0b armhf 6.0.0+dfsg-3 [1894 kB] Get:420 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxft2 armhf 2.3.6-1 [53.7 kB] Get:421 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpangocairo-1.0-0 armhf 1.50.12+ds-1 [30.1 kB] Get:422 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpangoft2-1.0-0 armhf 1.50.12+ds-1 [40.5 kB] Get:423 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpango-1.0-0 armhf 1.50.12+ds-1 [186 kB] Get:424 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpangoxft-1.0-0 armhf 1.50.12+ds-1 [24.2 kB] Get:425 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fontconfig armhf 2.14.1-4 [449 kB] Get:426 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfribidi0 armhf 1.0.8-2.1 [63.7 kB] Get:427 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libthai-data all 0.1.29-1 [176 kB] Get:428 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdatrie1 armhf 0.2.13-2+b2 [39.9 kB] Get:429 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libthai0 armhf 0.1.29-1 [54.5 kB] Get:430 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librsvg2-2 armhf 2.54.7+dfsg-1~deb12u1 [2205 kB] Get:431 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsnappy1v5 armhf 1.1.9-3 [23.9 kB] Get:432 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspeex1 armhf 1.2.1-2 [45.5 kB] Get:433 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsvtav1enc1 armhf 1.4.1+dfsg-1 [880 kB] Get:434 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libswresample4 armhf 7:5.1.3-1 [85.1 kB] Get:435 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtheora0 armhf 1.1.1+dfsg.1-16.1 [130 kB] Get:436 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvpx7 armhf 1.12.0-1 [1210 kB] Get:437 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebp-dev armhf 1.2.4-0.2 [350 kB] Get:438 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebpdemux2 armhf 1.2.4-0.2 [98.4 kB] Get:439 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebpmux3 armhf 1.2.4-0.2 [106 kB] Get:440 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx264-164 armhf 2:0.164.3095+gitbaee400-3+rpi1 [688 kB] Get:441 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libx265-199 armhf 3.5-2 [548 kB] Get:442 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libzvbi0 armhf 0.2.41-1 [241 kB] Get:443 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libzvbi-common all 0.2.41-1 [69.7 kB] Get:444 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavcodec59 armhf 7:5.1.3-1 [4578 kB] Get:445 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjack-dev armhf 1:0.126.0-2 [148 kB] Get:446 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjack0 armhf 1:0.126.0-2 [81.1 kB] Get:447 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsamplerate0 armhf 0.2.2-3 [943 kB] Get:448 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libasound2-plugins armhf 1.2.7.1-1 [66.4 kB] Get:449 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpopt0 armhf 1.19+dfsg-1 [40.4 kB] Get:450 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rsync armhf 3.2.7-1 [368 kB] Get:451 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf sgml-base all 1.31 [15.4 kB] Get:452 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf sudo armhf 1.9.13p3-1+deb12u1 [1825 kB] Get:454 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre16-3 armhf 2:8.39-15 [234 kB] Get:455 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre32-3 armhf 2:8.39-15 [225 kB] Get:456 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcrecpp0v5 armhf 2:8.39-15 [141 kB] Get:457 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre3 armhf 2:8.39-15 [313 kB] Get:458 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgc1 armhf 1:8.2.2-3 [235 kB] Get:459 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc4 armhf 12.2.0-14+rpi1 [33.6 kB] Get:460 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc-10-dev armhf 10.4.0-7+rpi1 [159 kB] Get:461 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-11-base armhf 11.3.0-12+rpi1 [38.6 kB] Get:462 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasan6 armhf 11.3.0-12+rpi1 [1946 kB] Get:463 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libubsan1 armhf 12.2.0-14+rpi1 [861 kB] Get:464 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf g++-10 armhf 10.4.0-7+rpi1 [7360 kB] Get:551 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf g++ armhf 4:12.2.0-3+rpi1 [1344 B] Get:465 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-10 armhf 10.4.0-7+rpi1 [13.4 MB] Get:466 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++-10-dev armhf 10.4.0-7+rpi1 [1763 kB] Get:467 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-10-dev armhf 10.4.0-7+rpi1 [682 kB] Get:468 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libisl23 armhf 0.25-1 [519 kB] Get:469 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmpfr6 armhf 4.2.0-1 [574 kB] Get:470 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmpc3 armhf 1.3.1-1 [41.0 kB] Get:471 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcc1-0 armhf 12.2.0-14+rpi1 [32.2 kB] Get:472 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpp-10 armhf 10.4.0-7+rpi1 [6697 kB] Get:473 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgfortran5 armhf 12.2.0-14+rpi1 [238 kB] Get:474 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-10-base armhf 10.4.0-7+rpi1 [36.0 kB] Get:475 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libplymouth5 armhf 22.02.122-3 [84.3 kB] Get:476 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf plymouth armhf 22.02.122-3 [121 kB] Get:477 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mawk armhf 1.3.4.20200120-3.1 [102 kB] Get:478 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf tzdata all 2023c-5 [296 kB] Get:479 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dmidecode armhf 3.4-1 [55.4 kB] Get:480 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf groff-base armhf 1.22.4-10 [774 kB] Get:481 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iputils-ping armhf 3:20221126-1 [43.9 kB] Get:482 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf isc-dhcp-client armhf 4.4.3-P1-2 [945 kB] Get:483 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bsdextrautils armhf 2.38.1-5 [78.5 kB] Get:484 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpipeline1 armhf 1.5.7-1 [33.4 kB] Get:485 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf man-db armhf 2.11.2-2 [1342 kB] Get:486 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf nano armhf 7.2-1 [663 kB] Get:487 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf netcat-openbsd armhf 1.219-1 [38.9 kB] Get:488 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bash-completion all 1:2.11-6 [234 kB] Err:488 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bash-completion all 1:2.11-6 Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] Get:489 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssl armhf 3.0.9-1 [1365 kB] Get:490 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ca-certificates all 20230311 [153 kB] Get:491 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf file armhf 1:5.44-3 [41.5 kB] Get:492 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmagic-dev armhf 1:5.44-3 [107 kB] Get:493 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmagic1 armhf 1:5.44-3 [95.3 kB] Get:494 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmagic-mgc armhf 1:5.44-3 [305 kB] Get:495 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gettext-base armhf 0.21-12 [156 kB] Get:496 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf lsof armhf 4.95.0-1+rpi1 [305 kB] Get:497 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libutempter0 armhf 1.2.1-3 [8404 B] Get:498 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf screen armhf 4.9.0-4 [539 kB] Get:499 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf wget armhf 1.21.3-1+b1 [942 kB] Get:500 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xz-utils armhf 5.4.1-0.2 [467 kB] Get:501 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gtk-update-icon-cache armhf 3.24.37-2 [42.3 kB] Get:502 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf adwaita-icon-theme all 43-1 [5124 kB] Get:503 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf alsa-utils armhf 1.2.8-1 [1057 kB] Get:504 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dpkg-dev all 1.21.22+rpi1 [1353 kB] Get:505 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf debhelper all 13.11.4 [942 kB] Get:506 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdebhelper-perl all 13.11.4 [81.2 kB] Get:507 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdpkg-perl all 1.21.22+rpi1 [603 kB] Get:508 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsub-override-perl all 0.09-4 [9304 B] Get:509 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dh-strip-nondeterminism all 1.13.1-1 [8620 B] Get:510 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfile-stripnondeterminism-perl all 1.13.1-1 [19.4 kB] Get:511 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dwz armhf 0.15-1 [92.4 kB] Get:512 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-dev armhf 2.4.57-2 [306 kB] Get:513 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libregexp-assemble-perl all 0.38-2 [77.8 kB] Get:514 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apt-file all 3.3 [39.1 kB] Get:515 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf at-spi2-common all 2.46.0-5 [162 kB] Get:516 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf autoconf2.64 all 2.64+dfsg-1.1 [480 kB] Get:517 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gettext armhf 0.21-12 [1201 kB] Get:518 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf autopoint all 0.21-12 [495 kB] Get:519 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf bison armhf 2:3.8.2+dfsg-1 [1114 kB] Get:520 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bubblewrap armhf 0.8.0-2 [42.7 kB] Get:521 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libllvm14 armhf 1:14.0.6-12+rpi1 [19.5 MB] Get:522 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-cpp14 armhf 1:14.0.6-12+rpi1 [9464 kB] Get:523 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasan8 armhf 12.2.0-14+rpi1 [2088 kB] Get:524 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-12-dev armhf 12.2.0-14+rpi1 [727 kB] Get:525 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++-12-dev armhf 12.2.0-14+rpi1 [2027 kB] Get:526 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc-12-dev armhf 12.2.0-14+rpi1 [159 kB] Get:527 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-common-14-dev all 1:14.0.6-12+rpi1 [891 kB] Get:528 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf llvm-14-linker-tools armhf 1:14.0.6-12+rpi1 [1044 kB] Get:529 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang1-14 armhf 1:14.0.6-12+rpi1 [5208 kB] Get:530 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf clang-14 armhf 1:14.0.6-12+rpi1 [95.7 kB] Get:531 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf clang armhf 1:14.0-55.6 [4972 B] Get:532 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf clang-11 armhf 1:11.1.0-6+rpi2 [77.6 kB] Get:533 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-common-11-dev armhf 1:11.1.0-6+rpi2 [2794 kB] Get:534 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-cpp11 armhf 1:11.1.0-6+rpi2 [8244 kB] Get:535 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libllvm11 armhf 1:11.1.0-6+rpi2 [15.6 MB] Get:536 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-11-dev armhf 11.3.0-12+rpi1 [698 kB] Get:537 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++-11-dev armhf 11.3.0-12+rpi1 [1976 kB] Get:538 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc-11-dev armhf 11.3.0-12+rpi1 [160 kB] Get:539 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf llvm-11-linker-tools armhf 1:11.1.0-6+rpi2 [912 kB] Get:540 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang1-11 armhf 1:11.1.0-6+rpi2 [4620 kB] Get:736 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdb-dev armhf 5.3.2 [1744 B] Get:541 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libarchive13 armhf 3.6.2-1 [293 kB] Get:542 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjsoncpp25 armhf 1.9.5-4 [66.7 kB] Get:543 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf librhash0 armhf 1.4.3-3 [142 kB] Get:544 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libuv1-dev armhf 1.44.2-1+rpi1 [157 kB] Get:545 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libuv1 armhf 1.44.2-1+rpi1 [125 kB] Get:546 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cmake armhf 3.25.1-1 [3859 kB] Get:547 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cmake-data all 3.25.1-1 [2026 kB] Get:548 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf colorized-logs armhf 2.6-1 [15.4 kB] Get:549 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpp-12 armhf 12.2.0-14+rpi1 [7159 kB] Get:550 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-12 armhf 12.2.0-14+rpi1 [14.2 MB] Get:552 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc armhf 4:12.2.0-3+rpi1 [5216 B] Get:553 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf g++-12 armhf 12.2.0-14+rpi1 [7914 kB] Get:554 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpp armhf 4:12.2.0-3+rpi1 [7048 B] Get:555 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dconf-gsettings-backend armhf 0.40.0-4 [23.1 kB] Get:556 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dconf-service armhf 0.40.0-4 [28.9 kB] Get:557 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdconf1 armhf 0.40.0-4 [36.0 kB] Get:558 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mysql-common all 5.8+1.1.0 [6636 B] Get:559 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mariadb-common all 1:10.11.3-1+rpi1 [24.1 kB] Get:560 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmariadb-dev-compat armhf 1:10.11.3-1+rpi1 [22.9 kB] Get:561 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmariadb-dev armhf 1:10.11.3-1+rpi1 [247 kB] Get:562 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmariadb3 armhf 1:10.11.3-1+rpi1 [154 kB] Get:563 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libssl-dev armhf 3.0.9-1 [2099 kB] Get:564 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf default-libmysqlclient-dev armhf 1.1.0 [3092 B] Get:565 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfdt1 armhf 1.6.1-4+b1 [15.7 kB] Get:566 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libyaml-0-2 armhf 0.2.5-1 [44.6 kB] Get:567 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf device-tree-compiler armhf 1.6.1-4+b1 [216 kB] Get:568 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf emacsen-common all 3.0.5 [12.3 kB] Get:569 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dictionaries-common all 1.29.5 [184 kB] Get:570 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf distro-info-data all 0.58 [5848 B] Get:571 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ethtool armhf 1:6.1-1 [160 kB] Get:572 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf expat armhf 2.5.0-1 [38.3 kB] Get:573 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf fake-hwclock all 0.12+nmu1 [6336 B] Get:574 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfakeroot armhf 1.31-1.2 [25.7 kB] Get:575 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fakeroot armhf 1.31-1.2 [66.0 kB] Get:576 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libib-util armhf 3.0.11.33637.ds4-2+b1 [3360 B] Get:577 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf firebird-dev armhf 3.0.11.33637.ds4-2+b1 [120 kB] Get:578 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfbclient2 armhf 3.0.11.33637.ds4-2+b1 [452 kB] Get:579 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf firebird3.0-common all 3.0.11.33637.ds4-2 [15.3 kB] Get:580 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf firebird3.0-common-doc all 3.0.11.33637.ds4-2 [27.0 kB] Get:581 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf flac armhf 1.4.2+ds-2 [154 kB] Get:582 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf freetds-common all 1.3.17+ds-2 [28.9 kB] Get:583 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf freetds-dev armhf 1.3.17+ds-2 [237 kB] Get:584 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libct4 armhf 1.3.17+ds-2 [142 kB] Get:585 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsybdb5 armhf 1.3.17+ds-2 [165 kB] Get:586 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatk1.0-0 armhf 2.46.0-5 [41.4 kB] Get:587 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxi6 armhf 2:1.8-1 [78.1 kB] Get:588 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatspi2.0-0 armhf 2.46.0-5 [63.8 kB] Get:589 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatk-bridge2.0-0 armhf 2.46.0-5 [55.6 kB] Get:590 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcolord2 armhf 1.4.6-2.2 [115 kB] Get:591 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavahi-client3 armhf 0.8-10 [41.1 kB] Get:592 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavahi-common3 armhf 0.8-10 [38.5 kB] Get:593 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavahi-common-data armhf 0.8-10 [107 kB] Get:594 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcups2 armhf 2.4.2-3+deb12u1 [205 kB] Get:595 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-cursor0 armhf 1.21.0-1 [13.2 kB] Get:596 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-egl1 armhf 1.21.0-1 [8448 B] Get:597 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcursor1 armhf 1:1.2.1-1 [38.0 kB] Get:598 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxdamage1 armhf 1:1.1.6-1 [14.7 kB] Get:599 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxinerama1 armhf 2:1.1.4-3 [17.4 kB] Get:600 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xkb1 armhf 1.15-1 [126 kB] Get:601 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxkbcommon-x11-0 armhf 1.5.0-1 [13.8 kB] Get:602 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxkbcommon0 armhf 1.5.0-1 [93.1 kB] Get:603 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgtk-3-common all 3.24.37-2 [3891 kB] Get:604 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgtk-3-0 armhf 3.24.37-2 [2351 kB] Get:605 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf galculator armhf 2.1.4-1.2 [152 kB] Get:606 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libproxy1v5 armhf 0.4.18-1.2 [48.8 kB] Get:607 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf glib-networking-common all 2.74.0-4 [80.3 kB] Get:608 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf glib-networking armhf 2.74.0-4 [60.8 kB] Get:609 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf glib-networking-services armhf 2.74.0-4 [11.4 kB] Get:610 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gsettings-desktop-schemas all 43.0-1 [643 kB] Get:611 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-1.15-src armhf 1.15.15-5+rpi1 [13.9 MB] Get:612 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-1.15-go armhf 1.15.15-5+rpi1 [43.2 MB] Get:908 http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian bookworm/main armhf libruby armhf 1:3.1 [4968 B] Get:613 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf golang-1.19-src all 1.19.8-2 [18.3 MB] Get:974 http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian bookworm/main armhf node-asynckit all 0.4.0-5 [10.3 kB] Get:614 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf golang-1.19-go armhf 1.19.8-2 [56.9 MB] Get:615 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-src all 2:1.19~1 [5756 B] Get:616 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-go armhf 2:1.19~1 [45.0 kB] Get:617 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gparted armhf 1.3.1-1 [714 kB] Get:618 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gparted-common all 1.3.1-1 [1711 kB] Get:619 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsigc++-2.0-0v5 armhf 2.12.0-1 [24.2 kB] Get:620 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglibmm-2.4-1v5 armhf 2.66.5-2 [494 kB] Get:621 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatkmm-1.6-1v5 armhf 2.28.3-1 [67.3 kB] Get:622 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcairomm-1.0-1v5 armhf 1.14.4-2 [49.1 kB] Get:623 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpangomm-1.4-1v5 armhf 2.46.3-1 [57.3 kB] Get:624 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtkmm-3.0-1v5 armhf 3.24.7-1 [808 kB] Get:625 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf parted armhf 3.5-3 [34.5 kB] Get:626 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libparted-fs-resize0 armhf 3.5-3 [35.3 kB] Get:627 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libparted2 armhf 3.5-3 [283 kB] Get:628 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf xml-core all 0.18+nmu1 [23.8 kB] Get:629 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libduktape207 armhf 2.7.0-2 [115 kB] Get:630 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf policykit-1 armhf 122-3 [11.8 kB] Get:631 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpolkit-agent-1-0 armhf 122-3 [22.1 kB] Get:632 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpolkit-gobject-1-0 armhf 122-3 [38.1 kB] Get:633 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf polkitd armhf 122-3 [108 kB] Get:634 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkexec armhf 122-3 [22.2 kB] Get:635 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcdt5 armhf 2.42.2-7+b2 [37.3 kB] Get:636 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcgraph6 armhf 2.42.2-7+b2 [56.0 kB] Get:637 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libabsl20220623 armhf 20220623.1-1+rpi1 [361 kB] Get:638 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgav1-1 armhf 0.18.0-1+rpi1+b1 [285 kB] Get:639 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libyuv0 armhf 0.0~git20230123.b2528b0-1 [82.7 kB] Get:640 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavif15 armhf 0.11.1-1 [84.1 kB] Get:641 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavif-dev armhf 0.11.1-1 [41.7 kB] Get:642 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libde265-0 armhf 1.0.11-1+rpi1 [137 kB] Get:643 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libheif1 armhf 1.15.1-1 [178 kB] Get:644 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaom-dev armhf 3.6.0-1 [1528 kB] Get:645 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdav1d-dev armhf 1.0.0-2+rpi1 [25.7 kB] Get:646 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libde265-dev armhf 1.0.11-1+rpi1 [13.8 kB] Get:647 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libx265-dev armhf 3.5-2 [571 kB] Get:648 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libheif-dev armhf 1.15.1-1 [33.5 kB] Get:649 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjpeg-dev armhf 1:2.1.5-2 [71.8 kB] Get:650 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzstd-dev armhf 1.5.4+dfsg2-5 [297 kB] Get:651 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtiffxx6 armhf 4.5.0-6 [144 kB] Get:652 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblerc-dev armhf 4.0.0+ds-2 [147 kB] Get:653 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtiff-dev armhf 4.5.0-6 [415 kB] Get:654 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvpx-dev armhf 1.12.0-1 [658 kB] Get:655 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgd-dev armhf 2.3.3-9 [237 kB] Get:656 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgd3 armhf 2.3.3-9 [103 kB] Get:657 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgts-0.7-5 armhf 0.7.6+darcs121130-5 [134 kB] Get:658 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpathplan4 armhf 2.42.2-7+b2 [39.5 kB] Get:659 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgvc6 armhf 2.42.2-7+b2 [566 kB] Get:660 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgvpr2 armhf 2.42.2-7+b2 [162 kB] Get:661 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblab-gamut1 armhf 2.42.2-7+b2 [197 kB] Get:662 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf graphviz armhf 2.42.2-7+b2 [479 kB] Get:663 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcdparanoia0 armhf 3.10.2+debian-14 [41.7 kB] Get:664 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvisual-0.4-0 armhf 0.4.0-19 [117 kB] Get:665 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gstreamer1.0-plugins-base armhf 1.22.0-3+deb12u1 [670 kB] Get:666 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgpm2 armhf 1.20.7-10+b2 [35.5 kB] Get:667 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libslang2 armhf 2.3.3-3 [500 kB] Get:668 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaa1 armhf 1.4p5-50 [50.8 kB] Get:669 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcaca0 armhf 0.99.beta20-3 [194 kB] Get:670 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdv4 armhf 1.0.0-15 [65.6 kB] Get:671 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgudev-1.0-0 armhf 237-2 [13.2 kB] Get:672 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libiec61883-0 armhf 1.2.0-6 [28.0 kB] Get:673 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libshout3 armhf 2.4.6-1+b1 [48.5 kB] Get:674 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtag1v5 armhf 1.13-2 [18.7 kB] Get:675 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtag1v5-vanilla armhf 1.13-2 [243 kB] Get:676 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libv4l-0 armhf 1.22.1-5 [105 kB] Get:677 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libv4lconvert0 armhf 1.22.1-5 [133 kB] Get:678 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwavpack1 armhf 5.6.0-1 [72.5 kB] Get:679 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup-gnome2.4-1 armhf 2.74.3-1 [10.6 kB] Get:680 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup2.4-common all 2.74.3-1 [56.0 kB] Get:681 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup2.4-1 armhf 2.74.3-1 [230 kB] Err:681 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup2.4-1 armhf 2.74.3-1 Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] Get:682 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup-3.0-common all 3.2.2-2 [60.8 kB] Get:683 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup-3.0-0 armhf 3.2.2-2 [233 kB] Get:684 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gstreamer1.0-plugins-good armhf 1.22.0-5+deb12u1 [1988 kB] Get:685 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-setuptools all 66.1.1-1 [521 kB] Get:686 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-pkg-resources all 66.1.1-1 [296 kB] Get:687 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-six all 1.16.0-4 [17.5 kB] Get:688 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gyp all 0.1+20220404git9ecf45e-2 [237 kB] Get:689 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf hdparm armhf 9.65+ds-1 [97.7 kB] Get:690 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnl-route-3-200 armhf 3.7.0-0.2 [152 kB] Get:691 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnl-genl-3-200 armhf 3.7.0-0.2 [19.7 kB] Get:692 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnl-3-200 armhf 3.7.0-0.2 [55.0 kB] Get:693 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf htop armhf 3.2.2-2 [129 kB] Get:694 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf hunspell-en-us all 1:2020.12.07-2 [269 kB] Get:695 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libi2c0 armhf 4.3-2+b2 [9156 B] Get:696 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf i2c-tools armhf 4.3-2+b2 [77.6 kB] Get:697 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf intltool-debian all 0.35.0+20060710.6 [22.9 kB] Get:698 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iw armhf 5.19-1 [85.5 kB] Get:699 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsuitesparseconfig5 armhf 1:5.12.0+dfsg-2 [23.6 kB] Get:700 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libamd2 armhf 1:5.12.0+dfsg-2 [30.2 kB] Get:701 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpspell-dev armhf 0.60.8-4 [31.2 kB] Get:702 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaspell-dev armhf 0.60.8-4 [34.7 kB] Get:703 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaspell15 armhf 0.60.8-4 [295 kB] Get:704 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libass9 armhf 1:0.17.1-1 [85.6 kB] Get:705 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatk1.0-data all 2.38.0-1 [150 kB] Get:706 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libopenblas0-pthread armhf 0.3.21+ds-4+rpi1 [2159 kB] Get:707 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblapack3 armhf 3.11.0-2 [1624 kB] Get:708 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libatlas3-base armhf 3.10.3-13+rpi1 [2356 kB] Get:709 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libblas3 armhf 3.11.0-2 [100.0 kB] Get:710 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libudfread0 armhf 1.1.2-1 [14.6 kB] Get:711 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbluray2 armhf 1:1.3.4-1 [120 kB] Get:712 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libchromaprint1 armhf 1.5.1-2+b2 [33.7 kB] Get:713 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgme0 armhf 0.6.3-6 [105 kB] Get:714 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenmpt0 armhf 0.6.9-1 [597 kB] Get:715 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librabbitmq4 armhf 0.11.0-1+b1 [38.3 kB] Get:716 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcjson1 armhf 1.7.15-1 [20.9 kB] Get:717 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmbedcrypto7 armhf 2.28.3-1 [241 kB] Get:718 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librist4 armhf 0.2.7+dfsg-1 [67.1 kB] Get:719 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsrt1.5-gnutls armhf 1.5.1-1 [263 kB] Get:720 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libssh-gcrypt-4 armhf 0.10.5-2 [185 kB] Get:721 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libzmq5 armhf 4.3.4-6 [226 kB] Get:722 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavformat59 armhf 7:5.1.3-1 [1011 kB] Get:723 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libayatana-ido3-0.4-0 armhf 0.9.3-1 [46.8 kB] Get:724 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libayatana-indicator3-7 armhf 0.9.3-1 [28.3 kB] Get:725 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbabl-0.1-0 armhf 1:0.1.98-1+rpi1 [264 kB] Get:726 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbs2b0 armhf 3.1.0+dfsg-7 [10.7 kB] Get:727 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libc-ares2 armhf 1.18.1-3 [95.4 kB] Get:728 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-client2007e-dev armhf 8:2007f~dfsg-7+b1 [476 kB] Get:729 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mlock armhf 8:2007f~dfsg-7+b1 [35.9 kB] Get:730 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-client2007e armhf 8:2007f~dfsg-7+b1 [551 kB] Get:731 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcamd2 armhf 1:5.12.0+dfsg-2 [30.7 kB] Get:732 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libccolamd2 armhf 1:5.12.0+dfsg-2 [31.7 kB] Get:733 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcddb2 armhf 1.3.2-7 [44.0 kB] Get:734 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcolamd2 armhf 1:5.12.0+dfsg-2 [28.3 kB] Get:735 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcholmod3 armhf 1:5.12.0+dfsg-2 [212 kB] Get:737 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdbus-glib-1-2 armhf 0.112-3 [48.2 kB] Get:738 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libusb-1.0-0 armhf 2:1.0.26-1 [55.8 kB] Get:739 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdc1394-25 armhf 2.2.6-4 [102 kB] Get:740 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdecor-0-0 armhf 0.1.1-2 [12.0 kB] Get:741 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libisc-export1105 armhf 1:9.11.19+dfsg-2.1+b1 [376 kB] Get:742 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdns-export1110 armhf 1:9.11.19+dfsg-2.1+b1 [893 kB] Get:743 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdouble-conversion3 armhf 3.2.1-1 [38.8 kB] Get:744 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdvdread8 armhf 6.1.3-1 [87.4 kB] Get:745 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdvdnav4 armhf 6.1.1-1 [43.3 kB] Get:746 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libebml5 armhf 1.4.4-1 [41.0 kB] Get:747 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libenchant-2-dev armhf 2.3.3-2 [18.7 kB] Get:748 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libhunspell-1.7-0 armhf 1.7.1-1+b2 [167 kB] Get:749 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libenchant-2-2 armhf 2.3.3-2 [39.7 kB] Get:750 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libevdev2 armhf 1.13.0+dfsg-1+rpi1 [27.9 kB] Get:751 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-dev armhf 2.1.12-stable-8 [274 kB] Get:752 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-pthreads-2.1-7 armhf 2.1.12-stable-8 [53.2 kB] Get:753 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-openssl-2.1-7 armhf 2.1.12-stable-8 [58.3 kB] Get:754 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-extra-2.1-7 armhf 2.1.12-stable-8 [97.3 kB] Get:755 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-core-2.1-7 armhf 2.1.12-stable-8 [119 kB] Get:756 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-2.1-7 armhf 2.1.12-stable-8 [160 kB] Get:757 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libexif12 armhf 0.6.24-1+b2 [388 kB] Get:758 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexiv2-27 armhf 0.27.6-1 [1418 kB] Get:759 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexporter-tiny-perl all 1.006000-1 [38.6 kB] Get:760 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfaad2 armhf 2.10.1-1 [142 kB] Get:761 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfann-dev armhf 2.2.0+ds-8 [85.6 kB] Get:762 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfann2 armhf 2.2.0+ds-8 [57.1 kB] Get:763 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfftw3-double3 armhf 3.3.10-1 [325 kB] Get:764 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfile-readbackwards-perl all 1.06-2 [11.6 kB] Get:765 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libflite1 armhf 2.2-5 [12.4 MB] Get:766 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcr-ui-3-1 armhf 3.41.1-1 [120 kB] Get:767 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcr-base-3-1 armhf 3.41.1-1 [175 kB] Get:768 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgck-1-0 armhf 3.41.1-1 [76.9 kB] Get:769 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-glib-1.0-common all 1.6.6-1 [57.1 kB] Get:770 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-glib-1.0-0 armhf 1.6.6-1 [57.1 kB] Get:771 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libimath-3-1-29 armhf 3.1.6-1+b1 [37.4 kB] Get:772 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenexr-3-1-30 armhf 3.1.5-5 [814 kB] Get:773 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnspr4 armhf 2:4.35-1 [90.9 kB] Get:774 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnss3 armhf 2:3.87.1-1 [1090 kB] Get:775 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpoppler126 armhf 22.12.0-2 [1682 kB] Get:776 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpoppler-glib8 armhf 22.12.0-2 [108 kB] Get:777 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libraw20 armhf 0.20.2-2.1 [323 kB] Get:778 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libswscale6 armhf 7:5.1.3-1 [170 kB] Get:779 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libumfpack5 armhf 1:5.12.0+dfsg-2 [128 kB] Get:780 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgegl-common all 1:0.4.42-2 [745 kB] Get:781 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgegl-0.4-0 armhf 1:0.4.42-2 [1501 kB] Get:782 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgexiv2-2 armhf 0.14.0-1 [68.0 kB] Get:783 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgif7 armhf 5.2.1-2.5 [44.7 kB] Get:784 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgirepository-1.0-1 armhf 1.74.0-3+b1 [87.5 kB] Get:785 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopengl0 armhf 1.6.0-1 [31.6 kB] Get:786 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglu1-mesa armhf 9.0.2-1.1 [133 kB] Get:787 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgspell-1-common all 1.12.0-1 [32.9 kB] Get:788 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgspell-1-2 armhf 1.12.0-1+b1 [44.7 kB] Get:789 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgssdp-1.6-0 armhf 1.6.2-2 [34.1 kB] Get:790 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-gl1.0-0 armhf 1.22.0-3+deb12u1 [219 kB] Get:791 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgupnp-1.6-0 armhf 1.6.3-1 [74.9 kB] Get:792 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgupnp-igd-1.0-4 armhf 1.2.0-3 [12.3 kB] Get:793 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnice10 armhf 0.1.21-1 [130 kB] Get:794 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvulkan1 armhf 1.3.239.0-1 [99.6 kB] Get:795 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-plugins-bad1.0-0 armhf 1.22.0-4+deb12u1 [698 kB] Get:796 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtksourceview-4-common all 4.8.4-4 [532 kB] Get:797 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtksourceview-4-0 armhf 4.8.4-4 [176 kB] Get:798 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libharfbuzz-icu0 armhf 6.0.0+dfsg-3 [1556 kB] Get:799 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libilmbase25 armhf 2.5.7-2 [196 kB] Get:800 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libplist3 armhf 2.2.0-6+b2 [31.5 kB] Get:801 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libimobiledevice6 armhf 1.3.0-6+b3 [62.4 kB] Get:802 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libiw30 armhf 30~pre9-14 [14.2 kB] Get:803 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xdg-dbus-proxy armhf 0.1.4-3 [20.3 kB] Get:804 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmanette-0.2-0 armhf 0.2.6-3 [26.4 kB] Get:805 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsecret-common all 0.20.5-3+rpi1 [28.5 kB] Get:806 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsecret-1-0 armhf 0.20.5-3+rpi1 [96.8 kB] Get:807 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwoff1 armhf 1.0.2-2 [35.9 kB] Get:808 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwpe-1.0-1 armhf 1.14.0-1 [17.1 kB] Get:809 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwpebackend-fdo-1.0-1 armhf 1.14.2-1 [27.0 kB] Get:810 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxslt1-dev armhf 1.1.35-1 [358 kB] Get:811 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxslt1.1 armhf 1.1.35-1 [221 kB] Get:812 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwebkit2gtk-4.0-37 armhf 2.40.3-2~deb12u2+rpi1 [15.6 MB] Get:813 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjavascriptcoregtk-4.0-18 armhf 2.40.3-2~deb12u2+rpi1 [2630 kB] Get:814 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjavascriptcoregtk-4.1-0 armhf 2.40.3-2~deb12u2+rpi1 [2630 kB] Get:815 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjbig2dec0 armhf 0.19-3+b2 [58.6 kB] Get:816 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-events all 3.3.0+~3.0.0-3 [11.3 kB] Get:817 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-inherits all 2.0.4-6 [3548 B] Get:818 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-is-typedarray all 1.0.0-4 [3816 B] Get:819 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [326 kB] Get:820 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-psl all 1.8.0+ds-9 [66.2 kB] Get:821 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [116 kB] Get:822 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-sphinxdoc all 5.3.0-4 [130 kB] Get:823 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-typedarray all 1.0.0-4 [3292 B] Get:824 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-typedarray-to-buffer all 4.0.0-2 [3380 B] Get:825 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-typedarray-to-buffer all 4.0.0-2 [4668 B] Get:826 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblightdm-gobject-1-0 armhf 1.26.0-8 [57.0 kB] Get:827 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libserd-0-0 armhf 0.30.16-1 [40.7 kB] Get:828 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsord-0-0 armhf 0.16.14+git221008-1 [17.8 kB] Get:829 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsratom-0-0 armhf 0.6.14-1 [15.7 kB] Get:830 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblilv-0-0 armhf 0.24.14-1 [42.1 kB] Get:831 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblirc-client0 armhf 0.10.1-7.2 [44.9 kB] Get:832 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblua5.2-0 armhf 5.2.4-3 [85.7 kB] Get:833 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmad0 armhf 0.15.1b-10.1 [66.2 kB] Get:834 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmatroska7 armhf 1.7.1-1 [89.7 kB] Get:835 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmcrypt-dev armhf 2.5.8-7 [86.2 kB] Get:836 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmcrypt4 armhf 2.5.8-7 [63.0 kB] Get:837 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmd4c0 armhf 0.4.8-1 [39.4 kB] Get:838 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmhash-dev armhf 0.9.9.9-9+b2 [114 kB] Get:839 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmhash2 armhf 0.9.9.9-9+b2 [101 kB] Get:840 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmousepad0 armhf 0.5.10-2 [303 kB] Get:841 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmpdec3 armhf 2.5.1-2+rpi1 [73.5 kB] Get:842 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmtp-common all 1.1.20-1 [58.6 kB] Get:843 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmtp9 armhf 1.1.20-1 [195 kB] Get:844 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmysofa1 armhf 1.3.1~dfsg0-1 [1154 kB] Get:845 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpci-dev armhf 1:3.9.0-4 [63.9 kB] Get:846 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf pci.ids all 0.0~2023.04.11-1 [243 kB] Get:847 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpci3 armhf 1:3.9.0-4 [61.3 kB] Get:848 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsnmp-base all 5.9.3+dfsg-2 [1753 kB] Get:849 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsnmp-dev armhf 5.9.3+dfsg-2 [201 kB] Get:850 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnetsnmptrapd40 armhf 5.9.3+dfsg-2 [20.0 kB] Get:851 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsnmp40 armhf 5.9.3+dfsg-2 [2432 kB] Get:852 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnewt0.52 armhf 0.52.23-1+b1 [51.0 kB] Get:853 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnotify4 armhf 0.8.1-1 [27.5 kB] Get:854 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnss-myhostname armhf 252.12-1~deb12u1+rpi1 [76.5 kB] Get:855 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libobt2v5 armhf 3.6.1-10 [65.1 kB] Get:856 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libobrender32v5 armhf 3.6.1-10 [71.9 kB] Get:857 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf unixodbc-dev armhf 2.3.11-2+deb12u1 [200 kB] Get:858 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbc1 armhf 2.3.11-2+deb12u1 [5008 B] Get:859 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbc2 armhf 2.3.11-2+deb12u1 [123 kB] Get:860 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbccr2 armhf 2.3.11-2+deb12u1 [14.7 kB] Get:861 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf odbcinst armhf 2.3.11-2+deb12u1 [11.5 kB] Get:862 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf odbcinst1debian2 armhf 2.3.11-2+deb12u1 [5112 B] Get:863 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf unixodbc-common all 2.3.11-2+deb12u1 [8172 B] Get:864 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbcinst2 armhf 2.3.11-2+deb12u1 [27.6 kB] Get:865 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libonig-dev armhf 6.9.8-1 [96.7 kB] Get:866 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libonig5 armhf 6.9.8-1 [166 kB] Get:867 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenmpt-modplug1 armhf 0.8.9.0-openmpt1-2 [20.2 kB] Get:868 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libout123-0 armhf 1.31.2-1 [24.2 kB] Get:869 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpaper1 armhf 1.1.29 [11.9 kB] Get:870 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcap0.8 armhf 1.10.3-1 [140 kB] Get:871 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcsclite1 armhf 1.9.9-2 [47.0 kB] Get:872 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpeas-common all 1.34.0-1 [54.3 kB] Get:873 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-minimal armhf 3.11.2-6 [797 kB] Get:874 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-stdlib armhf 3.11.2-6 [1668 kB] Err:874 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-stdlib armhf 3.11.2-6 Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] Get:875 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11 armhf 3.11.2-6 [1667 kB] Get:876 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpeas-1.0-0 armhf 1.34.0-1+b1 [52.2 kB] Get:877 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsphinxbase3 armhf 0.8+5prealpha+1-16 [97.7 kB] Get:878 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpocketsphinx3 armhf 0.8+5prealpha+1-15 [106 kB] Get:879 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf portaudio19-dev armhf 19.6.0-1.2 [98.3 kB] Get:880 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libportaudiocpp0 armhf 19.6.0-1.2 [17.0 kB] Get:881 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libportaudio2 armhf 19.6.0-1.2 [57.3 kB] Get:882 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpq-dev armhf 15.3-0+deb12u1 [129 kB] Get:883 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpq5 armhf 15.3-0+deb12u1 [166 kB] Get:884 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpugixml1v5 armhf 1.13-0.2 [71.8 kB] Get:885 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqdbm-dev armhf 1.8.78-12 [135 kB] Get:886 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqdbm14 armhf 1.8.78-12 [74.3 kB] Get:887 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqt5x11extras5 armhf 5.15.8-2 [9576 B] Get:888 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5dbus5 armhf 5.15.8+dfsg-11+rpi1 [182 kB] Get:889 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5network5 armhf 5.15.8+dfsg-11+rpi1 [571 kB] Get:890 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-image0 armhf 0.4.0-2 [21.9 kB] Get:891 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-shape0 armhf 1.15-1 [106 kB] Get:892 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xinerama0 armhf 1.15-1 [105 kB] Get:893 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xinput0 armhf 1.15-1 [127 kB] Get:894 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5gui5 armhf 5.15.8+dfsg-11+rpi1 [2533 kB] Get:895 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5widgets5 armhf 5.15.8+dfsg-11+rpi1 [2037 kB] Get:896 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqt5svg5 armhf 5.15.8-3 [113 kB] Get:897 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5core5a armhf 5.15.8+dfsg-11+rpi1 [1500 kB] Get:898 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librubberband2 armhf 3.1.2+dfsg0-1 [110 kB] Get:899 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-rubygems all 3.3.15-2 [293 kB] Get:900 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby3.1 armhf 3.1.2-7 [663 kB] Get:901 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby armhf 1:3.1 [5868 B] Get:902 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rake all 13.0.6-3 [83.9 kB] Get:903 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-net-telnet all 0.2.0-1 [13.1 kB] Get:904 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-webrick all 1.8.1-1 [51.4 kB] Get:905 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-xmlrpc all 0.3.2-2 [24.4 kB] Get:906 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf ruby-sdbm armhf 1.0.0-5+rpi1 [15.9 kB] Get:907 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libruby3.1 armhf 3.1.2-7 [5011 kB] Get:909 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsdl1.2debian armhf 1.2.15+dfsg2-8 [164 kB] Get:910 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsdl-image1.2 armhf 1.2.12-13+b2 [28.9 kB] Get:911 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsdl2-2.0-0 armhf 2.26.5+dfsg-1 [524 kB] Get:912 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsigsegv2 armhf 2.14-1 [36.6 kB] Get:913 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsndio7.0 armhf 1.9.0-0.3 [24.7 kB] Get:914 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libss2 armhf 1.47.0-2 [22.7 kB] Get:915 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsyn123-0 armhf 1.31.2-1 [71.8 kB] Get:916 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtool all 2.4.7-5 [517 kB] Get:917 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf upower armhf 0.99.20-2 [75.6 kB] Get:918 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libupower-glib3 armhf 0.99.20-2 [29.8 kB] Get:919 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libvte-2.91-0 armhf 0.70.6-1~deb12u1 [765 kB] Get:920 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libvte-2.91-common armhf 0.70.6-1~deb12u1 [641 kB] Get:921 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwebkit2gtk-4.1-0 armhf 2.40.3-2~deb12u2+rpi1 [15.6 MB] Get:922 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwmf0.2-7 armhf 0.2.12-5.1 [25.8 kB] Get:923 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwmflite-0.2-7 armhf 0.2.12-5.1 [67.9 kB] Get:924 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwmf-0.2-7 armhf 0.2.12-5.1 [101 kB] Get:925 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxbase3.0-0v5 armhf 3.0.5.1+dfsg-5+b1 [858 kB] Get:926 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxgtk3.0-gtk3-0v5 armhf 3.0.5.1+dfsg-5+b1 [3542 kB] Get:927 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xv0 armhf 1.15-1 [109 kB] Get:928 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfce4util-common all 4.18.1-2 [66.0 kB] Get:929 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfce4util7 armhf 4.18.1-2 [32.4 kB] Get:930 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xfconf armhf 4.18.0-2 [119 kB] Get:931 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfconf-0-3 armhf 4.18.0-2 [37.5 kB] Get:932 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxmltok1-dev armhf 1.2-4+b2 [56.0 kB] Get:933 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxmltok1 armhf 1.2-4+b2 [39.5 kB] Get:934 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmuu1 armhf 2:1.1.3-3 [23.3 kB] Get:935 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxres1 armhf 2:1.2.1-1 [18.7 kB] Get:936 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxv1 armhf 2:1.0.11-1.1 [23.3 kB] Get:937 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxxf86dga1 armhf 2:1.1.5-1 [20.9 kB] Get:938 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzip-dev armhf 1.7.3-1+b1 [163 kB] Get:939 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzip4 armhf 1.7.3-1+b1 [49.8 kB] Get:940 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lightdm armhf 1.26.0-8 [151 kB] Get:941 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lsb-release all 12.0-1 [6416 B] Get:942 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lua-lpeg armhf 1.0.2-2 [32.3 kB] Get:943 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf x11-xserver-utils armhf 7.7+9 [151 kB] Get:944 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lxrandr armhf 0.3.2-1.1 [51.4 kB] Get:945 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lxterminal armhf 0.4.0-2 [91.4 kB] Get:946 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mailcap all 3.70+nmu1 [32.0 kB] Get:947 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mousepad armhf 0.5.10-2 [519 kB] Get:948 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mpg123 armhf 1.31.2-1 [186 kB] Get:949 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf neofetch all 7.1.0-4 [81.8 kB] Get:950 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf nmap armhf 7.93+dfsg1-1 [1768 kB] Get:951 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf nmap-common all 7.93+dfsg1-1 [4148 kB] Get:952 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-abbrev all 1.1.1+~1.1.2-1 [5692 B] Get:953 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-debug all 4.3.4+~cs4.1.7-1 [18.1 kB] Get:954 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-agent-base all 6.0.2+~cs5.4.2-2 [17.3 kB] Get:955 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansi all 0.3.1-2 [9728 B] Get:956 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansi-regex all 5.0.1-1 [4912 B] Get:957 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-color-name all 1.1.4+~1.1.1-2 [5920 B] Get:958 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-color-convert all 2.0.1+~cs2.0.0-2 [13.1 kB] Get:959 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansi-styles all 6.2.1-2 [8640 B] Get:960 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansistyles all 0.1.3-5 [4548 B] Get:961 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-aproba all 2.0.0-3 [5844 B] Get:962 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-delegates all 1.0.0-3 [4528 B] Get:963 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-inherits all 2.0.4-6 [4548 B] Get:964 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-util-is all 1.0.3-1 [4072 B] Get:965 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-safe-buffer all 5.2.1+~cs2.1.2-3 [15.5 kB] Get:966 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-string-decoder all 1.3.0-6 [7180 B] Get:967 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-process-nextick-args all 2.0.1-3 [3816 B] Get:968 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-util-deprecate all 1.0.2-3 [4436 B] Get:969 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-isarray all 2.0.5-4 [4040 B] Get:970 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-readable-stream all 3.6.0+~cs3.0.0-4 [32.0 kB] Get:971 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-are-we-there-yet all 3.0.1+~1.1.0-1 [10.0 kB] Get:972 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-asap all 2.0.6+~2.0.0-1 [15.4 kB] Get:973 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-asn1 all 0.2.6+~0.2.0-2 [8760 B] Get:975 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-aws-sign2 all 0.7.1-4 [4396 B] Get:976 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-aws4 all 1.11.0-2 [10.4 kB] Get:977 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-balanced-match all 2.0.0-1 [4872 B] Get:978 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-brace-expansion all 2.0.1-2 [7320 B] Get:979 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-validate-npm-package-name all 5.0.0+~4.0.0-1 [7444 B] Get:980 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-builtins all 5.0.1-1 [4072 B] Get:981 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-caseless all 0.12.1-2 [3976 B] Get:982 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chownr all 2.0.0-2 [4424 B] Get:983 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-clone all 2.1.2-4 [8280 B] Get:984 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-colors all 1.4.0-4 [11.9 kB] Get:985 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-defaults all 1.0.4+~1.0.3-1 [4400 B] Get:986 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wcwidth.js all 1.0.2-2 [7088 B] Get:987 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-columnify all 1.6.0+~1.5.1-1 [12.4 kB] Get:988 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-delayed-stream all 1.0.0-5 [5436 B] Get:989 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-combined-stream all 1.0.8+~1.0.3-1 [7316 B] Get:990 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-concat-map all 0.0.2+~0.0.1-1 [7148 B] Get:991 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-console-control-strings all 1.1.0-3 [5564 B] Get:992 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-graceful-fs all 4.2.10-1 [14.4 kB] Get:993 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-iferr all 1.0.2+~1.0.2-1 [4588 B] Get:994 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-imurmurhash all 0.1.4+dfsg+~0.1.1-2 [8412 B] Get:995 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-fs-write-stream-atomic all 1.0.10-6 [5316 B] Get:996 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-run-queue all 2.0.0-3 [5156 B] Get:997 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-copy-concurrently all 1.0.5-9 [7100 B] Get:998 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-dashdash all 2.0.0-4 [30.3 kB] Get:999 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-depd all 2.0.0-2 [11.2 kB] Get:1000 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jsbn all 1.1.0+~1.2.29-1 [15.6 kB] Get:1001 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ecc-jsbn all 0.2.0-4 [9520 B] Get:1002 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-iconv-lite all 0.6.3-3 [115 kB] Get:1003 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-encoding all 0.1.13-2 [4400 B] Get:1004 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-err-code all 2.0.3+dfsg-3 [4884 B] Get:1005 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-escape-string-regexp all 4.0.0-2 [4296 B] Get:1006 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-events all 3.3.0+~3.0.0-3 [5888 B] Get:1007 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-extend all 3.0.2+~3.0.1-3 [7816 B] Get:1008 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-extsprintf all 1.4.1+~1.4.1-2 [6464 B] Get:1009 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-time-stamp all 2.2.0-2 [6016 B] Get:1010 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fancy-log all 1.3.3+~cs1.3.1-2 [7940 B] Get:1011 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-fast-deep-equal all 3.1.3-3 [5768 B] Get:1012 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-forever-agent all 0.6.1+~0.6.1-2 [5616 B] Get:1013 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-mime-types all 2.1.35-1 [9456 B] Get:1014 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-form-data all 4.0.0-1 [13.2 kB] Get:1015 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-fs.realpath all 1.0.0-3 [6172 B] Get:1016 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-function-bind all 1.1.1+repacked+~1.0.3-2 [5252 B] Get:1017 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-has-unicode all 2.0.1-5 [3992 B] Get:1018 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-signal-exit all 3.0.7+~3.0.1-1 [7600 B] Get:1019 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-slice-ansi all 5.0.0+~cs9.0.0-5 [8788 B] Get:1020 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-string-width all 4.2.3+~cs13.2.3-1 [10.7 kB] Get:1021 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wide-align all 1.1.3-4 [4244 B] Get:1022 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-gauge all 4.0.4-1 [19.6 kB] Get:1023 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wrappy all 1.0.2-3 [3776 B] Get:1024 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-once all 1.4.0-7 [4492 B] Get:1025 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-inflight all 1.0.6-2 [3952 B] Get:1026 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-minimatch all 5.1.1+~5.1.2-1 [18.6 kB] Get:1027 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-glob all 8.0.3+~cs8.4.15-1 [133 kB] Get:1028 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-har-schema all 2.0.0-5 [5952 B] Get:1029 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-har-validator all 5.1.5-3 [7328 B] Get:1030 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-has-flag all 4.0.0-3 [4304 B] Get:1031 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-schema all 0.4.0+~7.0.11-1 [13.1 kB] Get:1032 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsprim all 2.0.1-1 [13.5 kB] Get:1033 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-http-signature all 1.3.6-2 [13.2 kB] Get:1034 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-https-proxy-agent all 5.0.1+~cs8.0.0-3 [16.1 kB] Get:1035 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-indent-string all 4.0.0-2 [4144 B] Get:1036 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ini all 3.0.1-2 [6928 B] Get:1037 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ip all 2.0.0+~1.1.0-1 [8128 B] Get:1038 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ip-regex all 4.3.0+~4.1.1-1 [5188 B] Get:1039 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-isexe all 2.0.0+~2.0.1-5 [6084 B] Get:1040 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-isstream all 0.1.2+dfsg+~0.1.0-1 [4648 B] Get:1041 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-parse-better-errors all 1.0.2+~cs3.3.1-2 [7800 B] Get:1042 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-json-schema-traverse all 1.0.0-3 [6308 B] Get:1043 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsonify all 0.0.1-1 [8704 B] Get:1044 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-stable-stringify all 1.0.2+~cs5.2.34-1 [11.3 kB] Get:1045 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-stringify-safe all 5.0.1+repack-6 [21.0 kB] Get:1046 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsonparse all 1.3.1-10 [8020 B] Get:1047 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-leven all 4.0.0+~cs1.1.1-2 [6224 B] Get:1048 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-lockfile all 1.0.4+~1.0.2-1 [8948 B] Get:1049 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-yallist all 4.0.0+~4.0.1-1 [8172 B] Get:1050 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-minipass all 3.3.6+~cs9.4.19-1 [43.0 kB] Get:1051 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-move-concurrently all 1.0.1-5 [5152 B] Get:1052 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-mute-stream all 0.0.8+~0.0.1-3 [6232 B] Get:1053 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-resolve all 1.22.1+~cs5.31.10-1 [28.1 kB] Get:1054 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-spdx-license-ids all 3.0.12-1 [6276 B] Get:1055 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-spdx-exceptions all 2.3.0-2 [3992 B] Get:1056 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-spdx-expression-parse all 3.0.1+~3.0.1-1 [7532 B] Get:1057 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-spdx-correct all 3.1.1-2 [5464 B] Get:1058 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-validate-npm-package-license all 3.0.4-2 [4280 B] Get:1059 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-normalize-package-data all 4.0.1+~2.4.1-1 [13.6 kB] Get:1060 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-slash all 4.0.0-3 [4292 B] Get:1061 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-read-package-json all 5.0.2+~2.0.0-1 [12.0 kB] Get:1062 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-npm-bundled all 2.0.1-2 [6408 B] Get:1063 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-set-blocking all 2.0.0-2 [4248 B] Get:1064 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-npmlog all 7.0.1+~4.1.4-1 [11.4 kB] Get:1065 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-number-is-nan all 2.0.0-3 [3624 B] Get:1066 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-oauth-sign all 0.9.0-4 [4404 B] Get:1067 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-osenv all 0.1.5+~0.1.1-1 [5884 B] Get:1068 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-p-map all 4.0.0+~3.1.0+~3.0.1-1 [7912 B] Get:1069 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-is-absolute all 2.0.0-2 [4068 B] Get:1070 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-performance-now all 2.1.0+debian-4 [5296 B] Get:1071 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-promise-inflight all 1.0.1+~1.0.0-1 [4864 B] Get:1072 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-retry all 0.13.1+~0.12.1-1 [11.2 kB] Get:1073 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-promise-retry all 2.0.1-4 [5016 B] Get:1074 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-read all 1.0.7-5 [5388 B] Get:1075 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-promzard all 0.3.0-2 [6788 B] Get:1076 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-psl all 1.8.0+ds-9 [38.1 kB] Get:1077 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ssri all 9.0.1-2 [18.0 kB] Get:1078 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-supports-color all 8.1.1+~8.1.1-1 [6920 B] Get:1079 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-tar all 6.1.13+~cs7.0.5-1 [51.1 kB] Get:1080 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-text-table all 0.2.0-4 [4736 B] Get:1081 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-tunnel-agent all 0.6.1-4 [5100 B] Get:1082 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-unique-filename all 1.1.1+ds-2 [4032 B] Get:1083 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-uri-js all 4.4.0+dfsg-8 [47.3 kB] Get:1084 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-uuid all 8.3.2+~8.3.3-3 [44.0 kB] Get:1085 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-write-file-atomic all 4.0.2+~4.0.0-1 [9284 B] Get:1086 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openbox armhf 3.6.1-10 [290 kB] Get:1087 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf psmisc armhf 23.6-1 [253 kB] Get:1088 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-colorzero all 2.0-2 [22.3 kB] Get:1089 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-dnspython all 2.3.0-1 [152 kB] Get:1090 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-gpiozero armhf 1.6.2-1+b4 [105 kB] Get:1091 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf re2c armhf 3.0-2 [406 kB] Get:1092 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rng-tools5 armhf 5-4.1 [19.2 kB] Get:1093 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-minitest all 5.17.0-1 [61.4 kB] Get:1094 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-power-assert all 2.0.3-1 [11.8 kB] Get:1095 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-test-unit all 3.5.7-1 [78.2 kB] Get:1096 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf swig4.0 armhf 4.1.0-0.2 [1220 kB] Get:1097 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf swig all 4.1.0-0.2 [321 kB] Get:1098 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf systemtap-sdt-dev armhf 4.8-2 [19.4 kB] Get:1099 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf tdb-tools armhf 1.4.8-2 [26.0 kB] Get:1100 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-scraping-server armhf 1.12.0+dfsg-8 [185 kB] Get:1101 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xauth armhf 1:1.1.2-1 [32.4 kB] Get:1102 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-standalone-server armhf 1.12.0+dfsg-8 [828 kB] Get:1103 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-common armhf 1.12.0+dfsg-8 [89.6 kB] Get:1104 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf tmux armhf 3.3a-3 [362 kB] Get:1105 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf unzip armhf 6.0-28 [147 kB] Get:1106 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf usbutils armhf 1:014-1 [67.0 kB] Get:1107 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf vorbis-tools armhf 1.4.2-1+b1 [168 kB] Get:1108 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf whiptail armhf 0.52.23-1+b1 [23.1 kB] Get:1109 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf wireless-regdb all 2022.06.06-1 [13.1 kB] Get:1110 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf wireless-tools armhf 30~pre9-14 [102 kB] Get:1111 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf wpasupplicant armhf 2:2.10-12 [1121 kB] Get:1112 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xarchiver armhf 1:0.5.4.20-2 [453 kB] Get:1113 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf xfonts-base all 1:1.0.5+nmu1 [5895 kB] Get:1114 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xfonts-encodings all 1:1.0.4-2.2 [577 kB] Get:1115 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zenity-common all 3.44.0-1 [2974 kB] Get:1116 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zenity armhf 3.44.0-1 [56.3 kB] Get:1117 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zsh armhf 5.9-4 [767 kB] Get:1118 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zsh-common all 5.9-4 [4147 kB] Get:1119 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmlrpc-epi-dev armhf 0.54.2-1.3 [40.3 kB] Get:1120 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmlrpc-epi0 armhf 0.54.2-1.3 [28.8 kB] Fetched 713 MB in 18min 17s (650 kB/s) E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/a/audit/libaudit-common_3.0.9-1_all.deb Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/f/fontconfig/fontconfig-config_2.14.1-4_armhf.deb Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/b/bash-completion/bash-completion_2.11-6_all.deb Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/libs/libsoup2.4/libsoup2.4-1_2.74.3-1_armhf.deb Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/p/python3.11/libpython3.11-stdlib_3.11.2-6_armhf.deb Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing? ``` --------------------------------------------------------------------- [FAILED] dietpi-bookworm-upgrade | Unable to continue, dietpi-bookworm-upgrade will now terminate.

2回目失敗😅

$ sudo bash -c "$(curl -sSf 'https://raw.githubusercontent.com/MichaIng/DietPi/master/.meta/dietpi-bookworm-upgrade')"

[ SUB1 ] DietPi-Backup > Backup
[ SUB2 ] DietPi-Services > stop 
[  OK  ] DietPi-Services | stop : cron
[ INFO ] DietPi-Services | skip : apache2 (masked)
[ INFO ] DietPi-Services | skip : smbd (masked)
[ INFO ] DietPi-Services | skip : nmbd (masked)
[ INFO ] DietPi-Services | skip : proftpd (masked)
[ INFO ] DietPi-Backup | Checking for required APT packages: rsync
[ INFO ] DietPi-Backup | Backup to /mnt/dietpi-backup in progress, please wait...
sending incremental file list
         24,853   0%    0.05kB/s    0:04:28 (xfr#3, to-chk=0/503752)     

sent 14,138,844 bytes  received 36,979 bytes  52,212.98 bytes/sec
total size is 15,241,932,883  speedup is 1,075.21
[  OK  ] DietPi-Backup | touch /mnt/dietpi-backup/data
[ SUB2 ] DietPi-Services > start 
[ INFO ] DietPi-Services | skip : proftpd (masked)
[ INFO ] DietPi-Services | skip : nmbd (masked)
[ INFO ] DietPi-Services | skip : smbd (masked)
[ INFO ] DietPi-Services | skip : apache2 (masked)
[  OK  ] DietPi-Services | start : cron
[  OK  ] DietPi-Backup: Backup | Completed
[  OK  ] DietPi-Backup | Completed
[ INFO ] dietpi-bookworm-upgrade | Upgrading APT packages to latest versions provided by Debian Bullseye
[ SUB1 ] DietPi-Services > stop 
[  OK  ] DietPi-Services | stop : cron
[ INFO ] DietPi-Services | skip : apache2 (masked)
[ INFO ] DietPi-Services | skip : smbd (masked)
[ INFO ] DietPi-Services | skip : nmbd (masked)
[ INFO ] DietPi-Services | skip : proftpd (masked)
[ INFO ] dietpi-bookworm-upgrade | APT update, please wait...
Hit:1 http://raspbian.raspberrypi.org/raspbian bookworm InRelease
Hit:2 https://archive.raspberrypi.org/debian bullseye InRelease
Reading package lists...
W: Skipping acquire of configured file 'non-free-firmware/source/Sources' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'non-free-firmware/binary-armhf/Packages' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'non-free-firmware/Contents-armhf' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
[  OK  ] dietpi-bookworm-upgrade | APT update
[ INFO ] dietpi-bookworm-upgrade | APT dist-upgrade, please wait...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
The following packages were automatically installed and are no longer required:
  distro-info-data g++-10 golang-1.15-go golang-1.15-src libatk1.0-data
  libavresample4 libbpf0 libcbor0 libcob5 libcob5-dev libdecor-0-0
  libdns-export1110 libexporter-tiny-perl libfftw3-double3 libglew2.1
  libglu1-mesa libgs9-common libgtksourceview-3.0-1
  libgtksourceview-3.0-common libice-dev libicu67 libilmbase25
  libimobiledevice6 libisc-export1105 libjs-psl libjsoncpp24 libldap-2.4-2
  liblist-moreutils-perl liblist-moreutils-xs-perl libltdl-dev libmpdec3
  libncurses5-dev libobjc-10-dev libodbc1 libopenexr25 libopengl0 libpcre16-3
  libpcre2-posix2 libpcre3-dev libpcre32-3 libpcrecpp0v5 libperl5.32 libplist3
  libpoppler102 libprocps8 libpython3.8 libpython3.8-minimal
  libpython3.8-stdlib libpython3.9 libpython3.9-dev libpython3.9-minimal
  libpython3.9-stdlib librest-0.7-0 libsdl2-2.0-0 libsepol1 libsigsegv2
  libsm-dev libsoup-gnome2.4-1 libstdc++-10-dev libtiff5 libtiffxx5 liburing1
  libusbmuxd6 libwmf0.2-7 libwxbase3.0-0v5 libwxgtk3.0-gtk3-0v5
  libxfce4util-common libxfce4util7 libxfconf-0-3 libxt-dev node-ansi
  node-ansistyles node-asap node-asn1 node-assert-plus node-asynckit
  node-aws-sign2 node-aws4 node-bcrypt-pbkdf node-caseless
  node-combined-stream node-concat-map node-dashdash node-delayed-stream
  node-ecc-jsbn node-extend node-extsprintf node-forever-agent node-form-data
  node-getpass node-har-schema node-har-validator node-http-signature
  node-isstream node-jsbn node-json-stringify-safe node-jsonstream node-jsprim
  node-leven node-lockfile node-number-is-nan node-oauth-sign node-opener
  node-performance-now node-psl node-puka node-qs node-sshpk node-tunnel-agent
  node-tweetnacl node-verror odbcinst odbcinst1debian2 perl-modules-5.32
  python3.9 python3.9-dev python3.9-minimal ruby2.7 xfconf
Use 'sudo apt autoremove' to remove them.

 
The following packages will be REMOVED:
  gnucobol libfilezilla11 libgs9 libnode72 libsemanage1 libsepol1-dev
  libwacom2 mesa-utils-extra python-pip-whl python3.9-venv
The following NEW packages will be installed:
  at-spi2-common clang-14 cpp-12 cron-daemon-common dbus-bin dbus-daemon
  dbus-session-bus-common dbus-system-bus-common eslint g++-12 gcc-11-base
  gcc-12 gcc-12-base golang-1.19-go golang-1.19-src handlebars libabsl20220623
  libaom-dev libaom3 libasan8 libavcodec59 libavformat59 libavif-dev libavif15
  libavutil57 libbpf1 libcbor0.8 libcjson1 libclang-common-14-dev
  libclang-cpp14 libclang1-14 libcodec2-1.0 libdav1d-dev libdav1d6
  libde265-dev libdecor-0-0 libduktape207 libffi8 libfile-find-rule-perl
  libfilezilla-common libfilezilla34 libflac12 libgav1-1 libgcc-11-dev
  libgcc-12-dev libgs-common libgs10 libgs10-common libgspell-1-2
  libgspell-1-common libgssdp-1.6-0 libgstreamer-plugins-bad1.0-0
  libgtksourceview-4-0 libgtksourceview-4-common libgupnp-1.6-0
  libgupnp-igd-1.0-4 libhashkit2 libheif-dev libhwy1 libicu72 libidn12
  libimath-3-1-29 libjavascriptcoregtk-4.1-0 libjs-async libjs-events
  libjs-prettify libjs-regenerate libjs-source-map libjs-sprintf-js libjs-util
  libjsoncpp25 libjxl0.7 libldap-2.5-0 libldap-dev liblerc-dev liblerc4
  libllvm14 libllvm15 libmbedcrypto7 libmousepad0 libnice10 libnode108
  libnumber-compare-perl libobjc-11-dev libobjc-12-dev libodbc2 libodbccr2
  libodbcinst2 libopenexr-3-1-30 libopengl0 libpcre2-posix3 libperl5.36
  libpkgconf3 libpoppler126 libproc2-0 libpython3.11 libpython3.11-dev
  libpython3.11-minimal libpython3.11-stdlib librav1e0 librist4 libruby
  libruby3.1 libsemanage2 libsepol-dev libsepol2 libsoup-3.0-0
  libsoup-3.0-common libsoup2.4-common libspectre1 libsrt1.5-gnutls libssl3
  libstdc++-11-dev libstdc++-12-dev libsvtav1enc1 libswresample4 libswscale6
  libsystemd-shared libtext-glob-perl libtiff6 libtiffxx6 liburing2 libvpx7
  libwacom9 libwebkit2gtk-4.1-0 libwebp7 libwmf-0.2-7 libwmflite-0.2-7
  libwxbase3.2-1 libwxgtk3.2-1 libx264-164 libx265-199 libx265-dev libxcvt0
  libyuv0 libzstd-dev llvm-11-linker-tools llvm-14-linker-tools mesa-utils-bin
  node-acorn node-ajv-keywords node-ampproject-remapping node-ansi-escapes
  node-anymatch node-argparse node-arrify node-assert node-async
  node-async-each node-babel-helper-define-polyfill-provider
  node-babel-plugin-add-module-exports node-babel-plugin-lodash
  node-babel-plugin-polyfill-corejs2 node-babel-plugin-polyfill-corejs3
  node-babel-plugin-polyfill-regenerator node-babel7 node-babel7-runtime
  node-base64-js node-binary-extensions node-braces node-browserslist
  node-busboy node-camelcase node-caniuse-lite node-chokidar
  node-chrome-trace-event node-ci-info node-cjs-module-lexer node-cli-table
  node-cliui node-clone-deep node-commander node-commondir node-concat-stream
  node-convert-source-map node-core-js node-core-js-compat node-core-js-pure
  node-css-loader node-css-selector-tokenizer node-data-uri-to-buffer
  node-debbundle-es-to-primitive node-decamelize node-decompress-response
  node-deep-equal node-deep-is node-define-properties node-defined node-del
  node-diff node-doctrine node-electron-to-chromium node-end-of-stream
  node-enhanced-resolve node-errno node-error-ex node-es-abstract
  node-es-module-lexer node-es6-error node-escodegen node-eslint-scope
  node-eslint-utils node-eslint-visitor-keys node-espree node-esprima
  node-esquery node-esrecurse node-estraverse node-esutils node-events
  node-fancy-log node-fast-levenshtein node-fetch node-file-entry-cache
  node-fill-range node-find-cache-dir node-find-up node-flat-cache
  node-flatted node-for-in node-for-own node-foreground-child
  node-fs-readdir-recursive node-functional-red-black-tree
  node-get-caller-file node-get-stream node-glob-parent node-globals
  node-globby node-got node-icss-utils node-ieee754 node-ignore node-interpret
  node-is-arrayish node-is-binary-path node-is-buffer node-is-extendable
  node-is-extglob node-is-glob node-is-number node-is-path-cwd
  node-is-path-inside node-is-plain-obj node-is-plain-object node-is-stream
  node-is-windows node-isobject node-istanbul node-jest-debbundle
  node-jest-worker node-js-tokens node-js-yaml node-jsesc node-json-buffer
  node-json5 node-kind-of node-levn node-loader-runner node-locate-path
  node-lodash node-lodash-packages node-lowercase-keys node-make-dir
  node-memfs node-memory-fs node-merge-stream node-micromatch
  node-mimic-response node-minimist node-minipass node-n3 node-negotiator
  node-neo-async node-normalize-path node-npm-run-path node-object-inspect
  node-optimist node-optionator node-p-cancelable node-p-limit node-p-locate
  node-parse-json node-path-dirname node-path-exists node-path-is-inside
  node-path-type node-picocolors node-pify node-pkg-dir node-postcss
  node-postcss-modules-extract-imports node-postcss-modules-values
  node-postcss-value-parser node-prelude-ls node-progress node-prr node-pump
  node-quick-lru node-randombytes node-read-pkg node-readdirp node-rechoir
  node-regenerate node-regenerate-unicode-properties node-regenerator-runtime
  node-regenerator-transform node-regexpp node-regexpu-core node-regjsgen
  node-regjsparser node-repeat-string node-require-directory node-resolve-cwd
  node-resumer node-schema-utils node-serialize-javascript
  node-set-immediate-shim node-shebang-command node-shebang-regex
  node-slice-ansi node-source-list-map node-source-map node-source-map-support
  node-sprintf-js node-strip-bom node-strip-json-comments node-tapable
  node-tape node-terser node-time-stamp node-to-fast-properties
  node-to-regex-range node-tslib node-type-check node-typedarray node-undici
  node-unicode-canonical-property-names-ecmascript
  node-unicode-match-property-ecmascript
  node-unicode-match-property-value-ecmascript
  node-unicode-property-aliases-ecmascript node-util node-v8-compile-cache
  node-v8flags node-watchpack node-webassemblyjs node-webpack-sources
  node-wordwrap node-wrap-ansi node-write node-xtend node-y18n node-yargs
  node-yargs-parser perl-modules-5.36 pkexec pkgconf pkgconf-bin polkitd
  python3-pip-whl python3-setuptools-whl python3-six python3.11 python3.11-dev
  python3.11-minimal python3.11-venv rpcsvc-proto ruby-sdbm ruby-webrick
  ruby3.1 sgml-base terser unixodbc-common usrmerge util-linux-extra webpack
  xml-core
The following packages will be upgraded:
  adduser adwaita-icon-theme alsa-utils apache2 apache2-bin apache2-data
  apache2-dev apache2-utils apt apt-file autoconf autoconf2.64 automake
  autopoint autotools-dev base-files base-passwd bash bash-completion binutils
  binutils-arm-linux-gnueabihf binutils-common bison bsdextrautils bsdutils
  bubblewrap bzip2 ca-certificates clang clang-11 cmake cmake-data
  colorized-logs comerr-dev console-setup console-setup-linux coreutils cpio
  cpp cpp-10 cron curl dash dbus dbus-user-session dbus-x11
  dconf-gsettings-backend dconf-service debconf debhelper debianutils
  default-libmysqlclient-dev device-tree-compiler dh-strip-nondeterminism
  dictionaries-common diffutils dirmngr distro-info-data dmidecode dmsetup
  dpkg dpkg-dev dwz e2fsprogs emacsen-common ethtool expat fake-hwclock
  fakeroot fdisk file filezilla filezilla-common findutils firebird-dev
  firebird3.0-common firebird3.0-common-doc flac flex fontconfig
  fontconfig-config fonts-dejavu-core fonts-urw-base35 freetds-common
  freetds-dev g++ g++-10 galculator gcc gcc-10 gcc-10-base gettext
  gettext-base gimp gimp-data git git-man glib-networking
  glib-networking-common glib-networking-services gnupg gnupg-l10n gnupg-utils
  golang-1.15-go golang-1.15-src golang-go golang-src gparted gparted-common
  gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm gpgv graphviz grep
  groff-base gsettings-desktop-schemas gstreamer1.0-plugins-base
  gstreamer1.0-plugins-good gtk-update-icon-cache gyp gzip hdparm hostname
  htop hunspell-en-us i2c-tools icu-devtools ifupdown init-system-helpers
  initramfs-tools initramfs-tools-core intltool-debian iotop iproute2
  iputils-ping isc-dhcp-client iso-codes iw kbd keyboard-configuration
  klibc-utils kmod krb5-multidev less libaa1 libacl1 libacl1-dev libamd2
  libapparmor-dev libapparmor1 libapr1 libapr1-dev libaprutil1
  libaprutil1-dbd-sqlite3 libaprutil1-dev libaprutil1-ldap libapt-pkg-perl
  libapt-pkg6.0 libarchive13 libargon2-1 libargon2-dev libasan6 libasound2
  libasound2-data libasound2-dev libasound2-plugins libaspell-dev libaspell15
  libass9 libassuan0 libasyncns0 libatk-bridge2.0-0 libatk1.0-0 libatk1.0-data
  libatkmm-1.6-1v5 libatlas3-base libatomic1 libatopology2 libatspi2.0-0
  libattr1 libattr1-dev libaudit-common libaudit1 libavahi-client3
  libavahi-common-data libavahi-common3 libayatana-ido3-0.4-0
  libayatana-indicator3-7 libbabl-0.1-0 libbinutils libblas3 libblkid-dev
  libblkid1 libbluray2 libbrotli-dev libbrotli1 libbs2b0 libbsd-dev libbsd0
  libbz2-1.0 libbz2-dev libc-ares2 libc-bin libc-client2007e
  libc-client2007e-dev libc-dev-bin libc-l10n libc6 libc6-dev libcaca0
  libcairo-gobject2 libcairo2 libcairomm-1.0-1v5 libcamd2 libcap-ng0 libcap2
  libcap2-bin libcc1-0 libccolamd2 libcddb2 libcdparanoia0 libcdt5 libcgraph6
  libcholmod3 libchromaprint1 libclang-common-11-dev libclang-cpp11
  libclang1-11 libcob5 libcob5-dev libcolamd2 libcolord2 libcom-err2
  libcrypt-dev libcrypt1 libcryptsetup12 libct4 libctf-nobfd0 libctf0 libcups2
  libcurl3-gnutls libcurl4 libcurl4-gnutls-dev libdatrie1 libdb-dev libdb5.3
  libdb5.3-dev libdbus-1-3 libdbus-glib-1-2 libdc1394-25 libdconf1 libde265-0
  libdebconfclient0 libdebhelper-perl libdeflate-dev libdeflate0
  libdevmapper1.02.1 libdns-export1110 libdouble-conversion3 libdpkg-perl
  libdrm-amdgpu1 libdrm-common libdrm-nouveau2 libdrm-radeon1 libdrm2 libdv4
  libdvdnav4 libdvdread8 libdw1 libebml5 libedit-dev libedit2 libegl-mesa0
  libegl1 libelf1 libenchant-2-2 libenchant-2-dev libepoxy0 liberror-perl
  libevdev2 libevent-2.1-7 libevent-core-2.1-7 libevent-dev
  libevent-extra-2.1-7 libevent-openssl-2.1-7 libevent-pthreads-2.1-7
  libexif12 libexiv2-27 libexpat1 libexpat1-dev libexporter-tiny-perl
  libext2fs2 libfaad2 libfakeroot libfann-dev libfann2 libfbclient2 libfdisk1
  libfdt1 libffi-dev libfftw3-double3 libfftw3-single3 libfido2-1
  libfile-readbackwards-perl libfile-stripnondeterminism-perl libflite1
  libfontconfig-dev libfontconfig1 libfreetype-dev libfreetype6
  libfreetype6-dev libfribidi0 libgbm1 libgc1 libgcc-10-dev libgcc-s1
  libgck-1-0 libgcr-base-3-1 libgcr-ui-3-1 libgcrypt20 libgcrypt20-dev
  libgd-dev libgd3 libgdbm-compat4 libgdbm6 libgdk-pixbuf-2.0-0
  libgdk-pixbuf2.0-common libgegl-0.4-0 libgegl-common libgexiv2-2
  libgfortran5 libgif7 libgimp2.0 libgirepository-1.0-1 libgl1 libgl1-mesa-dri
  libglapi-mesa libgles2 libglib2.0-0 libglib2.0-bin libglib2.0-data
  libglib2.0-dev libglib2.0-dev-bin libglibmm-2.4-1v5 libglu1-mesa libglvnd0
  libglx-mesa0 libglx0 libgme0 libgmp-dev libgmp10 libgmp3-dev libgmpxx4ldbl
  libgnutls30 libgomp1 libgpg-error-dev libgpg-error0 libgpm2 libgs9-common
  libgsm1 libgssapi-krb5-2 libgssrpc4 libgstreamer-gl1.0-0
  libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 libgtk-3-0 libgtk-3-common
  libgtkmm-3.0-1v5 libgts-0.7-5 libgudev-1.0-0 libgvc6 libgvpr2
  libharfbuzz-icu0 libharfbuzz0b libheif1 libhiredis0.14 libhogweed6
  libhunspell-1.7-0 libi2c0 libib-util libicu-dev libidn2-0 libiec61883-0
  libilmbase25 libimlib2 libimobiledevice6 libinput-bin libinput10 libip4tc2
  libisc-export1105 libisl23 libiw30 libjack-dev libjack0 libjansson4
  libjavascriptcoregtk-4.0-18 libjbig-dev libjbig0 libjbig2dec0 libjpeg-dev
  libjpeg62-turbo libjpeg62-turbo-dev libjs-inherits libjs-is-typedarray
  libjs-jquery libjs-psl libjs-sphinxdoc libjs-typedarray-to-buffer
  libjs-underscore libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common
  libk5crypto3 libkadm5clnt-mit12 libkadm5srv-mit12 libkdb5-10 libkeyutils1
  libklibc libkmod2 libkrb5-3 libkrb5-dev libkrb5support0 libksba8
  liblab-gamut1 liblapack3 liblcms2-2 libldap2-dev libldb2
  liblightdm-gobject-1-0 liblilv-0-0 liblirc-client0 liblist-moreutils-xs-perl
  libllvm11 liblocale-gettext-perl libltdl-dev libltdl7 liblua5.2-0
  liblua5.3-0 liblz4-1 liblzma-dev liblzma5 libmad0 libmagic-dev libmagic-mgc
  libmagic1 libmanette-0.2-0 libmariadb-dev libmariadb-dev-compat libmariadb3
  libmatroska7 libmcrypt-dev libmcrypt4 libmd-dev libmd0 libmd4c0
  libmemcached11 libmemcachedutil2 libmhash-dev libmhash2 libmount-dev
  libmount1 libmp3lame0 libmpc3 libmpdec3 libmpfr6 libmpg123-0 libmtp-common
  libmtp9 libmysofa1 libncurses-dev libncurses5-dev libncurses6 libncursesw6
  libnetsnmptrapd40 libnettle8 libnewt0.52 libnghttp2-14 libnl-3-200
  libnl-genl-3-200 libnl-route-3-200 libnode-dev libnotify4 libnspr4
  libnss-myhostname libnss3 libobjc-10-dev libobjc4 libobrender32v5 libobt2v5
  libodbc1 libogg0 libonig-dev libonig5 libopenblas0-pthread libopenjp2-7
  libopenmpt-modplug1 libopenmpt0 libopus0 liborc-0.4-0 libout123-0
  libp11-kit0 libpam-modules libpam-modules-bin libpam-runtime libpam-systemd
  libpam0g libpam0g-dev libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0
  libpangomm-1.4-1v5 libpangoxft-1.0-0 libpaper1 libparted-fs-resize0
  libparted2 libpathplan4 libpcap0.8 libpci-dev libpci3 libpciaccess0
  libpcre16-3 libpcre2-16-0 libpcre2-32-0 libpcre2-8-0 libpcre2-dev libpcre3
  libpcre3-dev libpcre32-3 libpcrecpp0v5 libpcsclite1 libpeas-1.0-0
  libpeas-common libpipeline1 libpixman-1-0 libplist3 libplymouth5 libpng-dev
  libpng16-16 libpocketsphinx3 libpolkit-agent-1-0 libpolkit-gobject-1-0
  libpoppler-glib8 libpopt0 libportaudio2 libportaudiocpp0 libpq-dev libpq5
  libproxy1v5 libpsl5 libpspell-dev libpugixml1v5 libpulse0 libpulsedsp
  libpython3-dev libpython3-stdlib libqdbm-dev libqdbm14 libqt5core5a
  libqt5dbus5 libqt5gui5 libqt5network5 libqt5svg5 libqt5widgets5
  libqt5x11extras5 librabbitmq4 libraw20 libreadline-dev libreadline8
  libregexp-assemble-perl librhash0 librsvg2-2 librsvg2-common librubberband2
  libsamplerate0 libsasl2-2 libsasl2-dev libsasl2-modules-db libsctp-dev
  libsctp1 libsdl-image1.2 libsdl1.2debian libsdl2-2.0-0 libseccomp2
  libsecret-1-0 libsecret-common libselinux1 libselinux1-dev
  libsemanage-common libsensors-config libsensors-dev libsensors5 libserd-0-0
  libshout3 libsigc++-2.0-0v5 libsigsegv2 libslang2 libsmartcols1 libsnappy1v5
  libsndfile1 libsndio7.0 libsnmp-base libsnmp-dev libsnmp40 libsord-0-0
  libsoup-gnome2.4-1 libsoup2.4-1 libspeex1 libspeexdsp1 libsphinxbase3
  libsqlite3-0 libsqlite3-dev libsratom-0-0 libss2 libssh-gcrypt-4 libssh2-1
  libssl-dev libstdc++-10-dev libstdc++6 libsub-override-perl
  libsuitesparseconfig5 libsybdb5 libsyn123-0 libsystemd-dev libsystemd0
  libtag1v5 libtag1v5-vanilla libtalloc2 libtasn1-6 libtdb1 libtevent0
  libtext-charwidth-perl libtext-iconv-perl libthai-data libthai0 libtheora0
  libtiff-dev libtinfo6 libtirpc-common libtirpc-dev libtirpc3 libtool
  libubsan1 libudev-dev libudev1 libudfread0 libumfpack5 libunistring2
  libunwind8 libupower-glib3 libusb-1.0-0 libutempter0 libuuid1 libuv1
  libuv1-dev libv4l-0 libv4lconvert0 libva-drm2 libva-x11-2 libva2 libvdpau1
  libvisual-0.4-0 libvpx-dev libvte-2.91-0 libvte-2.91-common libvulkan1
  libwacom-common libwavpack1 libwayland-client0 libwayland-cursor0
  libwayland-egl1 libwayland-server0 libwbclient0 libwebkit2gtk-4.0-37
  libwebp-dev libwebpdemux2 libwebpmux3 libwmf0.2-7 libwoff1 libwpe-1.0-1
  libwpebackend-fdo-1.0-1 libwrap0 libwrap0-dev libwxbase3.0-0v5
  libwxgtk3.0-gtk3-0v5 libx11-6 libx11-data libx11-dev libx11-xcb1 libxaw7
  libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-image0 libxcb-present0
  libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1
  libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 libxcb-xv0
  libxcb1 libxcb1-dev libxcursor1 libxdamage1 libxext6 libxfce4util-common
  libxfce4util7 libxfconf-0-3 libxfixes3 libxfont2 libxft2 libxi6 libxinerama1
  libxkbcommon-x11-0 libxkbcommon0 libxml2 libxml2-dev libxmlrpc-epi-dev
  libxmlrpc-epi0 libxmltok1 libxmltok1-dev libxmu6 libxmuu1 libxpm-dev libxpm4
  libxrandr2 libxrender1 libxres1 libxslt1-dev libxslt1.1 libxt-dev libxt6
  libxtables12 libxtst6 libxv1 libxxf86dga1 libxxhash0 libyaml-0-2 libz3-4
  libzip-dev libzip4 libzmq5 libzstd1 libzvbi-common libzvbi0 lightdm
  linux-base locales locales-all login logsave lsb-base lsb-release lsof
  lua-lpeg lxrandr lxterminal m4 mailcap man-db mariadb-common mawk
  media-types mesa-utils mlock mount mousepad mpg123 mysql-common nano
  ncurses-base ncurses-bin neofetch netbase netcat-openbsd nmap nmap-common
  node-abbrev node-agent-base node-ajv node-ansi node-ansi-regex
  node-ansi-styles node-ansistyles node-aproba node-archy
  node-are-we-there-yet node-asap node-asn1 node-assert-plus node-asynckit
  node-aws-sign2 node-aws4 node-balanced-match node-bcrypt-pbkdf
  node-brace-expansion node-builtins node-cacache node-caseless node-chalk
  node-chownr node-clone node-color-convert node-color-name node-colors
  node-columnify node-combined-stream node-concat-map
  node-console-control-strings node-copy-concurrently node-core-util-is
  node-dashdash node-debug node-defaults node-delayed-stream node-delegates
  node-depd node-ecc-jsbn node-encoding node-err-code
  node-escape-string-regexp node-extend node-extsprintf node-fast-deep-equal
  node-forever-agent node-form-data node-fs-write-stream-atomic
  node-fs.realpath node-function-bind node-gauge node-getpass node-glob
  node-graceful-fs node-gyp node-har-schema node-har-validator node-has-flag
  node-has-unicode node-hosted-git-info node-http-signature
  node-https-proxy-agent node-iconv-lite node-iferr node-imurmurhash
  node-indent-string node-inflight node-inherits node-ini node-ip
  node-ip-regex node-is-typedarray node-isarray node-isexe node-isstream
  node-jsbn node-json-parse-better-errors node-json-schema
  node-json-schema-traverse node-json-stable-stringify
  node-json-stringify-safe node-jsonify node-jsonparse node-jsonstream
  node-jsprim node-leven node-lockfile node-lru-cache node-mime
  node-mime-types node-minimatch node-mkdirp node-move-concurrently node-ms
  node-mute-stream node-nopt node-normalize-package-data node-npm-bundled
  node-npm-package-arg node-npmlog node-number-is-nan node-oauth-sign
  node-object-assign node-once node-opener node-osenv node-p-map
  node-path-is-absolute node-performance-now node-process-nextick-args
  node-promise-inflight node-promise-retry node-promzard node-psl node-puka
  node-punycode node-qs node-read node-read-package-json node-readable-stream
  node-resolve node-retry node-rimraf node-run-queue node-safe-buffer
  node-semver node-set-blocking node-signal-exit node-slash node-spdx-correct
  node-spdx-exceptions node-spdx-expression-parse node-spdx-license-ids
  node-sshpk node-ssri node-string-decoder node-string-width node-strip-ansi
  node-supports-color node-tar node-text-table node-tunnel-agent
  node-tweetnacl node-typedarray-to-buffer node-unique-filename node-uri-js
  node-util-deprecate node-uuid node-validate-npm-package-license
  node-validate-npm-package-name node-verror node-wcwidth.js node-which
  node-wide-align node-wrappy node-write-file-atomic node-yallist nodejs npm
  ocl-icd-libopencl1 odbcinst odbcinst1debian2 openbox openssh-client
  openssh-server openssh-sftp-server openssl parted passwd pci.ids perl
  perl-base pinentry-curses pkg-config plymouth policykit-1 poppler-data
  portaudio19-dev procps proftpd-core psmisc pulseaudio pulseaudio-utils
  python3 python3-colorzero python3-dev python3-distutils python3-dnspython
  python3-gpiozero python3-ldb python3-lib2to3 python3-minimal python3-numpy
  python3-pkg-resources python3-rpi.gpio python3-samba python3-setuptools
  python3-smbus python3-talloc python3-tdb python3-venv rake re2c
  readline-common rng-tools5 rpi.gpio-common rsync ruby ruby-minitest
  ruby-net-telnet ruby-power-assert ruby-rubygems ruby-test-unit ruby-xmlrpc
  runit-helper samba samba-common samba-common-bin samba-libs
  samba-vfs-modules screen sed sensible-utils shared-mime-info sudo swig
  swig4.0 systemd systemd-sysv systemd-timesyncd systemtap-sdt-dev
  sysvinit-utils tar tdb-tools tigervnc-common tigervnc-scraping-server
  tigervnc-standalone-server tmux tzdata ucf udev unixodbc-dev unzip upower
  usbutils util-linux uuid-dev vorbis-tools wget whiptail wireless-regdb
  wireless-tools wpasupplicant x11-common x11-xkb-utils x11-xserver-utils
  x11proto-dev xarchiver xauth xdg-dbus-proxy xfconf xfonts-base
  xfonts-encodings xkb-data xserver-common xserver-xorg-core
  xserver-xorg-input-libinput xserver-xorg-video-fbdev xz-utils zenity
  zenity-common zlib1g zlib1g-dev zsh zsh-common
1062 upgraded, 377 newly installed, 10 to remove and 0 not upgraded.
Need to get 792 MB of archives.
After this operation, 1403 MB of additional disk space will be used.
Get:1 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf base-files armhf 12.4+rpi1+deb12u1 [70.9 kB]
Get:2 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-l10n all 2.36-9+rpi1+deb12u1 [675 kB]
Get:3 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf locales all 2.36-9+rpi1+deb12u1 [3902 kB]
Get:4 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf locales-all armhf 2.36-9+rpi1+deb12u1 [10.7 MB]
Get:5 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-dev-bin armhf 2.36-9+rpi1+deb12u1 [43.7 kB]
Get:6 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf binutils armhf 2.40-2+rpi2 [65.4 kB]
Get:7 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-dev armhf 2.74.6-1 [1464 kB]
Get:8 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc6-dev armhf 2.36-9+rpi1+deb12u1 [1256 kB]
Get:9 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rpcsvc-proto armhf 1.4.3-1 [55.1 kB]
Get:10 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc6 armhf 2.36-9+rpi1+deb12u1 [2106 kB]
Get:57 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-venv armhf 3.11.2-1 [1188 B]
Get:11 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzstd1 armhf 1.5.4+dfsg2-5 [237 kB]
Get:12 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libctf0 armhf 2.40-2+rpi2 [71.5 kB]
Get:13 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libctf-nobfd0 armhf 2.40-2+rpi2 [133 kB]
Get:14 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjansson4 armhf 2.14-2 [37.0 kB]
Get:15 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf binutils-arm-linux-gnueabihf armhf 2.40-2+rpi2 [2052 kB]
Get:16 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbinutils armhf 2.40-2+rpi2 [406 kB]
Get:17 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf binutils-common armhf 2.40-2+rpi2 [2470 kB]
Get:18 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libffi8 armhf 3.4.4-1 [19.4 kB]
Get:19 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-dev-bin armhf 2.74.6-1 [147 kB]
Get:20 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-bin armhf 2.74.6-1 [101 kB]
Get:21 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-0 armhf 2.74.6-1 [1203 kB]
Get:80 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libncurses5-dev armhf 6.4-4 [932 B]
Get:22 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam0g-dev armhf 1.5.2-6 [141 kB]
Get:23 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam0g armhf 1.5.2-6 [86.2 kB]
Get:24 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcrypt1 armhf 1:4.4.33-2 [93.3 kB]
Get:25 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcrypt-dev armhf 1:4.4.33-2 [121 kB]
Get:26 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-bin armhf 2.36-9+rpi1+deb12u1 [493 kB]
Get:27 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libapt-pkg-perl armhf 0.1.40+b4 [64.3 kB]
Get:28 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblist-moreutils-xs-perl armhf 0.430-3+b1 [35.1 kB]
Get:29 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtext-iconv-perl armhf 1.7-8 [13.8 kB]
Get:30 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtext-charwidth-perl armhf 0.04-11 [9328 B]
Get:31 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf perl-modules-5.36 all 5.36.0-7 [2815 kB]
Get:32 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgdbm6 armhf 1.23-3 [68.3 kB]
Get:33 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libperl5.36 armhf 5.36.0-7 [3462 kB]
Get:34 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf perl armhf 5.36.0-7 [239 kB]
Get:35 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf perl-base armhf 5.36.0-7 [1413 kB]
Get:36 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblocale-gettext-perl armhf 1.07-5 [14.9 kB]
Get:37 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zlib1g-dev armhf 1:1.2.13.dfsg-1 [901 kB]
Get:38 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zlib1g armhf 1:1.2.13.dfsg-1 [73.5 kB]
Get:39 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-12-base armhf 12.2.0-14+rpi1 [37.7 kB]
Get:40 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-s1 armhf 12.2.0-14+rpi1 [36.3 kB]
Get:41 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libatomic1 armhf 12.2.0-14+rpi1 [8240 B]
Get:42 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libssl3 armhf 3.0.9-1 [1619 kB]
Get:43 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-minimal armhf 3.11.2-6 [797 kB]
Get:44 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexpat1-dev armhf 2.5.0-1 [130 kB]
Get:45 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexpat1 armhf 2.5.0-1 [77.2 kB]
Get:46 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11-minimal armhf 3.11.2-6 [1679 kB]
Get:47 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblzma-dev armhf 5.4.1-0.2 [246 kB]
Get:48 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblzma5 armhf 5.4.1-0.2 [192 kB]
Get:49 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tar armhf 1.34+dfsg-1.2 [788 kB]
Get:50 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dpkg armhf 1.21.22+rpi1 [1497 kB]
Get:51 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3-dev armhf 3.11.2-1 [9248 B]
Get:52 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-dev armhf 3.11.2-1 [26.2 kB]
Get:53 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-vfs-modules armhf 2:4.17.8+dfsg-2 [386 kB]
Get:54 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-ldb armhf 2:2.6.2+samba4.17.8+dfsg-2 [53.8 kB]
Get:55 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldb2 armhf 2:2.6.2+samba4.17.8+dfsg-2 [133 kB]
Get:56 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba armhf 2:4.17.8+dfsg-2 [845 kB]
Get:58 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-tdb armhf 1.4.8-2 [15.5 kB]
Get:59 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtalloc2 armhf 2.4.0-f2 [23.9 kB]
Get:60 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-talloc armhf 2.4.0-f2 [13.8 kB]
Get:61 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-smbus armhf 4.3-2+b2 [11.3 kB]
Get:62 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-samba armhf 2:4.17.8+dfsg-2 [2408 kB]
Get:63 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-rpi.gpio armhf 0.7.1~a4-1+b2 [21.2 kB]
Get:64 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-numpy armhf 1:1.24.2-1 [3826 kB]
Get:65 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-distutils all 3.11.2-3 [131 kB]
Get:66 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-lib2to3 all 3.11.2-3 [76.3 kB]
Get:67 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-minimal armhf 3.11.2-1 [26.0 kB]
Get:68 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3 armhf 3.11.2-1 [26.0 kB]
Get:69 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsqlite3-dev armhf 3.40.1-2 [893 kB]
Get:70 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsqlite3-0 armhf 3.40.1-2 [724 kB]
Get:71 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf media-types all 10.0.0 [26.1 kB]
Get:72 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaudit-common all 1:3.0.9-1 [10.4 kB]
Get:73 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcap-ng0 armhf 0.8.3-1+b1 [15.6 kB]
Get:74 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaudit1 armhf 1:3.0.9-1 [43.7 kB]
Get:75 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdb5.3-dev armhf 5.3.28+dfsg2-1 [629 kB]
Get:76 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdb5.3 armhf 5.3.28+dfsg2-1 [571 kB]
Get:77 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libncurses6 armhf 6.4-4 [80.0 kB]
Get:78 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtinfo6 armhf 6.4-4 [317 kB]
Get:79 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libncursesw6 armhf 6.4-4 [106 kB]
Get:81 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libncurses-dev armhf 6.4-4 [292 kB]
Get:82 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ncurses-bin armhf 6.4-4 [414 kB]
Get:83 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libreadline-dev armhf 8.2-1.3 [123 kB]
Get:84 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf readline-common all 8.2-1.3 [69.0 kB]
Get:85 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libreadline8 armhf 8.2-1.3 [142 kB]
Get:86 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtirpc-common all 1.3.3+ds-1 [14.0 kB]
Get:87 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtirpc-dev armhf 1.3.3+ds-1 [174 kB]
Get:88 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkrb5-dev armhf 1.20.1-2 [14.6 kB]
Get:89 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf krb5-multidev armhf 1.20.1-2 [125 kB]
Get:90 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgssrpc4 armhf 1.20.1-2 [50.3 kB]
Get:91 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf comerr-dev armhf 2.1-1.47.0-2 [50.8 kB]
Get:92 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcom-err2 armhf 1.47.0-2 [19.1 kB]
Get:93 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkdb5-10 armhf 1.20.1-2 [35.2 kB]
Get:94 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkadm5srv-mit12 armhf 1.20.1-2 [45.2 kB]
Get:95 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkadm5clnt-mit12 armhf 1.20.1-2 [35.6 kB]
Get:96 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkeyutils1 armhf 1.6.3-2 [7892 B]
Get:97 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgssapi-krb5-2 armhf 1.20.1-2 [109 kB]
Get:98 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libk5crypto3 armhf 1.20.1-2 [72.9 kB]
Get:99 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkrb5support0 armhf 1.20.1-2 [29.3 kB]
Get:100 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkrb5-3 armhf 1.20.1-2 [283 kB]
Get:101 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtirpc3 armhf 1.3.3+ds-1 [72.0 kB]
Get:102 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf uuid-dev armhf 2.38.1-5 [37.7 kB]
Get:103 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libuuid1 armhf 2.38.1-5 [27.1 kB]
Get:104 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-stdlib armhf 3.11.2-6 [1668 kB]
Get:105 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11 armhf 3.11.2-6 [572 kB]
Get:106 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3-stdlib armhf 3.11.2-1 [9012 B]
Get:107 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11 armhf 3.11.2-6 [1667 kB]
Get:108 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-dev armhf 3.11.2-6 [3364 kB]
Get:109 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11-dev armhf 3.11.2-6 [511 kB]
Get:110 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [326 kB]
Get:111 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [116 kB]
Get:112 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-sphinxdoc all 5.3.0-4 [130 kB]
Get:113 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++6 armhf 12.2.0-14+rpi1 [504 kB]
Get:114 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmp3-dev armhf 2:6.2.1+dfsg1-1.1 [331 kB]
Get:115 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmp-dev armhf 2:6.2.1+dfsg1-1.1 [582 kB]
Get:116 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmpxx4ldbl armhf 2:6.2.1+dfsg1-1.1 [338 kB]
Get:117 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmp10 armhf 2:6.2.1+dfsg1-1.1 [507 kB]
Get:118 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnettle8 armhf 3.8.1-2 [293 kB]
Get:119 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libhogweed6 armhf 3.8.1-2 [315 kB]
Get:120 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libunistring2 armhf 1.0-2 [407 kB]
Get:121 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libidn2-0 armhf 2.3.3-1+b2 [117 kB]
Get:122 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libp11-kit0 armhf 0.24.1-2 [324 kB]
Get:123 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtasn1-6 armhf 4.19.0-2 [50.9 kB]
Get:124 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgnutls30 armhf 3.7.9-2 [1309 kB]
Get:125 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libicu72 armhf 72.1-3 [9009 kB]
Get:126 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsasl2-modules-db armhf 2.1.28+dfsg-10 [19.1 kB]
Get:127 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsasl2-dev armhf 2.1.28+dfsg-10 [206 kB]
Get:128 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsasl2-2 armhf 2.1.28+dfsg-10 [51.9 kB]
Get:129 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldap-2.5-0 armhf 2.5.13+dfsg-5+rpi1 [154 kB]
Get:130 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtdb1 armhf 1.4.8-2 [39.6 kB]
Get:131 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtevent0 armhf 0.14.1-1 [32.4 kB]
Get:132 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liburing2 armhf 2.3-3 [12.7 kB]
Get:133 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmd-dev armhf 1.0.4-2 [46.6 kB]
Get:134 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmd0 armhf 1.0.4-2 [28.6 kB]
Get:135 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbsd-dev armhf 0.11.7-2 [235 kB]
Get:136 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbsd0 armhf 0.11.7-2 [112 kB]
Get:137 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf sensible-utils all 0.0.17+nmu1 [19.0 kB]
Get:138 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf ucf all 3.0043+nmu1 [55.2 kB]
Get:139 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-common-bin armhf 2:4.17.8+dfsg-2 [1050 kB]
Get:140 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-common all 2:4.17.8+dfsg-2 [83.3 kB]
Get:141 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavahi-client3 armhf 0.8-10 [41.1 kB]
Get:142 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavahi-common3 armhf 0.8-10 [38.5 kB]
Get:143 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavahi-common-data armhf 0.8-10 [107 kB]
Get:144 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-user-session armhf 1.14.8-2~deb12u1 [77.4 kB]
Get:145 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-x11 armhf 1.14.8-2~deb12u1 [88.8 kB]
Get:146 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdbus-1-3 armhf 1.14.8-2~deb12u1 [176 kB]
Get:147 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus armhf 1.14.8-2~deb12u1 [94.5 kB]
Get:148 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-bin armhf 1.14.8-2~deb12u1 [102 kB]
Get:149 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-session-bus-common all 1.14.8-2~deb12u1 [77.5 kB]
Get:150 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapparmor-dev armhf 3.0.8-3 [80.7 kB]
Get:151 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapparmor1 armhf 3.0.8-3 [37.1 kB]
Get:152 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsepol2 armhf 3.4-2.1 [228 kB]
Get:153 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libselinux1-dev armhf 3.4-1+b2 [143 kB]
Get:154 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsepol-dev armhf 3.4-2.1 [309 kB]
Get:155 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-16-0 armhf 10.42-1 [210 kB]
Get:156 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-32-0 armhf 10.42-1 [201 kB]
Get:157 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-posix3 armhf 10.42-1 [55.1 kB]
Get:158 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-dev armhf 10.42-1 [648 kB]
Get:159 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-8-0 armhf 10.42-1 [225 kB]
Get:160 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libselinux1 armhf 3.4-1+b2 [64.5 kB]
Get:161 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgpg-error-dev armhf 1.46-1 [119 kB]
Get:162 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgpg-error0 armhf 1.46-1 [66.2 kB]
Get:163 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcrypt20-dev armhf 1.10.1-3 [685 kB]
Get:164 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcrypt20 armhf 1.10.1-3 [627 kB]
Get:165 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd-dev armhf 252.12-1~deb12u1+rpi1 [352 kB]
Get:166 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libargon2-dev armhf 0~20171227-0.3+deb12u1 [23.3 kB]
Get:167 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libargon2-1 armhf 0~20171227-0.3+deb12u1 [19.1 kB]
Get:168 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libblkid-dev armhf 2.38.1-5 [162 kB]
Get:169 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libblkid1 armhf 2.38.1-5 [131 kB]
Get:170 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dmsetup armhf 2:1.02.185-2 [81.8 kB]
Get:171 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libudev-dev armhf 252.12-1~deb12u1+rpi1 [52.0 kB]
Get:172 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libattr1-dev armhf 1:2.5.1-4 [34.5 kB]
Get:173 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libattr1 armhf 1:2.5.1-4 [21.2 kB]
Get:174 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libacl1-dev armhf 2.3.1-3 [89.7 kB]
Get:175 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libacl1 armhf 2.3.1-3 [28.8 kB]
Get:176 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcap2 armhf 1:2.66-4 [23.5 kB]
Get:177 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf kmod armhf 30+20221128-1 [82.2 kB]
Get:178 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libkmod2 armhf 30+20221128-1 [49.9 kB]
Get:179 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsemanage-common all 3.4-1 [21.6 kB]
Get:180 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsemanage2 armhf 3.4-1+b2 [75.6 kB]
Get:181 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf passwd armhf 1:4.13+dfsg1-1 [905 kB]
Get:182 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam-modules-bin armhf 1.5.2-6 [71.5 kB]
Get:183 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam-modules armhf 1.5.2-6 [274 kB]
Get:184 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf adduser all 3.134 [183 kB]
Get:185 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf less armhf 590-2 [114 kB]
Get:186 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpam-systemd armhf 252.12-1~deb12u1+rpi1 [200 kB]
Get:187 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd-timesyncd armhf 252.12-1~deb12u1+rpi1 [62.9 kB]
Get:188 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ifupdown armhf 0.8.41 [55.1 kB]
Get:189 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-xorg-video-fbdev armhf 1:0.5.0-2 [24.2 kB]
Get:190 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-xorg-core armhf 2:21.1.7-3 [3450 kB]
Get:191 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd armhf 252.12-1~deb12u1+rpi1 [2881 kB]
Get:192 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf udev armhf 252.12-1~deb12u1+rpi1 [1577 kB]
Get:193 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libudev1 armhf 252.12-1~deb12u1+rpi1 [99.1 kB]
Get:194 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdevmapper1.02.1 armhf 2:1.02.185-2 [123 kB]
Get:195 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-c5 armhf 0.16-2 [40.0 kB]
Err:195 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-c5 armhf 0.16-2
  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
Get:196 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcryptsetup12 armhf 2:2.6.1-4~deb12u1 [191 kB]
Get:197 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libip4tc2 armhf 1.8.9-2 [17.1 kB]
Get:198 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblz4-1 armhf 1.9.4-1+rpi1+b1 [52.7 kB]
Get:199 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmount-dev armhf 2.38.1-5 [22.2 kB]
Get:200 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmount1 armhf 2.38.1-5 [143 kB]
Get:201 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libseccomp2 armhf 2.5.4-1+rpi1+b1 [46.2 kB]
Get:202 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd-shared armhf 252.12-1~deb12u1+rpi1 [1511 kB]
Get:203 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam-runtime all 1.5.2-6 [161 kB]
Get:204 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd-sysv armhf 252.12-1~deb12u1+rpi1 [41.9 kB]
Get:205 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdw1 armhf 0.188-2.1+rpi1 [212 kB]
Get:206 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libelf1 armhf 0.188-2.1+rpi1 [171 kB]
Get:207 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbpf1 armhf 1:1.1.0-1 [122 kB]
Get:208 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxtables12 armhf 1.8.9-2 [27.9 kB]
Get:209 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcap2-bin armhf 1:2.66-4 [32.4 kB]
Get:210 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iproute2 armhf 6.1.0-3 [899 kB]
Get:211 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsmartcols1 armhf 2.38.1-5 [90.9 kB]
Get:212 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf login armhf 1:4.13+dfsg1-1 [611 kB]
Get:213 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfdisk1 armhf 2.38.1-5 [178 kB]
Get:214 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fdisk armhf 2.38.1-5 [127 kB]
Get:215 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf util-linux-extra armhf 2.38.1-5 [97.5 kB]
Get:216 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf util-linux armhf 2.38.1-5 [1063 kB]
Get:217 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xkb-data all 2.35.1-1 [764 kB]
Get:218 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf kbd armhf 2.5.1-1 [300 kB]
Get:219 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnumber-compare-perl all 0.03-3 [6332 B]
Get:220 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtext-glob-perl all 0.11-3 [7676 B]
Get:221 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfile-find-rule-perl all 0.34-3 [26.6 kB]
Get:222 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf usrmerge all 35 [12.5 kB]
Get:223 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf init-system-helpers all 1.65.2 [49.8 kB]
Get:224 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf console-setup-linux all 1.221 [1882 kB]
Get:225 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf console-setup all 1.221 [102 kB]
Get:226 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf keyboard-configuration all 1.221 [416 kB]
Get:227 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf sysvinit-utils armhf 3.06-4 [29.2 kB]
Get:228 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf lsb-base all 11.6+rpi1 [4808 B]
Get:229 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf x11-common all 1:7.7+23 [252 kB]
Get:230 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf x11proto-dev all 2022.1-1 [599 kB]
Get:231 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb1-dev armhf 1.15-1 [175 kB]
Get:232 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb1 armhf 1.15-1 [139 kB]
Get:233 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-dev armhf 2:1.8.4-2+deb12u1 [769 kB]
Get:234 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-data all 2:1.8.4-2+deb12u1 [292 kB]
Get:235 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-6 armhf 2:1.8.4-2+deb12u1 [691 kB]
Get:236 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-xcb1 armhf 2:1.8.4-2+deb12u1 [192 kB]
Get:237 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxext6 armhf 2:1.3.4-1 [48.0 kB]
Get:238 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxt-dev armhf 1:1.2.1-1.1 [368 kB]
Get:239 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxt6 armhf 1:1.2.1-1.1 [155 kB]
Get:240 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmu6 armhf 2:1.1.3-3 [52.0 kB]
Get:241 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxpm-dev armhf 1:3.5.12-1.1 [96.5 kB]
Get:242 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxpm4 armhf 1:3.5.12-1.1 [42.0 kB]
Get:243 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxaw7 armhf 2:1.0.14-1 [165 kB]
Get:244 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxrender1 armhf 1:0.9.10-1.1 [30.0 kB]
Get:245 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxrandr2 armhf 2:1.5.2-2 [35.5 kB]
Get:246 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf x11-xkb-utils armhf 7.7+7 [140 kB]
Get:247 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-common all 2:21.1.7-3 [2382 kB]
Get:248 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcvt0 armhf 0.1.2-1 [5976 B]
Get:249 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgl1 armhf 1.6.0-1 [89.9 kB]
Get:250 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-common all 2.4.114-1+rpi1 [7276 B]
Get:251 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm2 armhf 2.4.114-1+rpi1 [32.8 kB]
Get:252 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-server0 armhf 1.21.0-1 [29.3 kB]
Get:253 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libegl-mesa0 armhf 22.3.6-1+deb12u1+rpi1 [93.0 kB]
Get:254 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgbm1 armhf 22.3.6-1+deb12u1+rpi1 [34.3 kB]
Get:255 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-client0 armhf 1.21.0-1 [23.3 kB]
Get:256 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-dri2-0 armhf 1.15-1 [107 kB]
Get:257 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-dri3-0 armhf 1.15-1 [107 kB]
Get:258 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-present0 armhf 1.15-1 [105 kB]
Get:259 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-randr0 armhf 1.15-1 [116 kB]
Get:260 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-sync1 armhf 1.15-1 [108 kB]
Get:261 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xfixes0 armhf 1.15-1 [109 kB]
Get:262 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-amdgpu1 armhf 2.4.114-1+rpi1 [19.3 kB]
Get:263 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libz3-4 armhf 4.8.12-3.1 [5797 kB]
Get:264 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libedit-dev armhf 3.1-20221030-2 [94.4 kB]
Get:265 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libedit2 armhf 3.1-20221030-2 [76.2 kB]
Get:266 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf icu-devtools armhf 72.1-3 [175 kB]
Get:267 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libicu-dev armhf 72.1-3 [9959 kB]
Get:268 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxml2-dev armhf 2.9.14+dfsg-1.3~deb12u1 [637 kB]
Get:269 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxml2 armhf 2.9.14+dfsg-1.3~deb12u1 [570 kB]
Get:270 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libllvm15 armhf 1:15.0.6-4+rpi1+b1 [20.7 MB]
Get:271 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-nouveau2 armhf 2.4.114-1+rpi1 [17.0 kB]
Get:272 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-radeon1 armhf 2.4.114-1+rpi1 [20.7 kB]
Get:273 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsensors-dev armhf 1:3.6.0-7.1 [39.5 kB]
Get:274 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsensors-config all 1:3.6.0-7.1 [14.3 kB]
Get:275 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsensors5 armhf 1:3.6.0-7.1 [31.6 kB]
Get:276 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgl1-mesa-dri armhf 22.3.6-1+deb12u1+rpi1 [5636 kB]
Get:277 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libglx-mesa0 armhf 22.3.6-1+deb12u1+rpi1 [130 kB]
Get:278 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libglapi-mesa armhf 22.3.6-1+deb12u1+rpi1 [45.8 kB]
Get:279 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-glx0 armhf 1.15-1 [121 kB]
Get:280 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-shm0 armhf 1.15-1 [106 kB]
Get:281 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfixes3 armhf 1:6.0.0-2 [21.2 kB]
Get:282 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglx0 armhf 1.6.0-1 [32.0 kB]
Get:283 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgles2 armhf 1.6.0-1 [17.2 kB]
Get:284 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libegl1 armhf 1.6.0-1 [28.3 kB]
Get:285 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglvnd0 armhf 1.6.0-1 [53.8 kB]
Get:286 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libepoxy0 armhf 1.5.10-1 [172 kB]
Get:287 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpciaccess0 armhf 0.17-2 [48.8 kB]
Get:288 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpixman-1-0 armhf 0.42.2-1 [461 kB]
Err:288 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpixman-1-0 armhf 0.42.2-1
  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
Get:289 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libunwind8 armhf 1.6.2-3 [42.6 kB]
Get:290 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfreetype-dev armhf 2.12.1+dfsg-5 [493 kB]
Get:291 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfreetype6-dev armhf 2.12.1+dfsg-5 [46.4 kB]
Get:292 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbrotli-dev armhf 1.0.9-2+b3 [270 kB]
Get:293 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbrotli1 armhf 1.0.9-2+b3 [258 kB]
Get:294 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpng-dev armhf 1.6.39-2 [336 kB]
Get:295 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpng16-16 armhf 1.6.39-2 [258 kB]
Get:296 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfreetype6 armhf 2.12.1+dfsg-5 [329 kB]
Get:297 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfont2 armhf 1:2.0.6-1 [120 kB]
Get:298 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mount armhf 2.38.1-5 [125 kB]
Get:299 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd0 armhf 252.12-1~deb12u1+rpi1 [299 kB]
Get:300 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-daemon armhf 1.14.8-2~deb12u1 [168 kB]
Get:301 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-system-bus-common all 1.14.8-2~deb12u1 [78.5 kB]
Get:302 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcups2 armhf 2.4.2-3+deb12u1 [205 kB]
Get:303 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpopt0 armhf 1.19+dfsg-1 [40.4 kB]
Get:304 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwbclient0 armhf 2:4.17.8+dfsg-2 [47.5 kB]
Get:305 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-libs armhf 2:4.17.8+dfsg-2 [4832 kB]
Get:306 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libproc2-0 armhf 2:4.0.2-3 [53.6 kB]
Get:307 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf procps armhf 2:4.0.2-3 [679 kB]
Get:308 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf netbase all 6.4 [12.8 kB]
Get:309 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-dnspython all 2.3.0-1 [152 kB]
Get:310 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf tdb-tools armhf 1.4.8-2 [26.0 kB]
Get:311 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssl armhf 3.0.9-1 [1365 kB]
Get:312 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ca-certificates all 20230311 [153 kB]
Get:313 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-pip-whl all 23.0.1+dfsg-1 [1717 kB]
Get:314 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-setuptools-whl all 66.1.1-1 [1111 kB]
Get:315 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11-venv armhf 3.11.2-6 [5892 B]
Get:316 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libi2c0 armhf 4.3-2+b2 [9156 B]
Get:317 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf rpi.gpio-common armhf 0.7.1~a4-1+b2 [6808 B]
Get:318 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-setuptools all 66.1.1-1 [521 kB]
Get:319 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-pkg-resources all 66.1.1-1 [296 kB]
Get:320 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgfortran5 armhf 12.2.0-14+rpi1 [238 kB]
Get:321 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libopenblas0-pthread armhf 0.3.21+ds-4+rpi1 [2159 kB]
Get:322 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libblas3 armhf 3.11.0-2 [100.0 kB]
Get:323 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libatlas3-base armhf 3.10.3-13+rpi1 [2356 kB]
Get:324 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblapack3 armhf 3.11.0-2 [1624 kB]
Get:325 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-data all 2.74.6-1 [1208 kB]
Get:326 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libffi-dev armhf 3.4.4-1 [60.4 kB]
Get:327 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpkgconf3 armhf 1.8.1-1 [31.3 kB]
Get:328 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkgconf-bin armhf 1.8.1-1 [27.8 kB]
Get:329 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf m4 armhf 1.4.19-3 [256 kB]
Get:330 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf debianutils armhf 5.7-0.4 [101 kB]
Get:331 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf autoconf all 2.71-3 [332 kB]
Get:332 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkg-config armhf 1.8.1-1 [13.7 kB]
Get:333 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkgconf armhf 1.8.1-1 [25.9 kB]
Get:334 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbz2-dev armhf 1.0.8-5+b2 [26.8 kB]
Get:335 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf bzip2 armhf 1.0.8-5+b2 [47.4 kB]
Get:336 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbz2-1.0 armhf 1.0.8-5+b2 [43.5 kB]
Get:337 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgdbm-compat4 armhf 1.23-3 [47.8 kB]
Get:338 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxxhash0 armhf 0.8.1-1 [27.8 kB]
Get:339 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapt-pkg6.0 armhf 2.6.1 [805 kB]
Get:340 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf debconf all 1.5.82 [121 kB]
Get:341 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bash armhf 5.2.15-2 [1365 kB]
Get:342 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bsdutils armhf 1:2.38.1-5 [84.2 kB]
Get:343 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf coreutils armhf 9.1-1 [2702 kB]
Get:344 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dash armhf 0.5.12-2 [78.9 kB]
Get:345 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf diffutils armhf 1:3.8-4 [332 kB]
Get:346 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf findutils armhf 4.9.0-4 [616 kB]
Get:347 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf grep armhf 3.8-5 [404 kB]
Get:348 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gzip armhf 1.12-1 [132 kB]
Get:349 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf hostname armhf 3.23+nmu1 [9908 B]
Get:350 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf sed armhf 4.9-1 [318 kB]
Get:351 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdebconfclient0 armhf 0.270 [9536 B]
Get:352 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf base-passwd armhf 3.6.1 [57.6 kB]
Get:353 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ncurses-base all 6.4-4 [261 kB]
Get:354 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libksba8 armhf 1.6.3-2 [107 kB]
Get:355 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libassuan0 armhf 2.5.5-5 [42.2 kB]
Get:356 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gnupg-l10n all 2.2.40-1.1 [1093 kB]
Get:357 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gnupg-utils armhf 2.2.40-1.1 [812 kB]
Get:358 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgconf armhf 2.2.40-1.1 [540 kB]
Get:359 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dirmngr armhf 2.2.40-1.1 [731 kB]
Get:360 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg armhf 2.2.40-1.1 [843 kB]
Get:361 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg-agent armhf 2.2.40-1.1 [636 kB]
Get:362 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg-wks-client armhf 2.2.40-1.1 [518 kB]
Get:363 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg-wks-server armhf 2.2.40-1.1 [511 kB]
Get:364 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgv armhf 2.2.40-1.1 [601 kB]
Get:365 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgsm armhf 2.2.40-1.1 [621 kB]
Get:366 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gnupg all 2.2.40-1.1 [846 kB]
Get:367 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pinentry-curses armhf 1.2.1-1 [72.0 kB]
Get:368 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apt armhf 2.6.1 [1296 kB]
Get:369 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf filezilla armhf 3.63.0-1 [1598 kB]
Get:370 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf filezilla-common all 3.63.0-1 [2324 kB]
Get:371 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfilezilla-common all 0.41.0-2 [72.5 kB]
Get:372 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfilezilla34 armhf 0.41.0-2 [218 kB]
Get:373 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgdk-pixbuf-2.0-0 armhf 2.42.10+dfsg-1+b1 [123 kB]
Get:374 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgdk-pixbuf2.0-common all 2.42.10+dfsg-1 [306 kB]
Get:375 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf shared-mime-info armhf 2.2-1 [726 kB]
Get:376 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjpeg62-turbo-dev armhf 1:2.1.5-2 [258 kB]
Get:377 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjpeg62-turbo armhf 1:2.1.5-2 [143 kB]
Get:378 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdeflate-dev armhf 1.14-1 [48.1 kB]
Get:379 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdeflate0 armhf 1.14-1 [50.9 kB]
Get:380 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjbig-dev armhf 2.1-6.1 [27.2 kB]
Get:381 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjbig0 armhf 2.1-6.1 [27.0 kB]
Get:382 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblerc4 armhf 4.0.0+ds-2 [133 kB]
Get:383 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebp7 armhf 1.2.4-0.2 [242 kB]
Get:384 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtiff6 armhf 4.5.0-6 [293 kB]
Get:385 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gtk-update-icon-cache armhf 3.24.37-2 [42.3 kB]
Get:386 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf adwaita-icon-theme all 43-1 [5124 kB]
Get:387 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf at-spi2-common all 2.46.0-5 [162 kB]
Err:387 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf at-spi2-common all 2.46.0-5
  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
Get:388 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatk1.0-0 armhf 2.46.0-5 [41.4 kB]
Get:389 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxi6 armhf 2:1.8-1 [78.1 kB]
Get:390 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatspi2.0-0 armhf 2.46.0-5 [63.8 kB]
Get:391 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatk-bridge2.0-0 armhf 2.46.0-5 [55.6 kB]
Get:392 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfontconfig-dev armhf 2.14.1-4 [383 kB]
Get:393 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fonts-dejavu-core all 2.37-6 [1068 kB]
Get:394 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fonts-urw-base35 all 20200910-7 [10.8 MB]
Get:395 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fontconfig-config armhf 2.14.1-4 [315 kB]
Get:396 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfontconfig1 armhf 2.14.1-4 [366 kB]
Get:397 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-render0 armhf 1.15-1 [114 kB]
Get:398 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcairo-gobject2 armhf 1.16.0-7 [111 kB]
Get:399 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcairo2 armhf 1.16.0-7 [482 kB]
Get:400 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblcms2-2 armhf 2.14-2 [124 kB]
Get:401 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcolord2 armhf 1.4.6-2.2 [115 kB]
Get:402 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfribidi0 armhf 1.0.8-2.1 [63.7 kB]
Get:403 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libharfbuzz0b armhf 6.0.0+dfsg-3 [1894 kB]
Get:404 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxft2 armhf 2.3.6-1 [53.7 kB]
Get:405 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpangocairo-1.0-0 armhf 1.50.12+ds-1 [30.1 kB]
Get:406 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpangoft2-1.0-0 armhf 1.50.12+ds-1 [40.5 kB]
Get:407 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpango-1.0-0 armhf 1.50.12+ds-1 [186 kB]
Get:408 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpangoxft-1.0-0 armhf 1.50.12+ds-1 [24.2 kB]
Get:409 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fontconfig armhf 2.14.1-4 [449 kB]
Get:410 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libthai-data all 0.1.29-1 [176 kB]
Get:411 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdatrie1 armhf 0.2.13-2+b2 [39.9 kB]
Get:412 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libthai0 armhf 0.1.29-1 [54.5 kB]
Get:413 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-cursor0 armhf 1.21.0-1 [13.2 kB]
Get:414 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-egl1 armhf 1.21.0-1 [8448 B]
Get:415 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcursor1 armhf 1:1.2.1-1 [38.0 kB]
Get:416 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxdamage1 armhf 1:1.1.6-1 [14.7 kB]
Get:417 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxinerama1 armhf 2:1.1.4-3 [17.4 kB]
Get:418 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xkb1 armhf 1.15-1 [126 kB]
Get:419 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxkbcommon-x11-0 armhf 1.5.0-1 [13.8 kB]
Get:420 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxkbcommon0 armhf 1.5.0-1 [93.1 kB]
Get:421 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dconf-gsettings-backend armhf 0.40.0-4 [23.1 kB]
Get:422 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dconf-service armhf 0.40.0-4 [28.9 kB]
Get:423 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdconf1 armhf 0.40.0-4 [36.0 kB]
Get:424 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgtk-3-common all 3.24.37-2 [3891 kB]
Get:425 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgtk-3-0 armhf 3.24.37-2 [2351 kB]
Get:426 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpugixml1v5 armhf 1.13-0.2 [71.8 kB]
Get:427 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxbase3.2-1 armhf 3.2.2+dfsg-2 [820 kB]
Get:428 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnotify4 armhf 0.8.1-1 [27.5 kB]
Get:429 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxtst6 armhf 2:1.2.3-1.1 [26.3 kB]
Get:430 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxgtk3.2-1 armhf 3.2.2+dfsg-2 [3737 kB]
Get:431 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbabl-0.1-0 armhf 1:0.1.98-1+rpi1 [264 kB]
Get:432 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaom3 armhf 3.6.0-1 [1332 kB]
Get:433 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libva-x11-2 armhf 2.17.0-1 [19.6 kB]
Get:434 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libva-drm2 armhf 2.17.0-1 [15.9 kB]
Get:435 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libva2 armhf 2.17.0-1 [61.1 kB]
Get:436 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvdpau1 armhf 1.5-2 [23.9 kB]
Get:437 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ocl-icd-libopencl1 armhf 2.3.1-1 [40.3 kB]
Get:438 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavutil57 armhf 7:5.1.3-1 [325 kB]
Get:439 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcodec2-1.0 armhf 1.0.5-1 [8151 kB]
Get:440 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdav1d6 armhf 1.0.0-2+rpi1 [205 kB]
Get:441 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgsm1 armhf 1.0.22-1 [28.3 kB]
Get:442 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libhwy1 armhf 1.0.3-3+rpi1 [20.9 kB]
Get:443 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjxl0.7 armhf 0.7.0-10 [627 kB]
Get:444 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmp3lame0 armhf 3.100-6 [347 kB]
Get:445 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenjp2-7 armhf 2.5.0-2 [164 kB]
Get:446 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopus0 armhf 1.3.1-3 [171 kB]
Get:447 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf librav1e0 armhf 0.5.1-6 [521 kB]
Get:448 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librsvg2-common armhf 2.54.7+dfsg-1~deb12u1 [21.0 kB]
Get:449 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librsvg2-2 armhf 2.54.7+dfsg-1~deb12u1 [2205 kB]
Get:450 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsnappy1v5 armhf 1.1.9-3 [23.9 kB]
Get:451 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspeex1 armhf 1.2.1-2 [45.5 kB]
Get:452 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsvtav1enc1 armhf 1.4.1+dfsg-1 [880 kB]
Get:453 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libswresample4 armhf 7:5.1.3-1 [85.1 kB]
Get:454 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libogg0 armhf 1.3.5-3 [21.7 kB]
Get:455 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtheora0 armhf 1.1.1+dfsg.1-16.1 [130 kB]
Get:456 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvpx7 armhf 1.12.0-1 [1210 kB]
Get:457 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebp-dev armhf 1.2.4-0.2 [350 kB]
Get:458 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebpdemux2 armhf 1.2.4-0.2 [98.4 kB]
Get:459 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebpmux3 armhf 1.2.4-0.2 [106 kB]
Get:460 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx264-164 armhf 2:0.164.3095+gitbaee400-3+rpi1 [688 kB]
Get:461 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libx265-199 armhf 3.5-2 [548 kB]
Get:462 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libzvbi0 armhf 0.2.41-1 [241 kB]
Get:463 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libzvbi-common all 0.2.41-1 [69.7 kB]
Get:464 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavcodec59 armhf 7:5.1.3-1 [4578 kB]
Get:732 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf g++ armhf 4:12.2.0-3+rpi1 [1344 B]
Get:465 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libudfread0 armhf 1.1.2-1 [14.6 kB]
Get:466 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbluray2 armhf 1:1.3.4-1 [120 kB]
Get:467 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libchromaprint1 armhf 1.5.1-2+b2 [33.7 kB]
Get:468 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgme0 armhf 0.6.3-6 [105 kB]
Get:469 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmpg123-0 armhf 1.31.2-1 [126 kB]
Get:470 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenmpt0 armhf 0.6.9-1 [597 kB]
Get:471 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librabbitmq4 armhf 0.11.0-1+b1 [38.3 kB]
Get:472 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcjson1 armhf 1.7.15-1 [20.9 kB]
Get:473 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmbedcrypto7 armhf 2.28.3-1 [241 kB]
Get:474 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librist4 armhf 0.2.7+dfsg-1 [67.1 kB]
Get:475 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsrt1.5-gnutls armhf 1.5.1-1 [263 kB]
Get:476 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libssh-gcrypt-4 armhf 0.10.5-2 [185 kB]
Get:477 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libzmq5 armhf 4.3.4-6 [226 kB]
Get:478 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavformat59 armhf 7:5.1.3-1 [1011 kB]
Get:479 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgomp1 armhf 12.2.0-14+rpi1 [95.4 kB]
Get:480 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-glib-1.0-common all 1.6.6-1 [57.1 kB]
Get:481 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-glib-1.0-0 armhf 1.6.6-1 [57.1 kB]
Get:482 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libimath-3-1-29 armhf 3.1.6-1+b1 [37.4 kB]
Get:483 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenexr-3-1-30 armhf 3.1.5-5 [814 kB]
Get:484 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnspr4 armhf 2:4.35-1 [90.9 kB]
Get:485 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnss3 armhf 2:3.87.1-1 [1090 kB]
Get:486 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpoppler126 armhf 22.12.0-2 [1682 kB]
Get:487 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpoppler-glib8 armhf 22.12.0-2 [108 kB]
Get:488 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libraw20 armhf 0.20.2-2.1 [323 kB]
Get:489 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libswscale6 armhf 7:5.1.3-1 [170 kB]
Get:490 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsuitesparseconfig5 armhf 1:5.12.0+dfsg-2 [23.6 kB]
Get:491 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libamd2 armhf 1:5.12.0+dfsg-2 [30.2 kB]
Get:492 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcamd2 armhf 1:5.12.0+dfsg-2 [30.7 kB]
Get:493 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libccolamd2 armhf 1:5.12.0+dfsg-2 [31.7 kB]
Get:494 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcolamd2 armhf 1:5.12.0+dfsg-2 [28.3 kB]
Get:495 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcholmod3 armhf 1:5.12.0+dfsg-2 [212 kB]
Get:496 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libumfpack5 armhf 1:5.12.0+dfsg-2 [128 kB]
Get:497 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgegl-common all 1:0.4.42-2 [745 kB]
Get:498 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgegl-0.4-0 armhf 1:0.4.42-2 [1501 kB]
Get:499 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexiv2-27 armhf 0.27.6-1 [1418 kB]
Get:500 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgexiv2-2 armhf 0.14.0-1 [68.0 kB]
Get:501 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gimp armhf 2.10.34-1 [3526 kB]
Get:502 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgimp2.0 armhf 2.10.34-1 [736 kB]
Get:503 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gimp-data all 2.10.34-1 [14.2 MB]
Get:504 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcdt5 armhf 2.42.2-7+b2 [37.3 kB]
Get:505 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcgraph6 armhf 2.42.2-7+b2 [56.0 kB]
Get:506 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libabsl20220623 armhf 20220623.1-1+rpi1 [361 kB]
Get:507 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgav1-1 armhf 0.18.0-1+rpi1+b1 [285 kB]
Get:508 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libyuv0 armhf 0.0~git20230123.b2528b0-1 [82.7 kB]
Get:509 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavif15 armhf 0.11.1-1 [84.1 kB]
Get:510 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavif-dev armhf 0.11.1-1 [41.7 kB]
Get:511 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libde265-0 armhf 1.0.11-1+rpi1 [137 kB]
Get:512 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libheif1 armhf 1.15.1-1 [178 kB]
Get:513 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaom-dev armhf 3.6.0-1 [1528 kB]
Get:514 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdav1d-dev armhf 1.0.0-2+rpi1 [25.7 kB]
Get:515 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libde265-dev armhf 1.0.11-1+rpi1 [13.8 kB]
Get:516 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libx265-dev armhf 3.5-2 [571 kB]
Err:516 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libx265-dev armhf 3.5-2
  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
Get:517 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libheif-dev armhf 1.15.1-1 [33.5 kB]
Get:518 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjpeg-dev armhf 1:2.1.5-2 [71.8 kB]
Get:519 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzstd-dev armhf 1.5.4+dfsg2-5 [297 kB]
Get:520 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtiffxx6 armhf 4.5.0-6 [144 kB]
Get:521 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblerc-dev armhf 4.0.0+ds-2 [147 kB]
Get:522 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtiff-dev armhf 4.5.0-6 [415 kB]
Get:523 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvpx-dev armhf 1.12.0-1 [658 kB]
Get:524 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgd-dev armhf 2.3.3-9 [237 kB]
Get:525 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgd3 armhf 2.3.3-9 [103 kB]
Get:526 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgts-0.7-5 armhf 0.7.6+darcs121130-5 [134 kB]
Get:527 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf autotools-dev all 20220109.1 [51.6 kB]
Get:528 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf automake all 1:1.16.5-1.3 [823 kB]
Get:529 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libltdl-dev armhf 2.4.7-5 [161 kB]
Get:530 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libltdl7 armhf 2.4.7-5 [390 kB]
Get:531 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpathplan4 armhf 2.42.2-7+b2 [39.5 kB]
Get:532 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgvc6 armhf 2.42.2-7+b2 [566 kB]
Get:533 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgvpr2 armhf 2.42.2-7+b2 [162 kB]
Get:534 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblab-gamut1 armhf 2.42.2-7+b2 [197 kB]
Get:535 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf graphviz armhf 2.42.2-7+b2 [479 kB]
Get:536 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgpm2 armhf 1.20.7-10+b2 [35.5 kB]
Get:537 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libslang2 armhf 2.3.3-3 [500 kB]
Get:538 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaa1 armhf 1.4p5-50 [50.8 kB]
Get:539 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs9-common all 10.0.0~dfsg-11+deb12u1 [27.6 kB]
Get:540 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs-common all 10.0.0~dfsg-11+deb12u1 [149 kB]
Get:541 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs10-common all 10.0.0~dfsg-11+deb12u1 [586 kB]
Get:542 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf poppler-data all 0.4.12-1 [1601 kB]
Get:543 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libidn12 armhf 1.41-1+b1 [77.0 kB]
Get:544 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjbig2dec0 armhf 0.19-3+b2 [58.6 kB]
Get:545 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpaper1 armhf 1.1.29 [11.9 kB]
Get:546 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs10 armhf 10.0.0~dfsg-11+deb12u1 [2055 kB]
Get:547 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgudev-1.0-0 armhf 237-2 [13.2 kB]
Get:548 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwmf0.2-7 armhf 0.2.12-5.1 [25.8 kB]
Get:549 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwmflite-0.2-7 armhf 0.2.12-5.1 [67.9 kB]
Get:550 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwmf-0.2-7 armhf 0.2.12-5.1 [101 kB]
Get:551 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libssl-dev armhf 3.0.9-1 [2099 kB]
Get:552 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libuv1-dev armhf 1.44.2-1+rpi1 [157 kB]
Get:553 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libuv1 armhf 1.44.2-1+rpi1 [125 kB]
Get:554 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libc-ares2 armhf 1.18.1-3 [95.4 kB]
Get:555 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnghttp2-14 armhf 1.52.0-1 [60.6 kB]
Get:556 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-xtend all 4.0.2-3 [3932 B]
Get:557 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnode-dev armhf 18.13.0+dfsg1-1+rpi1 [498 kB]
Get:558 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf nodejs armhf 18.13.0+dfsg1-1+rpi1 [304 kB]
Get:559 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-acorn all 8.8.1+ds+~cs25.17.7-2 [128 kB]
Get:560 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cjs-module-lexer all 1.2.2+dfsg-5 [30.1 kB]
Get:561 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-busboy all 1.6.0+~cs2.6.0-2 [16.9 kB]
Get:562 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-undici all 5.15.0+dfsg1+~cs20.10.9.3-1+deb12u1 [284 kB]
Get:563 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnode108 armhf 18.13.0+dfsg1-1+rpi1 [8798 kB]
Get:564 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libevdev2 armhf 1.13.0+dfsg-1+rpi1 [27.9 kB]
Get:565 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libinput10 armhf 1.22.1-1 [106 kB]
Get:566 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libinput-bin armhf 1.22.1-1 [21.7 kB]
Get:567 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwacom-common all 2.6.0-1 [58.4 kB]
Get:568 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwacom9 armhf 2.6.0-1 [18.5 kB]
Get:569 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf logsave armhf 1.47.0-2 [19.1 kB]
Get:570 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf klibc-utils armhf 2.0.12-1+rpi1 [87.1 kB]
Get:571 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf initramfs-tools all 0.142 [72.9 kB]
Get:572 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf initramfs-tools-core all 0.142 [105 kB]
Get:573 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libext2fs2 armhf 1.47.0-2 [184 kB]
Get:574 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf e2fsprogs armhf 1.47.0-2 [521 kB]
Get:575 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libklibc armhf 2.0.12-1+rpi1 [42.1 kB]
Get:576 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf linux-base all 4.9 [31.8 kB]
Get:577 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpio armhf 2.13+dfsg-7.1 [229 kB]
Get:578 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cron-daemon-common all 3.0pl1-162 [12.7 kB]
Get:579 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cron armhf 3.0pl1-162 [68.2 kB]
Get:580 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsctp-dev armhf 1.0.19+dfsg-2 [71.5 kB]
Get:581 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsctp1 armhf 1.0.19+dfsg-2 [29.1 kB]
Get:582 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapr1-dev armhf 1.7.2-3 [732 kB]
Get:583 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1-dbd-sqlite3 armhf 1.6.3-1 [12.3 kB]
Get:584 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1-ldap armhf 1.6.3-1 [11.3 kB]
Get:585 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldap2-dev all 2.5.13+dfsg-5+rpi1 [22.7 kB]
Get:586 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldap-dev armhf 2.5.13+dfsg-5+rpi1 [259 kB]
Get:587 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1-dev armhf 1.6.3-1 [397 kB]
Get:588 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1 armhf 1.6.3-1 [75.2 kB]
Get:589 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapr1 armhf 1.7.2-3 [82.4 kB]
Get:590 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf curl armhf 7.88.1-10+rpi1 [300 kB]
Get:591 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpsl5 armhf 0.21.2-1 [57.5 kB]
Get:592 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libssh2-1 armhf 1.10.0-3+b1 [161 kB]
Get:593 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl4 armhf 7.88.1-10+rpi1 [343 kB]
Get:594 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblua5.3-0 armhf 5.3.6-2 [98.3 kB]
Get:595 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2 armhf 2.4.57-2 [215 kB]
Get:596 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-bin armhf 2.4.57-2 [1161 kB]
Get:597 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-data all 2.4.57-2 [160 kB]
Get:598 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-utils armhf 2.4.57-2 [201 kB]
Get:599 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf flex armhf 2.6.4-8.2 [391 kB]
Get:600 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf git armhf 1:2.39.2-1.1 [5459 kB]
Get:601 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf git-man all 1:2.39.2-1.1 [2049 kB]
Get:602 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl4-gnutls-dev armhf 7.88.1-10+rpi1 [419 kB]
Get:603 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl3-gnutls armhf 7.88.1-10+rpi1 [337 kB]
Get:604 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liberror-perl all 0.17029-2 [29.0 kB]
Get:605 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcbor0.8 armhf 0.8.0-2 [22.8 kB]
Get:606 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfido2-1 armhf 1.12.0-2 [67.6 kB]
Get:607 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssh-sftp-server armhf 1:9.2p1-2 [55.5 kB]
Get:608 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssh-server armhf 1:9.2p1-2 [377 kB]
Get:609 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssh-client armhf 1:9.2p1-2 [818 kB]
Get:610 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf runit-helper all 2.15.2 [6520 B]
Get:611 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwrap0-dev armhf 7.6.q-32 [18.4 kB]
Get:612 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwrap0 armhf 7.6.q-32 [52.6 kB]
Get:613 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libhiredis0.14 armhf 0.14.1-3 [30.7 kB]
Get:614 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libhashkit2 armhf 1.1.4-1 [16.3 kB]
Get:615 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmemcached11 armhf 1.1.4-1 [70.2 kB]
Get:616 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmemcachedutil2 armhf 1.1.4-1 [13.7 kB]
Get:617 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf proftpd-core armhf 1.3.8+dfsg-4+deb12u1 [2437 kB]
Get:618 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libatopology2 armhf 1.2.8-1+b1 [47.0 kB]
Get:619 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasound2-dev armhf 1.2.8-1+b1 [110 kB]
Get:620 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasound2 armhf 1.2.8-1+b1 [302 kB]
Get:621 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libasound2-data all 1.2.8-1 [20.5 kB]
Get:622 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfftw3-single3 armhf 3.3.10-1 [509 kB]
Get:623 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgstreamer1.0-0 armhf 1.22.0-2 [1073 kB]
Get:624 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liborc-0.4-0 armhf 1:0.4.33-2 [135 kB]
Get:625 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iso-codes all 4.15.0-1 [2906 kB]
Get:626 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-plugins-base1.0-0 armhf 1.22.0-3+deb12u1 [840 kB]
Get:627 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libflac12 armhf 1.4.2+ds-2 [149 kB]
Get:628 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsndfile1 armhf 1.2.0-1 [177 kB]
Get:629 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpulsedsp armhf 16.1+dfsg1-2+b2 [34.8 kB]
Get:630 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf pulseaudio armhf 16.1+dfsg1-2+b2 [1079 kB]
Get:631 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf pulseaudio-utils armhf 16.1+dfsg1-2+b2 [81.8 kB]
Get:632 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasyncns0 armhf 0.8-6+b3 [12.0 kB]
Get:633 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpulse0 armhf 16.1+dfsg1-2+b2 [239 kB]
Get:634 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspeexdsp1 armhf 1.2.1-1 [33.6 kB]
Get:635 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjack-dev armhf 1:0.126.0-2 [148 kB]
Get:636 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjack0 armhf 1:0.126.0-2 [81.1 kB]
Get:637 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsamplerate0 armhf 0.2.2-3 [943 kB]
Get:638 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libasound2-plugins armhf 1.2.7.1-1 [66.4 kB]
Get:639 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rsync armhf 3.2.7-1 [368 kB]
Get:640 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf sgml-base all 1.31 [15.4 kB]
Get:641 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf sudo armhf 1.9.13p3-1+deb12u1 [1825 kB]
Get:642 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre3-dev armhf 2:8.39-15 [576 kB]
Get:643 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre16-3 armhf 2:8.39-15 [234 kB]
Get:644 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre32-3 armhf 2:8.39-15 [225 kB]
Get:645 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcrecpp0v5 armhf 2:8.39-15 [141 kB]
Get:646 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre3 armhf 2:8.39-15 [313 kB]
Get:647 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgc1 armhf 1:8.2.2-3 [235 kB]
Get:648 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc4 armhf 12.2.0-14+rpi1 [33.6 kB]
Get:649 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc-10-dev armhf 10.4.0-7+rpi1 [159 kB]
Get:650 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-11-base armhf 11.3.0-12+rpi1 [38.6 kB]
Get:651 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasan6 armhf 11.3.0-12+rpi1 [1946 kB]
Get:652 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libubsan1 armhf 12.2.0-14+rpi1 [861 kB]
Get:653 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf g++-10 armhf 10.4.0-7+rpi1 [7360 kB]
Get:654 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-10 armhf 10.4.0-7+rpi1 [13.4 MB]
Get:1047 http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian bookworm/main armhf node-is-typedarray all 1.0.0-4 [3292 B]
Get:655 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++-10-dev armhf 10.4.0-7+rpi1 [1763 kB]
Get:656 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-10-dev armhf 10.4.0-7+rpi1 [682 kB]
Get:657 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libisl23 armhf 0.25-1 [519 kB]
Get:658 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmpfr6 armhf 4.2.0-1 [574 kB]
Get:659 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmpc3 armhf 1.3.1-1 [41.0 kB]
Get:660 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcc1-0 armhf 12.2.0-14+rpi1 [32.2 kB]
Get:661 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpp-10 armhf 10.4.0-7+rpi1 [6697 kB]
Get:662 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-10-base armhf 10.4.0-7+rpi1 [36.0 kB]
Get:663 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libplymouth5 armhf 22.02.122-3 [84.3 kB]
Get:664 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf plymouth armhf 22.02.122-3 [121 kB]
Get:665 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mawk armhf 1.3.4.20200120-3.1 [102 kB]
Get:666 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf tzdata all 2023c-5 [296 kB]
Get:667 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dmidecode armhf 3.4-1 [55.4 kB]
Get:668 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf groff-base armhf 1.22.4-10 [774 kB]
Get:669 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iputils-ping armhf 3:20221126-1 [43.9 kB]
Get:670 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf isc-dhcp-client armhf 4.4.3-P1-2 [945 kB]
Get:671 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bsdextrautils armhf 2.38.1-5 [78.5 kB]
Get:672 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpipeline1 armhf 1.5.7-1 [33.4 kB]
Get:673 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf man-db armhf 2.11.2-2 [1342 kB]
Get:674 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf nano armhf 7.2-1 [663 kB]
Get:675 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf netcat-openbsd armhf 1.219-1 [38.9 kB]
Get:676 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bash-completion all 1:2.11-6 [234 kB]
Get:677 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf file armhf 1:5.44-3 [41.5 kB]
Get:678 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmagic-dev armhf 1:5.44-3 [107 kB]
Get:679 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmagic1 armhf 1:5.44-3 [95.3 kB]
Get:680 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmagic-mgc armhf 1:5.44-3 [305 kB]
Get:681 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gettext-base armhf 0.21-12 [156 kB]
Get:682 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf lsof armhf 4.95.0-1+rpi1 [305 kB]
Get:683 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libutempter0 armhf 1.2.1-3 [8404 B]
Get:684 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf screen armhf 4.9.0-4 [539 kB]
Get:685 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf wget armhf 1.21.3-1+b1 [942 kB]
Get:686 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xz-utils armhf 5.4.1-0.2 [467 kB]
Get:687 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf alsa-utils armhf 1.2.8-1 [1057 kB]
Get:688 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dpkg-dev all 1.21.22+rpi1 [1353 kB]
Get:689 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf debhelper all 13.11.4 [942 kB]
Get:690 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdebhelper-perl all 13.11.4 [81.2 kB]
Get:691 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdpkg-perl all 1.21.22+rpi1 [603 kB]
Get:692 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsub-override-perl all 0.09-4 [9304 B]
Get:693 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dh-strip-nondeterminism all 1.13.1-1 [8620 B]
Get:694 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfile-stripnondeterminism-perl all 1.13.1-1 [19.4 kB]
Get:695 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dwz armhf 0.15-1 [92.4 kB]
Get:696 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-dev armhf 2.4.57-2 [306 kB]
Get:697 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libregexp-assemble-perl all 0.38-2 [77.8 kB]
Get:698 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apt-file all 3.3 [39.1 kB]
Get:699 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf autoconf2.64 all 2.64+dfsg-1.1 [480 kB]
Get:700 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gettext armhf 0.21-12 [1201 kB]
Get:701 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf autopoint all 0.21-12 [495 kB]
Get:702 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf bison armhf 2:3.8.2+dfsg-1 [1114 kB]
Get:703 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bubblewrap armhf 0.8.0-2 [42.7 kB]
Get:704 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libllvm14 armhf 1:14.0.6-12+rpi1 [19.5 MB]
Get:1180 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdb-dev armhf 5.3.2 [1744 B]
Get:705 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-cpp14 armhf 1:14.0.6-12+rpi1 [9464 kB]
Get:706 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasan8 armhf 12.2.0-14+rpi1 [2088 kB]
Get:707 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-12-dev armhf 12.2.0-14+rpi1 [727 kB]
Get:708 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++-12-dev armhf 12.2.0-14+rpi1 [2027 kB]
Get:709 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc-12-dev armhf 12.2.0-14+rpi1 [159 kB]
Get:710 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-common-14-dev all 1:14.0.6-12+rpi1 [891 kB]
Get:711 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf llvm-14-linker-tools armhf 1:14.0.6-12+rpi1 [1044 kB]
Get:712 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang1-14 armhf 1:14.0.6-12+rpi1 [5208 kB]
Get:713 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf clang-14 armhf 1:14.0.6-12+rpi1 [95.7 kB]
Err:713 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf clang-14 armhf 1:14.0.6-12+rpi1
  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
Get:714 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf clang armhf 1:14.0-55.6 [4972 B]
Get:715 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf clang-11 armhf 1:11.1.0-6+rpi2 [77.6 kB]
Get:716 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-common-11-dev armhf 1:11.1.0-6+rpi2 [2794 kB]
Get:717 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-cpp11 armhf 1:11.1.0-6+rpi2 [8244 kB]
Get:718 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libllvm11 armhf 1:11.1.0-6+rpi2 [15.6 MB]
Get:719 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-11-dev armhf 11.3.0-12+rpi1 [698 kB]
Get:720 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++-11-dev armhf 11.3.0-12+rpi1 [1976 kB]
Get:721 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc-11-dev armhf 11.3.0-12+rpi1 [160 kB]
Get:722 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf llvm-11-linker-tools armhf 1:11.1.0-6+rpi2 [912 kB]
Get:723 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang1-11 armhf 1:11.1.0-6+rpi2 [4620 kB]
Get:724 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libarchive13 armhf 3.6.2-1 [293 kB]
Get:725 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjsoncpp25 armhf 1.9.5-4 [66.7 kB]
Get:726 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf librhash0 armhf 1.4.3-3 [142 kB]
Get:727 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cmake armhf 3.25.1-1 [3859 kB]
Get:728 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cmake-data all 3.25.1-1 [2026 kB]
Get:729 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf colorized-logs armhf 2.6-1 [15.4 kB]
Get:730 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpp-12 armhf 12.2.0-14+rpi1 [7159 kB]
Get:731 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-12 armhf 12.2.0-14+rpi1 [14.2 MB]
Get:733 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc armhf 4:12.2.0-3+rpi1 [5216 B]
Get:734 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf g++-12 armhf 12.2.0-14+rpi1 [7914 kB]
Get:735 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpp armhf 4:12.2.0-3+rpi1 [7048 B]
Get:736 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mysql-common all 5.8+1.1.0 [6636 B]
Get:737 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mariadb-common all 1:10.11.3-1+rpi1 [24.1 kB]
Get:738 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmariadb-dev-compat armhf 1:10.11.3-1+rpi1 [22.9 kB]
Get:739 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmariadb-dev armhf 1:10.11.3-1+rpi1 [247 kB]
Get:740 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmariadb3 armhf 1:10.11.3-1+rpi1 [154 kB]
Get:741 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf default-libmysqlclient-dev armhf 1.1.0 [3092 B]
Get:742 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfdt1 armhf 1.6.1-4+b1 [15.7 kB]
Get:743 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libyaml-0-2 armhf 0.2.5-1 [44.6 kB]
Get:744 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf device-tree-compiler armhf 1.6.1-4+b1 [216 kB]
Get:745 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf emacsen-common all 3.0.5 [12.3 kB]
Get:746 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dictionaries-common all 1.29.5 [184 kB]
Get:747 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf distro-info-data all 0.58 [5848 B]
Get:748 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-fast-deep-equal all 3.1.3-3 [5768 B]
Get:749 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-json-schema-traverse all 1.0.0-3 [6308 B]
Get:750 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsonify all 0.0.1-1 [8704 B]
Get:751 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-stable-stringify all 1.0.2+~cs5.2.34-1 [11.3 kB]
Get:752 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-punycode all 2.1.1-6 [9444 B]
Get:753 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-uri-js all 4.4.0+dfsg-8 [47.3 kB]
Get:754 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ajv all 6.12.6-3 [74.0 kB]
Get:755 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-inherits all 2.0.4-6 [3548 B]
Get:756 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-inherits all 2.0.4-6 [4548 B]
Get:757 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-util-is all 1.0.3-1 [4072 B]
Get:758 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-safe-buffer all 5.2.1+~cs2.1.2-3 [15.5 kB]
Get:759 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-string-decoder all 1.3.0-6 [7180 B]
Get:760 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-process-nextick-args all 2.0.1-3 [3816 B]
Get:761 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-util-deprecate all 1.0.2-3 [4436 B]
Get:762 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-isarray all 2.0.5-4 [4040 B]
Get:763 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-readable-stream all 3.6.0+~cs3.0.0-4 [32.0 kB]
Get:764 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-typedarray all 0.0.7-1 [11.4 kB]
Get:765 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-concat-stream all 2.0.0+~2.0.0-2 [6388 B]
Get:766 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ms all 2.1.3+~cs0.7.31-3 [5648 B]
Get:767 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-debug all 4.3.4+~cs4.1.7-1 [18.1 kB]
Get:768 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-esutils all 2.0.3+~2.0.0-1 [12.4 kB]
Get:769 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-doctrine all 3.0.0-4 [19.9 kB]
Get:770 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-eslint-visitor-keys all 3.3.0+~1.0.0-1 [17.1 kB]
Get:771 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-estraverse all 5.3.0+ds+~5.1.1-1 [11.6 kB]
Get:772 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-object-assign all 4.1.1-7 [4684 B]
Get:773 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-esrecurse all 4.3.0-2 [6048 B]
Get:774 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-eslint-scope all 7.1.1+~3.7.4-1 [35.6 kB]
Get:775 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-espree all 9.4.1~dfsg-1 [41.0 kB]
Get:776 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-esquery all 1.4.2~ds-1 [24.9 kB]
Get:777 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-eslint-utils all 3.0.0-3 [15.5 kB]
Get:778 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-flatted all 3.2.7~ds-1 [10.3 kB]
Get:779 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-fs.realpath all 1.0.0-3 [6172 B]
Get:780 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wrappy all 1.0.2-3 [3776 B]
Get:781 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-once all 1.4.0-7 [4492 B]
Get:782 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-inflight all 1.0.6-2 [3952 B]
Get:783 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-balanced-match all 2.0.0-1 [4872 B]
Get:784 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-brace-expansion all 2.0.1-2 [7320 B]
Get:785 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-minimatch all 5.1.1+~5.1.2-1 [18.6 kB]
Get:786 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-glob all 8.0.3+~cs8.4.15-1 [133 kB]
Get:787 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-rimraf all 3.0.2-2 [11.1 kB]
Get:788 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-write all 2.0.0~6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5 [17.8 kB]
Get:789 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-flat-cache all 3.0.4~6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5 [20.1 kB]
Get:790 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-file-entry-cache all 6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5 [15.0 kB]
Get:791 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-functional-red-black-tree all 1.0.1+20181105-7 [14.1 kB]
Get:792 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-extglob all 2.1.1-5 [4612 B]
Get:793 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-glob all 4.0.3-2 [6620 B]
Get:794 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-dirname all 1.0.2-2 [4312 B]
Get:795 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-glob-parent all 6.0.2+~5.1.1-2 [8784 B]
Get:796 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-globals all 13.18.0-1 [11.1 kB]
Get:797 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-imurmurhash all 0.1.4+dfsg+~0.1.1-2 [8412 B]
Get:798 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ignore all 5.2.1-1 [26.4 kB]
Get:799 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-prelude-ls all 1.2.1+dfsg-3 [11.3 kB]
Get:800 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-type-check all 0.4.0+dfsg-3 [9184 B]
Get:801 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-levn all 0.4.1+dfsg-2 [10.2 kB]
Get:802 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-lodash all 4.17.21+dfsg+~cs8.31.198.20210220-9 [462 kB]
Get:803 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-memfs all 3.4.12+~cs1.0.3-1 [46.8 kB]
Get:804 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-mkdirp all 1.0.4+~1.0.2-4 [11.6 kB]
Get:805 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-deep-is all 0.1.4-1 [5136 B]
Get:806 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fast-levenshtein all 2.0.6+ds-3 [6040 B]
Get:807 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-optionator all 0.9.1+dfsg+~cs1.2.3-1 [17.6 kB]
Get:808 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-progress all 2.0.3-2 [8256 B]
Get:809 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-regenerate all 1.4.2-3 [14.3 kB]
Get:810 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-regenerate all 1.4.2-3 [7388 B]
Get:811 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regenerate-unicode-properties all 10.1.0+ds-1 [50.7 kB]
Get:812 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-regexpp all 3.2.0-4 [27.0 kB]
Get:813 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-abbrev all 1.1.1+~1.1.2-1 [5692 B]
Get:814 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-agent-base all 6.0.2+~cs5.4.2-2 [17.3 kB]
Get:815 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-aproba all 2.0.0-3 [5844 B]
Get:816 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-archy all 1.0.0-6 [4556 B]
Get:817 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-base64-js all 1.5.1+dfsg+~1.3.0-2 [7140 B]
Get:818 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-binary-extensions all 2.2.0-2 [4408 B]
Get:819 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-color-name all 1.1.4+~1.1.1-2 [5920 B]
Get:820 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-color-convert all 2.0.1+~cs2.0.0-2 [13.1 kB]
Get:821 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansi-styles all 6.2.1-2 [8640 B]
Get:822 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-escape-string-regexp all 4.0.0-2 [4296 B]
Get:823 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-has-flag all 4.0.0-3 [4304 B]
Get:824 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-supports-color all 8.1.1+~8.1.1-1 [6920 B]
Get:825 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chalk all 5.2.0-1 [18.0 kB]
Get:826 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chownr all 2.0.0-2 [4424 B]
Get:827 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ci-info all 3.6.1+~cs1.1.0-1 [11.7 kB]
Get:828 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-colors all 1.4.0-4 [11.9 kB]
Get:829 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-slice-ansi all 5.0.0+~cs9.0.0-5 [8788 B]
Get:830 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansi-regex all 5.0.1-1 [4912 B]
Get:831 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-strip-ansi all 6.0.1-2 [4120 B]
Get:832 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-clone all 2.1.2-4 [8280 B]
Get:833 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-defaults all 1.0.4+~1.0.3-1 [4400 B]
Get:834 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wcwidth.js all 1.0.2-2 [7088 B]
Get:835 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-string-width all 4.2.3+~cs13.2.3-1 [10.7 kB]
Get:836 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cli-table all 0.3.11+~cs0.13.4-3 [23.6 kB]
Get:837 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-columnify all 1.6.0+~1.5.1-1 [12.4 kB]
Get:838 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-css-selector-tokenizer all 0.8.0+~cs4.8.3-1 [13.0 kB]
Get:839 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-depd all 2.0.0-2 [11.2 kB]
Get:840 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-diff all 5.0.0~dfsg+~5.0.1-4 [69.7 kB]
Get:841 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-iconv-lite all 0.6.3-3 [115 kB]
Get:842 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-encoding all 0.1.13-2 [4400 B]
Get:843 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-events all 3.3.0+~3.0.0-3 [11.3 kB]
Get:844 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-events all 3.3.0+~3.0.0-3 [5888 B]
Get:845 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-mimic-response all 3.1.0-8 [5404 B]
Get:846 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-decompress-response all 6.0.0-2 [4620 B]
Get:847 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-end-of-stream all 1.4.4+~1.4.1-1 [5292 B]
Get:848 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-pump all 3.0.0-5 [5136 B]
Get:849 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-get-stream all 6.0.1-1 [7208 B]
Get:850 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-lowercase-keys all 2.0.0-2 [3768 B]
Get:851 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-buffer all 3.0.1+~3.0.0-1 [4536 B]
Get:852 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-p-cancelable all 2.1.1-1 [7272 B]
Get:853 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-quick-lru all 6.1.1-4 [8076 B]
Get:854 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-got all 11.8.5+~cs58.13.36-3 [121 kB]
Get:855 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-graceful-fs all 4.2.10-1 [14.4 kB]
Get:856 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-six all 1.16.0-4 [17.5 kB]
Get:857 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gyp all 0.1+20220404git9ecf45e-2 [237 kB]
Get:858 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-https-proxy-agent all 5.0.1+~cs8.0.0-3 [16.1 kB]
Get:859 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-data-uri-to-buffer all 4.0.0-3 [5540 B]
Get:860 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fetch all 3.3.0+~cs11.4.11-2 [212 kB]
Get:861 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-nopt all 5.0.0-4 [12.1 kB]
Get:862 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-delegates all 1.0.0-3 [4528 B]
Get:863 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-are-we-there-yet all 3.0.1+~1.1.0-1 [10.0 kB]
Get:864 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-console-control-strings all 1.1.0-3 [5564 B]
Get:865 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-time-stamp all 2.2.0-2 [6016 B]
Get:866 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fancy-log all 1.3.3+~cs1.3.1-2 [7940 B]
Get:867 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-has-unicode all 2.0.1-5 [3992 B]
Get:868 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-signal-exit all 3.0.7+~3.0.1-1 [7600 B]
Get:869 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wide-align all 1.1.3-4 [4244 B]
Get:870 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-gauge all 4.0.4-1 [19.6 kB]
Get:871 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-set-blocking all 2.0.0-2 [4248 B]
Get:872 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-npmlog all 7.0.1+~4.1.4-1 [11.4 kB]
Get:873 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-osenv all 0.1.5+~0.1.1-1 [5884 B]
Get:874 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsonparse all 1.3.1-10 [8020 B]
Get:875 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-yallist all 4.0.0+~4.0.1-1 [8172 B]
Get:876 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-minipass all 3.3.6+~cs9.4.19-1 [43.0 kB]
Get:877 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-tar all 6.1.13+~cs7.0.5-1 [51.1 kB]
Get:878 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-isexe all 2.0.0+~2.0.1-5 [6084 B]
Get:879 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-which all 2.0.2+~cs1.3.2-3 [8368 B]
Get:880 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-semver all 7.3.5+~7.3.9-2 [42.1 kB]
Get:881 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-gyp all 9.3.0-2 [57.9 kB]
Get:882 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf npm all 9.2.0~ds1-1 [669 kB]
Get:883 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-hosted-git-info all 6.1.1-2 [12.6 kB]
Get:884 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ieee754 all 1.2.1-3 [5268 B]
Get:885 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ini all 3.0.1-2 [6928 B]
Get:886 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ip all 2.0.0+~1.1.0-1 [8128 B]
Get:887 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ip-regex all 4.3.0+~4.1.1-1 [5188 B]
Get:888 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-parse-better-errors all 1.0.2+~cs3.3.1-2 [7800 B]
Get:889 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-negotiator all 0.6.3+~0.6.1-1 [10.8 kB]
Get:890 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-function-bind all 1.1.1+repacked+~1.0.3-2 [5252 B]
Get:891 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-resolve all 1.22.1+~cs5.31.10-1 [28.1 kB]
Get:892 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-spdx-license-ids all 3.0.12-1 [6276 B]
Get:893 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-spdx-exceptions all 2.3.0-2 [3992 B]
Get:894 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-spdx-expression-parse all 3.0.1+~3.0.1-1 [7532 B]
Get:895 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-spdx-correct all 3.1.1-2 [5464 B]
Get:896 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-validate-npm-package-license all 3.0.4-2 [4280 B]
Get:897 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-normalize-package-data all 4.0.1+~2.4.1-1 [13.6 kB]
Get:898 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-slash all 4.0.0-3 [4292 B]
Get:899 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-read-package-json all 5.0.2+~2.0.0-1 [12.0 kB]
Get:900 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-npm-bundled all 2.0.1-2 [6408 B]
Get:901 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-validate-npm-package-name all 5.0.0+~4.0.0-1 [7444 B]
Get:902 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-builtins all 5.0.1-1 [4072 B]
Get:903 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-npm-package-arg all 10.0.0+~3.0.0-2 [11.4 kB]
Get:904 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-indent-string all 4.0.0-2 [4144 B]
Get:905 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-p-map all 4.0.0+~3.1.0+~3.0.1-1 [7912 B]
Get:906 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-camelcase all 7.0.0-3 [6032 B]
Get:907 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-isobject all 4.0.0-2 [5332 B]
Get:908 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-picocolors all 1.0.0-4 [6652 B]
Get:909 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-postcss all 8.4.20+~cs8.0.23-1 [180 kB]
Get:910 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-icss-utils all 5.1.0+~5.1.0-1 [7564 B]
Get:911 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-postcss-modules-extract-imports all 3.0.0-2 [6584 B]
Get:912 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-postcss-modules-values all 4.0.0+~4.0.0-1 [7180 B]
Get:913 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-postcss-value-parser all 4.2.0-1 [10.4 kB]
Get:914 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-caniuse-lite all 1.0.30001436+dfsg+~1.0.1-1 [208 kB]
Get:915 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-electron-to-chromium all 1.4.284-1 [20.6 kB]
Get:916 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-browserslist all 4.21.4+~cs6.1.17-2 [63.5 kB]
Get:917 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-tslib all 2.4.1-1 [19.5 kB]
Get:918 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chrome-trace-event all 1.0.3-2 [6984 B]
Get:919 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-commander all 9.4.1-1 [65.3 kB]
Get:920 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-prr all 1.0.1-3 [4352 B]
Get:921 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-errno all 1.0.0-3 [7736 B]
Get:922 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-memory-fs all 0.5.0+~0.3.3-2 [7676 B]
Get:923 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-tapable all 2.2.1-2 [13.6 kB]
Get:924 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-enhanced-resolve all 5.10.0-1 [33.6 kB]
Get:925 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-es-module-lexer all 1.1.0+dfsg-2 [19.7 kB]
Get:926 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ansi-escapes all 5.0.0+really.4.3.1-1 [8896 B]
Get:927 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ampproject-remapping all 2.2.0+~cs5.15.37-1 [59.4 kB]
Get:928 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-add-module-exports all 1.0.4+dfsg1~cs5.8.0-4 [8672 B]
Get:929 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regenerator-runtime all 0.15.1+~0.10.8-1 [10.6 kB]
Get:930 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel7-runtime all 7.20.15+ds1+~cs214.269.168-3 [116 kB]
Get:931 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-lodash-packages all 4.17.21+dfsg+~cs8.31.198.20210220-9 [179 kB]
Get:932 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-helper-define-polyfill-provider all 0.3.3~0~20220913+ds1-1 [27.4 kB]
Get:933 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-polyfill-corejs2 all 0.3.3~0~20220913+ds1-1 [17.1 kB]
Get:934 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-js-compat all 3.26.1-3 [66.1 kB]
Get:935 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-polyfill-corejs3 all 0.6.0~0~20220913+ds1-1 [29.5 kB]
Get:936 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-polyfill-regenerator all 0.4.1~0~20220913+ds1-1 [5036 B]
Get:937 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-for-in all 1.0.2-4 [4840 B]
Get:938 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-for-own all 1.0.0-3 [4800 B]
Get:939 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-plain-object all 5.0.0-7 [6108 B]
Get:940 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-extendable all 1.0.1-3 [5228 B]
Get:941 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-buffer all 2.0.5-2 [4112 B]
Get:942 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-kind-of all 6.0.3+dfsg-2 [10.2 kB]
Get:943 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-clone-deep all 4.0.1+~cs7.0.2-1 [6720 B]
Get:944 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-convert-source-map all 1.9.0+~1.5.2-1 [8176 B]
Get:945 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-js all 3.26.1-3 [268 kB]
Get:946 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-js-pure all 3.26.1-3 [250 kB]
Get:947 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-commondir all 1.0.1+~1.0.0-1 [4388 B]
Get:948 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-number all 7.0.0-4 [6020 B]
Get:949 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-repeat-string all 1.6.1+repack-1 [5600 B]
Get:950 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-to-regex-range all 5.0.1-4 [10.5 kB]
Get:951 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fill-range all 7.0.1+~7.0.0-1 [8952 B]
Get:952 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-braces all 3.0.2+~3.0.1-1 [20.8 kB]
Get:953 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-normalize-path all 3.0.0+~3.0.0-1 [6608 B]
Get:954 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-anymatch all 3.1.3+~cs4.6.1-2 [33.4 kB]
Get:955 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-micromatch all 4.0.5+~4.0.2-1 [25.8 kB]
Get:956 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-pify all 5.0.0+~cs5.0.1-1 [7072 B]
Get:957 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-type all 4.0.0-3 [3944 B]
Get:958 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-n3 all 1.16.3+~1.2.3+~1.10.4-1 [37.0 kB]
Get:959 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-globby all 13.1.3+~cs16.25.40-1 [40.3 kB]
Get:960 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-path-cwd all 2.2.0-2 [3672 B]
Get:961 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-path-is-inside all 1.0.2+~1.0.0-1 [5072 B]
Get:962 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-path-inside all 3.0.3-2 [3980 B]
Get:963 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-del all 7.0.0-5 [6804 B]
Get:964 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-make-dir all 3.1.0-3 [6040 B]
Get:965 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-p-limit all 4.0.0+~cs4.0.0-5 [7576 B]
Get:966 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-p-locate all 6.0.0-12 [5752 B]
Get:967 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-locate-path all 7.1.1-2 [5584 B]
Get:968 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-exists all 5.0.0-8 [4732 B]
Get:969 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-find-up all 6.3.0-7 [9388 B]
Get:970 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-pkg-dir all 5.0.0-2 [4260 B]
Get:971 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-find-cache-dir all 3.3.2+~3.2.1-1 [6152 B]
Get:972 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fs-readdir-recursive all 1.1.0+~1.1.0-1 [4540 B]
Get:973 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-js-tokens all 8.0.0-2 [14.9 kB]
Get:974 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jsesc all 3.0.2+~3.0.1-1 [17.6 kB]
Get:975 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json5 all 2.2.3+dfsg-1 [25.6 kB]
Get:976 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regenerator-transform all 0.15.1+~0.10.8-1 [24.6 kB]
Get:977 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regjsgen all 0.7.1+ds-1 [6968 B]
Get:978 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regjsparser all 0.9.1+ds-2 [22.1 kB]
Get:979 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-unicode-canonical-property-names-ecmascript all 2.0.0-2 [4540 B]
Get:980 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-unicode-property-aliases-ecmascript all 2.1.0+ds-1 [5256 B]
Get:981 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-unicode-match-property-ecmascript all 2.0.0-2 [4440 B]
Get:982 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-unicode-match-property-value-ecmascript all 2.1.0+ds-1 [7272 B]
Get:983 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-regexpu-core all 5.2.2-3 [13.9 kB]
Get:984 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-source-map all 0.7.0++dfsg2+really.0.6.1-15 [29.6 kB]
Get:985 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-source-map all 0.7.0++dfsg2+really.0.6.1-15 [41.7 kB]
Get:986 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-source-map-support all 0.5.21+ds+~0.5.4-1 [14.5 kB]
Get:987 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-to-fast-properties all 3.0.1-3 [4332 B]
Get:988 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-v8flags all 3.2.0+~3.1.1-1 [7612 B]
Get:989 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel7 all 7.20.15+ds1+~cs214.269.168-3 [712 kB]
Get:990 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-lodash all 3.3.4+~cs2.0.1-6 [11.0 kB]
Get:991 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-resolve-cwd all 3.0.0-2 [4212 B]
Get:992 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jest-debbundle all 29.3.1~ds1+~cs70.48.25-2 [129 kB]
Get:993 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-interpret all 2.2.0-3 [7660 B]
Get:994 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-merge-stream all 2.0.0+~1.1.2-2 [5124 B]
Get:995 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jest-worker all 29.3.1~ds1+~cs70.48.25-2 [112 kB]
Get:996 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-loader-runner all 4.3.0-1 [7644 B]
Get:997 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-mime all 3.0.0+dfsg+~cs3.97.1-1 [40.4 kB]
Get:998 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-mime-types all 2.1.35-1 [9456 B]
Get:999 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-neo-async all 2.6.2+~cs3.0.0-2 [35.2 kB]
Get:1000 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-rechoir all 0.8.0+~0.6.1-2 [6628 B]
Get:1001 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ajv-keywords all 3.5.2-2 [20.3 kB]
Get:1002 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-schema-utils all 3.1.1~ds-2 [20.0 kB]
Get:1003 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-randombytes all 2.1.0+~2.0.0-2 [4852 B]
Get:1004 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-serialize-javascript all 6.0.0-2 [12.7 kB]
Get:1005 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-async-each all 1.0.3-3 [4292 B]
Get:1006 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-binary-path all 2.1.0-5 [3684 B]
Get:1007 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-is-absolute all 2.0.0-2 [4068 B]
Get:1008 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-set-immediate-shim all 2.0.0-2 [3740 B]
Get:1009 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-readdirp all 3.6.0-1 [11.5 kB]
Get:1010 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chokidar all 3.5.3-2 [32.3 kB]
Get:1011 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-watchpack all 2.4.0+~cs2.8.1-1 [20.2 kB]
Get:1012 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-define-properties all 1.1.4+~1.1.3-1 [6828 B]
Get:1013 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-defined all 1.0.1+~1.0.0-1 [6776 B]
Get:1014 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-arrify all 2.0.1-3 [3700 B]
Get:1015 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-plain-obj all 3.0.0-2 [3972 B]
Get:1016 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-minimist all 1.2.7+~cs5.3.2-2 [14.7 kB]
Get:1017 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wordwrap all 1.0.0-4 [4628 B]
Get:1018 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-optimist all 0.6.1+~0.0.30-2 [13.5 kB]
Get:1019 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf handlebars all 3:4.7.7+~4.1.0-1 [199 kB]
Get:1020 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-prettify all 2015.12.04+dfsg-1.1 [41.7 kB]
Get:1021 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-async all 0.8.0-6 [24.2 kB]
Get:1022 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-async all 0.8.0-6 [3748 B]
Get:1023 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-decamelize all 4.0.0-2 [4080 B]
Get:1024 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-es6-error all 4.1.1-5 [6148 B]
Get:1025 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-esprima all 4.0.1+ds+~4.0.3-2 [69.3 kB]
Get:1026 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-escodegen all 2.0.0+dfsg+~0.0.7-2 [23.0 kB]
Get:1027 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-foreground-child all 2.0.0-5 [6384 B]
Get:1028 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-stream all 3.0.0-4 [5076 B]
Get:1029 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-is-windows all 1.0.2+~cs1.0.0-1 [5936 B]
Get:1030 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-sprintf-js all 1.1.2+ds1+~1.1.2-1 [12.8 kB]
Get:1031 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-sprintf-js all 1.1.2+ds1+~1.1.2-1 [4024 B]
Get:1032 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-argparse all 2.0.1-2 [34.6 kB]
Get:1033 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-js-yaml all 4.1.0+dfsg+~4.0.5-7 [66.6 kB]
Get:1034 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-npm-run-path all 5.1.0+~4.0.0-8 [6276 B]
Get:1035 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-shebang-regex all 3.0.0-2 [3528 B]
Get:1036 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-shebang-command all 2.0.0-1 [3500 B]
Get:1037 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-strip-bom all 4.0.0-2 [4144 B]
Get:1038 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-util all 0.12.5+~1.0.10-1 [16.0 kB]
Get:1039 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-util all 0.12.5+~1.0.10-1 [5700 B]
Get:1040 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-assert all 2.0.0+~cs3.9.8-2 [26.8 kB]
Get:1041 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-arrayish all 0.3.2-3 [3960 B]
Get:1042 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-error-ex all 1.3.2-4 [5656 B]
Get:1043 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-parse-json all 5.2.0+~cs5.1.7-1 [7356 B]
Get:1044 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-read-pkg all 5.2.0-2 [24.0 kB]
Get:1045 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-uuid all 8.3.2+~8.3.3-3 [44.0 kB]
Get:1046 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-is-typedarray all 1.0.0-4 [3816 B]
Get:1048 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-typedarray-to-buffer all 4.0.0-2 [3380 B]
Get:1049 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-typedarray-to-buffer all 4.0.0-2 [4668 B]
Get:1050 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-write-file-atomic all 4.0.2+~4.0.0-1 [9284 B]
Get:1051 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-wrap-ansi all 8.0.1+~8.0.1-3 [11.8 kB]
Get:1052 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cliui all 7.0.4+repack+~cs3.1.0-4 [11.5 kB]
Get:1053 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-get-caller-file all 2.0.5+~cs1.1.1-4 [5728 B]
Get:1054 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-require-directory all 2.1.1+~2.1.2-1 [7092 B]
Get:1055 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-y18n all 5.0.8+~5.0.0-3 [10.2 kB]
Get:1056 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-yargs-parser all 21.1.1+~21.0.0-4 [28.4 kB]
Get:1057 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-yargs all 16.2.0+~16.0.4-7 [128 kB]
Get:1058 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-istanbul all 0.4.5+repack10+~cs97.25.57-3 [207 kB]
Get:1059 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-object-inspect all 1.12.2+~cs1.8.1-1 [20.8 kB]
Get:1060 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-resumer all 0.0.0-6 [4144 B]
Get:1061 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-tape all 5.6.1+~cs8.20.19-1 [70.9 kB]
Get:1062 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-deep-equal all 2.1.0+~cs31.12.80-1 [34.5 kB]
Get:1063 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-debbundle-es-to-primitive all 1.2.1+~cs9.7.25-2 [39.9 kB]
Get:1064 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-es-abstract all 1.20.4+~cs26.27.47-1 [137 kB]
Get:1065 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-webassemblyjs all 1.11.4+dfsg+~cs10.11.17-2 [139 kB]
Get:1066 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-source-list-map all 2.0.1+dfsg-2 [9348 B]
Get:1067 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-webpack-sources all 3.2.3+~3.2.0-2 [23.2 kB]
Get:1068 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-terser all 5.16.5-2 [204 kB]
Get:1069 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf terser all 5.16.5-2 [16.5 kB]
Get:1070 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf webpack all 5.75.0+dfsg+~cs17.16.14-1+deb12u1 [756 kB]
Get:1071 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-css-loader all 6.7.2+~cs14.0.11-1 [73.0 kB]
Get:1072 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-err-code all 2.0.3+dfsg-3 [4884 B]
Get:1073 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-retry all 0.13.1+~0.12.1-1 [11.2 kB]
Get:1074 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-promise-retry all 2.0.1-4 [5016 B]
Get:1075 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-mute-stream all 0.0.8+~0.0.1-3 [6232 B]
Get:1076 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-read all 1.0.7-5 [5388 B]
Get:1077 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-promzard all 0.3.0-2 [6788 B]
Get:1078 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ssri all 9.0.1-2 [18.0 kB]
Get:1079 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-text-table all 0.2.0-4 [4736 B]
Get:1080 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-iferr all 1.0.2+~1.0.2-1 [4588 B]
Get:1081 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-fs-write-stream-atomic all 1.0.10-6 [5316 B]
Get:1082 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-run-queue all 2.0.0-3 [5156 B]
Get:1083 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-copy-concurrently all 1.0.5-9 [7100 B]
Get:1084 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-move-concurrently all 1.0.1-5 [5152 B]
Get:1085 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-promise-inflight all 1.0.1+~1.0.0-1 [4864 B]
Get:1086 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-unique-filename all 1.1.1+ds-2 [4032 B]
Get:1087 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cacache all 17.0.3+~cs10.3.7-1 [45.1 kB]
Get:1088 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-lru-cache all 7.14.1-1 [26.3 kB]
Get:1089 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-strip-json-comments all 4.0.0-4 [5668 B]
Get:1090 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-schema all 0.4.0+~7.0.11-1 [13.1 kB]
Get:1091 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-v8-compile-cache all 2.3.0-3 [8344 B]
Get:1092 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf eslint all 6.4.0~dfsg+~6.1.9-7 [606 kB]
Get:1093 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ethtool armhf 1:6.1-1 [160 kB]
Get:1094 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf expat armhf 2.5.0-1 [38.3 kB]
Get:1095 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf fake-hwclock all 0.12+nmu1 [6336 B]
Get:1096 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfakeroot armhf 1.31-1.2 [25.7 kB]
Get:1097 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fakeroot armhf 1.31-1.2 [66.0 kB]
Get:1098 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libib-util armhf 3.0.11.33637.ds4-2+b1 [3360 B]
Get:1099 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf firebird-dev armhf 3.0.11.33637.ds4-2+b1 [120 kB]
Get:1100 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfbclient2 armhf 3.0.11.33637.ds4-2+b1 [452 kB]
Get:1101 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf firebird3.0-common all 3.0.11.33637.ds4-2 [15.3 kB]
Get:1102 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf firebird3.0-common-doc all 3.0.11.33637.ds4-2 [27.0 kB]
Get:1103 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf flac armhf 1.4.2+ds-2 [154 kB]
Get:1104 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf freetds-common all 1.3.17+ds-2 [28.9 kB]
Get:1105 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf freetds-dev armhf 1.3.17+ds-2 [237 kB]
Get:1106 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libct4 armhf 1.3.17+ds-2 [142 kB]
Get:1107 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsybdb5 armhf 1.3.17+ds-2 [165 kB]
Get:1108 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf galculator armhf 2.1.4-1.2 [152 kB]
Get:1109 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libproxy1v5 armhf 0.4.18-1.2 [48.8 kB]
Get:1110 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf glib-networking-common all 2.74.0-4 [80.3 kB]
Get:1111 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf glib-networking armhf 2.74.0-4 [60.8 kB]
Get:1112 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf glib-networking-services armhf 2.74.0-4 [11.4 kB]
Get:1113 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gsettings-desktop-schemas all 43.0-1 [643 kB]
Get:1114 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-1.15-src armhf 1.15.15-5+rpi1 [13.9 MB]
Get:1115 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-1.15-go armhf 1.15.15-5+rpi1 [43.2 MB]
Get:1116 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf golang-1.19-src all 1.19.8-2 [18.3 MB]
Get:1117 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf golang-1.19-go armhf 1.19.8-2 [56.9 MB]
Get:1118 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-src all 2:1.19~1 [5756 B]
Get:1119 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-go armhf 2:1.19~1 [45.0 kB]
Get:1120 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gparted armhf 1.3.1-1 [714 kB]
Get:1121 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gparted-common all 1.3.1-1 [1711 kB]
Get:1122 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsigc++-2.0-0v5 armhf 2.12.0-1 [24.2 kB]
Get:1123 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglibmm-2.4-1v5 armhf 2.66.5-2 [494 kB]
Get:1124 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatkmm-1.6-1v5 armhf 2.28.3-1 [67.3 kB]
Get:1125 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcairomm-1.0-1v5 armhf 1.14.4-2 [49.1 kB]
Get:1126 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpangomm-1.4-1v5 armhf 2.46.3-1 [57.3 kB]
Get:1127 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtkmm-3.0-1v5 armhf 3.24.7-1 [808 kB]
Get:1128 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf parted armhf 3.5-3 [34.5 kB]
Get:1129 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libparted-fs-resize0 armhf 3.5-3 [35.3 kB]
Get:1130 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libparted2 armhf 3.5-3 [283 kB]
Get:1131 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf xml-core all 0.18+nmu1 [23.8 kB]
Get:1132 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libduktape207 armhf 2.7.0-2 [115 kB]
Get:1133 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf policykit-1 armhf 122-3 [11.8 kB]
Get:1134 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpolkit-agent-1-0 armhf 122-3 [22.1 kB]
Get:1135 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpolkit-gobject-1-0 armhf 122-3 [38.1 kB]
Get:1136 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf polkitd armhf 122-3 [108 kB]
Get:1137 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkexec armhf 122-3 [22.2 kB]
Get:1138 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcdparanoia0 armhf 3.10.2+debian-14 [41.7 kB]
Get:1139 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvisual-0.4-0 armhf 0.4.0-19 [117 kB]
Get:1140 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gstreamer1.0-plugins-base armhf 1.22.0-3+deb12u1 [670 kB]
Get:1141 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcaca0 armhf 0.99.beta20-3 [194 kB]
Get:1142 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdv4 armhf 1.0.0-15 [65.6 kB]
Get:1143 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libiec61883-0 armhf 1.2.0-6 [28.0 kB]
Get:1144 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libshout3 armhf 2.4.6-1+b1 [48.5 kB]
Get:1145 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtag1v5 armhf 1.13-2 [18.7 kB]
Get:1146 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtag1v5-vanilla armhf 1.13-2 [243 kB]
Get:1147 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libv4l-0 armhf 1.22.1-5 [105 kB]
Get:1148 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libv4lconvert0 armhf 1.22.1-5 [133 kB]
Get:1149 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwavpack1 armhf 5.6.0-1 [72.5 kB]
Get:1150 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup-gnome2.4-1 armhf 2.74.3-1 [10.6 kB]
Get:1151 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup2.4-common all 2.74.3-1 [56.0 kB]
Get:1152 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup2.4-1 armhf 2.74.3-1 [230 kB]
Get:1153 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup-3.0-common all 3.2.2-2 [60.8 kB]
Get:1154 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup-3.0-0 armhf 3.2.2-2 [233 kB]
Get:1155 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gstreamer1.0-plugins-good armhf 1.22.0-5+deb12u1 [1988 kB]
Get:1156 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf hdparm armhf 9.65+ds-1 [97.7 kB]
Get:1157 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnl-route-3-200 armhf 3.7.0-0.2 [152 kB]
Get:1158 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnl-genl-3-200 armhf 3.7.0-0.2 [19.7 kB]
Get:1159 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnl-3-200 armhf 3.7.0-0.2 [55.0 kB]
Get:1160 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf htop armhf 3.2.2-2 [129 kB]
Get:1161 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf hunspell-en-us all 1:2020.12.07-2 [269 kB]
Get:1162 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf i2c-tools armhf 4.3-2+b2 [77.6 kB]
Get:1163 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf intltool-debian all 0.35.0+20060710.6 [22.9 kB]
Get:1164 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf iotop armhf 0.6-42-ga14256a-0.1+b1 [24.1 kB]
Get:1165 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iw armhf 5.19-1 [85.5 kB]
Get:1166 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpspell-dev armhf 0.60.8-4 [31.2 kB]
Get:1167 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaspell-dev armhf 0.60.8-4 [34.7 kB]
Get:1168 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaspell15 armhf 0.60.8-4 [295 kB]
Get:1169 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libass9 armhf 1:0.17.1-1 [85.6 kB]
Get:1170 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatk1.0-data all 2.38.0-1 [150 kB]
Get:1171 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libayatana-ido3-0.4-0 armhf 0.9.3-1 [46.8 kB]
Get:1172 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libayatana-indicator3-7 armhf 0.9.3-1 [28.3 kB]
Get:1173 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbs2b0 armhf 3.1.0+dfsg-7 [10.7 kB]
Get:1174 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-client2007e-dev armhf 8:2007f~dfsg-7+b1 [476 kB]
Get:1175 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mlock armhf 8:2007f~dfsg-7+b1 [35.9 kB]
Get:1176 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-client2007e armhf 8:2007f~dfsg-7+b1 [551 kB]
Get:1177 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcddb2 armhf 1.3.2-7 [44.0 kB]
Get:1178 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcob5-dev armhf 4.0~early~20200606-6 [177 kB]
Get:1179 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcob5 armhf 4.0~early~20200606-6 [147 kB]
Get:1181 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdbus-glib-1-2 armhf 0.112-3 [48.2 kB]
Get:1182 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libusb-1.0-0 armhf 2:1.0.26-1 [55.8 kB]
Get:1183 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdc1394-25 armhf 2.2.6-4 [102 kB]
Get:1184 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdecor-0-0 armhf 0.1.1-2 [12.0 kB]
Get:1185 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libisc-export1105 armhf 1:9.11.19+dfsg-2.1+b1 [376 kB]
Get:1186 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdns-export1110 armhf 1:9.11.19+dfsg-2.1+b1 [893 kB]
Get:1187 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdouble-conversion3 armhf 3.2.1-1 [38.8 kB]
Get:1188 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdvdread8 armhf 6.1.3-1 [87.4 kB]
Get:1189 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdvdnav4 armhf 6.1.1-1 [43.3 kB]
Get:1190 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libebml5 armhf 1.4.4-1 [41.0 kB]
Get:1191 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libenchant-2-dev armhf 2.3.3-2 [18.7 kB]
Get:1192 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libhunspell-1.7-0 armhf 1.7.1-1+b2 [167 kB]
Get:1193 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libenchant-2-2 armhf 2.3.3-2 [39.7 kB]
Get:1194 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-dev armhf 2.1.12-stable-8 [274 kB]
Get:1195 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-pthreads-2.1-7 armhf 2.1.12-stable-8 [53.2 kB]
Get:1196 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-openssl-2.1-7 armhf 2.1.12-stable-8 [58.3 kB]
Get:1197 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-extra-2.1-7 armhf 2.1.12-stable-8 [97.3 kB]
Get:1198 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-core-2.1-7 armhf 2.1.12-stable-8 [119 kB]
Get:1199 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-2.1-7 armhf 2.1.12-stable-8 [160 kB]
Get:1200 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libexif12 armhf 0.6.24-1+b2 [388 kB]
Get:1201 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexporter-tiny-perl all 1.006000-1 [38.6 kB]
Get:1202 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfaad2 armhf 2.10.1-1 [142 kB]
Get:1203 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfann-dev armhf 2.2.0+ds-8 [85.6 kB]
Get:1204 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfann2 armhf 2.2.0+ds-8 [57.1 kB]
Get:1205 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfftw3-double3 armhf 3.3.10-1 [325 kB]
Get:1206 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfile-readbackwards-perl all 1.06-2 [11.6 kB]
Get:1207 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libflite1 armhf 2.2-5 [12.4 MB]
Get:1208 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcr-ui-3-1 armhf 3.41.1-1 [120 kB]
Get:1209 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcr-base-3-1 armhf 3.41.1-1 [175 kB]
Get:1210 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgck-1-0 armhf 3.41.1-1 [76.9 kB]
Get:1211 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgif7 armhf 5.2.1-2.5 [44.7 kB]
Get:1212 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgirepository-1.0-1 armhf 1.74.0-3+b1 [87.5 kB]
Get:1213 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopengl0 armhf 1.6.0-1 [31.6 kB]
Get:1214 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglu1-mesa armhf 9.0.2-1.1 [133 kB]
Get:1215 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgspell-1-common all 1.12.0-1 [32.9 kB]
Get:1216 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgspell-1-2 armhf 1.12.0-1+b1 [44.7 kB]
Get:1217 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgssdp-1.6-0 armhf 1.6.2-2 [34.1 kB]
Get:1218 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-gl1.0-0 armhf 1.22.0-3+deb12u1 [219 kB]
Get:1219 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgupnp-1.6-0 armhf 1.6.3-1 [74.9 kB]
Get:1220 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgupnp-igd-1.0-4 armhf 1.2.0-3 [12.3 kB]
Get:1221 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnice10 armhf 0.1.21-1 [130 kB]
Get:1222 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvulkan1 armhf 1.3.239.0-1 [99.6 kB]
Get:1223 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-plugins-bad1.0-0 armhf 1.22.0-4+deb12u1 [698 kB]
Get:1224 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtksourceview-4-common all 4.8.4-4 [532 kB]
Get:1225 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtksourceview-4-0 armhf 4.8.4-4 [176 kB]
Get:1226 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libharfbuzz-icu0 armhf 6.0.0+dfsg-3 [1556 kB]
Get:1227 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libilmbase25 armhf 2.5.7-2 [196 kB]
Get:1228 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspectre1 armhf 0.2.12-1 [46.0 kB]
Get:1229 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libimlib2 armhf 1.10.0-4 [176 kB]
Get:1230 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libplist3 armhf 2.2.0-6+b2 [31.5 kB]
Get:1231 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libimobiledevice6 armhf 1.3.0-6+b3 [62.4 kB]
Get:1232 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libiw30 armhf 30~pre9-14 [14.2 kB]
Get:1233 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xdg-dbus-proxy armhf 0.1.4-3 [20.3 kB]
Get:1234 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmanette-0.2-0 armhf 0.2.6-3 [26.4 kB]
Get:1235 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsecret-common all 0.20.5-3+rpi1 [28.5 kB]
Get:1236 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsecret-1-0 armhf 0.20.5-3+rpi1 [96.8 kB]
Get:1237 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwoff1 armhf 1.0.2-2 [35.9 kB]
Get:1238 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwpe-1.0-1 armhf 1.14.0-1 [17.1 kB]
Get:1239 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwpebackend-fdo-1.0-1 armhf 1.14.2-1 [27.0 kB]
Get:1240 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxslt1-dev armhf 1.1.35-1 [358 kB]
Get:1241 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxslt1.1 armhf 1.1.35-1 [221 kB]
Get:1242 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwebkit2gtk-4.0-37 armhf 2.40.3-2~deb12u2+rpi1 [15.6 MB]
Get:1243 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjavascriptcoregtk-4.0-18 armhf 2.40.3-2~deb12u2+rpi1 [2630 kB]
Get:1244 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjavascriptcoregtk-4.1-0 armhf 2.40.3-2~deb12u2+rpi1 [2630 kB]
Get:1245 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-psl all 1.8.0+ds-9 [66.2 kB]
Get:1246 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblightdm-gobject-1-0 armhf 1.26.0-8 [57.0 kB]
Get:1247 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libserd-0-0 armhf 0.30.16-1 [40.7 kB]
Get:1248 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsord-0-0 armhf 0.16.14+git221008-1 [17.8 kB]
Get:1249 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsratom-0-0 armhf 0.6.14-1 [15.7 kB]
Get:1250 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblilv-0-0 armhf 0.24.14-1 [42.1 kB]
Get:1251 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblirc-client0 armhf 0.10.1-7.2 [44.9 kB]
Get:1252 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblua5.2-0 armhf 5.2.4-3 [85.7 kB]
Get:1253 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmad0 armhf 0.15.1b-10.1 [66.2 kB]
Get:1254 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmatroska7 armhf 1.7.1-1 [89.7 kB]
Get:1255 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmcrypt-dev armhf 2.5.8-7 [86.2 kB]
Get:1256 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmcrypt4 armhf 2.5.8-7 [63.0 kB]
Get:1257 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmd4c0 armhf 0.4.8-1 [39.4 kB]
Get:1258 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmhash-dev armhf 0.9.9.9-9+b2 [114 kB]
Get:1259 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmhash2 armhf 0.9.9.9-9+b2 [101 kB]
Get:1260 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmousepad0 armhf 0.5.10-2 [303 kB]
Get:1261 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmpdec3 armhf 2.5.1-2+rpi1 [73.5 kB]
Get:1262 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmtp-common all 1.1.20-1 [58.6 kB]
Get:1263 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmtp9 armhf 1.1.20-1 [195 kB]
Get:1264 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmysofa1 armhf 1.3.1~dfsg0-1 [1154 kB]
Get:1265 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpci-dev armhf 1:3.9.0-4 [63.9 kB]
Get:1266 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf pci.ids all 0.0~2023.04.11-1 [243 kB]
Get:1267 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpci3 armhf 1:3.9.0-4 [61.3 kB]
Get:1268 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsnmp-base all 5.9.3+dfsg-2 [1753 kB]
Get:1269 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsnmp-dev armhf 5.9.3+dfsg-2 [201 kB]
Get:1270 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnetsnmptrapd40 armhf 5.9.3+dfsg-2 [20.0 kB]
Get:1271 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsnmp40 armhf 5.9.3+dfsg-2 [2432 kB]
Get:1272 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnewt0.52 armhf 0.52.23-1+b1 [51.0 kB]
Get:1273 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnss-myhostname armhf 252.12-1~deb12u1+rpi1 [76.5 kB]
Get:1274 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libobt2v5 armhf 3.6.1-10 [65.1 kB]
Get:1275 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libobrender32v5 armhf 3.6.1-10 [71.9 kB]
Get:1276 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf unixodbc-dev armhf 2.3.11-2+deb12u1 [200 kB]
Get:1277 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbc1 armhf 2.3.11-2+deb12u1 [5008 B]
Get:1278 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbc2 armhf 2.3.11-2+deb12u1 [123 kB]
Get:1279 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbccr2 armhf 2.3.11-2+deb12u1 [14.7 kB]
Get:1280 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf odbcinst armhf 2.3.11-2+deb12u1 [11.5 kB]
Get:1281 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf odbcinst1debian2 armhf 2.3.11-2+deb12u1 [5112 B]
Get:1282 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf unixodbc-common all 2.3.11-2+deb12u1 [8172 B]
Get:1283 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbcinst2 armhf 2.3.11-2+deb12u1 [27.6 kB]
Get:1284 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libonig-dev armhf 6.9.8-1 [96.7 kB]
Get:1285 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libonig5 armhf 6.9.8-1 [166 kB]
Get:1286 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenmpt-modplug1 armhf 0.8.9.0-openmpt1-2 [20.2 kB]
Get:1287 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libout123-0 armhf 1.31.2-1 [24.2 kB]
Get:1288 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcap0.8 armhf 1.10.3-1 [140 kB]
Get:1289 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcsclite1 armhf 1.9.9-2 [47.0 kB]
Get:1290 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpeas-common all 1.34.0-1 [54.3 kB]
Get:1291 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpeas-1.0-0 armhf 1.34.0-1+b1 [52.2 kB]
Get:1292 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsphinxbase3 armhf 0.8+5prealpha+1-16 [97.7 kB]
Get:1293 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpocketsphinx3 armhf 0.8+5prealpha+1-15 [106 kB]
Get:1294 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf portaudio19-dev armhf 19.6.0-1.2 [98.3 kB]
Get:1295 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libportaudiocpp0 armhf 19.6.0-1.2 [17.0 kB]
Get:1296 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libportaudio2 armhf 19.6.0-1.2 [57.3 kB]
Get:1297 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpq-dev armhf 15.3-0+deb12u1 [129 kB]
Get:1298 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpq5 armhf 15.3-0+deb12u1 [166 kB]
Get:1299 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqdbm-dev armhf 1.8.78-12 [135 kB]
Get:1300 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqdbm14 armhf 1.8.78-12 [74.3 kB]
Get:1301 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqt5x11extras5 armhf 5.15.8-2 [9576 B]
Get:1302 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5dbus5 armhf 5.15.8+dfsg-11+rpi1 [182 kB]
Get:1303 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5network5 armhf 5.15.8+dfsg-11+rpi1 [571 kB]
Get:1304 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-image0 armhf 0.4.0-2 [21.9 kB]
Get:1305 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-shape0 armhf 1.15-1 [106 kB]
Get:1306 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xinerama0 armhf 1.15-1 [105 kB]
Get:1307 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xinput0 armhf 1.15-1 [127 kB]
Get:1308 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5gui5 armhf 5.15.8+dfsg-11+rpi1 [2533 kB]
Get:1309 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5widgets5 armhf 5.15.8+dfsg-11+rpi1 [2037 kB]
Get:1310 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqt5svg5 armhf 5.15.8-3 [113 kB]
Get:1311 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5core5a armhf 5.15.8+dfsg-11+rpi1 [1500 kB]
Get:1312 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librubberband2 armhf 3.1.2+dfsg0-1 [110 kB]
Get:1313 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-rubygems all 3.3.15-2 [293 kB]
Get:1314 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby3.1 armhf 3.1.2-7 [663 kB]
Get:1315 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby armhf 1:3.1 [5868 B]
Get:1316 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rake all 13.0.6-3 [83.9 kB]
Get:1317 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-net-telnet all 0.2.0-1 [13.1 kB]
Get:1318 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-webrick all 1.8.1-1 [51.4 kB]
Get:1319 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-xmlrpc all 0.3.2-2 [24.4 kB]
Get:1320 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf ruby-sdbm armhf 1.0.0-5+rpi1 [15.9 kB]
Get:1321 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libruby3.1 armhf 3.1.2-7 [5011 kB]
Get:1322 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libruby armhf 1:3.1 [4968 B]
Get:1323 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsdl1.2debian armhf 1.2.15+dfsg2-8 [164 kB]
Get:1324 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsdl-image1.2 armhf 1.2.12-13+b2 [28.9 kB]
Get:1325 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsdl2-2.0-0 armhf 2.26.5+dfsg-1 [524 kB]
Get:1326 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsigsegv2 armhf 2.14-1 [36.6 kB]
Get:1327 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsndio7.0 armhf 1.9.0-0.3 [24.7 kB]
Get:1328 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libss2 armhf 1.47.0-2 [22.7 kB]
Get:1329 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsyn123-0 armhf 1.31.2-1 [71.8 kB]
Get:1330 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtool all 2.4.7-5 [517 kB]
Get:1331 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf upower armhf 0.99.20-2 [75.6 kB]
Get:1332 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libupower-glib3 armhf 0.99.20-2 [29.8 kB]
Get:1333 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libvte-2.91-0 armhf 0.70.6-1~deb12u1 [765 kB]
Get:1334 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libvte-2.91-common armhf 0.70.6-1~deb12u1 [641 kB]
Get:1335 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwebkit2gtk-4.1-0 armhf 2.40.3-2~deb12u2+rpi1 [15.6 MB]
Get:1336 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxbase3.0-0v5 armhf 3.0.5.1+dfsg-5+b1 [858 kB]
Get:1337 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxgtk3.0-gtk3-0v5 armhf 3.0.5.1+dfsg-5+b1 [3542 kB]
Get:1338 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xv0 armhf 1.15-1 [109 kB]
Get:1339 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfce4util-common all 4.18.1-2 [66.0 kB]
Get:1340 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfce4util7 armhf 4.18.1-2 [32.4 kB]
Get:1341 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xfconf armhf 4.18.0-2 [119 kB]
Get:1342 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfconf-0-3 armhf 4.18.0-2 [37.5 kB]
Get:1343 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxmltok1-dev armhf 1.2-4+b2 [56.0 kB]
Get:1344 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxmltok1 armhf 1.2-4+b2 [39.5 kB]
Get:1345 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmuu1 armhf 2:1.1.3-3 [23.3 kB]
Get:1346 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxres1 armhf 2:1.2.1-1 [18.7 kB]
Get:1347 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxv1 armhf 2:1.0.11-1.1 [23.3 kB]
Get:1348 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxxf86dga1 armhf 2:1.1.5-1 [20.9 kB]
Get:1349 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzip-dev armhf 1.7.3-1+b1 [163 kB]
Get:1350 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzip4 armhf 1.7.3-1+b1 [49.8 kB]
Get:1351 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lightdm armhf 1.26.0-8 [151 kB]
Get:1352 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lsb-release all 12.0-1 [6416 B]
Get:1353 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lua-lpeg armhf 1.0.2-2 [32.3 kB]
Get:1354 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf x11-xserver-utils armhf 7.7+9 [151 kB]
Get:1355 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lxrandr armhf 0.3.2-1.1 [51.4 kB]
Get:1356 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lxterminal armhf 0.4.0-2 [91.4 kB]
Get:1357 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mailcap all 3.70+nmu1 [32.0 kB]
Get:1358 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mesa-utils-bin armhf 8.5.0-1 [45.5 kB]
Get:1359 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mesa-utils armhf 8.5.0-1 [955 kB]
Get:1360 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mousepad armhf 0.5.10-2 [519 kB]
Get:1361 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mpg123 armhf 1.31.2-1 [186 kB]
Get:1362 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf neofetch all 7.1.0-4 [81.8 kB]
Get:1363 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf nmap armhf 7.93+dfsg1-1 [1768 kB]
Get:1364 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf nmap-common all 7.93+dfsg1-1 [4148 kB]
Get:1365 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansi all 0.3.1-2 [9728 B]
Get:1366 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansistyles all 0.1.3-5 [4548 B]
Get:1367 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-asap all 2.0.6+~2.0.0-1 [15.4 kB]
Get:1368 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-asn1 all 0.2.6+~0.2.0-2 [8760 B]
Get:1369 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-assert-plus all 1.0.0-4 [6852 B]
Get:1370 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-asynckit all 0.4.0-5 [10.3 kB]
Get:1371 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-aws-sign2 all 0.7.1-4 [4396 B]
Get:1372 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-aws4 all 1.11.0-2 [10.4 kB]
Get:1373 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-tweetnacl all 1.0.3+dfsg-3 [34.9 kB]
Get:1374 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-bcrypt-pbkdf all 1.0.2-3 [11.1 kB]
Get:1375 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-caseless all 0.12.1-2 [3976 B]
Get:1376 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-delayed-stream all 1.0.0-5 [5436 B]
Get:1377 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-combined-stream all 1.0.8+~1.0.3-1 [7316 B]
Get:1378 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-concat-map all 0.0.2+~0.0.1-1 [7148 B]
Get:1379 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-dashdash all 2.0.0-4 [30.3 kB]
Get:1380 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jsbn all 1.1.0+~1.2.29-1 [15.6 kB]
Get:1381 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ecc-jsbn all 0.2.0-4 [9520 B]
Get:1382 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-extend all 3.0.2+~3.0.1-3 [7816 B]
Get:1383 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-extsprintf all 1.4.1+~1.4.1-2 [6464 B]
Get:1384 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-forever-agent all 0.6.1+~0.6.1-2 [5616 B]
Get:1385 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-form-data all 4.0.0-1 [13.2 kB]
Get:1386 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-getpass all 0.1.7-3 [4796 B]
Get:1387 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-har-schema all 2.0.0-5 [5952 B]
Get:1388 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-har-validator all 5.1.5-3 [7328 B]
Get:1389 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-verror all 1.10.1+~1.10.5-2 [17.0 kB]
Get:1390 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsprim all 2.0.1-1 [13.5 kB]
Get:1391 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-sshpk all 1.17.0+dfsg-2 [52.5 kB]
Get:1392 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-http-signature all 1.3.6-2 [13.2 kB]
Get:1393 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-isstream all 0.1.2+dfsg+~0.1.0-1 [4648 B]
Get:1394 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-stringify-safe all 5.0.1+repack-6 [21.0 kB]
Get:1395 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsonstream all 1.3.5-3 [8472 B]
Get:1396 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-leven all 4.0.0+~cs1.1.1-2 [6224 B]
Get:1397 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-lockfile all 1.0.4+~1.0.2-1 [8948 B]
Get:1398 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-number-is-nan all 2.0.0-3 [3624 B]
Get:1399 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-oauth-sign all 0.9.0-4 [4404 B]
Get:1400 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-opener all 1.5.2+~1.4.0-1 [5940 B]
Get:1401 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-performance-now all 2.1.0+debian-4 [5296 B]
Get:1402 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-psl all 1.8.0+ds-9 [38.1 kB]
Get:1403 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-puka all 1.0.1+dfsg-3 [29.0 kB]
Get:1404 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-qs all 6.11.0+ds+~6.9.7-3 [43.2 kB]
Get:1405 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-tunnel-agent all 0.6.1-4 [5100 B]
Get:1406 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openbox armhf 3.6.1-10 [290 kB]
Get:1407 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf psmisc armhf 23.6-1 [253 kB]
Get:1408 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-colorzero all 2.0-2 [22.3 kB]
Get:1409 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-gpiozero armhf 1.6.2-1+b4 [105 kB]
Get:1410 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf re2c armhf 3.0-2 [406 kB]
Get:1411 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rng-tools5 armhf 5-4.1 [19.2 kB]
Get:1412 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-minitest all 5.17.0-1 [61.4 kB]
Get:1413 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-power-assert all 2.0.3-1 [11.8 kB]
Get:1414 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-test-unit all 3.5.7-1 [78.2 kB]
Get:1415 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf swig4.0 armhf 4.1.0-0.2 [1220 kB]
Get:1416 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf swig all 4.1.0-0.2 [321 kB]
Get:1417 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf systemtap-sdt-dev armhf 4.8-2 [19.4 kB]
Get:1418 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-scraping-server armhf 1.12.0+dfsg-8 [185 kB]
Get:1419 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xauth armhf 1:1.1.2-1 [32.4 kB]
Get:1420 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-standalone-server armhf 1.12.0+dfsg-8 [828 kB]
Get:1421 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-common armhf 1.12.0+dfsg-8 [89.6 kB]
Get:1422 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf tmux armhf 3.3a-3 [362 kB]
Get:1423 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf unzip armhf 6.0-28 [147 kB]
Get:1424 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf usbutils armhf 1:014-1 [67.0 kB]
Get:1425 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf vorbis-tools armhf 1.4.2-1+b1 [168 kB]
Get:1426 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf whiptail armhf 0.52.23-1+b1 [23.1 kB]
Get:1427 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf wireless-regdb all 2022.06.06-1 [13.1 kB]
Get:1428 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf wireless-tools armhf 30~pre9-14 [102 kB]
Get:1429 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf wpasupplicant armhf 2:2.10-12 [1121 kB]
Get:1430 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xarchiver armhf 1:0.5.4.20-2 [453 kB]
Get:1431 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf xfonts-base all 1:1.0.5+nmu1 [5895 kB]
Get:1432 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xfonts-encodings all 1:1.0.4-2.2 [577 kB]
Get:1433 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-xorg-input-libinput armhf 1.2.1-1 [60.3 kB]
Get:1434 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zenity-common all 3.44.0-1 [2974 kB]
Get:1435 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zenity armhf 3.44.0-1 [56.3 kB]
Get:1436 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zsh armhf 5.9-4 [767 kB]
Get:1437 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zsh-common all 5.9-4 [4147 kB]
Get:1438 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmlrpc-epi-dev armhf 0.54.2-1.3 [40.3 kB]
Get:1439 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmlrpc-epi0 armhf 0.54.2-1.3 [28.8 kB]
Fetched 791 MB in 44min 0s (299 kB/s)
E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/j/json-c/libjson-c5_0.16-2_armhf.deb  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/p/pixman/libpixman-1-0_0.42.2-1_armhf.deb  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/a/at-spi2-core/at-spi2-common_2.46.0-5_all.deb  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/x/x265/libx265-dev_3.5-2_armhf.deb  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/l/llvm-toolchain-14/clang-14_14.0.6-12+rpi1_armhf.deb  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
[FAILED] dietpi-bookworm-upgrade | APT dist-upgrade
 - Command: apt-get -y dist-upgrade

--------------------------------------------------------------------- - DietPi has encountered an error - - Please create a ticket: https://github.com/MichaIng/DietPi/issues - - Copy and paste only the BLUE lines below into the ticket - --------------------------------------------------------------------- #### Details: - Date | Sun Sep 10 16:23:17 JST 2023 - DietPi version | v8.21.1 (MichaIng/master) - Image creator | - Pre-image | - Hardware | RPi Zero W (armv6l) (ID=1) - Kernel version | `Linux dietpi-001 6.1.21+ #1642 Mon Apr 3 17:19:14 BST 2023 armv6l GNU/Linux` - Distro | bullseye (ID=6,RASPBIAN=1) - Command | `apt-get -y dist-upgrade` - Exit code | 100 - Software title | dietpi-bookworm-upgrade #### Steps to reproduce: <!-- Explain how to reproduce the issue --> 1. ... 2. ... #### Expected behaviour: <!-- What SHOULD happen? --> - ... #### Actual behaviour: <!-- What IS happening? --> - ... #### Extra details: <!-- Please post any extra details that might help solve the issue --> - ... #### Additional logs: ``` Reading package lists... Building dependency tree... Reading state information... Calculating upgrade... The following packages were automatically installed and are no longer required: distro-info-data g++-10 golang-1.15-go golang-1.15-src libatk1.0-data libavresample4 libbpf0 libcbor0 libcob5 libcob5-dev libdecor-0-0 libdns-export1110 libexporter-tiny-perl libfftw3-double3 libglew2.1 libglu1-mesa libgs9-common libgtksourceview-3.0-1 libgtksourceview-3.0-common libice-dev libicu67 libilmbase25 libimobiledevice6 libisc-export1105 libjs-psl libjsoncpp24 libldap-2.4-2 liblist-moreutils-perl liblist-moreutils-xs-perl libltdl-dev libmpdec3 libncurses5-dev libobjc-10-dev libodbc1 libopenexr25 libopengl0 libpcre16-3 libpcre2-posix2 libpcre3-dev libpcre32-3 libpcrecpp0v5 libperl5.32 libplist3 libpoppler102 libprocps8 libpython3.8 libpython3.8-minimal libpython3.8-stdlib libpython3.9 libpython3.9-dev libpython3.9-minimal libpython3.9-stdlib librest-0.7-0 libsdl2-2.0-0 libsepol1 libsigsegv2 libsm-dev libsoup-gnome2.4-1 libstdc++-10-dev libtiff5 libtiffxx5 liburing1 libusbmuxd6 libwmf0.2-7 libwxbase3.0-0v5 libwxgtk3.0-gtk3-0v5 libxfce4util-common libxfce4util7 libxfconf-0-3 libxt-dev node-ansi node-ansistyles node-asap node-asn1 node-assert-plus node-asynckit node-aws-sign2 node-aws4 node-bcrypt-pbkdf node-caseless node-combined-stream node-concat-map node-dashdash node-delayed-stream node-ecc-jsbn node-extend node-extsprintf node-forever-agent node-form-data node-getpass node-har-schema node-har-validator node-http-signature node-isstream node-jsbn node-json-stringify-safe node-jsonstream node-jsprim node-leven node-lockfile node-number-is-nan node-oauth-sign node-opener node-performance-now node-psl node-puka node-qs node-sshpk node-tunnel-agent node-tweetnacl node-verror odbcinst odbcinst1debian2 perl-modules-5.32 python3.9 python3.9-dev python3.9-minimal ruby2.7 xfconf Use 'sudo apt autoremove' to remove them. The following packages will be REMOVED: gnucobol libfilezilla11 libgs9 libnode72 libsemanage1 libsepol1-dev libwacom2 mesa-utils-extra python-pip-whl python3.9-venv The following NEW packages will be installed: at-spi2-common clang-14 cpp-12 cron-daemon-common dbus-bin dbus-daemon dbus-session-bus-common dbus-system-bus-common eslint g++-12 gcc-11-base gcc-12 gcc-12-base golang-1.19-go golang-1.19-src handlebars libabsl20220623 libaom-dev libaom3 libasan8 libavcodec59 libavformat59 libavif-dev libavif15 libavutil57 libbpf1 libcbor0.8 libcjson1 libclang-common-14-dev libclang-cpp14 libclang1-14 libcodec2-1.0 libdav1d-dev libdav1d6 libde265-dev libdecor-0-0 libduktape207 libffi8 libfile-find-rule-perl libfilezilla-common libfilezilla34 libflac12 libgav1-1 libgcc-11-dev libgcc-12-dev libgs-common libgs10 libgs10-common libgspell-1-2 libgspell-1-common libgssdp-1.6-0 libgstreamer-plugins-bad1.0-0 libgtksourceview-4-0 libgtksourceview-4-common libgupnp-1.6-0 libgupnp-igd-1.0-4 libhashkit2 libheif-dev libhwy1 libicu72 libidn12 libimath-3-1-29 libjavascriptcoregtk-4.1-0 libjs-async libjs-events libjs-prettify libjs-regenerate libjs-source-map libjs-sprintf-js libjs-util libjsoncpp25 libjxl0.7 libldap-2.5-0 libldap-dev liblerc-dev liblerc4 libllvm14 libllvm15 libmbedcrypto7 libmousepad0 libnice10 libnode108 libnumber-compare-perl libobjc-11-dev libobjc-12-dev libodbc2 libodbccr2 libodbcinst2 libopenexr-3-1-30 libopengl0 libpcre2-posix3 libperl5.36 libpkgconf3 libpoppler126 libproc2-0 libpython3.11 libpython3.11-dev libpython3.11-minimal libpython3.11-stdlib librav1e0 librist4 libruby libruby3.1 libsemanage2 libsepol-dev libsepol2 libsoup-3.0-0 libsoup-3.0-common libsoup2.4-common libspectre1 libsrt1.5-gnutls libssl3 libstdc++-11-dev libstdc++-12-dev libsvtav1enc1 libswresample4 libswscale6 libsystemd-shared libtext-glob-perl libtiff6 libtiffxx6 liburing2 libvpx7 libwacom9 libwebkit2gtk-4.1-0 libwebp7 libwmf-0.2-7 libwmflite-0.2-7 libwxbase3.2-1 libwxgtk3.2-1 libx264-164 libx265-199 libx265-dev libxcvt0 libyuv0 libzstd-dev llvm-11-linker-tools llvm-14-linker-tools mesa-utils-bin node-acorn node-ajv-keywords node-ampproject-remapping node-ansi-escapes node-anymatch node-argparse node-arrify node-assert node-async node-async-each node-babel-helper-define-polyfill-provider node-babel-plugin-add-module-exports node-babel-plugin-lodash node-babel-plugin-polyfill-corejs2 node-babel-plugin-polyfill-corejs3 node-babel-plugin-polyfill-regenerator node-babel7 node-babel7-runtime node-base64-js node-binary-extensions node-braces node-browserslist node-busboy node-camelcase node-caniuse-lite node-chokidar node-chrome-trace-event node-ci-info node-cjs-module-lexer node-cli-table node-cliui node-clone-deep node-commander node-commondir node-concat-stream node-convert-source-map node-core-js node-core-js-compat node-core-js-pure node-css-loader node-css-selector-tokenizer node-data-uri-to-buffer node-debbundle-es-to-primitive node-decamelize node-decompress-response node-deep-equal node-deep-is node-define-properties node-defined node-del node-diff node-doctrine node-electron-to-chromium node-end-of-stream node-enhanced-resolve node-errno node-error-ex node-es-abstract node-es-module-lexer node-es6-error node-escodegen node-eslint-scope node-eslint-utils node-eslint-visitor-keys node-espree node-esprima node-esquery node-esrecurse node-estraverse node-esutils node-events node-fancy-log node-fast-levenshtein node-fetch node-file-entry-cache node-fill-range node-find-cache-dir node-find-up node-flat-cache node-flatted node-for-in node-for-own node-foreground-child node-fs-readdir-recursive node-functional-red-black-tree node-get-caller-file node-get-stream node-glob-parent node-globals node-globby node-got node-icss-utils node-ieee754 node-ignore node-interpret node-is-arrayish node-is-binary-path node-is-buffer node-is-extendable node-is-extglob node-is-glob node-is-number node-is-path-cwd node-is-path-inside node-is-plain-obj node-is-plain-object node-is-stream node-is-windows node-isobject node-istanbul node-jest-debbundle node-jest-worker node-js-tokens node-js-yaml node-jsesc node-json-buffer node-json5 node-kind-of node-levn node-loader-runner node-locate-path node-lodash node-lodash-packages node-lowercase-keys node-make-dir node-memfs node-memory-fs node-merge-stream node-micromatch node-mimic-response node-minimist node-minipass node-n3 node-negotiator node-neo-async node-normalize-path node-npm-run-path node-object-inspect node-optimist node-optionator node-p-cancelable node-p-limit node-p-locate node-parse-json node-path-dirname node-path-exists node-path-is-inside node-path-type node-picocolors node-pify node-pkg-dir node-postcss node-postcss-modules-extract-imports node-postcss-modules-values node-postcss-value-parser node-prelude-ls node-progress node-prr node-pump node-quick-lru node-randombytes node-read-pkg node-readdirp node-rechoir node-regenerate node-regenerate-unicode-properties node-regenerator-runtime node-regenerator-transform node-regexpp node-regexpu-core node-regjsgen node-regjsparser node-repeat-string node-require-directory node-resolve-cwd node-resumer node-schema-utils node-serialize-javascript node-set-immediate-shim node-shebang-command node-shebang-regex node-slice-ansi node-source-list-map node-source-map node-source-map-support node-sprintf-js node-strip-bom node-strip-json-comments node-tapable node-tape node-terser node-time-stamp node-to-fast-properties node-to-regex-range node-tslib node-type-check node-typedarray node-undici node-unicode-canonical-property-names-ecmascript node-unicode-match-property-ecmascript node-unicode-match-property-value-ecmascript node-unicode-property-aliases-ecmascript node-util node-v8-compile-cache node-v8flags node-watchpack node-webassemblyjs node-webpack-sources node-wordwrap node-wrap-ansi node-write node-xtend node-y18n node-yargs node-yargs-parser perl-modules-5.36 pkexec pkgconf pkgconf-bin polkitd python3-pip-whl python3-setuptools-whl python3-six python3.11 python3.11-dev python3.11-minimal python3.11-venv rpcsvc-proto ruby-sdbm ruby-webrick ruby3.1 sgml-base terser unixodbc-common usrmerge util-linux-extra webpack xml-core The following packages will be upgraded: adduser adwaita-icon-theme alsa-utils apache2 apache2-bin apache2-data apache2-dev apache2-utils apt apt-file autoconf autoconf2.64 automake autopoint autotools-dev base-files base-passwd bash bash-completion binutils binutils-arm-linux-gnueabihf binutils-common bison bsdextrautils bsdutils bubblewrap bzip2 ca-certificates clang clang-11 cmake cmake-data colorized-logs comerr-dev console-setup console-setup-linux coreutils cpio cpp cpp-10 cron curl dash dbus dbus-user-session dbus-x11 dconf-gsettings-backend dconf-service debconf debhelper debianutils default-libmysqlclient-dev device-tree-compiler dh-strip-nondeterminism dictionaries-common diffutils dirmngr distro-info-data dmidecode dmsetup dpkg dpkg-dev dwz e2fsprogs emacsen-common ethtool expat fake-hwclock fakeroot fdisk file filezilla filezilla-common findutils firebird-dev firebird3.0-common firebird3.0-common-doc flac flex fontconfig fontconfig-config fonts-dejavu-core fonts-urw-base35 freetds-common freetds-dev g++ g++-10 galculator gcc gcc-10 gcc-10-base gettext gettext-base gimp gimp-data git git-man glib-networking glib-networking-common glib-networking-services gnupg gnupg-l10n gnupg-utils golang-1.15-go golang-1.15-src golang-go golang-src gparted gparted-common gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm gpgv graphviz grep groff-base gsettings-desktop-schemas gstreamer1.0-plugins-base gstreamer1.0-plugins-good gtk-update-icon-cache gyp gzip hdparm hostname htop hunspell-en-us i2c-tools icu-devtools ifupdown init-system-helpers initramfs-tools initramfs-tools-core intltool-debian iotop iproute2 iputils-ping isc-dhcp-client iso-codes iw kbd keyboard-configuration klibc-utils kmod krb5-multidev less libaa1 libacl1 libacl1-dev libamd2 libapparmor-dev libapparmor1 libapr1 libapr1-dev libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-dev libaprutil1-ldap libapt-pkg-perl libapt-pkg6.0 libarchive13 libargon2-1 libargon2-dev libasan6 libasound2 libasound2-data libasound2-dev libasound2-plugins libaspell-dev libaspell15 libass9 libassuan0 libasyncns0 libatk-bridge2.0-0 libatk1.0-0 libatk1.0-data libatkmm-1.6-1v5 libatlas3-base libatomic1 libatopology2 libatspi2.0-0 libattr1 libattr1-dev libaudit-common libaudit1 libavahi-client3 libavahi-common-data libavahi-common3 libayatana-ido3-0.4-0 libayatana-indicator3-7 libbabl-0.1-0 libbinutils libblas3 libblkid-dev libblkid1 libbluray2 libbrotli-dev libbrotli1 libbs2b0 libbsd-dev libbsd0 libbz2-1.0 libbz2-dev libc-ares2 libc-bin libc-client2007e libc-client2007e-dev libc-dev-bin libc-l10n libc6 libc6-dev libcaca0 libcairo-gobject2 libcairo2 libcairomm-1.0-1v5 libcamd2 libcap-ng0 libcap2 libcap2-bin libcc1-0 libccolamd2 libcddb2 libcdparanoia0 libcdt5 libcgraph6 libcholmod3 libchromaprint1 libclang-common-11-dev libclang-cpp11 libclang1-11 libcob5 libcob5-dev libcolamd2 libcolord2 libcom-err2 libcrypt-dev libcrypt1 libcryptsetup12 libct4 libctf-nobfd0 libctf0 libcups2 libcurl3-gnutls libcurl4 libcurl4-gnutls-dev libdatrie1 libdb-dev libdb5.3 libdb5.3-dev libdbus-1-3 libdbus-glib-1-2 libdc1394-25 libdconf1 libde265-0 libdebconfclient0 libdebhelper-perl libdeflate-dev libdeflate0 libdevmapper1.02.1 libdns-export1110 libdouble-conversion3 libdpkg-perl libdrm-amdgpu1 libdrm-common libdrm-nouveau2 libdrm-radeon1 libdrm2 libdv4 libdvdnav4 libdvdread8 libdw1 libebml5 libedit-dev libedit2 libegl-mesa0 libegl1 libelf1 libenchant-2-2 libenchant-2-dev libepoxy0 liberror-perl libevdev2 libevent-2.1-7 libevent-core-2.1-7 libevent-dev libevent-extra-2.1-7 libevent-openssl-2.1-7 libevent-pthreads-2.1-7 libexif12 libexiv2-27 libexpat1 libexpat1-dev libexporter-tiny-perl libext2fs2 libfaad2 libfakeroot libfann-dev libfann2 libfbclient2 libfdisk1 libfdt1 libffi-dev libfftw3-double3 libfftw3-single3 libfido2-1 libfile-readbackwards-perl libfile-stripnondeterminism-perl libflite1 libfontconfig-dev libfontconfig1 libfreetype-dev libfreetype6 libfreetype6-dev libfribidi0 libgbm1 libgc1 libgcc-10-dev libgcc-s1 libgck-1-0 libgcr-base-3-1 libgcr-ui-3-1 libgcrypt20 libgcrypt20-dev libgd-dev libgd3 libgdbm-compat4 libgdbm6 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgegl-0.4-0 libgegl-common libgexiv2-2 libgfortran5 libgif7 libgimp2.0 libgirepository-1.0-1 libgl1 libgl1-mesa-dri libglapi-mesa libgles2 libglib2.0-0 libglib2.0-bin libglib2.0-data libglib2.0-dev libglib2.0-dev-bin libglibmm-2.4-1v5 libglu1-mesa libglvnd0 libglx-mesa0 libglx0 libgme0 libgmp-dev libgmp10 libgmp3-dev libgmpxx4ldbl libgnutls30 libgomp1 libgpg-error-dev libgpg-error0 libgpm2 libgs9-common libgsm1 libgssapi-krb5-2 libgssrpc4 libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 libgtk-3-0 libgtk-3-common libgtkmm-3.0-1v5 libgts-0.7-5 libgudev-1.0-0 libgvc6 libgvpr2 libharfbuzz-icu0 libharfbuzz0b libheif1 libhiredis0.14 libhogweed6 libhunspell-1.7-0 libi2c0 libib-util libicu-dev libidn2-0 libiec61883-0 libilmbase25 libimlib2 libimobiledevice6 libinput-bin libinput10 libip4tc2 libisc-export1105 libisl23 libiw30 libjack-dev libjack0 libjansson4 libjavascriptcoregtk-4.0-18 libjbig-dev libjbig0 libjbig2dec0 libjpeg-dev libjpeg62-turbo libjpeg62-turbo-dev libjs-inherits libjs-is-typedarray libjs-jquery libjs-psl libjs-sphinxdoc libjs-typedarray-to-buffer libjs-underscore libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libk5crypto3 libkadm5clnt-mit12 libkadm5srv-mit12 libkdb5-10 libkeyutils1 libklibc libkmod2 libkrb5-3 libkrb5-dev libkrb5support0 libksba8 liblab-gamut1 liblapack3 liblcms2-2 libldap2-dev libldb2 liblightdm-gobject-1-0 liblilv-0-0 liblirc-client0 liblist-moreutils-xs-perl libllvm11 liblocale-gettext-perl libltdl-dev libltdl7 liblua5.2-0 liblua5.3-0 liblz4-1 liblzma-dev liblzma5 libmad0 libmagic-dev libmagic-mgc libmagic1 libmanette-0.2-0 libmariadb-dev libmariadb-dev-compat libmariadb3 libmatroska7 libmcrypt-dev libmcrypt4 libmd-dev libmd0 libmd4c0 libmemcached11 libmemcachedutil2 libmhash-dev libmhash2 libmount-dev libmount1 libmp3lame0 libmpc3 libmpdec3 libmpfr6 libmpg123-0 libmtp-common libmtp9 libmysofa1 libncurses-dev libncurses5-dev libncurses6 libncursesw6 libnetsnmptrapd40 libnettle8 libnewt0.52 libnghttp2-14 libnl-3-200 libnl-genl-3-200 libnl-route-3-200 libnode-dev libnotify4 libnspr4 libnss-myhostname libnss3 libobjc-10-dev libobjc4 libobrender32v5 libobt2v5 libodbc1 libogg0 libonig-dev libonig5 libopenblas0-pthread libopenjp2-7 libopenmpt-modplug1 libopenmpt0 libopus0 liborc-0.4-0 libout123-0 libp11-kit0 libpam-modules libpam-modules-bin libpam-runtime libpam-systemd libpam0g libpam0g-dev libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpangomm-1.4-1v5 libpangoxft-1.0-0 libpaper1 libparted-fs-resize0 libparted2 libpathplan4 libpcap0.8 libpci-dev libpci3 libpciaccess0 libpcre16-3 libpcre2-16-0 libpcre2-32-0 libpcre2-8-0 libpcre2-dev libpcre3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpcsclite1 libpeas-1.0-0 libpeas-common libpipeline1 libpixman-1-0 libplist3 libplymouth5 libpng-dev libpng16-16 libpocketsphinx3 libpolkit-agent-1-0 libpolkit-gobject-1-0 libpoppler-glib8 libpopt0 libportaudio2 libportaudiocpp0 libpq-dev libpq5 libproxy1v5 libpsl5 libpspell-dev libpugixml1v5 libpulse0 libpulsedsp libpython3-dev libpython3-stdlib libqdbm-dev libqdbm14 libqt5core5a libqt5dbus5 libqt5gui5 libqt5network5 libqt5svg5 libqt5widgets5 libqt5x11extras5 librabbitmq4 libraw20 libreadline-dev libreadline8 libregexp-assemble-perl librhash0 librsvg2-2 librsvg2-common librubberband2 libsamplerate0 libsasl2-2 libsasl2-dev libsasl2-modules-db libsctp-dev libsctp1 libsdl-image1.2 libsdl1.2debian libsdl2-2.0-0 libseccomp2 libsecret-1-0 libsecret-common libselinux1 libselinux1-dev libsemanage-common libsensors-config libsensors-dev libsensors5 libserd-0-0 libshout3 libsigc++-2.0-0v5 libsigsegv2 libslang2 libsmartcols1 libsnappy1v5 libsndfile1 libsndio7.0 libsnmp-base libsnmp-dev libsnmp40 libsord-0-0 libsoup-gnome2.4-1 libsoup2.4-1 libspeex1 libspeexdsp1 libsphinxbase3 libsqlite3-0 libsqlite3-dev libsratom-0-0 libss2 libssh-gcrypt-4 libssh2-1 libssl-dev libstdc++-10-dev libstdc++6 libsub-override-perl libsuitesparseconfig5 libsybdb5 libsyn123-0 libsystemd-dev libsystemd0 libtag1v5 libtag1v5-vanilla libtalloc2 libtasn1-6 libtdb1 libtevent0 libtext-charwidth-perl libtext-iconv-perl libthai-data libthai0 libtheora0 libtiff-dev libtinfo6 libtirpc-common libtirpc-dev libtirpc3 libtool libubsan1 libudev-dev libudev1 libudfread0 libumfpack5 libunistring2 libunwind8 libupower-glib3 libusb-1.0-0 libutempter0 libuuid1 libuv1 libuv1-dev libv4l-0 libv4lconvert0 libva-drm2 libva-x11-2 libva2 libvdpau1 libvisual-0.4-0 libvpx-dev libvte-2.91-0 libvte-2.91-common libvulkan1 libwacom-common libwavpack1 libwayland-client0 libwayland-cursor0 libwayland-egl1 libwayland-server0 libwbclient0 libwebkit2gtk-4.0-37 libwebp-dev libwebpdemux2 libwebpmux3 libwmf0.2-7 libwoff1 libwpe-1.0-1 libwpebackend-fdo-1.0-1 libwrap0 libwrap0-dev libwxbase3.0-0v5 libwxgtk3.0-gtk3-0v5 libx11-6 libx11-data libx11-dev libx11-xcb1 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-image0 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 libxcb-xv0 libxcb1 libxcb1-dev libxcursor1 libxdamage1 libxext6 libxfce4util-common libxfce4util7 libxfconf-0-3 libxfixes3 libxfont2 libxft2 libxi6 libxinerama1 libxkbcommon-x11-0 libxkbcommon0 libxml2 libxml2-dev libxmlrpc-epi-dev libxmlrpc-epi0 libxmltok1 libxmltok1-dev libxmu6 libxmuu1 libxpm-dev libxpm4 libxrandr2 libxrender1 libxres1 libxslt1-dev libxslt1.1 libxt-dev libxt6 libxtables12 libxtst6 libxv1 libxxf86dga1 libxxhash0 libyaml-0-2 libz3-4 libzip-dev libzip4 libzmq5 libzstd1 libzvbi-common libzvbi0 lightdm linux-base locales locales-all login logsave lsb-base lsb-release lsof lua-lpeg lxrandr lxterminal m4 mailcap man-db mariadb-common mawk media-types mesa-utils mlock mount mousepad mpg123 mysql-common nano ncurses-base ncurses-bin neofetch netbase netcat-openbsd nmap nmap-common node-abbrev node-agent-base node-ajv node-ansi node-ansi-regex node-ansi-styles node-ansistyles node-aproba node-archy node-are-we-there-yet node-asap node-asn1 node-assert-plus node-asynckit node-aws-sign2 node-aws4 node-balanced-match node-bcrypt-pbkdf node-brace-expansion node-builtins node-cacache node-caseless node-chalk node-chownr node-clone node-color-convert node-color-name node-colors node-columnify node-combined-stream node-concat-map node-console-control-strings node-copy-concurrently node-core-util-is node-dashdash node-debug node-defaults node-delayed-stream node-delegates node-depd node-ecc-jsbn node-encoding node-err-code node-escape-string-regexp node-extend node-extsprintf node-fast-deep-equal node-forever-agent node-form-data node-fs-write-stream-atomic node-fs.realpath node-function-bind node-gauge node-getpass node-glob node-graceful-fs node-gyp node-har-schema node-har-validator node-has-flag node-has-unicode node-hosted-git-info node-http-signature node-https-proxy-agent node-iconv-lite node-iferr node-imurmurhash node-indent-string node-inflight node-inherits node-ini node-ip node-ip-regex node-is-typedarray node-isarray node-isexe node-isstream node-jsbn node-json-parse-better-errors node-json-schema node-json-schema-traverse node-json-stable-stringify node-json-stringify-safe node-jsonify node-jsonparse node-jsonstream node-jsprim node-leven node-lockfile node-lru-cache node-mime node-mime-types node-minimatch node-mkdirp node-move-concurrently node-ms node-mute-stream node-nopt node-normalize-package-data node-npm-bundled node-npm-package-arg node-npmlog node-number-is-nan node-oauth-sign node-object-assign node-once node-opener node-osenv node-p-map node-path-is-absolute node-performance-now node-process-nextick-args node-promise-inflight node-promise-retry node-promzard node-psl node-puka node-punycode node-qs node-read node-read-package-json node-readable-stream node-resolve node-retry node-rimraf node-run-queue node-safe-buffer node-semver node-set-blocking node-signal-exit node-slash node-spdx-correct node-spdx-exceptions node-spdx-expression-parse node-spdx-license-ids node-sshpk node-ssri node-string-decoder node-string-width node-strip-ansi node-supports-color node-tar node-text-table node-tunnel-agent node-tweetnacl node-typedarray-to-buffer node-unique-filename node-uri-js node-util-deprecate node-uuid node-validate-npm-package-license node-validate-npm-package-name node-verror node-wcwidth.js node-which node-wide-align node-wrappy node-write-file-atomic node-yallist nodejs npm ocl-icd-libopencl1 odbcinst odbcinst1debian2 openbox openssh-client openssh-server openssh-sftp-server openssl parted passwd pci.ids perl perl-base pinentry-curses pkg-config plymouth policykit-1 poppler-data portaudio19-dev procps proftpd-core psmisc pulseaudio pulseaudio-utils python3 python3-colorzero python3-dev python3-distutils python3-dnspython python3-gpiozero python3-ldb python3-lib2to3 python3-minimal python3-numpy python3-pkg-resources python3-rpi.gpio python3-samba python3-setuptools python3-smbus python3-talloc python3-tdb python3-venv rake re2c readline-common rng-tools5 rpi.gpio-common rsync ruby ruby-minitest ruby-net-telnet ruby-power-assert ruby-rubygems ruby-test-unit ruby-xmlrpc runit-helper samba samba-common samba-common-bin samba-libs samba-vfs-modules screen sed sensible-utils shared-mime-info sudo swig swig4.0 systemd systemd-sysv systemd-timesyncd systemtap-sdt-dev sysvinit-utils tar tdb-tools tigervnc-common tigervnc-scraping-server tigervnc-standalone-server tmux tzdata ucf udev unixodbc-dev unzip upower usbutils util-linux uuid-dev vorbis-tools wget whiptail wireless-regdb wireless-tools wpasupplicant x11-common x11-xkb-utils x11-xserver-utils x11proto-dev xarchiver xauth xdg-dbus-proxy xfconf xfonts-base xfonts-encodings xkb-data xserver-common xserver-xorg-core xserver-xorg-input-libinput xserver-xorg-video-fbdev xz-utils zenity zenity-common zlib1g zlib1g-dev zsh zsh-common 1062 upgraded, 377 newly installed, 10 to remove and 0 not upgraded. Need to get 792 MB of archives. After this operation, 1403 MB of additional disk space will be used. Get:1 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf base-files armhf 12.4+rpi1+deb12u1 [70.9 kB] Get:2 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-l10n all 2.36-9+rpi1+deb12u1 [675 kB] Get:3 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf locales all 2.36-9+rpi1+deb12u1 [3902 kB] Get:4 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf locales-all armhf 2.36-9+rpi1+deb12u1 [10.7 MB] Get:5 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-dev-bin armhf 2.36-9+rpi1+deb12u1 [43.7 kB] Get:6 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf binutils armhf 2.40-2+rpi2 [65.4 kB] Get:7 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-dev armhf 2.74.6-1 [1464 kB] Get:8 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc6-dev armhf 2.36-9+rpi1+deb12u1 [1256 kB] Get:9 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rpcsvc-proto armhf 1.4.3-1 [55.1 kB] Get:10 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc6 armhf 2.36-9+rpi1+deb12u1 [2106 kB] Get:57 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-venv armhf 3.11.2-1 [1188 B] Get:11 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzstd1 armhf 1.5.4+dfsg2-5 [237 kB] Get:12 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libctf0 armhf 2.40-2+rpi2 [71.5 kB] Get:13 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libctf-nobfd0 armhf 2.40-2+rpi2 [133 kB] Get:14 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjansson4 armhf 2.14-2 [37.0 kB] Get:15 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf binutils-arm-linux-gnueabihf armhf 2.40-2+rpi2 [2052 kB] Get:16 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbinutils armhf 2.40-2+rpi2 [406 kB] Get:17 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf binutils-common armhf 2.40-2+rpi2 [2470 kB] Get:18 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libffi8 armhf 3.4.4-1 [19.4 kB] Get:19 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-dev-bin armhf 2.74.6-1 [147 kB] Get:20 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-bin armhf 2.74.6-1 [101 kB] Get:21 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-0 armhf 2.74.6-1 [1203 kB] Get:80 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libncurses5-dev armhf 6.4-4 [932 B] Get:22 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam0g-dev armhf 1.5.2-6 [141 kB] Get:23 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam0g armhf 1.5.2-6 [86.2 kB] Get:24 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcrypt1 armhf 1:4.4.33-2 [93.3 kB] Get:25 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcrypt-dev armhf 1:4.4.33-2 [121 kB] Get:26 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-bin armhf 2.36-9+rpi1+deb12u1 [493 kB] Get:27 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libapt-pkg-perl armhf 0.1.40+b4 [64.3 kB] Get:28 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblist-moreutils-xs-perl armhf 0.430-3+b1 [35.1 kB] Get:29 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtext-iconv-perl armhf 1.7-8 [13.8 kB] Get:30 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtext-charwidth-perl armhf 0.04-11 [9328 B] Get:31 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf perl-modules-5.36 all 5.36.0-7 [2815 kB] Get:32 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgdbm6 armhf 1.23-3 [68.3 kB] Get:33 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libperl5.36 armhf 5.36.0-7 [3462 kB] Get:34 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf perl armhf 5.36.0-7 [239 kB] Get:35 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf perl-base armhf 5.36.0-7 [1413 kB] Get:36 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblocale-gettext-perl armhf 1.07-5 [14.9 kB] Get:37 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zlib1g-dev armhf 1:1.2.13.dfsg-1 [901 kB] Get:38 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zlib1g armhf 1:1.2.13.dfsg-1 [73.5 kB] Get:39 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-12-base armhf 12.2.0-14+rpi1 [37.7 kB] Get:40 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-s1 armhf 12.2.0-14+rpi1 [36.3 kB] Get:41 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libatomic1 armhf 12.2.0-14+rpi1 [8240 B] Get:42 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libssl3 armhf 3.0.9-1 [1619 kB] Get:43 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-minimal armhf 3.11.2-6 [797 kB] Get:44 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexpat1-dev armhf 2.5.0-1 [130 kB] Get:45 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexpat1 armhf 2.5.0-1 [77.2 kB] Get:46 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11-minimal armhf 3.11.2-6 [1679 kB] Get:47 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblzma-dev armhf 5.4.1-0.2 [246 kB] Get:48 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblzma5 armhf 5.4.1-0.2 [192 kB] Get:49 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tar armhf 1.34+dfsg-1.2 [788 kB] Get:50 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dpkg armhf 1.21.22+rpi1 [1497 kB] Get:51 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3-dev armhf 3.11.2-1 [9248 B] Get:52 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-dev armhf 3.11.2-1 [26.2 kB] Get:53 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-vfs-modules armhf 2:4.17.8+dfsg-2 [386 kB] Get:54 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-ldb armhf 2:2.6.2+samba4.17.8+dfsg-2 [53.8 kB] Get:55 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldb2 armhf 2:2.6.2+samba4.17.8+dfsg-2 [133 kB] Get:56 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba armhf 2:4.17.8+dfsg-2 [845 kB] Get:58 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-tdb armhf 1.4.8-2 [15.5 kB] Get:59 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtalloc2 armhf 2.4.0-f2 [23.9 kB] Get:60 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-talloc armhf 2.4.0-f2 [13.8 kB] Get:61 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-smbus armhf 4.3-2+b2 [11.3 kB] Get:62 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-samba armhf 2:4.17.8+dfsg-2 [2408 kB] Get:63 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-rpi.gpio armhf 0.7.1~a4-1+b2 [21.2 kB] Get:64 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-numpy armhf 1:1.24.2-1 [3826 kB] Get:65 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-distutils all 3.11.2-3 [131 kB] Get:66 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-lib2to3 all 3.11.2-3 [76.3 kB] Get:67 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-minimal armhf 3.11.2-1 [26.0 kB] Get:68 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3 armhf 3.11.2-1 [26.0 kB] Get:69 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsqlite3-dev armhf 3.40.1-2 [893 kB] Get:70 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsqlite3-0 armhf 3.40.1-2 [724 kB] Get:71 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf media-types all 10.0.0 [26.1 kB] Get:72 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaudit-common all 1:3.0.9-1 [10.4 kB] Get:73 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcap-ng0 armhf 0.8.3-1+b1 [15.6 kB] Get:74 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaudit1 armhf 1:3.0.9-1 [43.7 kB] Get:75 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdb5.3-dev armhf 5.3.28+dfsg2-1 [629 kB] Get:76 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdb5.3 armhf 5.3.28+dfsg2-1 [571 kB] Get:77 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libncurses6 armhf 6.4-4 [80.0 kB] Get:78 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtinfo6 armhf 6.4-4 [317 kB] Get:79 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libncursesw6 armhf 6.4-4 [106 kB] Get:81 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libncurses-dev armhf 6.4-4 [292 kB] Get:82 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ncurses-bin armhf 6.4-4 [414 kB] Get:83 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libreadline-dev armhf 8.2-1.3 [123 kB] Get:84 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf readline-common all 8.2-1.3 [69.0 kB] Get:85 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libreadline8 armhf 8.2-1.3 [142 kB] Get:86 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtirpc-common all 1.3.3+ds-1 [14.0 kB] Get:87 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtirpc-dev armhf 1.3.3+ds-1 [174 kB] Get:88 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkrb5-dev armhf 1.20.1-2 [14.6 kB] Get:89 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf krb5-multidev armhf 1.20.1-2 [125 kB] Get:90 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgssrpc4 armhf 1.20.1-2 [50.3 kB] Get:91 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf comerr-dev armhf 2.1-1.47.0-2 [50.8 kB] Get:92 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcom-err2 armhf 1.47.0-2 [19.1 kB] Get:93 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkdb5-10 armhf 1.20.1-2 [35.2 kB] Get:94 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkadm5srv-mit12 armhf 1.20.1-2 [45.2 kB] Get:95 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkadm5clnt-mit12 armhf 1.20.1-2 [35.6 kB] Get:96 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkeyutils1 armhf 1.6.3-2 [7892 B] Get:97 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgssapi-krb5-2 armhf 1.20.1-2 [109 kB] Get:98 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libk5crypto3 armhf 1.20.1-2 [72.9 kB] Get:99 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkrb5support0 armhf 1.20.1-2 [29.3 kB] Get:100 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkrb5-3 armhf 1.20.1-2 [283 kB] Get:101 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtirpc3 armhf 1.3.3+ds-1 [72.0 kB] Get:102 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf uuid-dev armhf 2.38.1-5 [37.7 kB] Get:103 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libuuid1 armhf 2.38.1-5 [27.1 kB] Get:104 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-stdlib armhf 3.11.2-6 [1668 kB] Get:105 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11 armhf 3.11.2-6 [572 kB] Get:106 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3-stdlib armhf 3.11.2-1 [9012 B] Get:107 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11 armhf 3.11.2-6 [1667 kB] Get:108 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-dev armhf 3.11.2-6 [3364 kB] Get:109 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11-dev armhf 3.11.2-6 [511 kB] Get:110 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [326 kB] Get:111 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [116 kB] Get:112 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-sphinxdoc all 5.3.0-4 [130 kB] Get:113 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++6 armhf 12.2.0-14+rpi1 [504 kB] Get:114 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmp3-dev armhf 2:6.2.1+dfsg1-1.1 [331 kB] Get:115 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmp-dev armhf 2:6.2.1+dfsg1-1.1 [582 kB] Get:116 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmpxx4ldbl armhf 2:6.2.1+dfsg1-1.1 [338 kB] Get:117 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmp10 armhf 2:6.2.1+dfsg1-1.1 [507 kB] Get:118 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnettle8 armhf 3.8.1-2 [293 kB] Get:119 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libhogweed6 armhf 3.8.1-2 [315 kB] Get:120 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libunistring2 armhf 1.0-2 [407 kB] Get:121 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libidn2-0 armhf 2.3.3-1+b2 [117 kB] Get:122 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libp11-kit0 armhf 0.24.1-2 [324 kB] Get:123 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtasn1-6 armhf 4.19.0-2 [50.9 kB] Get:124 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgnutls30 armhf 3.7.9-2 [1309 kB] Get:125 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libicu72 armhf 72.1-3 [9009 kB] Get:126 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsasl2-modules-db armhf 2.1.28+dfsg-10 [19.1 kB] Get:127 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsasl2-dev armhf 2.1.28+dfsg-10 [206 kB] Get:128 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsasl2-2 armhf 2.1.28+dfsg-10 [51.9 kB] Get:129 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldap-2.5-0 armhf 2.5.13+dfsg-5+rpi1 [154 kB] Get:130 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtdb1 armhf 1.4.8-2 [39.6 kB] Get:131 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtevent0 armhf 0.14.1-1 [32.4 kB] Get:132 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liburing2 armhf 2.3-3 [12.7 kB] Get:133 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmd-dev armhf 1.0.4-2 [46.6 kB] Get:134 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmd0 armhf 1.0.4-2 [28.6 kB] Get:135 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbsd-dev armhf 0.11.7-2 [235 kB] Get:136 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbsd0 armhf 0.11.7-2 [112 kB] Get:137 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf sensible-utils all 0.0.17+nmu1 [19.0 kB] Get:138 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf ucf all 3.0043+nmu1 [55.2 kB] Get:139 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-common-bin armhf 2:4.17.8+dfsg-2 [1050 kB] Get:140 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-common all 2:4.17.8+dfsg-2 [83.3 kB] Get:141 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavahi-client3 armhf 0.8-10 [41.1 kB] Get:142 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavahi-common3 armhf 0.8-10 [38.5 kB] Get:143 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavahi-common-data armhf 0.8-10 [107 kB] Get:144 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-user-session armhf 1.14.8-2~deb12u1 [77.4 kB] Get:145 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-x11 armhf 1.14.8-2~deb12u1 [88.8 kB] Get:146 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdbus-1-3 armhf 1.14.8-2~deb12u1 [176 kB] Get:147 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus armhf 1.14.8-2~deb12u1 [94.5 kB] Get:148 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-bin armhf 1.14.8-2~deb12u1 [102 kB] Get:149 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-session-bus-common all 1.14.8-2~deb12u1 [77.5 kB] Get:150 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapparmor-dev armhf 3.0.8-3 [80.7 kB] Get:151 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapparmor1 armhf 3.0.8-3 [37.1 kB] Get:152 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsepol2 armhf 3.4-2.1 [228 kB] Get:153 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libselinux1-dev armhf 3.4-1+b2 [143 kB] Get:154 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsepol-dev armhf 3.4-2.1 [309 kB] Get:155 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-16-0 armhf 10.42-1 [210 kB] Get:156 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-32-0 armhf 10.42-1 [201 kB] Get:157 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-posix3 armhf 10.42-1 [55.1 kB] Get:158 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-dev armhf 10.42-1 [648 kB] Get:159 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-8-0 armhf 10.42-1 [225 kB] Get:160 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libselinux1 armhf 3.4-1+b2 [64.5 kB] Get:161 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgpg-error-dev armhf 1.46-1 [119 kB] Get:162 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgpg-error0 armhf 1.46-1 [66.2 kB] Get:163 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcrypt20-dev armhf 1.10.1-3 [685 kB] Get:164 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcrypt20 armhf 1.10.1-3 [627 kB] Get:165 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd-dev armhf 252.12-1~deb12u1+rpi1 [352 kB] Get:166 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libargon2-dev armhf 0~20171227-0.3+deb12u1 [23.3 kB] Get:167 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libargon2-1 armhf 0~20171227-0.3+deb12u1 [19.1 kB] Get:168 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libblkid-dev armhf 2.38.1-5 [162 kB] Get:169 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libblkid1 armhf 2.38.1-5 [131 kB] Get:170 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dmsetup armhf 2:1.02.185-2 [81.8 kB] Get:171 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libudev-dev armhf 252.12-1~deb12u1+rpi1 [52.0 kB] Get:172 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libattr1-dev armhf 1:2.5.1-4 [34.5 kB] Get:173 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libattr1 armhf 1:2.5.1-4 [21.2 kB] Get:174 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libacl1-dev armhf 2.3.1-3 [89.7 kB] Get:175 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libacl1 armhf 2.3.1-3 [28.8 kB] Get:176 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcap2 armhf 1:2.66-4 [23.5 kB] Get:177 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf kmod armhf 30+20221128-1 [82.2 kB] Get:178 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libkmod2 armhf 30+20221128-1 [49.9 kB] Get:179 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsemanage-common all 3.4-1 [21.6 kB] Get:180 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsemanage2 armhf 3.4-1+b2 [75.6 kB] Get:181 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf passwd armhf 1:4.13+dfsg1-1 [905 kB] Get:182 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam-modules-bin armhf 1.5.2-6 [71.5 kB] Get:183 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam-modules armhf 1.5.2-6 [274 kB] Get:184 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf adduser all 3.134 [183 kB] Get:185 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf less armhf 590-2 [114 kB] Get:186 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpam-systemd armhf 252.12-1~deb12u1+rpi1 [200 kB] Get:187 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd-timesyncd armhf 252.12-1~deb12u1+rpi1 [62.9 kB] Get:188 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ifupdown armhf 0.8.41 [55.1 kB] Get:189 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-xorg-video-fbdev armhf 1:0.5.0-2 [24.2 kB] Get:190 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-xorg-core armhf 2:21.1.7-3 [3450 kB] Get:191 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd armhf 252.12-1~deb12u1+rpi1 [2881 kB] Get:192 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf udev armhf 252.12-1~deb12u1+rpi1 [1577 kB] Get:193 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libudev1 armhf 252.12-1~deb12u1+rpi1 [99.1 kB] Get:194 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdevmapper1.02.1 armhf 2:1.02.185-2 [123 kB] Get:195 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-c5 armhf 0.16-2 [40.0 kB] Err:195 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-c5 armhf 0.16-2 Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] Get:196 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcryptsetup12 armhf 2:2.6.1-4~deb12u1 [191 kB] Get:197 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libip4tc2 armhf 1.8.9-2 [17.1 kB] Get:198 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblz4-1 armhf 1.9.4-1+rpi1+b1 [52.7 kB] Get:199 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmount-dev armhf 2.38.1-5 [22.2 kB] Get:200 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmount1 armhf 2.38.1-5 [143 kB] Get:201 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libseccomp2 armhf 2.5.4-1+rpi1+b1 [46.2 kB] Get:202 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd-shared armhf 252.12-1~deb12u1+rpi1 [1511 kB] Get:203 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam-runtime all 1.5.2-6 [161 kB] Get:204 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd-sysv armhf 252.12-1~deb12u1+rpi1 [41.9 kB] Get:205 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdw1 armhf 0.188-2.1+rpi1 [212 kB] Get:206 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libelf1 armhf 0.188-2.1+rpi1 [171 kB] Get:207 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbpf1 armhf 1:1.1.0-1 [122 kB] Get:208 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxtables12 armhf 1.8.9-2 [27.9 kB] Get:209 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcap2-bin armhf 1:2.66-4 [32.4 kB] Get:210 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iproute2 armhf 6.1.0-3 [899 kB] Get:211 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsmartcols1 armhf 2.38.1-5 [90.9 kB] Get:212 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf login armhf 1:4.13+dfsg1-1 [611 kB] Get:213 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfdisk1 armhf 2.38.1-5 [178 kB] Get:214 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fdisk armhf 2.38.1-5 [127 kB] Get:215 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf util-linux-extra armhf 2.38.1-5 [97.5 kB] Get:216 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf util-linux armhf 2.38.1-5 [1063 kB] Get:217 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xkb-data all 2.35.1-1 [764 kB] Get:218 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf kbd armhf 2.5.1-1 [300 kB] Get:219 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnumber-compare-perl all 0.03-3 [6332 B] Get:220 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtext-glob-perl all 0.11-3 [7676 B] Get:221 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfile-find-rule-perl all 0.34-3 [26.6 kB] Get:222 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf usrmerge all 35 [12.5 kB] Get:223 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf init-system-helpers all 1.65.2 [49.8 kB] Get:224 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf console-setup-linux all 1.221 [1882 kB] Get:225 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf console-setup all 1.221 [102 kB] Get:226 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf keyboard-configuration all 1.221 [416 kB] Get:227 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf sysvinit-utils armhf 3.06-4 [29.2 kB] Get:228 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf lsb-base all 11.6+rpi1 [4808 B] Get:229 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf x11-common all 1:7.7+23 [252 kB] Get:230 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf x11proto-dev all 2022.1-1 [599 kB] Get:231 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb1-dev armhf 1.15-1 [175 kB] Get:232 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb1 armhf 1.15-1 [139 kB] Get:233 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-dev armhf 2:1.8.4-2+deb12u1 [769 kB] Get:234 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-data all 2:1.8.4-2+deb12u1 [292 kB] Get:235 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-6 armhf 2:1.8.4-2+deb12u1 [691 kB] Get:236 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-xcb1 armhf 2:1.8.4-2+deb12u1 [192 kB] Get:237 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxext6 armhf 2:1.3.4-1 [48.0 kB] Get:238 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxt-dev armhf 1:1.2.1-1.1 [368 kB] Get:239 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxt6 armhf 1:1.2.1-1.1 [155 kB] Get:240 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmu6 armhf 2:1.1.3-3 [52.0 kB] Get:241 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxpm-dev armhf 1:3.5.12-1.1 [96.5 kB] Get:242 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxpm4 armhf 1:3.5.12-1.1 [42.0 kB] Get:243 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxaw7 armhf 2:1.0.14-1 [165 kB] Get:244 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxrender1 armhf 1:0.9.10-1.1 [30.0 kB] Get:245 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxrandr2 armhf 2:1.5.2-2 [35.5 kB] Get:246 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf x11-xkb-utils armhf 7.7+7 [140 kB] Get:247 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-common all 2:21.1.7-3 [2382 kB] Get:248 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcvt0 armhf 0.1.2-1 [5976 B] Get:249 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgl1 armhf 1.6.0-1 [89.9 kB] Get:250 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-common all 2.4.114-1+rpi1 [7276 B] Get:251 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm2 armhf 2.4.114-1+rpi1 [32.8 kB] Get:252 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-server0 armhf 1.21.0-1 [29.3 kB] Get:253 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libegl-mesa0 armhf 22.3.6-1+deb12u1+rpi1 [93.0 kB] Get:254 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgbm1 armhf 22.3.6-1+deb12u1+rpi1 [34.3 kB] Get:255 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-client0 armhf 1.21.0-1 [23.3 kB] Get:256 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-dri2-0 armhf 1.15-1 [107 kB] Get:257 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-dri3-0 armhf 1.15-1 [107 kB] Get:258 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-present0 armhf 1.15-1 [105 kB] Get:259 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-randr0 armhf 1.15-1 [116 kB] Get:260 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-sync1 armhf 1.15-1 [108 kB] Get:261 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xfixes0 armhf 1.15-1 [109 kB] Get:262 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-amdgpu1 armhf 2.4.114-1+rpi1 [19.3 kB] Get:263 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libz3-4 armhf 4.8.12-3.1 [5797 kB] Get:264 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libedit-dev armhf 3.1-20221030-2 [94.4 kB] Get:265 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libedit2 armhf 3.1-20221030-2 [76.2 kB] Get:266 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf icu-devtools armhf 72.1-3 [175 kB] Get:267 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libicu-dev armhf 72.1-3 [9959 kB] Get:268 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxml2-dev armhf 2.9.14+dfsg-1.3~deb12u1 [637 kB] Get:269 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxml2 armhf 2.9.14+dfsg-1.3~deb12u1 [570 kB] Get:270 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libllvm15 armhf 1:15.0.6-4+rpi1+b1 [20.7 MB] Get:271 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-nouveau2 armhf 2.4.114-1+rpi1 [17.0 kB] Get:272 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-radeon1 armhf 2.4.114-1+rpi1 [20.7 kB] Get:273 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsensors-dev armhf 1:3.6.0-7.1 [39.5 kB] Get:274 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsensors-config all 1:3.6.0-7.1 [14.3 kB] Get:275 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsensors5 armhf 1:3.6.0-7.1 [31.6 kB] Get:276 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgl1-mesa-dri armhf 22.3.6-1+deb12u1+rpi1 [5636 kB] Get:277 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libglx-mesa0 armhf 22.3.6-1+deb12u1+rpi1 [130 kB] Get:278 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libglapi-mesa armhf 22.3.6-1+deb12u1+rpi1 [45.8 kB] Get:279 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-glx0 armhf 1.15-1 [121 kB] Get:280 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-shm0 armhf 1.15-1 [106 kB] Get:281 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfixes3 armhf 1:6.0.0-2 [21.2 kB] Get:282 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglx0 armhf 1.6.0-1 [32.0 kB] Get:283 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgles2 armhf 1.6.0-1 [17.2 kB] Get:284 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libegl1 armhf 1.6.0-1 [28.3 kB] Get:285 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglvnd0 armhf 1.6.0-1 [53.8 kB] Get:286 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libepoxy0 armhf 1.5.10-1 [172 kB] Get:287 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpciaccess0 armhf 0.17-2 [48.8 kB] Get:288 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpixman-1-0 armhf 0.42.2-1 [461 kB] Err:288 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpixman-1-0 armhf 0.42.2-1 Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] Get:289 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libunwind8 armhf 1.6.2-3 [42.6 kB] Get:290 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfreetype-dev armhf 2.12.1+dfsg-5 [493 kB] Get:291 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfreetype6-dev armhf 2.12.1+dfsg-5 [46.4 kB] Get:292 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbrotli-dev armhf 1.0.9-2+b3 [270 kB] Get:293 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbrotli1 armhf 1.0.9-2+b3 [258 kB] Get:294 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpng-dev armhf 1.6.39-2 [336 kB] Get:295 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpng16-16 armhf 1.6.39-2 [258 kB] Get:296 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfreetype6 armhf 2.12.1+dfsg-5 [329 kB] Get:297 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfont2 armhf 1:2.0.6-1 [120 kB] Get:298 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mount armhf 2.38.1-5 [125 kB] Get:299 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd0 armhf 252.12-1~deb12u1+rpi1 [299 kB] Get:300 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-daemon armhf 1.14.8-2~deb12u1 [168 kB] Get:301 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-system-bus-common all 1.14.8-2~deb12u1 [78.5 kB] Get:302 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcups2 armhf 2.4.2-3+deb12u1 [205 kB] Get:303 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpopt0 armhf 1.19+dfsg-1 [40.4 kB] Get:304 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwbclient0 armhf 2:4.17.8+dfsg-2 [47.5 kB] Get:305 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-libs armhf 2:4.17.8+dfsg-2 [4832 kB] Get:306 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libproc2-0 armhf 2:4.0.2-3 [53.6 kB] Get:307 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf procps armhf 2:4.0.2-3 [679 kB] Get:308 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf netbase all 6.4 [12.8 kB] Get:309 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-dnspython all 2.3.0-1 [152 kB] Get:310 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf tdb-tools armhf 1.4.8-2 [26.0 kB] Get:311 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssl armhf 3.0.9-1 [1365 kB] Get:312 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ca-certificates all 20230311 [153 kB] Get:313 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-pip-whl all 23.0.1+dfsg-1 [1717 kB] Get:314 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-setuptools-whl all 66.1.1-1 [1111 kB] Get:315 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11-venv armhf 3.11.2-6 [5892 B] Get:316 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libi2c0 armhf 4.3-2+b2 [9156 B] Get:317 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf rpi.gpio-common armhf 0.7.1~a4-1+b2 [6808 B] Get:318 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-setuptools all 66.1.1-1 [521 kB] Get:319 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-pkg-resources all 66.1.1-1 [296 kB] Get:320 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgfortran5 armhf 12.2.0-14+rpi1 [238 kB] Get:321 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libopenblas0-pthread armhf 0.3.21+ds-4+rpi1 [2159 kB] Get:322 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libblas3 armhf 3.11.0-2 [100.0 kB] Get:323 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libatlas3-base armhf 3.10.3-13+rpi1 [2356 kB] Get:324 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblapack3 armhf 3.11.0-2 [1624 kB] Get:325 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-data all 2.74.6-1 [1208 kB] Get:326 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libffi-dev armhf 3.4.4-1 [60.4 kB] Get:327 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpkgconf3 armhf 1.8.1-1 [31.3 kB] Get:328 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkgconf-bin armhf 1.8.1-1 [27.8 kB] Get:329 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf m4 armhf 1.4.19-3 [256 kB] Get:330 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf debianutils armhf 5.7-0.4 [101 kB] Get:331 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf autoconf all 2.71-3 [332 kB] Get:332 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkg-config armhf 1.8.1-1 [13.7 kB] Get:333 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkgconf armhf 1.8.1-1 [25.9 kB] Get:334 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbz2-dev armhf 1.0.8-5+b2 [26.8 kB] Get:335 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf bzip2 armhf 1.0.8-5+b2 [47.4 kB] Get:336 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbz2-1.0 armhf 1.0.8-5+b2 [43.5 kB] Get:337 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgdbm-compat4 armhf 1.23-3 [47.8 kB] Get:338 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxxhash0 armhf 0.8.1-1 [27.8 kB] Get:339 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapt-pkg6.0 armhf 2.6.1 [805 kB] Get:340 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf debconf all 1.5.82 [121 kB] Get:341 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bash armhf 5.2.15-2 [1365 kB] Get:342 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bsdutils armhf 1:2.38.1-5 [84.2 kB] Get:343 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf coreutils armhf 9.1-1 [2702 kB] Get:344 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dash armhf 0.5.12-2 [78.9 kB] Get:345 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf diffutils armhf 1:3.8-4 [332 kB] Get:346 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf findutils armhf 4.9.0-4 [616 kB] Get:347 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf grep armhf 3.8-5 [404 kB] Get:348 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gzip armhf 1.12-1 [132 kB] Get:349 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf hostname armhf 3.23+nmu1 [9908 B] Get:350 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf sed armhf 4.9-1 [318 kB] Get:351 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdebconfclient0 armhf 0.270 [9536 B] Get:352 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf base-passwd armhf 3.6.1 [57.6 kB] Get:353 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ncurses-base all 6.4-4 [261 kB] Get:354 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libksba8 armhf 1.6.3-2 [107 kB] Get:355 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libassuan0 armhf 2.5.5-5 [42.2 kB] Get:356 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gnupg-l10n all 2.2.40-1.1 [1093 kB] Get:357 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gnupg-utils armhf 2.2.40-1.1 [812 kB] Get:358 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgconf armhf 2.2.40-1.1 [540 kB] Get:359 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dirmngr armhf 2.2.40-1.1 [731 kB] Get:360 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg armhf 2.2.40-1.1 [843 kB] Get:361 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg-agent armhf 2.2.40-1.1 [636 kB] Get:362 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg-wks-client armhf 2.2.40-1.1 [518 kB] Get:363 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg-wks-server armhf 2.2.40-1.1 [511 kB] Get:364 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgv armhf 2.2.40-1.1 [601 kB] Get:365 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgsm armhf 2.2.40-1.1 [621 kB] Get:366 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gnupg all 2.2.40-1.1 [846 kB] Get:367 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pinentry-curses armhf 1.2.1-1 [72.0 kB] Get:368 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apt armhf 2.6.1 [1296 kB] Get:369 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf filezilla armhf 3.63.0-1 [1598 kB] Get:370 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf filezilla-common all 3.63.0-1 [2324 kB] Get:371 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfilezilla-common all 0.41.0-2 [72.5 kB] Get:372 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfilezilla34 armhf 0.41.0-2 [218 kB] Get:373 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgdk-pixbuf-2.0-0 armhf 2.42.10+dfsg-1+b1 [123 kB] Get:374 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgdk-pixbuf2.0-common all 2.42.10+dfsg-1 [306 kB] Get:375 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf shared-mime-info armhf 2.2-1 [726 kB] Get:376 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjpeg62-turbo-dev armhf 1:2.1.5-2 [258 kB] Get:377 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjpeg62-turbo armhf 1:2.1.5-2 [143 kB] Get:378 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdeflate-dev armhf 1.14-1 [48.1 kB] Get:379 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdeflate0 armhf 1.14-1 [50.9 kB] Get:380 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjbig-dev armhf 2.1-6.1 [27.2 kB] Get:381 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjbig0 armhf 2.1-6.1 [27.0 kB] Get:382 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblerc4 armhf 4.0.0+ds-2 [133 kB] Get:383 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebp7 armhf 1.2.4-0.2 [242 kB] Get:384 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtiff6 armhf 4.5.0-6 [293 kB] Get:385 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gtk-update-icon-cache armhf 3.24.37-2 [42.3 kB] Get:386 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf adwaita-icon-theme all 43-1 [5124 kB] Get:387 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf at-spi2-common all 2.46.0-5 [162 kB] Err:387 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf at-spi2-common all 2.46.0-5 Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] Get:388 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatk1.0-0 armhf 2.46.0-5 [41.4 kB] Get:389 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxi6 armhf 2:1.8-1 [78.1 kB] Get:390 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatspi2.0-0 armhf 2.46.0-5 [63.8 kB] Get:391 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatk-bridge2.0-0 armhf 2.46.0-5 [55.6 kB] Get:392 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfontconfig-dev armhf 2.14.1-4 [383 kB] Get:393 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fonts-dejavu-core all 2.37-6 [1068 kB] Get:394 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fonts-urw-base35 all 20200910-7 [10.8 MB] Get:395 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fontconfig-config armhf 2.14.1-4 [315 kB] Get:396 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfontconfig1 armhf 2.14.1-4 [366 kB] Get:397 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-render0 armhf 1.15-1 [114 kB] Get:398 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcairo-gobject2 armhf 1.16.0-7 [111 kB] Get:399 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcairo2 armhf 1.16.0-7 [482 kB] Get:400 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblcms2-2 armhf 2.14-2 [124 kB] Get:401 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcolord2 armhf 1.4.6-2.2 [115 kB] Get:402 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfribidi0 armhf 1.0.8-2.1 [63.7 kB] Get:403 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libharfbuzz0b armhf 6.0.0+dfsg-3 [1894 kB] Get:404 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxft2 armhf 2.3.6-1 [53.7 kB] Get:405 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpangocairo-1.0-0 armhf 1.50.12+ds-1 [30.1 kB] Get:406 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpangoft2-1.0-0 armhf 1.50.12+ds-1 [40.5 kB] Get:407 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpango-1.0-0 armhf 1.50.12+ds-1 [186 kB] Get:408 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpangoxft-1.0-0 armhf 1.50.12+ds-1 [24.2 kB] Get:409 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fontconfig armhf 2.14.1-4 [449 kB] Get:410 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libthai-data all 0.1.29-1 [176 kB] Get:411 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdatrie1 armhf 0.2.13-2+b2 [39.9 kB] Get:412 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libthai0 armhf 0.1.29-1 [54.5 kB] Get:413 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-cursor0 armhf 1.21.0-1 [13.2 kB] Get:414 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-egl1 armhf 1.21.0-1 [8448 B] Get:415 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcursor1 armhf 1:1.2.1-1 [38.0 kB] Get:416 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxdamage1 armhf 1:1.1.6-1 [14.7 kB] Get:417 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxinerama1 armhf 2:1.1.4-3 [17.4 kB] Get:418 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xkb1 armhf 1.15-1 [126 kB] Get:419 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxkbcommon-x11-0 armhf 1.5.0-1 [13.8 kB] Get:420 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxkbcommon0 armhf 1.5.0-1 [93.1 kB] Get:421 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dconf-gsettings-backend armhf 0.40.0-4 [23.1 kB] Get:422 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dconf-service armhf 0.40.0-4 [28.9 kB] Get:423 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdconf1 armhf 0.40.0-4 [36.0 kB] Get:424 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgtk-3-common all 3.24.37-2 [3891 kB] Get:425 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgtk-3-0 armhf 3.24.37-2 [2351 kB] Get:426 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpugixml1v5 armhf 1.13-0.2 [71.8 kB] Get:427 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxbase3.2-1 armhf 3.2.2+dfsg-2 [820 kB] Get:428 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnotify4 armhf 0.8.1-1 [27.5 kB] Get:429 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxtst6 armhf 2:1.2.3-1.1 [26.3 kB] Get:430 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxgtk3.2-1 armhf 3.2.2+dfsg-2 [3737 kB] Get:431 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbabl-0.1-0 armhf 1:0.1.98-1+rpi1 [264 kB] Get:432 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaom3 armhf 3.6.0-1 [1332 kB] Get:433 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libva-x11-2 armhf 2.17.0-1 [19.6 kB] Get:434 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libva-drm2 armhf 2.17.0-1 [15.9 kB] Get:435 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libva2 armhf 2.17.0-1 [61.1 kB] Get:436 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvdpau1 armhf 1.5-2 [23.9 kB] Get:437 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ocl-icd-libopencl1 armhf 2.3.1-1 [40.3 kB] Get:438 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavutil57 armhf 7:5.1.3-1 [325 kB] Get:439 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcodec2-1.0 armhf 1.0.5-1 [8151 kB] Get:440 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdav1d6 armhf 1.0.0-2+rpi1 [205 kB] Get:441 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgsm1 armhf 1.0.22-1 [28.3 kB] Get:442 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libhwy1 armhf 1.0.3-3+rpi1 [20.9 kB] Get:443 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjxl0.7 armhf 0.7.0-10 [627 kB] Get:444 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmp3lame0 armhf 3.100-6 [347 kB] Get:445 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenjp2-7 armhf 2.5.0-2 [164 kB] Get:446 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopus0 armhf 1.3.1-3 [171 kB] Get:447 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf librav1e0 armhf 0.5.1-6 [521 kB] Get:448 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librsvg2-common armhf 2.54.7+dfsg-1~deb12u1 [21.0 kB] Get:449 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librsvg2-2 armhf 2.54.7+dfsg-1~deb12u1 [2205 kB] Get:450 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsnappy1v5 armhf 1.1.9-3 [23.9 kB] Get:451 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspeex1 armhf 1.2.1-2 [45.5 kB] Get:452 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsvtav1enc1 armhf 1.4.1+dfsg-1 [880 kB] Get:453 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libswresample4 armhf 7:5.1.3-1 [85.1 kB] Get:454 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libogg0 armhf 1.3.5-3 [21.7 kB] Get:455 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtheora0 armhf 1.1.1+dfsg.1-16.1 [130 kB] Get:456 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvpx7 armhf 1.12.0-1 [1210 kB] Get:457 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebp-dev armhf 1.2.4-0.2 [350 kB] Get:458 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebpdemux2 armhf 1.2.4-0.2 [98.4 kB] Get:459 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebpmux3 armhf 1.2.4-0.2 [106 kB] Get:460 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx264-164 armhf 2:0.164.3095+gitbaee400-3+rpi1 [688 kB] Get:461 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libx265-199 armhf 3.5-2 [548 kB] Get:462 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libzvbi0 armhf 0.2.41-1 [241 kB] Get:463 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libzvbi-common all 0.2.41-1 [69.7 kB] Get:464 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavcodec59 armhf 7:5.1.3-1 [4578 kB] Get:732 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf g++ armhf 4:12.2.0-3+rpi1 [1344 B] Get:465 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libudfread0 armhf 1.1.2-1 [14.6 kB] Get:466 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbluray2 armhf 1:1.3.4-1 [120 kB] Get:467 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libchromaprint1 armhf 1.5.1-2+b2 [33.7 kB] Get:468 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgme0 armhf 0.6.3-6 [105 kB] Get:469 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmpg123-0 armhf 1.31.2-1 [126 kB] Get:470 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenmpt0 armhf 0.6.9-1 [597 kB] Get:471 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librabbitmq4 armhf 0.11.0-1+b1 [38.3 kB] Get:472 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcjson1 armhf 1.7.15-1 [20.9 kB] Get:473 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmbedcrypto7 armhf 2.28.3-1 [241 kB] Get:474 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librist4 armhf 0.2.7+dfsg-1 [67.1 kB] Get:475 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsrt1.5-gnutls armhf 1.5.1-1 [263 kB] Get:476 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libssh-gcrypt-4 armhf 0.10.5-2 [185 kB] Get:477 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libzmq5 armhf 4.3.4-6 [226 kB] Get:478 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavformat59 armhf 7:5.1.3-1 [1011 kB] Get:479 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgomp1 armhf 12.2.0-14+rpi1 [95.4 kB] Get:480 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-glib-1.0-common all 1.6.6-1 [57.1 kB] Get:481 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-glib-1.0-0 armhf 1.6.6-1 [57.1 kB] Get:482 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libimath-3-1-29 armhf 3.1.6-1+b1 [37.4 kB] Get:483 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenexr-3-1-30 armhf 3.1.5-5 [814 kB] Get:484 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnspr4 armhf 2:4.35-1 [90.9 kB] Get:485 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnss3 armhf 2:3.87.1-1 [1090 kB] Get:486 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpoppler126 armhf 22.12.0-2 [1682 kB] Get:487 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpoppler-glib8 armhf 22.12.0-2 [108 kB] Get:488 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libraw20 armhf 0.20.2-2.1 [323 kB] Get:489 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libswscale6 armhf 7:5.1.3-1 [170 kB] Get:490 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsuitesparseconfig5 armhf 1:5.12.0+dfsg-2 [23.6 kB] Get:491 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libamd2 armhf 1:5.12.0+dfsg-2 [30.2 kB] Get:492 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcamd2 armhf 1:5.12.0+dfsg-2 [30.7 kB] Get:493 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libccolamd2 armhf 1:5.12.0+dfsg-2 [31.7 kB] Get:494 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcolamd2 armhf 1:5.12.0+dfsg-2 [28.3 kB] Get:495 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcholmod3 armhf 1:5.12.0+dfsg-2 [212 kB] Get:496 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libumfpack5 armhf 1:5.12.0+dfsg-2 [128 kB] Get:497 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgegl-common all 1:0.4.42-2 [745 kB] Get:498 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgegl-0.4-0 armhf 1:0.4.42-2 [1501 kB] Get:499 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexiv2-27 armhf 0.27.6-1 [1418 kB] Get:500 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgexiv2-2 armhf 0.14.0-1 [68.0 kB] Get:501 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gimp armhf 2.10.34-1 [3526 kB] Get:502 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgimp2.0 armhf 2.10.34-1 [736 kB] Get:503 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gimp-data all 2.10.34-1 [14.2 MB] Get:504 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcdt5 armhf 2.42.2-7+b2 [37.3 kB] Get:505 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcgraph6 armhf 2.42.2-7+b2 [56.0 kB] Get:506 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libabsl20220623 armhf 20220623.1-1+rpi1 [361 kB] Get:507 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgav1-1 armhf 0.18.0-1+rpi1+b1 [285 kB] Get:508 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libyuv0 armhf 0.0~git20230123.b2528b0-1 [82.7 kB] Get:509 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavif15 armhf 0.11.1-1 [84.1 kB] Get:510 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavif-dev armhf 0.11.1-1 [41.7 kB] Get:511 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libde265-0 armhf 1.0.11-1+rpi1 [137 kB] Get:512 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libheif1 armhf 1.15.1-1 [178 kB] Get:513 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaom-dev armhf 3.6.0-1 [1528 kB] Get:514 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdav1d-dev armhf 1.0.0-2+rpi1 [25.7 kB] Get:515 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libde265-dev armhf 1.0.11-1+rpi1 [13.8 kB] Get:516 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libx265-dev armhf 3.5-2 [571 kB] Err:516 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libx265-dev armhf 3.5-2 Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] Get:517 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libheif-dev armhf 1.15.1-1 [33.5 kB] Get:518 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjpeg-dev armhf 1:2.1.5-2 [71.8 kB] Get:519 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzstd-dev armhf 1.5.4+dfsg2-5 [297 kB] Get:520 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtiffxx6 armhf 4.5.0-6 [144 kB] Get:521 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblerc-dev armhf 4.0.0+ds-2 [147 kB] Get:522 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtiff-dev armhf 4.5.0-6 [415 kB] Get:523 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvpx-dev armhf 1.12.0-1 [658 kB] Get:524 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgd-dev armhf 2.3.3-9 [237 kB] Get:525 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgd3 armhf 2.3.3-9 [103 kB] Get:526 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgts-0.7-5 armhf 0.7.6+darcs121130-5 [134 kB] Get:527 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf autotools-dev all 20220109.1 [51.6 kB] Get:528 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf automake all 1:1.16.5-1.3 [823 kB] Get:529 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libltdl-dev armhf 2.4.7-5 [161 kB] Get:530 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libltdl7 armhf 2.4.7-5 [390 kB] Get:531 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpathplan4 armhf 2.42.2-7+b2 [39.5 kB] Get:532 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgvc6 armhf 2.42.2-7+b2 [566 kB] Get:533 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgvpr2 armhf 2.42.2-7+b2 [162 kB] Get:534 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblab-gamut1 armhf 2.42.2-7+b2 [197 kB] Get:535 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf graphviz armhf 2.42.2-7+b2 [479 kB] Get:536 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgpm2 armhf 1.20.7-10+b2 [35.5 kB] Get:537 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libslang2 armhf 2.3.3-3 [500 kB] Get:538 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaa1 armhf 1.4p5-50 [50.8 kB] Get:539 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs9-common all 10.0.0~dfsg-11+deb12u1 [27.6 kB] Get:540 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs-common all 10.0.0~dfsg-11+deb12u1 [149 kB] Get:541 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs10-common all 10.0.0~dfsg-11+deb12u1 [586 kB] Get:542 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf poppler-data all 0.4.12-1 [1601 kB] Get:543 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libidn12 armhf 1.41-1+b1 [77.0 kB] Get:544 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjbig2dec0 armhf 0.19-3+b2 [58.6 kB] Get:545 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpaper1 armhf 1.1.29 [11.9 kB] Get:546 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs10 armhf 10.0.0~dfsg-11+deb12u1 [2055 kB] Get:547 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgudev-1.0-0 armhf 237-2 [13.2 kB] Get:548 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwmf0.2-7 armhf 0.2.12-5.1 [25.8 kB] Get:549 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwmflite-0.2-7 armhf 0.2.12-5.1 [67.9 kB] Get:550 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwmf-0.2-7 armhf 0.2.12-5.1 [101 kB] Get:551 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libssl-dev armhf 3.0.9-1 [2099 kB] Get:552 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libuv1-dev armhf 1.44.2-1+rpi1 [157 kB] Get:553 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libuv1 armhf 1.44.2-1+rpi1 [125 kB] Get:554 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libc-ares2 armhf 1.18.1-3 [95.4 kB] Get:555 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnghttp2-14 armhf 1.52.0-1 [60.6 kB] Get:556 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-xtend all 4.0.2-3 [3932 B] Get:557 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnode-dev armhf 18.13.0+dfsg1-1+rpi1 [498 kB] Get:558 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf nodejs armhf 18.13.0+dfsg1-1+rpi1 [304 kB] Get:559 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-acorn all 8.8.1+ds+~cs25.17.7-2 [128 kB] Get:560 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cjs-module-lexer all 1.2.2+dfsg-5 [30.1 kB] Get:561 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-busboy all 1.6.0+~cs2.6.0-2 [16.9 kB] Get:562 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-undici all 5.15.0+dfsg1+~cs20.10.9.3-1+deb12u1 [284 kB] Get:563 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnode108 armhf 18.13.0+dfsg1-1+rpi1 [8798 kB] Get:564 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libevdev2 armhf 1.13.0+dfsg-1+rpi1 [27.9 kB] Get:565 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libinput10 armhf 1.22.1-1 [106 kB] Get:566 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libinput-bin armhf 1.22.1-1 [21.7 kB] Get:567 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwacom-common all 2.6.0-1 [58.4 kB] Get:568 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwacom9 armhf 2.6.0-1 [18.5 kB] Get:569 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf logsave armhf 1.47.0-2 [19.1 kB] Get:570 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf klibc-utils armhf 2.0.12-1+rpi1 [87.1 kB] Get:571 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf initramfs-tools all 0.142 [72.9 kB] Get:572 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf initramfs-tools-core all 0.142 [105 kB] Get:573 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libext2fs2 armhf 1.47.0-2 [184 kB] Get:574 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf e2fsprogs armhf 1.47.0-2 [521 kB] Get:575 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libklibc armhf 2.0.12-1+rpi1 [42.1 kB] Get:576 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf linux-base all 4.9 [31.8 kB] Get:577 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpio armhf 2.13+dfsg-7.1 [229 kB] Get:578 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cron-daemon-common all 3.0pl1-162 [12.7 kB] Get:579 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cron armhf 3.0pl1-162 [68.2 kB] Get:580 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsctp-dev armhf 1.0.19+dfsg-2 [71.5 kB] Get:581 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsctp1 armhf 1.0.19+dfsg-2 [29.1 kB] Get:582 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapr1-dev armhf 1.7.2-3 [732 kB] Get:583 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1-dbd-sqlite3 armhf 1.6.3-1 [12.3 kB] Get:584 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1-ldap armhf 1.6.3-1 [11.3 kB] Get:585 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldap2-dev all 2.5.13+dfsg-5+rpi1 [22.7 kB] Get:586 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldap-dev armhf 2.5.13+dfsg-5+rpi1 [259 kB] Get:587 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1-dev armhf 1.6.3-1 [397 kB] Get:588 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1 armhf 1.6.3-1 [75.2 kB] Get:589 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapr1 armhf 1.7.2-3 [82.4 kB] Get:590 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf curl armhf 7.88.1-10+rpi1 [300 kB] Get:591 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpsl5 armhf 0.21.2-1 [57.5 kB] Get:592 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libssh2-1 armhf 1.10.0-3+b1 [161 kB] Get:593 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl4 armhf 7.88.1-10+rpi1 [343 kB] Get:594 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblua5.3-0 armhf 5.3.6-2 [98.3 kB] Get:595 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2 armhf 2.4.57-2 [215 kB] Get:596 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-bin armhf 2.4.57-2 [1161 kB] Get:597 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-data all 2.4.57-2 [160 kB] Get:598 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-utils armhf 2.4.57-2 [201 kB] Get:599 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf flex armhf 2.6.4-8.2 [391 kB] Get:600 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf git armhf 1:2.39.2-1.1 [5459 kB] Get:601 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf git-man all 1:2.39.2-1.1 [2049 kB] Get:602 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl4-gnutls-dev armhf 7.88.1-10+rpi1 [419 kB] Get:603 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl3-gnutls armhf 7.88.1-10+rpi1 [337 kB] Get:604 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liberror-perl all 0.17029-2 [29.0 kB] Get:605 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcbor0.8 armhf 0.8.0-2 [22.8 kB] Get:606 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfido2-1 armhf 1.12.0-2 [67.6 kB] Get:607 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssh-sftp-server armhf 1:9.2p1-2 [55.5 kB] Get:608 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssh-server armhf 1:9.2p1-2 [377 kB] Get:609 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssh-client armhf 1:9.2p1-2 [818 kB] Get:610 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf runit-helper all 2.15.2 [6520 B] Get:611 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwrap0-dev armhf 7.6.q-32 [18.4 kB] Get:612 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwrap0 armhf 7.6.q-32 [52.6 kB] Get:613 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libhiredis0.14 armhf 0.14.1-3 [30.7 kB] Get:614 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libhashkit2 armhf 1.1.4-1 [16.3 kB] Get:615 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmemcached11 armhf 1.1.4-1 [70.2 kB] Get:616 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmemcachedutil2 armhf 1.1.4-1 [13.7 kB] Get:617 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf proftpd-core armhf 1.3.8+dfsg-4+deb12u1 [2437 kB] Get:618 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libatopology2 armhf 1.2.8-1+b1 [47.0 kB] Get:619 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasound2-dev armhf 1.2.8-1+b1 [110 kB] Get:620 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasound2 armhf 1.2.8-1+b1 [302 kB] Get:621 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libasound2-data all 1.2.8-1 [20.5 kB] Get:622 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfftw3-single3 armhf 3.3.10-1 [509 kB] Get:623 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgstreamer1.0-0 armhf 1.22.0-2 [1073 kB] Get:624 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liborc-0.4-0 armhf 1:0.4.33-2 [135 kB] Get:625 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iso-codes all 4.15.0-1 [2906 kB] Get:626 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-plugins-base1.0-0 armhf 1.22.0-3+deb12u1 [840 kB] Get:627 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libflac12 armhf 1.4.2+ds-2 [149 kB] Get:628 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsndfile1 armhf 1.2.0-1 [177 kB] Get:629 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpulsedsp armhf 16.1+dfsg1-2+b2 [34.8 kB] Get:630 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf pulseaudio armhf 16.1+dfsg1-2+b2 [1079 kB] Get:631 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf pulseaudio-utils armhf 16.1+dfsg1-2+b2 [81.8 kB] Get:632 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasyncns0 armhf 0.8-6+b3 [12.0 kB] Get:633 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpulse0 armhf 16.1+dfsg1-2+b2 [239 kB] Get:634 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspeexdsp1 armhf 1.2.1-1 [33.6 kB] Get:635 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjack-dev armhf 1:0.126.0-2 [148 kB] Get:636 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjack0 armhf 1:0.126.0-2 [81.1 kB] Get:637 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsamplerate0 armhf 0.2.2-3 [943 kB] Get:638 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libasound2-plugins armhf 1.2.7.1-1 [66.4 kB] Get:639 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rsync armhf 3.2.7-1 [368 kB] Get:640 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf sgml-base all 1.31 [15.4 kB] Get:641 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf sudo armhf 1.9.13p3-1+deb12u1 [1825 kB] Get:642 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre3-dev armhf 2:8.39-15 [576 kB] Get:643 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre16-3 armhf 2:8.39-15 [234 kB] Get:644 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre32-3 armhf 2:8.39-15 [225 kB] Get:645 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcrecpp0v5 armhf 2:8.39-15 [141 kB] Get:646 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre3 armhf 2:8.39-15 [313 kB] Get:647 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgc1 armhf 1:8.2.2-3 [235 kB] Get:648 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc4 armhf 12.2.0-14+rpi1 [33.6 kB] Get:649 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc-10-dev armhf 10.4.0-7+rpi1 [159 kB] Get:650 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-11-base armhf 11.3.0-12+rpi1 [38.6 kB] Get:651 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasan6 armhf 11.3.0-12+rpi1 [1946 kB] Get:652 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libubsan1 armhf 12.2.0-14+rpi1 [861 kB] Get:653 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf g++-10 armhf 10.4.0-7+rpi1 [7360 kB] Get:654 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-10 armhf 10.4.0-7+rpi1 [13.4 MB] Get:1047 http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian bookworm/main armhf node-is-typedarray all 1.0.0-4 [3292 B] Get:655 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++-10-dev armhf 10.4.0-7+rpi1 [1763 kB] Get:656 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-10-dev armhf 10.4.0-7+rpi1 [682 kB] Get:657 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libisl23 armhf 0.25-1 [519 kB] Get:658 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmpfr6 armhf 4.2.0-1 [574 kB] Get:659 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmpc3 armhf 1.3.1-1 [41.0 kB] Get:660 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcc1-0 armhf 12.2.0-14+rpi1 [32.2 kB] Get:661 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpp-10 armhf 10.4.0-7+rpi1 [6697 kB] Get:662 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-10-base armhf 10.4.0-7+rpi1 [36.0 kB] Get:663 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libplymouth5 armhf 22.02.122-3 [84.3 kB] Get:664 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf plymouth armhf 22.02.122-3 [121 kB] Get:665 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mawk armhf 1.3.4.20200120-3.1 [102 kB] Get:666 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf tzdata all 2023c-5 [296 kB] Get:667 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dmidecode armhf 3.4-1 [55.4 kB] Get:668 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf groff-base armhf 1.22.4-10 [774 kB] Get:669 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iputils-ping armhf 3:20221126-1 [43.9 kB] Get:670 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf isc-dhcp-client armhf 4.4.3-P1-2 [945 kB] Get:671 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bsdextrautils armhf 2.38.1-5 [78.5 kB] Get:672 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpipeline1 armhf 1.5.7-1 [33.4 kB] Get:673 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf man-db armhf 2.11.2-2 [1342 kB] Get:674 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf nano armhf 7.2-1 [663 kB] Get:675 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf netcat-openbsd armhf 1.219-1 [38.9 kB] Get:676 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bash-completion all 1:2.11-6 [234 kB] Get:677 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf file armhf 1:5.44-3 [41.5 kB] Get:678 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmagic-dev armhf 1:5.44-3 [107 kB] Get:679 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmagic1 armhf 1:5.44-3 [95.3 kB] Get:680 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmagic-mgc armhf 1:5.44-3 [305 kB] Get:681 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gettext-base armhf 0.21-12 [156 kB] Get:682 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf lsof armhf 4.95.0-1+rpi1 [305 kB] Get:683 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libutempter0 armhf 1.2.1-3 [8404 B] Get:684 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf screen armhf 4.9.0-4 [539 kB] Get:685 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf wget armhf 1.21.3-1+b1 [942 kB] Get:686 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xz-utils armhf 5.4.1-0.2 [467 kB] Get:687 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf alsa-utils armhf 1.2.8-1 [1057 kB] Get:688 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dpkg-dev all 1.21.22+rpi1 [1353 kB] Get:689 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf debhelper all 13.11.4 [942 kB] Get:690 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdebhelper-perl all 13.11.4 [81.2 kB] Get:691 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdpkg-perl all 1.21.22+rpi1 [603 kB] Get:692 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsub-override-perl all 0.09-4 [9304 B] Get:693 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dh-strip-nondeterminism all 1.13.1-1 [8620 B] Get:694 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfile-stripnondeterminism-perl all 1.13.1-1 [19.4 kB] Get:695 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dwz armhf 0.15-1 [92.4 kB] Get:696 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-dev armhf 2.4.57-2 [306 kB] Get:697 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libregexp-assemble-perl all 0.38-2 [77.8 kB] Get:698 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apt-file all 3.3 [39.1 kB] Get:699 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf autoconf2.64 all 2.64+dfsg-1.1 [480 kB] Get:700 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gettext armhf 0.21-12 [1201 kB] Get:701 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf autopoint all 0.21-12 [495 kB] Get:702 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf bison armhf 2:3.8.2+dfsg-1 [1114 kB] Get:703 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bubblewrap armhf 0.8.0-2 [42.7 kB] Get:704 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libllvm14 armhf 1:14.0.6-12+rpi1 [19.5 MB] Get:1180 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdb-dev armhf 5.3.2 [1744 B] Get:705 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-cpp14 armhf 1:14.0.6-12+rpi1 [9464 kB] Get:706 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasan8 armhf 12.2.0-14+rpi1 [2088 kB] Get:707 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-12-dev armhf 12.2.0-14+rpi1 [727 kB] Get:708 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++-12-dev armhf 12.2.0-14+rpi1 [2027 kB] Get:709 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc-12-dev armhf 12.2.0-14+rpi1 [159 kB] Get:710 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-common-14-dev all 1:14.0.6-12+rpi1 [891 kB] Get:711 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf llvm-14-linker-tools armhf 1:14.0.6-12+rpi1 [1044 kB] Get:712 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang1-14 armhf 1:14.0.6-12+rpi1 [5208 kB] Get:713 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf clang-14 armhf 1:14.0.6-12+rpi1 [95.7 kB] Err:713 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf clang-14 armhf 1:14.0.6-12+rpi1 Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] Get:714 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf clang armhf 1:14.0-55.6 [4972 B] Get:715 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf clang-11 armhf 1:11.1.0-6+rpi2 [77.6 kB] Get:716 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-common-11-dev armhf 1:11.1.0-6+rpi2 [2794 kB] Get:717 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-cpp11 armhf 1:11.1.0-6+rpi2 [8244 kB] Get:718 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libllvm11 armhf 1:11.1.0-6+rpi2 [15.6 MB] Get:719 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-11-dev armhf 11.3.0-12+rpi1 [698 kB] Get:720 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++-11-dev armhf 11.3.0-12+rpi1 [1976 kB] Get:721 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc-11-dev armhf 11.3.0-12+rpi1 [160 kB] Get:722 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf llvm-11-linker-tools armhf 1:11.1.0-6+rpi2 [912 kB] Get:723 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang1-11 armhf 1:11.1.0-6+rpi2 [4620 kB] Get:724 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libarchive13 armhf 3.6.2-1 [293 kB] Get:725 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjsoncpp25 armhf 1.9.5-4 [66.7 kB] Get:726 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf librhash0 armhf 1.4.3-3 [142 kB] Get:727 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cmake armhf 3.25.1-1 [3859 kB] Get:728 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cmake-data all 3.25.1-1 [2026 kB] Get:729 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf colorized-logs armhf 2.6-1 [15.4 kB] Get:730 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpp-12 armhf 12.2.0-14+rpi1 [7159 kB] Get:731 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-12 armhf 12.2.0-14+rpi1 [14.2 MB] Get:733 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc armhf 4:12.2.0-3+rpi1 [5216 B] Get:734 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf g++-12 armhf 12.2.0-14+rpi1 [7914 kB] Get:735 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpp armhf 4:12.2.0-3+rpi1 [7048 B] Get:736 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mysql-common all 5.8+1.1.0 [6636 B] Get:737 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mariadb-common all 1:10.11.3-1+rpi1 [24.1 kB] Get:738 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmariadb-dev-compat armhf 1:10.11.3-1+rpi1 [22.9 kB] Get:739 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmariadb-dev armhf 1:10.11.3-1+rpi1 [247 kB] Get:740 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmariadb3 armhf 1:10.11.3-1+rpi1 [154 kB] Get:741 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf default-libmysqlclient-dev armhf 1.1.0 [3092 B] Get:742 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfdt1 armhf 1.6.1-4+b1 [15.7 kB] Get:743 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libyaml-0-2 armhf 0.2.5-1 [44.6 kB] Get:744 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf device-tree-compiler armhf 1.6.1-4+b1 [216 kB] Get:745 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf emacsen-common all 3.0.5 [12.3 kB] Get:746 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dictionaries-common all 1.29.5 [184 kB] Get:747 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf distro-info-data all 0.58 [5848 B] Get:748 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-fast-deep-equal all 3.1.3-3 [5768 B] Get:749 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-json-schema-traverse all 1.0.0-3 [6308 B] Get:750 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsonify all 0.0.1-1 [8704 B] Get:751 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-stable-stringify all 1.0.2+~cs5.2.34-1 [11.3 kB] Get:752 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-punycode all 2.1.1-6 [9444 B] Get:753 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-uri-js all 4.4.0+dfsg-8 [47.3 kB] Get:754 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ajv all 6.12.6-3 [74.0 kB] Get:755 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-inherits all 2.0.4-6 [3548 B] Get:756 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-inherits all 2.0.4-6 [4548 B] Get:757 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-util-is all 1.0.3-1 [4072 B] Get:758 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-safe-buffer all 5.2.1+~cs2.1.2-3 [15.5 kB] Get:759 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-string-decoder all 1.3.0-6 [7180 B] Get:760 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-process-nextick-args all 2.0.1-3 [3816 B] Get:761 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-util-deprecate all 1.0.2-3 [4436 B] Get:762 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-isarray all 2.0.5-4 [4040 B] Get:763 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-readable-stream all 3.6.0+~cs3.0.0-4 [32.0 kB] Get:764 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-typedarray all 0.0.7-1 [11.4 kB] Get:765 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-concat-stream all 2.0.0+~2.0.0-2 [6388 B] Get:766 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ms all 2.1.3+~cs0.7.31-3 [5648 B] Get:767 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-debug all 4.3.4+~cs4.1.7-1 [18.1 kB] Get:768 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-esutils all 2.0.3+~2.0.0-1 [12.4 kB] Get:769 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-doctrine all 3.0.0-4 [19.9 kB] Get:770 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-eslint-visitor-keys all 3.3.0+~1.0.0-1 [17.1 kB] Get:771 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-estraverse all 5.3.0+ds+~5.1.1-1 [11.6 kB] Get:772 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-object-assign all 4.1.1-7 [4684 B] Get:773 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-esrecurse all 4.3.0-2 [6048 B] Get:774 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-eslint-scope all 7.1.1+~3.7.4-1 [35.6 kB] Get:775 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-espree all 9.4.1~dfsg-1 [41.0 kB] Get:776 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-esquery all 1.4.2~ds-1 [24.9 kB] Get:777 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-eslint-utils all 3.0.0-3 [15.5 kB] Get:778 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-flatted all 3.2.7~ds-1 [10.3 kB] Get:779 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-fs.realpath all 1.0.0-3 [6172 B] Get:780 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wrappy all 1.0.2-3 [3776 B] Get:781 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-once all 1.4.0-7 [4492 B] Get:782 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-inflight all 1.0.6-2 [3952 B] Get:783 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-balanced-match all 2.0.0-1 [4872 B] Get:784 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-brace-expansion all 2.0.1-2 [7320 B] Get:785 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-minimatch all 5.1.1+~5.1.2-1 [18.6 kB] Get:786 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-glob all 8.0.3+~cs8.4.15-1 [133 kB] Get:787 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-rimraf all 3.0.2-2 [11.1 kB] Get:788 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-write all 2.0.0~6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5 [17.8 kB] Get:789 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-flat-cache all 3.0.4~6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5 [20.1 kB] Get:790 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-file-entry-cache all 6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5 [15.0 kB] Get:791 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-functional-red-black-tree all 1.0.1+20181105-7 [14.1 kB] Get:792 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-extglob all 2.1.1-5 [4612 B] Get:793 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-glob all 4.0.3-2 [6620 B] Get:794 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-dirname all 1.0.2-2 [4312 B] Get:795 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-glob-parent all 6.0.2+~5.1.1-2 [8784 B] Get:796 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-globals all 13.18.0-1 [11.1 kB] Get:797 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-imurmurhash all 0.1.4+dfsg+~0.1.1-2 [8412 B] Get:798 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ignore all 5.2.1-1 [26.4 kB] Get:799 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-prelude-ls all 1.2.1+dfsg-3 [11.3 kB] Get:800 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-type-check all 0.4.0+dfsg-3 [9184 B] Get:801 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-levn all 0.4.1+dfsg-2 [10.2 kB] Get:802 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-lodash all 4.17.21+dfsg+~cs8.31.198.20210220-9 [462 kB] Get:803 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-memfs all 3.4.12+~cs1.0.3-1 [46.8 kB] Get:804 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-mkdirp all 1.0.4+~1.0.2-4 [11.6 kB] Get:805 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-deep-is all 0.1.4-1 [5136 B] Get:806 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fast-levenshtein all 2.0.6+ds-3 [6040 B] Get:807 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-optionator all 0.9.1+dfsg+~cs1.2.3-1 [17.6 kB] Get:808 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-progress all 2.0.3-2 [8256 B] Get:809 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-regenerate all 1.4.2-3 [14.3 kB] Get:810 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-regenerate all 1.4.2-3 [7388 B] Get:811 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regenerate-unicode-properties all 10.1.0+ds-1 [50.7 kB] Get:812 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-regexpp all 3.2.0-4 [27.0 kB] Get:813 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-abbrev all 1.1.1+~1.1.2-1 [5692 B] Get:814 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-agent-base all 6.0.2+~cs5.4.2-2 [17.3 kB] Get:815 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-aproba all 2.0.0-3 [5844 B] Get:816 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-archy all 1.0.0-6 [4556 B] Get:817 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-base64-js all 1.5.1+dfsg+~1.3.0-2 [7140 B] Get:818 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-binary-extensions all 2.2.0-2 [4408 B] Get:819 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-color-name all 1.1.4+~1.1.1-2 [5920 B] Get:820 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-color-convert all 2.0.1+~cs2.0.0-2 [13.1 kB] Get:821 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansi-styles all 6.2.1-2 [8640 B] Get:822 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-escape-string-regexp all 4.0.0-2 [4296 B] Get:823 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-has-flag all 4.0.0-3 [4304 B] Get:824 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-supports-color all 8.1.1+~8.1.1-1 [6920 B] Get:825 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chalk all 5.2.0-1 [18.0 kB] Get:826 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chownr all 2.0.0-2 [4424 B] Get:827 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ci-info all 3.6.1+~cs1.1.0-1 [11.7 kB] Get:828 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-colors all 1.4.0-4 [11.9 kB] Get:829 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-slice-ansi all 5.0.0+~cs9.0.0-5 [8788 B] Get:830 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansi-regex all 5.0.1-1 [4912 B] Get:831 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-strip-ansi all 6.0.1-2 [4120 B] Get:832 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-clone all 2.1.2-4 [8280 B] Get:833 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-defaults all 1.0.4+~1.0.3-1 [4400 B] Get:834 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wcwidth.js all 1.0.2-2 [7088 B] Get:835 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-string-width all 4.2.3+~cs13.2.3-1 [10.7 kB] Get:836 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cli-table all 0.3.11+~cs0.13.4-3 [23.6 kB] Get:837 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-columnify all 1.6.0+~1.5.1-1 [12.4 kB] Get:838 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-css-selector-tokenizer all 0.8.0+~cs4.8.3-1 [13.0 kB] Get:839 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-depd all 2.0.0-2 [11.2 kB] Get:840 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-diff all 5.0.0~dfsg+~5.0.1-4 [69.7 kB] Get:841 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-iconv-lite all 0.6.3-3 [115 kB] Get:842 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-encoding all 0.1.13-2 [4400 B] Get:843 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-events all 3.3.0+~3.0.0-3 [11.3 kB] Get:844 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-events all 3.3.0+~3.0.0-3 [5888 B] Get:845 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-mimic-response all 3.1.0-8 [5404 B] Get:846 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-decompress-response all 6.0.0-2 [4620 B] Get:847 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-end-of-stream all 1.4.4+~1.4.1-1 [5292 B] Get:848 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-pump all 3.0.0-5 [5136 B] Get:849 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-get-stream all 6.0.1-1 [7208 B] Get:850 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-lowercase-keys all 2.0.0-2 [3768 B] Get:851 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-buffer all 3.0.1+~3.0.0-1 [4536 B] Get:852 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-p-cancelable all 2.1.1-1 [7272 B] Get:853 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-quick-lru all 6.1.1-4 [8076 B] Get:854 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-got all 11.8.5+~cs58.13.36-3 [121 kB] Get:855 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-graceful-fs all 4.2.10-1 [14.4 kB] Get:856 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-six all 1.16.0-4 [17.5 kB] Get:857 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gyp all 0.1+20220404git9ecf45e-2 [237 kB] Get:858 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-https-proxy-agent all 5.0.1+~cs8.0.0-3 [16.1 kB] Get:859 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-data-uri-to-buffer all 4.0.0-3 [5540 B] Get:860 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fetch all 3.3.0+~cs11.4.11-2 [212 kB] Get:861 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-nopt all 5.0.0-4 [12.1 kB] Get:862 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-delegates all 1.0.0-3 [4528 B] Get:863 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-are-we-there-yet all 3.0.1+~1.1.0-1 [10.0 kB] Get:864 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-console-control-strings all 1.1.0-3 [5564 B] Get:865 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-time-stamp all 2.2.0-2 [6016 B] Get:866 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fancy-log all 1.3.3+~cs1.3.1-2 [7940 B] Get:867 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-has-unicode all 2.0.1-5 [3992 B] Get:868 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-signal-exit all 3.0.7+~3.0.1-1 [7600 B] Get:869 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wide-align all 1.1.3-4 [4244 B] Get:870 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-gauge all 4.0.4-1 [19.6 kB] Get:871 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-set-blocking all 2.0.0-2 [4248 B] Get:872 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-npmlog all 7.0.1+~4.1.4-1 [11.4 kB] Get:873 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-osenv all 0.1.5+~0.1.1-1 [5884 B] Get:874 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsonparse all 1.3.1-10 [8020 B] Get:875 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-yallist all 4.0.0+~4.0.1-1 [8172 B] Get:876 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-minipass all 3.3.6+~cs9.4.19-1 [43.0 kB] Get:877 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-tar all 6.1.13+~cs7.0.5-1 [51.1 kB] Get:878 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-isexe all 2.0.0+~2.0.1-5 [6084 B] Get:879 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-which all 2.0.2+~cs1.3.2-3 [8368 B] Get:880 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-semver all 7.3.5+~7.3.9-2 [42.1 kB] Get:881 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-gyp all 9.3.0-2 [57.9 kB] Get:882 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf npm all 9.2.0~ds1-1 [669 kB] Get:883 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-hosted-git-info all 6.1.1-2 [12.6 kB] Get:884 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ieee754 all 1.2.1-3 [5268 B] Get:885 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ini all 3.0.1-2 [6928 B] Get:886 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ip all 2.0.0+~1.1.0-1 [8128 B] Get:887 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ip-regex all 4.3.0+~4.1.1-1 [5188 B] Get:888 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-parse-better-errors all 1.0.2+~cs3.3.1-2 [7800 B] Get:889 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-negotiator all 0.6.3+~0.6.1-1 [10.8 kB] Get:890 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-function-bind all 1.1.1+repacked+~1.0.3-2 [5252 B] Get:891 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-resolve all 1.22.1+~cs5.31.10-1 [28.1 kB] Get:892 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-spdx-license-ids all 3.0.12-1 [6276 B] Get:893 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-spdx-exceptions all 2.3.0-2 [3992 B] Get:894 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-spdx-expression-parse all 3.0.1+~3.0.1-1 [7532 B] Get:895 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-spdx-correct all 3.1.1-2 [5464 B] Get:896 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-validate-npm-package-license all 3.0.4-2 [4280 B] Get:897 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-normalize-package-data all 4.0.1+~2.4.1-1 [13.6 kB] Get:898 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-slash all 4.0.0-3 [4292 B] Get:899 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-read-package-json all 5.0.2+~2.0.0-1 [12.0 kB] Get:900 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-npm-bundled all 2.0.1-2 [6408 B] Get:901 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-validate-npm-package-name all 5.0.0+~4.0.0-1 [7444 B] Get:902 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-builtins all 5.0.1-1 [4072 B] Get:903 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-npm-package-arg all 10.0.0+~3.0.0-2 [11.4 kB] Get:904 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-indent-string all 4.0.0-2 [4144 B] Get:905 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-p-map all 4.0.0+~3.1.0+~3.0.1-1 [7912 B] Get:906 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-camelcase all 7.0.0-3 [6032 B] Get:907 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-isobject all 4.0.0-2 [5332 B] Get:908 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-picocolors all 1.0.0-4 [6652 B] Get:909 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-postcss all 8.4.20+~cs8.0.23-1 [180 kB] Get:910 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-icss-utils all 5.1.0+~5.1.0-1 [7564 B] Get:911 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-postcss-modules-extract-imports all 3.0.0-2 [6584 B] Get:912 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-postcss-modules-values all 4.0.0+~4.0.0-1 [7180 B] Get:913 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-postcss-value-parser all 4.2.0-1 [10.4 kB] Get:914 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-caniuse-lite all 1.0.30001436+dfsg+~1.0.1-1 [208 kB] Get:915 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-electron-to-chromium all 1.4.284-1 [20.6 kB] Get:916 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-browserslist all 4.21.4+~cs6.1.17-2 [63.5 kB] Get:917 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-tslib all 2.4.1-1 [19.5 kB] Get:918 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chrome-trace-event all 1.0.3-2 [6984 B] Get:919 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-commander all 9.4.1-1 [65.3 kB] Get:920 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-prr all 1.0.1-3 [4352 B] Get:921 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-errno all 1.0.0-3 [7736 B] Get:922 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-memory-fs all 0.5.0+~0.3.3-2 [7676 B] Get:923 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-tapable all 2.2.1-2 [13.6 kB] Get:924 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-enhanced-resolve all 5.10.0-1 [33.6 kB] Get:925 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-es-module-lexer all 1.1.0+dfsg-2 [19.7 kB] Get:926 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ansi-escapes all 5.0.0+really.4.3.1-1 [8896 B] Get:927 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ampproject-remapping all 2.2.0+~cs5.15.37-1 [59.4 kB] Get:928 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-add-module-exports all 1.0.4+dfsg1~cs5.8.0-4 [8672 B] Get:929 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regenerator-runtime all 0.15.1+~0.10.8-1 [10.6 kB] Get:930 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel7-runtime all 7.20.15+ds1+~cs214.269.168-3 [116 kB] Get:931 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-lodash-packages all 4.17.21+dfsg+~cs8.31.198.20210220-9 [179 kB] Get:932 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-helper-define-polyfill-provider all 0.3.3~0~20220913+ds1-1 [27.4 kB] Get:933 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-polyfill-corejs2 all 0.3.3~0~20220913+ds1-1 [17.1 kB] Get:934 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-js-compat all 3.26.1-3 [66.1 kB] Get:935 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-polyfill-corejs3 all 0.6.0~0~20220913+ds1-1 [29.5 kB] Get:936 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-polyfill-regenerator all 0.4.1~0~20220913+ds1-1 [5036 B] Get:937 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-for-in all 1.0.2-4 [4840 B] Get:938 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-for-own all 1.0.0-3 [4800 B] Get:939 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-plain-object all 5.0.0-7 [6108 B] Get:940 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-extendable all 1.0.1-3 [5228 B] Get:941 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-buffer all 2.0.5-2 [4112 B] Get:942 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-kind-of all 6.0.3+dfsg-2 [10.2 kB] Get:943 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-clone-deep all 4.0.1+~cs7.0.2-1 [6720 B] Get:944 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-convert-source-map all 1.9.0+~1.5.2-1 [8176 B] Get:945 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-js all 3.26.1-3 [268 kB] Get:946 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-js-pure all 3.26.1-3 [250 kB] Get:947 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-commondir all 1.0.1+~1.0.0-1 [4388 B] Get:948 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-number all 7.0.0-4 [6020 B] Get:949 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-repeat-string all 1.6.1+repack-1 [5600 B] Get:950 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-to-regex-range all 5.0.1-4 [10.5 kB] Get:951 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fill-range all 7.0.1+~7.0.0-1 [8952 B] Get:952 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-braces all 3.0.2+~3.0.1-1 [20.8 kB] Get:953 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-normalize-path all 3.0.0+~3.0.0-1 [6608 B] Get:954 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-anymatch all 3.1.3+~cs4.6.1-2 [33.4 kB] Get:955 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-micromatch all 4.0.5+~4.0.2-1 [25.8 kB] Get:956 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-pify all 5.0.0+~cs5.0.1-1 [7072 B] Get:957 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-type all 4.0.0-3 [3944 B] Get:958 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-n3 all 1.16.3+~1.2.3+~1.10.4-1 [37.0 kB] Get:959 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-globby all 13.1.3+~cs16.25.40-1 [40.3 kB] Get:960 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-path-cwd all 2.2.0-2 [3672 B] Get:961 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-path-is-inside all 1.0.2+~1.0.0-1 [5072 B] Get:962 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-path-inside all 3.0.3-2 [3980 B] Get:963 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-del all 7.0.0-5 [6804 B] Get:964 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-make-dir all 3.1.0-3 [6040 B] Get:965 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-p-limit all 4.0.0+~cs4.0.0-5 [7576 B] Get:966 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-p-locate all 6.0.0-12 [5752 B] Get:967 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-locate-path all 7.1.1-2 [5584 B] Get:968 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-exists all 5.0.0-8 [4732 B] Get:969 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-find-up all 6.3.0-7 [9388 B] Get:970 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-pkg-dir all 5.0.0-2 [4260 B] Get:971 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-find-cache-dir all 3.3.2+~3.2.1-1 [6152 B] Get:972 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fs-readdir-recursive all 1.1.0+~1.1.0-1 [4540 B] Get:973 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-js-tokens all 8.0.0-2 [14.9 kB] Get:974 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jsesc all 3.0.2+~3.0.1-1 [17.6 kB] Get:975 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json5 all 2.2.3+dfsg-1 [25.6 kB] Get:976 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regenerator-transform all 0.15.1+~0.10.8-1 [24.6 kB] Get:977 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regjsgen all 0.7.1+ds-1 [6968 B] Get:978 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regjsparser all 0.9.1+ds-2 [22.1 kB] Get:979 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-unicode-canonical-property-names-ecmascript all 2.0.0-2 [4540 B] Get:980 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-unicode-property-aliases-ecmascript all 2.1.0+ds-1 [5256 B] Get:981 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-unicode-match-property-ecmascript all 2.0.0-2 [4440 B] Get:982 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-unicode-match-property-value-ecmascript all 2.1.0+ds-1 [7272 B] Get:983 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-regexpu-core all 5.2.2-3 [13.9 kB] Get:984 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-source-map all 0.7.0++dfsg2+really.0.6.1-15 [29.6 kB] Get:985 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-source-map all 0.7.0++dfsg2+really.0.6.1-15 [41.7 kB] Get:986 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-source-map-support all 0.5.21+ds+~0.5.4-1 [14.5 kB] Get:987 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-to-fast-properties all 3.0.1-3 [4332 B] Get:988 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-v8flags all 3.2.0+~3.1.1-1 [7612 B] Get:989 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel7 all 7.20.15+ds1+~cs214.269.168-3 [712 kB] Get:990 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-lodash all 3.3.4+~cs2.0.1-6 [11.0 kB] Get:991 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-resolve-cwd all 3.0.0-2 [4212 B] Get:992 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jest-debbundle all 29.3.1~ds1+~cs70.48.25-2 [129 kB] Get:993 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-interpret all 2.2.0-3 [7660 B] Get:994 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-merge-stream all 2.0.0+~1.1.2-2 [5124 B] Get:995 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jest-worker all 29.3.1~ds1+~cs70.48.25-2 [112 kB] Get:996 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-loader-runner all 4.3.0-1 [7644 B] Get:997 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-mime all 3.0.0+dfsg+~cs3.97.1-1 [40.4 kB] Get:998 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-mime-types all 2.1.35-1 [9456 B] Get:999 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-neo-async all 2.6.2+~cs3.0.0-2 [35.2 kB] Get:1000 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-rechoir all 0.8.0+~0.6.1-2 [6628 B] Get:1001 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ajv-keywords all 3.5.2-2 [20.3 kB] Get:1002 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-schema-utils all 3.1.1~ds-2 [20.0 kB] Get:1003 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-randombytes all 2.1.0+~2.0.0-2 [4852 B] Get:1004 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-serialize-javascript all 6.0.0-2 [12.7 kB] Get:1005 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-async-each all 1.0.3-3 [4292 B] Get:1006 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-binary-path all 2.1.0-5 [3684 B] Get:1007 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-is-absolute all 2.0.0-2 [4068 B] Get:1008 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-set-immediate-shim all 2.0.0-2 [3740 B] Get:1009 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-readdirp all 3.6.0-1 [11.5 kB] Get:1010 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chokidar all 3.5.3-2 [32.3 kB] Get:1011 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-watchpack all 2.4.0+~cs2.8.1-1 [20.2 kB] Get:1012 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-define-properties all 1.1.4+~1.1.3-1 [6828 B] Get:1013 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-defined all 1.0.1+~1.0.0-1 [6776 B] Get:1014 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-arrify all 2.0.1-3 [3700 B] Get:1015 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-plain-obj all 3.0.0-2 [3972 B] Get:1016 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-minimist all 1.2.7+~cs5.3.2-2 [14.7 kB] Get:1017 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wordwrap all 1.0.0-4 [4628 B] Get:1018 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-optimist all 0.6.1+~0.0.30-2 [13.5 kB] Get:1019 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf handlebars all 3:4.7.7+~4.1.0-1 [199 kB] Get:1020 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-prettify all 2015.12.04+dfsg-1.1 [41.7 kB] Get:1021 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-async all 0.8.0-6 [24.2 kB] Get:1022 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-async all 0.8.0-6 [3748 B] Get:1023 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-decamelize all 4.0.0-2 [4080 B] Get:1024 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-es6-error all 4.1.1-5 [6148 B] Get:1025 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-esprima all 4.0.1+ds+~4.0.3-2 [69.3 kB] Get:1026 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-escodegen all 2.0.0+dfsg+~0.0.7-2 [23.0 kB] Get:1027 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-foreground-child all 2.0.0-5 [6384 B] Get:1028 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-stream all 3.0.0-4 [5076 B] Get:1029 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-is-windows all 1.0.2+~cs1.0.0-1 [5936 B] Get:1030 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-sprintf-js all 1.1.2+ds1+~1.1.2-1 [12.8 kB] Get:1031 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-sprintf-js all 1.1.2+ds1+~1.1.2-1 [4024 B] Get:1032 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-argparse all 2.0.1-2 [34.6 kB] Get:1033 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-js-yaml all 4.1.0+dfsg+~4.0.5-7 [66.6 kB] Get:1034 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-npm-run-path all 5.1.0+~4.0.0-8 [6276 B] Get:1035 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-shebang-regex all 3.0.0-2 [3528 B] Get:1036 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-shebang-command all 2.0.0-1 [3500 B] Get:1037 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-strip-bom all 4.0.0-2 [4144 B] Get:1038 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-util all 0.12.5+~1.0.10-1 [16.0 kB] Get:1039 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-util all 0.12.5+~1.0.10-1 [5700 B] Get:1040 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-assert all 2.0.0+~cs3.9.8-2 [26.8 kB] Get:1041 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-arrayish all 0.3.2-3 [3960 B] Get:1042 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-error-ex all 1.3.2-4 [5656 B] Get:1043 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-parse-json all 5.2.0+~cs5.1.7-1 [7356 B] Get:1044 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-read-pkg all 5.2.0-2 [24.0 kB] Get:1045 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-uuid all 8.3.2+~8.3.3-3 [44.0 kB] Get:1046 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-is-typedarray all 1.0.0-4 [3816 B] Get:1048 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-typedarray-to-buffer all 4.0.0-2 [3380 B] Get:1049 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-typedarray-to-buffer all 4.0.0-2 [4668 B] Get:1050 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-write-file-atomic all 4.0.2+~4.0.0-1 [9284 B] Get:1051 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-wrap-ansi all 8.0.1+~8.0.1-3 [11.8 kB] Get:1052 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cliui all 7.0.4+repack+~cs3.1.0-4 [11.5 kB] Get:1053 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-get-caller-file all 2.0.5+~cs1.1.1-4 [5728 B] Get:1054 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-require-directory all 2.1.1+~2.1.2-1 [7092 B] Get:1055 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-y18n all 5.0.8+~5.0.0-3 [10.2 kB] Get:1056 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-yargs-parser all 21.1.1+~21.0.0-4 [28.4 kB] Get:1057 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-yargs all 16.2.0+~16.0.4-7 [128 kB] Get:1058 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-istanbul all 0.4.5+repack10+~cs97.25.57-3 [207 kB] Get:1059 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-object-inspect all 1.12.2+~cs1.8.1-1 [20.8 kB] Get:1060 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-resumer all 0.0.0-6 [4144 B] Get:1061 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-tape all 5.6.1+~cs8.20.19-1 [70.9 kB] Get:1062 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-deep-equal all 2.1.0+~cs31.12.80-1 [34.5 kB] Get:1063 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-debbundle-es-to-primitive all 1.2.1+~cs9.7.25-2 [39.9 kB] Get:1064 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-es-abstract all 1.20.4+~cs26.27.47-1 [137 kB] Get:1065 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-webassemblyjs all 1.11.4+dfsg+~cs10.11.17-2 [139 kB] Get:1066 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-source-list-map all 2.0.1+dfsg-2 [9348 B] Get:1067 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-webpack-sources all 3.2.3+~3.2.0-2 [23.2 kB] Get:1068 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-terser all 5.16.5-2 [204 kB] Get:1069 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf terser all 5.16.5-2 [16.5 kB] Get:1070 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf webpack all 5.75.0+dfsg+~cs17.16.14-1+deb12u1 [756 kB] Get:1071 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-css-loader all 6.7.2+~cs14.0.11-1 [73.0 kB] Get:1072 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-err-code all 2.0.3+dfsg-3 [4884 B] Get:1073 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-retry all 0.13.1+~0.12.1-1 [11.2 kB] Get:1074 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-promise-retry all 2.0.1-4 [5016 B] Get:1075 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-mute-stream all 0.0.8+~0.0.1-3 [6232 B] Get:1076 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-read all 1.0.7-5 [5388 B] Get:1077 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-promzard all 0.3.0-2 [6788 B] Get:1078 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ssri all 9.0.1-2 [18.0 kB] Get:1079 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-text-table all 0.2.0-4 [4736 B] Get:1080 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-iferr all 1.0.2+~1.0.2-1 [4588 B] Get:1081 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-fs-write-stream-atomic all 1.0.10-6 [5316 B] Get:1082 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-run-queue all 2.0.0-3 [5156 B] Get:1083 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-copy-concurrently all 1.0.5-9 [7100 B] Get:1084 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-move-concurrently all 1.0.1-5 [5152 B] Get:1085 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-promise-inflight all 1.0.1+~1.0.0-1 [4864 B] Get:1086 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-unique-filename all 1.1.1+ds-2 [4032 B] Get:1087 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cacache all 17.0.3+~cs10.3.7-1 [45.1 kB] Get:1088 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-lru-cache all 7.14.1-1 [26.3 kB] Get:1089 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-strip-json-comments all 4.0.0-4 [5668 B] Get:1090 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-schema all 0.4.0+~7.0.11-1 [13.1 kB] Get:1091 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-v8-compile-cache all 2.3.0-3 [8344 B] Get:1092 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf eslint all 6.4.0~dfsg+~6.1.9-7 [606 kB] Get:1093 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ethtool armhf 1:6.1-1 [160 kB] Get:1094 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf expat armhf 2.5.0-1 [38.3 kB] Get:1095 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf fake-hwclock all 0.12+nmu1 [6336 B] Get:1096 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfakeroot armhf 1.31-1.2 [25.7 kB] Get:1097 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fakeroot armhf 1.31-1.2 [66.0 kB] Get:1098 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libib-util armhf 3.0.11.33637.ds4-2+b1 [3360 B] Get:1099 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf firebird-dev armhf 3.0.11.33637.ds4-2+b1 [120 kB] Get:1100 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfbclient2 armhf 3.0.11.33637.ds4-2+b1 [452 kB] Get:1101 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf firebird3.0-common all 3.0.11.33637.ds4-2 [15.3 kB] Get:1102 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf firebird3.0-common-doc all 3.0.11.33637.ds4-2 [27.0 kB] Get:1103 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf flac armhf 1.4.2+ds-2 [154 kB] Get:1104 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf freetds-common all 1.3.17+ds-2 [28.9 kB] Get:1105 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf freetds-dev armhf 1.3.17+ds-2 [237 kB] Get:1106 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libct4 armhf 1.3.17+ds-2 [142 kB] Get:1107 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsybdb5 armhf 1.3.17+ds-2 [165 kB] Get:1108 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf galculator armhf 2.1.4-1.2 [152 kB] Get:1109 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libproxy1v5 armhf 0.4.18-1.2 [48.8 kB] Get:1110 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf glib-networking-common all 2.74.0-4 [80.3 kB] Get:1111 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf glib-networking armhf 2.74.0-4 [60.8 kB] Get:1112 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf glib-networking-services armhf 2.74.0-4 [11.4 kB] Get:1113 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gsettings-desktop-schemas all 43.0-1 [643 kB] Get:1114 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-1.15-src armhf 1.15.15-5+rpi1 [13.9 MB] Get:1115 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-1.15-go armhf 1.15.15-5+rpi1 [43.2 MB] Get:1116 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf golang-1.19-src all 1.19.8-2 [18.3 MB] Get:1117 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf golang-1.19-go armhf 1.19.8-2 [56.9 MB] Get:1118 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-src all 2:1.19~1 [5756 B] Get:1119 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-go armhf 2:1.19~1 [45.0 kB] Get:1120 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gparted armhf 1.3.1-1 [714 kB] Get:1121 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gparted-common all 1.3.1-1 [1711 kB] Get:1122 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsigc++-2.0-0v5 armhf 2.12.0-1 [24.2 kB] Get:1123 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglibmm-2.4-1v5 armhf 2.66.5-2 [494 kB] Get:1124 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatkmm-1.6-1v5 armhf 2.28.3-1 [67.3 kB] Get:1125 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcairomm-1.0-1v5 armhf 1.14.4-2 [49.1 kB] Get:1126 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpangomm-1.4-1v5 armhf 2.46.3-1 [57.3 kB] Get:1127 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtkmm-3.0-1v5 armhf 3.24.7-1 [808 kB] Get:1128 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf parted armhf 3.5-3 [34.5 kB] Get:1129 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libparted-fs-resize0 armhf 3.5-3 [35.3 kB] Get:1130 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libparted2 armhf 3.5-3 [283 kB] Get:1131 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf xml-core all 0.18+nmu1 [23.8 kB] Get:1132 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libduktape207 armhf 2.7.0-2 [115 kB] Get:1133 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf policykit-1 armhf 122-3 [11.8 kB] Get:1134 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpolkit-agent-1-0 armhf 122-3 [22.1 kB] Get:1135 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpolkit-gobject-1-0 armhf 122-3 [38.1 kB] Get:1136 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf polkitd armhf 122-3 [108 kB] Get:1137 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkexec armhf 122-3 [22.2 kB] Get:1138 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcdparanoia0 armhf 3.10.2+debian-14 [41.7 kB] Get:1139 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvisual-0.4-0 armhf 0.4.0-19 [117 kB] Get:1140 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gstreamer1.0-plugins-base armhf 1.22.0-3+deb12u1 [670 kB] Get:1141 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcaca0 armhf 0.99.beta20-3 [194 kB] Get:1142 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdv4 armhf 1.0.0-15 [65.6 kB] Get:1143 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libiec61883-0 armhf 1.2.0-6 [28.0 kB] Get:1144 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libshout3 armhf 2.4.6-1+b1 [48.5 kB] Get:1145 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtag1v5 armhf 1.13-2 [18.7 kB] Get:1146 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtag1v5-vanilla armhf 1.13-2 [243 kB] Get:1147 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libv4l-0 armhf 1.22.1-5 [105 kB] Get:1148 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libv4lconvert0 armhf 1.22.1-5 [133 kB] Get:1149 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwavpack1 armhf 5.6.0-1 [72.5 kB] Get:1150 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup-gnome2.4-1 armhf 2.74.3-1 [10.6 kB] Get:1151 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup2.4-common all 2.74.3-1 [56.0 kB] Get:1152 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup2.4-1 armhf 2.74.3-1 [230 kB] Get:1153 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup-3.0-common all 3.2.2-2 [60.8 kB] Get:1154 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup-3.0-0 armhf 3.2.2-2 [233 kB] Get:1155 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gstreamer1.0-plugins-good armhf 1.22.0-5+deb12u1 [1988 kB] Get:1156 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf hdparm armhf 9.65+ds-1 [97.7 kB] Get:1157 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnl-route-3-200 armhf 3.7.0-0.2 [152 kB] Get:1158 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnl-genl-3-200 armhf 3.7.0-0.2 [19.7 kB] Get:1159 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnl-3-200 armhf 3.7.0-0.2 [55.0 kB] Get:1160 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf htop armhf 3.2.2-2 [129 kB] Get:1161 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf hunspell-en-us all 1:2020.12.07-2 [269 kB] Get:1162 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf i2c-tools armhf 4.3-2+b2 [77.6 kB] Get:1163 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf intltool-debian all 0.35.0+20060710.6 [22.9 kB] Get:1164 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf iotop armhf 0.6-42-ga14256a-0.1+b1 [24.1 kB] Get:1165 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iw armhf 5.19-1 [85.5 kB] Get:1166 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpspell-dev armhf 0.60.8-4 [31.2 kB] Get:1167 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaspell-dev armhf 0.60.8-4 [34.7 kB] Get:1168 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaspell15 armhf 0.60.8-4 [295 kB] Get:1169 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libass9 armhf 1:0.17.1-1 [85.6 kB] Get:1170 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatk1.0-data all 2.38.0-1 [150 kB] Get:1171 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libayatana-ido3-0.4-0 armhf 0.9.3-1 [46.8 kB] Get:1172 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libayatana-indicator3-7 armhf 0.9.3-1 [28.3 kB] Get:1173 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbs2b0 armhf 3.1.0+dfsg-7 [10.7 kB] Get:1174 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-client2007e-dev armhf 8:2007f~dfsg-7+b1 [476 kB] Get:1175 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mlock armhf 8:2007f~dfsg-7+b1 [35.9 kB] Get:1176 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-client2007e armhf 8:2007f~dfsg-7+b1 [551 kB] Get:1177 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcddb2 armhf 1.3.2-7 [44.0 kB] Get:1178 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcob5-dev armhf 4.0~early~20200606-6 [177 kB] Get:1179 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcob5 armhf 4.0~early~20200606-6 [147 kB] Get:1181 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdbus-glib-1-2 armhf 0.112-3 [48.2 kB] Get:1182 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libusb-1.0-0 armhf 2:1.0.26-1 [55.8 kB] Get:1183 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdc1394-25 armhf 2.2.6-4 [102 kB] Get:1184 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdecor-0-0 armhf 0.1.1-2 [12.0 kB] Get:1185 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libisc-export1105 armhf 1:9.11.19+dfsg-2.1+b1 [376 kB] Get:1186 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdns-export1110 armhf 1:9.11.19+dfsg-2.1+b1 [893 kB] Get:1187 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdouble-conversion3 armhf 3.2.1-1 [38.8 kB] Get:1188 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdvdread8 armhf 6.1.3-1 [87.4 kB] Get:1189 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdvdnav4 armhf 6.1.1-1 [43.3 kB] Get:1190 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libebml5 armhf 1.4.4-1 [41.0 kB] Get:1191 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libenchant-2-dev armhf 2.3.3-2 [18.7 kB] Get:1192 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libhunspell-1.7-0 armhf 1.7.1-1+b2 [167 kB] Get:1193 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libenchant-2-2 armhf 2.3.3-2 [39.7 kB] Get:1194 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-dev armhf 2.1.12-stable-8 [274 kB] Get:1195 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-pthreads-2.1-7 armhf 2.1.12-stable-8 [53.2 kB] Get:1196 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-openssl-2.1-7 armhf 2.1.12-stable-8 [58.3 kB] Get:1197 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-extra-2.1-7 armhf 2.1.12-stable-8 [97.3 kB] Get:1198 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-core-2.1-7 armhf 2.1.12-stable-8 [119 kB] Get:1199 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-2.1-7 armhf 2.1.12-stable-8 [160 kB] Get:1200 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libexif12 armhf 0.6.24-1+b2 [388 kB] Get:1201 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexporter-tiny-perl all 1.006000-1 [38.6 kB] Get:1202 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfaad2 armhf 2.10.1-1 [142 kB] Get:1203 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfann-dev armhf 2.2.0+ds-8 [85.6 kB] Get:1204 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfann2 armhf 2.2.0+ds-8 [57.1 kB] Get:1205 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfftw3-double3 armhf 3.3.10-1 [325 kB] Get:1206 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfile-readbackwards-perl all 1.06-2 [11.6 kB] Get:1207 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libflite1 armhf 2.2-5 [12.4 MB] Get:1208 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcr-ui-3-1 armhf 3.41.1-1 [120 kB] Get:1209 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcr-base-3-1 armhf 3.41.1-1 [175 kB] Get:1210 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgck-1-0 armhf 3.41.1-1 [76.9 kB] Get:1211 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgif7 armhf 5.2.1-2.5 [44.7 kB] Get:1212 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgirepository-1.0-1 armhf 1.74.0-3+b1 [87.5 kB] Get:1213 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopengl0 armhf 1.6.0-1 [31.6 kB] Get:1214 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglu1-mesa armhf 9.0.2-1.1 [133 kB] Get:1215 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgspell-1-common all 1.12.0-1 [32.9 kB] Get:1216 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgspell-1-2 armhf 1.12.0-1+b1 [44.7 kB] Get:1217 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgssdp-1.6-0 armhf 1.6.2-2 [34.1 kB] Get:1218 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-gl1.0-0 armhf 1.22.0-3+deb12u1 [219 kB] Get:1219 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgupnp-1.6-0 armhf 1.6.3-1 [74.9 kB] Get:1220 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgupnp-igd-1.0-4 armhf 1.2.0-3 [12.3 kB] Get:1221 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnice10 armhf 0.1.21-1 [130 kB] Get:1222 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvulkan1 armhf 1.3.239.0-1 [99.6 kB] Get:1223 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-plugins-bad1.0-0 armhf 1.22.0-4+deb12u1 [698 kB] Get:1224 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtksourceview-4-common all 4.8.4-4 [532 kB] Get:1225 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtksourceview-4-0 armhf 4.8.4-4 [176 kB] Get:1226 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libharfbuzz-icu0 armhf 6.0.0+dfsg-3 [1556 kB] Get:1227 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libilmbase25 armhf 2.5.7-2 [196 kB] Get:1228 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspectre1 armhf 0.2.12-1 [46.0 kB] Get:1229 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libimlib2 armhf 1.10.0-4 [176 kB] Get:1230 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libplist3 armhf 2.2.0-6+b2 [31.5 kB] Get:1231 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libimobiledevice6 armhf 1.3.0-6+b3 [62.4 kB] Get:1232 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libiw30 armhf 30~pre9-14 [14.2 kB] Get:1233 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xdg-dbus-proxy armhf 0.1.4-3 [20.3 kB] Get:1234 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmanette-0.2-0 armhf 0.2.6-3 [26.4 kB] Get:1235 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsecret-common all 0.20.5-3+rpi1 [28.5 kB] Get:1236 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsecret-1-0 armhf 0.20.5-3+rpi1 [96.8 kB] Get:1237 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwoff1 armhf 1.0.2-2 [35.9 kB] Get:1238 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwpe-1.0-1 armhf 1.14.0-1 [17.1 kB] Get:1239 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwpebackend-fdo-1.0-1 armhf 1.14.2-1 [27.0 kB] Get:1240 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxslt1-dev armhf 1.1.35-1 [358 kB] Get:1241 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxslt1.1 armhf 1.1.35-1 [221 kB] Get:1242 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwebkit2gtk-4.0-37 armhf 2.40.3-2~deb12u2+rpi1 [15.6 MB] Get:1243 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjavascriptcoregtk-4.0-18 armhf 2.40.3-2~deb12u2+rpi1 [2630 kB] Get:1244 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjavascriptcoregtk-4.1-0 armhf 2.40.3-2~deb12u2+rpi1 [2630 kB] Get:1245 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-psl all 1.8.0+ds-9 [66.2 kB] Get:1246 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblightdm-gobject-1-0 armhf 1.26.0-8 [57.0 kB] Get:1247 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libserd-0-0 armhf 0.30.16-1 [40.7 kB] Get:1248 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsord-0-0 armhf 0.16.14+git221008-1 [17.8 kB] Get:1249 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsratom-0-0 armhf 0.6.14-1 [15.7 kB] Get:1250 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblilv-0-0 armhf 0.24.14-1 [42.1 kB] Get:1251 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblirc-client0 armhf 0.10.1-7.2 [44.9 kB] Get:1252 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblua5.2-0 armhf 5.2.4-3 [85.7 kB] Get:1253 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmad0 armhf 0.15.1b-10.1 [66.2 kB] Get:1254 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmatroska7 armhf 1.7.1-1 [89.7 kB] Get:1255 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmcrypt-dev armhf 2.5.8-7 [86.2 kB] Get:1256 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmcrypt4 armhf 2.5.8-7 [63.0 kB] Get:1257 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmd4c0 armhf 0.4.8-1 [39.4 kB] Get:1258 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmhash-dev armhf 0.9.9.9-9+b2 [114 kB] Get:1259 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmhash2 armhf 0.9.9.9-9+b2 [101 kB] Get:1260 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmousepad0 armhf 0.5.10-2 [303 kB] Get:1261 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmpdec3 armhf 2.5.1-2+rpi1 [73.5 kB] Get:1262 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmtp-common all 1.1.20-1 [58.6 kB] Get:1263 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmtp9 armhf 1.1.20-1 [195 kB] Get:1264 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmysofa1 armhf 1.3.1~dfsg0-1 [1154 kB] Get:1265 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpci-dev armhf 1:3.9.0-4 [63.9 kB] Get:1266 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf pci.ids all 0.0~2023.04.11-1 [243 kB] Get:1267 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpci3 armhf 1:3.9.0-4 [61.3 kB] Get:1268 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsnmp-base all 5.9.3+dfsg-2 [1753 kB] Get:1269 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsnmp-dev armhf 5.9.3+dfsg-2 [201 kB] Get:1270 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnetsnmptrapd40 armhf 5.9.3+dfsg-2 [20.0 kB] Get:1271 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsnmp40 armhf 5.9.3+dfsg-2 [2432 kB] Get:1272 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnewt0.52 armhf 0.52.23-1+b1 [51.0 kB] Get:1273 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnss-myhostname armhf 252.12-1~deb12u1+rpi1 [76.5 kB] Get:1274 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libobt2v5 armhf 3.6.1-10 [65.1 kB] Get:1275 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libobrender32v5 armhf 3.6.1-10 [71.9 kB] Get:1276 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf unixodbc-dev armhf 2.3.11-2+deb12u1 [200 kB] Get:1277 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbc1 armhf 2.3.11-2+deb12u1 [5008 B] Get:1278 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbc2 armhf 2.3.11-2+deb12u1 [123 kB] Get:1279 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbccr2 armhf 2.3.11-2+deb12u1 [14.7 kB] Get:1280 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf odbcinst armhf 2.3.11-2+deb12u1 [11.5 kB] Get:1281 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf odbcinst1debian2 armhf 2.3.11-2+deb12u1 [5112 B] Get:1282 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf unixodbc-common all 2.3.11-2+deb12u1 [8172 B] Get:1283 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbcinst2 armhf 2.3.11-2+deb12u1 [27.6 kB] Get:1284 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libonig-dev armhf 6.9.8-1 [96.7 kB] Get:1285 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libonig5 armhf 6.9.8-1 [166 kB] Get:1286 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenmpt-modplug1 armhf 0.8.9.0-openmpt1-2 [20.2 kB] Get:1287 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libout123-0 armhf 1.31.2-1 [24.2 kB] Get:1288 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcap0.8 armhf 1.10.3-1 [140 kB] Get:1289 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcsclite1 armhf 1.9.9-2 [47.0 kB] Get:1290 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpeas-common all 1.34.0-1 [54.3 kB] Get:1291 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpeas-1.0-0 armhf 1.34.0-1+b1 [52.2 kB] Get:1292 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsphinxbase3 armhf 0.8+5prealpha+1-16 [97.7 kB] Get:1293 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpocketsphinx3 armhf 0.8+5prealpha+1-15 [106 kB] Get:1294 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf portaudio19-dev armhf 19.6.0-1.2 [98.3 kB] Get:1295 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libportaudiocpp0 armhf 19.6.0-1.2 [17.0 kB] Get:1296 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libportaudio2 armhf 19.6.0-1.2 [57.3 kB] Get:1297 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpq-dev armhf 15.3-0+deb12u1 [129 kB] Get:1298 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpq5 armhf 15.3-0+deb12u1 [166 kB] Get:1299 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqdbm-dev armhf 1.8.78-12 [135 kB] Get:1300 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqdbm14 armhf 1.8.78-12 [74.3 kB] Get:1301 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqt5x11extras5 armhf 5.15.8-2 [9576 B] Get:1302 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5dbus5 armhf 5.15.8+dfsg-11+rpi1 [182 kB] Get:1303 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5network5 armhf 5.15.8+dfsg-11+rpi1 [571 kB] Get:1304 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-image0 armhf 0.4.0-2 [21.9 kB] Get:1305 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-shape0 armhf 1.15-1 [106 kB] Get:1306 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xinerama0 armhf 1.15-1 [105 kB] Get:1307 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xinput0 armhf 1.15-1 [127 kB] Get:1308 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5gui5 armhf 5.15.8+dfsg-11+rpi1 [2533 kB] Get:1309 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5widgets5 armhf 5.15.8+dfsg-11+rpi1 [2037 kB] Get:1310 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqt5svg5 armhf 5.15.8-3 [113 kB] Get:1311 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5core5a armhf 5.15.8+dfsg-11+rpi1 [1500 kB] Get:1312 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librubberband2 armhf 3.1.2+dfsg0-1 [110 kB] Get:1313 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-rubygems all 3.3.15-2 [293 kB] Get:1314 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby3.1 armhf 3.1.2-7 [663 kB] Get:1315 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby armhf 1:3.1 [5868 B] Get:1316 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rake all 13.0.6-3 [83.9 kB] Get:1317 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-net-telnet all 0.2.0-1 [13.1 kB] Get:1318 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-webrick all 1.8.1-1 [51.4 kB] Get:1319 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-xmlrpc all 0.3.2-2 [24.4 kB] Get:1320 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf ruby-sdbm armhf 1.0.0-5+rpi1 [15.9 kB] Get:1321 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libruby3.1 armhf 3.1.2-7 [5011 kB] Get:1322 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libruby armhf 1:3.1 [4968 B] Get:1323 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsdl1.2debian armhf 1.2.15+dfsg2-8 [164 kB] Get:1324 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsdl-image1.2 armhf 1.2.12-13+b2 [28.9 kB] Get:1325 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsdl2-2.0-0 armhf 2.26.5+dfsg-1 [524 kB] Get:1326 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsigsegv2 armhf 2.14-1 [36.6 kB] Get:1327 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsndio7.0 armhf 1.9.0-0.3 [24.7 kB] Get:1328 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libss2 armhf 1.47.0-2 [22.7 kB] Get:1329 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsyn123-0 armhf 1.31.2-1 [71.8 kB] Get:1330 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtool all 2.4.7-5 [517 kB] Get:1331 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf upower armhf 0.99.20-2 [75.6 kB] Get:1332 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libupower-glib3 armhf 0.99.20-2 [29.8 kB] Get:1333 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libvte-2.91-0 armhf 0.70.6-1~deb12u1 [765 kB] Get:1334 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libvte-2.91-common armhf 0.70.6-1~deb12u1 [641 kB] Get:1335 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwebkit2gtk-4.1-0 armhf 2.40.3-2~deb12u2+rpi1 [15.6 MB] Get:1336 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxbase3.0-0v5 armhf 3.0.5.1+dfsg-5+b1 [858 kB] Get:1337 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxgtk3.0-gtk3-0v5 armhf 3.0.5.1+dfsg-5+b1 [3542 kB] Get:1338 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xv0 armhf 1.15-1 [109 kB] Get:1339 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfce4util-common all 4.18.1-2 [66.0 kB] Get:1340 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfce4util7 armhf 4.18.1-2 [32.4 kB] Get:1341 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xfconf armhf 4.18.0-2 [119 kB] Get:1342 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfconf-0-3 armhf 4.18.0-2 [37.5 kB] Get:1343 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxmltok1-dev armhf 1.2-4+b2 [56.0 kB] Get:1344 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxmltok1 armhf 1.2-4+b2 [39.5 kB] Get:1345 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmuu1 armhf 2:1.1.3-3 [23.3 kB] Get:1346 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxres1 armhf 2:1.2.1-1 [18.7 kB] Get:1347 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxv1 armhf 2:1.0.11-1.1 [23.3 kB] Get:1348 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxxf86dga1 armhf 2:1.1.5-1 [20.9 kB] Get:1349 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzip-dev armhf 1.7.3-1+b1 [163 kB] Get:1350 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzip4 armhf 1.7.3-1+b1 [49.8 kB] Get:1351 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lightdm armhf 1.26.0-8 [151 kB] Get:1352 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lsb-release all 12.0-1 [6416 B] Get:1353 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lua-lpeg armhf 1.0.2-2 [32.3 kB] Get:1354 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf x11-xserver-utils armhf 7.7+9 [151 kB] Get:1355 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lxrandr armhf 0.3.2-1.1 [51.4 kB] Get:1356 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lxterminal armhf 0.4.0-2 [91.4 kB] Get:1357 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mailcap all 3.70+nmu1 [32.0 kB] Get:1358 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mesa-utils-bin armhf 8.5.0-1 [45.5 kB] Get:1359 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mesa-utils armhf 8.5.0-1 [955 kB] Get:1360 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mousepad armhf 0.5.10-2 [519 kB] Get:1361 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mpg123 armhf 1.31.2-1 [186 kB] Get:1362 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf neofetch all 7.1.0-4 [81.8 kB] Get:1363 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf nmap armhf 7.93+dfsg1-1 [1768 kB] Get:1364 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf nmap-common all 7.93+dfsg1-1 [4148 kB] Get:1365 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansi all 0.3.1-2 [9728 B] Get:1366 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansistyles all 0.1.3-5 [4548 B] Get:1367 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-asap all 2.0.6+~2.0.0-1 [15.4 kB] Get:1368 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-asn1 all 0.2.6+~0.2.0-2 [8760 B] Get:1369 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-assert-plus all 1.0.0-4 [6852 B] Get:1370 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-asynckit all 0.4.0-5 [10.3 kB] Get:1371 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-aws-sign2 all 0.7.1-4 [4396 B] Get:1372 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-aws4 all 1.11.0-2 [10.4 kB] Get:1373 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-tweetnacl all 1.0.3+dfsg-3 [34.9 kB] Get:1374 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-bcrypt-pbkdf all 1.0.2-3 [11.1 kB] Get:1375 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-caseless all 0.12.1-2 [3976 B] Get:1376 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-delayed-stream all 1.0.0-5 [5436 B] Get:1377 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-combined-stream all 1.0.8+~1.0.3-1 [7316 B] Get:1378 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-concat-map all 0.0.2+~0.0.1-1 [7148 B] Get:1379 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-dashdash all 2.0.0-4 [30.3 kB] Get:1380 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jsbn all 1.1.0+~1.2.29-1 [15.6 kB] Get:1381 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ecc-jsbn all 0.2.0-4 [9520 B] Get:1382 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-extend all 3.0.2+~3.0.1-3 [7816 B] Get:1383 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-extsprintf all 1.4.1+~1.4.1-2 [6464 B] Get:1384 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-forever-agent all 0.6.1+~0.6.1-2 [5616 B] Get:1385 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-form-data all 4.0.0-1 [13.2 kB] Get:1386 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-getpass all 0.1.7-3 [4796 B] Get:1387 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-har-schema all 2.0.0-5 [5952 B] Get:1388 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-har-validator all 5.1.5-3 [7328 B] Get:1389 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-verror all 1.10.1+~1.10.5-2 [17.0 kB] Get:1390 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsprim all 2.0.1-1 [13.5 kB] Get:1391 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-sshpk all 1.17.0+dfsg-2 [52.5 kB] Get:1392 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-http-signature all 1.3.6-2 [13.2 kB] Get:1393 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-isstream all 0.1.2+dfsg+~0.1.0-1 [4648 B] Get:1394 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-stringify-safe all 5.0.1+repack-6 [21.0 kB] Get:1395 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsonstream all 1.3.5-3 [8472 B] Get:1396 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-leven all 4.0.0+~cs1.1.1-2 [6224 B] Get:1397 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-lockfile all 1.0.4+~1.0.2-1 [8948 B] Get:1398 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-number-is-nan all 2.0.0-3 [3624 B] Get:1399 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-oauth-sign all 0.9.0-4 [4404 B] Get:1400 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-opener all 1.5.2+~1.4.0-1 [5940 B] Get:1401 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-performance-now all 2.1.0+debian-4 [5296 B] Get:1402 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-psl all 1.8.0+ds-9 [38.1 kB] Get:1403 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-puka all 1.0.1+dfsg-3 [29.0 kB] Get:1404 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-qs all 6.11.0+ds+~6.9.7-3 [43.2 kB] Get:1405 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-tunnel-agent all 0.6.1-4 [5100 B] Get:1406 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openbox armhf 3.6.1-10 [290 kB] Get:1407 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf psmisc armhf 23.6-1 [253 kB] Get:1408 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-colorzero all 2.0-2 [22.3 kB] Get:1409 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-gpiozero armhf 1.6.2-1+b4 [105 kB] Get:1410 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf re2c armhf 3.0-2 [406 kB] Get:1411 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rng-tools5 armhf 5-4.1 [19.2 kB] Get:1412 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-minitest all 5.17.0-1 [61.4 kB] Get:1413 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-power-assert all 2.0.3-1 [11.8 kB] Get:1414 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-test-unit all 3.5.7-1 [78.2 kB] Get:1415 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf swig4.0 armhf 4.1.0-0.2 [1220 kB] Get:1416 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf swig all 4.1.0-0.2 [321 kB] Get:1417 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf systemtap-sdt-dev armhf 4.8-2 [19.4 kB] Get:1418 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-scraping-server armhf 1.12.0+dfsg-8 [185 kB] Get:1419 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xauth armhf 1:1.1.2-1 [32.4 kB] Get:1420 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-standalone-server armhf 1.12.0+dfsg-8 [828 kB] Get:1421 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-common armhf 1.12.0+dfsg-8 [89.6 kB] Get:1422 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf tmux armhf 3.3a-3 [362 kB] Get:1423 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf unzip armhf 6.0-28 [147 kB] Get:1424 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf usbutils armhf 1:014-1 [67.0 kB] Get:1425 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf vorbis-tools armhf 1.4.2-1+b1 [168 kB] Get:1426 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf whiptail armhf 0.52.23-1+b1 [23.1 kB] Get:1427 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf wireless-regdb all 2022.06.06-1 [13.1 kB] Get:1428 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf wireless-tools armhf 30~pre9-14 [102 kB] Get:1429 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf wpasupplicant armhf 2:2.10-12 [1121 kB] Get:1430 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xarchiver armhf 1:0.5.4.20-2 [453 kB] Get:1431 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf xfonts-base all 1:1.0.5+nmu1 [5895 kB] Get:1432 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xfonts-encodings all 1:1.0.4-2.2 [577 kB] Get:1433 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-xorg-input-libinput armhf 1.2.1-1 [60.3 kB] Get:1434 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zenity-common all 3.44.0-1 [2974 kB] Get:1435 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zenity armhf 3.44.0-1 [56.3 kB] Get:1436 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zsh armhf 5.9-4 [767 kB] Get:1437 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zsh-common all 5.9-4 [4147 kB] Get:1438 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmlrpc-epi-dev armhf 0.54.2-1.3 [40.3 kB] Get:1439 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmlrpc-epi0 armhf 0.54.2-1.3 [28.8 kB] Fetched 791 MB in 44min 0s (299 kB/s) E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/j/json-c/libjson-c5_0.16-2_armhf.deb Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/p/pixman/libpixman-1-0_0.42.2-1_armhf.deb Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/a/at-spi2-core/at-spi2-common_2.46.0-5_all.deb Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/x/x265/libx265-dev_3.5-2_armhf.deb Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/l/llvm-toolchain-14/clang-14_14.0.6-12+rpi1_armhf.deb Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing? ``` --------------------------------------------------------------------- [FAILED] dietpi-bookworm-upgrade | Unable to continue, dietpi-bookworm-upgrade will now terminate.

3回目失敗🥱

$ sudo bash -c "$(curl -sSf 'https://raw.githubusercontent.com/MichaIng/DietPi/master/.meta/dietpi-bookworm-upgrade')"

[ SUB1 ] DietPi-Backup > Backup
[ SUB2 ] DietPi-Services > stop 
[  OK  ] DietPi-Services | stop : cron
[ INFO ] DietPi-Services | skip : apache2 (masked)
[ INFO ] DietPi-Services | skip : smbd (masked)
[ INFO ] DietPi-Services | skip : nmbd (masked)
[ INFO ] DietPi-Services | skip : proftpd (masked)
[ INFO ] DietPi-Backup | Checking for required APT packages: rsync
[ INFO ] DietPi-Backup | Backup to /mnt/dietpi-backup in progress, please wait...
sending incremental file list
         11,296   0%    0.04kB/s    0:04:38 (xfr#4, to-chk=0/503752)     

sent 14,125,330 bytes  received 37,001 bytes  50,670.24 bytes/sec
total size is 15,241,933,048  speedup is 1,076.23
[  OK  ] DietPi-Backup | touch /mnt/dietpi-backup/data
[ SUB2 ] DietPi-Services > start 
[ INFO ] DietPi-Services | skip : proftpd (masked)
[ INFO ] DietPi-Services | skip : nmbd (masked)
[ INFO ] DietPi-Services | skip : smbd (masked)
[ INFO ] DietPi-Services | skip : apache2 (masked)
[  OK  ] DietPi-Services | start : cron
[  OK  ] DietPi-Backup: Backup | Completed
[  OK  ] DietPi-Backup | Completed
[ INFO ] dietpi-bookworm-upgrade | Upgrading APT packages to latest versions provided by Debian Bullseye
[ SUB1 ] DietPi-Services > stop 
[  OK  ] DietPi-Services | stop : cron
[ INFO ] DietPi-Services | skip : apache2 (masked)
[ INFO ] DietPi-Services | skip : smbd (masked)
[ INFO ] DietPi-Services | skip : nmbd (masked)
[ INFO ] DietPi-Services | skip : proftpd (masked)
[ INFO ] dietpi-bookworm-upgrade | APT update, please wait...
Hit:1 http://raspbian.raspberrypi.org/raspbian bookworm InRelease
Hit:2 https://archive.raspberrypi.org/debian bullseye InRelease
Reading package lists...
W: Skipping acquire of configured file 'non-free-firmware/source/Sources' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'non-free-firmware/binary-armhf/Packages' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
W: Skipping acquire of configured file 'non-free-firmware/Contents-armhf' as repository 'http://raspbian.raspberrypi.org/raspbian bookworm InRelease' doesn't have the component 'non-free-firmware' (component misspelt in sources.list?)
[  OK  ] dietpi-bookworm-upgrade | APT update
[ INFO ] dietpi-bookworm-upgrade | APT dist-upgrade, please wait...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
The following packages were automatically installed and are no longer required:
  distro-info-data g++-10 golang-1.15-go golang-1.15-src libatk1.0-data
  libavresample4 libbpf0 libcbor0 libcob5 libcob5-dev libdecor-0-0
  libdns-export1110 libexporter-tiny-perl libfftw3-double3 libglew2.1
  libglu1-mesa libgs9-common libgtksourceview-3.0-1
  libgtksourceview-3.0-common libice-dev libicu67 libilmbase25
  libimobiledevice6 libisc-export1105 libjs-psl libjsoncpp24 libldap-2.4-2
  liblist-moreutils-perl liblist-moreutils-xs-perl libltdl-dev libmpdec3
  libncurses5-dev libobjc-10-dev libodbc1 libopenexr25 libopengl0 libpcre16-3
  libpcre2-posix2 libpcre3-dev libpcre32-3 libpcrecpp0v5 libperl5.32 libplist3
  libpoppler102 libprocps8 libpython3.8 libpython3.8-minimal
  libpython3.8-stdlib libpython3.9 libpython3.9-dev libpython3.9-minimal
  libpython3.9-stdlib librest-0.7-0 libsdl2-2.0-0 libsepol1 libsigsegv2
  libsm-dev libsoup-gnome2.4-1 libstdc++-10-dev libtiff5 libtiffxx5 liburing1
  libusbmuxd6 libwmf0.2-7 libwxbase3.0-0v5 libwxgtk3.0-gtk3-0v5
  libxfce4util-common libxfce4util7 libxfconf-0-3 libxt-dev node-ansi
  node-ansistyles node-asap node-asn1 node-assert-plus node-asynckit
  node-aws-sign2 node-aws4 node-bcrypt-pbkdf node-caseless
  node-combined-stream node-concat-map node-dashdash node-delayed-stream
  node-ecc-jsbn node-extend node-extsprintf node-forever-agent node-form-data
  node-getpass node-har-schema node-har-validator node-http-signature
  node-isstream node-jsbn node-json-stringify-safe node-jsonstream node-jsprim
  node-leven node-lockfile node-number-is-nan node-oauth-sign node-opener
  node-performance-now node-psl node-puka node-qs node-sshpk node-tunnel-agent
  node-tweetnacl node-verror odbcinst odbcinst1debian2 perl-modules-5.32
  python3.9 python3.9-dev python3.9-minimal ruby2.7 xfconf
Use 'sudo apt autoremove' to remove them.




The following packages will be REMOVED:
  gnucobol libfilezilla11 libgs9 libnode72 libsemanage1 libsepol1-dev
  libwacom2 mesa-utils-extra python-pip-whl python3.9-venv
The following NEW packages will be installed:
  at-spi2-common clang-14 cpp-12 cron-daemon-common dbus-bin dbus-daemon
  dbus-session-bus-common dbus-system-bus-common eslint g++-12 gcc-11-base
  gcc-12 gcc-12-base golang-1.19-go golang-1.19-src handlebars libabsl20220623
  libaom-dev libaom3 libasan8 libavcodec59 libavformat59 libavif-dev libavif15
  libavutil57 libbpf1 libcbor0.8 libcjson1 libclang-common-14-dev
  libclang-cpp14 libclang1-14 libcodec2-1.0 libdav1d-dev libdav1d6
  libde265-dev libdecor-0-0 libduktape207 libffi8 libfile-find-rule-perl
  libfilezilla-common libfilezilla34 libflac12 libgav1-1 libgcc-11-dev
  libgcc-12-dev libgs-common libgs10 libgs10-common libgspell-1-2
  libgspell-1-common libgssdp-1.6-0 libgstreamer-plugins-bad1.0-0
  libgtksourceview-4-0 libgtksourceview-4-common libgupnp-1.6-0
  libgupnp-igd-1.0-4 libhashkit2 libheif-dev libhwy1 libicu72 libidn12
  libimath-3-1-29 libjavascriptcoregtk-4.1-0 libjs-async libjs-events
  libjs-prettify libjs-regenerate libjs-source-map libjs-sprintf-js libjs-util
  libjsoncpp25 libjxl0.7 libldap-2.5-0 libldap-dev liblerc-dev liblerc4
  libllvm14 libllvm15 libmbedcrypto7 libmousepad0 libnice10 libnode108
  libnumber-compare-perl libobjc-11-dev libobjc-12-dev libodbc2 libodbccr2
  libodbcinst2 libopenexr-3-1-30 libopengl0 libpcre2-posix3 libperl5.36
  libpkgconf3 libpoppler126 libproc2-0 libpython3.11 libpython3.11-dev
  libpython3.11-minimal libpython3.11-stdlib librav1e0 librist4 libruby
  libruby3.1 libsemanage2 libsepol-dev libsepol2 libsoup-3.0-0
  libsoup-3.0-common libsoup2.4-common libspectre1 libsrt1.5-gnutls libssl3
  libstdc++-11-dev libstdc++-12-dev libsvtav1enc1 libswresample4 libswscale6
  libsystemd-shared libtext-glob-perl libtiff6 libtiffxx6 liburing2 libvpx7
  libwacom9 libwebkit2gtk-4.1-0 libwebp7 libwmf-0.2-7 libwmflite-0.2-7
  libwxbase3.2-1 libwxgtk3.2-1 libx264-164 libx265-199 libx265-dev libxcvt0
  libyuv0 libzstd-dev llvm-11-linker-tools llvm-14-linker-tools mesa-utils-bin
  node-acorn node-ajv-keywords node-ampproject-remapping node-ansi-escapes
  node-anymatch node-argparse node-arrify node-assert node-async
  node-async-each node-babel-helper-define-polyfill-provider
  node-babel-plugin-add-module-exports node-babel-plugin-lodash
  node-babel-plugin-polyfill-corejs2 node-babel-plugin-polyfill-corejs3
  node-babel-plugin-polyfill-regenerator node-babel7 node-babel7-runtime
  node-base64-js node-binary-extensions node-braces node-browserslist
  node-busboy node-camelcase node-caniuse-lite node-chokidar
  node-chrome-trace-event node-ci-info node-cjs-module-lexer node-cli-table
  node-cliui node-clone-deep node-commander node-commondir node-concat-stream
  node-convert-source-map node-core-js node-core-js-compat node-core-js-pure
  node-css-loader node-css-selector-tokenizer node-data-uri-to-buffer
  node-debbundle-es-to-primitive node-decamelize node-decompress-response
  node-deep-equal node-deep-is node-define-properties node-defined node-del
  node-diff node-doctrine node-electron-to-chromium node-end-of-stream
  node-enhanced-resolve node-errno node-error-ex node-es-abstract
  node-es-module-lexer node-es6-error node-escodegen node-eslint-scope
  node-eslint-utils node-eslint-visitor-keys node-espree node-esprima
  node-esquery node-esrecurse node-estraverse node-esutils node-events
  node-fancy-log node-fast-levenshtein node-fetch node-file-entry-cache
  node-fill-range node-find-cache-dir node-find-up node-flat-cache
  node-flatted node-for-in node-for-own node-foreground-child
  node-fs-readdir-recursive node-functional-red-black-tree
  node-get-caller-file node-get-stream node-glob-parent node-globals
  node-globby node-got node-icss-utils node-ieee754 node-ignore node-interpret
  node-is-arrayish node-is-binary-path node-is-buffer node-is-extendable
  node-is-extglob node-is-glob node-is-number node-is-path-cwd
  node-is-path-inside node-is-plain-obj node-is-plain-object node-is-stream
  node-is-windows node-isobject node-istanbul node-jest-debbundle
  node-jest-worker node-js-tokens node-js-yaml node-jsesc node-json-buffer
  node-json5 node-kind-of node-levn node-loader-runner node-locate-path
  node-lodash node-lodash-packages node-lowercase-keys node-make-dir
  node-memfs node-memory-fs node-merge-stream node-micromatch
  node-mimic-response node-minimist node-minipass node-n3 node-negotiator
  node-neo-async node-normalize-path node-npm-run-path node-object-inspect
  node-optimist node-optionator node-p-cancelable node-p-limit node-p-locate
  node-parse-json node-path-dirname node-path-exists node-path-is-inside
  node-path-type node-picocolors node-pify node-pkg-dir node-postcss
  node-postcss-modules-extract-imports node-postcss-modules-values
  node-postcss-value-parser node-prelude-ls node-progress node-prr node-pump
  node-quick-lru node-randombytes node-read-pkg node-readdirp node-rechoir
  node-regenerate node-regenerate-unicode-properties node-regenerator-runtime
  node-regenerator-transform node-regexpp node-regexpu-core node-regjsgen
  node-regjsparser node-repeat-string node-require-directory node-resolve-cwd
  node-resumer node-schema-utils node-serialize-javascript
  node-set-immediate-shim node-shebang-command node-shebang-regex
  node-slice-ansi node-source-list-map node-source-map node-source-map-support
  node-sprintf-js node-strip-bom node-strip-json-comments node-tapable
  node-tape node-terser node-time-stamp node-to-fast-properties
  node-to-regex-range node-tslib node-type-check node-typedarray node-undici
  node-unicode-canonical-property-names-ecmascript
  node-unicode-match-property-ecmascript
  node-unicode-match-property-value-ecmascript
  node-unicode-property-aliases-ecmascript node-util node-v8-compile-cache
  node-v8flags node-watchpack node-webassemblyjs node-webpack-sources
  node-wordwrap node-wrap-ansi node-write node-xtend node-y18n node-yargs
  node-yargs-parser perl-modules-5.36 pkexec pkgconf pkgconf-bin polkitd
  python3-pip-whl python3-setuptools-whl python3-six python3.11 python3.11-dev
  python3.11-minimal python3.11-venv rpcsvc-proto ruby-sdbm ruby-webrick
  ruby3.1 sgml-base terser unixodbc-common usrmerge util-linux-extra webpack
  xml-core
The following packages will be upgraded:
  adduser adwaita-icon-theme alsa-utils apache2 apache2-bin apache2-data
  apache2-dev apache2-utils apt apt-file autoconf autoconf2.64 automake
  autopoint autotools-dev base-files base-passwd bash bash-completion binutils
  binutils-arm-linux-gnueabihf binutils-common bison bsdextrautils bsdutils
  bubblewrap bzip2 ca-certificates clang clang-11 cmake cmake-data
  colorized-logs comerr-dev console-setup console-setup-linux coreutils cpio
  cpp cpp-10 cron curl dash dbus dbus-user-session dbus-x11
  dconf-gsettings-backend dconf-service debconf debhelper debianutils
  default-libmysqlclient-dev device-tree-compiler dh-strip-nondeterminism
  dictionaries-common diffutils dirmngr distro-info-data dmidecode dmsetup
  dpkg dpkg-dev dwz e2fsprogs emacsen-common ethtool expat fake-hwclock
  fakeroot fdisk file filezilla filezilla-common findutils firebird-dev
  firebird3.0-common firebird3.0-common-doc flac flex fontconfig
  fontconfig-config fonts-dejavu-core fonts-urw-base35 freetds-common
  freetds-dev g++ g++-10 galculator gcc gcc-10 gcc-10-base gettext
  gettext-base gimp gimp-data git git-man glib-networking
  glib-networking-common glib-networking-services gnupg gnupg-l10n gnupg-utils
  golang-1.15-go golang-1.15-src golang-go golang-src gparted gparted-common
  gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm gpgv graphviz grep
  groff-base gsettings-desktop-schemas gstreamer1.0-plugins-base
  gstreamer1.0-plugins-good gtk-update-icon-cache gyp gzip hdparm hostname
  htop hunspell-en-us i2c-tools icu-devtools ifupdown init-system-helpers
  initramfs-tools initramfs-tools-core intltool-debian iotop iproute2
  iputils-ping isc-dhcp-client iso-codes iw kbd keyboard-configuration
  klibc-utils kmod krb5-multidev less libaa1 libacl1 libacl1-dev libamd2
  libapparmor-dev libapparmor1 libapr1 libapr1-dev libaprutil1
  libaprutil1-dbd-sqlite3 libaprutil1-dev libaprutil1-ldap libapt-pkg-perl
  libapt-pkg6.0 libarchive13 libargon2-1 libargon2-dev libasan6 libasound2
  libasound2-data libasound2-dev libasound2-plugins libaspell-dev libaspell15
  libass9 libassuan0 libasyncns0 libatk-bridge2.0-0 libatk1.0-0 libatk1.0-data
  libatkmm-1.6-1v5 libatlas3-base libatomic1 libatopology2 libatspi2.0-0
  libattr1 libattr1-dev libaudit-common libaudit1 libavahi-client3
  libavahi-common-data libavahi-common3 libayatana-ido3-0.4-0
  libayatana-indicator3-7 libbabl-0.1-0 libbinutils libblas3 libblkid-dev
  libblkid1 libbluray2 libbrotli-dev libbrotli1 libbs2b0 libbsd-dev libbsd0
  libbz2-1.0 libbz2-dev libc-ares2 libc-bin libc-client2007e
  libc-client2007e-dev libc-dev-bin libc-l10n libc6 libc6-dev libcaca0
  libcairo-gobject2 libcairo2 libcairomm-1.0-1v5 libcamd2 libcap-ng0 libcap2
  libcap2-bin libcc1-0 libccolamd2 libcddb2 libcdparanoia0 libcdt5 libcgraph6
  libcholmod3 libchromaprint1 libclang-common-11-dev libclang-cpp11
  libclang1-11 libcob5 libcob5-dev libcolamd2 libcolord2 libcom-err2
  libcrypt-dev libcrypt1 libcryptsetup12 libct4 libctf-nobfd0 libctf0 libcups2
  libcurl3-gnutls libcurl4 libcurl4-gnutls-dev libdatrie1 libdb-dev libdb5.3
  libdb5.3-dev libdbus-1-3 libdbus-glib-1-2 libdc1394-25 libdconf1 libde265-0
  libdebconfclient0 libdebhelper-perl libdeflate-dev libdeflate0
  libdevmapper1.02.1 libdns-export1110 libdouble-conversion3 libdpkg-perl
  libdrm-amdgpu1 libdrm-common libdrm-nouveau2 libdrm-radeon1 libdrm2 libdv4
  libdvdnav4 libdvdread8 libdw1 libebml5 libedit-dev libedit2 libegl-mesa0
  libegl1 libelf1 libenchant-2-2 libenchant-2-dev libepoxy0 liberror-perl
  libevdev2 libevent-2.1-7 libevent-core-2.1-7 libevent-dev
  libevent-extra-2.1-7 libevent-openssl-2.1-7 libevent-pthreads-2.1-7
  libexif12 libexiv2-27 libexpat1 libexpat1-dev libexporter-tiny-perl
  libext2fs2 libfaad2 libfakeroot libfann-dev libfann2 libfbclient2 libfdisk1
  libfdt1 libffi-dev libfftw3-double3 libfftw3-single3 libfido2-1
  libfile-readbackwards-perl libfile-stripnondeterminism-perl libflite1
  libfontconfig-dev libfontconfig1 libfreetype-dev libfreetype6
  libfreetype6-dev libfribidi0 libgbm1 libgc1 libgcc-10-dev libgcc-s1
  libgck-1-0 libgcr-base-3-1 libgcr-ui-3-1 libgcrypt20 libgcrypt20-dev
  libgd-dev libgd3 libgdbm-compat4 libgdbm6 libgdk-pixbuf-2.0-0
  libgdk-pixbuf2.0-common libgegl-0.4-0 libgegl-common libgexiv2-2
  libgfortran5 libgif7 libgimp2.0 libgirepository-1.0-1 libgl1 libgl1-mesa-dri
  libglapi-mesa libgles2 libglib2.0-0 libglib2.0-bin libglib2.0-data
  libglib2.0-dev libglib2.0-dev-bin libglibmm-2.4-1v5 libglu1-mesa libglvnd0
  libglx-mesa0 libglx0 libgme0 libgmp-dev libgmp10 libgmp3-dev libgmpxx4ldbl
  libgnutls30 libgomp1 libgpg-error-dev libgpg-error0 libgpm2 libgs9-common
  libgsm1 libgssapi-krb5-2 libgssrpc4 libgstreamer-gl1.0-0
  libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 libgtk-3-0 libgtk-3-common
  libgtkmm-3.0-1v5 libgts-0.7-5 libgudev-1.0-0 libgvc6 libgvpr2
  libharfbuzz-icu0 libharfbuzz0b libheif1 libhiredis0.14 libhogweed6
  libhunspell-1.7-0 libi2c0 libib-util libicu-dev libidn2-0 libiec61883-0
  libilmbase25 libimlib2 libimobiledevice6 libinput-bin libinput10 libip4tc2
  libisc-export1105 libisl23 libiw30 libjack-dev libjack0 libjansson4
  libjavascriptcoregtk-4.0-18 libjbig-dev libjbig0 libjbig2dec0 libjpeg-dev
  libjpeg62-turbo libjpeg62-turbo-dev libjs-inherits libjs-is-typedarray
  libjs-jquery libjs-psl libjs-sphinxdoc libjs-typedarray-to-buffer
  libjs-underscore libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common
  libk5crypto3 libkadm5clnt-mit12 libkadm5srv-mit12 libkdb5-10 libkeyutils1
  libklibc libkmod2 libkrb5-3 libkrb5-dev libkrb5support0 libksba8
  liblab-gamut1 liblapack3 liblcms2-2 libldap2-dev libldb2
  liblightdm-gobject-1-0 liblilv-0-0 liblirc-client0 liblist-moreutils-xs-perl
  libllvm11 liblocale-gettext-perl libltdl-dev libltdl7 liblua5.2-0
  liblua5.3-0 liblz4-1 liblzma-dev liblzma5 libmad0 libmagic-dev libmagic-mgc
  libmagic1 libmanette-0.2-0 libmariadb-dev libmariadb-dev-compat libmariadb3
  libmatroska7 libmcrypt-dev libmcrypt4 libmd-dev libmd0 libmd4c0
  libmemcached11 libmemcachedutil2 libmhash-dev libmhash2 libmount-dev
  libmount1 libmp3lame0 libmpc3 libmpdec3 libmpfr6 libmpg123-0 libmtp-common
  libmtp9 libmysofa1 libncurses-dev libncurses5-dev libncurses6 libncursesw6
  libnetsnmptrapd40 libnettle8 libnewt0.52 libnghttp2-14 libnl-3-200
  libnl-genl-3-200 libnl-route-3-200 libnode-dev libnotify4 libnspr4
  libnss-myhostname libnss3 libobjc-10-dev libobjc4 libobrender32v5 libobt2v5
  libodbc1 libogg0 libonig-dev libonig5 libopenblas0-pthread libopenjp2-7
  libopenmpt-modplug1 libopenmpt0 libopus0 liborc-0.4-0 libout123-0
  libp11-kit0 libpam-modules libpam-modules-bin libpam-runtime libpam-systemd
  libpam0g libpam0g-dev libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0
  libpangomm-1.4-1v5 libpangoxft-1.0-0 libpaper1 libparted-fs-resize0
  libparted2 libpathplan4 libpcap0.8 libpci-dev libpci3 libpciaccess0
  libpcre16-3 libpcre2-16-0 libpcre2-32-0 libpcre2-8-0 libpcre2-dev libpcre3
  libpcre3-dev libpcre32-3 libpcrecpp0v5 libpcsclite1 libpeas-1.0-0
  libpeas-common libpipeline1 libpixman-1-0 libplist3 libplymouth5 libpng-dev
  libpng16-16 libpocketsphinx3 libpolkit-agent-1-0 libpolkit-gobject-1-0
  libpoppler-glib8 libpopt0 libportaudio2 libportaudiocpp0 libpq-dev libpq5
  libproxy1v5 libpsl5 libpspell-dev libpugixml1v5 libpulse0 libpulsedsp
  libpython3-dev libpython3-stdlib libqdbm-dev libqdbm14 libqt5core5a
  libqt5dbus5 libqt5gui5 libqt5network5 libqt5svg5 libqt5widgets5
  libqt5x11extras5 librabbitmq4 libraw20 libreadline-dev libreadline8
  libregexp-assemble-perl librhash0 librsvg2-2 librsvg2-common librubberband2
  libsamplerate0 libsasl2-2 libsasl2-dev libsasl2-modules-db libsctp-dev
  libsctp1 libsdl-image1.2 libsdl1.2debian libsdl2-2.0-0 libseccomp2
  libsecret-1-0 libsecret-common libselinux1 libselinux1-dev
  libsemanage-common libsensors-config libsensors-dev libsensors5 libserd-0-0
  libshout3 libsigc++-2.0-0v5 libsigsegv2 libslang2 libsmartcols1 libsnappy1v5
  libsndfile1 libsndio7.0 libsnmp-base libsnmp-dev libsnmp40 libsord-0-0
  libsoup-gnome2.4-1 libsoup2.4-1 libspeex1 libspeexdsp1 libsphinxbase3
  libsqlite3-0 libsqlite3-dev libsratom-0-0 libss2 libssh-gcrypt-4 libssh2-1
  libssl-dev libstdc++-10-dev libstdc++6 libsub-override-perl
  libsuitesparseconfig5 libsybdb5 libsyn123-0 libsystemd-dev libsystemd0
  libtag1v5 libtag1v5-vanilla libtalloc2 libtasn1-6 libtdb1 libtevent0
  libtext-charwidth-perl libtext-iconv-perl libthai-data libthai0 libtheora0
  libtiff-dev libtinfo6 libtirpc-common libtirpc-dev libtirpc3 libtool
  libubsan1 libudev-dev libudev1 libudfread0 libumfpack5 libunistring2
  libunwind8 libupower-glib3 libusb-1.0-0 libutempter0 libuuid1 libuv1
  libuv1-dev libv4l-0 libv4lconvert0 libva-drm2 libva-x11-2 libva2 libvdpau1
  libvisual-0.4-0 libvpx-dev libvte-2.91-0 libvte-2.91-common libvulkan1
  libwacom-common libwavpack1 libwayland-client0 libwayland-cursor0
  libwayland-egl1 libwayland-server0 libwbclient0 libwebkit2gtk-4.0-37
  libwebp-dev libwebpdemux2 libwebpmux3 libwmf0.2-7 libwoff1 libwpe-1.0-1
  libwpebackend-fdo-1.0-1 libwrap0 libwrap0-dev libwxbase3.0-0v5
  libwxgtk3.0-gtk3-0v5 libx11-6 libx11-data libx11-dev libx11-xcb1 libxaw7
  libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-image0 libxcb-present0
  libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1
  libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 libxcb-xv0
  libxcb1 libxcb1-dev libxcursor1 libxdamage1 libxext6 libxfce4util-common
  libxfce4util7 libxfconf-0-3 libxfixes3 libxfont2 libxft2 libxi6 libxinerama1
  libxkbcommon-x11-0 libxkbcommon0 libxml2 libxml2-dev libxmlrpc-epi-dev
  libxmlrpc-epi0 libxmltok1 libxmltok1-dev libxmu6 libxmuu1 libxpm-dev libxpm4
  libxrandr2 libxrender1 libxres1 libxslt1-dev libxslt1.1 libxt-dev libxt6
  libxtables12 libxtst6 libxv1 libxxf86dga1 libxxhash0 libyaml-0-2 libz3-4
  libzip-dev libzip4 libzmq5 libzstd1 libzvbi-common libzvbi0 lightdm
  linux-base locales locales-all login logsave lsb-base lsb-release lsof
  lua-lpeg lxrandr lxterminal m4 mailcap man-db mariadb-common mawk
  media-types mesa-utils mlock mount mousepad mpg123 mysql-common nano
  ncurses-base ncurses-bin neofetch netbase netcat-openbsd nmap nmap-common
  node-abbrev node-agent-base node-ajv node-ansi node-ansi-regex
  node-ansi-styles node-ansistyles node-aproba node-archy
  node-are-we-there-yet node-asap node-asn1 node-assert-plus node-asynckit
  node-aws-sign2 node-aws4 node-balanced-match node-bcrypt-pbkdf
  node-brace-expansion node-builtins node-cacache node-caseless node-chalk
  node-chownr node-clone node-color-convert node-color-name node-colors
  node-columnify node-combined-stream node-concat-map
  node-console-control-strings node-copy-concurrently node-core-util-is
  node-dashdash node-debug node-defaults node-delayed-stream node-delegates
  node-depd node-ecc-jsbn node-encoding node-err-code
  node-escape-string-regexp node-extend node-extsprintf node-fast-deep-equal
  node-forever-agent node-form-data node-fs-write-stream-atomic
  node-fs.realpath node-function-bind node-gauge node-getpass node-glob
  node-graceful-fs node-gyp node-har-schema node-har-validator node-has-flag
  node-has-unicode node-hosted-git-info node-http-signature
  node-https-proxy-agent node-iconv-lite node-iferr node-imurmurhash
  node-indent-string node-inflight node-inherits node-ini node-ip
  node-ip-regex node-is-typedarray node-isarray node-isexe node-isstream
  node-jsbn node-json-parse-better-errors node-json-schema
  node-json-schema-traverse node-json-stable-stringify
  node-json-stringify-safe node-jsonify node-jsonparse node-jsonstream
  node-jsprim node-leven node-lockfile node-lru-cache node-mime
  node-mime-types node-minimatch node-mkdirp node-move-concurrently node-ms
  node-mute-stream node-nopt node-normalize-package-data node-npm-bundled
  node-npm-package-arg node-npmlog node-number-is-nan node-oauth-sign
  node-object-assign node-once node-opener node-osenv node-p-map
  node-path-is-absolute node-performance-now node-process-nextick-args
  node-promise-inflight node-promise-retry node-promzard node-psl node-puka
  node-punycode node-qs node-read node-read-package-json node-readable-stream
  node-resolve node-retry node-rimraf node-run-queue node-safe-buffer
  node-semver node-set-blocking node-signal-exit node-slash node-spdx-correct
  node-spdx-exceptions node-spdx-expression-parse node-spdx-license-ids
  node-sshpk node-ssri node-string-decoder node-string-width node-strip-ansi
  node-supports-color node-tar node-text-table node-tunnel-agent
  node-tweetnacl node-typedarray-to-buffer node-unique-filename node-uri-js
  node-util-deprecate node-uuid node-validate-npm-package-license
  node-validate-npm-package-name node-verror node-wcwidth.js node-which
  node-wide-align node-wrappy node-write-file-atomic node-yallist nodejs npm
  ocl-icd-libopencl1 odbcinst odbcinst1debian2 openbox openssh-client
  openssh-server openssh-sftp-server openssl parted passwd pci.ids perl
  perl-base pinentry-curses pkg-config plymouth policykit-1 poppler-data
  portaudio19-dev procps proftpd-core psmisc pulseaudio pulseaudio-utils
  python3 python3-colorzero python3-dev python3-distutils python3-dnspython
  python3-gpiozero python3-ldb python3-lib2to3 python3-minimal python3-numpy
  python3-pkg-resources python3-rpi.gpio python3-samba python3-setuptools
  python3-smbus python3-talloc python3-tdb python3-venv rake re2c
  readline-common rng-tools5 rpi.gpio-common rsync ruby ruby-minitest
  ruby-net-telnet ruby-power-assert ruby-rubygems ruby-test-unit ruby-xmlrpc
  runit-helper samba samba-common samba-common-bin samba-libs
  samba-vfs-modules screen sed sensible-utils shared-mime-info sudo swig
  swig4.0 systemd systemd-sysv systemd-timesyncd systemtap-sdt-dev
  sysvinit-utils tar tdb-tools tigervnc-common tigervnc-scraping-server
  tigervnc-standalone-server tmux tzdata ucf udev unixodbc-dev unzip upower
  usbutils util-linux uuid-dev vorbis-tools wget whiptail wireless-regdb
  wireless-tools wpasupplicant x11-common x11-xkb-utils x11-xserver-utils
  x11proto-dev xarchiver xauth xdg-dbus-proxy xfconf xfonts-base
  xfonts-encodings xkb-data xserver-common xserver-xorg-core
  xserver-xorg-input-libinput xserver-xorg-video-fbdev xz-utils zenity
  zenity-common zlib1g zlib1g-dev zsh zsh-common
1062 upgraded, 377 newly installed, 10 to remove and 0 not upgraded.
Need to get 792 MB of archives.
After this operation, 1403 MB of additional disk space will be used.
Get:1 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf base-files armhf 12.4+rpi1+deb12u1 [70.9 kB]
Get:2 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-l10n all 2.36-9+rpi1+deb12u1 [675 kB]
Get:3 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf locales all 2.36-9+rpi1+deb12u1 [3902 kB]
Get:4 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf locales-all armhf 2.36-9+rpi1+deb12u1 [10.7 MB]
Get:36 http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian bookworm/main armhf liblocale-gettext-perl armhf 1.07-5 [14.9 kB]
Get:5 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-dev-bin armhf 2.36-9+rpi1+deb12u1 [43.7 kB]
Get:6 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf binutils armhf 2.40-2+rpi2 [65.4 kB]
Get:7 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-dev armhf 2.74.6-1 [1464 kB]
Get:8 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc6-dev armhf 2.36-9+rpi1+deb12u1 [1256 kB]
Get:9 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rpcsvc-proto armhf 1.4.3-1 [55.1 kB]
Get:10 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc6 armhf 2.36-9+rpi1+deb12u1 [2106 kB]
Get:57 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-venv armhf 3.11.2-1 [1188 B]
Get:11 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzstd1 armhf 1.5.4+dfsg2-5 [237 kB]
Get:12 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libctf0 armhf 2.40-2+rpi2 [71.5 kB]
Get:13 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libctf-nobfd0 armhf 2.40-2+rpi2 [133 kB]
Get:14 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjansson4 armhf 2.14-2 [37.0 kB]
Get:15 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf binutils-arm-linux-gnueabihf armhf 2.40-2+rpi2 [2052 kB]
Get:16 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbinutils armhf 2.40-2+rpi2 [406 kB]
Get:17 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf binutils-common armhf 2.40-2+rpi2 [2470 kB]
Get:18 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libffi8 armhf 3.4.4-1 [19.4 kB]
Get:19 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-dev-bin armhf 2.74.6-1 [147 kB]
Get:20 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-bin armhf 2.74.6-1 [101 kB]
Get:21 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-0 armhf 2.74.6-1 [1203 kB]
Get:22 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam0g-dev armhf 1.5.2-6 [141 kB]
Get:23 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam0g armhf 1.5.2-6 [86.2 kB]
Get:24 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcrypt1 armhf 1:4.4.33-2 [93.3 kB]
Get:25 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcrypt-dev armhf 1:4.4.33-2 [121 kB]
Get:26 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-bin armhf 2.36-9+rpi1+deb12u1 [493 kB]
Get:80 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libncurses5-dev armhf 6.4-4 [932 B]
Get:27 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libapt-pkg-perl armhf 0.1.40+b4 [64.3 kB]
Get:28 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblist-moreutils-xs-perl armhf 0.430-3+b1 [35.1 kB]
Get:29 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtext-iconv-perl armhf 1.7-8 [13.8 kB]
Get:30 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtext-charwidth-perl armhf 0.04-11 [9328 B]
Get:31 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf perl-modules-5.36 all 5.36.0-7 [2815 kB]
Get:32 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgdbm6 armhf 1.23-3 [68.3 kB]
Get:33 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libperl5.36 armhf 5.36.0-7 [3462 kB]
Get:34 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf perl armhf 5.36.0-7 [239 kB]
Get:35 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf perl-base armhf 5.36.0-7 [1413 kB]
Get:37 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zlib1g-dev armhf 1:1.2.13.dfsg-1 [901 kB]
Get:38 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zlib1g armhf 1:1.2.13.dfsg-1 [73.5 kB]
Get:39 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-12-base armhf 12.2.0-14+rpi1 [37.7 kB]
Get:40 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-s1 armhf 12.2.0-14+rpi1 [36.3 kB]
Get:41 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libatomic1 armhf 12.2.0-14+rpi1 [8240 B]
Get:42 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libssl3 armhf 3.0.9-1 [1619 kB]
Get:43 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-minimal armhf 3.11.2-6 [797 kB]
Get:44 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexpat1-dev armhf 2.5.0-1 [130 kB]
Get:45 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexpat1 armhf 2.5.0-1 [77.2 kB]
Get:46 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11-minimal armhf 3.11.2-6 [1679 kB]
Get:47 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblzma-dev armhf 5.4.1-0.2 [246 kB]
Get:48 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblzma5 armhf 5.4.1-0.2 [192 kB]
Get:49 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tar armhf 1.34+dfsg-1.2 [788 kB]
Get:50 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dpkg armhf 1.21.22+rpi1 [1497 kB]
Get:51 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3-dev armhf 3.11.2-1 [9248 B]
Get:52 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-dev armhf 3.11.2-1 [26.2 kB]
Get:53 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-vfs-modules armhf 2:4.17.8+dfsg-2 [386 kB]
Get:54 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-ldb armhf 2:2.6.2+samba4.17.8+dfsg-2 [53.8 kB]
Get:55 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldb2 armhf 2:2.6.2+samba4.17.8+dfsg-2 [133 kB]
Get:56 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba armhf 2:4.17.8+dfsg-2 [845 kB]
Get:58 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-tdb armhf 1.4.8-2 [15.5 kB]
Get:59 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtalloc2 armhf 2.4.0-f2 [23.9 kB]
Get:60 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-talloc armhf 2.4.0-f2 [13.8 kB]
Get:61 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-smbus armhf 4.3-2+b2 [11.3 kB]
Get:62 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-samba armhf 2:4.17.8+dfsg-2 [2408 kB]
Get:63 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-rpi.gpio armhf 0.7.1~a4-1+b2 [21.2 kB]
Get:64 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-numpy armhf 1:1.24.2-1 [3826 kB]
Get:65 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-distutils all 3.11.2-3 [131 kB]
Get:66 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-lib2to3 all 3.11.2-3 [76.3 kB]
Get:67 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-minimal armhf 3.11.2-1 [26.0 kB]
Get:68 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3 armhf 3.11.2-1 [26.0 kB]
Get:69 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsqlite3-dev armhf 3.40.1-2 [893 kB]
Get:70 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsqlite3-0 armhf 3.40.1-2 [724 kB]
Get:71 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf media-types all 10.0.0 [26.1 kB]
Get:72 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaudit-common all 1:3.0.9-1 [10.4 kB]
Get:73 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcap-ng0 armhf 0.8.3-1+b1 [15.6 kB]
Get:74 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaudit1 armhf 1:3.0.9-1 [43.7 kB]
Get:75 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdb5.3-dev armhf 5.3.28+dfsg2-1 [629 kB]
Get:76 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdb5.3 armhf 5.3.28+dfsg2-1 [571 kB]
Get:77 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libncurses6 armhf 6.4-4 [80.0 kB]
Get:78 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtinfo6 armhf 6.4-4 [317 kB]
Get:79 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libncursesw6 armhf 6.4-4 [106 kB]
Get:81 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libncurses-dev armhf 6.4-4 [292 kB]
Get:82 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ncurses-bin armhf 6.4-4 [414 kB]
Get:83 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libreadline-dev armhf 8.2-1.3 [123 kB]
Get:84 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf readline-common all 8.2-1.3 [69.0 kB]
Get:85 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libreadline8 armhf 8.2-1.3 [142 kB]
Get:86 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtirpc-common all 1.3.3+ds-1 [14.0 kB]
Get:87 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtirpc-dev armhf 1.3.3+ds-1 [174 kB]
Get:88 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkrb5-dev armhf 1.20.1-2 [14.6 kB]
Get:89 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf krb5-multidev armhf 1.20.1-2 [125 kB]
Get:90 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgssrpc4 armhf 1.20.1-2 [50.3 kB]
Get:91 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf comerr-dev armhf 2.1-1.47.0-2 [50.8 kB]
Get:92 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcom-err2 armhf 1.47.0-2 [19.1 kB]
Get:93 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkdb5-10 armhf 1.20.1-2 [35.2 kB]
Get:94 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkadm5srv-mit12 armhf 1.20.1-2 [45.2 kB]
Get:95 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkadm5clnt-mit12 armhf 1.20.1-2 [35.6 kB]
Err:95 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkadm5clnt-mit12 armhf 1.20.1-2
  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
Get:96 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkeyutils1 armhf 1.6.3-2 [7892 B]
Get:97 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgssapi-krb5-2 armhf 1.20.1-2 [109 kB]
Get:98 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libk5crypto3 armhf 1.20.1-2 [72.9 kB]
Get:99 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkrb5support0 armhf 1.20.1-2 [29.3 kB]
Get:100 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkrb5-3 armhf 1.20.1-2 [283 kB]
Get:101 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtirpc3 armhf 1.3.3+ds-1 [72.0 kB]
Get:102 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf uuid-dev armhf 2.38.1-5 [37.7 kB]
Get:103 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libuuid1 armhf 2.38.1-5 [27.1 kB]
Get:104 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-stdlib armhf 3.11.2-6 [1668 kB]
Get:105 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11 armhf 3.11.2-6 [572 kB]
Get:106 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3-stdlib armhf 3.11.2-1 [9012 B]
Get:107 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11 armhf 3.11.2-6 [1667 kB]
Get:108 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-dev armhf 3.11.2-6 [3364 kB]
Get:109 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11-dev armhf 3.11.2-6 [511 kB]
Get:110 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [326 kB]
Get:111 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [116 kB]
Get:112 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-sphinxdoc all 5.3.0-4 [130 kB]
Get:113 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++6 armhf 12.2.0-14+rpi1 [504 kB]
Get:114 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmp3-dev armhf 2:6.2.1+dfsg1-1.1 [331 kB]
Get:115 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmp-dev armhf 2:6.2.1+dfsg1-1.1 [582 kB]
Get:116 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmpxx4ldbl armhf 2:6.2.1+dfsg1-1.1 [338 kB]
Get:117 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmp10 armhf 2:6.2.1+dfsg1-1.1 [507 kB]
Get:118 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnettle8 armhf 3.8.1-2 [293 kB]
Get:119 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libhogweed6 armhf 3.8.1-2 [315 kB]
Get:120 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libunistring2 armhf 1.0-2 [407 kB]
Get:121 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libidn2-0 armhf 2.3.3-1+b2 [117 kB]
Get:122 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libp11-kit0 armhf 0.24.1-2 [324 kB]
Get:123 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtasn1-6 armhf 4.19.0-2 [50.9 kB]
Get:124 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgnutls30 armhf 3.7.9-2 [1309 kB]
Get:125 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libicu72 armhf 72.1-3 [9009 kB]
Get:126 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsasl2-modules-db armhf 2.1.28+dfsg-10 [19.1 kB]
Get:127 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsasl2-dev armhf 2.1.28+dfsg-10 [206 kB]
Get:128 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsasl2-2 armhf 2.1.28+dfsg-10 [51.9 kB]
Get:129 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldap-2.5-0 armhf 2.5.13+dfsg-5+rpi1 [154 kB]
Get:130 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtdb1 armhf 1.4.8-2 [39.6 kB]
Get:131 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtevent0 armhf 0.14.1-1 [32.4 kB]
Get:132 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liburing2 armhf 2.3-3 [12.7 kB]
Get:133 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmd-dev armhf 1.0.4-2 [46.6 kB]
Get:134 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmd0 armhf 1.0.4-2 [28.6 kB]
Get:135 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbsd-dev armhf 0.11.7-2 [235 kB]
Get:136 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbsd0 armhf 0.11.7-2 [112 kB]
Get:137 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf sensible-utils all 0.0.17+nmu1 [19.0 kB]
Get:138 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf ucf all 3.0043+nmu1 [55.2 kB]
Get:139 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-common-bin armhf 2:4.17.8+dfsg-2 [1050 kB]
Get:140 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-common all 2:4.17.8+dfsg-2 [83.3 kB]
Get:141 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavahi-client3 armhf 0.8-10 [41.1 kB]
Get:142 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavahi-common3 armhf 0.8-10 [38.5 kB]
Get:143 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavahi-common-data armhf 0.8-10 [107 kB]
Get:144 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-user-session armhf 1.14.8-2~deb12u1 [77.4 kB]
Get:145 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-x11 armhf 1.14.8-2~deb12u1 [88.8 kB]
Get:146 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdbus-1-3 armhf 1.14.8-2~deb12u1 [176 kB]
Get:147 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus armhf 1.14.8-2~deb12u1 [94.5 kB]
Get:148 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-bin armhf 1.14.8-2~deb12u1 [102 kB]
Get:149 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-session-bus-common all 1.14.8-2~deb12u1 [77.5 kB]
Get:150 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapparmor-dev armhf 3.0.8-3 [80.7 kB]
Get:151 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapparmor1 armhf 3.0.8-3 [37.1 kB]
Get:152 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsepol2 armhf 3.4-2.1 [228 kB]
Get:153 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libselinux1-dev armhf 3.4-1+b2 [143 kB]
Get:154 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsepol-dev armhf 3.4-2.1 [309 kB]
Get:155 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-16-0 armhf 10.42-1 [210 kB]
Get:156 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-32-0 armhf 10.42-1 [201 kB]
Get:157 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-posix3 armhf 10.42-1 [55.1 kB]
Get:158 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-dev armhf 10.42-1 [648 kB]
Get:159 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-8-0 armhf 10.42-1 [225 kB]
Get:160 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libselinux1 armhf 3.4-1+b2 [64.5 kB]
Get:161 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgpg-error-dev armhf 1.46-1 [119 kB]
Get:162 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgpg-error0 armhf 1.46-1 [66.2 kB]
Get:163 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcrypt20-dev armhf 1.10.1-3 [685 kB]
Get:164 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcrypt20 armhf 1.10.1-3 [627 kB]
Get:165 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd-dev armhf 252.12-1~deb12u1+rpi1 [352 kB]
Get:166 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libargon2-dev armhf 0~20171227-0.3+deb12u1 [23.3 kB]
Get:167 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libargon2-1 armhf 0~20171227-0.3+deb12u1 [19.1 kB]
Get:168 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libblkid-dev armhf 2.38.1-5 [162 kB]
Get:169 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libblkid1 armhf 2.38.1-5 [131 kB]
Get:170 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dmsetup armhf 2:1.02.185-2 [81.8 kB]
Get:171 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libudev-dev armhf 252.12-1~deb12u1+rpi1 [52.0 kB]
Get:172 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libattr1-dev armhf 1:2.5.1-4 [34.5 kB]
Get:173 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libattr1 armhf 1:2.5.1-4 [21.2 kB]
Get:174 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libacl1-dev armhf 2.3.1-3 [89.7 kB]
Get:175 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libacl1 armhf 2.3.1-3 [28.8 kB]
Get:176 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcap2 armhf 1:2.66-4 [23.5 kB]
Get:177 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf kmod armhf 30+20221128-1 [82.2 kB]
Get:178 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libkmod2 armhf 30+20221128-1 [49.9 kB]
Get:179 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsemanage-common all 3.4-1 [21.6 kB]
Get:180 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsemanage2 armhf 3.4-1+b2 [75.6 kB]
Get:181 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf passwd armhf 1:4.13+dfsg1-1 [905 kB]
Get:182 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam-modules-bin armhf 1.5.2-6 [71.5 kB]
Get:183 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam-modules armhf 1.5.2-6 [274 kB]
Get:184 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf adduser all 3.134 [183 kB]
Get:185 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf less armhf 590-2 [114 kB]
Get:186 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpam-systemd armhf 252.12-1~deb12u1+rpi1 [200 kB]
Get:187 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd-timesyncd armhf 252.12-1~deb12u1+rpi1 [62.9 kB]
Get:188 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ifupdown armhf 0.8.41 [55.1 kB]
Get:189 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-xorg-video-fbdev armhf 1:0.5.0-2 [24.2 kB]
Get:190 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-xorg-core armhf 2:21.1.7-3 [3450 kB]
Get:191 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd armhf 252.12-1~deb12u1+rpi1 [2881 kB]
Get:192 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf udev armhf 252.12-1~deb12u1+rpi1 [1577 kB]
Get:193 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libudev1 armhf 252.12-1~deb12u1+rpi1 [99.1 kB]
Get:194 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdevmapper1.02.1 armhf 2:1.02.185-2 [123 kB]
Get:195 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-c5 armhf 0.16-2 [40.0 kB]
Get:196 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcryptsetup12 armhf 2:2.6.1-4~deb12u1 [191 kB]
Get:197 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libip4tc2 armhf 1.8.9-2 [17.1 kB]
Get:198 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblz4-1 armhf 1.9.4-1+rpi1+b1 [52.7 kB]
Get:199 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmount-dev armhf 2.38.1-5 [22.2 kB]
Get:200 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmount1 armhf 2.38.1-5 [143 kB]
Get:201 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libseccomp2 armhf 2.5.4-1+rpi1+b1 [46.2 kB]
Get:202 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd-shared armhf 252.12-1~deb12u1+rpi1 [1511 kB]
Get:203 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam-runtime all 1.5.2-6 [161 kB]
Get:204 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd-sysv armhf 252.12-1~deb12u1+rpi1 [41.9 kB]
Get:205 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdw1 armhf 0.188-2.1+rpi1 [212 kB]
Get:206 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libelf1 armhf 0.188-2.1+rpi1 [171 kB]
Get:207 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbpf1 armhf 1:1.1.0-1 [122 kB]
Get:208 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxtables12 armhf 1.8.9-2 [27.9 kB]
Get:209 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcap2-bin armhf 1:2.66-4 [32.4 kB]
Get:210 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iproute2 armhf 6.1.0-3 [899 kB]
Get:211 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsmartcols1 armhf 2.38.1-5 [90.9 kB]
Get:212 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf login armhf 1:4.13+dfsg1-1 [611 kB]
Get:213 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfdisk1 armhf 2.38.1-5 [178 kB]
Get:214 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fdisk armhf 2.38.1-5 [127 kB]
Get:215 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf util-linux-extra armhf 2.38.1-5 [97.5 kB]
Get:216 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf util-linux armhf 2.38.1-5 [1063 kB]
Get:217 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xkb-data all 2.35.1-1 [764 kB]
Get:218 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf kbd armhf 2.5.1-1 [300 kB]
Get:219 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnumber-compare-perl all 0.03-3 [6332 B]
Get:220 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtext-glob-perl all 0.11-3 [7676 B]
Get:221 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfile-find-rule-perl all 0.34-3 [26.6 kB]
Get:222 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf usrmerge all 35 [12.5 kB]
Get:223 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf init-system-helpers all 1.65.2 [49.8 kB]
Get:224 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf console-setup-linux all 1.221 [1882 kB]
Get:225 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf console-setup all 1.221 [102 kB]
Get:226 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf keyboard-configuration all 1.221 [416 kB]
Get:227 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf sysvinit-utils armhf 3.06-4 [29.2 kB]
Get:228 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf lsb-base all 11.6+rpi1 [4808 B]
Get:229 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf x11-common all 1:7.7+23 [252 kB]
Get:230 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf x11proto-dev all 2022.1-1 [599 kB]
Get:231 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb1-dev armhf 1.15-1 [175 kB]
Get:232 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb1 armhf 1.15-1 [139 kB]
Get:233 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-dev armhf 2:1.8.4-2+deb12u1 [769 kB]
Get:234 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-data all 2:1.8.4-2+deb12u1 [292 kB]
Get:235 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-6 armhf 2:1.8.4-2+deb12u1 [691 kB]
Get:236 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-xcb1 armhf 2:1.8.4-2+deb12u1 [192 kB]
Get:237 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxext6 armhf 2:1.3.4-1 [48.0 kB]
Get:238 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxt-dev armhf 1:1.2.1-1.1 [368 kB]
Get:239 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxt6 armhf 1:1.2.1-1.1 [155 kB]
Get:240 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmu6 armhf 2:1.1.3-3 [52.0 kB]
Get:241 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxpm-dev armhf 1:3.5.12-1.1 [96.5 kB]
Get:242 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxpm4 armhf 1:3.5.12-1.1 [42.0 kB]
Get:243 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxaw7 armhf 2:1.0.14-1 [165 kB]
Get:244 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxrender1 armhf 1:0.9.10-1.1 [30.0 kB]
Get:245 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxrandr2 armhf 2:1.5.2-2 [35.5 kB]
Get:246 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf x11-xkb-utils armhf 7.7+7 [140 kB]
Get:247 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-common all 2:21.1.7-3 [2382 kB]
Get:248 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcvt0 armhf 0.1.2-1 [5976 B]
Get:249 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgl1 armhf 1.6.0-1 [89.9 kB]
Get:250 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-common all 2.4.114-1+rpi1 [7276 B]
Get:251 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm2 armhf 2.4.114-1+rpi1 [32.8 kB]
Get:252 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-server0 armhf 1.21.0-1 [29.3 kB]
Get:253 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libegl-mesa0 armhf 22.3.6-1+deb12u1+rpi1 [93.0 kB]
Get:254 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgbm1 armhf 22.3.6-1+deb12u1+rpi1 [34.3 kB]
Get:255 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-client0 armhf 1.21.0-1 [23.3 kB]
Get:256 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-dri2-0 armhf 1.15-1 [107 kB]
Get:257 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-dri3-0 armhf 1.15-1 [107 kB]
Get:258 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-present0 armhf 1.15-1 [105 kB]
Get:259 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-randr0 armhf 1.15-1 [116 kB]
Get:260 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-sync1 armhf 1.15-1 [108 kB]
Get:261 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xfixes0 armhf 1.15-1 [109 kB]
Get:262 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-amdgpu1 armhf 2.4.114-1+rpi1 [19.3 kB]
Get:263 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libz3-4 armhf 4.8.12-3.1 [5797 kB]
Get:264 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libedit-dev armhf 3.1-20221030-2 [94.4 kB]
Get:265 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libedit2 armhf 3.1-20221030-2 [76.2 kB]
Get:266 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf icu-devtools armhf 72.1-3 [175 kB]
Get:267 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libicu-dev armhf 72.1-3 [9959 kB]
Get:268 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxml2-dev armhf 2.9.14+dfsg-1.3~deb12u1 [637 kB]
Get:269 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxml2 armhf 2.9.14+dfsg-1.3~deb12u1 [570 kB]
Get:270 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libllvm15 armhf 1:15.0.6-4+rpi1+b1 [20.7 MB]
Get:271 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-nouveau2 armhf 2.4.114-1+rpi1 [17.0 kB]
Get:272 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-radeon1 armhf 2.4.114-1+rpi1 [20.7 kB]
Get:273 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsensors-dev armhf 1:3.6.0-7.1 [39.5 kB]
Get:274 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsensors-config all 1:3.6.0-7.1 [14.3 kB]
Get:275 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsensors5 armhf 1:3.6.0-7.1 [31.6 kB]
Get:276 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgl1-mesa-dri armhf 22.3.6-1+deb12u1+rpi1 [5636 kB]
Get:277 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libglx-mesa0 armhf 22.3.6-1+deb12u1+rpi1 [130 kB]
Get:278 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libglapi-mesa armhf 22.3.6-1+deb12u1+rpi1 [45.8 kB]
Get:279 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-glx0 armhf 1.15-1 [121 kB]
Get:280 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-shm0 armhf 1.15-1 [106 kB]
Get:281 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfixes3 armhf 1:6.0.0-2 [21.2 kB]
Get:282 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglx0 armhf 1.6.0-1 [32.0 kB]
Get:283 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgles2 armhf 1.6.0-1 [17.2 kB]
Get:284 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libegl1 armhf 1.6.0-1 [28.3 kB]
Get:285 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglvnd0 armhf 1.6.0-1 [53.8 kB]
Get:286 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libepoxy0 armhf 1.5.10-1 [172 kB]
Get:287 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpciaccess0 armhf 0.17-2 [48.8 kB]
Get:288 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpixman-1-0 armhf 0.42.2-1 [461 kB]
Err:288 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpixman-1-0 armhf 0.42.2-1
  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
Get:289 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libunwind8 armhf 1.6.2-3 [42.6 kB]
Get:290 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfreetype-dev armhf 2.12.1+dfsg-5 [493 kB]
Get:291 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfreetype6-dev armhf 2.12.1+dfsg-5 [46.4 kB]
Get:292 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbrotli-dev armhf 1.0.9-2+b3 [270 kB]
Get:293 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbrotli1 armhf 1.0.9-2+b3 [258 kB]
Get:294 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpng-dev armhf 1.6.39-2 [336 kB]
Get:295 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpng16-16 armhf 1.6.39-2 [258 kB]
Get:296 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfreetype6 armhf 2.12.1+dfsg-5 [329 kB]
Get:297 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfont2 armhf 1:2.0.6-1 [120 kB]
Get:298 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mount armhf 2.38.1-5 [125 kB]
Get:299 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd0 armhf 252.12-1~deb12u1+rpi1 [299 kB]
Get:300 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-daemon armhf 1.14.8-2~deb12u1 [168 kB]
Get:301 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-system-bus-common all 1.14.8-2~deb12u1 [78.5 kB]
Get:302 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcups2 armhf 2.4.2-3+deb12u1 [205 kB]
Get:303 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpopt0 armhf 1.19+dfsg-1 [40.4 kB]
Get:304 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwbclient0 armhf 2:4.17.8+dfsg-2 [47.5 kB]
Get:305 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-libs armhf 2:4.17.8+dfsg-2 [4832 kB]
Get:306 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libproc2-0 armhf 2:4.0.2-3 [53.6 kB]
Get:307 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf procps armhf 2:4.0.2-3 [679 kB]
Get:308 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf netbase all 6.4 [12.8 kB]
Get:309 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-dnspython all 2.3.0-1 [152 kB]
Get:310 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf tdb-tools armhf 1.4.8-2 [26.0 kB]
Get:311 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssl armhf 3.0.9-1 [1365 kB]
Get:312 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ca-certificates all 20230311 [153 kB]
Get:313 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-pip-whl all 23.0.1+dfsg-1 [1717 kB]
Get:314 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-setuptools-whl all 66.1.1-1 [1111 kB]
Get:315 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11-venv armhf 3.11.2-6 [5892 B]
Get:316 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libi2c0 armhf 4.3-2+b2 [9156 B]
Get:317 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf rpi.gpio-common armhf 0.7.1~a4-1+b2 [6808 B]
Get:318 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-setuptools all 66.1.1-1 [521 kB]
Get:319 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-pkg-resources all 66.1.1-1 [296 kB]
Get:320 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgfortran5 armhf 12.2.0-14+rpi1 [238 kB]
Get:321 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libopenblas0-pthread armhf 0.3.21+ds-4+rpi1 [2159 kB]
Get:322 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libblas3 armhf 3.11.0-2 [100.0 kB]
Get:323 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libatlas3-base armhf 3.10.3-13+rpi1 [2356 kB]
Get:324 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblapack3 armhf 3.11.0-2 [1624 kB]
Get:325 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-data all 2.74.6-1 [1208 kB]
Get:326 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libffi-dev armhf 3.4.4-1 [60.4 kB]
Get:327 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpkgconf3 armhf 1.8.1-1 [31.3 kB]
Get:328 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkgconf-bin armhf 1.8.1-1 [27.8 kB]
Get:329 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf m4 armhf 1.4.19-3 [256 kB]
Get:330 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf debianutils armhf 5.7-0.4 [101 kB]
Get:331 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf autoconf all 2.71-3 [332 kB]
Get:332 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkg-config armhf 1.8.1-1 [13.7 kB]
Get:333 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkgconf armhf 1.8.1-1 [25.9 kB]
Get:334 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbz2-dev armhf 1.0.8-5+b2 [26.8 kB]
Get:335 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf bzip2 armhf 1.0.8-5+b2 [47.4 kB]
Get:336 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbz2-1.0 armhf 1.0.8-5+b2 [43.5 kB]
Get:337 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgdbm-compat4 armhf 1.23-3 [47.8 kB]
Get:338 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxxhash0 armhf 0.8.1-1 [27.8 kB]
Get:339 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapt-pkg6.0 armhf 2.6.1 [805 kB]
Get:340 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf debconf all 1.5.82 [121 kB]
Get:341 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bash armhf 5.2.15-2 [1365 kB]
Get:342 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bsdutils armhf 1:2.38.1-5 [84.2 kB]
Get:343 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf coreutils armhf 9.1-1 [2702 kB]
Get:344 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dash armhf 0.5.12-2 [78.9 kB]
Get:345 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf diffutils armhf 1:3.8-4 [332 kB]
Get:346 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf findutils armhf 4.9.0-4 [616 kB]
Get:347 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf grep armhf 3.8-5 [404 kB]
Get:348 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gzip armhf 1.12-1 [132 kB]
Get:349 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf hostname armhf 3.23+nmu1 [9908 B]
Get:350 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf sed armhf 4.9-1 [318 kB]
Get:351 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdebconfclient0 armhf 0.270 [9536 B]
Get:352 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf base-passwd armhf 3.6.1 [57.6 kB]
Get:353 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ncurses-base all 6.4-4 [261 kB]
Get:354 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libksba8 armhf 1.6.3-2 [107 kB]
Get:355 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libassuan0 armhf 2.5.5-5 [42.2 kB]
Get:356 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gnupg-l10n all 2.2.40-1.1 [1093 kB]
Get:357 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gnupg-utils armhf 2.2.40-1.1 [812 kB]
Get:358 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgconf armhf 2.2.40-1.1 [540 kB]
Err:358 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgconf armhf 2.2.40-1.1
  Connection timed out [IP: 219.100.92.228 80]
Get:359 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dirmngr armhf 2.2.40-1.1 [731 kB]
Get:360 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg armhf 2.2.40-1.1 [843 kB]
Get:361 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg-agent armhf 2.2.40-1.1 [636 kB]
Get:362 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg-wks-client armhf 2.2.40-1.1 [518 kB]
Get:363 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg-wks-server armhf 2.2.40-1.1 [511 kB]
Get:364 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgv armhf 2.2.40-1.1 [601 kB]
Get:365 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgsm armhf 2.2.40-1.1 [621 kB]
Get:366 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gnupg all 2.2.40-1.1 [846 kB]
Get:367 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pinentry-curses armhf 1.2.1-1 [72.0 kB]
Get:368 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apt armhf 2.6.1 [1296 kB]
Get:369 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf filezilla armhf 3.63.0-1 [1598 kB]
Get:370 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf filezilla-common all 3.63.0-1 [2324 kB]
Get:371 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfilezilla-common all 0.41.0-2 [72.5 kB]
Get:372 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfilezilla34 armhf 0.41.0-2 [218 kB]
Get:373 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgdk-pixbuf-2.0-0 armhf 2.42.10+dfsg-1+b1 [123 kB]
Get:374 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgdk-pixbuf2.0-common all 2.42.10+dfsg-1 [306 kB]
Get:375 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf shared-mime-info armhf 2.2-1 [726 kB]
Get:376 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjpeg62-turbo-dev armhf 1:2.1.5-2 [258 kB]
Get:377 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjpeg62-turbo armhf 1:2.1.5-2 [143 kB]
Get:378 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdeflate-dev armhf 1.14-1 [48.1 kB]
Get:379 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdeflate0 armhf 1.14-1 [50.9 kB]
Get:380 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjbig-dev armhf 2.1-6.1 [27.2 kB]
Get:381 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjbig0 armhf 2.1-6.1 [27.0 kB]
Get:382 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblerc4 armhf 4.0.0+ds-2 [133 kB]
Get:383 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebp7 armhf 1.2.4-0.2 [242 kB]
Get:384 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtiff6 armhf 4.5.0-6 [293 kB]
Get:385 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gtk-update-icon-cache armhf 3.24.37-2 [42.3 kB]
Get:386 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf adwaita-icon-theme all 43-1 [5124 kB]
Get:387 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf at-spi2-common all 2.46.0-5 [162 kB]
Get:388 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatk1.0-0 armhf 2.46.0-5 [41.4 kB]
Get:389 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxi6 armhf 2:1.8-1 [78.1 kB]
Get:390 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatspi2.0-0 armhf 2.46.0-5 [63.8 kB]
Get:391 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatk-bridge2.0-0 armhf 2.46.0-5 [55.6 kB]
Get:392 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfontconfig-dev armhf 2.14.1-4 [383 kB]
Get:393 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fonts-dejavu-core all 2.37-6 [1068 kB]
Get:394 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fonts-urw-base35 all 20200910-7 [10.8 MB]
Get:395 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fontconfig-config armhf 2.14.1-4 [315 kB]
Get:396 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfontconfig1 armhf 2.14.1-4 [366 kB]
Get:397 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-render0 armhf 1.15-1 [114 kB]
Get:398 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcairo-gobject2 armhf 1.16.0-7 [111 kB]
Get:399 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcairo2 armhf 1.16.0-7 [482 kB]
Get:400 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblcms2-2 armhf 2.14-2 [124 kB]
Get:401 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcolord2 armhf 1.4.6-2.2 [115 kB]
Get:402 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfribidi0 armhf 1.0.8-2.1 [63.7 kB]
Get:403 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libharfbuzz0b armhf 6.0.0+dfsg-3 [1894 kB]
Get:404 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxft2 armhf 2.3.6-1 [53.7 kB]
Get:405 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpangocairo-1.0-0 armhf 1.50.12+ds-1 [30.1 kB]
Get:406 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpangoft2-1.0-0 armhf 1.50.12+ds-1 [40.5 kB]
Get:407 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpango-1.0-0 armhf 1.50.12+ds-1 [186 kB]
Get:408 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpangoxft-1.0-0 armhf 1.50.12+ds-1 [24.2 kB]
Get:409 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fontconfig armhf 2.14.1-4 [449 kB]
Get:410 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libthai-data all 0.1.29-1 [176 kB]
Get:411 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdatrie1 armhf 0.2.13-2+b2 [39.9 kB]
Get:412 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libthai0 armhf 0.1.29-1 [54.5 kB]
Get:413 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-cursor0 armhf 1.21.0-1 [13.2 kB]
Get:414 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-egl1 armhf 1.21.0-1 [8448 B]
Get:415 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcursor1 armhf 1:1.2.1-1 [38.0 kB]
Get:416 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxdamage1 armhf 1:1.1.6-1 [14.7 kB]
Get:417 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxinerama1 armhf 2:1.1.4-3 [17.4 kB]
Get:418 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xkb1 armhf 1.15-1 [126 kB]
Get:419 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxkbcommon-x11-0 armhf 1.5.0-1 [13.8 kB]
Get:420 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxkbcommon0 armhf 1.5.0-1 [93.1 kB]
Get:421 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dconf-gsettings-backend armhf 0.40.0-4 [23.1 kB]
Get:422 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dconf-service armhf 0.40.0-4 [28.9 kB]
Get:423 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdconf1 armhf 0.40.0-4 [36.0 kB]
Get:424 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgtk-3-common all 3.24.37-2 [3891 kB]
Get:425 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgtk-3-0 armhf 3.24.37-2 [2351 kB]
Get:426 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpugixml1v5 armhf 1.13-0.2 [71.8 kB]
Get:427 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxbase3.2-1 armhf 3.2.2+dfsg-2 [820 kB]
Get:428 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnotify4 armhf 0.8.1-1 [27.5 kB]
Get:429 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxtst6 armhf 2:1.2.3-1.1 [26.3 kB]
Get:430 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxgtk3.2-1 armhf 3.2.2+dfsg-2 [3737 kB]
Get:431 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbabl-0.1-0 armhf 1:0.1.98-1+rpi1 [264 kB]
Get:432 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaom3 armhf 3.6.0-1 [1332 kB]
Get:433 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libva-x11-2 armhf 2.17.0-1 [19.6 kB]
Get:434 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libva-drm2 armhf 2.17.0-1 [15.9 kB]
Get:435 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libva2 armhf 2.17.0-1 [61.1 kB]
Get:436 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvdpau1 armhf 1.5-2 [23.9 kB]
Get:437 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ocl-icd-libopencl1 armhf 2.3.1-1 [40.3 kB]
Get:438 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavutil57 armhf 7:5.1.3-1 [325 kB]
Get:439 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcodec2-1.0 armhf 1.0.5-1 [8151 kB]
Get:440 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdav1d6 armhf 1.0.0-2+rpi1 [205 kB]
Get:441 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgsm1 armhf 1.0.22-1 [28.3 kB]
Get:442 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libhwy1 armhf 1.0.3-3+rpi1 [20.9 kB]
Get:443 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjxl0.7 armhf 0.7.0-10 [627 kB]
Get:444 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmp3lame0 armhf 3.100-6 [347 kB]
Get:445 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenjp2-7 armhf 2.5.0-2 [164 kB]
Get:446 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopus0 armhf 1.3.1-3 [171 kB]
Get:447 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf librav1e0 armhf 0.5.1-6 [521 kB]
Get:448 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librsvg2-common armhf 2.54.7+dfsg-1~deb12u1 [21.0 kB]
Get:449 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librsvg2-2 armhf 2.54.7+dfsg-1~deb12u1 [2205 kB]
Get:450 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsnappy1v5 armhf 1.1.9-3 [23.9 kB]
Get:451 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspeex1 armhf 1.2.1-2 [45.5 kB]
Err:451 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspeex1 armhf 1.2.1-2
  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
Get:452 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsvtav1enc1 armhf 1.4.1+dfsg-1 [880 kB]
Get:453 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libswresample4 armhf 7:5.1.3-1 [85.1 kB]
Get:454 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libogg0 armhf 1.3.5-3 [21.7 kB]
Get:455 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtheora0 armhf 1.1.1+dfsg.1-16.1 [130 kB]
Get:456 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvpx7 armhf 1.12.0-1 [1210 kB]
Get:457 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebp-dev armhf 1.2.4-0.2 [350 kB]
Get:458 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebpdemux2 armhf 1.2.4-0.2 [98.4 kB]
Get:459 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebpmux3 armhf 1.2.4-0.2 [106 kB]
Get:460 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx264-164 armhf 2:0.164.3095+gitbaee400-3+rpi1 [688 kB]
Get:461 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libx265-199 armhf 3.5-2 [548 kB]
Get:462 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libzvbi0 armhf 0.2.41-1 [241 kB]
Get:463 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libzvbi-common all 0.2.41-1 [69.7 kB]
Get:464 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavcodec59 armhf 7:5.1.3-1 [4578 kB]
Get:465 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libudfread0 armhf 1.1.2-1 [14.6 kB]
Get:466 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbluray2 armhf 1:1.3.4-1 [120 kB]
Get:467 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libchromaprint1 armhf 1.5.1-2+b2 [33.7 kB]
Get:468 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgme0 armhf 0.6.3-6 [105 kB]
Get:469 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmpg123-0 armhf 1.31.2-1 [126 kB]
Get:470 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenmpt0 armhf 0.6.9-1 [597 kB]
Get:471 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librabbitmq4 armhf 0.11.0-1+b1 [38.3 kB]
Get:472 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcjson1 armhf 1.7.15-1 [20.9 kB]
Get:473 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmbedcrypto7 armhf 2.28.3-1 [241 kB]
Get:474 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librist4 armhf 0.2.7+dfsg-1 [67.1 kB]
Get:475 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsrt1.5-gnutls armhf 1.5.1-1 [263 kB]
Get:476 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libssh-gcrypt-4 armhf 0.10.5-2 [185 kB]
Get:477 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libzmq5 armhf 4.3.4-6 [226 kB]
Get:478 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavformat59 armhf 7:5.1.3-1 [1011 kB]
Get:479 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgomp1 armhf 12.2.0-14+rpi1 [95.4 kB]
Get:480 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-glib-1.0-common all 1.6.6-1 [57.1 kB]
Get:481 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-glib-1.0-0 armhf 1.6.6-1 [57.1 kB]
Get:482 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libimath-3-1-29 armhf 3.1.6-1+b1 [37.4 kB]
Get:483 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenexr-3-1-30 armhf 3.1.5-5 [814 kB]
Get:484 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnspr4 armhf 2:4.35-1 [90.9 kB]
Get:485 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnss3 armhf 2:3.87.1-1 [1090 kB]
Get:486 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpoppler126 armhf 22.12.0-2 [1682 kB]
Get:732 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf g++ armhf 4:12.2.0-3+rpi1 [1344 B]
Get:487 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpoppler-glib8 armhf 22.12.0-2 [108 kB]
Get:488 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libraw20 armhf 0.20.2-2.1 [323 kB]
Get:489 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libswscale6 armhf 7:5.1.3-1 [170 kB]
Get:490 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsuitesparseconfig5 armhf 1:5.12.0+dfsg-2 [23.6 kB]
Get:491 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libamd2 armhf 1:5.12.0+dfsg-2 [30.2 kB]
Get:492 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcamd2 armhf 1:5.12.0+dfsg-2 [30.7 kB]
Get:493 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libccolamd2 armhf 1:5.12.0+dfsg-2 [31.7 kB]
Get:494 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcolamd2 armhf 1:5.12.0+dfsg-2 [28.3 kB]
Get:495 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcholmod3 armhf 1:5.12.0+dfsg-2 [212 kB]
Get:496 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libumfpack5 armhf 1:5.12.0+dfsg-2 [128 kB]
Get:497 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgegl-common all 1:0.4.42-2 [745 kB]
Get:498 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgegl-0.4-0 armhf 1:0.4.42-2 [1501 kB]
Get:499 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexiv2-27 armhf 0.27.6-1 [1418 kB]
Get:500 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgexiv2-2 armhf 0.14.0-1 [68.0 kB]
Get:501 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gimp armhf 2.10.34-1 [3526 kB]
Get:502 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgimp2.0 armhf 2.10.34-1 [736 kB]
Get:503 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gimp-data all 2.10.34-1 [14.2 MB]
Get:504 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcdt5 armhf 2.42.2-7+b2 [37.3 kB]
Get:505 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcgraph6 armhf 2.42.2-7+b2 [56.0 kB]
Get:506 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libabsl20220623 armhf 20220623.1-1+rpi1 [361 kB]
Get:507 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgav1-1 armhf 0.18.0-1+rpi1+b1 [285 kB]
Get:508 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libyuv0 armhf 0.0~git20230123.b2528b0-1 [82.7 kB]
Get:509 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavif15 armhf 0.11.1-1 [84.1 kB]
Get:510 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavif-dev armhf 0.11.1-1 [41.7 kB]
Get:511 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libde265-0 armhf 1.0.11-1+rpi1 [137 kB]
Get:512 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libheif1 armhf 1.15.1-1 [178 kB]
Get:513 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaom-dev armhf 3.6.0-1 [1528 kB]
Get:514 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdav1d-dev armhf 1.0.0-2+rpi1 [25.7 kB]
Get:515 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libde265-dev armhf 1.0.11-1+rpi1 [13.8 kB]
Get:516 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libx265-dev armhf 3.5-2 [571 kB]
Get:517 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libheif-dev armhf 1.15.1-1 [33.5 kB]
Get:518 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjpeg-dev armhf 1:2.1.5-2 [71.8 kB]
Get:519 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzstd-dev armhf 1.5.4+dfsg2-5 [297 kB]
Get:520 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtiffxx6 armhf 4.5.0-6 [144 kB]
Get:521 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblerc-dev armhf 4.0.0+ds-2 [147 kB]
Get:522 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtiff-dev armhf 4.5.0-6 [415 kB]
Get:523 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvpx-dev armhf 1.12.0-1 [658 kB]
Get:524 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgd-dev armhf 2.3.3-9 [237 kB]
Get:525 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgd3 armhf 2.3.3-9 [103 kB]
Get:526 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgts-0.7-5 armhf 0.7.6+darcs121130-5 [134 kB]
Get:527 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf autotools-dev all 20220109.1 [51.6 kB]
Get:528 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf automake all 1:1.16.5-1.3 [823 kB]
Get:529 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libltdl-dev armhf 2.4.7-5 [161 kB]
Get:530 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libltdl7 armhf 2.4.7-5 [390 kB]
Get:531 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpathplan4 armhf 2.42.2-7+b2 [39.5 kB]
Get:532 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgvc6 armhf 2.42.2-7+b2 [566 kB]
Get:533 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgvpr2 armhf 2.42.2-7+b2 [162 kB]
Get:534 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblab-gamut1 armhf 2.42.2-7+b2 [197 kB]
Get:535 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf graphviz armhf 2.42.2-7+b2 [479 kB]
Get:536 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgpm2 armhf 1.20.7-10+b2 [35.5 kB]
Get:537 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libslang2 armhf 2.3.3-3 [500 kB]
Get:538 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaa1 armhf 1.4p5-50 [50.8 kB]
Get:539 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs9-common all 10.0.0~dfsg-11+deb12u1 [27.6 kB]
Get:540 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs-common all 10.0.0~dfsg-11+deb12u1 [149 kB]
Get:541 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs10-common all 10.0.0~dfsg-11+deb12u1 [586 kB]
Get:542 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf poppler-data all 0.4.12-1 [1601 kB]
Get:543 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libidn12 armhf 1.41-1+b1 [77.0 kB]
Get:544 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjbig2dec0 armhf 0.19-3+b2 [58.6 kB]
Get:545 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpaper1 armhf 1.1.29 [11.9 kB]
Get:546 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs10 armhf 10.0.0~dfsg-11+deb12u1 [2055 kB]
Get:547 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgudev-1.0-0 armhf 237-2 [13.2 kB]
Get:548 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwmf0.2-7 armhf 0.2.12-5.1 [25.8 kB]
Get:549 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwmflite-0.2-7 armhf 0.2.12-5.1 [67.9 kB]
Get:550 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwmf-0.2-7 armhf 0.2.12-5.1 [101 kB]
Get:551 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libssl-dev armhf 3.0.9-1 [2099 kB]
Get:552 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libuv1-dev armhf 1.44.2-1+rpi1 [157 kB]
Get:553 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libuv1 armhf 1.44.2-1+rpi1 [125 kB]
Get:554 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libc-ares2 armhf 1.18.1-3 [95.4 kB]
Get:555 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnghttp2-14 armhf 1.52.0-1 [60.6 kB]
Get:556 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-xtend all 4.0.2-3 [3932 B]
Get:557 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnode-dev armhf 18.13.0+dfsg1-1+rpi1 [498 kB]
Get:558 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf nodejs armhf 18.13.0+dfsg1-1+rpi1 [304 kB]
Get:559 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-acorn all 8.8.1+ds+~cs25.17.7-2 [128 kB]
Get:560 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cjs-module-lexer all 1.2.2+dfsg-5 [30.1 kB]
Get:561 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-busboy all 1.6.0+~cs2.6.0-2 [16.9 kB]
Get:562 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-undici all 5.15.0+dfsg1+~cs20.10.9.3-1+deb12u1 [284 kB]
Get:563 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnode108 armhf 18.13.0+dfsg1-1+rpi1 [8798 kB]
Get:564 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libevdev2 armhf 1.13.0+dfsg-1+rpi1 [27.9 kB]
Get:565 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libinput10 armhf 1.22.1-1 [106 kB]
Get:566 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libinput-bin armhf 1.22.1-1 [21.7 kB]
Get:567 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwacom-common all 2.6.0-1 [58.4 kB]
Get:568 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwacom9 armhf 2.6.0-1 [18.5 kB]
Get:569 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf logsave armhf 1.47.0-2 [19.1 kB]
Get:570 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf klibc-utils armhf 2.0.12-1+rpi1 [87.1 kB]
Get:571 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf initramfs-tools all 0.142 [72.9 kB]
Get:572 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf initramfs-tools-core all 0.142 [105 kB]
Get:573 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libext2fs2 armhf 1.47.0-2 [184 kB]
Get:574 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf e2fsprogs armhf 1.47.0-2 [521 kB]
Get:575 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libklibc armhf 2.0.12-1+rpi1 [42.1 kB]
Get:576 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf linux-base all 4.9 [31.8 kB]
Get:577 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpio armhf 2.13+dfsg-7.1 [229 kB]
Get:578 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cron-daemon-common all 3.0pl1-162 [12.7 kB]
Get:579 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cron armhf 3.0pl1-162 [68.2 kB]
Get:580 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsctp-dev armhf 1.0.19+dfsg-2 [71.5 kB]
Get:581 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsctp1 armhf 1.0.19+dfsg-2 [29.1 kB]
Get:582 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapr1-dev armhf 1.7.2-3 [732 kB]
Get:583 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1-dbd-sqlite3 armhf 1.6.3-1 [12.3 kB]
Get:584 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1-ldap armhf 1.6.3-1 [11.3 kB]
Get:585 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldap2-dev all 2.5.13+dfsg-5+rpi1 [22.7 kB]
Get:586 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldap-dev armhf 2.5.13+dfsg-5+rpi1 [259 kB]
Get:587 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1-dev armhf 1.6.3-1 [397 kB]
Get:588 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1 armhf 1.6.3-1 [75.2 kB]
Get:589 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapr1 armhf 1.7.2-3 [82.4 kB]
Get:590 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf curl armhf 7.88.1-10+rpi1 [300 kB]
Get:591 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpsl5 armhf 0.21.2-1 [57.5 kB]
Get:592 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libssh2-1 armhf 1.10.0-3+b1 [161 kB]
Get:593 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl4 armhf 7.88.1-10+rpi1 [343 kB]
Get:594 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblua5.3-0 armhf 5.3.6-2 [98.3 kB]
Get:595 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2 armhf 2.4.57-2 [215 kB]
Get:596 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-bin armhf 2.4.57-2 [1161 kB]
Get:597 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-data all 2.4.57-2 [160 kB]
Get:598 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-utils armhf 2.4.57-2 [201 kB]
Get:599 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf flex armhf 2.6.4-8.2 [391 kB]
Get:600 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf git armhf 1:2.39.2-1.1 [5459 kB]
Get:601 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf git-man all 1:2.39.2-1.1 [2049 kB]
Get:602 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl4-gnutls-dev armhf 7.88.1-10+rpi1 [419 kB]
Get:603 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl3-gnutls armhf 7.88.1-10+rpi1 [337 kB]
Get:604 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liberror-perl all 0.17029-2 [29.0 kB]
Get:605 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcbor0.8 armhf 0.8.0-2 [22.8 kB]
Get:606 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfido2-1 armhf 1.12.0-2 [67.6 kB]
Get:607 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssh-sftp-server armhf 1:9.2p1-2 [55.5 kB]
Get:608 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssh-server armhf 1:9.2p1-2 [377 kB]
Get:609 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssh-client armhf 1:9.2p1-2 [818 kB]
Get:610 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf runit-helper all 2.15.2 [6520 B]
Get:611 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwrap0-dev armhf 7.6.q-32 [18.4 kB]
Get:612 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwrap0 armhf 7.6.q-32 [52.6 kB]
Get:613 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libhiredis0.14 armhf 0.14.1-3 [30.7 kB]
Get:614 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libhashkit2 armhf 1.1.4-1 [16.3 kB]
Get:615 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmemcached11 armhf 1.1.4-1 [70.2 kB]
Get:616 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmemcachedutil2 armhf 1.1.4-1 [13.7 kB]
Get:617 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf proftpd-core armhf 1.3.8+dfsg-4+deb12u1 [2437 kB]
Get:618 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libatopology2 armhf 1.2.8-1+b1 [47.0 kB]
Get:619 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasound2-dev armhf 1.2.8-1+b1 [110 kB]
Get:620 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasound2 armhf 1.2.8-1+b1 [302 kB]
Get:621 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libasound2-data all 1.2.8-1 [20.5 kB]
Get:622 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfftw3-single3 armhf 3.3.10-1 [509 kB]
Get:623 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgstreamer1.0-0 armhf 1.22.0-2 [1073 kB]
Get:624 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liborc-0.4-0 armhf 1:0.4.33-2 [135 kB]
Get:625 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iso-codes all 4.15.0-1 [2906 kB]
Get:626 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-plugins-base1.0-0 armhf 1.22.0-3+deb12u1 [840 kB]
Get:627 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libflac12 armhf 1.4.2+ds-2 [149 kB]
Get:628 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsndfile1 armhf 1.2.0-1 [177 kB]
Get:629 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpulsedsp armhf 16.1+dfsg1-2+b2 [34.8 kB]
Get:630 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf pulseaudio armhf 16.1+dfsg1-2+b2 [1079 kB]
Get:631 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf pulseaudio-utils armhf 16.1+dfsg1-2+b2 [81.8 kB]
Get:632 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasyncns0 armhf 0.8-6+b3 [12.0 kB]
Get:633 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpulse0 armhf 16.1+dfsg1-2+b2 [239 kB]
Get:634 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspeexdsp1 armhf 1.2.1-1 [33.6 kB]
Get:635 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjack-dev armhf 1:0.126.0-2 [148 kB]
Get:636 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjack0 armhf 1:0.126.0-2 [81.1 kB]
Get:637 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsamplerate0 armhf 0.2.2-3 [943 kB]
Get:638 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libasound2-plugins armhf 1.2.7.1-1 [66.4 kB]
Get:639 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rsync armhf 3.2.7-1 [368 kB]
Get:640 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf sgml-base all 1.31 [15.4 kB]
Get:641 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf sudo armhf 1.9.13p3-1+deb12u1 [1825 kB]
Get:642 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre3-dev armhf 2:8.39-15 [576 kB]
Get:643 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre16-3 armhf 2:8.39-15 [234 kB]
Err:643 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre16-3 armhf 2:8.39-15
  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
Get:644 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre32-3 armhf 2:8.39-15 [225 kB]
Get:645 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcrecpp0v5 armhf 2:8.39-15 [141 kB]
Get:646 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre3 armhf 2:8.39-15 [313 kB]
Get:647 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgc1 armhf 1:8.2.2-3 [235 kB]
Get:648 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc4 armhf 12.2.0-14+rpi1 [33.6 kB]
Get:649 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc-10-dev armhf 10.4.0-7+rpi1 [159 kB]
Get:650 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-11-base armhf 11.3.0-12+rpi1 [38.6 kB]
Get:651 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasan6 armhf 11.3.0-12+rpi1 [1946 kB]
Get:652 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libubsan1 armhf 12.2.0-14+rpi1 [861 kB]
Get:653 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf g++-10 armhf 10.4.0-7+rpi1 [7360 kB]
Get:654 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-10 armhf 10.4.0-7+rpi1 [13.4 MB]
Get:655 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++-10-dev armhf 10.4.0-7+rpi1 [1763 kB]
Get:656 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-10-dev armhf 10.4.0-7+rpi1 [682 kB]
Get:657 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libisl23 armhf 0.25-1 [519 kB]
Get:658 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmpfr6 armhf 4.2.0-1 [574 kB]
Get:659 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmpc3 armhf 1.3.1-1 [41.0 kB]
Get:660 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcc1-0 armhf 12.2.0-14+rpi1 [32.2 kB]
Get:661 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpp-10 armhf 10.4.0-7+rpi1 [6697 kB]
Get:662 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-10-base armhf 10.4.0-7+rpi1 [36.0 kB]
Get:663 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libplymouth5 armhf 22.02.122-3 [84.3 kB]
Get:664 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf plymouth armhf 22.02.122-3 [121 kB]
Get:665 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mawk armhf 1.3.4.20200120-3.1 [102 kB]
Get:666 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf tzdata all 2023c-5 [296 kB]
Get:667 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dmidecode armhf 3.4-1 [55.4 kB]
Get:668 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf groff-base armhf 1.22.4-10 [774 kB]
Get:669 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iputils-ping armhf 3:20221126-1 [43.9 kB]
Get:670 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf isc-dhcp-client armhf 4.4.3-P1-2 [945 kB]
Get:671 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bsdextrautils armhf 2.38.1-5 [78.5 kB]
Get:672 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpipeline1 armhf 1.5.7-1 [33.4 kB]
Get:673 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf man-db armhf 2.11.2-2 [1342 kB]
Get:674 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf nano armhf 7.2-1 [663 kB]
Get:675 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf netcat-openbsd armhf 1.219-1 [38.9 kB]
Get:676 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bash-completion all 1:2.11-6 [234 kB]
Get:677 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf file armhf 1:5.44-3 [41.5 kB]
Get:678 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmagic-dev armhf 1:5.44-3 [107 kB]
Get:679 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmagic1 armhf 1:5.44-3 [95.3 kB]
Get:680 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmagic-mgc armhf 1:5.44-3 [305 kB]
Get:681 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gettext-base armhf 0.21-12 [156 kB]
Get:682 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf lsof armhf 4.95.0-1+rpi1 [305 kB]
Get:683 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libutempter0 armhf 1.2.1-3 [8404 B]
Get:684 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf screen armhf 4.9.0-4 [539 kB]
Get:685 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf wget armhf 1.21.3-1+b1 [942 kB]
Get:686 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xz-utils armhf 5.4.1-0.2 [467 kB]
Get:687 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf alsa-utils armhf 1.2.8-1 [1057 kB]
Get:688 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dpkg-dev all 1.21.22+rpi1 [1353 kB]
Get:689 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf debhelper all 13.11.4 [942 kB]
Get:690 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdebhelper-perl all 13.11.4 [81.2 kB]
Get:691 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdpkg-perl all 1.21.22+rpi1 [603 kB]
Get:692 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsub-override-perl all 0.09-4 [9304 B]
Get:693 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dh-strip-nondeterminism all 1.13.1-1 [8620 B]
Get:694 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfile-stripnondeterminism-perl all 1.13.1-1 [19.4 kB]
Get:695 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dwz armhf 0.15-1 [92.4 kB]
Get:696 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-dev armhf 2.4.57-2 [306 kB]
Get:697 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libregexp-assemble-perl all 0.38-2 [77.8 kB]
Get:698 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apt-file all 3.3 [39.1 kB]
Get:699 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf autoconf2.64 all 2.64+dfsg-1.1 [480 kB]
Get:700 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gettext armhf 0.21-12 [1201 kB]
Get:701 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf autopoint all 0.21-12 [495 kB]
Get:702 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf bison armhf 2:3.8.2+dfsg-1 [1114 kB]
Get:703 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bubblewrap armhf 0.8.0-2 [42.7 kB]
Get:704 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libllvm14 armhf 1:14.0.6-12+rpi1 [19.5 MB]
Get:705 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-cpp14 armhf 1:14.0.6-12+rpi1 [9464 kB]
Get:706 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasan8 armhf 12.2.0-14+rpi1 [2088 kB]
Get:707 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-12-dev armhf 12.2.0-14+rpi1 [727 kB]
Get:708 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++-12-dev armhf 12.2.0-14+rpi1 [2027 kB]
Get:709 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc-12-dev armhf 12.2.0-14+rpi1 [159 kB]
Get:710 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-common-14-dev all 1:14.0.6-12+rpi1 [891 kB]
Get:711 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf llvm-14-linker-tools armhf 1:14.0.6-12+rpi1 [1044 kB]
Get:712 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang1-14 armhf 1:14.0.6-12+rpi1 [5208 kB]
Get:713 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf clang-14 armhf 1:14.0.6-12+rpi1 [95.7 kB]
Get:714 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf clang armhf 1:14.0-55.6 [4972 B]
Get:715 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf clang-11 armhf 1:11.1.0-6+rpi2 [77.6 kB]
Get:716 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-common-11-dev armhf 1:11.1.0-6+rpi2 [2794 kB]
Get:717 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-cpp11 armhf 1:11.1.0-6+rpi2 [8244 kB]
Get:1180 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdb-dev armhf 5.3.2 [1744 B]
Get:718 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libllvm11 armhf 1:11.1.0-6+rpi2 [15.6 MB]
Get:719 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-11-dev armhf 11.3.0-12+rpi1 [698 kB]
Get:720 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++-11-dev armhf 11.3.0-12+rpi1 [1976 kB]
Get:721 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc-11-dev armhf 11.3.0-12+rpi1 [160 kB]
Get:722 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf llvm-11-linker-tools armhf 1:11.1.0-6+rpi2 [912 kB]
Get:723 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang1-11 armhf 1:11.1.0-6+rpi2 [4620 kB]
Get:724 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libarchive13 armhf 3.6.2-1 [293 kB]
Get:725 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjsoncpp25 armhf 1.9.5-4 [66.7 kB]
Get:726 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf librhash0 armhf 1.4.3-3 [142 kB]
Get:727 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cmake armhf 3.25.1-1 [3859 kB]
Get:728 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cmake-data all 3.25.1-1 [2026 kB]
Get:729 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf colorized-logs armhf 2.6-1 [15.4 kB]
Get:730 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpp-12 armhf 12.2.0-14+rpi1 [7159 kB]
Get:731 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-12 armhf 12.2.0-14+rpi1 [14.2 MB]
Get:733 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc armhf 4:12.2.0-3+rpi1 [5216 B]
Get:734 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf g++-12 armhf 12.2.0-14+rpi1 [7914 kB]
Get:735 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpp armhf 4:12.2.0-3+rpi1 [7048 B]
Get:736 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mysql-common all 5.8+1.1.0 [6636 B]
Get:737 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mariadb-common all 1:10.11.3-1+rpi1 [24.1 kB]
Get:738 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmariadb-dev-compat armhf 1:10.11.3-1+rpi1 [22.9 kB]
Get:739 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmariadb-dev armhf 1:10.11.3-1+rpi1 [247 kB]
Get:740 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmariadb3 armhf 1:10.11.3-1+rpi1 [154 kB]
Get:741 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf default-libmysqlclient-dev armhf 1.1.0 [3092 B]
Get:742 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfdt1 armhf 1.6.1-4+b1 [15.7 kB]
Get:743 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libyaml-0-2 armhf 0.2.5-1 [44.6 kB]
Get:744 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf device-tree-compiler armhf 1.6.1-4+b1 [216 kB]
Get:745 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf emacsen-common all 3.0.5 [12.3 kB]
Get:746 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dictionaries-common all 1.29.5 [184 kB]
Get:747 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf distro-info-data all 0.58 [5848 B]
Get:748 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-fast-deep-equal all 3.1.3-3 [5768 B]
Get:749 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-json-schema-traverse all 1.0.0-3 [6308 B]
Get:750 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsonify all 0.0.1-1 [8704 B]
Get:751 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-stable-stringify all 1.0.2+~cs5.2.34-1 [11.3 kB]
Get:752 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-punycode all 2.1.1-6 [9444 B]
Get:753 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-uri-js all 4.4.0+dfsg-8 [47.3 kB]
Get:754 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ajv all 6.12.6-3 [74.0 kB]
Get:755 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-inherits all 2.0.4-6 [3548 B]
Get:756 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-inherits all 2.0.4-6 [4548 B]
Get:757 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-util-is all 1.0.3-1 [4072 B]
Get:758 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-safe-buffer all 5.2.1+~cs2.1.2-3 [15.5 kB]
Get:759 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-string-decoder all 1.3.0-6 [7180 B]
Get:760 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-process-nextick-args all 2.0.1-3 [3816 B]
Get:761 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-util-deprecate all 1.0.2-3 [4436 B]
Get:762 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-isarray all 2.0.5-4 [4040 B]
Get:763 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-readable-stream all 3.6.0+~cs3.0.0-4 [32.0 kB]
Get:764 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-typedarray all 0.0.7-1 [11.4 kB]
Get:765 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-concat-stream all 2.0.0+~2.0.0-2 [6388 B]
Get:766 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ms all 2.1.3+~cs0.7.31-3 [5648 B]
Get:767 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-debug all 4.3.4+~cs4.1.7-1 [18.1 kB]
Get:768 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-esutils all 2.0.3+~2.0.0-1 [12.4 kB]
Get:769 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-doctrine all 3.0.0-4 [19.9 kB]
Get:770 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-eslint-visitor-keys all 3.3.0+~1.0.0-1 [17.1 kB]
Get:771 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-estraverse all 5.3.0+ds+~5.1.1-1 [11.6 kB]
Get:772 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-object-assign all 4.1.1-7 [4684 B]
Get:773 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-esrecurse all 4.3.0-2 [6048 B]
Get:774 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-eslint-scope all 7.1.1+~3.7.4-1 [35.6 kB]
Get:775 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-espree all 9.4.1~dfsg-1 [41.0 kB]
Get:776 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-esquery all 1.4.2~ds-1 [24.9 kB]
Get:777 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-eslint-utils all 3.0.0-3 [15.5 kB]
Get:778 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-flatted all 3.2.7~ds-1 [10.3 kB]
Get:779 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-fs.realpath all 1.0.0-3 [6172 B]
Get:780 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wrappy all 1.0.2-3 [3776 B]
Get:781 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-once all 1.4.0-7 [4492 B]
Get:782 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-inflight all 1.0.6-2 [3952 B]
Get:783 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-balanced-match all 2.0.0-1 [4872 B]
Get:784 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-brace-expansion all 2.0.1-2 [7320 B]
Get:785 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-minimatch all 5.1.1+~5.1.2-1 [18.6 kB]
Get:786 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-glob all 8.0.3+~cs8.4.15-1 [133 kB]
Get:787 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-rimraf all 3.0.2-2 [11.1 kB]
Get:788 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-write all 2.0.0~6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5 [17.8 kB]
Get:789 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-flat-cache all 3.0.4~6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5 [20.1 kB]
Get:790 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-file-entry-cache all 6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5 [15.0 kB]
Get:791 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-functional-red-black-tree all 1.0.1+20181105-7 [14.1 kB]
Get:792 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-extglob all 2.1.1-5 [4612 B]
Get:793 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-glob all 4.0.3-2 [6620 B]
Get:794 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-dirname all 1.0.2-2 [4312 B]
Get:795 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-glob-parent all 6.0.2+~5.1.1-2 [8784 B]
Get:796 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-globals all 13.18.0-1 [11.1 kB]
Get:797 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-imurmurhash all 0.1.4+dfsg+~0.1.1-2 [8412 B]
Get:798 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ignore all 5.2.1-1 [26.4 kB]
Get:799 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-prelude-ls all 1.2.1+dfsg-3 [11.3 kB]
Get:800 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-type-check all 0.4.0+dfsg-3 [9184 B]
Get:801 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-levn all 0.4.1+dfsg-2 [10.2 kB]
Get:802 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-lodash all 4.17.21+dfsg+~cs8.31.198.20210220-9 [462 kB]
Get:803 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-memfs all 3.4.12+~cs1.0.3-1 [46.8 kB]
Get:804 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-mkdirp all 1.0.4+~1.0.2-4 [11.6 kB]
Get:805 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-deep-is all 0.1.4-1 [5136 B]
Get:806 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fast-levenshtein all 2.0.6+ds-3 [6040 B]
Get:807 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-optionator all 0.9.1+dfsg+~cs1.2.3-1 [17.6 kB]
Get:808 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-progress all 2.0.3-2 [8256 B]
Get:809 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-regenerate all 1.4.2-3 [14.3 kB]
Get:810 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-regenerate all 1.4.2-3 [7388 B]
Get:811 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regenerate-unicode-properties all 10.1.0+ds-1 [50.7 kB]
Get:812 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-regexpp all 3.2.0-4 [27.0 kB]
Get:813 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-abbrev all 1.1.1+~1.1.2-1 [5692 B]
Get:814 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-agent-base all 6.0.2+~cs5.4.2-2 [17.3 kB]
Get:815 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-aproba all 2.0.0-3 [5844 B]
Get:816 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-archy all 1.0.0-6 [4556 B]
Get:817 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-base64-js all 1.5.1+dfsg+~1.3.0-2 [7140 B]
Get:818 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-binary-extensions all 2.2.0-2 [4408 B]
Get:819 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-color-name all 1.1.4+~1.1.1-2 [5920 B]
Get:820 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-color-convert all 2.0.1+~cs2.0.0-2 [13.1 kB]
Get:821 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansi-styles all 6.2.1-2 [8640 B]
Get:822 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-escape-string-regexp all 4.0.0-2 [4296 B]
Get:823 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-has-flag all 4.0.0-3 [4304 B]
Get:824 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-supports-color all 8.1.1+~8.1.1-1 [6920 B]
Get:825 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chalk all 5.2.0-1 [18.0 kB]
Get:826 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chownr all 2.0.0-2 [4424 B]
Get:827 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ci-info all 3.6.1+~cs1.1.0-1 [11.7 kB]
Get:828 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-colors all 1.4.0-4 [11.9 kB]
Get:829 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-slice-ansi all 5.0.0+~cs9.0.0-5 [8788 B]
Get:830 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansi-regex all 5.0.1-1 [4912 B]
Get:831 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-strip-ansi all 6.0.1-2 [4120 B]
Get:832 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-clone all 2.1.2-4 [8280 B]
Get:833 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-defaults all 1.0.4+~1.0.3-1 [4400 B]
Get:834 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wcwidth.js all 1.0.2-2 [7088 B]
Get:835 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-string-width all 4.2.3+~cs13.2.3-1 [10.7 kB]
Get:836 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cli-table all 0.3.11+~cs0.13.4-3 [23.6 kB]
Get:837 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-columnify all 1.6.0+~1.5.1-1 [12.4 kB]
Get:838 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-css-selector-tokenizer all 0.8.0+~cs4.8.3-1 [13.0 kB]
Get:839 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-depd all 2.0.0-2 [11.2 kB]
Get:840 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-diff all 5.0.0~dfsg+~5.0.1-4 [69.7 kB]
Get:841 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-iconv-lite all 0.6.3-3 [115 kB]
Get:842 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-encoding all 0.1.13-2 [4400 B]
Get:843 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-events all 3.3.0+~3.0.0-3 [11.3 kB]
Get:844 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-events all 3.3.0+~3.0.0-3 [5888 B]
Get:845 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-mimic-response all 3.1.0-8 [5404 B]
Get:846 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-decompress-response all 6.0.0-2 [4620 B]
Get:847 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-end-of-stream all 1.4.4+~1.4.1-1 [5292 B]
Get:848 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-pump all 3.0.0-5 [5136 B]
Get:849 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-get-stream all 6.0.1-1 [7208 B]
Get:850 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-lowercase-keys all 2.0.0-2 [3768 B]
Get:851 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-buffer all 3.0.1+~3.0.0-1 [4536 B]
Get:852 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-p-cancelable all 2.1.1-1 [7272 B]
Get:853 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-quick-lru all 6.1.1-4 [8076 B]
Get:854 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-got all 11.8.5+~cs58.13.36-3 [121 kB]
Get:855 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-graceful-fs all 4.2.10-1 [14.4 kB]
Get:856 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-six all 1.16.0-4 [17.5 kB]
Get:857 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gyp all 0.1+20220404git9ecf45e-2 [237 kB]
Get:858 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-https-proxy-agent all 5.0.1+~cs8.0.0-3 [16.1 kB]
Get:859 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-data-uri-to-buffer all 4.0.0-3 [5540 B]
Get:860 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fetch all 3.3.0+~cs11.4.11-2 [212 kB]
Get:861 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-nopt all 5.0.0-4 [12.1 kB]
Get:862 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-delegates all 1.0.0-3 [4528 B]
Get:863 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-are-we-there-yet all 3.0.1+~1.1.0-1 [10.0 kB]
Get:864 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-console-control-strings all 1.1.0-3 [5564 B]
Get:865 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-time-stamp all 2.2.0-2 [6016 B]
Get:866 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fancy-log all 1.3.3+~cs1.3.1-2 [7940 B]
Get:867 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-has-unicode all 2.0.1-5 [3992 B]
Get:868 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-signal-exit all 3.0.7+~3.0.1-1 [7600 B]
Get:869 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wide-align all 1.1.3-4 [4244 B]
Get:870 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-gauge all 4.0.4-1 [19.6 kB]
Get:871 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-set-blocking all 2.0.0-2 [4248 B]
Get:872 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-npmlog all 7.0.1+~4.1.4-1 [11.4 kB]
Get:873 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-osenv all 0.1.5+~0.1.1-1 [5884 B]
Get:874 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsonparse all 1.3.1-10 [8020 B]
Get:875 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-yallist all 4.0.0+~4.0.1-1 [8172 B]
Get:876 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-minipass all 3.3.6+~cs9.4.19-1 [43.0 kB]
Get:877 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-tar all 6.1.13+~cs7.0.5-1 [51.1 kB]
Get:878 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-isexe all 2.0.0+~2.0.1-5 [6084 B]
Get:879 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-which all 2.0.2+~cs1.3.2-3 [8368 B]
Get:880 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-semver all 7.3.5+~7.3.9-2 [42.1 kB]
Get:881 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-gyp all 9.3.0-2 [57.9 kB]
Get:882 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf npm all 9.2.0~ds1-1 [669 kB]
Get:883 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-hosted-git-info all 6.1.1-2 [12.6 kB]
Get:884 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ieee754 all 1.2.1-3 [5268 B]
Get:885 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ini all 3.0.1-2 [6928 B]
Get:886 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ip all 2.0.0+~1.1.0-1 [8128 B]
Get:887 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ip-regex all 4.3.0+~4.1.1-1 [5188 B]
Get:888 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-parse-better-errors all 1.0.2+~cs3.3.1-2 [7800 B]
Get:889 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-negotiator all 0.6.3+~0.6.1-1 [10.8 kB]
Get:890 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-function-bind all 1.1.1+repacked+~1.0.3-2 [5252 B]
Get:891 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-resolve all 1.22.1+~cs5.31.10-1 [28.1 kB]
Get:892 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-spdx-license-ids all 3.0.12-1 [6276 B]
Get:893 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-spdx-exceptions all 2.3.0-2 [3992 B]
Get:894 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-spdx-expression-parse all 3.0.1+~3.0.1-1 [7532 B]
Get:895 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-spdx-correct all 3.1.1-2 [5464 B]
Get:896 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-validate-npm-package-license all 3.0.4-2 [4280 B]
Get:897 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-normalize-package-data all 4.0.1+~2.4.1-1 [13.6 kB]
Get:898 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-slash all 4.0.0-3 [4292 B]
Get:899 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-read-package-json all 5.0.2+~2.0.0-1 [12.0 kB]
Get:900 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-npm-bundled all 2.0.1-2 [6408 B]
Get:901 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-validate-npm-package-name all 5.0.0+~4.0.0-1 [7444 B]
Get:902 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-builtins all 5.0.1-1 [4072 B]
Get:903 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-npm-package-arg all 10.0.0+~3.0.0-2 [11.4 kB]
Get:904 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-indent-string all 4.0.0-2 [4144 B]
Get:905 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-p-map all 4.0.0+~3.1.0+~3.0.1-1 [7912 B]
Get:906 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-camelcase all 7.0.0-3 [6032 B]
Get:907 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-isobject all 4.0.0-2 [5332 B]
Get:908 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-picocolors all 1.0.0-4 [6652 B]
Get:909 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-postcss all 8.4.20+~cs8.0.23-1 [180 kB]
Get:910 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-icss-utils all 5.1.0+~5.1.0-1 [7564 B]
Get:911 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-postcss-modules-extract-imports all 3.0.0-2 [6584 B]
Get:912 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-postcss-modules-values all 4.0.0+~4.0.0-1 [7180 B]
Get:913 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-postcss-value-parser all 4.2.0-1 [10.4 kB]
Get:914 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-caniuse-lite all 1.0.30001436+dfsg+~1.0.1-1 [208 kB]
Get:915 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-electron-to-chromium all 1.4.284-1 [20.6 kB]
Get:916 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-browserslist all 4.21.4+~cs6.1.17-2 [63.5 kB]
Get:917 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-tslib all 2.4.1-1 [19.5 kB]
Get:918 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chrome-trace-event all 1.0.3-2 [6984 B]
Get:919 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-commander all 9.4.1-1 [65.3 kB]
Get:920 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-prr all 1.0.1-3 [4352 B]
Get:921 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-errno all 1.0.0-3 [7736 B]
Get:922 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-memory-fs all 0.5.0+~0.3.3-2 [7676 B]
Get:923 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-tapable all 2.2.1-2 [13.6 kB]
Get:924 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-enhanced-resolve all 5.10.0-1 [33.6 kB]
Get:925 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-es-module-lexer all 1.1.0+dfsg-2 [19.7 kB]
Get:926 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ansi-escapes all 5.0.0+really.4.3.1-1 [8896 B]
Get:927 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ampproject-remapping all 2.2.0+~cs5.15.37-1 [59.4 kB]
Get:928 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-add-module-exports all 1.0.4+dfsg1~cs5.8.0-4 [8672 B]
Get:929 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regenerator-runtime all 0.15.1+~0.10.8-1 [10.6 kB]
Get:930 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel7-runtime all 7.20.15+ds1+~cs214.269.168-3 [116 kB]
Get:931 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-lodash-packages all 4.17.21+dfsg+~cs8.31.198.20210220-9 [179 kB]
Get:932 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-helper-define-polyfill-provider all 0.3.3~0~20220913+ds1-1 [27.4 kB]
Get:933 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-polyfill-corejs2 all 0.3.3~0~20220913+ds1-1 [17.1 kB]
Get:934 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-js-compat all 3.26.1-3 [66.1 kB]
Get:935 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-polyfill-corejs3 all 0.6.0~0~20220913+ds1-1 [29.5 kB]
Get:936 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-polyfill-regenerator all 0.4.1~0~20220913+ds1-1 [5036 B]
Get:937 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-for-in all 1.0.2-4 [4840 B]
Get:938 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-for-own all 1.0.0-3 [4800 B]
Get:939 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-plain-object all 5.0.0-7 [6108 B]
Get:940 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-extendable all 1.0.1-3 [5228 B]
Get:941 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-buffer all 2.0.5-2 [4112 B]
Get:942 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-kind-of all 6.0.3+dfsg-2 [10.2 kB]
Get:943 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-clone-deep all 4.0.1+~cs7.0.2-1 [6720 B]
Get:944 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-convert-source-map all 1.9.0+~1.5.2-1 [8176 B]
Get:945 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-js all 3.26.1-3 [268 kB]
Get:946 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-js-pure all 3.26.1-3 [250 kB]
Get:947 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-commondir all 1.0.1+~1.0.0-1 [4388 B]
Get:948 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-number all 7.0.0-4 [6020 B]
Get:949 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-repeat-string all 1.6.1+repack-1 [5600 B]
Get:950 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-to-regex-range all 5.0.1-4 [10.5 kB]
Get:951 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fill-range all 7.0.1+~7.0.0-1 [8952 B]
Get:952 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-braces all 3.0.2+~3.0.1-1 [20.8 kB]
Get:953 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-normalize-path all 3.0.0+~3.0.0-1 [6608 B]
Get:954 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-anymatch all 3.1.3+~cs4.6.1-2 [33.4 kB]
Get:955 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-micromatch all 4.0.5+~4.0.2-1 [25.8 kB]
Get:956 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-pify all 5.0.0+~cs5.0.1-1 [7072 B]
Get:957 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-type all 4.0.0-3 [3944 B]
Get:958 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-n3 all 1.16.3+~1.2.3+~1.10.4-1 [37.0 kB]
Get:959 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-globby all 13.1.3+~cs16.25.40-1 [40.3 kB]
Get:960 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-path-cwd all 2.2.0-2 [3672 B]
Get:961 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-path-is-inside all 1.0.2+~1.0.0-1 [5072 B]
Get:962 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-path-inside all 3.0.3-2 [3980 B]
Get:963 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-del all 7.0.0-5 [6804 B]
Get:964 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-make-dir all 3.1.0-3 [6040 B]
Get:965 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-p-limit all 4.0.0+~cs4.0.0-5 [7576 B]
Get:966 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-p-locate all 6.0.0-12 [5752 B]
Get:967 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-locate-path all 7.1.1-2 [5584 B]
Get:968 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-exists all 5.0.0-8 [4732 B]
Get:969 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-find-up all 6.3.0-7 [9388 B]
Get:970 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-pkg-dir all 5.0.0-2 [4260 B]
Get:971 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-find-cache-dir all 3.3.2+~3.2.1-1 [6152 B]
Get:972 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fs-readdir-recursive all 1.1.0+~1.1.0-1 [4540 B]
Get:973 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-js-tokens all 8.0.0-2 [14.9 kB]
Get:974 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jsesc all 3.0.2+~3.0.1-1 [17.6 kB]
Get:975 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json5 all 2.2.3+dfsg-1 [25.6 kB]
Get:976 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regenerator-transform all 0.15.1+~0.10.8-1 [24.6 kB]
Get:977 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regjsgen all 0.7.1+ds-1 [6968 B]
Get:978 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regjsparser all 0.9.1+ds-2 [22.1 kB]
Get:979 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-unicode-canonical-property-names-ecmascript all 2.0.0-2 [4540 B]
Get:980 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-unicode-property-aliases-ecmascript all 2.1.0+ds-1 [5256 B]
Get:981 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-unicode-match-property-ecmascript all 2.0.0-2 [4440 B]
Get:982 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-unicode-match-property-value-ecmascript all 2.1.0+ds-1 [7272 B]
Get:983 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-regexpu-core all 5.2.2-3 [13.9 kB]
Get:984 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-source-map all 0.7.0++dfsg2+really.0.6.1-15 [29.6 kB]
Get:985 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-source-map all 0.7.0++dfsg2+really.0.6.1-15 [41.7 kB]
Get:986 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-source-map-support all 0.5.21+ds+~0.5.4-1 [14.5 kB]
Get:987 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-to-fast-properties all 3.0.1-3 [4332 B]
Get:988 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-v8flags all 3.2.0+~3.1.1-1 [7612 B]
Get:989 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel7 all 7.20.15+ds1+~cs214.269.168-3 [712 kB]
Get:990 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-lodash all 3.3.4+~cs2.0.1-6 [11.0 kB]
Get:991 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-resolve-cwd all 3.0.0-2 [4212 B]
Get:992 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jest-debbundle all 29.3.1~ds1+~cs70.48.25-2 [129 kB]
Get:993 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-interpret all 2.2.0-3 [7660 B]
Get:994 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-merge-stream all 2.0.0+~1.1.2-2 [5124 B]
Get:995 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jest-worker all 29.3.1~ds1+~cs70.48.25-2 [112 kB]
Get:996 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-loader-runner all 4.3.0-1 [7644 B]
Get:997 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-mime all 3.0.0+dfsg+~cs3.97.1-1 [40.4 kB]
Get:998 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-mime-types all 2.1.35-1 [9456 B]
Get:999 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-neo-async all 2.6.2+~cs3.0.0-2 [35.2 kB]
Get:1000 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-rechoir all 0.8.0+~0.6.1-2 [6628 B]
Get:1001 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ajv-keywords all 3.5.2-2 [20.3 kB]
Get:1002 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-schema-utils all 3.1.1~ds-2 [20.0 kB]
Get:1003 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-randombytes all 2.1.0+~2.0.0-2 [4852 B]
Get:1004 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-serialize-javascript all 6.0.0-2 [12.7 kB]
Get:1005 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-async-each all 1.0.3-3 [4292 B]
Get:1006 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-binary-path all 2.1.0-5 [3684 B]
Get:1007 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-is-absolute all 2.0.0-2 [4068 B]
Get:1008 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-set-immediate-shim all 2.0.0-2 [3740 B]
Get:1009 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-readdirp all 3.6.0-1 [11.5 kB]
Get:1010 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chokidar all 3.5.3-2 [32.3 kB]
Get:1011 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-watchpack all 2.4.0+~cs2.8.1-1 [20.2 kB]
Get:1012 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-define-properties all 1.1.4+~1.1.3-1 [6828 B]
Get:1013 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-defined all 1.0.1+~1.0.0-1 [6776 B]
Get:1014 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-arrify all 2.0.1-3 [3700 B]
Get:1015 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-plain-obj all 3.0.0-2 [3972 B]
Get:1016 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-minimist all 1.2.7+~cs5.3.2-2 [14.7 kB]
Get:1017 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wordwrap all 1.0.0-4 [4628 B]
Get:1018 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-optimist all 0.6.1+~0.0.30-2 [13.5 kB]
Get:1019 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf handlebars all 3:4.7.7+~4.1.0-1 [199 kB]
Get:1020 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-prettify all 2015.12.04+dfsg-1.1 [41.7 kB]
Get:1021 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-async all 0.8.0-6 [24.2 kB]
Get:1022 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-async all 0.8.0-6 [3748 B]
Get:1023 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-decamelize all 4.0.0-2 [4080 B]
Get:1024 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-es6-error all 4.1.1-5 [6148 B]
Get:1025 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-esprima all 4.0.1+ds+~4.0.3-2 [69.3 kB]
Get:1026 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-escodegen all 2.0.0+dfsg+~0.0.7-2 [23.0 kB]
Get:1027 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-foreground-child all 2.0.0-5 [6384 B]
Get:1028 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-stream all 3.0.0-4 [5076 B]
Get:1029 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-is-windows all 1.0.2+~cs1.0.0-1 [5936 B]
Get:1030 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-sprintf-js all 1.1.2+ds1+~1.1.2-1 [12.8 kB]
Get:1031 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-sprintf-js all 1.1.2+ds1+~1.1.2-1 [4024 B]
Get:1032 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-argparse all 2.0.1-2 [34.6 kB]
Get:1033 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-js-yaml all 4.1.0+dfsg+~4.0.5-7 [66.6 kB]
Get:1034 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-npm-run-path all 5.1.0+~4.0.0-8 [6276 B]
Get:1035 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-shebang-regex all 3.0.0-2 [3528 B]
Get:1036 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-shebang-command all 2.0.0-1 [3500 B]
Get:1037 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-strip-bom all 4.0.0-2 [4144 B]
Get:1038 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-util all 0.12.5+~1.0.10-1 [16.0 kB]
Get:1039 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-util all 0.12.5+~1.0.10-1 [5700 B]
Get:1040 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-assert all 2.0.0+~cs3.9.8-2 [26.8 kB]
Get:1041 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-arrayish all 0.3.2-3 [3960 B]
Get:1042 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-error-ex all 1.3.2-4 [5656 B]
Get:1043 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-parse-json all 5.2.0+~cs5.1.7-1 [7356 B]
Get:1044 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-read-pkg all 5.2.0-2 [24.0 kB]
Get:1045 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-uuid all 8.3.2+~8.3.3-3 [44.0 kB]
Get:1046 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-is-typedarray all 1.0.0-4 [3816 B]
Get:1047 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-typedarray all 1.0.0-4 [3292 B]
Get:1048 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-typedarray-to-buffer all 4.0.0-2 [3380 B]
Get:1049 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-typedarray-to-buffer all 4.0.0-2 [4668 B]
Get:1050 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-write-file-atomic all 4.0.2+~4.0.0-1 [9284 B]
Get:1051 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-wrap-ansi all 8.0.1+~8.0.1-3 [11.8 kB]
Get:1052 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cliui all 7.0.4+repack+~cs3.1.0-4 [11.5 kB]
Get:1053 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-get-caller-file all 2.0.5+~cs1.1.1-4 [5728 B]
Get:1054 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-require-directory all 2.1.1+~2.1.2-1 [7092 B]
Get:1055 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-y18n all 5.0.8+~5.0.0-3 [10.2 kB]
Get:1056 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-yargs-parser all 21.1.1+~21.0.0-4 [28.4 kB]
Get:1057 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-yargs all 16.2.0+~16.0.4-7 [128 kB]
Get:1058 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-istanbul all 0.4.5+repack10+~cs97.25.57-3 [207 kB]
Get:1059 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-object-inspect all 1.12.2+~cs1.8.1-1 [20.8 kB]
Get:1060 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-resumer all 0.0.0-6 [4144 B]
Get:1061 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-tape all 5.6.1+~cs8.20.19-1 [70.9 kB]
Get:1062 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-deep-equal all 2.1.0+~cs31.12.80-1 [34.5 kB]
Get:1063 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-debbundle-es-to-primitive all 1.2.1+~cs9.7.25-2 [39.9 kB]
Get:1064 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-es-abstract all 1.20.4+~cs26.27.47-1 [137 kB]
Get:1065 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-webassemblyjs all 1.11.4+dfsg+~cs10.11.17-2 [139 kB]
Get:1066 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-source-list-map all 2.0.1+dfsg-2 [9348 B]
Get:1067 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-webpack-sources all 3.2.3+~3.2.0-2 [23.2 kB]
Get:1068 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-terser all 5.16.5-2 [204 kB]
Get:1069 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf terser all 5.16.5-2 [16.5 kB]
Get:1070 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf webpack all 5.75.0+dfsg+~cs17.16.14-1+deb12u1 [756 kB]
Get:1071 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-css-loader all 6.7.2+~cs14.0.11-1 [73.0 kB]
Get:1072 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-err-code all 2.0.3+dfsg-3 [4884 B]
Get:1073 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-retry all 0.13.1+~0.12.1-1 [11.2 kB]
Get:1074 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-promise-retry all 2.0.1-4 [5016 B]
Get:1075 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-mute-stream all 0.0.8+~0.0.1-3 [6232 B]
Get:1076 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-read all 1.0.7-5 [5388 B]
Get:1077 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-promzard all 0.3.0-2 [6788 B]
Get:1078 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ssri all 9.0.1-2 [18.0 kB]
Get:1079 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-text-table all 0.2.0-4 [4736 B]
Get:1080 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-iferr all 1.0.2+~1.0.2-1 [4588 B]
Get:1081 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-fs-write-stream-atomic all 1.0.10-6 [5316 B]
Get:1082 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-run-queue all 2.0.0-3 [5156 B]
Get:1083 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-copy-concurrently all 1.0.5-9 [7100 B]
Get:1084 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-move-concurrently all 1.0.1-5 [5152 B]
Get:1085 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-promise-inflight all 1.0.1+~1.0.0-1 [4864 B]
Get:1086 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-unique-filename all 1.1.1+ds-2 [4032 B]
Get:1087 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cacache all 17.0.3+~cs10.3.7-1 [45.1 kB]
Get:1088 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-lru-cache all 7.14.1-1 [26.3 kB]
Get:1089 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-strip-json-comments all 4.0.0-4 [5668 B]
Get:1090 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-schema all 0.4.0+~7.0.11-1 [13.1 kB]
Get:1091 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-v8-compile-cache all 2.3.0-3 [8344 B]
Get:1092 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf eslint all 6.4.0~dfsg+~6.1.9-7 [606 kB]
Get:1093 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ethtool armhf 1:6.1-1 [160 kB]
Get:1094 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf expat armhf 2.5.0-1 [38.3 kB]
Get:1095 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf fake-hwclock all 0.12+nmu1 [6336 B]
Get:1096 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfakeroot armhf 1.31-1.2 [25.7 kB]
Get:1097 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fakeroot armhf 1.31-1.2 [66.0 kB]
Get:1098 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libib-util armhf 3.0.11.33637.ds4-2+b1 [3360 B]
Get:1099 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf firebird-dev armhf 3.0.11.33637.ds4-2+b1 [120 kB]
Get:1100 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfbclient2 armhf 3.0.11.33637.ds4-2+b1 [452 kB]
Get:1101 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf firebird3.0-common all 3.0.11.33637.ds4-2 [15.3 kB]
Get:1102 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf firebird3.0-common-doc all 3.0.11.33637.ds4-2 [27.0 kB]
Get:1103 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf flac armhf 1.4.2+ds-2 [154 kB]
Get:1104 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf freetds-common all 1.3.17+ds-2 [28.9 kB]
Get:1105 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf freetds-dev armhf 1.3.17+ds-2 [237 kB]
Get:1106 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libct4 armhf 1.3.17+ds-2 [142 kB]
Get:1107 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsybdb5 armhf 1.3.17+ds-2 [165 kB]
Get:1108 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf galculator armhf 2.1.4-1.2 [152 kB]
Get:1109 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libproxy1v5 armhf 0.4.18-1.2 [48.8 kB]
Get:1110 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf glib-networking-common all 2.74.0-4 [80.3 kB]
Get:1111 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf glib-networking armhf 2.74.0-4 [60.8 kB]
Get:1112 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf glib-networking-services armhf 2.74.0-4 [11.4 kB]
Get:1113 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gsettings-desktop-schemas all 43.0-1 [643 kB]
Get:1114 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-1.15-src armhf 1.15.15-5+rpi1 [13.9 MB]
Get:1115 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-1.15-go armhf 1.15.15-5+rpi1 [43.2 MB]
Get:1116 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf golang-1.19-src all 1.19.8-2 [18.3 MB]
Get:1117 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf golang-1.19-go armhf 1.19.8-2 [56.9 MB]
Get:1118 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-src all 2:1.19~1 [5756 B]
Get:1119 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-go armhf 2:1.19~1 [45.0 kB]
Get:1120 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gparted armhf 1.3.1-1 [714 kB]
Get:1121 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gparted-common all 1.3.1-1 [1711 kB]
Get:1122 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsigc++-2.0-0v5 armhf 2.12.0-1 [24.2 kB]
Get:1123 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglibmm-2.4-1v5 armhf 2.66.5-2 [494 kB]
Get:1124 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatkmm-1.6-1v5 armhf 2.28.3-1 [67.3 kB]
Get:1125 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcairomm-1.0-1v5 armhf 1.14.4-2 [49.1 kB]
Get:1126 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpangomm-1.4-1v5 armhf 2.46.3-1 [57.3 kB]
Get:1127 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtkmm-3.0-1v5 armhf 3.24.7-1 [808 kB]
Get:1128 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf parted armhf 3.5-3 [34.5 kB]
Get:1129 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libparted-fs-resize0 armhf 3.5-3 [35.3 kB]
Get:1130 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libparted2 armhf 3.5-3 [283 kB]
Get:1131 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf xml-core all 0.18+nmu1 [23.8 kB]
Get:1132 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libduktape207 armhf 2.7.0-2 [115 kB]
Err:1132 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libduktape207 armhf 2.7.0-2
  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
Get:1133 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf policykit-1 armhf 122-3 [11.8 kB]
Get:1134 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpolkit-agent-1-0 armhf 122-3 [22.1 kB]
Get:1135 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpolkit-gobject-1-0 armhf 122-3 [38.1 kB]
Get:1136 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf polkitd armhf 122-3 [108 kB]
Get:1137 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkexec armhf 122-3 [22.2 kB]
Get:1138 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcdparanoia0 armhf 3.10.2+debian-14 [41.7 kB]
Get:1139 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvisual-0.4-0 armhf 0.4.0-19 [117 kB]
Get:1140 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gstreamer1.0-plugins-base armhf 1.22.0-3+deb12u1 [670 kB]
Get:1141 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcaca0 armhf 0.99.beta20-3 [194 kB]
Get:1142 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdv4 armhf 1.0.0-15 [65.6 kB]
Get:1143 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libiec61883-0 armhf 1.2.0-6 [28.0 kB]
Get:1144 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libshout3 armhf 2.4.6-1+b1 [48.5 kB]
Get:1145 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtag1v5 armhf 1.13-2 [18.7 kB]
Get:1146 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtag1v5-vanilla armhf 1.13-2 [243 kB]
Get:1147 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libv4l-0 armhf 1.22.1-5 [105 kB]
Get:1148 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libv4lconvert0 armhf 1.22.1-5 [133 kB]
Get:1149 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwavpack1 armhf 5.6.0-1 [72.5 kB]
Get:1150 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup-gnome2.4-1 armhf 2.74.3-1 [10.6 kB]
Get:1151 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup2.4-common all 2.74.3-1 [56.0 kB]
Get:1152 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup2.4-1 armhf 2.74.3-1 [230 kB]
Get:1153 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup-3.0-common all 3.2.2-2 [60.8 kB]
Get:1154 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup-3.0-0 armhf 3.2.2-2 [233 kB]
Get:1155 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gstreamer1.0-plugins-good armhf 1.22.0-5+deb12u1 [1988 kB]
Get:1156 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf hdparm armhf 9.65+ds-1 [97.7 kB]
Get:1157 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnl-route-3-200 armhf 3.7.0-0.2 [152 kB]
Get:1158 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnl-genl-3-200 armhf 3.7.0-0.2 [19.7 kB]
Get:1159 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnl-3-200 armhf 3.7.0-0.2 [55.0 kB]
Get:1160 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf htop armhf 3.2.2-2 [129 kB]
Get:1161 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf hunspell-en-us all 1:2020.12.07-2 [269 kB]
Get:1162 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf i2c-tools armhf 4.3-2+b2 [77.6 kB]
Get:1163 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf intltool-debian all 0.35.0+20060710.6 [22.9 kB]
Get:1164 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf iotop armhf 0.6-42-ga14256a-0.1+b1 [24.1 kB]
Get:1165 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iw armhf 5.19-1 [85.5 kB]
Get:1166 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpspell-dev armhf 0.60.8-4 [31.2 kB]
Get:1167 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaspell-dev armhf 0.60.8-4 [34.7 kB]
Get:1168 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaspell15 armhf 0.60.8-4 [295 kB]
Get:1169 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libass9 armhf 1:0.17.1-1 [85.6 kB]
Get:1170 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatk1.0-data all 2.38.0-1 [150 kB]
Get:1171 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libayatana-ido3-0.4-0 armhf 0.9.3-1 [46.8 kB]
Get:1172 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libayatana-indicator3-7 armhf 0.9.3-1 [28.3 kB]
Get:1173 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbs2b0 armhf 3.1.0+dfsg-7 [10.7 kB]
Get:1174 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-client2007e-dev armhf 8:2007f~dfsg-7+b1 [476 kB]
Get:1175 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mlock armhf 8:2007f~dfsg-7+b1 [35.9 kB]
Get:1176 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-client2007e armhf 8:2007f~dfsg-7+b1 [551 kB]
Get:1177 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcddb2 armhf 1.3.2-7 [44.0 kB]
Get:1178 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcob5-dev armhf 4.0~early~20200606-6 [177 kB]
Get:1179 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcob5 armhf 4.0~early~20200606-6 [147 kB]
Get:1181 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdbus-glib-1-2 armhf 0.112-3 [48.2 kB]
Get:1182 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libusb-1.0-0 armhf 2:1.0.26-1 [55.8 kB]
Get:1183 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdc1394-25 armhf 2.2.6-4 [102 kB]
Get:1184 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdecor-0-0 armhf 0.1.1-2 [12.0 kB]
Get:1185 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libisc-export1105 armhf 1:9.11.19+dfsg-2.1+b1 [376 kB]
Get:1186 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdns-export1110 armhf 1:9.11.19+dfsg-2.1+b1 [893 kB]
Get:1187 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdouble-conversion3 armhf 3.2.1-1 [38.8 kB]
Get:1188 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdvdread8 armhf 6.1.3-1 [87.4 kB]
Get:1189 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdvdnav4 armhf 6.1.1-1 [43.3 kB]
Get:1190 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libebml5 armhf 1.4.4-1 [41.0 kB]
Get:1191 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libenchant-2-dev armhf 2.3.3-2 [18.7 kB]
Get:1192 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libhunspell-1.7-0 armhf 1.7.1-1+b2 [167 kB]
Get:1193 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libenchant-2-2 armhf 2.3.3-2 [39.7 kB]
Get:1194 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-dev armhf 2.1.12-stable-8 [274 kB]
Get:1195 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-pthreads-2.1-7 armhf 2.1.12-stable-8 [53.2 kB]
Get:1196 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-openssl-2.1-7 armhf 2.1.12-stable-8 [58.3 kB]
Get:1197 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-extra-2.1-7 armhf 2.1.12-stable-8 [97.3 kB]
Get:1198 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-core-2.1-7 armhf 2.1.12-stable-8 [119 kB]
Get:1199 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-2.1-7 armhf 2.1.12-stable-8 [160 kB]
Get:1200 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libexif12 armhf 0.6.24-1+b2 [388 kB]
Get:1201 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexporter-tiny-perl all 1.006000-1 [38.6 kB]
Get:1202 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfaad2 armhf 2.10.1-1 [142 kB]
Get:1203 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfann-dev armhf 2.2.0+ds-8 [85.6 kB]
Get:1204 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfann2 armhf 2.2.0+ds-8 [57.1 kB]
Get:1205 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfftw3-double3 armhf 3.3.10-1 [325 kB]
Get:1206 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfile-readbackwards-perl all 1.06-2 [11.6 kB]
Get:1207 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libflite1 armhf 2.2-5 [12.4 MB]
Get:1208 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcr-ui-3-1 armhf 3.41.1-1 [120 kB]
Get:1209 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcr-base-3-1 armhf 3.41.1-1 [175 kB]
Get:1210 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgck-1-0 armhf 3.41.1-1 [76.9 kB]
Get:1211 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgif7 armhf 5.2.1-2.5 [44.7 kB]
Get:1212 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgirepository-1.0-1 armhf 1.74.0-3+b1 [87.5 kB]
Get:1213 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopengl0 armhf 1.6.0-1 [31.6 kB]
Get:1214 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglu1-mesa armhf 9.0.2-1.1 [133 kB]
Get:1215 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgspell-1-common all 1.12.0-1 [32.9 kB]
Get:1216 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgspell-1-2 armhf 1.12.0-1+b1 [44.7 kB]
Get:1217 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgssdp-1.6-0 armhf 1.6.2-2 [34.1 kB]
Get:1218 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-gl1.0-0 armhf 1.22.0-3+deb12u1 [219 kB]
Get:1219 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgupnp-1.6-0 armhf 1.6.3-1 [74.9 kB]
Get:1220 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgupnp-igd-1.0-4 armhf 1.2.0-3 [12.3 kB]
Get:1221 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnice10 armhf 0.1.21-1 [130 kB]
Get:1222 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvulkan1 armhf 1.3.239.0-1 [99.6 kB]
Get:1223 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-plugins-bad1.0-0 armhf 1.22.0-4+deb12u1 [698 kB]
Get:1224 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtksourceview-4-common all 4.8.4-4 [532 kB]
Get:1225 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtksourceview-4-0 armhf 4.8.4-4 [176 kB]
Err:1225 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtksourceview-4-0 armhf 4.8.4-4
  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
Get:1226 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libharfbuzz-icu0 armhf 6.0.0+dfsg-3 [1556 kB]
Get:1227 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libilmbase25 armhf 2.5.7-2 [196 kB]
Get:1228 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspectre1 armhf 0.2.12-1 [46.0 kB]
Get:1229 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libimlib2 armhf 1.10.0-4 [176 kB]
Get:1230 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libplist3 armhf 2.2.0-6+b2 [31.5 kB]
Get:1231 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libimobiledevice6 armhf 1.3.0-6+b3 [62.4 kB]
Get:1232 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libiw30 armhf 30~pre9-14 [14.2 kB]
Get:1233 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xdg-dbus-proxy armhf 0.1.4-3 [20.3 kB]
Get:1234 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmanette-0.2-0 armhf 0.2.6-3 [26.4 kB]
Get:1235 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsecret-common all 0.20.5-3+rpi1 [28.5 kB]
Get:1236 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsecret-1-0 armhf 0.20.5-3+rpi1 [96.8 kB]
Get:1237 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwoff1 armhf 1.0.2-2 [35.9 kB]
Get:1238 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwpe-1.0-1 armhf 1.14.0-1 [17.1 kB]
Get:1239 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwpebackend-fdo-1.0-1 armhf 1.14.2-1 [27.0 kB]
Get:1240 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxslt1-dev armhf 1.1.35-1 [358 kB]
Get:1241 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxslt1.1 armhf 1.1.35-1 [221 kB]
Get:1242 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwebkit2gtk-4.0-37 armhf 2.40.3-2~deb12u2+rpi1 [15.6 MB]
Get:1243 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjavascriptcoregtk-4.0-18 armhf 2.40.3-2~deb12u2+rpi1 [2630 kB]
Get:1244 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjavascriptcoregtk-4.1-0 armhf 2.40.3-2~deb12u2+rpi1 [2630 kB]
Get:1245 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-psl all 1.8.0+ds-9 [66.2 kB]
Get:1246 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblightdm-gobject-1-0 armhf 1.26.0-8 [57.0 kB]
Get:1247 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libserd-0-0 armhf 0.30.16-1 [40.7 kB]
Get:1248 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsord-0-0 armhf 0.16.14+git221008-1 [17.8 kB]
Get:1249 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsratom-0-0 armhf 0.6.14-1 [15.7 kB]
Get:1250 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblilv-0-0 armhf 0.24.14-1 [42.1 kB]
Get:1251 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblirc-client0 armhf 0.10.1-7.2 [44.9 kB]
Get:1252 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblua5.2-0 armhf 5.2.4-3 [85.7 kB]
Get:1253 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmad0 armhf 0.15.1b-10.1 [66.2 kB]
Get:1254 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmatroska7 armhf 1.7.1-1 [89.7 kB]
Get:1255 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmcrypt-dev armhf 2.5.8-7 [86.2 kB]
Get:1256 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmcrypt4 armhf 2.5.8-7 [63.0 kB]
Get:1257 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmd4c0 armhf 0.4.8-1 [39.4 kB]
Get:1258 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmhash-dev armhf 0.9.9.9-9+b2 [114 kB]
Get:1259 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmhash2 armhf 0.9.9.9-9+b2 [101 kB]
Get:1260 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmousepad0 armhf 0.5.10-2 [303 kB]
Get:1261 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmpdec3 armhf 2.5.1-2+rpi1 [73.5 kB]
Get:1262 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmtp-common all 1.1.20-1 [58.6 kB]
Get:1263 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmtp9 armhf 1.1.20-1 [195 kB]
Get:1264 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmysofa1 armhf 1.3.1~dfsg0-1 [1154 kB]
Get:1265 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpci-dev armhf 1:3.9.0-4 [63.9 kB]
Get:1266 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf pci.ids all 0.0~2023.04.11-1 [243 kB]
Get:1267 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpci3 armhf 1:3.9.0-4 [61.3 kB]
Get:1268 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsnmp-base all 5.9.3+dfsg-2 [1753 kB]
Get:1269 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsnmp-dev armhf 5.9.3+dfsg-2 [201 kB]
Get:1270 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnetsnmptrapd40 armhf 5.9.3+dfsg-2 [20.0 kB]
Get:1271 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsnmp40 armhf 5.9.3+dfsg-2 [2432 kB]
Get:1272 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnewt0.52 armhf 0.52.23-1+b1 [51.0 kB]
Get:1273 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnss-myhostname armhf 252.12-1~deb12u1+rpi1 [76.5 kB]
Get:1274 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libobt2v5 armhf 3.6.1-10 [65.1 kB]
Get:1275 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libobrender32v5 armhf 3.6.1-10 [71.9 kB]
Get:1276 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf unixodbc-dev armhf 2.3.11-2+deb12u1 [200 kB]
Get:1277 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbc1 armhf 2.3.11-2+deb12u1 [5008 B]
Get:1278 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbc2 armhf 2.3.11-2+deb12u1 [123 kB]
Get:1279 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbccr2 armhf 2.3.11-2+deb12u1 [14.7 kB]
Get:1280 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf odbcinst armhf 2.3.11-2+deb12u1 [11.5 kB]
Get:1281 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf odbcinst1debian2 armhf 2.3.11-2+deb12u1 [5112 B]
Get:1282 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf unixodbc-common all 2.3.11-2+deb12u1 [8172 B]
Get:1283 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbcinst2 armhf 2.3.11-2+deb12u1 [27.6 kB]
Get:1284 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libonig-dev armhf 6.9.8-1 [96.7 kB]
Get:1285 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libonig5 armhf 6.9.8-1 [166 kB]
Get:1286 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenmpt-modplug1 armhf 0.8.9.0-openmpt1-2 [20.2 kB]
Get:1287 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libout123-0 armhf 1.31.2-1 [24.2 kB]
Get:1288 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcap0.8 armhf 1.10.3-1 [140 kB]
Get:1289 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcsclite1 armhf 1.9.9-2 [47.0 kB]
Get:1290 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpeas-common all 1.34.0-1 [54.3 kB]
Get:1291 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpeas-1.0-0 armhf 1.34.0-1+b1 [52.2 kB]
Get:1292 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsphinxbase3 armhf 0.8+5prealpha+1-16 [97.7 kB]
Get:1293 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpocketsphinx3 armhf 0.8+5prealpha+1-15 [106 kB]
Get:1294 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf portaudio19-dev armhf 19.6.0-1.2 [98.3 kB]
Get:1295 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libportaudiocpp0 armhf 19.6.0-1.2 [17.0 kB]
Get:1296 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libportaudio2 armhf 19.6.0-1.2 [57.3 kB]
Get:1297 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpq-dev armhf 15.3-0+deb12u1 [129 kB]
Get:1298 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpq5 armhf 15.3-0+deb12u1 [166 kB]
Get:1299 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqdbm-dev armhf 1.8.78-12 [135 kB]
Get:1300 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqdbm14 armhf 1.8.78-12 [74.3 kB]
Get:1301 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqt5x11extras5 armhf 5.15.8-2 [9576 B]
Get:1302 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5dbus5 armhf 5.15.8+dfsg-11+rpi1 [182 kB]
Get:1303 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5network5 armhf 5.15.8+dfsg-11+rpi1 [571 kB]
Get:1304 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-image0 armhf 0.4.0-2 [21.9 kB]
Get:1305 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-shape0 armhf 1.15-1 [106 kB]
Get:1306 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xinerama0 armhf 1.15-1 [105 kB]
Get:1307 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xinput0 armhf 1.15-1 [127 kB]
Get:1308 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5gui5 armhf 5.15.8+dfsg-11+rpi1 [2533 kB]
Get:1309 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5widgets5 armhf 5.15.8+dfsg-11+rpi1 [2037 kB]
Get:1310 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqt5svg5 armhf 5.15.8-3 [113 kB]
Get:1311 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5core5a armhf 5.15.8+dfsg-11+rpi1 [1500 kB]
Get:1312 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librubberband2 armhf 3.1.2+dfsg0-1 [110 kB]
Get:1313 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-rubygems all 3.3.15-2 [293 kB]
Get:1314 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby3.1 armhf 3.1.2-7 [663 kB]
Get:1315 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby armhf 1:3.1 [5868 B]
Get:1316 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rake all 13.0.6-3 [83.9 kB]
Get:1317 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-net-telnet all 0.2.0-1 [13.1 kB]
Get:1318 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-webrick all 1.8.1-1 [51.4 kB]
Get:1319 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-xmlrpc all 0.3.2-2 [24.4 kB]
Get:1320 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf ruby-sdbm armhf 1.0.0-5+rpi1 [15.9 kB]
Get:1321 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libruby3.1 armhf 3.1.2-7 [5011 kB]
Get:1322 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libruby armhf 1:3.1 [4968 B]
Get:1323 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsdl1.2debian armhf 1.2.15+dfsg2-8 [164 kB]
Get:1324 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsdl-image1.2 armhf 1.2.12-13+b2 [28.9 kB]
Get:1325 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsdl2-2.0-0 armhf 2.26.5+dfsg-1 [524 kB]
Get:1326 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsigsegv2 armhf 2.14-1 [36.6 kB]
Get:1327 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsndio7.0 armhf 1.9.0-0.3 [24.7 kB]
Get:1328 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libss2 armhf 1.47.0-2 [22.7 kB]
Get:1329 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsyn123-0 armhf 1.31.2-1 [71.8 kB]
Get:1330 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtool all 2.4.7-5 [517 kB]
Get:1331 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf upower armhf 0.99.20-2 [75.6 kB]
Get:1332 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libupower-glib3 armhf 0.99.20-2 [29.8 kB]
Get:1333 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libvte-2.91-0 armhf 0.70.6-1~deb12u1 [765 kB]
Get:1334 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libvte-2.91-common armhf 0.70.6-1~deb12u1 [641 kB]
Get:1335 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwebkit2gtk-4.1-0 armhf 2.40.3-2~deb12u2+rpi1 [15.6 MB]
Get:1336 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxbase3.0-0v5 armhf 3.0.5.1+dfsg-5+b1 [858 kB]
Get:1337 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxgtk3.0-gtk3-0v5 armhf 3.0.5.1+dfsg-5+b1 [3542 kB]
Get:1338 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xv0 armhf 1.15-1 [109 kB]
Get:1339 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfce4util-common all 4.18.1-2 [66.0 kB]
Get:1340 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfce4util7 armhf 4.18.1-2 [32.4 kB]
Get:1341 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xfconf armhf 4.18.0-2 [119 kB]
Get:1342 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfconf-0-3 armhf 4.18.0-2 [37.5 kB]
Get:1343 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxmltok1-dev armhf 1.2-4+b2 [56.0 kB]
Get:1344 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxmltok1 armhf 1.2-4+b2 [39.5 kB]
Get:1345 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmuu1 armhf 2:1.1.3-3 [23.3 kB]
Get:1346 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxres1 armhf 2:1.2.1-1 [18.7 kB]
Get:1347 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxv1 armhf 2:1.0.11-1.1 [23.3 kB]
Get:1348 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxxf86dga1 armhf 2:1.1.5-1 [20.9 kB]
Get:1349 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzip-dev armhf 1.7.3-1+b1 [163 kB]
Get:1350 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzip4 armhf 1.7.3-1+b1 [49.8 kB]
Get:1351 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lightdm armhf 1.26.0-8 [151 kB]
Get:1352 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lsb-release all 12.0-1 [6416 B]
Get:1353 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lua-lpeg armhf 1.0.2-2 [32.3 kB]
Get:1354 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf x11-xserver-utils armhf 7.7+9 [151 kB]
Get:1355 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lxrandr armhf 0.3.2-1.1 [51.4 kB]
Get:1356 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lxterminal armhf 0.4.0-2 [91.4 kB]
Get:1357 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mailcap all 3.70+nmu1 [32.0 kB]
Get:1358 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mesa-utils-bin armhf 8.5.0-1 [45.5 kB]
Get:1359 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mesa-utils armhf 8.5.0-1 [955 kB]
Get:1360 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mousepad armhf 0.5.10-2 [519 kB]
Get:1361 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mpg123 armhf 1.31.2-1 [186 kB]
Get:1362 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf neofetch all 7.1.0-4 [81.8 kB]
Get:1363 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf nmap armhf 7.93+dfsg1-1 [1768 kB]
Get:1364 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf nmap-common all 7.93+dfsg1-1 [4148 kB]
Get:1365 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansi all 0.3.1-2 [9728 B]
Get:1366 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansistyles all 0.1.3-5 [4548 B]
Get:1367 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-asap all 2.0.6+~2.0.0-1 [15.4 kB]
Get:1368 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-asn1 all 0.2.6+~0.2.0-2 [8760 B]
Get:1369 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-assert-plus all 1.0.0-4 [6852 B]
Get:1370 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-asynckit all 0.4.0-5 [10.3 kB]
Get:1371 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-aws-sign2 all 0.7.1-4 [4396 B]
Get:1372 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-aws4 all 1.11.0-2 [10.4 kB]
Get:1373 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-tweetnacl all 1.0.3+dfsg-3 [34.9 kB]
Get:1374 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-bcrypt-pbkdf all 1.0.2-3 [11.1 kB]
Get:1375 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-caseless all 0.12.1-2 [3976 B]
Get:1376 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-delayed-stream all 1.0.0-5 [5436 B]
Get:1377 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-combined-stream all 1.0.8+~1.0.3-1 [7316 B]
Get:1378 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-concat-map all 0.0.2+~0.0.1-1 [7148 B]
Get:1379 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-dashdash all 2.0.0-4 [30.3 kB]
Get:1380 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jsbn all 1.1.0+~1.2.29-1 [15.6 kB]
Get:1381 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ecc-jsbn all 0.2.0-4 [9520 B]
Get:1382 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-extend all 3.0.2+~3.0.1-3 [7816 B]
Get:1383 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-extsprintf all 1.4.1+~1.4.1-2 [6464 B]
Get:1384 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-forever-agent all 0.6.1+~0.6.1-2 [5616 B]
Get:1385 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-form-data all 4.0.0-1 [13.2 kB]
Get:1386 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-getpass all 0.1.7-3 [4796 B]
Get:1387 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-har-schema all 2.0.0-5 [5952 B]
Get:1388 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-har-validator all 5.1.5-3 [7328 B]
Get:1389 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-verror all 1.10.1+~1.10.5-2 [17.0 kB]
Get:1390 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsprim all 2.0.1-1 [13.5 kB]
Get:1391 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-sshpk all 1.17.0+dfsg-2 [52.5 kB]
Get:1392 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-http-signature all 1.3.6-2 [13.2 kB]
Get:1393 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-isstream all 0.1.2+dfsg+~0.1.0-1 [4648 B]
Get:1394 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-stringify-safe all 5.0.1+repack-6 [21.0 kB]
Get:1395 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsonstream all 1.3.5-3 [8472 B]
Get:1396 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-leven all 4.0.0+~cs1.1.1-2 [6224 B]
Get:1397 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-lockfile all 1.0.4+~1.0.2-1 [8948 B]
Get:1398 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-number-is-nan all 2.0.0-3 [3624 B]
Get:1399 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-oauth-sign all 0.9.0-4 [4404 B]
Get:1400 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-opener all 1.5.2+~1.4.0-1 [5940 B]
Get:1401 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-performance-now all 2.1.0+debian-4 [5296 B]
Get:1402 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-psl all 1.8.0+ds-9 [38.1 kB]
Get:1403 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-puka all 1.0.1+dfsg-3 [29.0 kB]
Get:1404 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-qs all 6.11.0+ds+~6.9.7-3 [43.2 kB]
Get:1405 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-tunnel-agent all 0.6.1-4 [5100 B]
Get:1406 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openbox armhf 3.6.1-10 [290 kB]
Get:1407 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf psmisc armhf 23.6-1 [253 kB]
Get:1408 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-colorzero all 2.0-2 [22.3 kB]
Get:1409 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-gpiozero armhf 1.6.2-1+b4 [105 kB]
Get:1410 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf re2c armhf 3.0-2 [406 kB]
Get:1411 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rng-tools5 armhf 5-4.1 [19.2 kB]
Get:1412 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-minitest all 5.17.0-1 [61.4 kB]
Get:1413 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-power-assert all 2.0.3-1 [11.8 kB]
Get:1414 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-test-unit all 3.5.7-1 [78.2 kB]
Get:1415 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf swig4.0 armhf 4.1.0-0.2 [1220 kB]
Get:1416 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf swig all 4.1.0-0.2 [321 kB]
Get:1417 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf systemtap-sdt-dev armhf 4.8-2 [19.4 kB]
Get:1418 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-scraping-server armhf 1.12.0+dfsg-8 [185 kB]
Err:1418 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-scraping-server armhf 1.12.0+dfsg-8
  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
Get:1419 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xauth armhf 1:1.1.2-1 [32.4 kB]
Get:1420 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-standalone-server armhf 1.12.0+dfsg-8 [828 kB]
Get:1421 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-common armhf 1.12.0+dfsg-8 [89.6 kB]
Get:1422 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf tmux armhf 3.3a-3 [362 kB]
Get:1423 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf unzip armhf 6.0-28 [147 kB]
Get:1424 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf usbutils armhf 1:014-1 [67.0 kB]
Get:1425 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf vorbis-tools armhf 1.4.2-1+b1 [168 kB]
Get:1426 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf whiptail armhf 0.52.23-1+b1 [23.1 kB]
Get:1427 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf wireless-regdb all 2022.06.06-1 [13.1 kB]
Get:1428 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf wireless-tools armhf 30~pre9-14 [102 kB]
Get:1429 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf wpasupplicant armhf 2:2.10-12 [1121 kB]
Get:1430 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xarchiver armhf 1:0.5.4.20-2 [453 kB]
Get:1431 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf xfonts-base all 1:1.0.5+nmu1 [5895 kB]
Get:1432 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xfonts-encodings all 1:1.0.4-2.2 [577 kB]
Get:1433 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-xorg-input-libinput armhf 1.2.1-1 [60.3 kB]
Get:1434 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zenity-common all 3.44.0-1 [2974 kB]
Get:1435 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zenity armhf 3.44.0-1 [56.3 kB]
Get:1436 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zsh armhf 5.9-4 [767 kB]
Get:1437 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zsh-common all 5.9-4 [4147 kB]
Get:1438 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmlrpc-epi-dev armhf 0.54.2-1.3 [40.3 kB]
Get:1439 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmlrpc-epi0 armhf 0.54.2-1.3 [28.8 kB]
Fetched 790 MB in 27min 4s (486 kB/s)
E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/k/krb5/libkadm5clnt-mit12_1.20.1-2_armhf.deb  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/p/pixman/libpixman-1-0_0.42.2-1_armhf.deb  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/g/gnupg2/gpgconf_2.2.40-1.1_armhf.deb  Connection timed out [IP: 219.100.92.228 80]
E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/s/speex/libspeex1_1.2.1-2_armhf.deb  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/p/pcre3/libpcre16-3_8.39-15_armhf.deb  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/d/duktape/libduktape207_2.7.0-2_armhf.deb  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/g/gtksourceview4/libgtksourceview-4-0_4.8.4-4_armhf.deb  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/t/tigervnc/tigervnc-scraping-server_1.12.0+dfsg-8_armhf.deb  Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
[FAILED] dietpi-bookworm-upgrade | APT dist-upgrade
 - Command: apt-get -y dist-upgrade

--------------------------------------------------------------------- - DietPi has encountered an error - - Please create a ticket: https://github.com/MichaIng/DietPi/issues - - Copy and paste only the BLUE lines below into the ticket - --------------------------------------------------------------------- #### Details: - Date | Sun Sep 10 18:24:58 JST 2023 - DietPi version | v8.21.1 (MichaIng/master) - Image creator | - Pre-image | - Hardware | RPi Zero W (armv6l) (ID=1) - Kernel version | `Linux dietpi-001 6.1.21+ #1642 Mon Apr 3 17:19:14 BST 2023 armv6l GNU/Linux` - Distro | bullseye (ID=6,RASPBIAN=1) - Command | `apt-get -y dist-upgrade` - Exit code | 100 - Software title | dietpi-bookworm-upgrade #### Steps to reproduce: <!-- Explain how to reproduce the issue --> 1. ... 2. ... #### Expected behaviour: <!-- What SHOULD happen? --> - ... #### Actual behaviour: <!-- What IS happening? --> - ... #### Extra details: <!-- Please post any extra details that might help solve the issue --> - ... #### Additional logs: ``` Reading package lists... Building dependency tree... Reading state information... Calculating upgrade... The following packages were automatically installed and are no longer required: distro-info-data g++-10 golang-1.15-go golang-1.15-src libatk1.0-data libavresample4 libbpf0 libcbor0 libcob5 libcob5-dev libdecor-0-0 libdns-export1110 libexporter-tiny-perl libfftw3-double3 libglew2.1 libglu1-mesa libgs9-common libgtksourceview-3.0-1 libgtksourceview-3.0-common libice-dev libicu67 libilmbase25 libimobiledevice6 libisc-export1105 libjs-psl libjsoncpp24 libldap-2.4-2 liblist-moreutils-perl liblist-moreutils-xs-perl libltdl-dev libmpdec3 libncurses5-dev libobjc-10-dev libodbc1 libopenexr25 libopengl0 libpcre16-3 libpcre2-posix2 libpcre3-dev libpcre32-3 libpcrecpp0v5 libperl5.32 libplist3 libpoppler102 libprocps8 libpython3.8 libpython3.8-minimal libpython3.8-stdlib libpython3.9 libpython3.9-dev libpython3.9-minimal libpython3.9-stdlib librest-0.7-0 libsdl2-2.0-0 libsepol1 libsigsegv2 libsm-dev libsoup-gnome2.4-1 libstdc++-10-dev libtiff5 libtiffxx5 liburing1 libusbmuxd6 libwmf0.2-7 libwxbase3.0-0v5 libwxgtk3.0-gtk3-0v5 libxfce4util-common libxfce4util7 libxfconf-0-3 libxt-dev node-ansi node-ansistyles node-asap node-asn1 node-assert-plus node-asynckit node-aws-sign2 node-aws4 node-bcrypt-pbkdf node-caseless node-combined-stream node-concat-map node-dashdash node-delayed-stream node-ecc-jsbn node-extend node-extsprintf node-forever-agent node-form-data node-getpass node-har-schema node-har-validator node-http-signature node-isstream node-jsbn node-json-stringify-safe node-jsonstream node-jsprim node-leven node-lockfile node-number-is-nan node-oauth-sign node-opener node-performance-now node-psl node-puka node-qs node-sshpk node-tunnel-agent node-tweetnacl node-verror odbcinst odbcinst1debian2 perl-modules-5.32 python3.9 python3.9-dev python3.9-minimal ruby2.7 xfconf Use 'sudo apt autoremove' to remove them. The following packages will be REMOVED: gnucobol libfilezilla11 libgs9 libnode72 libsemanage1 libsepol1-dev libwacom2 mesa-utils-extra python-pip-whl python3.9-venv The following NEW packages will be installed: at-spi2-common clang-14 cpp-12 cron-daemon-common dbus-bin dbus-daemon dbus-session-bus-common dbus-system-bus-common eslint g++-12 gcc-11-base gcc-12 gcc-12-base golang-1.19-go golang-1.19-src handlebars libabsl20220623 libaom-dev libaom3 libasan8 libavcodec59 libavformat59 libavif-dev libavif15 libavutil57 libbpf1 libcbor0.8 libcjson1 libclang-common-14-dev libclang-cpp14 libclang1-14 libcodec2-1.0 libdav1d-dev libdav1d6 libde265-dev libdecor-0-0 libduktape207 libffi8 libfile-find-rule-perl libfilezilla-common libfilezilla34 libflac12 libgav1-1 libgcc-11-dev libgcc-12-dev libgs-common libgs10 libgs10-common libgspell-1-2 libgspell-1-common libgssdp-1.6-0 libgstreamer-plugins-bad1.0-0 libgtksourceview-4-0 libgtksourceview-4-common libgupnp-1.6-0 libgupnp-igd-1.0-4 libhashkit2 libheif-dev libhwy1 libicu72 libidn12 libimath-3-1-29 libjavascriptcoregtk-4.1-0 libjs-async libjs-events libjs-prettify libjs-regenerate libjs-source-map libjs-sprintf-js libjs-util libjsoncpp25 libjxl0.7 libldap-2.5-0 libldap-dev liblerc-dev liblerc4 libllvm14 libllvm15 libmbedcrypto7 libmousepad0 libnice10 libnode108 libnumber-compare-perl libobjc-11-dev libobjc-12-dev libodbc2 libodbccr2 libodbcinst2 libopenexr-3-1-30 libopengl0 libpcre2-posix3 libperl5.36 libpkgconf3 libpoppler126 libproc2-0 libpython3.11 libpython3.11-dev libpython3.11-minimal libpython3.11-stdlib librav1e0 librist4 libruby libruby3.1 libsemanage2 libsepol-dev libsepol2 libsoup-3.0-0 libsoup-3.0-common libsoup2.4-common libspectre1 libsrt1.5-gnutls libssl3 libstdc++-11-dev libstdc++-12-dev libsvtav1enc1 libswresample4 libswscale6 libsystemd-shared libtext-glob-perl libtiff6 libtiffxx6 liburing2 libvpx7 libwacom9 libwebkit2gtk-4.1-0 libwebp7 libwmf-0.2-7 libwmflite-0.2-7 libwxbase3.2-1 libwxgtk3.2-1 libx264-164 libx265-199 libx265-dev libxcvt0 libyuv0 libzstd-dev llvm-11-linker-tools llvm-14-linker-tools mesa-utils-bin node-acorn node-ajv-keywords node-ampproject-remapping node-ansi-escapes node-anymatch node-argparse node-arrify node-assert node-async node-async-each node-babel-helper-define-polyfill-provider node-babel-plugin-add-module-exports node-babel-plugin-lodash node-babel-plugin-polyfill-corejs2 node-babel-plugin-polyfill-corejs3 node-babel-plugin-polyfill-regenerator node-babel7 node-babel7-runtime node-base64-js node-binary-extensions node-braces node-browserslist node-busboy node-camelcase node-caniuse-lite node-chokidar node-chrome-trace-event node-ci-info node-cjs-module-lexer node-cli-table node-cliui node-clone-deep node-commander node-commondir node-concat-stream node-convert-source-map node-core-js node-core-js-compat node-core-js-pure node-css-loader node-css-selector-tokenizer node-data-uri-to-buffer node-debbundle-es-to-primitive node-decamelize node-decompress-response node-deep-equal node-deep-is node-define-properties node-defined node-del node-diff node-doctrine node-electron-to-chromium node-end-of-stream node-enhanced-resolve node-errno node-error-ex node-es-abstract node-es-module-lexer node-es6-error node-escodegen node-eslint-scope node-eslint-utils node-eslint-visitor-keys node-espree node-esprima node-esquery node-esrecurse node-estraverse node-esutils node-events node-fancy-log node-fast-levenshtein node-fetch node-file-entry-cache node-fill-range node-find-cache-dir node-find-up node-flat-cache node-flatted node-for-in node-for-own node-foreground-child node-fs-readdir-recursive node-functional-red-black-tree node-get-caller-file node-get-stream node-glob-parent node-globals node-globby node-got node-icss-utils node-ieee754 node-ignore node-interpret node-is-arrayish node-is-binary-path node-is-buffer node-is-extendable node-is-extglob node-is-glob node-is-number node-is-path-cwd node-is-path-inside node-is-plain-obj node-is-plain-object node-is-stream node-is-windows node-isobject node-istanbul node-jest-debbundle node-jest-worker node-js-tokens node-js-yaml node-jsesc node-json-buffer node-json5 node-kind-of node-levn node-loader-runner node-locate-path node-lodash node-lodash-packages node-lowercase-keys node-make-dir node-memfs node-memory-fs node-merge-stream node-micromatch node-mimic-response node-minimist node-minipass node-n3 node-negotiator node-neo-async node-normalize-path node-npm-run-path node-object-inspect node-optimist node-optionator node-p-cancelable node-p-limit node-p-locate node-parse-json node-path-dirname node-path-exists node-path-is-inside node-path-type node-picocolors node-pify node-pkg-dir node-postcss node-postcss-modules-extract-imports node-postcss-modules-values node-postcss-value-parser node-prelude-ls node-progress node-prr node-pump node-quick-lru node-randombytes node-read-pkg node-readdirp node-rechoir node-regenerate node-regenerate-unicode-properties node-regenerator-runtime node-regenerator-transform node-regexpp node-regexpu-core node-regjsgen node-regjsparser node-repeat-string node-require-directory node-resolve-cwd node-resumer node-schema-utils node-serialize-javascript node-set-immediate-shim node-shebang-command node-shebang-regex node-slice-ansi node-source-list-map node-source-map node-source-map-support node-sprintf-js node-strip-bom node-strip-json-comments node-tapable node-tape node-terser node-time-stamp node-to-fast-properties node-to-regex-range node-tslib node-type-check node-typedarray node-undici node-unicode-canonical-property-names-ecmascript node-unicode-match-property-ecmascript node-unicode-match-property-value-ecmascript node-unicode-property-aliases-ecmascript node-util node-v8-compile-cache node-v8flags node-watchpack node-webassemblyjs node-webpack-sources node-wordwrap node-wrap-ansi node-write node-xtend node-y18n node-yargs node-yargs-parser perl-modules-5.36 pkexec pkgconf pkgconf-bin polkitd python3-pip-whl python3-setuptools-whl python3-six python3.11 python3.11-dev python3.11-minimal python3.11-venv rpcsvc-proto ruby-sdbm ruby-webrick ruby3.1 sgml-base terser unixodbc-common usrmerge util-linux-extra webpack xml-core The following packages will be upgraded: adduser adwaita-icon-theme alsa-utils apache2 apache2-bin apache2-data apache2-dev apache2-utils apt apt-file autoconf autoconf2.64 automake autopoint autotools-dev base-files base-passwd bash bash-completion binutils binutils-arm-linux-gnueabihf binutils-common bison bsdextrautils bsdutils bubblewrap bzip2 ca-certificates clang clang-11 cmake cmake-data colorized-logs comerr-dev console-setup console-setup-linux coreutils cpio cpp cpp-10 cron curl dash dbus dbus-user-session dbus-x11 dconf-gsettings-backend dconf-service debconf debhelper debianutils default-libmysqlclient-dev device-tree-compiler dh-strip-nondeterminism dictionaries-common diffutils dirmngr distro-info-data dmidecode dmsetup dpkg dpkg-dev dwz e2fsprogs emacsen-common ethtool expat fake-hwclock fakeroot fdisk file filezilla filezilla-common findutils firebird-dev firebird3.0-common firebird3.0-common-doc flac flex fontconfig fontconfig-config fonts-dejavu-core fonts-urw-base35 freetds-common freetds-dev g++ g++-10 galculator gcc gcc-10 gcc-10-base gettext gettext-base gimp gimp-data git git-man glib-networking glib-networking-common glib-networking-services gnupg gnupg-l10n gnupg-utils golang-1.15-go golang-1.15-src golang-go golang-src gparted gparted-common gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm gpgv graphviz grep groff-base gsettings-desktop-schemas gstreamer1.0-plugins-base gstreamer1.0-plugins-good gtk-update-icon-cache gyp gzip hdparm hostname htop hunspell-en-us i2c-tools icu-devtools ifupdown init-system-helpers initramfs-tools initramfs-tools-core intltool-debian iotop iproute2 iputils-ping isc-dhcp-client iso-codes iw kbd keyboard-configuration klibc-utils kmod krb5-multidev less libaa1 libacl1 libacl1-dev libamd2 libapparmor-dev libapparmor1 libapr1 libapr1-dev libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-dev libaprutil1-ldap libapt-pkg-perl libapt-pkg6.0 libarchive13 libargon2-1 libargon2-dev libasan6 libasound2 libasound2-data libasound2-dev libasound2-plugins libaspell-dev libaspell15 libass9 libassuan0 libasyncns0 libatk-bridge2.0-0 libatk1.0-0 libatk1.0-data libatkmm-1.6-1v5 libatlas3-base libatomic1 libatopology2 libatspi2.0-0 libattr1 libattr1-dev libaudit-common libaudit1 libavahi-client3 libavahi-common-data libavahi-common3 libayatana-ido3-0.4-0 libayatana-indicator3-7 libbabl-0.1-0 libbinutils libblas3 libblkid-dev libblkid1 libbluray2 libbrotli-dev libbrotli1 libbs2b0 libbsd-dev libbsd0 libbz2-1.0 libbz2-dev libc-ares2 libc-bin libc-client2007e libc-client2007e-dev libc-dev-bin libc-l10n libc6 libc6-dev libcaca0 libcairo-gobject2 libcairo2 libcairomm-1.0-1v5 libcamd2 libcap-ng0 libcap2 libcap2-bin libcc1-0 libccolamd2 libcddb2 libcdparanoia0 libcdt5 libcgraph6 libcholmod3 libchromaprint1 libclang-common-11-dev libclang-cpp11 libclang1-11 libcob5 libcob5-dev libcolamd2 libcolord2 libcom-err2 libcrypt-dev libcrypt1 libcryptsetup12 libct4 libctf-nobfd0 libctf0 libcups2 libcurl3-gnutls libcurl4 libcurl4-gnutls-dev libdatrie1 libdb-dev libdb5.3 libdb5.3-dev libdbus-1-3 libdbus-glib-1-2 libdc1394-25 libdconf1 libde265-0 libdebconfclient0 libdebhelper-perl libdeflate-dev libdeflate0 libdevmapper1.02.1 libdns-export1110 libdouble-conversion3 libdpkg-perl libdrm-amdgpu1 libdrm-common libdrm-nouveau2 libdrm-radeon1 libdrm2 libdv4 libdvdnav4 libdvdread8 libdw1 libebml5 libedit-dev libedit2 libegl-mesa0 libegl1 libelf1 libenchant-2-2 libenchant-2-dev libepoxy0 liberror-perl libevdev2 libevent-2.1-7 libevent-core-2.1-7 libevent-dev libevent-extra-2.1-7 libevent-openssl-2.1-7 libevent-pthreads-2.1-7 libexif12 libexiv2-27 libexpat1 libexpat1-dev libexporter-tiny-perl libext2fs2 libfaad2 libfakeroot libfann-dev libfann2 libfbclient2 libfdisk1 libfdt1 libffi-dev libfftw3-double3 libfftw3-single3 libfido2-1 libfile-readbackwards-perl libfile-stripnondeterminism-perl libflite1 libfontconfig-dev libfontconfig1 libfreetype-dev libfreetype6 libfreetype6-dev libfribidi0 libgbm1 libgc1 libgcc-10-dev libgcc-s1 libgck-1-0 libgcr-base-3-1 libgcr-ui-3-1 libgcrypt20 libgcrypt20-dev libgd-dev libgd3 libgdbm-compat4 libgdbm6 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgegl-0.4-0 libgegl-common libgexiv2-2 libgfortran5 libgif7 libgimp2.0 libgirepository-1.0-1 libgl1 libgl1-mesa-dri libglapi-mesa libgles2 libglib2.0-0 libglib2.0-bin libglib2.0-data libglib2.0-dev libglib2.0-dev-bin libglibmm-2.4-1v5 libglu1-mesa libglvnd0 libglx-mesa0 libglx0 libgme0 libgmp-dev libgmp10 libgmp3-dev libgmpxx4ldbl libgnutls30 libgomp1 libgpg-error-dev libgpg-error0 libgpm2 libgs9-common libgsm1 libgssapi-krb5-2 libgssrpc4 libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 libgtk-3-0 libgtk-3-common libgtkmm-3.0-1v5 libgts-0.7-5 libgudev-1.0-0 libgvc6 libgvpr2 libharfbuzz-icu0 libharfbuzz0b libheif1 libhiredis0.14 libhogweed6 libhunspell-1.7-0 libi2c0 libib-util libicu-dev libidn2-0 libiec61883-0 libilmbase25 libimlib2 libimobiledevice6 libinput-bin libinput10 libip4tc2 libisc-export1105 libisl23 libiw30 libjack-dev libjack0 libjansson4 libjavascriptcoregtk-4.0-18 libjbig-dev libjbig0 libjbig2dec0 libjpeg-dev libjpeg62-turbo libjpeg62-turbo-dev libjs-inherits libjs-is-typedarray libjs-jquery libjs-psl libjs-sphinxdoc libjs-typedarray-to-buffer libjs-underscore libjson-c5 libjson-glib-1.0-0 libjson-glib-1.0-common libk5crypto3 libkadm5clnt-mit12 libkadm5srv-mit12 libkdb5-10 libkeyutils1 libklibc libkmod2 libkrb5-3 libkrb5-dev libkrb5support0 libksba8 liblab-gamut1 liblapack3 liblcms2-2 libldap2-dev libldb2 liblightdm-gobject-1-0 liblilv-0-0 liblirc-client0 liblist-moreutils-xs-perl libllvm11 liblocale-gettext-perl libltdl-dev libltdl7 liblua5.2-0 liblua5.3-0 liblz4-1 liblzma-dev liblzma5 libmad0 libmagic-dev libmagic-mgc libmagic1 libmanette-0.2-0 libmariadb-dev libmariadb-dev-compat libmariadb3 libmatroska7 libmcrypt-dev libmcrypt4 libmd-dev libmd0 libmd4c0 libmemcached11 libmemcachedutil2 libmhash-dev libmhash2 libmount-dev libmount1 libmp3lame0 libmpc3 libmpdec3 libmpfr6 libmpg123-0 libmtp-common libmtp9 libmysofa1 libncurses-dev libncurses5-dev libncurses6 libncursesw6 libnetsnmptrapd40 libnettle8 libnewt0.52 libnghttp2-14 libnl-3-200 libnl-genl-3-200 libnl-route-3-200 libnode-dev libnotify4 libnspr4 libnss-myhostname libnss3 libobjc-10-dev libobjc4 libobrender32v5 libobt2v5 libodbc1 libogg0 libonig-dev libonig5 libopenblas0-pthread libopenjp2-7 libopenmpt-modplug1 libopenmpt0 libopus0 liborc-0.4-0 libout123-0 libp11-kit0 libpam-modules libpam-modules-bin libpam-runtime libpam-systemd libpam0g libpam0g-dev libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpangomm-1.4-1v5 libpangoxft-1.0-0 libpaper1 libparted-fs-resize0 libparted2 libpathplan4 libpcap0.8 libpci-dev libpci3 libpciaccess0 libpcre16-3 libpcre2-16-0 libpcre2-32-0 libpcre2-8-0 libpcre2-dev libpcre3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpcsclite1 libpeas-1.0-0 libpeas-common libpipeline1 libpixman-1-0 libplist3 libplymouth5 libpng-dev libpng16-16 libpocketsphinx3 libpolkit-agent-1-0 libpolkit-gobject-1-0 libpoppler-glib8 libpopt0 libportaudio2 libportaudiocpp0 libpq-dev libpq5 libproxy1v5 libpsl5 libpspell-dev libpugixml1v5 libpulse0 libpulsedsp libpython3-dev libpython3-stdlib libqdbm-dev libqdbm14 libqt5core5a libqt5dbus5 libqt5gui5 libqt5network5 libqt5svg5 libqt5widgets5 libqt5x11extras5 librabbitmq4 libraw20 libreadline-dev libreadline8 libregexp-assemble-perl librhash0 librsvg2-2 librsvg2-common librubberband2 libsamplerate0 libsasl2-2 libsasl2-dev libsasl2-modules-db libsctp-dev libsctp1 libsdl-image1.2 libsdl1.2debian libsdl2-2.0-0 libseccomp2 libsecret-1-0 libsecret-common libselinux1 libselinux1-dev libsemanage-common libsensors-config libsensors-dev libsensors5 libserd-0-0 libshout3 libsigc++-2.0-0v5 libsigsegv2 libslang2 libsmartcols1 libsnappy1v5 libsndfile1 libsndio7.0 libsnmp-base libsnmp-dev libsnmp40 libsord-0-0 libsoup-gnome2.4-1 libsoup2.4-1 libspeex1 libspeexdsp1 libsphinxbase3 libsqlite3-0 libsqlite3-dev libsratom-0-0 libss2 libssh-gcrypt-4 libssh2-1 libssl-dev libstdc++-10-dev libstdc++6 libsub-override-perl libsuitesparseconfig5 libsybdb5 libsyn123-0 libsystemd-dev libsystemd0 libtag1v5 libtag1v5-vanilla libtalloc2 libtasn1-6 libtdb1 libtevent0 libtext-charwidth-perl libtext-iconv-perl libthai-data libthai0 libtheora0 libtiff-dev libtinfo6 libtirpc-common libtirpc-dev libtirpc3 libtool libubsan1 libudev-dev libudev1 libudfread0 libumfpack5 libunistring2 libunwind8 libupower-glib3 libusb-1.0-0 libutempter0 libuuid1 libuv1 libuv1-dev libv4l-0 libv4lconvert0 libva-drm2 libva-x11-2 libva2 libvdpau1 libvisual-0.4-0 libvpx-dev libvte-2.91-0 libvte-2.91-common libvulkan1 libwacom-common libwavpack1 libwayland-client0 libwayland-cursor0 libwayland-egl1 libwayland-server0 libwbclient0 libwebkit2gtk-4.0-37 libwebp-dev libwebpdemux2 libwebpmux3 libwmf0.2-7 libwoff1 libwpe-1.0-1 libwpebackend-fdo-1.0-1 libwrap0 libwrap0-dev libwxbase3.0-0v5 libwxgtk3.0-gtk3-0v5 libx11-6 libx11-data libx11-dev libx11-xcb1 libxaw7 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-image0 libxcb-present0 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb-xinerama0 libxcb-xinput0 libxcb-xkb1 libxcb-xv0 libxcb1 libxcb1-dev libxcursor1 libxdamage1 libxext6 libxfce4util-common libxfce4util7 libxfconf-0-3 libxfixes3 libxfont2 libxft2 libxi6 libxinerama1 libxkbcommon-x11-0 libxkbcommon0 libxml2 libxml2-dev libxmlrpc-epi-dev libxmlrpc-epi0 libxmltok1 libxmltok1-dev libxmu6 libxmuu1 libxpm-dev libxpm4 libxrandr2 libxrender1 libxres1 libxslt1-dev libxslt1.1 libxt-dev libxt6 libxtables12 libxtst6 libxv1 libxxf86dga1 libxxhash0 libyaml-0-2 libz3-4 libzip-dev libzip4 libzmq5 libzstd1 libzvbi-common libzvbi0 lightdm linux-base locales locales-all login logsave lsb-base lsb-release lsof lua-lpeg lxrandr lxterminal m4 mailcap man-db mariadb-common mawk media-types mesa-utils mlock mount mousepad mpg123 mysql-common nano ncurses-base ncurses-bin neofetch netbase netcat-openbsd nmap nmap-common node-abbrev node-agent-base node-ajv node-ansi node-ansi-regex node-ansi-styles node-ansistyles node-aproba node-archy node-are-we-there-yet node-asap node-asn1 node-assert-plus node-asynckit node-aws-sign2 node-aws4 node-balanced-match node-bcrypt-pbkdf node-brace-expansion node-builtins node-cacache node-caseless node-chalk node-chownr node-clone node-color-convert node-color-name node-colors node-columnify node-combined-stream node-concat-map node-console-control-strings node-copy-concurrently node-core-util-is node-dashdash node-debug node-defaults node-delayed-stream node-delegates node-depd node-ecc-jsbn node-encoding node-err-code node-escape-string-regexp node-extend node-extsprintf node-fast-deep-equal node-forever-agent node-form-data node-fs-write-stream-atomic node-fs.realpath node-function-bind node-gauge node-getpass node-glob node-graceful-fs node-gyp node-har-schema node-har-validator node-has-flag node-has-unicode node-hosted-git-info node-http-signature node-https-proxy-agent node-iconv-lite node-iferr node-imurmurhash node-indent-string node-inflight node-inherits node-ini node-ip node-ip-regex node-is-typedarray node-isarray node-isexe node-isstream node-jsbn node-json-parse-better-errors node-json-schema node-json-schema-traverse node-json-stable-stringify node-json-stringify-safe node-jsonify node-jsonparse node-jsonstream node-jsprim node-leven node-lockfile node-lru-cache node-mime node-mime-types node-minimatch node-mkdirp node-move-concurrently node-ms node-mute-stream node-nopt node-normalize-package-data node-npm-bundled node-npm-package-arg node-npmlog node-number-is-nan node-oauth-sign node-object-assign node-once node-opener node-osenv node-p-map node-path-is-absolute node-performance-now node-process-nextick-args node-promise-inflight node-promise-retry node-promzard node-psl node-puka node-punycode node-qs node-read node-read-package-json node-readable-stream node-resolve node-retry node-rimraf node-run-queue node-safe-buffer node-semver node-set-blocking node-signal-exit node-slash node-spdx-correct node-spdx-exceptions node-spdx-expression-parse node-spdx-license-ids node-sshpk node-ssri node-string-decoder node-string-width node-strip-ansi node-supports-color node-tar node-text-table node-tunnel-agent node-tweetnacl node-typedarray-to-buffer node-unique-filename node-uri-js node-util-deprecate node-uuid node-validate-npm-package-license node-validate-npm-package-name node-verror node-wcwidth.js node-which node-wide-align node-wrappy node-write-file-atomic node-yallist nodejs npm ocl-icd-libopencl1 odbcinst odbcinst1debian2 openbox openssh-client openssh-server openssh-sftp-server openssl parted passwd pci.ids perl perl-base pinentry-curses pkg-config plymouth policykit-1 poppler-data portaudio19-dev procps proftpd-core psmisc pulseaudio pulseaudio-utils python3 python3-colorzero python3-dev python3-distutils python3-dnspython python3-gpiozero python3-ldb python3-lib2to3 python3-minimal python3-numpy python3-pkg-resources python3-rpi.gpio python3-samba python3-setuptools python3-smbus python3-talloc python3-tdb python3-venv rake re2c readline-common rng-tools5 rpi.gpio-common rsync ruby ruby-minitest ruby-net-telnet ruby-power-assert ruby-rubygems ruby-test-unit ruby-xmlrpc runit-helper samba samba-common samba-common-bin samba-libs samba-vfs-modules screen sed sensible-utils shared-mime-info sudo swig swig4.0 systemd systemd-sysv systemd-timesyncd systemtap-sdt-dev sysvinit-utils tar tdb-tools tigervnc-common tigervnc-scraping-server tigervnc-standalone-server tmux tzdata ucf udev unixodbc-dev unzip upower usbutils util-linux uuid-dev vorbis-tools wget whiptail wireless-regdb wireless-tools wpasupplicant x11-common x11-xkb-utils x11-xserver-utils x11proto-dev xarchiver xauth xdg-dbus-proxy xfconf xfonts-base xfonts-encodings xkb-data xserver-common xserver-xorg-core xserver-xorg-input-libinput xserver-xorg-video-fbdev xz-utils zenity zenity-common zlib1g zlib1g-dev zsh zsh-common 1062 upgraded, 377 newly installed, 10 to remove and 0 not upgraded. Need to get 792 MB of archives. After this operation, 1403 MB of additional disk space will be used. Get:1 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf base-files armhf 12.4+rpi1+deb12u1 [70.9 kB] Get:2 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-l10n all 2.36-9+rpi1+deb12u1 [675 kB] Get:3 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf locales all 2.36-9+rpi1+deb12u1 [3902 kB] Get:4 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf locales-all armhf 2.36-9+rpi1+deb12u1 [10.7 MB] Get:36 http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian bookworm/main armhf liblocale-gettext-perl armhf 1.07-5 [14.9 kB] Get:5 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-dev-bin armhf 2.36-9+rpi1+deb12u1 [43.7 kB] Get:6 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf binutils armhf 2.40-2+rpi2 [65.4 kB] Get:7 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-dev armhf 2.74.6-1 [1464 kB] Get:8 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc6-dev armhf 2.36-9+rpi1+deb12u1 [1256 kB] Get:9 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rpcsvc-proto armhf 1.4.3-1 [55.1 kB] Get:10 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc6 armhf 2.36-9+rpi1+deb12u1 [2106 kB] Get:57 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-venv armhf 3.11.2-1 [1188 B] Get:11 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzstd1 armhf 1.5.4+dfsg2-5 [237 kB] Get:12 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libctf0 armhf 2.40-2+rpi2 [71.5 kB] Get:13 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libctf-nobfd0 armhf 2.40-2+rpi2 [133 kB] Get:14 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjansson4 armhf 2.14-2 [37.0 kB] Get:15 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf binutils-arm-linux-gnueabihf armhf 2.40-2+rpi2 [2052 kB] Get:16 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbinutils armhf 2.40-2+rpi2 [406 kB] Get:17 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf binutils-common armhf 2.40-2+rpi2 [2470 kB] Get:18 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libffi8 armhf 3.4.4-1 [19.4 kB] Get:19 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-dev-bin armhf 2.74.6-1 [147 kB] Get:20 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-bin armhf 2.74.6-1 [101 kB] Get:21 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-0 armhf 2.74.6-1 [1203 kB] Get:22 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam0g-dev armhf 1.5.2-6 [141 kB] Get:23 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam0g armhf 1.5.2-6 [86.2 kB] Get:24 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcrypt1 armhf 1:4.4.33-2 [93.3 kB] Get:25 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcrypt-dev armhf 1:4.4.33-2 [121 kB] Get:26 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-bin armhf 2.36-9+rpi1+deb12u1 [493 kB] Get:80 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libncurses5-dev armhf 6.4-4 [932 B] Get:27 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libapt-pkg-perl armhf 0.1.40+b4 [64.3 kB] Get:28 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblist-moreutils-xs-perl armhf 0.430-3+b1 [35.1 kB] Get:29 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtext-iconv-perl armhf 1.7-8 [13.8 kB] Get:30 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtext-charwidth-perl armhf 0.04-11 [9328 B] Get:31 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf perl-modules-5.36 all 5.36.0-7 [2815 kB] Get:32 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgdbm6 armhf 1.23-3 [68.3 kB] Get:33 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libperl5.36 armhf 5.36.0-7 [3462 kB] Get:34 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf perl armhf 5.36.0-7 [239 kB] Get:35 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf perl-base armhf 5.36.0-7 [1413 kB] Get:37 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zlib1g-dev armhf 1:1.2.13.dfsg-1 [901 kB] Get:38 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zlib1g armhf 1:1.2.13.dfsg-1 [73.5 kB] Get:39 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-12-base armhf 12.2.0-14+rpi1 [37.7 kB] Get:40 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-s1 armhf 12.2.0-14+rpi1 [36.3 kB] Get:41 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libatomic1 armhf 12.2.0-14+rpi1 [8240 B] Get:42 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libssl3 armhf 3.0.9-1 [1619 kB] Get:43 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-minimal armhf 3.11.2-6 [797 kB] Get:44 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexpat1-dev armhf 2.5.0-1 [130 kB] Get:45 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexpat1 armhf 2.5.0-1 [77.2 kB] Get:46 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11-minimal armhf 3.11.2-6 [1679 kB] Get:47 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblzma-dev armhf 5.4.1-0.2 [246 kB] Get:48 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblzma5 armhf 5.4.1-0.2 [192 kB] Get:49 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tar armhf 1.34+dfsg-1.2 [788 kB] Get:50 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dpkg armhf 1.21.22+rpi1 [1497 kB] Get:51 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3-dev armhf 3.11.2-1 [9248 B] Get:52 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-dev armhf 3.11.2-1 [26.2 kB] Get:53 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-vfs-modules armhf 2:4.17.8+dfsg-2 [386 kB] Get:54 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-ldb armhf 2:2.6.2+samba4.17.8+dfsg-2 [53.8 kB] Get:55 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldb2 armhf 2:2.6.2+samba4.17.8+dfsg-2 [133 kB] Get:56 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba armhf 2:4.17.8+dfsg-2 [845 kB] Get:58 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-tdb armhf 1.4.8-2 [15.5 kB] Get:59 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtalloc2 armhf 2.4.0-f2 [23.9 kB] Get:60 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-talloc armhf 2.4.0-f2 [13.8 kB] Get:61 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-smbus armhf 4.3-2+b2 [11.3 kB] Get:62 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-samba armhf 2:4.17.8+dfsg-2 [2408 kB] Get:63 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-rpi.gpio armhf 0.7.1~a4-1+b2 [21.2 kB] Get:64 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-numpy armhf 1:1.24.2-1 [3826 kB] Get:65 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-distutils all 3.11.2-3 [131 kB] Get:66 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-lib2to3 all 3.11.2-3 [76.3 kB] Get:67 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-minimal armhf 3.11.2-1 [26.0 kB] Get:68 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3 armhf 3.11.2-1 [26.0 kB] Get:69 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsqlite3-dev armhf 3.40.1-2 [893 kB] Get:70 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsqlite3-0 armhf 3.40.1-2 [724 kB] Get:71 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf media-types all 10.0.0 [26.1 kB] Get:72 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaudit-common all 1:3.0.9-1 [10.4 kB] Get:73 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcap-ng0 armhf 0.8.3-1+b1 [15.6 kB] Get:74 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaudit1 armhf 1:3.0.9-1 [43.7 kB] Get:75 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdb5.3-dev armhf 5.3.28+dfsg2-1 [629 kB] Get:76 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdb5.3 armhf 5.3.28+dfsg2-1 [571 kB] Get:77 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libncurses6 armhf 6.4-4 [80.0 kB] Get:78 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtinfo6 armhf 6.4-4 [317 kB] Get:79 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libncursesw6 armhf 6.4-4 [106 kB] Get:81 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libncurses-dev armhf 6.4-4 [292 kB] Get:82 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ncurses-bin armhf 6.4-4 [414 kB] Get:83 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libreadline-dev armhf 8.2-1.3 [123 kB] Get:84 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf readline-common all 8.2-1.3 [69.0 kB] Get:85 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libreadline8 armhf 8.2-1.3 [142 kB] Get:86 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtirpc-common all 1.3.3+ds-1 [14.0 kB] Get:87 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtirpc-dev armhf 1.3.3+ds-1 [174 kB] Get:88 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkrb5-dev armhf 1.20.1-2 [14.6 kB] Get:89 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf krb5-multidev armhf 1.20.1-2 [125 kB] Get:90 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgssrpc4 armhf 1.20.1-2 [50.3 kB] Get:91 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf comerr-dev armhf 2.1-1.47.0-2 [50.8 kB] Get:92 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcom-err2 armhf 1.47.0-2 [19.1 kB] Get:93 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkdb5-10 armhf 1.20.1-2 [35.2 kB] Get:94 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkadm5srv-mit12 armhf 1.20.1-2 [45.2 kB] Get:95 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkadm5clnt-mit12 armhf 1.20.1-2 [35.6 kB] Err:95 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkadm5clnt-mit12 armhf 1.20.1-2 Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] Get:96 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkeyutils1 armhf 1.6.3-2 [7892 B] Get:97 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgssapi-krb5-2 armhf 1.20.1-2 [109 kB] Get:98 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libk5crypto3 armhf 1.20.1-2 [72.9 kB] Get:99 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkrb5support0 armhf 1.20.1-2 [29.3 kB] Get:100 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkrb5-3 armhf 1.20.1-2 [283 kB] Get:101 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtirpc3 armhf 1.3.3+ds-1 [72.0 kB] Get:102 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf uuid-dev armhf 2.38.1-5 [37.7 kB] Get:103 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libuuid1 armhf 2.38.1-5 [27.1 kB] Get:104 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-stdlib armhf 3.11.2-6 [1668 kB] Get:105 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11 armhf 3.11.2-6 [572 kB] Get:106 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3-stdlib armhf 3.11.2-1 [9012 B] Get:107 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11 armhf 3.11.2-6 [1667 kB] Get:108 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpython3.11-dev armhf 3.11.2-6 [3364 kB] Get:109 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11-dev armhf 3.11.2-6 [511 kB] Get:110 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [326 kB] Get:111 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-underscore all 1.13.4~dfsg+~1.11.4-3 [116 kB] Get:112 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-sphinxdoc all 5.3.0-4 [130 kB] Get:113 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++6 armhf 12.2.0-14+rpi1 [504 kB] Get:114 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmp3-dev armhf 2:6.2.1+dfsg1-1.1 [331 kB] Get:115 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmp-dev armhf 2:6.2.1+dfsg1-1.1 [582 kB] Get:116 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmpxx4ldbl armhf 2:6.2.1+dfsg1-1.1 [338 kB] Get:117 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgmp10 armhf 2:6.2.1+dfsg1-1.1 [507 kB] Get:118 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnettle8 armhf 3.8.1-2 [293 kB] Get:119 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libhogweed6 armhf 3.8.1-2 [315 kB] Get:120 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libunistring2 armhf 1.0-2 [407 kB] Get:121 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libidn2-0 armhf 2.3.3-1+b2 [117 kB] Get:122 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libp11-kit0 armhf 0.24.1-2 [324 kB] Get:123 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtasn1-6 armhf 4.19.0-2 [50.9 kB] Get:124 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgnutls30 armhf 3.7.9-2 [1309 kB] Get:125 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libicu72 armhf 72.1-3 [9009 kB] Get:126 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsasl2-modules-db armhf 2.1.28+dfsg-10 [19.1 kB] Get:127 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsasl2-dev armhf 2.1.28+dfsg-10 [206 kB] Get:128 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsasl2-2 armhf 2.1.28+dfsg-10 [51.9 kB] Get:129 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldap-2.5-0 armhf 2.5.13+dfsg-5+rpi1 [154 kB] Get:130 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtdb1 armhf 1.4.8-2 [39.6 kB] Get:131 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtevent0 armhf 0.14.1-1 [32.4 kB] Get:132 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liburing2 armhf 2.3-3 [12.7 kB] Get:133 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmd-dev armhf 1.0.4-2 [46.6 kB] Get:134 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmd0 armhf 1.0.4-2 [28.6 kB] Get:135 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbsd-dev armhf 0.11.7-2 [235 kB] Get:136 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbsd0 armhf 0.11.7-2 [112 kB] Get:137 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf sensible-utils all 0.0.17+nmu1 [19.0 kB] Get:138 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf ucf all 3.0043+nmu1 [55.2 kB] Get:139 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-common-bin armhf 2:4.17.8+dfsg-2 [1050 kB] Get:140 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-common all 2:4.17.8+dfsg-2 [83.3 kB] Get:141 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavahi-client3 armhf 0.8-10 [41.1 kB] Get:142 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavahi-common3 armhf 0.8-10 [38.5 kB] Get:143 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavahi-common-data armhf 0.8-10 [107 kB] Get:144 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-user-session armhf 1.14.8-2~deb12u1 [77.4 kB] Get:145 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-x11 armhf 1.14.8-2~deb12u1 [88.8 kB] Get:146 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdbus-1-3 armhf 1.14.8-2~deb12u1 [176 kB] Get:147 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus armhf 1.14.8-2~deb12u1 [94.5 kB] Get:148 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-bin armhf 1.14.8-2~deb12u1 [102 kB] Get:149 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-session-bus-common all 1.14.8-2~deb12u1 [77.5 kB] Get:150 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapparmor-dev armhf 3.0.8-3 [80.7 kB] Get:151 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapparmor1 armhf 3.0.8-3 [37.1 kB] Get:152 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsepol2 armhf 3.4-2.1 [228 kB] Get:153 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libselinux1-dev armhf 3.4-1+b2 [143 kB] Get:154 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsepol-dev armhf 3.4-2.1 [309 kB] Get:155 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-16-0 armhf 10.42-1 [210 kB] Get:156 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-32-0 armhf 10.42-1 [201 kB] Get:157 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-posix3 armhf 10.42-1 [55.1 kB] Get:158 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-dev armhf 10.42-1 [648 kB] Get:159 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre2-8-0 armhf 10.42-1 [225 kB] Get:160 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libselinux1 armhf 3.4-1+b2 [64.5 kB] Get:161 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgpg-error-dev armhf 1.46-1 [119 kB] Get:162 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgpg-error0 armhf 1.46-1 [66.2 kB] Get:163 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcrypt20-dev armhf 1.10.1-3 [685 kB] Get:164 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcrypt20 armhf 1.10.1-3 [627 kB] Get:165 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd-dev armhf 252.12-1~deb12u1+rpi1 [352 kB] Get:166 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libargon2-dev armhf 0~20171227-0.3+deb12u1 [23.3 kB] Get:167 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libargon2-1 armhf 0~20171227-0.3+deb12u1 [19.1 kB] Get:168 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libblkid-dev armhf 2.38.1-5 [162 kB] Get:169 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libblkid1 armhf 2.38.1-5 [131 kB] Get:170 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dmsetup armhf 2:1.02.185-2 [81.8 kB] Get:171 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libudev-dev armhf 252.12-1~deb12u1+rpi1 [52.0 kB] Get:172 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libattr1-dev armhf 1:2.5.1-4 [34.5 kB] Get:173 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libattr1 armhf 1:2.5.1-4 [21.2 kB] Get:174 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libacl1-dev armhf 2.3.1-3 [89.7 kB] Get:175 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libacl1 armhf 2.3.1-3 [28.8 kB] Get:176 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcap2 armhf 1:2.66-4 [23.5 kB] Get:177 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf kmod armhf 30+20221128-1 [82.2 kB] Get:178 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libkmod2 armhf 30+20221128-1 [49.9 kB] Get:179 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsemanage-common all 3.4-1 [21.6 kB] Get:180 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsemanage2 armhf 3.4-1+b2 [75.6 kB] Get:181 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf passwd armhf 1:4.13+dfsg1-1 [905 kB] Get:182 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam-modules-bin armhf 1.5.2-6 [71.5 kB] Get:183 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam-modules armhf 1.5.2-6 [274 kB] Get:184 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf adduser all 3.134 [183 kB] Get:185 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf less armhf 590-2 [114 kB] Get:186 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpam-systemd armhf 252.12-1~deb12u1+rpi1 [200 kB] Get:187 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd-timesyncd armhf 252.12-1~deb12u1+rpi1 [62.9 kB] Get:188 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ifupdown armhf 0.8.41 [55.1 kB] Get:189 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-xorg-video-fbdev armhf 1:0.5.0-2 [24.2 kB] Get:190 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-xorg-core armhf 2:21.1.7-3 [3450 kB] Get:191 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd armhf 252.12-1~deb12u1+rpi1 [2881 kB] Get:192 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf udev armhf 252.12-1~deb12u1+rpi1 [1577 kB] Get:193 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libudev1 armhf 252.12-1~deb12u1+rpi1 [99.1 kB] Get:194 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdevmapper1.02.1 armhf 2:1.02.185-2 [123 kB] Get:195 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-c5 armhf 0.16-2 [40.0 kB] Get:196 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcryptsetup12 armhf 2:2.6.1-4~deb12u1 [191 kB] Get:197 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libip4tc2 armhf 1.8.9-2 [17.1 kB] Get:198 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblz4-1 armhf 1.9.4-1+rpi1+b1 [52.7 kB] Get:199 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmount-dev armhf 2.38.1-5 [22.2 kB] Get:200 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmount1 armhf 2.38.1-5 [143 kB] Get:201 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libseccomp2 armhf 2.5.4-1+rpi1+b1 [46.2 kB] Get:202 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd-shared armhf 252.12-1~deb12u1+rpi1 [1511 kB] Get:203 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpam-runtime all 1.5.2-6 [161 kB] Get:204 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd-sysv armhf 252.12-1~deb12u1+rpi1 [41.9 kB] Get:205 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdw1 armhf 0.188-2.1+rpi1 [212 kB] Get:206 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libelf1 armhf 0.188-2.1+rpi1 [171 kB] Get:207 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbpf1 armhf 1:1.1.0-1 [122 kB] Get:208 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxtables12 armhf 1.8.9-2 [27.9 kB] Get:209 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcap2-bin armhf 1:2.66-4 [32.4 kB] Get:210 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iproute2 armhf 6.1.0-3 [899 kB] Get:211 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsmartcols1 armhf 2.38.1-5 [90.9 kB] Get:212 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf login armhf 1:4.13+dfsg1-1 [611 kB] Get:213 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfdisk1 armhf 2.38.1-5 [178 kB] Get:214 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fdisk armhf 2.38.1-5 [127 kB] Get:215 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf util-linux-extra armhf 2.38.1-5 [97.5 kB] Get:216 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf util-linux armhf 2.38.1-5 [1063 kB] Get:217 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xkb-data all 2.35.1-1 [764 kB] Get:218 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf kbd armhf 2.5.1-1 [300 kB] Get:219 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnumber-compare-perl all 0.03-3 [6332 B] Get:220 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtext-glob-perl all 0.11-3 [7676 B] Get:221 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfile-find-rule-perl all 0.34-3 [26.6 kB] Get:222 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf usrmerge all 35 [12.5 kB] Get:223 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf init-system-helpers all 1.65.2 [49.8 kB] Get:224 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf console-setup-linux all 1.221 [1882 kB] Get:225 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf console-setup all 1.221 [102 kB] Get:226 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf keyboard-configuration all 1.221 [416 kB] Get:227 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf sysvinit-utils armhf 3.06-4 [29.2 kB] Get:228 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf lsb-base all 11.6+rpi1 [4808 B] Get:229 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf x11-common all 1:7.7+23 [252 kB] Get:230 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf x11proto-dev all 2022.1-1 [599 kB] Get:231 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb1-dev armhf 1.15-1 [175 kB] Get:232 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb1 armhf 1.15-1 [139 kB] Get:233 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-dev armhf 2:1.8.4-2+deb12u1 [769 kB] Get:234 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-data all 2:1.8.4-2+deb12u1 [292 kB] Get:235 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-6 armhf 2:1.8.4-2+deb12u1 [691 kB] Get:236 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx11-xcb1 armhf 2:1.8.4-2+deb12u1 [192 kB] Get:237 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxext6 armhf 2:1.3.4-1 [48.0 kB] Get:238 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxt-dev armhf 1:1.2.1-1.1 [368 kB] Get:239 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxt6 armhf 1:1.2.1-1.1 [155 kB] Get:240 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmu6 armhf 2:1.1.3-3 [52.0 kB] Get:241 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxpm-dev armhf 1:3.5.12-1.1 [96.5 kB] Get:242 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxpm4 armhf 1:3.5.12-1.1 [42.0 kB] Get:243 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxaw7 armhf 2:1.0.14-1 [165 kB] Get:244 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxrender1 armhf 1:0.9.10-1.1 [30.0 kB] Get:245 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxrandr2 armhf 2:1.5.2-2 [35.5 kB] Get:246 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf x11-xkb-utils armhf 7.7+7 [140 kB] Get:247 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-common all 2:21.1.7-3 [2382 kB] Get:248 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcvt0 armhf 0.1.2-1 [5976 B] Get:249 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgl1 armhf 1.6.0-1 [89.9 kB] Get:250 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-common all 2.4.114-1+rpi1 [7276 B] Get:251 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm2 armhf 2.4.114-1+rpi1 [32.8 kB] Get:252 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-server0 armhf 1.21.0-1 [29.3 kB] Get:253 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libegl-mesa0 armhf 22.3.6-1+deb12u1+rpi1 [93.0 kB] Get:254 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgbm1 armhf 22.3.6-1+deb12u1+rpi1 [34.3 kB] Get:255 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-client0 armhf 1.21.0-1 [23.3 kB] Get:256 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-dri2-0 armhf 1.15-1 [107 kB] Get:257 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-dri3-0 armhf 1.15-1 [107 kB] Get:258 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-present0 armhf 1.15-1 [105 kB] Get:259 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-randr0 armhf 1.15-1 [116 kB] Get:260 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-sync1 armhf 1.15-1 [108 kB] Get:261 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xfixes0 armhf 1.15-1 [109 kB] Get:262 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-amdgpu1 armhf 2.4.114-1+rpi1 [19.3 kB] Get:263 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libz3-4 armhf 4.8.12-3.1 [5797 kB] Get:264 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libedit-dev armhf 3.1-20221030-2 [94.4 kB] Get:265 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libedit2 armhf 3.1-20221030-2 [76.2 kB] Get:266 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf icu-devtools armhf 72.1-3 [175 kB] Get:267 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libicu-dev armhf 72.1-3 [9959 kB] Get:268 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxml2-dev armhf 2.9.14+dfsg-1.3~deb12u1 [637 kB] Get:269 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxml2 armhf 2.9.14+dfsg-1.3~deb12u1 [570 kB] Get:270 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libllvm15 armhf 1:15.0.6-4+rpi1+b1 [20.7 MB] Get:271 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-nouveau2 armhf 2.4.114-1+rpi1 [17.0 kB] Get:272 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdrm-radeon1 armhf 2.4.114-1+rpi1 [20.7 kB] Get:273 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsensors-dev armhf 1:3.6.0-7.1 [39.5 kB] Get:274 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsensors-config all 1:3.6.0-7.1 [14.3 kB] Get:275 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsensors5 armhf 1:3.6.0-7.1 [31.6 kB] Get:276 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgl1-mesa-dri armhf 22.3.6-1+deb12u1+rpi1 [5636 kB] Get:277 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libglx-mesa0 armhf 22.3.6-1+deb12u1+rpi1 [130 kB] Get:278 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libglapi-mesa armhf 22.3.6-1+deb12u1+rpi1 [45.8 kB] Get:279 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-glx0 armhf 1.15-1 [121 kB] Get:280 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-shm0 armhf 1.15-1 [106 kB] Get:281 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfixes3 armhf 1:6.0.0-2 [21.2 kB] Get:282 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglx0 armhf 1.6.0-1 [32.0 kB] Get:283 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgles2 armhf 1.6.0-1 [17.2 kB] Get:284 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libegl1 armhf 1.6.0-1 [28.3 kB] Get:285 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglvnd0 armhf 1.6.0-1 [53.8 kB] Get:286 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libepoxy0 armhf 1.5.10-1 [172 kB] Get:287 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpciaccess0 armhf 0.17-2 [48.8 kB] Get:288 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpixman-1-0 armhf 0.42.2-1 [461 kB] Err:288 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpixman-1-0 armhf 0.42.2-1 Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] Get:289 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libunwind8 armhf 1.6.2-3 [42.6 kB] Get:290 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfreetype-dev armhf 2.12.1+dfsg-5 [493 kB] Get:291 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfreetype6-dev armhf 2.12.1+dfsg-5 [46.4 kB] Get:292 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbrotli-dev armhf 1.0.9-2+b3 [270 kB] Get:293 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbrotli1 armhf 1.0.9-2+b3 [258 kB] Get:294 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpng-dev armhf 1.6.39-2 [336 kB] Get:295 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpng16-16 armhf 1.6.39-2 [258 kB] Get:296 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfreetype6 armhf 2.12.1+dfsg-5 [329 kB] Get:297 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfont2 armhf 1:2.0.6-1 [120 kB] Get:298 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mount armhf 2.38.1-5 [125 kB] Get:299 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd0 armhf 252.12-1~deb12u1+rpi1 [299 kB] Get:300 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-daemon armhf 1.14.8-2~deb12u1 [168 kB] Get:301 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-system-bus-common all 1.14.8-2~deb12u1 [78.5 kB] Get:302 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcups2 armhf 2.4.2-3+deb12u1 [205 kB] Get:303 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpopt0 armhf 1.19+dfsg-1 [40.4 kB] Get:304 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwbclient0 armhf 2:4.17.8+dfsg-2 [47.5 kB] Get:305 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf samba-libs armhf 2:4.17.8+dfsg-2 [4832 kB] Get:306 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libproc2-0 armhf 2:4.0.2-3 [53.6 kB] Get:307 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf procps armhf 2:4.0.2-3 [679 kB] Get:308 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf netbase all 6.4 [12.8 kB] Get:309 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-dnspython all 2.3.0-1 [152 kB] Get:310 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf tdb-tools armhf 1.4.8-2 [26.0 kB] Get:311 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssl armhf 3.0.9-1 [1365 kB] Get:312 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ca-certificates all 20230311 [153 kB] Get:313 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-pip-whl all 23.0.1+dfsg-1 [1717 kB] Get:314 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-setuptools-whl all 66.1.1-1 [1111 kB] Get:315 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3.11-venv armhf 3.11.2-6 [5892 B] Get:316 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libi2c0 armhf 4.3-2+b2 [9156 B] Get:317 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf rpi.gpio-common armhf 0.7.1~a4-1+b2 [6808 B] Get:318 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-setuptools all 66.1.1-1 [521 kB] Get:319 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-pkg-resources all 66.1.1-1 [296 kB] Get:320 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgfortran5 armhf 12.2.0-14+rpi1 [238 kB] Get:321 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libopenblas0-pthread armhf 0.3.21+ds-4+rpi1 [2159 kB] Get:322 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libblas3 armhf 3.11.0-2 [100.0 kB] Get:323 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libatlas3-base armhf 3.10.3-13+rpi1 [2356 kB] Get:324 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblapack3 armhf 3.11.0-2 [1624 kB] Get:325 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglib2.0-data all 2.74.6-1 [1208 kB] Get:326 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libffi-dev armhf 3.4.4-1 [60.4 kB] Get:327 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpkgconf3 armhf 1.8.1-1 [31.3 kB] Get:328 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkgconf-bin armhf 1.8.1-1 [27.8 kB] Get:329 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf m4 armhf 1.4.19-3 [256 kB] Get:330 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf debianutils armhf 5.7-0.4 [101 kB] Get:331 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf autoconf all 2.71-3 [332 kB] Get:332 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkg-config armhf 1.8.1-1 [13.7 kB] Get:333 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkgconf armhf 1.8.1-1 [25.9 kB] Get:334 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbz2-dev armhf 1.0.8-5+b2 [26.8 kB] Get:335 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf bzip2 armhf 1.0.8-5+b2 [47.4 kB] Get:336 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbz2-1.0 armhf 1.0.8-5+b2 [43.5 kB] Get:337 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgdbm-compat4 armhf 1.23-3 [47.8 kB] Get:338 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxxhash0 armhf 0.8.1-1 [27.8 kB] Get:339 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapt-pkg6.0 armhf 2.6.1 [805 kB] Get:340 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf debconf all 1.5.82 [121 kB] Get:341 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bash armhf 5.2.15-2 [1365 kB] Get:342 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bsdutils armhf 1:2.38.1-5 [84.2 kB] Get:343 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf coreutils armhf 9.1-1 [2702 kB] Get:344 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dash armhf 0.5.12-2 [78.9 kB] Get:345 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf diffutils armhf 1:3.8-4 [332 kB] Get:346 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf findutils armhf 4.9.0-4 [616 kB] Get:347 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf grep armhf 3.8-5 [404 kB] Get:348 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gzip armhf 1.12-1 [132 kB] Get:349 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf hostname armhf 3.23+nmu1 [9908 B] Get:350 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf sed armhf 4.9-1 [318 kB] Get:351 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdebconfclient0 armhf 0.270 [9536 B] Get:352 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf base-passwd armhf 3.6.1 [57.6 kB] Get:353 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ncurses-base all 6.4-4 [261 kB] Get:354 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libksba8 armhf 1.6.3-2 [107 kB] Get:355 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libassuan0 armhf 2.5.5-5 [42.2 kB] Get:356 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gnupg-l10n all 2.2.40-1.1 [1093 kB] Get:357 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gnupg-utils armhf 2.2.40-1.1 [812 kB] Get:358 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgconf armhf 2.2.40-1.1 [540 kB] Err:358 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgconf armhf 2.2.40-1.1 Connection timed out [IP: 219.100.92.228 80] Get:359 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dirmngr armhf 2.2.40-1.1 [731 kB] Get:360 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg armhf 2.2.40-1.1 [843 kB] Get:361 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg-agent armhf 2.2.40-1.1 [636 kB] Get:362 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg-wks-client armhf 2.2.40-1.1 [518 kB] Get:363 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpg-wks-server armhf 2.2.40-1.1 [511 kB] Get:364 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgv armhf 2.2.40-1.1 [601 kB] Get:365 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gpgsm armhf 2.2.40-1.1 [621 kB] Get:366 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gnupg all 2.2.40-1.1 [846 kB] Get:367 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pinentry-curses armhf 1.2.1-1 [72.0 kB] Get:368 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apt armhf 2.6.1 [1296 kB] Get:369 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf filezilla armhf 3.63.0-1 [1598 kB] Get:370 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf filezilla-common all 3.63.0-1 [2324 kB] Get:371 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfilezilla-common all 0.41.0-2 [72.5 kB] Get:372 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfilezilla34 armhf 0.41.0-2 [218 kB] Get:373 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgdk-pixbuf-2.0-0 armhf 2.42.10+dfsg-1+b1 [123 kB] Get:374 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgdk-pixbuf2.0-common all 2.42.10+dfsg-1 [306 kB] Get:375 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf shared-mime-info armhf 2.2-1 [726 kB] Get:376 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjpeg62-turbo-dev armhf 1:2.1.5-2 [258 kB] Get:377 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjpeg62-turbo armhf 1:2.1.5-2 [143 kB] Get:378 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdeflate-dev armhf 1.14-1 [48.1 kB] Get:379 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdeflate0 armhf 1.14-1 [50.9 kB] Get:380 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjbig-dev armhf 2.1-6.1 [27.2 kB] Get:381 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjbig0 armhf 2.1-6.1 [27.0 kB] Get:382 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblerc4 armhf 4.0.0+ds-2 [133 kB] Get:383 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebp7 armhf 1.2.4-0.2 [242 kB] Get:384 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtiff6 armhf 4.5.0-6 [293 kB] Get:385 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gtk-update-icon-cache armhf 3.24.37-2 [42.3 kB] Get:386 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf adwaita-icon-theme all 43-1 [5124 kB] Get:387 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf at-spi2-common all 2.46.0-5 [162 kB] Get:388 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatk1.0-0 armhf 2.46.0-5 [41.4 kB] Get:389 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxi6 armhf 2:1.8-1 [78.1 kB] Get:390 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatspi2.0-0 armhf 2.46.0-5 [63.8 kB] Get:391 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatk-bridge2.0-0 armhf 2.46.0-5 [55.6 kB] Get:392 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfontconfig-dev armhf 2.14.1-4 [383 kB] Get:393 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fonts-dejavu-core all 2.37-6 [1068 kB] Get:394 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fonts-urw-base35 all 20200910-7 [10.8 MB] Get:395 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fontconfig-config armhf 2.14.1-4 [315 kB] Get:396 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfontconfig1 armhf 2.14.1-4 [366 kB] Get:397 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-render0 armhf 1.15-1 [114 kB] Get:398 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcairo-gobject2 armhf 1.16.0-7 [111 kB] Get:399 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcairo2 armhf 1.16.0-7 [482 kB] Get:400 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblcms2-2 armhf 2.14-2 [124 kB] Get:401 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcolord2 armhf 1.4.6-2.2 [115 kB] Get:402 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfribidi0 armhf 1.0.8-2.1 [63.7 kB] Get:403 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libharfbuzz0b armhf 6.0.0+dfsg-3 [1894 kB] Get:404 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxft2 armhf 2.3.6-1 [53.7 kB] Get:405 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpangocairo-1.0-0 armhf 1.50.12+ds-1 [30.1 kB] Get:406 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpangoft2-1.0-0 armhf 1.50.12+ds-1 [40.5 kB] Get:407 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpango-1.0-0 armhf 1.50.12+ds-1 [186 kB] Get:408 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpangoxft-1.0-0 armhf 1.50.12+ds-1 [24.2 kB] Get:409 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fontconfig armhf 2.14.1-4 [449 kB] Get:410 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libthai-data all 0.1.29-1 [176 kB] Get:411 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdatrie1 armhf 0.2.13-2+b2 [39.9 kB] Get:412 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libthai0 armhf 0.1.29-1 [54.5 kB] Get:413 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-cursor0 armhf 1.21.0-1 [13.2 kB] Get:414 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwayland-egl1 armhf 1.21.0-1 [8448 B] Get:415 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcursor1 armhf 1:1.2.1-1 [38.0 kB] Get:416 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxdamage1 armhf 1:1.1.6-1 [14.7 kB] Get:417 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxinerama1 armhf 2:1.1.4-3 [17.4 kB] Get:418 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xkb1 armhf 1.15-1 [126 kB] Get:419 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxkbcommon-x11-0 armhf 1.5.0-1 [13.8 kB] Get:420 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxkbcommon0 armhf 1.5.0-1 [93.1 kB] Get:421 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dconf-gsettings-backend armhf 0.40.0-4 [23.1 kB] Get:422 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dconf-service armhf 0.40.0-4 [28.9 kB] Get:423 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdconf1 armhf 0.40.0-4 [36.0 kB] Get:424 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgtk-3-common all 3.24.37-2 [3891 kB] Get:425 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgtk-3-0 armhf 3.24.37-2 [2351 kB] Get:426 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpugixml1v5 armhf 1.13-0.2 [71.8 kB] Get:427 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxbase3.2-1 armhf 3.2.2+dfsg-2 [820 kB] Get:428 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnotify4 armhf 0.8.1-1 [27.5 kB] Get:429 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxtst6 armhf 2:1.2.3-1.1 [26.3 kB] Get:430 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxgtk3.2-1 armhf 3.2.2+dfsg-2 [3737 kB] Get:431 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbabl-0.1-0 armhf 1:0.1.98-1+rpi1 [264 kB] Get:432 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaom3 armhf 3.6.0-1 [1332 kB] Get:433 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libva-x11-2 armhf 2.17.0-1 [19.6 kB] Get:434 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libva-drm2 armhf 2.17.0-1 [15.9 kB] Get:435 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libva2 armhf 2.17.0-1 [61.1 kB] Get:436 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvdpau1 armhf 1.5-2 [23.9 kB] Get:437 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ocl-icd-libopencl1 armhf 2.3.1-1 [40.3 kB] Get:438 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavutil57 armhf 7:5.1.3-1 [325 kB] Get:439 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcodec2-1.0 armhf 1.0.5-1 [8151 kB] Get:440 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdav1d6 armhf 1.0.0-2+rpi1 [205 kB] Get:441 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgsm1 armhf 1.0.22-1 [28.3 kB] Get:442 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libhwy1 armhf 1.0.3-3+rpi1 [20.9 kB] Get:443 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjxl0.7 armhf 0.7.0-10 [627 kB] Get:444 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmp3lame0 armhf 3.100-6 [347 kB] Get:445 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenjp2-7 armhf 2.5.0-2 [164 kB] Get:446 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopus0 armhf 1.3.1-3 [171 kB] Get:447 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf librav1e0 armhf 0.5.1-6 [521 kB] Get:448 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librsvg2-common armhf 2.54.7+dfsg-1~deb12u1 [21.0 kB] Get:449 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librsvg2-2 armhf 2.54.7+dfsg-1~deb12u1 [2205 kB] Get:450 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsnappy1v5 armhf 1.1.9-3 [23.9 kB] Get:451 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspeex1 armhf 1.2.1-2 [45.5 kB] Err:451 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspeex1 armhf 1.2.1-2 Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] Get:452 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsvtav1enc1 armhf 1.4.1+dfsg-1 [880 kB] Get:453 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libswresample4 armhf 7:5.1.3-1 [85.1 kB] Get:454 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libogg0 armhf 1.3.5-3 [21.7 kB] Get:455 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtheora0 armhf 1.1.1+dfsg.1-16.1 [130 kB] Get:456 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvpx7 armhf 1.12.0-1 [1210 kB] Get:457 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebp-dev armhf 1.2.4-0.2 [350 kB] Get:458 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebpdemux2 armhf 1.2.4-0.2 [98.4 kB] Get:459 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwebpmux3 armhf 1.2.4-0.2 [106 kB] Get:460 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libx264-164 armhf 2:0.164.3095+gitbaee400-3+rpi1 [688 kB] Get:461 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libx265-199 armhf 3.5-2 [548 kB] Get:462 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libzvbi0 armhf 0.2.41-1 [241 kB] Get:463 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libzvbi-common all 0.2.41-1 [69.7 kB] Get:464 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavcodec59 armhf 7:5.1.3-1 [4578 kB] Get:465 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libudfread0 armhf 1.1.2-1 [14.6 kB] Get:466 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libbluray2 armhf 1:1.3.4-1 [120 kB] Get:467 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libchromaprint1 armhf 1.5.1-2+b2 [33.7 kB] Get:468 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgme0 armhf 0.6.3-6 [105 kB] Get:469 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmpg123-0 armhf 1.31.2-1 [126 kB] Get:470 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenmpt0 armhf 0.6.9-1 [597 kB] Get:471 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librabbitmq4 armhf 0.11.0-1+b1 [38.3 kB] Get:472 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcjson1 armhf 1.7.15-1 [20.9 kB] Get:473 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmbedcrypto7 armhf 2.28.3-1 [241 kB] Get:474 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librist4 armhf 0.2.7+dfsg-1 [67.1 kB] Get:475 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsrt1.5-gnutls armhf 1.5.1-1 [263 kB] Get:476 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libssh-gcrypt-4 armhf 0.10.5-2 [185 kB] Get:477 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libzmq5 armhf 4.3.4-6 [226 kB] Get:478 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavformat59 armhf 7:5.1.3-1 [1011 kB] Get:479 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgomp1 armhf 12.2.0-14+rpi1 [95.4 kB] Get:480 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-glib-1.0-common all 1.6.6-1 [57.1 kB] Get:481 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjson-glib-1.0-0 armhf 1.6.6-1 [57.1 kB] Get:482 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libimath-3-1-29 armhf 3.1.6-1+b1 [37.4 kB] Get:483 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenexr-3-1-30 armhf 3.1.5-5 [814 kB] Get:484 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnspr4 armhf 2:4.35-1 [90.9 kB] Get:485 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnss3 armhf 2:3.87.1-1 [1090 kB] Get:486 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpoppler126 armhf 22.12.0-2 [1682 kB] Get:732 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf g++ armhf 4:12.2.0-3+rpi1 [1344 B] Get:487 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpoppler-glib8 armhf 22.12.0-2 [108 kB] Get:488 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libraw20 armhf 0.20.2-2.1 [323 kB] Get:489 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libswscale6 armhf 7:5.1.3-1 [170 kB] Get:490 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsuitesparseconfig5 armhf 1:5.12.0+dfsg-2 [23.6 kB] Get:491 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libamd2 armhf 1:5.12.0+dfsg-2 [30.2 kB] Get:492 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcamd2 armhf 1:5.12.0+dfsg-2 [30.7 kB] Get:493 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libccolamd2 armhf 1:5.12.0+dfsg-2 [31.7 kB] Get:494 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcolamd2 armhf 1:5.12.0+dfsg-2 [28.3 kB] Get:495 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcholmod3 armhf 1:5.12.0+dfsg-2 [212 kB] Get:496 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libumfpack5 armhf 1:5.12.0+dfsg-2 [128 kB] Get:497 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgegl-common all 1:0.4.42-2 [745 kB] Get:498 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgegl-0.4-0 armhf 1:0.4.42-2 [1501 kB] Get:499 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexiv2-27 armhf 0.27.6-1 [1418 kB] Get:500 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgexiv2-2 armhf 0.14.0-1 [68.0 kB] Get:501 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gimp armhf 2.10.34-1 [3526 kB] Get:502 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgimp2.0 armhf 2.10.34-1 [736 kB] Get:503 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gimp-data all 2.10.34-1 [14.2 MB] Get:504 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcdt5 armhf 2.42.2-7+b2 [37.3 kB] Get:505 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcgraph6 armhf 2.42.2-7+b2 [56.0 kB] Get:506 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libabsl20220623 armhf 20220623.1-1+rpi1 [361 kB] Get:507 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgav1-1 armhf 0.18.0-1+rpi1+b1 [285 kB] Get:508 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libyuv0 armhf 0.0~git20230123.b2528b0-1 [82.7 kB] Get:509 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavif15 armhf 0.11.1-1 [84.1 kB] Get:510 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libavif-dev armhf 0.11.1-1 [41.7 kB] Get:511 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libde265-0 armhf 1.0.11-1+rpi1 [137 kB] Get:512 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libheif1 armhf 1.15.1-1 [178 kB] Get:513 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaom-dev armhf 3.6.0-1 [1528 kB] Get:514 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdav1d-dev armhf 1.0.0-2+rpi1 [25.7 kB] Get:515 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libde265-dev armhf 1.0.11-1+rpi1 [13.8 kB] Get:516 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libx265-dev armhf 3.5-2 [571 kB] Get:517 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libheif-dev armhf 1.15.1-1 [33.5 kB] Get:518 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjpeg-dev armhf 1:2.1.5-2 [71.8 kB] Get:519 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzstd-dev armhf 1.5.4+dfsg2-5 [297 kB] Get:520 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtiffxx6 armhf 4.5.0-6 [144 kB] Get:521 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblerc-dev armhf 4.0.0+ds-2 [147 kB] Get:522 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtiff-dev armhf 4.5.0-6 [415 kB] Get:523 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvpx-dev armhf 1.12.0-1 [658 kB] Get:524 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgd-dev armhf 2.3.3-9 [237 kB] Get:525 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgd3 armhf 2.3.3-9 [103 kB] Get:526 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgts-0.7-5 armhf 0.7.6+darcs121130-5 [134 kB] Get:527 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf autotools-dev all 20220109.1 [51.6 kB] Get:528 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf automake all 1:1.16.5-1.3 [823 kB] Get:529 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libltdl-dev armhf 2.4.7-5 [161 kB] Get:530 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libltdl7 armhf 2.4.7-5 [390 kB] Get:531 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpathplan4 armhf 2.42.2-7+b2 [39.5 kB] Get:532 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgvc6 armhf 2.42.2-7+b2 [566 kB] Get:533 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgvpr2 armhf 2.42.2-7+b2 [162 kB] Get:534 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf liblab-gamut1 armhf 2.42.2-7+b2 [197 kB] Get:535 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf graphviz armhf 2.42.2-7+b2 [479 kB] Get:536 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgpm2 armhf 1.20.7-10+b2 [35.5 kB] Get:537 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libslang2 armhf 2.3.3-3 [500 kB] Get:538 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaa1 armhf 1.4p5-50 [50.8 kB] Get:539 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs9-common all 10.0.0~dfsg-11+deb12u1 [27.6 kB] Get:540 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs-common all 10.0.0~dfsg-11+deb12u1 [149 kB] Get:541 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs10-common all 10.0.0~dfsg-11+deb12u1 [586 kB] Get:542 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf poppler-data all 0.4.12-1 [1601 kB] Get:543 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libidn12 armhf 1.41-1+b1 [77.0 kB] Get:544 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjbig2dec0 armhf 0.19-3+b2 [58.6 kB] Get:545 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpaper1 armhf 1.1.29 [11.9 kB] Get:546 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs10 armhf 10.0.0~dfsg-11+deb12u1 [2055 kB] Get:547 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgudev-1.0-0 armhf 237-2 [13.2 kB] Get:548 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwmf0.2-7 armhf 0.2.12-5.1 [25.8 kB] Get:549 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwmflite-0.2-7 armhf 0.2.12-5.1 [67.9 kB] Get:550 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwmf-0.2-7 armhf 0.2.12-5.1 [101 kB] Get:551 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libssl-dev armhf 3.0.9-1 [2099 kB] Get:552 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libuv1-dev armhf 1.44.2-1+rpi1 [157 kB] Get:553 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libuv1 armhf 1.44.2-1+rpi1 [125 kB] Get:554 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libc-ares2 armhf 1.18.1-3 [95.4 kB] Get:555 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnghttp2-14 armhf 1.52.0-1 [60.6 kB] Get:556 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-xtend all 4.0.2-3 [3932 B] Get:557 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnode-dev armhf 18.13.0+dfsg1-1+rpi1 [498 kB] Get:558 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf nodejs armhf 18.13.0+dfsg1-1+rpi1 [304 kB] Get:559 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-acorn all 8.8.1+ds+~cs25.17.7-2 [128 kB] Get:560 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cjs-module-lexer all 1.2.2+dfsg-5 [30.1 kB] Get:561 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-busboy all 1.6.0+~cs2.6.0-2 [16.9 kB] Get:562 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-undici all 5.15.0+dfsg1+~cs20.10.9.3-1+deb12u1 [284 kB] Get:563 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnode108 armhf 18.13.0+dfsg1-1+rpi1 [8798 kB] Get:564 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libevdev2 armhf 1.13.0+dfsg-1+rpi1 [27.9 kB] Get:565 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libinput10 armhf 1.22.1-1 [106 kB] Get:566 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libinput-bin armhf 1.22.1-1 [21.7 kB] Get:567 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwacom-common all 2.6.0-1 [58.4 kB] Get:568 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwacom9 armhf 2.6.0-1 [18.5 kB] Get:569 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf logsave armhf 1.47.0-2 [19.1 kB] Get:570 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf klibc-utils armhf 2.0.12-1+rpi1 [87.1 kB] Get:571 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf initramfs-tools all 0.142 [72.9 kB] Get:572 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf initramfs-tools-core all 0.142 [105 kB] Get:573 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libext2fs2 armhf 1.47.0-2 [184 kB] Get:574 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf e2fsprogs armhf 1.47.0-2 [521 kB] Get:575 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libklibc armhf 2.0.12-1+rpi1 [42.1 kB] Get:576 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf linux-base all 4.9 [31.8 kB] Get:577 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpio armhf 2.13+dfsg-7.1 [229 kB] Get:578 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cron-daemon-common all 3.0pl1-162 [12.7 kB] Get:579 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cron armhf 3.0pl1-162 [68.2 kB] Get:580 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsctp-dev armhf 1.0.19+dfsg-2 [71.5 kB] Get:581 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsctp1 armhf 1.0.19+dfsg-2 [29.1 kB] Get:582 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapr1-dev armhf 1.7.2-3 [732 kB] Get:583 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1-dbd-sqlite3 armhf 1.6.3-1 [12.3 kB] Get:584 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1-ldap armhf 1.6.3-1 [11.3 kB] Get:585 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldap2-dev all 2.5.13+dfsg-5+rpi1 [22.7 kB] Get:586 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libldap-dev armhf 2.5.13+dfsg-5+rpi1 [259 kB] Get:587 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1-dev armhf 1.6.3-1 [397 kB] Get:588 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaprutil1 armhf 1.6.3-1 [75.2 kB] Get:589 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libapr1 armhf 1.7.2-3 [82.4 kB] Get:590 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf curl armhf 7.88.1-10+rpi1 [300 kB] Get:591 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpsl5 armhf 0.21.2-1 [57.5 kB] Get:592 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libssh2-1 armhf 1.10.0-3+b1 [161 kB] Get:593 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl4 armhf 7.88.1-10+rpi1 [343 kB] Get:594 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblua5.3-0 armhf 5.3.6-2 [98.3 kB] Get:595 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2 armhf 2.4.57-2 [215 kB] Get:596 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-bin armhf 2.4.57-2 [1161 kB] Get:597 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-data all 2.4.57-2 [160 kB] Get:598 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-utils armhf 2.4.57-2 [201 kB] Get:599 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf flex armhf 2.6.4-8.2 [391 kB] Get:600 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf git armhf 1:2.39.2-1.1 [5459 kB] Get:601 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf git-man all 1:2.39.2-1.1 [2049 kB] Get:602 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl4-gnutls-dev armhf 7.88.1-10+rpi1 [419 kB] Get:603 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl3-gnutls armhf 7.88.1-10+rpi1 [337 kB] Get:604 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liberror-perl all 0.17029-2 [29.0 kB] Get:605 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcbor0.8 armhf 0.8.0-2 [22.8 kB] Get:606 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfido2-1 armhf 1.12.0-2 [67.6 kB] Get:607 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssh-sftp-server armhf 1:9.2p1-2 [55.5 kB] Get:608 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssh-server armhf 1:9.2p1-2 [377 kB] Get:609 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openssh-client armhf 1:9.2p1-2 [818 kB] Get:610 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf runit-helper all 2.15.2 [6520 B] Get:611 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwrap0-dev armhf 7.6.q-32 [18.4 kB] Get:612 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwrap0 armhf 7.6.q-32 [52.6 kB] Get:613 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libhiredis0.14 armhf 0.14.1-3 [30.7 kB] Get:614 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libhashkit2 armhf 1.1.4-1 [16.3 kB] Get:615 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmemcached11 armhf 1.1.4-1 [70.2 kB] Get:616 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmemcachedutil2 armhf 1.1.4-1 [13.7 kB] Get:617 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf proftpd-core armhf 1.3.8+dfsg-4+deb12u1 [2437 kB] Get:618 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libatopology2 armhf 1.2.8-1+b1 [47.0 kB] Get:619 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasound2-dev armhf 1.2.8-1+b1 [110 kB] Get:620 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasound2 armhf 1.2.8-1+b1 [302 kB] Get:621 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libasound2-data all 1.2.8-1 [20.5 kB] Get:622 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfftw3-single3 armhf 3.3.10-1 [509 kB] Get:623 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgstreamer1.0-0 armhf 1.22.0-2 [1073 kB] Get:624 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liborc-0.4-0 armhf 1:0.4.33-2 [135 kB] Get:625 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iso-codes all 4.15.0-1 [2906 kB] Get:626 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-plugins-base1.0-0 armhf 1.22.0-3+deb12u1 [840 kB] Get:627 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libflac12 armhf 1.4.2+ds-2 [149 kB] Get:628 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsndfile1 armhf 1.2.0-1 [177 kB] Get:629 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpulsedsp armhf 16.1+dfsg1-2+b2 [34.8 kB] Get:630 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf pulseaudio armhf 16.1+dfsg1-2+b2 [1079 kB] Get:631 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf pulseaudio-utils armhf 16.1+dfsg1-2+b2 [81.8 kB] Get:632 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasyncns0 armhf 0.8-6+b3 [12.0 kB] Get:633 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpulse0 armhf 16.1+dfsg1-2+b2 [239 kB] Get:634 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspeexdsp1 armhf 1.2.1-1 [33.6 kB] Get:635 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjack-dev armhf 1:0.126.0-2 [148 kB] Get:636 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjack0 armhf 1:0.126.0-2 [81.1 kB] Get:637 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsamplerate0 armhf 0.2.2-3 [943 kB] Get:638 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libasound2-plugins armhf 1.2.7.1-1 [66.4 kB] Get:639 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rsync armhf 3.2.7-1 [368 kB] Get:640 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf sgml-base all 1.31 [15.4 kB] Get:641 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf sudo armhf 1.9.13p3-1+deb12u1 [1825 kB] Get:642 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre3-dev armhf 2:8.39-15 [576 kB] Get:643 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre16-3 armhf 2:8.39-15 [234 kB] Err:643 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre16-3 armhf 2:8.39-15 Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] Get:644 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre32-3 armhf 2:8.39-15 [225 kB] Get:645 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcrecpp0v5 armhf 2:8.39-15 [141 kB] Get:646 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcre3 armhf 2:8.39-15 [313 kB] Get:647 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgc1 armhf 1:8.2.2-3 [235 kB] Get:648 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc4 armhf 12.2.0-14+rpi1 [33.6 kB] Get:649 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc-10-dev armhf 10.4.0-7+rpi1 [159 kB] Get:650 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-11-base armhf 11.3.0-12+rpi1 [38.6 kB] Get:651 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasan6 armhf 11.3.0-12+rpi1 [1946 kB] Get:652 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libubsan1 armhf 12.2.0-14+rpi1 [861 kB] Get:653 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf g++-10 armhf 10.4.0-7+rpi1 [7360 kB] Get:654 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-10 armhf 10.4.0-7+rpi1 [13.4 MB] Get:655 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++-10-dev armhf 10.4.0-7+rpi1 [1763 kB] Get:656 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-10-dev armhf 10.4.0-7+rpi1 [682 kB] Get:657 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libisl23 armhf 0.25-1 [519 kB] Get:658 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmpfr6 armhf 4.2.0-1 [574 kB] Get:659 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmpc3 armhf 1.3.1-1 [41.0 kB] Get:660 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcc1-0 armhf 12.2.0-14+rpi1 [32.2 kB] Get:661 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpp-10 armhf 10.4.0-7+rpi1 [6697 kB] Get:662 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-10-base armhf 10.4.0-7+rpi1 [36.0 kB] Get:663 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libplymouth5 armhf 22.02.122-3 [84.3 kB] Get:664 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf plymouth armhf 22.02.122-3 [121 kB] Get:665 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mawk armhf 1.3.4.20200120-3.1 [102 kB] Get:666 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf tzdata all 2023c-5 [296 kB] Get:667 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dmidecode armhf 3.4-1 [55.4 kB] Get:668 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf groff-base armhf 1.22.4-10 [774 kB] Get:669 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iputils-ping armhf 3:20221126-1 [43.9 kB] Get:670 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf isc-dhcp-client armhf 4.4.3-P1-2 [945 kB] Get:671 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bsdextrautils armhf 2.38.1-5 [78.5 kB] Get:672 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpipeline1 armhf 1.5.7-1 [33.4 kB] Get:673 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf man-db armhf 2.11.2-2 [1342 kB] Get:674 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf nano armhf 7.2-1 [663 kB] Get:675 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf netcat-openbsd armhf 1.219-1 [38.9 kB] Get:676 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bash-completion all 1:2.11-6 [234 kB] Get:677 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf file armhf 1:5.44-3 [41.5 kB] Get:678 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmagic-dev armhf 1:5.44-3 [107 kB] Get:679 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmagic1 armhf 1:5.44-3 [95.3 kB] Get:680 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmagic-mgc armhf 1:5.44-3 [305 kB] Get:681 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gettext-base armhf 0.21-12 [156 kB] Get:682 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf lsof armhf 4.95.0-1+rpi1 [305 kB] Get:683 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libutempter0 armhf 1.2.1-3 [8404 B] Get:684 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf screen armhf 4.9.0-4 [539 kB] Get:685 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf wget armhf 1.21.3-1+b1 [942 kB] Get:686 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xz-utils armhf 5.4.1-0.2 [467 kB] Get:687 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf alsa-utils armhf 1.2.8-1 [1057 kB] Get:688 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dpkg-dev all 1.21.22+rpi1 [1353 kB] Get:689 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf debhelper all 13.11.4 [942 kB] Get:690 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdebhelper-perl all 13.11.4 [81.2 kB] Get:691 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdpkg-perl all 1.21.22+rpi1 [603 kB] Get:692 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsub-override-perl all 0.09-4 [9304 B] Get:693 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dh-strip-nondeterminism all 1.13.1-1 [8620 B] Get:694 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfile-stripnondeterminism-perl all 1.13.1-1 [19.4 kB] Get:695 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dwz armhf 0.15-1 [92.4 kB] Get:696 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apache2-dev armhf 2.4.57-2 [306 kB] Get:697 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libregexp-assemble-perl all 0.38-2 [77.8 kB] Get:698 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf apt-file all 3.3 [39.1 kB] Get:699 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf autoconf2.64 all 2.64+dfsg-1.1 [480 kB] Get:700 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gettext armhf 0.21-12 [1201 kB] Get:701 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf autopoint all 0.21-12 [495 kB] Get:702 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf bison armhf 2:3.8.2+dfsg-1 [1114 kB] Get:703 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf bubblewrap armhf 0.8.0-2 [42.7 kB] Get:704 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libllvm14 armhf 1:14.0.6-12+rpi1 [19.5 MB] Get:705 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-cpp14 armhf 1:14.0.6-12+rpi1 [9464 kB] Get:706 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libasan8 armhf 12.2.0-14+rpi1 [2088 kB] Get:707 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-12-dev armhf 12.2.0-14+rpi1 [727 kB] Get:708 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++-12-dev armhf 12.2.0-14+rpi1 [2027 kB] Get:709 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc-12-dev armhf 12.2.0-14+rpi1 [159 kB] Get:710 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-common-14-dev all 1:14.0.6-12+rpi1 [891 kB] Get:711 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf llvm-14-linker-tools armhf 1:14.0.6-12+rpi1 [1044 kB] Get:712 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang1-14 armhf 1:14.0.6-12+rpi1 [5208 kB] Get:713 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf clang-14 armhf 1:14.0.6-12+rpi1 [95.7 kB] Get:714 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf clang armhf 1:14.0-55.6 [4972 B] Get:715 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf clang-11 armhf 1:11.1.0-6+rpi2 [77.6 kB] Get:716 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-common-11-dev armhf 1:11.1.0-6+rpi2 [2794 kB] Get:717 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang-cpp11 armhf 1:11.1.0-6+rpi2 [8244 kB] Get:1180 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdb-dev armhf 5.3.2 [1744 B] Get:718 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libllvm11 armhf 1:11.1.0-6+rpi2 [15.6 MB] Get:719 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgcc-11-dev armhf 11.3.0-12+rpi1 [698 kB] Get:720 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libstdc++-11-dev armhf 11.3.0-12+rpi1 [1976 kB] Get:721 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libobjc-11-dev armhf 11.3.0-12+rpi1 [160 kB] Get:722 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf llvm-11-linker-tools armhf 1:11.1.0-6+rpi2 [912 kB] Get:723 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libclang1-11 armhf 1:11.1.0-6+rpi2 [4620 kB] Get:724 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libarchive13 armhf 3.6.2-1 [293 kB] Get:725 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjsoncpp25 armhf 1.9.5-4 [66.7 kB] Get:726 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf librhash0 armhf 1.4.3-3 [142 kB] Get:727 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cmake armhf 3.25.1-1 [3859 kB] Get:728 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf cmake-data all 3.25.1-1 [2026 kB] Get:729 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf colorized-logs armhf 2.6-1 [15.4 kB] Get:730 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpp-12 armhf 12.2.0-14+rpi1 [7159 kB] Get:731 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc-12 armhf 12.2.0-14+rpi1 [14.2 MB] Get:733 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gcc armhf 4:12.2.0-3+rpi1 [5216 B] Get:734 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf g++-12 armhf 12.2.0-14+rpi1 [7914 kB] Get:735 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf cpp armhf 4:12.2.0-3+rpi1 [7048 B] Get:736 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mysql-common all 5.8+1.1.0 [6636 B] Get:737 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mariadb-common all 1:10.11.3-1+rpi1 [24.1 kB] Get:738 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmariadb-dev-compat armhf 1:10.11.3-1+rpi1 [22.9 kB] Get:739 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmariadb-dev armhf 1:10.11.3-1+rpi1 [247 kB] Get:740 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmariadb3 armhf 1:10.11.3-1+rpi1 [154 kB] Get:741 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf default-libmysqlclient-dev armhf 1.1.0 [3092 B] Get:742 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfdt1 armhf 1.6.1-4+b1 [15.7 kB] Get:743 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libyaml-0-2 armhf 0.2.5-1 [44.6 kB] Get:744 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf device-tree-compiler armhf 1.6.1-4+b1 [216 kB] Get:745 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf emacsen-common all 3.0.5 [12.3 kB] Get:746 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf dictionaries-common all 1.29.5 [184 kB] Get:747 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf distro-info-data all 0.58 [5848 B] Get:748 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-fast-deep-equal all 3.1.3-3 [5768 B] Get:749 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-json-schema-traverse all 1.0.0-3 [6308 B] Get:750 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsonify all 0.0.1-1 [8704 B] Get:751 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-stable-stringify all 1.0.2+~cs5.2.34-1 [11.3 kB] Get:752 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-punycode all 2.1.1-6 [9444 B] Get:753 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-uri-js all 4.4.0+dfsg-8 [47.3 kB] Get:754 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ajv all 6.12.6-3 [74.0 kB] Get:755 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-inherits all 2.0.4-6 [3548 B] Get:756 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-inherits all 2.0.4-6 [4548 B] Get:757 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-util-is all 1.0.3-1 [4072 B] Get:758 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-safe-buffer all 5.2.1+~cs2.1.2-3 [15.5 kB] Get:759 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-string-decoder all 1.3.0-6 [7180 B] Get:760 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-process-nextick-args all 2.0.1-3 [3816 B] Get:761 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-util-deprecate all 1.0.2-3 [4436 B] Get:762 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-isarray all 2.0.5-4 [4040 B] Get:763 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-readable-stream all 3.6.0+~cs3.0.0-4 [32.0 kB] Get:764 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-typedarray all 0.0.7-1 [11.4 kB] Get:765 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-concat-stream all 2.0.0+~2.0.0-2 [6388 B] Get:766 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ms all 2.1.3+~cs0.7.31-3 [5648 B] Get:767 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-debug all 4.3.4+~cs4.1.7-1 [18.1 kB] Get:768 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-esutils all 2.0.3+~2.0.0-1 [12.4 kB] Get:769 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-doctrine all 3.0.0-4 [19.9 kB] Get:770 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-eslint-visitor-keys all 3.3.0+~1.0.0-1 [17.1 kB] Get:771 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-estraverse all 5.3.0+ds+~5.1.1-1 [11.6 kB] Get:772 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-object-assign all 4.1.1-7 [4684 B] Get:773 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-esrecurse all 4.3.0-2 [6048 B] Get:774 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-eslint-scope all 7.1.1+~3.7.4-1 [35.6 kB] Get:775 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-espree all 9.4.1~dfsg-1 [41.0 kB] Get:776 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-esquery all 1.4.2~ds-1 [24.9 kB] Get:777 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-eslint-utils all 3.0.0-3 [15.5 kB] Get:778 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-flatted all 3.2.7~ds-1 [10.3 kB] Get:779 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-fs.realpath all 1.0.0-3 [6172 B] Get:780 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wrappy all 1.0.2-3 [3776 B] Get:781 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-once all 1.4.0-7 [4492 B] Get:782 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-inflight all 1.0.6-2 [3952 B] Get:783 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-balanced-match all 2.0.0-1 [4872 B] Get:784 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-brace-expansion all 2.0.1-2 [7320 B] Get:785 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-minimatch all 5.1.1+~5.1.2-1 [18.6 kB] Get:786 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-glob all 8.0.3+~cs8.4.15-1 [133 kB] Get:787 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-rimraf all 3.0.2-2 [11.1 kB] Get:788 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-write all 2.0.0~6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5 [17.8 kB] Get:789 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-flat-cache all 3.0.4~6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5 [20.1 kB] Get:790 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-file-entry-cache all 6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-5 [15.0 kB] Get:791 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-functional-red-black-tree all 1.0.1+20181105-7 [14.1 kB] Get:792 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-extglob all 2.1.1-5 [4612 B] Get:793 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-glob all 4.0.3-2 [6620 B] Get:794 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-dirname all 1.0.2-2 [4312 B] Get:795 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-glob-parent all 6.0.2+~5.1.1-2 [8784 B] Get:796 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-globals all 13.18.0-1 [11.1 kB] Get:797 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-imurmurhash all 0.1.4+dfsg+~0.1.1-2 [8412 B] Get:798 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ignore all 5.2.1-1 [26.4 kB] Get:799 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-prelude-ls all 1.2.1+dfsg-3 [11.3 kB] Get:800 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-type-check all 0.4.0+dfsg-3 [9184 B] Get:801 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-levn all 0.4.1+dfsg-2 [10.2 kB] Get:802 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-lodash all 4.17.21+dfsg+~cs8.31.198.20210220-9 [462 kB] Get:803 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-memfs all 3.4.12+~cs1.0.3-1 [46.8 kB] Get:804 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-mkdirp all 1.0.4+~1.0.2-4 [11.6 kB] Get:805 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-deep-is all 0.1.4-1 [5136 B] Get:806 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fast-levenshtein all 2.0.6+ds-3 [6040 B] Get:807 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-optionator all 0.9.1+dfsg+~cs1.2.3-1 [17.6 kB] Get:808 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-progress all 2.0.3-2 [8256 B] Get:809 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-regenerate all 1.4.2-3 [14.3 kB] Get:810 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-regenerate all 1.4.2-3 [7388 B] Get:811 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regenerate-unicode-properties all 10.1.0+ds-1 [50.7 kB] Get:812 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-regexpp all 3.2.0-4 [27.0 kB] Get:813 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-abbrev all 1.1.1+~1.1.2-1 [5692 B] Get:814 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-agent-base all 6.0.2+~cs5.4.2-2 [17.3 kB] Get:815 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-aproba all 2.0.0-3 [5844 B] Get:816 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-archy all 1.0.0-6 [4556 B] Get:817 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-base64-js all 1.5.1+dfsg+~1.3.0-2 [7140 B] Get:818 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-binary-extensions all 2.2.0-2 [4408 B] Get:819 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-color-name all 1.1.4+~1.1.1-2 [5920 B] Get:820 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-color-convert all 2.0.1+~cs2.0.0-2 [13.1 kB] Get:821 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansi-styles all 6.2.1-2 [8640 B] Get:822 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-escape-string-regexp all 4.0.0-2 [4296 B] Get:823 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-has-flag all 4.0.0-3 [4304 B] Get:824 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-supports-color all 8.1.1+~8.1.1-1 [6920 B] Get:825 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chalk all 5.2.0-1 [18.0 kB] Get:826 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chownr all 2.0.0-2 [4424 B] Get:827 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ci-info all 3.6.1+~cs1.1.0-1 [11.7 kB] Get:828 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-colors all 1.4.0-4 [11.9 kB] Get:829 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-slice-ansi all 5.0.0+~cs9.0.0-5 [8788 B] Get:830 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansi-regex all 5.0.1-1 [4912 B] Get:831 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-strip-ansi all 6.0.1-2 [4120 B] Get:832 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-clone all 2.1.2-4 [8280 B] Get:833 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-defaults all 1.0.4+~1.0.3-1 [4400 B] Get:834 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wcwidth.js all 1.0.2-2 [7088 B] Get:835 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-string-width all 4.2.3+~cs13.2.3-1 [10.7 kB] Get:836 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cli-table all 0.3.11+~cs0.13.4-3 [23.6 kB] Get:837 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-columnify all 1.6.0+~1.5.1-1 [12.4 kB] Get:838 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-css-selector-tokenizer all 0.8.0+~cs4.8.3-1 [13.0 kB] Get:839 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-depd all 2.0.0-2 [11.2 kB] Get:840 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-diff all 5.0.0~dfsg+~5.0.1-4 [69.7 kB] Get:841 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-iconv-lite all 0.6.3-3 [115 kB] Get:842 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-encoding all 0.1.13-2 [4400 B] Get:843 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-events all 3.3.0+~3.0.0-3 [11.3 kB] Get:844 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-events all 3.3.0+~3.0.0-3 [5888 B] Get:845 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-mimic-response all 3.1.0-8 [5404 B] Get:846 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-decompress-response all 6.0.0-2 [4620 B] Get:847 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-end-of-stream all 1.4.4+~1.4.1-1 [5292 B] Get:848 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-pump all 3.0.0-5 [5136 B] Get:849 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-get-stream all 6.0.1-1 [7208 B] Get:850 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-lowercase-keys all 2.0.0-2 [3768 B] Get:851 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-buffer all 3.0.1+~3.0.0-1 [4536 B] Get:852 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-p-cancelable all 2.1.1-1 [7272 B] Get:853 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-quick-lru all 6.1.1-4 [8076 B] Get:854 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-got all 11.8.5+~cs58.13.36-3 [121 kB] Get:855 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-graceful-fs all 4.2.10-1 [14.4 kB] Get:856 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-six all 1.16.0-4 [17.5 kB] Get:857 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gyp all 0.1+20220404git9ecf45e-2 [237 kB] Get:858 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-https-proxy-agent all 5.0.1+~cs8.0.0-3 [16.1 kB] Get:859 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-data-uri-to-buffer all 4.0.0-3 [5540 B] Get:860 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fetch all 3.3.0+~cs11.4.11-2 [212 kB] Get:861 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-nopt all 5.0.0-4 [12.1 kB] Get:862 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-delegates all 1.0.0-3 [4528 B] Get:863 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-are-we-there-yet all 3.0.1+~1.1.0-1 [10.0 kB] Get:864 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-console-control-strings all 1.1.0-3 [5564 B] Get:865 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-time-stamp all 2.2.0-2 [6016 B] Get:866 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fancy-log all 1.3.3+~cs1.3.1-2 [7940 B] Get:867 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-has-unicode all 2.0.1-5 [3992 B] Get:868 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-signal-exit all 3.0.7+~3.0.1-1 [7600 B] Get:869 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wide-align all 1.1.3-4 [4244 B] Get:870 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-gauge all 4.0.4-1 [19.6 kB] Get:871 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-set-blocking all 2.0.0-2 [4248 B] Get:872 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-npmlog all 7.0.1+~4.1.4-1 [11.4 kB] Get:873 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-osenv all 0.1.5+~0.1.1-1 [5884 B] Get:874 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsonparse all 1.3.1-10 [8020 B] Get:875 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-yallist all 4.0.0+~4.0.1-1 [8172 B] Get:876 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-minipass all 3.3.6+~cs9.4.19-1 [43.0 kB] Get:877 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-tar all 6.1.13+~cs7.0.5-1 [51.1 kB] Get:878 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-isexe all 2.0.0+~2.0.1-5 [6084 B] Get:879 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-which all 2.0.2+~cs1.3.2-3 [8368 B] Get:880 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-semver all 7.3.5+~7.3.9-2 [42.1 kB] Get:881 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-gyp all 9.3.0-2 [57.9 kB] Get:882 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf npm all 9.2.0~ds1-1 [669 kB] Get:883 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-hosted-git-info all 6.1.1-2 [12.6 kB] Get:884 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ieee754 all 1.2.1-3 [5268 B] Get:885 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ini all 3.0.1-2 [6928 B] Get:886 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ip all 2.0.0+~1.1.0-1 [8128 B] Get:887 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ip-regex all 4.3.0+~4.1.1-1 [5188 B] Get:888 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-parse-better-errors all 1.0.2+~cs3.3.1-2 [7800 B] Get:889 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-negotiator all 0.6.3+~0.6.1-1 [10.8 kB] Get:890 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-function-bind all 1.1.1+repacked+~1.0.3-2 [5252 B] Get:891 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-resolve all 1.22.1+~cs5.31.10-1 [28.1 kB] Get:892 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-spdx-license-ids all 3.0.12-1 [6276 B] Get:893 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-spdx-exceptions all 2.3.0-2 [3992 B] Get:894 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-spdx-expression-parse all 3.0.1+~3.0.1-1 [7532 B] Get:895 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-spdx-correct all 3.1.1-2 [5464 B] Get:896 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-validate-npm-package-license all 3.0.4-2 [4280 B] Get:897 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-normalize-package-data all 4.0.1+~2.4.1-1 [13.6 kB] Get:898 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-slash all 4.0.0-3 [4292 B] Get:899 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-read-package-json all 5.0.2+~2.0.0-1 [12.0 kB] Get:900 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-npm-bundled all 2.0.1-2 [6408 B] Get:901 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-validate-npm-package-name all 5.0.0+~4.0.0-1 [7444 B] Get:902 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-builtins all 5.0.1-1 [4072 B] Get:903 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-npm-package-arg all 10.0.0+~3.0.0-2 [11.4 kB] Get:904 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-indent-string all 4.0.0-2 [4144 B] Get:905 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-p-map all 4.0.0+~3.1.0+~3.0.1-1 [7912 B] Get:906 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-camelcase all 7.0.0-3 [6032 B] Get:907 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-isobject all 4.0.0-2 [5332 B] Get:908 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-picocolors all 1.0.0-4 [6652 B] Get:909 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-postcss all 8.4.20+~cs8.0.23-1 [180 kB] Get:910 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-icss-utils all 5.1.0+~5.1.0-1 [7564 B] Get:911 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-postcss-modules-extract-imports all 3.0.0-2 [6584 B] Get:912 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-postcss-modules-values all 4.0.0+~4.0.0-1 [7180 B] Get:913 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-postcss-value-parser all 4.2.0-1 [10.4 kB] Get:914 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-caniuse-lite all 1.0.30001436+dfsg+~1.0.1-1 [208 kB] Get:915 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-electron-to-chromium all 1.4.284-1 [20.6 kB] Get:916 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-browserslist all 4.21.4+~cs6.1.17-2 [63.5 kB] Get:917 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-tslib all 2.4.1-1 [19.5 kB] Get:918 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chrome-trace-event all 1.0.3-2 [6984 B] Get:919 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-commander all 9.4.1-1 [65.3 kB] Get:920 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-prr all 1.0.1-3 [4352 B] Get:921 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-errno all 1.0.0-3 [7736 B] Get:922 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-memory-fs all 0.5.0+~0.3.3-2 [7676 B] Get:923 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-tapable all 2.2.1-2 [13.6 kB] Get:924 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-enhanced-resolve all 5.10.0-1 [33.6 kB] Get:925 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-es-module-lexer all 1.1.0+dfsg-2 [19.7 kB] Get:926 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ansi-escapes all 5.0.0+really.4.3.1-1 [8896 B] Get:927 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-ampproject-remapping all 2.2.0+~cs5.15.37-1 [59.4 kB] Get:928 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-add-module-exports all 1.0.4+dfsg1~cs5.8.0-4 [8672 B] Get:929 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regenerator-runtime all 0.15.1+~0.10.8-1 [10.6 kB] Get:930 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel7-runtime all 7.20.15+ds1+~cs214.269.168-3 [116 kB] Get:931 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-lodash-packages all 4.17.21+dfsg+~cs8.31.198.20210220-9 [179 kB] Get:932 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-helper-define-polyfill-provider all 0.3.3~0~20220913+ds1-1 [27.4 kB] Get:933 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-polyfill-corejs2 all 0.3.3~0~20220913+ds1-1 [17.1 kB] Get:934 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-js-compat all 3.26.1-3 [66.1 kB] Get:935 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-polyfill-corejs3 all 0.6.0~0~20220913+ds1-1 [29.5 kB] Get:936 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-polyfill-regenerator all 0.4.1~0~20220913+ds1-1 [5036 B] Get:937 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-for-in all 1.0.2-4 [4840 B] Get:938 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-for-own all 1.0.0-3 [4800 B] Get:939 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-plain-object all 5.0.0-7 [6108 B] Get:940 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-extendable all 1.0.1-3 [5228 B] Get:941 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-buffer all 2.0.5-2 [4112 B] Get:942 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-kind-of all 6.0.3+dfsg-2 [10.2 kB] Get:943 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-clone-deep all 4.0.1+~cs7.0.2-1 [6720 B] Get:944 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-convert-source-map all 1.9.0+~1.5.2-1 [8176 B] Get:945 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-js all 3.26.1-3 [268 kB] Get:946 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-core-js-pure all 3.26.1-3 [250 kB] Get:947 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-commondir all 1.0.1+~1.0.0-1 [4388 B] Get:948 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-number all 7.0.0-4 [6020 B] Get:949 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-repeat-string all 1.6.1+repack-1 [5600 B] Get:950 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-to-regex-range all 5.0.1-4 [10.5 kB] Get:951 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fill-range all 7.0.1+~7.0.0-1 [8952 B] Get:952 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-braces all 3.0.2+~3.0.1-1 [20.8 kB] Get:953 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-normalize-path all 3.0.0+~3.0.0-1 [6608 B] Get:954 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-anymatch all 3.1.3+~cs4.6.1-2 [33.4 kB] Get:955 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-micromatch all 4.0.5+~4.0.2-1 [25.8 kB] Get:956 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-pify all 5.0.0+~cs5.0.1-1 [7072 B] Get:957 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-type all 4.0.0-3 [3944 B] Get:958 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-n3 all 1.16.3+~1.2.3+~1.10.4-1 [37.0 kB] Get:959 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-globby all 13.1.3+~cs16.25.40-1 [40.3 kB] Get:960 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-path-cwd all 2.2.0-2 [3672 B] Get:961 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-path-is-inside all 1.0.2+~1.0.0-1 [5072 B] Get:962 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-path-inside all 3.0.3-2 [3980 B] Get:963 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-del all 7.0.0-5 [6804 B] Get:964 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-make-dir all 3.1.0-3 [6040 B] Get:965 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-p-limit all 4.0.0+~cs4.0.0-5 [7576 B] Get:966 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-p-locate all 6.0.0-12 [5752 B] Get:967 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-locate-path all 7.1.1-2 [5584 B] Get:968 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-exists all 5.0.0-8 [4732 B] Get:969 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-find-up all 6.3.0-7 [9388 B] Get:970 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-pkg-dir all 5.0.0-2 [4260 B] Get:971 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-find-cache-dir all 3.3.2+~3.2.1-1 [6152 B] Get:972 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-fs-readdir-recursive all 1.1.0+~1.1.0-1 [4540 B] Get:973 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-js-tokens all 8.0.0-2 [14.9 kB] Get:974 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jsesc all 3.0.2+~3.0.1-1 [17.6 kB] Get:975 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json5 all 2.2.3+dfsg-1 [25.6 kB] Get:976 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regenerator-transform all 0.15.1+~0.10.8-1 [24.6 kB] Get:977 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regjsgen all 0.7.1+ds-1 [6968 B] Get:978 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-regjsparser all 0.9.1+ds-2 [22.1 kB] Get:979 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-unicode-canonical-property-names-ecmascript all 2.0.0-2 [4540 B] Get:980 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-unicode-property-aliases-ecmascript all 2.1.0+ds-1 [5256 B] Get:981 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-unicode-match-property-ecmascript all 2.0.0-2 [4440 B] Get:982 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-unicode-match-property-value-ecmascript all 2.1.0+ds-1 [7272 B] Get:983 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-regexpu-core all 5.2.2-3 [13.9 kB] Get:984 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-source-map all 0.7.0++dfsg2+really.0.6.1-15 [29.6 kB] Get:985 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-source-map all 0.7.0++dfsg2+really.0.6.1-15 [41.7 kB] Get:986 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-source-map-support all 0.5.21+ds+~0.5.4-1 [14.5 kB] Get:987 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-to-fast-properties all 3.0.1-3 [4332 B] Get:988 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-v8flags all 3.2.0+~3.1.1-1 [7612 B] Get:989 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel7 all 7.20.15+ds1+~cs214.269.168-3 [712 kB] Get:990 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel-plugin-lodash all 3.3.4+~cs2.0.1-6 [11.0 kB] Get:991 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-resolve-cwd all 3.0.0-2 [4212 B] Get:992 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jest-debbundle all 29.3.1~ds1+~cs70.48.25-2 [129 kB] Get:993 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-interpret all 2.2.0-3 [7660 B] Get:994 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-merge-stream all 2.0.0+~1.1.2-2 [5124 B] Get:995 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jest-worker all 29.3.1~ds1+~cs70.48.25-2 [112 kB] Get:996 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-loader-runner all 4.3.0-1 [7644 B] Get:997 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-mime all 3.0.0+dfsg+~cs3.97.1-1 [40.4 kB] Get:998 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-mime-types all 2.1.35-1 [9456 B] Get:999 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-neo-async all 2.6.2+~cs3.0.0-2 [35.2 kB] Get:1000 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-rechoir all 0.8.0+~0.6.1-2 [6628 B] Get:1001 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ajv-keywords all 3.5.2-2 [20.3 kB] Get:1002 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-schema-utils all 3.1.1~ds-2 [20.0 kB] Get:1003 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-randombytes all 2.1.0+~2.0.0-2 [4852 B] Get:1004 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-serialize-javascript all 6.0.0-2 [12.7 kB] Get:1005 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-async-each all 1.0.3-3 [4292 B] Get:1006 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-binary-path all 2.1.0-5 [3684 B] Get:1007 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-path-is-absolute all 2.0.0-2 [4068 B] Get:1008 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-set-immediate-shim all 2.0.0-2 [3740 B] Get:1009 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-readdirp all 3.6.0-1 [11.5 kB] Get:1010 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-chokidar all 3.5.3-2 [32.3 kB] Get:1011 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-watchpack all 2.4.0+~cs2.8.1-1 [20.2 kB] Get:1012 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-define-properties all 1.1.4+~1.1.3-1 [6828 B] Get:1013 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-defined all 1.0.1+~1.0.0-1 [6776 B] Get:1014 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-arrify all 2.0.1-3 [3700 B] Get:1015 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-plain-obj all 3.0.0-2 [3972 B] Get:1016 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-minimist all 1.2.7+~cs5.3.2-2 [14.7 kB] Get:1017 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-wordwrap all 1.0.0-4 [4628 B] Get:1018 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-optimist all 0.6.1+~0.0.30-2 [13.5 kB] Get:1019 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf handlebars all 3:4.7.7+~4.1.0-1 [199 kB] Get:1020 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-prettify all 2015.12.04+dfsg-1.1 [41.7 kB] Get:1021 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-async all 0.8.0-6 [24.2 kB] Get:1022 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-async all 0.8.0-6 [3748 B] Get:1023 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-decamelize all 4.0.0-2 [4080 B] Get:1024 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-es6-error all 4.1.1-5 [6148 B] Get:1025 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-esprima all 4.0.1+ds+~4.0.3-2 [69.3 kB] Get:1026 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-escodegen all 2.0.0+dfsg+~0.0.7-2 [23.0 kB] Get:1027 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-foreground-child all 2.0.0-5 [6384 B] Get:1028 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-stream all 3.0.0-4 [5076 B] Get:1029 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-is-windows all 1.0.2+~cs1.0.0-1 [5936 B] Get:1030 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-sprintf-js all 1.1.2+ds1+~1.1.2-1 [12.8 kB] Get:1031 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-sprintf-js all 1.1.2+ds1+~1.1.2-1 [4024 B] Get:1032 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-argparse all 2.0.1-2 [34.6 kB] Get:1033 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-js-yaml all 4.1.0+dfsg+~4.0.5-7 [66.6 kB] Get:1034 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-npm-run-path all 5.1.0+~4.0.0-8 [6276 B] Get:1035 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-shebang-regex all 3.0.0-2 [3528 B] Get:1036 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-shebang-command all 2.0.0-1 [3500 B] Get:1037 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-strip-bom all 4.0.0-2 [4144 B] Get:1038 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-util all 0.12.5+~1.0.10-1 [16.0 kB] Get:1039 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-util all 0.12.5+~1.0.10-1 [5700 B] Get:1040 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-assert all 2.0.0+~cs3.9.8-2 [26.8 kB] Get:1041 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-arrayish all 0.3.2-3 [3960 B] Get:1042 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-error-ex all 1.3.2-4 [5656 B] Get:1043 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-parse-json all 5.2.0+~cs5.1.7-1 [7356 B] Get:1044 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-read-pkg all 5.2.0-2 [24.0 kB] Get:1045 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-uuid all 8.3.2+~8.3.3-3 [44.0 kB] Get:1046 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-is-typedarray all 1.0.0-4 [3816 B] Get:1047 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-is-typedarray all 1.0.0-4 [3292 B] Get:1048 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-typedarray-to-buffer all 4.0.0-2 [3380 B] Get:1049 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libjs-typedarray-to-buffer all 4.0.0-2 [4668 B] Get:1050 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-write-file-atomic all 4.0.2+~4.0.0-1 [9284 B] Get:1051 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-wrap-ansi all 8.0.1+~8.0.1-3 [11.8 kB] Get:1052 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cliui all 7.0.4+repack+~cs3.1.0-4 [11.5 kB] Get:1053 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-get-caller-file all 2.0.5+~cs1.1.1-4 [5728 B] Get:1054 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-require-directory all 2.1.1+~2.1.2-1 [7092 B] Get:1055 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-y18n all 5.0.8+~5.0.0-3 [10.2 kB] Get:1056 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-yargs-parser all 21.1.1+~21.0.0-4 [28.4 kB] Get:1057 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-yargs all 16.2.0+~16.0.4-7 [128 kB] Get:1058 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-istanbul all 0.4.5+repack10+~cs97.25.57-3 [207 kB] Get:1059 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-object-inspect all 1.12.2+~cs1.8.1-1 [20.8 kB] Get:1060 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-resumer all 0.0.0-6 [4144 B] Get:1061 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-tape all 5.6.1+~cs8.20.19-1 [70.9 kB] Get:1062 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-deep-equal all 2.1.0+~cs31.12.80-1 [34.5 kB] Get:1063 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-debbundle-es-to-primitive all 1.2.1+~cs9.7.25-2 [39.9 kB] Get:1064 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-es-abstract all 1.20.4+~cs26.27.47-1 [137 kB] Get:1065 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-webassemblyjs all 1.11.4+dfsg+~cs10.11.17-2 [139 kB] Get:1066 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-source-list-map all 2.0.1+dfsg-2 [9348 B] Get:1067 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-webpack-sources all 3.2.3+~3.2.0-2 [23.2 kB] Get:1068 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-terser all 5.16.5-2 [204 kB] Get:1069 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf terser all 5.16.5-2 [16.5 kB] Get:1070 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf webpack all 5.75.0+dfsg+~cs17.16.14-1+deb12u1 [756 kB] Get:1071 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-css-loader all 6.7.2+~cs14.0.11-1 [73.0 kB] Get:1072 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-err-code all 2.0.3+dfsg-3 [4884 B] Get:1073 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-retry all 0.13.1+~0.12.1-1 [11.2 kB] Get:1074 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-promise-retry all 2.0.1-4 [5016 B] Get:1075 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-mute-stream all 0.0.8+~0.0.1-3 [6232 B] Get:1076 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-read all 1.0.7-5 [5388 B] Get:1077 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-promzard all 0.3.0-2 [6788 B] Get:1078 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ssri all 9.0.1-2 [18.0 kB] Get:1079 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-text-table all 0.2.0-4 [4736 B] Get:1080 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-iferr all 1.0.2+~1.0.2-1 [4588 B] Get:1081 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-fs-write-stream-atomic all 1.0.10-6 [5316 B] Get:1082 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-run-queue all 2.0.0-3 [5156 B] Get:1083 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-copy-concurrently all 1.0.5-9 [7100 B] Get:1084 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-move-concurrently all 1.0.1-5 [5152 B] Get:1085 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-promise-inflight all 1.0.1+~1.0.0-1 [4864 B] Get:1086 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-unique-filename all 1.1.1+ds-2 [4032 B] Get:1087 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-cacache all 17.0.3+~cs10.3.7-1 [45.1 kB] Get:1088 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-lru-cache all 7.14.1-1 [26.3 kB] Get:1089 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-strip-json-comments all 4.0.0-4 [5668 B] Get:1090 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-schema all 0.4.0+~7.0.11-1 [13.1 kB] Get:1091 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-v8-compile-cache all 2.3.0-3 [8344 B] Get:1092 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf eslint all 6.4.0~dfsg+~6.1.9-7 [606 kB] Get:1093 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ethtool armhf 1:6.1-1 [160 kB] Get:1094 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf expat armhf 2.5.0-1 [38.3 kB] Get:1095 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf fake-hwclock all 0.12+nmu1 [6336 B] Get:1096 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfakeroot armhf 1.31-1.2 [25.7 kB] Get:1097 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf fakeroot armhf 1.31-1.2 [66.0 kB] Get:1098 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libib-util armhf 3.0.11.33637.ds4-2+b1 [3360 B] Get:1099 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf firebird-dev armhf 3.0.11.33637.ds4-2+b1 [120 kB] Get:1100 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfbclient2 armhf 3.0.11.33637.ds4-2+b1 [452 kB] Get:1101 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf firebird3.0-common all 3.0.11.33637.ds4-2 [15.3 kB] Get:1102 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf firebird3.0-common-doc all 3.0.11.33637.ds4-2 [27.0 kB] Get:1103 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf flac armhf 1.4.2+ds-2 [154 kB] Get:1104 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf freetds-common all 1.3.17+ds-2 [28.9 kB] Get:1105 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf freetds-dev armhf 1.3.17+ds-2 [237 kB] Get:1106 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libct4 armhf 1.3.17+ds-2 [142 kB] Get:1107 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsybdb5 armhf 1.3.17+ds-2 [165 kB] Get:1108 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf galculator armhf 2.1.4-1.2 [152 kB] Get:1109 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libproxy1v5 armhf 0.4.18-1.2 [48.8 kB] Get:1110 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf glib-networking-common all 2.74.0-4 [80.3 kB] Get:1111 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf glib-networking armhf 2.74.0-4 [60.8 kB] Get:1112 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf glib-networking-services armhf 2.74.0-4 [11.4 kB] Get:1113 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gsettings-desktop-schemas all 43.0-1 [643 kB] Get:1114 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-1.15-src armhf 1.15.15-5+rpi1 [13.9 MB] Get:1115 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-1.15-go armhf 1.15.15-5+rpi1 [43.2 MB] Get:1116 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf golang-1.19-src all 1.19.8-2 [18.3 MB] Get:1117 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf golang-1.19-go armhf 1.19.8-2 [56.9 MB] Get:1118 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-src all 2:1.19~1 [5756 B] Get:1119 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf golang-go armhf 2:1.19~1 [45.0 kB] Get:1120 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gparted armhf 1.3.1-1 [714 kB] Get:1121 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf gparted-common all 1.3.1-1 [1711 kB] Get:1122 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsigc++-2.0-0v5 armhf 2.12.0-1 [24.2 kB] Get:1123 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglibmm-2.4-1v5 armhf 2.66.5-2 [494 kB] Get:1124 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatkmm-1.6-1v5 armhf 2.28.3-1 [67.3 kB] Get:1125 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcairomm-1.0-1v5 armhf 1.14.4-2 [49.1 kB] Get:1126 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpangomm-1.4-1v5 armhf 2.46.3-1 [57.3 kB] Get:1127 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtkmm-3.0-1v5 armhf 3.24.7-1 [808 kB] Get:1128 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf parted armhf 3.5-3 [34.5 kB] Get:1129 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libparted-fs-resize0 armhf 3.5-3 [35.3 kB] Get:1130 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libparted2 armhf 3.5-3 [283 kB] Get:1131 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf xml-core all 0.18+nmu1 [23.8 kB] Get:1132 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libduktape207 armhf 2.7.0-2 [115 kB] Err:1132 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libduktape207 armhf 2.7.0-2 Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] Get:1133 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf policykit-1 armhf 122-3 [11.8 kB] Get:1134 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpolkit-agent-1-0 armhf 122-3 [22.1 kB] Get:1135 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpolkit-gobject-1-0 armhf 122-3 [38.1 kB] Get:1136 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf polkitd armhf 122-3 [108 kB] Get:1137 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf pkexec armhf 122-3 [22.2 kB] Get:1138 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcdparanoia0 armhf 3.10.2+debian-14 [41.7 kB] Get:1139 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvisual-0.4-0 armhf 0.4.0-19 [117 kB] Get:1140 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gstreamer1.0-plugins-base armhf 1.22.0-3+deb12u1 [670 kB] Get:1141 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcaca0 armhf 0.99.beta20-3 [194 kB] Get:1142 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdv4 armhf 1.0.0-15 [65.6 kB] Get:1143 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libiec61883-0 armhf 1.2.0-6 [28.0 kB] Get:1144 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libshout3 armhf 2.4.6-1+b1 [48.5 kB] Get:1145 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtag1v5 armhf 1.13-2 [18.7 kB] Get:1146 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtag1v5-vanilla armhf 1.13-2 [243 kB] Get:1147 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libv4l-0 armhf 1.22.1-5 [105 kB] Get:1148 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libv4lconvert0 armhf 1.22.1-5 [133 kB] Get:1149 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwavpack1 armhf 5.6.0-1 [72.5 kB] Get:1150 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup-gnome2.4-1 armhf 2.74.3-1 [10.6 kB] Get:1151 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup2.4-common all 2.74.3-1 [56.0 kB] Get:1152 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup2.4-1 armhf 2.74.3-1 [230 kB] Get:1153 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup-3.0-common all 3.2.2-2 [60.8 kB] Get:1154 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsoup-3.0-0 armhf 3.2.2-2 [233 kB] Get:1155 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gstreamer1.0-plugins-good armhf 1.22.0-5+deb12u1 [1988 kB] Get:1156 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf hdparm armhf 9.65+ds-1 [97.7 kB] Get:1157 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnl-route-3-200 armhf 3.7.0-0.2 [152 kB] Get:1158 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnl-genl-3-200 armhf 3.7.0-0.2 [19.7 kB] Get:1159 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnl-3-200 armhf 3.7.0-0.2 [55.0 kB] Get:1160 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf htop armhf 3.2.2-2 [129 kB] Get:1161 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf hunspell-en-us all 1:2020.12.07-2 [269 kB] Get:1162 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf i2c-tools armhf 4.3-2+b2 [77.6 kB] Get:1163 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf intltool-debian all 0.35.0+20060710.6 [22.9 kB] Get:1164 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf iotop armhf 0.6-42-ga14256a-0.1+b1 [24.1 kB] Get:1165 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf iw armhf 5.19-1 [85.5 kB] Get:1166 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpspell-dev armhf 0.60.8-4 [31.2 kB] Get:1167 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaspell-dev armhf 0.60.8-4 [34.7 kB] Get:1168 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libaspell15 armhf 0.60.8-4 [295 kB] Get:1169 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libass9 armhf 1:0.17.1-1 [85.6 kB] Get:1170 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libatk1.0-data all 2.38.0-1 [150 kB] Get:1171 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libayatana-ido3-0.4-0 armhf 0.9.3-1 [46.8 kB] Get:1172 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libayatana-indicator3-7 armhf 0.9.3-1 [28.3 kB] Get:1173 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libbs2b0 armhf 3.1.0+dfsg-7 [10.7 kB] Get:1174 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-client2007e-dev armhf 8:2007f~dfsg-7+b1 [476 kB] Get:1175 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mlock armhf 8:2007f~dfsg-7+b1 [35.9 kB] Get:1176 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libc-client2007e armhf 8:2007f~dfsg-7+b1 [551 kB] Get:1177 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libcddb2 armhf 1.3.2-7 [44.0 kB] Get:1178 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcob5-dev armhf 4.0~early~20200606-6 [177 kB] Get:1179 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcob5 armhf 4.0~early~20200606-6 [147 kB] Get:1181 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdbus-glib-1-2 armhf 0.112-3 [48.2 kB] Get:1182 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libusb-1.0-0 armhf 2:1.0.26-1 [55.8 kB] Get:1183 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdc1394-25 armhf 2.2.6-4 [102 kB] Get:1184 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdecor-0-0 armhf 0.1.1-2 [12.0 kB] Get:1185 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libisc-export1105 armhf 1:9.11.19+dfsg-2.1+b1 [376 kB] Get:1186 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdns-export1110 armhf 1:9.11.19+dfsg-2.1+b1 [893 kB] Get:1187 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdouble-conversion3 armhf 3.2.1-1 [38.8 kB] Get:1188 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdvdread8 armhf 6.1.3-1 [87.4 kB] Get:1189 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libdvdnav4 armhf 6.1.1-1 [43.3 kB] Get:1190 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libebml5 armhf 1.4.4-1 [41.0 kB] Get:1191 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libenchant-2-dev armhf 2.3.3-2 [18.7 kB] Get:1192 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libhunspell-1.7-0 armhf 1.7.1-1+b2 [167 kB] Get:1193 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libenchant-2-2 armhf 2.3.3-2 [39.7 kB] Get:1194 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-dev armhf 2.1.12-stable-8 [274 kB] Get:1195 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-pthreads-2.1-7 armhf 2.1.12-stable-8 [53.2 kB] Get:1196 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-openssl-2.1-7 armhf 2.1.12-stable-8 [58.3 kB] Get:1197 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-extra-2.1-7 armhf 2.1.12-stable-8 [97.3 kB] Get:1198 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-core-2.1-7 armhf 2.1.12-stable-8 [119 kB] Get:1199 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libevent-2.1-7 armhf 2.1.12-stable-8 [160 kB] Get:1200 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libexif12 armhf 0.6.24-1+b2 [388 kB] Get:1201 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libexporter-tiny-perl all 1.006000-1 [38.6 kB] Get:1202 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfaad2 armhf 2.10.1-1 [142 kB] Get:1203 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfann-dev armhf 2.2.0+ds-8 [85.6 kB] Get:1204 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libfann2 armhf 2.2.0+ds-8 [57.1 kB] Get:1205 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfftw3-double3 armhf 3.3.10-1 [325 kB] Get:1206 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libfile-readbackwards-perl all 1.06-2 [11.6 kB] Get:1207 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libflite1 armhf 2.2-5 [12.4 MB] Get:1208 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcr-ui-3-1 armhf 3.41.1-1 [120 kB] Get:1209 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgcr-base-3-1 armhf 3.41.1-1 [175 kB] Get:1210 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgck-1-0 armhf 3.41.1-1 [76.9 kB] Get:1211 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgif7 armhf 5.2.1-2.5 [44.7 kB] Get:1212 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgirepository-1.0-1 armhf 1.74.0-3+b1 [87.5 kB] Get:1213 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopengl0 armhf 1.6.0-1 [31.6 kB] Get:1214 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libglu1-mesa armhf 9.0.2-1.1 [133 kB] Get:1215 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgspell-1-common all 1.12.0-1 [32.9 kB] Get:1216 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgspell-1-2 armhf 1.12.0-1+b1 [44.7 kB] Get:1217 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgssdp-1.6-0 armhf 1.6.2-2 [34.1 kB] Get:1218 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-gl1.0-0 armhf 1.22.0-3+deb12u1 [219 kB] Get:1219 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgupnp-1.6-0 armhf 1.6.3-1 [74.9 kB] Get:1220 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgupnp-igd-1.0-4 armhf 1.2.0-3 [12.3 kB] Get:1221 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libnice10 armhf 0.1.21-1 [130 kB] Get:1222 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libvulkan1 armhf 1.3.239.0-1 [99.6 kB] Get:1223 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-plugins-bad1.0-0 armhf 1.22.0-4+deb12u1 [698 kB] Get:1224 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtksourceview-4-common all 4.8.4-4 [532 kB] Get:1225 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtksourceview-4-0 armhf 4.8.4-4 [176 kB] Err:1225 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libgtksourceview-4-0 armhf 4.8.4-4 Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] Get:1226 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libharfbuzz-icu0 armhf 6.0.0+dfsg-3 [1556 kB] Get:1227 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libilmbase25 armhf 2.5.7-2 [196 kB] Get:1228 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libspectre1 armhf 0.2.12-1 [46.0 kB] Get:1229 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libimlib2 armhf 1.10.0-4 [176 kB] Get:1230 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libplist3 armhf 2.2.0-6+b2 [31.5 kB] Get:1231 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libimobiledevice6 armhf 1.3.0-6+b3 [62.4 kB] Get:1232 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libiw30 armhf 30~pre9-14 [14.2 kB] Get:1233 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xdg-dbus-proxy armhf 0.1.4-3 [20.3 kB] Get:1234 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmanette-0.2-0 armhf 0.2.6-3 [26.4 kB] Get:1235 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsecret-common all 0.20.5-3+rpi1 [28.5 kB] Get:1236 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsecret-1-0 armhf 0.20.5-3+rpi1 [96.8 kB] Get:1237 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwoff1 armhf 1.0.2-2 [35.9 kB] Get:1238 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwpe-1.0-1 armhf 1.14.0-1 [17.1 kB] Get:1239 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwpebackend-fdo-1.0-1 armhf 1.14.2-1 [27.0 kB] Get:1240 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxslt1-dev armhf 1.1.35-1 [358 kB] Get:1241 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxslt1.1 armhf 1.1.35-1 [221 kB] Get:1242 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwebkit2gtk-4.0-37 armhf 2.40.3-2~deb12u2+rpi1 [15.6 MB] Get:1243 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjavascriptcoregtk-4.0-18 armhf 2.40.3-2~deb12u2+rpi1 [2630 kB] Get:1244 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjavascriptcoregtk-4.1-0 armhf 2.40.3-2~deb12u2+rpi1 [2630 kB] Get:1245 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjs-psl all 1.8.0+ds-9 [66.2 kB] Get:1246 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblightdm-gobject-1-0 armhf 1.26.0-8 [57.0 kB] Get:1247 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libserd-0-0 armhf 0.30.16-1 [40.7 kB] Get:1248 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsord-0-0 armhf 0.16.14+git221008-1 [17.8 kB] Get:1249 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsratom-0-0 armhf 0.6.14-1 [15.7 kB] Get:1250 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblilv-0-0 armhf 0.24.14-1 [42.1 kB] Get:1251 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblirc-client0 armhf 0.10.1-7.2 [44.9 kB] Get:1252 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf liblua5.2-0 armhf 5.2.4-3 [85.7 kB] Get:1253 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmad0 armhf 0.15.1b-10.1 [66.2 kB] Get:1254 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmatroska7 armhf 1.7.1-1 [89.7 kB] Get:1255 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmcrypt-dev armhf 2.5.8-7 [86.2 kB] Get:1256 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmcrypt4 armhf 2.5.8-7 [63.0 kB] Get:1257 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmd4c0 armhf 0.4.8-1 [39.4 kB] Get:1258 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmhash-dev armhf 0.9.9.9-9+b2 [114 kB] Get:1259 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmhash2 armhf 0.9.9.9-9+b2 [101 kB] Get:1260 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmousepad0 armhf 0.5.10-2 [303 kB] Get:1261 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmpdec3 armhf 2.5.1-2+rpi1 [73.5 kB] Get:1262 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmtp-common all 1.1.20-1 [58.6 kB] Get:1263 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libmtp9 armhf 1.1.20-1 [195 kB] Get:1264 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libmysofa1 armhf 1.3.1~dfsg0-1 [1154 kB] Get:1265 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpci-dev armhf 1:3.9.0-4 [63.9 kB] Get:1266 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf pci.ids all 0.0~2023.04.11-1 [243 kB] Get:1267 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpci3 armhf 1:3.9.0-4 [61.3 kB] Get:1268 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsnmp-base all 5.9.3+dfsg-2 [1753 kB] Get:1269 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsnmp-dev armhf 5.9.3+dfsg-2 [201 kB] Get:1270 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnetsnmptrapd40 armhf 5.9.3+dfsg-2 [20.0 kB] Get:1271 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsnmp40 armhf 5.9.3+dfsg-2 [2432 kB] Get:1272 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnewt0.52 armhf 0.52.23-1+b1 [51.0 kB] Get:1273 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnss-myhostname armhf 252.12-1~deb12u1+rpi1 [76.5 kB] Get:1274 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libobt2v5 armhf 3.6.1-10 [65.1 kB] Get:1275 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libobrender32v5 armhf 3.6.1-10 [71.9 kB] Get:1276 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf unixodbc-dev armhf 2.3.11-2+deb12u1 [200 kB] Get:1277 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbc1 armhf 2.3.11-2+deb12u1 [5008 B] Get:1278 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbc2 armhf 2.3.11-2+deb12u1 [123 kB] Get:1279 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbccr2 armhf 2.3.11-2+deb12u1 [14.7 kB] Get:1280 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf odbcinst armhf 2.3.11-2+deb12u1 [11.5 kB] Get:1281 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf odbcinst1debian2 armhf 2.3.11-2+deb12u1 [5112 B] Get:1282 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf unixodbc-common all 2.3.11-2+deb12u1 [8172 B] Get:1283 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libodbcinst2 armhf 2.3.11-2+deb12u1 [27.6 kB] Get:1284 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libonig-dev armhf 6.9.8-1 [96.7 kB] Get:1285 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libonig5 armhf 6.9.8-1 [166 kB] Get:1286 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libopenmpt-modplug1 armhf 0.8.9.0-openmpt1-2 [20.2 kB] Get:1287 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libout123-0 armhf 1.31.2-1 [24.2 kB] Get:1288 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcap0.8 armhf 1.10.3-1 [140 kB] Get:1289 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpcsclite1 armhf 1.9.9-2 [47.0 kB] Get:1290 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libpeas-common all 1.34.0-1 [54.3 kB] Get:1291 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpeas-1.0-0 armhf 1.34.0-1+b1 [52.2 kB] Get:1292 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsphinxbase3 armhf 0.8+5prealpha+1-16 [97.7 kB] Get:1293 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpocketsphinx3 armhf 0.8+5prealpha+1-15 [106 kB] Get:1294 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf portaudio19-dev armhf 19.6.0-1.2 [98.3 kB] Get:1295 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libportaudiocpp0 armhf 19.6.0-1.2 [17.0 kB] Get:1296 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libportaudio2 armhf 19.6.0-1.2 [57.3 kB] Get:1297 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpq-dev armhf 15.3-0+deb12u1 [129 kB] Get:1298 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpq5 armhf 15.3-0+deb12u1 [166 kB] Get:1299 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqdbm-dev armhf 1.8.78-12 [135 kB] Get:1300 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqdbm14 armhf 1.8.78-12 [74.3 kB] Get:1301 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqt5x11extras5 armhf 5.15.8-2 [9576 B] Get:1302 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5dbus5 armhf 5.15.8+dfsg-11+rpi1 [182 kB] Get:1303 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5network5 armhf 5.15.8+dfsg-11+rpi1 [571 kB] Get:1304 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-image0 armhf 0.4.0-2 [21.9 kB] Get:1305 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-shape0 armhf 1.15-1 [106 kB] Get:1306 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xinerama0 armhf 1.15-1 [105 kB] Get:1307 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xinput0 armhf 1.15-1 [127 kB] Get:1308 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5gui5 armhf 5.15.8+dfsg-11+rpi1 [2533 kB] Get:1309 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5widgets5 armhf 5.15.8+dfsg-11+rpi1 [2037 kB] Get:1310 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libqt5svg5 armhf 5.15.8-3 [113 kB] Get:1311 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libqt5core5a armhf 5.15.8+dfsg-11+rpi1 [1500 kB] Get:1312 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf librubberband2 armhf 3.1.2+dfsg0-1 [110 kB] Get:1313 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-rubygems all 3.3.15-2 [293 kB] Get:1314 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby3.1 armhf 3.1.2-7 [663 kB] Get:1315 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby armhf 1:3.1 [5868 B] Get:1316 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rake all 13.0.6-3 [83.9 kB] Get:1317 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-net-telnet all 0.2.0-1 [13.1 kB] Get:1318 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-webrick all 1.8.1-1 [51.4 kB] Get:1319 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-xmlrpc all 0.3.2-2 [24.4 kB] Get:1320 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf ruby-sdbm armhf 1.0.0-5+rpi1 [15.9 kB] Get:1321 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libruby3.1 armhf 3.1.2-7 [5011 kB] Get:1322 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libruby armhf 1:3.1 [4968 B] Get:1323 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsdl1.2debian armhf 1.2.15+dfsg2-8 [164 kB] Get:1324 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsdl-image1.2 armhf 1.2.12-13+b2 [28.9 kB] Get:1325 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsdl2-2.0-0 armhf 2.26.5+dfsg-1 [524 kB] Get:1326 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsigsegv2 armhf 2.14-1 [36.6 kB] Get:1327 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsndio7.0 armhf 1.9.0-0.3 [24.7 kB] Get:1328 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libss2 armhf 1.47.0-2 [22.7 kB] Get:1329 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libsyn123-0 armhf 1.31.2-1 [71.8 kB] Get:1330 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libtool all 2.4.7-5 [517 kB] Get:1331 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf upower armhf 0.99.20-2 [75.6 kB] Get:1332 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libupower-glib3 armhf 0.99.20-2 [29.8 kB] Get:1333 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libvte-2.91-0 armhf 0.70.6-1~deb12u1 [765 kB] Get:1334 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libvte-2.91-common armhf 0.70.6-1~deb12u1 [641 kB] Get:1335 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwebkit2gtk-4.1-0 armhf 2.40.3-2~deb12u2+rpi1 [15.6 MB] Get:1336 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxbase3.0-0v5 armhf 3.0.5.1+dfsg-5+b1 [858 kB] Get:1337 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwxgtk3.0-gtk3-0v5 armhf 3.0.5.1+dfsg-5+b1 [3542 kB] Get:1338 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxcb-xv0 armhf 1.15-1 [109 kB] Get:1339 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfce4util-common all 4.18.1-2 [66.0 kB] Get:1340 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfce4util7 armhf 4.18.1-2 [32.4 kB] Get:1341 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xfconf armhf 4.18.0-2 [119 kB] Get:1342 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxfconf-0-3 armhf 4.18.0-2 [37.5 kB] Get:1343 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxmltok1-dev armhf 1.2-4+b2 [56.0 kB] Get:1344 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libxmltok1 armhf 1.2-4+b2 [39.5 kB] Get:1345 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmuu1 armhf 2:1.1.3-3 [23.3 kB] Get:1346 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxres1 armhf 2:1.2.1-1 [18.7 kB] Get:1347 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxv1 armhf 2:1.0.11-1.1 [23.3 kB] Get:1348 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxxf86dga1 armhf 2:1.1.5-1 [20.9 kB] Get:1349 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzip-dev armhf 1.7.3-1+b1 [163 kB] Get:1350 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzip4 armhf 1.7.3-1+b1 [49.8 kB] Get:1351 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lightdm armhf 1.26.0-8 [151 kB] Get:1352 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lsb-release all 12.0-1 [6416 B] Get:1353 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lua-lpeg armhf 1.0.2-2 [32.3 kB] Get:1354 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf x11-xserver-utils armhf 7.7+9 [151 kB] Get:1355 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lxrandr armhf 0.3.2-1.1 [51.4 kB] Get:1356 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf lxterminal armhf 0.4.0-2 [91.4 kB] Get:1357 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf mailcap all 3.70+nmu1 [32.0 kB] Get:1358 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mesa-utils-bin armhf 8.5.0-1 [45.5 kB] Get:1359 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mesa-utils armhf 8.5.0-1 [955 kB] Get:1360 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mousepad armhf 0.5.10-2 [519 kB] Get:1361 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf mpg123 armhf 1.31.2-1 [186 kB] Get:1362 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf neofetch all 7.1.0-4 [81.8 kB] Get:1363 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf nmap armhf 7.93+dfsg1-1 [1768 kB] Get:1364 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf nmap-common all 7.93+dfsg1-1 [4148 kB] Get:1365 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansi all 0.3.1-2 [9728 B] Get:1366 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ansistyles all 0.1.3-5 [4548 B] Get:1367 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-asap all 2.0.6+~2.0.0-1 [15.4 kB] Get:1368 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-asn1 all 0.2.6+~0.2.0-2 [8760 B] Get:1369 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-assert-plus all 1.0.0-4 [6852 B] Get:1370 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-asynckit all 0.4.0-5 [10.3 kB] Get:1371 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-aws-sign2 all 0.7.1-4 [4396 B] Get:1372 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-aws4 all 1.11.0-2 [10.4 kB] Get:1373 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-tweetnacl all 1.0.3+dfsg-3 [34.9 kB] Get:1374 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-bcrypt-pbkdf all 1.0.2-3 [11.1 kB] Get:1375 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-caseless all 0.12.1-2 [3976 B] Get:1376 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-delayed-stream all 1.0.0-5 [5436 B] Get:1377 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-combined-stream all 1.0.8+~1.0.3-1 [7316 B] Get:1378 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-concat-map all 0.0.2+~0.0.1-1 [7148 B] Get:1379 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-dashdash all 2.0.0-4 [30.3 kB] Get:1380 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-jsbn all 1.1.0+~1.2.29-1 [15.6 kB] Get:1381 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-ecc-jsbn all 0.2.0-4 [9520 B] Get:1382 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-extend all 3.0.2+~3.0.1-3 [7816 B] Get:1383 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-extsprintf all 1.4.1+~1.4.1-2 [6464 B] Get:1384 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-forever-agent all 0.6.1+~0.6.1-2 [5616 B] Get:1385 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-form-data all 4.0.0-1 [13.2 kB] Get:1386 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-getpass all 0.1.7-3 [4796 B] Get:1387 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-har-schema all 2.0.0-5 [5952 B] Get:1388 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-har-validator all 5.1.5-3 [7328 B] Get:1389 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-verror all 1.10.1+~1.10.5-2 [17.0 kB] Get:1390 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsprim all 2.0.1-1 [13.5 kB] Get:1391 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-sshpk all 1.17.0+dfsg-2 [52.5 kB] Get:1392 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-http-signature all 1.3.6-2 [13.2 kB] Get:1393 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-isstream all 0.1.2+dfsg+~0.1.0-1 [4648 B] Get:1394 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-json-stringify-safe all 5.0.1+repack-6 [21.0 kB] Get:1395 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-jsonstream all 1.3.5-3 [8472 B] Get:1396 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-leven all 4.0.0+~cs1.1.1-2 [6224 B] Get:1397 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-lockfile all 1.0.4+~1.0.2-1 [8948 B] Get:1398 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-number-is-nan all 2.0.0-3 [3624 B] Get:1399 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-oauth-sign all 0.9.0-4 [4404 B] Get:1400 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-opener all 1.5.2+~1.4.0-1 [5940 B] Get:1401 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-performance-now all 2.1.0+debian-4 [5296 B] Get:1402 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-psl all 1.8.0+ds-9 [38.1 kB] Get:1403 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-puka all 1.0.1+dfsg-3 [29.0 kB] Get:1404 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-qs all 6.11.0+ds+~6.9.7-3 [43.2 kB] Get:1405 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf node-tunnel-agent all 0.6.1-4 [5100 B] Get:1406 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf openbox armhf 3.6.1-10 [290 kB] Get:1407 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf psmisc armhf 23.6-1 [253 kB] Get:1408 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf python3-colorzero all 2.0-2 [22.3 kB] Get:1409 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf python3-gpiozero armhf 1.6.2-1+b4 [105 kB] Get:1410 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf re2c armhf 3.0-2 [406 kB] Get:1411 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf rng-tools5 armhf 5-4.1 [19.2 kB] Get:1412 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-minitest all 5.17.0-1 [61.4 kB] Get:1413 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-power-assert all 2.0.3-1 [11.8 kB] Get:1414 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf ruby-test-unit all 3.5.7-1 [78.2 kB] Get:1415 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf swig4.0 armhf 4.1.0-0.2 [1220 kB] Get:1416 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf swig all 4.1.0-0.2 [321 kB] Get:1417 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf systemtap-sdt-dev armhf 4.8-2 [19.4 kB] Get:1418 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-scraping-server armhf 1.12.0+dfsg-8 [185 kB] Err:1418 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-scraping-server armhf 1.12.0+dfsg-8 Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] Get:1419 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xauth armhf 1:1.1.2-1 [32.4 kB] Get:1420 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-standalone-server armhf 1.12.0+dfsg-8 [828 kB] Get:1421 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf tigervnc-common armhf 1.12.0+dfsg-8 [89.6 kB] Get:1422 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf tmux armhf 3.3a-3 [362 kB] Get:1423 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf unzip armhf 6.0-28 [147 kB] Get:1424 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf usbutils armhf 1:014-1 [67.0 kB] Get:1425 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf vorbis-tools armhf 1.4.2-1+b1 [168 kB] Get:1426 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf whiptail armhf 0.52.23-1+b1 [23.1 kB] Get:1427 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf wireless-regdb all 2022.06.06-1 [13.1 kB] Get:1428 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf wireless-tools armhf 30~pre9-14 [102 kB] Get:1429 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf wpasupplicant armhf 2:2.10-12 [1121 kB] Get:1430 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xarchiver armhf 1:0.5.4.20-2 [453 kB] Get:1431 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf xfonts-base all 1:1.0.5+nmu1 [5895 kB] Get:1432 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xfonts-encodings all 1:1.0.4-2.2 [577 kB] Get:1433 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xserver-xorg-input-libinput armhf 1.2.1-1 [60.3 kB] Get:1434 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zenity-common all 3.44.0-1 [2974 kB] Get:1435 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zenity armhf 3.44.0-1 [56.3 kB] Get:1436 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zsh armhf 5.9-4 [767 kB] Get:1437 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf zsh-common all 5.9-4 [4147 kB] Get:1438 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmlrpc-epi-dev armhf 0.54.2-1.3 [40.3 kB] Get:1439 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libxmlrpc-epi0 armhf 0.54.2-1.3 [28.8 kB] Fetched 790 MB in 27min 4s (486 kB/s) E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/k/krb5/libkadm5clnt-mit12_1.20.1-2_armhf.deb Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/p/pixman/libpixman-1-0_0.42.2-1_armhf.deb Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/g/gnupg2/gpgconf_2.2.40-1.1_armhf.deb Connection timed out [IP: 219.100.92.228 80] E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/s/speex/libspeex1_1.2.1-2_armhf.deb Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/p/pcre3/libpcre16-3_8.39-15_armhf.deb Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/d/duktape/libduktape207_2.7.0-2_armhf.deb Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/g/gtksourceview4/libgtksourceview-4-0_4.8.4-4_armhf.deb Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] E: Failed to fetch http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian/pool/main/t/tigervnc/tigervnc-scraping-server_1.12.0+dfsg-8_armhf.deb Error reading from server - read (104: Connection reset by peer) [IP: 219.100.92.228 80] E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing? ``` --------------------------------------------------------------------- [FAILED] dietpi-bookworm-upgrade | Unable to continue, dietpi-bookworm-upgrade will now terminate.

トラブルシューティング

dietpi-update

$ sudo dietpi-update

 DietPi-Update
─────────────────────────────────────────────────────
 Phase: Checking for available DietPi update

[  OK  ] DietPi-Update | Checking IPv4 network connectivity
[  OK  ] DietPi-Update | Checking DNS resolver
[ INFO ] DietPi-Update | Getting latest version from: https://raw.githubusercontent.com/MichaIng/DietPi/master/.update/version
[  OK  ] DietPi-Update | Got valid latest version: 9.0.2
[  OK  ] DietPi-Update | Update available:
[ INFO ] DietPi-Update | Current version : v8.22.3
[ INFO ] DietPi-Update | Latest version  : v9.0.2

 DietPi-Update
─────────────────────────────────────────────────────
 Phase: Checking for update pre-requirements

[  OK  ] DietPi-Update | DietPi-Userdata validation: /mnt/dietpi_userdata
[  OK  ] DietPi-Update | Free space check: path=/ | available=77635 MiB | required=100 MiB
[ SUB1 ] DietPi-Services > stop 
[  OK  ] DietPi-Services | stop : cron
[ INFO ] DietPi-Services | skip : apache2 (masked)
[  OK  ] DietPi-Services | stop : smbd
[  OK  ] DietPi-Services | stop : nmbd
[ INFO ] DietPi-Services | skip : proftpd (masked)

 DietPi-Update
─────────────────────────────────────────────────────
 Phase: Applying pre-patches

[  OK  ] DietPi-Update | Downloading pre-patches
[  OK  ] DietPi-Update | Applying execute permission
[ INFO ] DietPi-Pre-patches | Migrating RPi APT repository to Bookworm and removing obsolete FFmpeg workaround
[  OK  ] DietPi-Pre-patches | eval echo 'deb https://archive.raspberrypi.com/debian/ bookworm main' > /etc/apt/sources.list.d/raspi.list
[ INFO ] DietPi-Pre-patches | Removing faulty non-free-firmware component if present
[  OK  ] DietPi-Pre-patches | sed --follow-symlinks -i s/ non-free-firmware$// /etc/apt/sources.list
[ INFO ] DietPi-Pre-patches | Reverting now obsolete rpi-eeprom hold
[FAILED] DietPi-Pre-patches | apt-mark unhold rpi-eeprom

RPi Zero W (armv6l) | IP: 192.168.1.201 ┌───────────────────────────────────────────┤ DietPi-Pre-patches ├───────────────────────────────────────────┐ │ - Command: apt-mark unhold rpi-eeprom │ │ - Exit code: 100 │ │ - DietPi version: v8.22.3 (MichaIng/master) | HW_MODEL: 1 | HW_ARCH: 1 | DISTRO: 7 │ │ - Error log: │ │ E: Can't select installed nor candidate version from package 'rpi-eeprom' as it has neither of them │ │ │ Retry : Re-run the last command that failed │ DietPi-Config : Edit network, APT/NTP mirror settings etc │ │ Open subshell : Open a subshell to investigate or solve the issue │ │ Send report : Uploads bugreport containing system info to DietPi │ │ ●─ Devs only ──────────────────────────────────────● │ │ Change command : Adjust and rerun the command │ │ │ │ │ │ <Ok> <Exit> │ │ │ └────────────────────────────────────────────────────────────────────────────────────────────────────────────┘

RPi Zero W (armv6l) | IP: 192.168.1.201 ┌───────────────────────────────────────────┤ DietPi-Pre-patches ├───────────────────────────────────────────┐ │ - Command: apt-mark unhold rpi-eeprom │ │ - Exit code: 100 │ │ - DietPi version: v8.22.3 (MichaIng/master) | HW_MODEL: 1 | HW_ARCH: 1 | DISTRO: 7 │ │ - Error log: │ │ E: Can't select installed nor candidate version from package 'rpi-eeprom' as it has neither of them │ │ │ │ Retry : Re-run the last command that failed │ │ DietPi-Config : Edit network, APT/NTP mirror settings etc │ │ Open subshell : Open a subshell to investigate or solve the issue │ │ Send report : Uploads bugreport containing system info to DietPi │ │ ●─ Devs only ──────────────────────────────────────● │ Change command : Adjust and rerun the command │ │ │ │ │ <Ok> <Exit> │ │ │ └────────────────────────────────────────────────────────────────────────────────────────────────────────────┘

RPi Zero W (armv6l) | IP: 192.168.1.201 ┌───────────────────────────────────────────┤ DietPi-Pre-patches ├───────────────────────────────────────────┐ │ Please enter/alter the command to be executed. │ │ │ │ NB: Please only use this solution if you know for sure that it will not cause follow up issues from the │ │ originating script. It will e.g. allow you to continue a certain software install, but if you edit the │ │ download link, the originating script might expect files which are not present. │ │ │ │ Use this with caution! │ │ │ exit______________________________________________________________________________________________________ <Ok> <Cancel> │ │ │ └────────────────────────────────────────────────────────────────────────────────────────────────────────────┘

[ INFO ] DietPi-Pre-patches | Executing alternative command: exit
[  OK  ] DietPi-Update | Successfully applied pre-patches

 DietPi-Update
─────────────────────────────────────────────────────
 Phase: Upgrading APT packages

[ INFO ] DietPi-Update | APT update, please wait...
Get:1 http://raspbian.raspberrypi.org/raspbian bookworm InRelease [15.0 kB]
Get:2 https://archive.raspberrypi.com/debian bookworm InRelease [23.7 kB]
Get:3 http://raspbian.raspberrypi.org/raspbian bookworm/non-free Sources [150 kB]
Get:4 https://archive.raspberrypi.com/debian bookworm/main armhf Packages [360 kB]
Get:5 http://raspbian.raspberrypi.org/raspbian bookworm/contrib Sources [94.4 kB]
Get:6 https://archive.raspberrypi.com/debian bookworm/main armhf Contents (deb) [2439 kB]
Get:7 http://raspbian.raspberrypi.org/raspbian bookworm/main Sources [13.7 MB]
Get:8 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf Packages [14.5 MB]
Get:9 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf Contents (deb) [45.8 MB]
Get:10 http://raspbian.raspberrypi.org/raspbian bookworm/non-free armhf Packages [118 kB]
Fetched 77.2 MB in 6min 20s (203 kB/s)
Reading package lists...
[  OK  ] DietPi-Update | APT update
[ INFO ] DietPi-Update | APT upgrade, please wait...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
The following packages were automatically installed and are no longer required:
  libaom0 libavcodec58 libavfilter7 libavformat58 libavutil56 libcodec2-0.9
  libdav1d4 libflac8 libidn11 libkeybinder0 libplacebo72 libpostproc55
  libprotobuf-lite23 libsrt1.4-gnutls libswresample3 libswscale5 libvpx6
  libwebp6 libwnck-common libwnck22 libx264-160 libx265-192
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
  eject libavfilter8 libgtk-layer-shell0 libkeybinder-3.0-0 libplacebo208
  libpostproc56 libprotobuf-lite32 libwnck-3-0 libwnck-3-common libzimg2
  xinput
The following packages will be upgraded:
  alsa-utils chromium-browser chromium-chromedriver
  chromium-codecs-ffmpeg-extra clang console-setup console-setup-linux curl
  dbus dbus-bin dbus-daemon dbus-session-bus-common dbus-system-bus-common
  dbus-user-session dbus-x11 debianutils filezilla filezilla-common
  firmware-atheros firmware-brcm80211 firmware-iwlwifi firmware-misc-nonfree
  firmware-realtek gimp gimp-data gsettings-desktop-schemas
  gstreamer1.0-plugins-good gtk-update-icon-cache keyboard-configuration
  krb5-multidev libasound2 libasound2-data libasound2-dev libatopology2
  libavcodec59 libavformat59 libavutil57 libc-bin libc-dev-bin libc-l10n libc6
  libc6-dev libcairo-gobject2 libcairo2 libcups2 libcurl3-gnutls libcurl4
  libcurl4-gnutls-dev libdbus-1-3 libegl-mesa0 libfm-data libfm-extra4
  libfm-gtk-data libfm-gtk4 libfm-modules libfm4 libgbm1 libgimp2.0
  libgl1-mesa-dri libglapi-mesa libglx-mesa0 libgs-common libgs10
  libgs10-common libgssapi-krb5-2 libgssrpc4 libgstreamer-plugins-bad1.0-0
  libgtk-3-0 libgtk-3-common libgtk2.0-0 libgtk2.0-common libimlib2
  libjavascriptcoregtk-4.0-18 libjavascriptcoregtk-4.1-0 libk5crypto3
  libkadm5clnt-mit12 libkadm5srv-mit12 libkdb5-10 libkrb5-3 libkrb5-dev
  libkrb5support0 liblightdm-gobject-1-0 libnss-myhostname libobrender32v5
  libobt2v5 libpam-modules libpam-modules-bin libpam-runtime libpam-systemd
  libpam0g libpam0g-dev libpixman-1-0 libplymouth5 libpq-dev libpq5 libpulse0
  libpulsedsp libraspberrypi-bin libraspberrypi0 libssl-dev libssl3
  libswresample4 libswscale6 libsystemd-dev libsystemd-shared libsystemd0
  libtiff-dev libtiff6 libtiffxx6 libudev-dev libudev1 libvlc-bin libvlc5
  libvlccore9 libvte-2.91-0 libvte-2.91-common libwebkit2gtk-4.0-37
  libwebkit2gtk-4.1-0 lightdm linux-libc-dev locales locales-all lxde
  lxde-core lxinput lxlock lxpanel lxpanel-data lxpolkit lxsession
  lxsession-data lxsession-edit lxsession-logout lxterminal node-babel7
  node-babel7-runtime openbox openssh-client openssh-server
  openssh-sftp-server openssl pcmanfm plymouth pulseaudio pulseaudio-utils
  python3-gpiozero python3-pip python3-pip-whl systemd systemd-sysv
  systemd-timesyncd udev vlc vlc-bin vlc-data vlc-plugin-base vlc-plugin-qt
  vlc-plugin-video-output xserver-common xserver-xorg-core
160 upgraded, 11 newly installed, 0 to remove and 0 not upgraded.
Need to get 333 MB of archives.
After this operation, 48.8 MB of additional disk space will be used.
Get:1 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf debianutils armhf 5.7-0.5~deb12u1 [101 kB]
Get:2 https://archive.raspberrypi.com/debian bookworm/main armhf libc6-dev armhf 2.36-9+rpt2+deb12u3 [1257 kB]
Get:3 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-system-bus-common all 1.14.10-1~deb12u1 [79.3 kB]
Get:4 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-session-bus-common all 1.14.10-1~deb12u1 [78.2 kB]
Get:5 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd-dev armhf 252.17-1~deb12u1+rpi1 [353 kB]
Get:6 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd-timesyncd armhf 252.17-1~deb12u1+rpi1 [63.0 kB]
Get:7 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd-shared armhf 252.17-1~deb12u1+rpi1 [1517 kB]
Get:18 https://archive.raspberrypi.com/debian bookworm/main armhf libc-dev-bin armhf 2.36-9+rpt2+deb12u3 [44.2 kB]
Get:19 https://archive.raspberrypi.com/debian bookworm/main armhf linux-libc-dev armhf 1:6.1.63-1+rpt1 [1774 kB]
Get:8 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpam-systemd armhf 252.17-1~deb12u1+rpi1 [200 kB]
Get:9 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd armhf 252.17-1~deb12u1+rpi1 [2885 kB]
Get:35 https://archive.raspberrypi.com/debian bookworm/main armhf libc6 armhf 2.36-9+rpt2+deb12u3 [2110 kB]
Get:44 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgimp2.0 armhf 2.10.34-1+deb12u1 [737 kB]
Get:54 https://archive.raspberrypi.com/debian bookworm/main armhf libc-bin armhf 2.36-9+rpt2+deb12u3 [493 kB]
Get:45 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gimp-data all 2.10.34-1+deb12u1 [14.2 MB]
Get:61 https://archive.raspberrypi.com/debian bookworm/main armhf libpam0g-dev armhf 1.5.2-6+rpt2+deb12u1 [141 kB]
Get:63 https://archive.raspberrypi.com/debian bookworm/main armhf libpam0g armhf 1.5.2-6+rpt2+deb12u1 [86.3 kB]
Get:10 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libsystemd0 armhf 252.17-1~deb12u1+rpi1 [299 kB]
Get:65 https://archive.raspberrypi.com/debian bookworm/main armhf libpam-modules-bin armhf 1.5.2-6+rpt2+deb12u1 [71.4 kB]
Get:67 https://archive.raspberrypi.com/debian bookworm/main armhf libpam-modules armhf 1.5.2-6+rpt2+deb12u1 [271 kB]
Get:11 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-x11 armhf 1.14.10-1~deb12u1 [90.1 kB]
Get:70 https://archive.raspberrypi.com/debian bookworm/main armhf libpam-runtime all 1.5.2-6+rpt2+deb12u1 [161 kB]
Get:12 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-user-session armhf 1.14.10-1~deb12u1 [78.1 kB]
Get:73 https://archive.raspberrypi.com/debian bookworm/main armhf xserver-common all 2:21.1.7-3+rpt2+deb12u4 [2382 kB]
Get:13 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-daemon armhf 1.14.10-1~deb12u1 [163 kB]
Get:14 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus-bin armhf 1.14.10-1~deb12u1 [102 kB]
Get:15 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf dbus armhf 1.14.10-1~deb12u1 [94.7 kB]
Get:16 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libdbus-1-3 armhf 1.14.10-1~deb12u1 [164 kB]
Get:17 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf systemd-sysv armhf 252.17-1~deb12u1+rpi1 [42.0 kB]
Get:20 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libudev-dev armhf 252.17-1~deb12u1+rpi1 [52.2 kB]
Get:21 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf udev armhf 252.17-1~deb12u1+rpi1 [1584 kB]
Get:82 https://archive.raspberrypi.com/debian bookworm/main armhf xserver-xorg-core armhf 2:21.1.7-3+rpt2+deb12u4 [3453 kB]
Get:22 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libudev1 armhf 252.17-1~deb12u1+rpi1 [99.3 kB]
Ign:82 https://archive.raspberrypi.com/debian bookworm/main armhf xserver-xorg-core armhf 2:21.1.7-3+rpt2+deb12u4
Get:23 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libkrb5-dev armhf 1.20.1-2+deb12u1 [14.7 kB]
Get:24 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf krb5-multidev armhf 1.20.1-2+deb12u1 [125 kB]
Get:83 https://archive.raspberrypi.com/debian bookworm/main armhf console-setup-linux all 1.221rpt1 [1882 kB]
Get:25 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libk5crypto3 armhf 1.20.1-2+deb12u1 [72.4 kB]
Get:26 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgssapi-krb5-2 armhf 1.20.1-2+deb12u1 [110 kB]
Get:27 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libkrb5-3 armhf 1.20.1-2+deb12u1 [283 kB]
Get:28 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libkrb5support0 armhf 1.20.1-2+deb12u1 [29.4 kB]
Get:29 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgssrpc4 armhf 1.20.1-2+deb12u1 [50.4 kB]
Get:30 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libkdb5-10 armhf 1.20.1-2+deb12u1 [35.3 kB]
Get:31 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libkadm5srv-mit12 armhf 1.20.1-2+deb12u1 [45.2 kB]
Get:32 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libkadm5clnt-mit12 armhf 1.20.1-2+deb12u1 [35.8 kB]
Get:33 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcups2 armhf 2.4.2-3+deb12u4 [190 kB]
Get:34 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf openssh-sftp-server armhf 1:9.2p1-2+deb12u1 [50.3 kB]
Get:36 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf openssh-server armhf 1:9.2p1-2+deb12u1 [351 kB]
Get:37 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf openssh-client armhf 1:9.2p1-2+deb12u1 [795 kB]
Get:84 https://archive.raspberrypi.com/debian bookworm/main armhf keyboard-configuration all 1.221rpt1 [416 kB]
Get:85 https://archive.raspberrypi.com/debian bookworm/main armhf console-setup all 1.221rpt1 [102 kB]
Get:86 https://archive.raspberrypi.com/debian bookworm/main armhf libgl1-mesa-dri armhf 23.2.1-1~bpo12+rpt2 [6276 kB]
Get:38 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf clang armhf 1:14.0-55.7~deb12u1 [5140 B]
Get:39 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf curl armhf 7.88.1-10+rpi1+deb12u4 [301 kB]
Get:40 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl4 armhf 7.88.1-10+rpi1+deb12u4 [346 kB]
Get:41 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf eject armhf 2.38.1-5 [44.1 kB]
Get:42 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf filezilla armhf 3.63.0-1+deb12u2 [1798 kB]
Get:43 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf filezilla-common all 3.63.0-1+deb12u2 [2324 kB]
Get:46 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs10 armhf 10.0.0~dfsg-11+deb12u2 [1968 kB]
Get:87 https://archive.raspberrypi.com/debian bookworm/main armhf libglx-mesa0 armhf 23.2.1-1~bpo12+rpt2 [131 kB]
Get:88 https://archive.raspberrypi.com/debian bookworm/main armhf libegl-mesa0 armhf 23.2.1-1~bpo12+rpt2 [94.7 kB]
Get:89 https://archive.raspberrypi.com/debian bookworm/main armhf libglapi-mesa armhf 23.2.1-1~bpo12+rpt2 [45.2 kB]
Get:90 https://archive.raspberrypi.com/debian bookworm/main armhf libgbm1 armhf 23.2.1-1~bpo12+rpt2 [35.6 kB]
Get:91 https://archive.raspberrypi.com/debian bookworm/main armhf libpixman-1-0 armhf 0.42.2-1+rpt1 [479 kB]
Get:92 https://archive.raspberrypi.com/debian bookworm/main armhf libssl-dev armhf 3.0.11-1~deb12u2+rpt1 [2119 kB]
Get:47 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs10-common all 10.0.0~dfsg-11+deb12u2 [586 kB]
Get:49 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtiff-dev armhf 4.5.0-6+deb12u1 [401 kB]
Get:50 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtiffxx6 armhf 4.5.0-6+deb12u1 [145 kB]
Get:51 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libtiff6 armhf 4.5.0-6+deb12u1 [272 kB]
Get:48 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgs-common all 10.0.0~dfsg-11+deb12u2 [148 kB]
Get:53 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libplacebo208 armhf 4.208.0-3 [1871 kB]
Get:52 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf gimp armhf 2.10.34-1+deb12u1 [3528 kB]
Get:93 https://archive.raspberrypi.com/debian bookworm/main armhf libssl3 armhf 3.0.11-1~deb12u2+rpt1 [1635 kB]
Get:55 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libzimg2 armhf 3.0.4+ds1-1 [68.2 kB]
Get:56 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl4-gnutls-dev armhf 7.88.1-10+rpi1+deb12u4 [422 kB]
Get:57 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libcurl3-gnutls armhf 7.88.1-10+rpi1+deb12u4 [341 kB]
Get:94 https://archive.raspberrypi.com/debian bookworm/main armhf libatopology2 armhf 1.2.8-1+rpt1 [46.8 kB]
Get:95 https://archive.raspberrypi.com/debian bookworm/main armhf libasound2-dev armhf 1.2.8-1+rpt1 [110 kB]
Get:96 https://archive.raspberrypi.com/debian bookworm/main armhf libasound2 armhf 1.2.8-1+rpt1 [304 kB]
Get:59 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libimlib2 armhf 1.10.0-4+deb12u1 [174 kB]
Get:68 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libkeybinder-3.0-0 armhf 0.3.2-1.1 [8164 B]
Get:69 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libnss-myhostname armhf 252.17-1~deb12u1+rpi1 [76.6 kB]
Get:74 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libprotobuf-lite32 armhf 3.21.12-3 [235 kB]
Get:97 https://archive.raspberrypi.com/debian bookworm/main armhf libasound2-data all 1.2.8-1+rpt1 [20.9 kB]
Get:98 https://archive.raspberrypi.com/debian bookworm/main armhf libcairo-gobject2 armhf 1.16.0-7+rpt1 [111 kB]
Get:58 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libgstreamer-plugins-bad1.0-0 armhf 1.22.0-4+deb12u3 [698 kB]
Get:99 https://archive.raspberrypi.com/debian bookworm/main armhf libcairo2 armhf 1.16.0-7+rpt1 [481 kB]
Get:75 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libvte-2.91-0 armhf 0.70.6-2~deb12u1 [761 kB]
Get:100 https://archive.raspberrypi.com/debian bookworm/main armhf libgtk-3-common all 1:3.24.38-2~deb12u1+rpt3+rpi1 [3896 kB]
Get:60 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwebkit2gtk-4.0-37 armhf 2.42.2-1~deb12u1+rpi1 [15.9 MB]
Get:76 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libvte-2.91-common armhf 0.70.6-2~deb12u1 [641 kB]
Get:77 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwnck-3-common all 43.0-3 [229 kB]
Get:78 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libwnck-3-0 armhf 43.0-3 [95.3 kB]
Get:79 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf xinput armhf 1.6.3-1 [48.8 kB]
Get:101 https://archive.raspberrypi.com/debian bookworm/main armhf libgtk-3-0 armhf 1:3.24.38-2~deb12u1+rpt3+rpi1 [2355 kB]
Get:102 https://archive.raspberrypi.com/debian bookworm/main armhf chromium-browser armhf 120.0.6099.102-rpt1 [110 MB]
Ign:102 https://archive.raspberrypi.com/debian bookworm/main armhf chromium-browser armhf 120.0.6099.102-rpt1
Err:103 https://archive.raspberrypi.com/debian bookworm/main armhf chromium-codecs-ffmpeg-extra armhf 120.0.6099.102-rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Ign:60 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwebkit2gtk-4.0-37 armhf 2.42.2-1~deb12u1+rpi1
Err:62 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjavascriptcoregtk-4.0-18 armhf 2.42.2-1~deb12u1+rpi1
  Cannot initiate the connection to ftp.jaist.ac.jp:80 (150.65.7.130). - connect (101: Network is unreachable) Cannot initiate the connection to ftp.jaist.ac.jp:80 (2001:df0:2ed:feed::feed). - connect (101: Network is unreachable) [IP: 150.65.7.130 80]
Err:64 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwebkit2gtk-4.1-0 armhf 2.42.2-1~deb12u1+rpi1
  Cannot initiate the connection to ftp.jaist.ac.jp:80 (150.65.7.130). - connect (101: Network is unreachable) Cannot initiate the connection to ftp.jaist.ac.jp:80 (2001:df0:2ed:feed::feed). - connect (101: Network is unreachable) [IP: 150.65.7.130 80]
Err:66 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libjavascriptcoregtk-4.1-0 armhf 2.42.2-1~deb12u1+rpi1
  Cannot initiate the connection to ftp.jaist.ac.jp:80 (150.65.7.130). - connect (101: Network is unreachable) Cannot initiate the connection to ftp.jaist.ac.jp:80 (2001:df0:2ed:feed::feed). - connect (101: Network is unreachable) [IP: 150.65.7.130 80]
Err:71 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpq-dev armhf 15.5-0+deb12u1
  Cannot initiate the connection to ftp.jaist.ac.jp:80 (150.65.7.130). - connect (101: Network is unreachable) Cannot initiate the connection to ftp.jaist.ac.jp:80 (2001:df0:2ed:feed::feed). - connect (101: Network is unreachable) [IP: 150.65.7.130 80]
Err:72 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libpq5 armhf 15.5-0+deb12u1
  Cannot initiate the connection to ftp.jaist.ac.jp:80 (150.65.7.130). - connect (101: Network is unreachable) Cannot initiate the connection to ftp.jaist.ac.jp:80 (2001:df0:2ed:feed::feed). - connect (101: Network is unreachable) [IP: 150.65.7.130 80]
Err:80 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel7 all 7.20.15+ds1+~cs214.269.168-3+deb12u1
  Cannot initiate the connection to ftp.jaist.ac.jp:80 (150.65.7.130). - connect (101: Network is unreachable) Cannot initiate the connection to ftp.jaist.ac.jp:80 (2001:df0:2ed:feed::feed). - connect (101: Network is unreachable) [IP: 150.65.7.130 80]
Err:104 https://archive.raspberrypi.com/debian bookworm/main armhf libpulsedsp armhf 16.1+dfsg1-2+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:81 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf node-babel7-runtime all 7.20.15+ds1+~cs214.269.168-3+deb12u1
  Cannot initiate the connection to ftp.jaist.ac.jp:80 (150.65.7.130). - connect (101: Network is unreachable) Cannot initiate the connection to ftp.jaist.ac.jp:80 (2001:df0:2ed:feed::feed). - connect (101: Network is unreachable) [IP: 150.65.7.130 80]
Err:105 https://archive.raspberrypi.com/debian bookworm/main armhf pulseaudio-utils armhf 16.1+dfsg1-2+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:106 https://archive.raspberrypi.com/debian bookworm/main armhf pulseaudio armhf 16.1+dfsg1-2+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:107 https://archive.raspberrypi.com/debian bookworm/main armhf libpulse0 armhf 16.1+dfsg1-2+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:108 https://archive.raspberrypi.com/debian bookworm/main armhf chromium-chromedriver armhf 120.0.6099.102-rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:109 https://archive.raspberrypi.com/debian bookworm/main armhf libc-l10n all 2.36-9+rpt2+deb12u3
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:110 https://archive.raspberrypi.com/debian bookworm/main armhf locales all 2.36-9+rpt2+deb12u3
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:111 https://archive.raspberrypi.com/debian bookworm/main armhf alsa-utils armhf 1.2.8-1+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:112 https://archive.raspberrypi.com/debian bookworm/main armhf firmware-atheros all 1:20230210-5+rpt3
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:113 https://archive.raspberrypi.com/debian bookworm/main armhf firmware-brcm80211 all 1:20230210-5+rpt3
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:114 https://archive.raspberrypi.com/debian bookworm/main armhf firmware-iwlwifi all 1:20230210-5+rpt3
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:115 https://archive.raspberrypi.com/debian bookworm/main armhf firmware-misc-nonfree all 1:20230210-5+rpt3
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:116 https://archive.raspberrypi.com/debian bookworm/main armhf firmware-realtek all 1:20230210-5+rpt3
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:117 https://archive.raspberrypi.com/debian bookworm/main armhf libgtk2.0-common all 2.24.33-2+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:118 https://archive.raspberrypi.com/debian bookworm/main armhf libgtk2.0-0 armhf 2.24.33-2+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:119 https://archive.raspberrypi.com/debian bookworm/main armhf gsettings-desktop-schemas all 43.0-1+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:120 https://archive.raspberrypi.com/debian bookworm/main armhf gstreamer1.0-plugins-good armhf 1.22.0-5+rpt1+deb12u1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:121 https://archive.raspberrypi.com/debian bookworm/main armhf gtk-update-icon-cache armhf 1:3.24.38-2~deb12u1+rpt3+rpi1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:122 https://archive.raspberrypi.com/debian bookworm/main armhf libswscale6 armhf 8:5.1.4-0+rpt1+deb12u1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:123 https://archive.raspberrypi.com/debian bookworm/main armhf libavformat59 armhf 8:5.1.4-0+rpt1+deb12u1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:124 https://archive.raspberrypi.com/debian bookworm/main armhf libavcodec59 armhf 8:5.1.4-0+rpt1+deb12u1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:125 https://archive.raspberrypi.com/debian bookworm/main armhf libavutil57 armhf 8:5.1.4-0+rpt1+deb12u1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:126 https://archive.raspberrypi.com/debian bookworm/main armhf libswresample4 armhf 8:5.1.4-0+rpt1+deb12u1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:127 https://archive.raspberrypi.com/debian bookworm/main armhf libpostproc56 armhf 8:5.1.4-0+rpt1+deb12u1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:128 https://archive.raspberrypi.com/debian bookworm/main armhf libavfilter8 armhf 8:5.1.4-0+rpt1+deb12u1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:129 https://archive.raspberrypi.com/debian bookworm/main armhf libfm-data all 1.3.2-1+rpt11
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:130 https://archive.raspberrypi.com/debian bookworm/main armhf libfm-extra4 armhf 1.3.2-1+rpt11
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:131 https://archive.raspberrypi.com/debian bookworm/main armhf libfm-gtk-data all 1.3.2-1+rpt11
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:60 http://raspbian.raspberrypi.org/raspbian bookworm/main armhf libwebkit2gtk-4.0-37 armhf 2.42.2-1~deb12u1+rpi1
  Connection timed out [IP: 150.65.7.130 80]
Err:132 https://archive.raspberrypi.com/debian bookworm/main armhf libfm-gtk4 armhf 1.3.2-1+rpt11
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:133 https://archive.raspberrypi.com/debian bookworm/main armhf libfm4 armhf 1.3.2-1+rpt11
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:134 https://archive.raspberrypi.com/debian bookworm/main armhf libfm-modules armhf 1.3.2-1+rpt11
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:135 https://archive.raspberrypi.com/debian bookworm/main armhf libgtk-layer-shell0 armhf 0.8.0-1+rpt3
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:136 https://archive.raspberrypi.com/debian bookworm/main armhf liblightdm-gobject-1-0 armhf 1.26.0-8+rpt3
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:137 https://archive.raspberrypi.com/debian bookworm/main armhf libobt2v5 armhf 3.6.1-10+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:138 https://archive.raspberrypi.com/debian bookworm/main armhf libobrender32v5 armhf 3.6.1-10+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:139 https://archive.raspberrypi.com/debian bookworm/main armhf libplymouth5 armhf 22.02.122-3+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:140 https://archive.raspberrypi.com/debian bookworm/main armhf libraspberrypi-bin armhf 1:2+git20231018~131943+3c97f76-1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:141 https://archive.raspberrypi.com/debian bookworm/main armhf libraspberrypi0 armhf 1:2+git20231018~131943+3c97f76-1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:142 https://archive.raspberrypi.com/debian bookworm/main armhf vlc armhf 1:3.0.20-0+rpt2+deb12u1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:143 https://archive.raspberrypi.com/debian bookworm/main armhf vlc-plugin-base armhf 1:3.0.20-0+rpt2+deb12u1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:144 https://archive.raspberrypi.com/debian bookworm/main armhf vlc-data all 1:3.0.20-0+rpt2+deb12u1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:145 https://archive.raspberrypi.com/debian bookworm/main armhf libvlccore9 armhf 1:3.0.20-0+rpt2+deb12u1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:146 https://archive.raspberrypi.com/debian bookworm/main armhf vlc-plugin-qt armhf 1:3.0.20-0+rpt2+deb12u1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:147 https://archive.raspberrypi.com/debian bookworm/main armhf vlc-plugin-video-output armhf 1:3.0.20-0+rpt2+deb12u1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:148 https://archive.raspberrypi.com/debian bookworm/main armhf libvlc5 armhf 1:3.0.20-0+rpt2+deb12u1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:149 https://archive.raspberrypi.com/debian bookworm/main armhf vlc-bin armhf 1:3.0.20-0+rpt2+deb12u1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:150 https://archive.raspberrypi.com/debian bookworm/main armhf libvlc-bin armhf 1:3.0.20-0+rpt2+deb12u1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:151 https://archive.raspberrypi.com/debian bookworm/main armhf lightdm armhf 1.26.0-8+rpt3
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:152 https://archive.raspberrypi.com/debian bookworm/main armhf locales-all armhf 2.36-9+rpt2+deb12u3
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:153 https://archive.raspberrypi.com/debian bookworm/main armhf lxpanel armhf 0.10.1-2+rpt19
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:154 https://archive.raspberrypi.com/debian bookworm/main armhf lxpanel-data all 0.10.1-2+rpt19
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:155 https://archive.raspberrypi.com/debian bookworm/main armhf pcmanfm armhf 1.3.2-1+rpt18
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:156 https://archive.raspberrypi.com/debian bookworm/main armhf lxde-core all 11+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:157 https://archive.raspberrypi.com/debian bookworm/main armhf lxinput armhf 0.3.5-1+rpt20
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:158 https://archive.raspberrypi.com/debian bookworm/main armhf lxlock all 0.5.5-2+rpt4
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:159 https://archive.raspberrypi.com/debian bookworm/main armhf lxsession-logout armhf 0.5.5-2+rpt4
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:160 https://archive.raspberrypi.com/debian bookworm/main armhf lxpolkit armhf 0.5.5-2+rpt4
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:161 https://archive.raspberrypi.com/debian bookworm/main armhf lxsession-edit armhf 0.5.5-2+rpt4
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:162 https://archive.raspberrypi.com/debian bookworm/main armhf lxsession-data all 0.5.5-2+rpt4
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:163 https://archive.raspberrypi.com/debian bookworm/main armhf lxsession armhf 0.5.5-2+rpt4
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:164 https://archive.raspberrypi.com/debian bookworm/main armhf lxterminal armhf 0.4.0-2+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:165 https://archive.raspberrypi.com/debian bookworm/main armhf lxde all 11+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:166 https://archive.raspberrypi.com/debian bookworm/main armhf openbox armhf 3.6.1-10+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:167 https://archive.raspberrypi.com/debian bookworm/main armhf openssl armhf 3.0.11-1~deb12u2+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:168 https://archive.raspberrypi.com/debian bookworm/main armhf plymouth armhf 22.02.122-3+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:169 https://archive.raspberrypi.com/debian bookworm/main armhf python3-gpiozero all 2.0-1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:170 https://archive.raspberrypi.com/debian bookworm/main armhf python3-pip all 23.0.1+dfsg-1+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:171 https://archive.raspberrypi.com/debian bookworm/main armhf python3-pip-whl all 23.0.1+dfsg-1+rpt1
  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
Err:82 https://archive.raspberrypi.com/debian bookworm/main armhf xserver-xorg-core armhf 2:21.1.7-3+rpt2+deb12u4
  Error reading from server - read (5: Input/output error) [IP: 46.235.231.151 443]
Err:102 https://archive.raspberrypi.com/debian bookworm/main armhf chromium-browser armhf 120.0.6099.102-rpt1
  Connection timed out [IP: 46.235.231.145 443]
Fetched 72.1 MB in 5min 55s (203 kB/s)
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/x/xorg-server/xserver-xorg-core_21.1.7-3%2brpt2%2bdeb12u4_armhf.deb  Error reading from server - read (5: Input/output error) [IP: 46.235.231.151 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/c/chromium-browser/chromium-browser_120.0.6099.102-rpt1_armhf.deb  Connection timed out [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/c/chromium-browser/chromium-codecs-ffmpeg-extra_120.0.6099.102-rpt1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/p/pulseaudio/libpulsedsp_16.1%2bdfsg1-2%2brpt1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/p/pulseaudio/pulseaudio-utils_16.1%2bdfsg1-2%2brpt1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/p/pulseaudio/pulseaudio_16.1%2bdfsg1-2%2brpt1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/p/pulseaudio/libpulse0_16.1%2bdfsg1-2%2brpt1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/c/chromium-browser/chromium-chromedriver_120.0.6099.102-rpt1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/g/glibc/libc-l10n_2.36-9%2brpt2%2bdeb12u3_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/g/glibc/locales_2.36-9%2brpt2%2bdeb12u3_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/a/alsa-utils/alsa-utils_1.2.8-1%2brpt1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/f/firmware-nonfree/firmware-atheros_20230210-5%2brpt3_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/f/firmware-nonfree/firmware-brcm80211_20230210-5%2brpt3_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/f/firmware-nonfree/firmware-iwlwifi_20230210-5%2brpt3_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/f/firmware-nonfree/firmware-misc-nonfree_20230210-5%2brpt3_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/f/firmware-nonfree/firmware-realtek_20230210-5%2brpt3_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/g/gtk%2b2.0/libgtk2.0-common_2.24.33-2%2brpt1_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/g/gtk%2b2.0/libgtk2.0-0_2.24.33-2%2brpt1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/g/gsettings-desktop-schemas/gsettings-desktop-schemas_43.0-1%2brpt1_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/g/gst-plugins-good1.0/gstreamer1.0-plugins-good_1.22.0-5%2brpt1%2bdeb12u1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/g/gtk%2b3.0/gtk-update-icon-cache_3.24.38-2%7edeb12u1%2brpt3%2brpi1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/f/ffmpeg/libswscale6_5.1.4-0%2brpt1%2bdeb12u1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/f/ffmpeg/libavformat59_5.1.4-0%2brpt1%2bdeb12u1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/f/ffmpeg/libavcodec59_5.1.4-0%2brpt1%2bdeb12u1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/f/ffmpeg/libavutil57_5.1.4-0%2brpt1%2bdeb12u1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/f/ffmpeg/libswresample4_5.1.4-0%2brpt1%2bdeb12u1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/f/ffmpeg/libpostproc56_5.1.4-0%2brpt1%2bdeb12u1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/f/ffmpeg/libavfilter8_5.1.4-0%2brpt1%2bdeb12u1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/libf/libfm/libfm-data_1.3.2-1%2brpt11_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/libf/libfm/libfm-extra4_1.3.2-1%2brpt11_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/libf/libfm/libfm-gtk-data_1.3.2-1%2brpt11_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/libf/libfm/libfm-gtk4_1.3.2-1%2brpt11_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/libf/libfm/libfm4_1.3.2-1%2brpt11_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/libf/libfm/libfm-modules_1.3.2-1%2brpt11_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/g/gtk-layer-shell/libgtk-layer-shell0_0.8.0-1%2brpt3_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian/pool/main/w/webkit2gtk/libwebkit2gtk-4.0-37_2.42.2-1~deb12u1+rpi1_armhf.deb  Connection timed out [IP: 150.65.7.130 80]
E: Failed to fetch http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian/pool/main/w/webkit2gtk/libjavascriptcoregtk-4.0-18_2.42.2-1~deb12u1+rpi1_armhf.deb  Cannot initiate the connection to ftp.jaist.ac.jp:80 (150.65.7.130). - connect (101: Network is unreachable) Cannot initiate the connection to ftp.jaist.ac.jp:80 (2001:df0:2ed:feed::feed). - connect (101: Network is unreachable) [IP: 150.65.7.130 80]
E: Failed to fetch http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian/pool/main/w/webkit2gtk/libwebkit2gtk-4.1-0_2.42.2-1~deb12u1+rpi1_armhf.deb  Cannot initiate the connection to ftp.jaist.ac.jp:80 (150.65.7.130). - connect (101: Network is unreachable) Cannot initiate the connection to ftp.jaist.ac.jp:80 (2001:df0:2ed:feed::feed). - connect (101: Network is unreachable) [IP: 150.65.7.130 80]
E: Failed to fetch http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian/pool/main/w/webkit2gtk/libjavascriptcoregtk-4.1-0_2.42.2-1~deb12u1+rpi1_armhf.deb  Cannot initiate the connection to ftp.jaist.ac.jp:80 (150.65.7.130). - connect (101: Network is unreachable) Cannot initiate the connection to ftp.jaist.ac.jp:80 (2001:df0:2ed:feed::feed). - connect (101: Network is unreachable) [IP: 150.65.7.130 80]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/l/lightdm/liblightdm-gobject-1-0_1.26.0-8%2brpt3_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/o/openbox/libobt2v5_3.6.1-10%2brpt1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/o/openbox/libobrender32v5_3.6.1-10%2brpt1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/p/plymouth/libplymouth5_22.02.122-3%2brpt1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian/pool/main/p/postgresql-15/libpq-dev_15.5-0+deb12u1_armhf.deb  Cannot initiate the connection to ftp.jaist.ac.jp:80 (150.65.7.130). - connect (101: Network is unreachable) Cannot initiate the connection to ftp.jaist.ac.jp:80 (2001:df0:2ed:feed::feed). - connect (101: Network is unreachable) [IP: 150.65.7.130 80]
E: Failed to fetch http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian/pool/main/p/postgresql-15/libpq5_15.5-0+deb12u1_armhf.deb  Cannot initiate the connection to ftp.jaist.ac.jp:80 (150.65.7.130). - connect (101: Network is unreachable) Cannot initiate the connection to ftp.jaist.ac.jp:80 (2001:df0:2ed:feed::feed). - connect (101: Network is unreachable) [IP: 150.65.7.130 80]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/r/raspberrypi-userland/libraspberrypi-bin_2%2bgit20231018%7e131943%2b3c97f76-1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/r/raspberrypi-userland/libraspberrypi0_2%2bgit20231018%7e131943%2b3c97f76-1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/v/vlc/vlc_3.0.20-0%2brpt2%2bdeb12u1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/v/vlc/vlc-plugin-base_3.0.20-0%2brpt2%2bdeb12u1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/v/vlc/vlc-data_3.0.20-0%2brpt2%2bdeb12u1_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/v/vlc/libvlccore9_3.0.20-0%2brpt2%2bdeb12u1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/v/vlc/vlc-plugin-qt_3.0.20-0%2brpt2%2bdeb12u1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/v/vlc/vlc-plugin-video-output_3.0.20-0%2brpt2%2bdeb12u1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/v/vlc/libvlc5_3.0.20-0%2brpt2%2bdeb12u1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/v/vlc/vlc-bin_3.0.20-0%2brpt2%2bdeb12u1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/v/vlc/libvlc-bin_3.0.20-0%2brpt2%2bdeb12u1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/l/lightdm/lightdm_1.26.0-8%2brpt3_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/g/glibc/locales-all_2.36-9%2brpt2%2bdeb12u3_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/l/lxpanel/lxpanel_0.10.1-2%2brpt19_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/l/lxpanel/lxpanel-data_0.10.1-2%2brpt19_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/p/pcmanfm/pcmanfm_1.3.2-1%2brpt18_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/l/lxde-metapackages/lxde-core_11%2brpt1_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/l/lxinput/lxinput_0.3.5-1%2brpt20_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/l/lxsession/lxlock_0.5.5-2%2brpt4_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/l/lxsession/lxsession-logout_0.5.5-2%2brpt4_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/l/lxsession/lxpolkit_0.5.5-2%2brpt4_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/l/lxsession/lxsession-edit_0.5.5-2%2brpt4_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/l/lxsession/lxsession-data_0.5.5-2%2brpt4_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/l/lxsession/lxsession_0.5.5-2%2brpt4_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/l/lxterminal/lxterminal_0.4.0-2%2brpt1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/l/lxde-metapackages/lxde_11%2brpt1_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian/pool/main/n/node-babel7/node-babel7_7.20.15+ds1+~cs214.269.168-3+deb12u1_all.deb  Cannot initiate the connection to ftp.jaist.ac.jp:80 (150.65.7.130). - connect (101: Network is unreachable) Cannot initiate the connection to ftp.jaist.ac.jp:80 (2001:df0:2ed:feed::feed). - connect (101: Network is unreachable) [IP: 150.65.7.130 80]
E: Failed to fetch http://ftp.jaist.ac.jp/pub/Linux/raspbian-archive/raspbian/pool/main/n/node-babel7/node-babel7-runtime_7.20.15+ds1+~cs214.269.168-3+deb12u1_all.deb  Cannot initiate the connection to ftp.jaist.ac.jp:80 (150.65.7.130). - connect (101: Network is unreachable) Cannot initiate the connection to ftp.jaist.ac.jp:80 (2001:df0:2ed:feed::feed). - connect (101: Network is unreachable) [IP: 150.65.7.130 80]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/o/openbox/openbox_3.6.1-10%2brpt1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/o/openssl/openssl_3.0.11-1%7edeb12u2%2brpt1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/p/plymouth/plymouth_22.02.122-3%2brpt1_armhf.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/g/gpiozero/python3-gpiozero_2.0-1_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/p/python-pip/python3-pip_23.0.1%2bdfsg-1%2brpt1_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Failed to fetch https://archive.raspberrypi.com/debian/pool/main/p/python-pip/python3-pip-whl_23.0.1%2bdfsg-1%2brpt1_all.deb  Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.145). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::2). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.117). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.111). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::3). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.141). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:84:1e0::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.130.212). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (93.93.135.118). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.167). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::1:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.227.39). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.86). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.230.122). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:82:47::2:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (176.126.240.84). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:80:56::3:1). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (46.235.231.151). - connect (101: Network is unreachable) Cannot initiate the connection to archive.raspberrypi.com:443 (2a00:1098:88:26::1). - connect (101: Network is unreachable) [IP: 46.235.231.145 443]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
[FAILED] DietPi-Update | APT upgrade
 - Command: apt-get -y --with-new-pkgs upgrade
[ INFO ] DietPi-Update | APT upgrade, please wait...

RPi Zero W (armv6l) ┌─────────────────────────────────────────────┤ DietPi-Update ├──────────────────────────────────────────────┐ │ APT upgrade │ │ - Command: apt-get -y --with-new-pkgs upgrade │ │ - Exit code: 100 │ │ - DietPi version: v8.22.3 (MichaIng/master) | HW_MODEL: 1 | HW_ARCH: 1 | DISTRO: 7 │ │ - Error log: │ │ Reading package lists... │ │ │ │ Retry : Re-run the last command that failed │ │ DietPi-Config : Edit network, APT/NTP mirror settings etc │ │ Open subshell : Open a subshell to investigate or solve the issue │ │ Send report : Uploads bugreport containing system info to DietPi │ │ ●─ Devs only ──────────────────────────────────────● │ Change command : Adjust and rerun the command │ │ │ │ │ <Ok> <Exit> │ │ │ └────────────────────────────────────────────────────────────────────────────────────────────────────────────┘

RPi Zero W (armv6l) | IP: 192.168.1.201 ┌─────────────────────────────────────────────┤ DietPi-Update ├──────────────────────────────────────────────┐ │ Please enter/alter the command to be executed. │ │ │ │ NB: Please only use this solution if you know for sure that it will not cause follow up issues from the │ │ originating script. It will e.g. allow you to continue a certain software install, but if you edit the │ │ download link, the originating script might expect files which are not present. │ │ │ │ Use this with caution! │ │ │ exit______________________________________________________________________________________________________ <Ok> <Cancel> │ │ │ └────────────────────────────────────────────────────────────────────────────────────────────────────────────┘

[ INFO ] DietPi-Update | Executing alternative command: exit

dietpi-update を再実行する

$ sudo dietpi-update

 DietPi-Update
─────────────────────────────────────────────────────
 Phase: Checking for available DietPi update

[  OK  ] DietPi-Update | Checking IPv4 network connectivity
[  OK  ] DietPi-Update | Checking DNS resolver
[ INFO ] DietPi-Update | Getting latest version from: https://raw.githubusercontent.com/MichaIng/DietPi/master/.update/version
[  OK  ] DietPi-Update | Got valid latest version: 9.0.2
[  OK  ] DietPi-Update | Update available:
[ INFO ] DietPi-Update | Current version : v8.22.3
[ INFO ] DietPi-Update | Latest version  : v9.0.2

 DietPi-Update
─────────────────────────────────────────────────────
 Phase: Checking for update pre-requirements

[  OK  ] DietPi-Update | DietPi-Userdata validation: /mnt/dietpi_userdata
[  OK  ] DietPi-Update | Free space check: path=/ | available=77427 MiB | required=100 MiB
[ SUB1 ] DietPi-Services > stop 
[  OK  ] DietPi-Services | stop : cron
[ INFO ] DietPi-Services | skip : apache2 (masked)
[  OK  ] DietPi-Services | stop : smbd
[  OK  ] DietPi-Services | stop : nmbd
[ INFO ] DietPi-Services | skip : proftpd (masked)

 DietPi-Update
─────────────────────────────────────────────────────
 Phase: Applying pre-patches

[  OK  ] DietPi-Update | Downloading pre-patches
[  OK  ] DietPi-Update | Applying execute permission
[ INFO ] DietPi-Pre-patches | Migrating RPi APT repository to Bookworm and removing obsolete FFmpeg workaround
[  OK  ] DietPi-Pre-patches | eval echo 'deb https://archive.raspberrypi.com/debian/ bookworm main' > /etc/apt/sources.list.d/raspi.list
[ INFO ] DietPi-Pre-patches | Removing faulty non-free-firmware component if present
[  OK  ] DietPi-Pre-patches | sed --follow-symlinks -i s/ non-free-firmware$// /etc/apt/sources.list
[ INFO ] DietPi-Pre-patches | Reverting now obsolete rpi-eeprom hold
[  OK  ] DietPi-Pre-patches | apt-mark unhold rpi-eeprom
[ INFO ] DietPi-Pre-patches | Migrating from raspberrypi.org to raspberrypi.com
[  OK  ] DietPi-Pre-patches | sed -i s/raspberrypi.org/raspberrypi.com/ /etc/apt/sources.list /boot/dietpi.txt
[  OK  ] DietPi-Pre-patches | sed -i s/raspberrypi.org/raspberrypi.com/ /etc/apt/sources.list.d/raspi.list
[  OK  ] DietPi-Pre-patches | sed -i s/raspberrypi.org/raspberrypi.com/ /etc/apt/preferences.d/dietpi-lxde
[  OK  ] DietPi-Pre-patches | mkdir -p ../DietPi-Update/DietPi-master/dietpi
[  OK  ] DietPi-Update | Successfully applied pre-patches

 DietPi-Update
─────────────────────────────────────────────────────
 Phase: Upgrading APT packages

[ INFO ] DietPi-Update | APT update, please wait...
Hit:1 http://raspbian.raspberrypi.com/raspbian bookworm InRelease
Hit:2 https://archive.raspberrypi.com/debian bookworm InRelease
Reading package lists...
[  OK  ] DietPi-Update | APT update
[ INFO ] DietPi-Update | APT upgrade, please wait...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
The following packages were automatically installed and are no longer required:
  libaom0 libavcodec58 libavfilter7 libavformat58 libavutil56 libcodec2-0.9
  libdav1d4 libflac8 libidn11 libplacebo72 libpostproc55 libprotobuf-lite23
  libsrt1.4-gnutls libswresample3 libswscale5 libvpx6 libwebp6 libx264-160
  libx265-192
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
  libavfilter8 libplacebo208 libpostproc56 libprotobuf-lite32 libzimg2
The following packages will be upgraded:
  alsa-utils chromium-browser chromium-chromedriver
  chromium-codecs-ffmpeg-extra clang console-setup console-setup-linux curl
  dbus dbus-bin dbus-daemon dbus-session-bus-common dbus-system-bus-common
  dbus-user-session dbus-x11 debianutils filezilla filezilla-common
  firmware-atheros firmware-brcm80211 firmware-iwlwifi firmware-misc-nonfree
  firmware-realtek gimp gimp-data gsettings-desktop-schemas
  gstreamer1.0-plugins-good gtk-update-icon-cache keyboard-configuration
  krb5-multidev libasound2 libasound2-data libasound2-dev libatopology2
  libavcodec59 libavformat59 libavutil57 libc-bin libc-dev-bin libc-l10n libc6
  libc6-dev libcairo-gobject2 libcairo2 libcups2 libcurl3-gnutls libcurl4
  libcurl4-gnutls-dev libdbus-1-3 libegl-mesa0 libgbm1 libgimp2.0
  libgl1-mesa-dri libglapi-mesa libglx-mesa0 libgs-common libgs10
  libgs10-common libgssapi-krb5-2 libgssrpc4 libgstreamer-plugins-bad1.0-0
  libgtk-3-0 libgtk-3-common libimlib2 libjavascriptcoregtk-4.0-18
  libjavascriptcoregtk-4.1-0 libk5crypto3 libkadm5clnt-mit12 libkadm5srv-mit12
  libkdb5-10 libkrb5-3 libkrb5-dev libkrb5support0 liblightdm-gobject-1-0
  libnss-myhostname libpam-modules libpam-modules-bin libpam-runtime
  libpam-systemd libpam0g libpam0g-dev libpixman-1-0 libplymouth5 libpq-dev
  libpq5 libpulse0 libpulsedsp libraspberrypi-bin libraspberrypi0 libssl-dev
  libssl3 libswresample4 libswscale6 libsystemd-dev libsystemd-shared
  libsystemd0 libtiff-dev libtiff6 libtiffxx6 libudev-dev libudev1 libvlc-bin
  libvlc5 libvlccore9 libvte-2.91-0 libvte-2.91-common libwebkit2gtk-4.0-37
  libwebkit2gtk-4.1-0 lightdm linux-libc-dev locales locales-all node-babel7
  node-babel7-runtime openssh-client openssh-server openssh-sftp-server
  openssl plymouth pulseaudio pulseaudio-utils python3-gpiozero python3-pip
  python3-pip-whl systemd systemd-sysv systemd-timesyncd udev vlc vlc-bin
  vlc-data vlc-plugin-base vlc-plugin-qt vlc-plugin-video-output
  xserver-common xserver-xorg-core
136 upgraded, 5 newly installed, 0 to remove and 0 not upgraded.
Need to get 325 MB of archives.
After this operation, 48.2 MB of additional disk space will be used.
Get:1 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf debianutils armhf 5.7-0.5~deb12u1 [101 kB]
Get:2 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf dbus-system-bus-common all 1.14.10-1~deb12u1 [79.3 kB]
Get:3 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf dbus-session-bus-common all 1.14.10-1~deb12u1 [78.2 kB]
Get:4 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libsystemd-dev armhf 252.17-1~deb12u1+rpi1 [353 kB]
Get:5 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf systemd-timesyncd armhf 252.17-1~deb12u1+rpi1 [63.0 kB]
Get:6 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libsystemd-shared armhf 252.17-1~deb12u1+rpi1 [1517 kB]
Get:8 https://archive.raspberrypi.com/debian bookworm/main armhf libc6-dev armhf 2.36-9+rpt2+deb12u3 [1257 kB]
Get:21 https://archive.raspberrypi.com/debian bookworm/main armhf libc-dev-bin armhf 2.36-9+rpt2+deb12u3 [44.2 kB]
Get:7 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libpam-systemd armhf 252.17-1~deb12u1+rpi1 [200 kB]
Get:22 https://archive.raspberrypi.com/debian bookworm/main armhf linux-libc-dev armhf 1:6.1.63-1+rpt1 [1774 kB]
Get:9 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf systemd armhf 252.17-1~deb12u1+rpi1 [2885 kB]
Get:37 https://archive.raspberrypi.com/debian bookworm/main armhf libc6 armhf 2.36-9+rpt2+deb12u3 [2110 kB]
Get:45 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libgimp2.0 armhf 2.10.34-1+deb12u1 [737 kB]
Get:46 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf gimp-data all 2.10.34-1+deb12u1 [14.2 MB]
Get:10 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libsystemd0 armhf 252.17-1~deb12u1+rpi1 [299 kB]
Get:59 https://archive.raspberrypi.com/debian bookworm/main armhf libc-bin armhf 2.36-9+rpt2+deb12u3 [493 kB]
Get:11 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf dbus-x11 armhf 1.14.10-1~deb12u1 [90.1 kB]
Get:12 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf dbus-user-session armhf 1.14.10-1~deb12u1 [78.1 kB]
Get:65 https://archive.raspberrypi.com/debian bookworm/main armhf libpam0g-dev armhf 1.5.2-6+rpt2+deb12u1 [141 kB]
Get:13 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf dbus-daemon armhf 1.14.10-1~deb12u1 [163 kB]
Get:68 https://archive.raspberrypi.com/debian bookworm/main armhf libpam0g armhf 1.5.2-6+rpt2+deb12u1 [86.3 kB]
Get:70 https://archive.raspberrypi.com/debian bookworm/main armhf libpam-modules-bin armhf 1.5.2-6+rpt2+deb12u1 [71.4 kB]
Get:14 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf dbus-bin armhf 1.14.10-1~deb12u1 [102 kB]
Get:71 https://archive.raspberrypi.com/debian bookworm/main armhf libpam-modules armhf 1.5.2-6+rpt2+deb12u1 [271 kB]
Get:15 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf dbus armhf 1.14.10-1~deb12u1 [94.7 kB]
Get:16 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libdbus-1-3 armhf 1.14.10-1~deb12u1 [164 kB]
Get:75 https://archive.raspberrypi.com/debian bookworm/main armhf libpam-runtime all 1.5.2-6+rpt2+deb12u1 [161 kB]
Get:17 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf systemd-sysv armhf 252.17-1~deb12u1+rpi1 [42.0 kB]
Get:18 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libudev-dev armhf 252.17-1~deb12u1+rpi1 [52.2 kB]
Get:78 https://archive.raspberrypi.com/debian bookworm/main armhf xserver-common all 2:21.1.7-3+rpt2+deb12u4 [2382 kB]
Ign:78 https://archive.raspberrypi.com/debian bookworm/main armhf xserver-common all 2:21.1.7-3+rpt2+deb12u4
Get:19 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf udev armhf 252.17-1~deb12u1+rpi1 [1584 kB]
Get:80 https://archive.raspberrypi.com/debian bookworm/main armhf xserver-xorg-core armhf 2:21.1.7-3+rpt2+deb12u4 [3453 kB]
Get:20 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libudev1 armhf 252.17-1~deb12u1+rpi1 [99.3 kB]
Get:23 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libkrb5-dev armhf 1.20.1-2+deb12u1 [14.7 kB]
Get:24 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf krb5-multidev armhf 1.20.1-2+deb12u1 [125 kB]
Get:25 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libk5crypto3 armhf 1.20.1-2+deb12u1 [72.4 kB]
Get:26 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libgssapi-krb5-2 armhf 1.20.1-2+deb12u1 [110 kB]
Get:27 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libkrb5-3 armhf 1.20.1-2+deb12u1 [283 kB]
Get:28 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libkrb5support0 armhf 1.20.1-2+deb12u1 [29.4 kB]
Get:29 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libgssrpc4 armhf 1.20.1-2+deb12u1 [50.4 kB]
Get:30 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libkdb5-10 armhf 1.20.1-2+deb12u1 [35.3 kB]
Get:31 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libkadm5srv-mit12 armhf 1.20.1-2+deb12u1 [45.2 kB]
Get:32 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libkadm5clnt-mit12 armhf 1.20.1-2+deb12u1 [35.8 kB]
Get:33 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libcups2 armhf 2.4.2-3+deb12u4 [190 kB]
Get:34 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libgtk-3-common all 3.24.38-2~deb12u1 [3895 kB]
Get:81 https://archive.raspberrypi.com/debian bookworm/main armhf console-setup-linux all 1.221rpt1 [1882 kB]
Get:82 https://archive.raspberrypi.com/debian bookworm/main armhf keyboard-configuration all 1.221rpt1 [416 kB]
Get:83 https://archive.raspberrypi.com/debian bookworm/main armhf console-setup all 1.221rpt1 [102 kB]
Get:84 https://archive.raspberrypi.com/debian bookworm/main armhf libgl1-mesa-dri armhf 23.2.1-1~bpo12+rpt2 [6276 kB]
Get:35 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libgtk-3-0 armhf 3.24.38-2~deb12u1 [2149 kB]
Get:36 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf openssh-sftp-server armhf 1:9.2p1-2+deb12u1 [50.3 kB]
Get:38 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf openssh-server armhf 1:9.2p1-2+deb12u1 [351 kB]
Get:39 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf openssh-client armhf 1:9.2p1-2+deb12u1 [795 kB]
Get:40 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf clang armhf 1:14.0-55.7~deb12u1 [5140 B]
Get:41 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf curl armhf 7.88.1-10+rpi1+deb12u4 [301 kB]
Get:42 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libcurl4 armhf 7.88.1-10+rpi1+deb12u4 [346 kB]
Get:43 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf filezilla armhf 3.63.0-1+deb12u2 [1798 kB]
Get:50 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libtiff-dev armhf 4.5.0-6+deb12u1 [401 kB]
Get:85 https://archive.raspberrypi.com/debian bookworm/main armhf libglx-mesa0 armhf 23.2.1-1~bpo12+rpt2 [131 kB]
Get:86 https://archive.raspberrypi.com/debian bookworm/main armhf libegl-mesa0 armhf 23.2.1-1~bpo12+rpt2 [94.7 kB]
Get:87 https://archive.raspberrypi.com/debian bookworm/main armhf libglapi-mesa armhf 23.2.1-1~bpo12+rpt2 [45.2 kB]
Get:88 https://archive.raspberrypi.com/debian bookworm/main armhf libgbm1 armhf 23.2.1-1~bpo12+rpt2 [35.6 kB]
Get:51 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libtiffxx6 armhf 4.5.0-6+deb12u1 [145 kB]
Get:89 https://archive.raspberrypi.com/debian bookworm/main armhf libpixman-1-0 armhf 0.42.2-1+rpt1 [479 kB]
Get:52 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libtiff6 armhf 4.5.0-6+deb12u1 [272 kB]
Get:53 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf gimp armhf 2.10.34-1+deb12u1 [3528 kB]
Get:90 https://archive.raspberrypi.com/debian bookworm/main armhf libssl-dev armhf 3.0.11-1~deb12u2+rpt1 [2119 kB]
Get:44 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf filezilla-common all 3.63.0-1+deb12u2 [2324 kB]
Get:91 https://archive.raspberrypi.com/debian bookworm/main armhf libssl3 armhf 3.0.11-1~deb12u2+rpt1 [1635 kB]
Get:47 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libgs10 armhf 10.0.0~dfsg-11+deb12u2 [1968 kB]
Get:60 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libgstreamer-plugins-bad1.0-0 armhf 1.22.0-4+deb12u3 [698 kB]
Get:92 https://archive.raspberrypi.com/debian bookworm/main armhf libatopology2 armhf 1.2.8-1+rpt1 [46.8 kB]
Get:93 https://archive.raspberrypi.com/debian bookworm/main armhf libasound2-dev armhf 1.2.8-1+rpt1 [110 kB]
Get:94 https://archive.raspberrypi.com/debian bookworm/main armhf libasound2 armhf 1.2.8-1+rpt1 [304 kB]
Get:95 https://archive.raspberrypi.com/debian bookworm/main armhf libasound2-data all 1.2.8-1+rpt1 [20.9 kB]
Get:96 https://archive.raspberrypi.com/debian bookworm/main armhf libcairo-gobject2 armhf 1.16.0-7+rpt1 [111 kB]
Get:62 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libwebkit2gtk-4.0-37 armhf 2.42.2-1~deb12u1+rpi1 [15.9 MB]
Get:97 https://archive.raspberrypi.com/debian bookworm/main armhf libcairo2 armhf 1.16.0-7+rpt1 [481 kB]
Get:98 https://archive.raspberrypi.com/debian bookworm/main armhf chromium-browser armhf 120.0.6099.102-rpt1 [110 MB]
Get:48 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libgs10-common all 10.0.0~dfsg-11+deb12u2 [586 kB]
Get:49 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libgs-common all 10.0.0~dfsg-11+deb12u2 [148 kB]
Get:54 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf gtk-update-icon-cache armhf 3.24.38-2~deb12u1 [42.3 kB]
Get:55 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libplacebo208 armhf 4.208.0-3 [1871 kB]
Get:56 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libzimg2 armhf 3.0.4+ds1-1 [68.2 kB]
Get:57 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libcurl4-gnutls-dev armhf 7.88.1-10+rpi1+deb12u4 [422 kB]
Get:58 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libcurl3-gnutls armhf 7.88.1-10+rpi1+deb12u4 [341 kB]
Get:61 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libimlib2 armhf 1.10.0-4+deb12u1 [174 kB]
Get:67 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libnss-myhostname armhf 252.17-1~deb12u1+rpi1 [76.6 kB]
Get:73 http://ftp.udx.icscoe.jp/Linux/raspbian/raspbian bookworm/main armhf libprotobuf-lite32 armhf 3.21.12-3 [235 kB]
Get:74 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libvte-2.91-0 armhf 0.70.6-2~deb12u1 [761 kB]
Get:76 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libvte-2.91-common armhf 0.70.6-2~deb12u1 [641 kB]
Ign:98 https://archive.raspberrypi.com/debian bookworm/main armhf chromium-browser armhf 120.0.6099.102-rpt1
Get:99 https://archive.raspberrypi.com/debian bookworm/main armhf chromium-codecs-ffmpeg-extra armhf 120.0.6099.102-rpt1 [1024 kB]
Get:63 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libjavascriptcoregtk-4.0-18 armhf 2.42.2-1~deb12u1+rpi1 [2792 kB]
Get:100 https://archive.raspberrypi.com/debian bookworm/main armhf libpulsedsp armhf 16.1+dfsg1-2+rpt1 [34.7 kB]
Get:101 https://archive.raspberrypi.com/debian bookworm/main armhf pulseaudio-utils armhf 16.1+dfsg1-2+rpt1 [81.5 kB]
Get:102 https://archive.raspberrypi.com/debian bookworm/main armhf pulseaudio armhf 16.1+dfsg1-2+rpt1 [1079 kB]
Get:103 https://archive.raspberrypi.com/debian bookworm/main armhf libpulse0 armhf 16.1+dfsg1-2+rpt1 [239 kB]
Get:104 https://archive.raspberrypi.com/debian bookworm/main armhf chromium-chromedriver armhf 120.0.6099.102-rpt1 [5880 kB]
Get:64 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libwebkit2gtk-4.1-0 armhf 2.42.2-1~deb12u1+rpi1 [16.0 MB]
Get:105 https://archive.raspberrypi.com/debian bookworm/main armhf libc-l10n all 2.36-9+rpt2+deb12u3 [675 kB]
Get:106 https://archive.raspberrypi.com/debian bookworm/main armhf locales all 2.36-9+rpt2+deb12u3 [3901 kB]
Get:107 https://archive.raspberrypi.com/debian bookworm/main armhf alsa-utils armhf 1.2.8-1+rpt1 [1057 kB]
Get:108 https://archive.raspberrypi.com/debian bookworm/main armhf firmware-atheros all 1:20230210-5+rpt3 [16.8 MB]
Get:66 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libjavascriptcoregtk-4.1-0 armhf 2.42.2-1~deb12u1+rpi1 [2793 kB]
Get:69 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libpq-dev armhf 15.5-0+deb12u1 [122 kB]
Get:72 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf libpq5 armhf 15.5-0+deb12u1 [159 kB]
Get:77 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf node-babel7 all 7.20.15+ds1+~cs214.269.168-3+deb12u1 [712 kB]
Get:79 http://raspbian.raspberrypi.com/raspbian bookworm/main armhf node-babel7-runtime all 7.20.15+ds1+~cs214.269.168-3+deb12u1 [116 kB]
Get:109 https://archive.raspberrypi.com/debian bookworm/main armhf firmware-brcm80211 all 1:20230210-5+rpt3 [5852 kB]
Get:110 https://archive.raspberrypi.com/debian bookworm/main armhf firmware-iwlwifi all 1:20230210-5+rpt3 [9337 kB]
Get:111 https://archive.raspberrypi.com/debian bookworm/main armhf firmware-misc-nonfree all 1:20230210-5+rpt3 [13.0 MB]
Get:112 https://archive.raspberrypi.com/debian bookworm/main armhf firmware-realtek all 1:20230210-5+rpt3 [1492 kB]
Get:113 https://archive.raspberrypi.com/debian bookworm/main armhf gsettings-desktop-schemas all 43.0-1+rpt1 [641 kB]
Get:114 https://archive.raspberrypi.com/debian bookworm/main armhf gstreamer1.0-plugins-good armhf 1.22.0-5+rpt1+deb12u1 [1987 kB]
Get:115 https://archive.raspberrypi.com/debian bookworm/main armhf libswscale6 armhf 8:5.1.4-0+rpt1+deb12u1 [264 kB]
Get:116 https://archive.raspberrypi.com/debian bookworm/main armhf libavformat59 armhf 8:5.1.4-0+rpt1+deb12u1 [1669 kB]
Get:117 https://archive.raspberrypi.com/debian bookworm/main armhf libavcodec59 armhf 8:5.1.4-0+rpt1+deb12u1 [9139 kB]
Get:118 https://archive.raspberrypi.com/debian bookworm/main armhf libavutil57 armhf 8:5.1.4-0+rpt1+deb12u1 [522 kB]
Get:119 https://archive.raspberrypi.com/debian bookworm/main armhf libswresample4 armhf 8:5.1.4-0+rpt1+deb12u1 [108 kB]
Get:120 https://archive.raspberrypi.com/debian bookworm/main armhf libpostproc56 armhf 8:5.1.4-0+rpt1+deb12u1 [80.2 kB]
Get:121 https://archive.raspberrypi.com/debian bookworm/main armhf libavfilter8 armhf 8:5.1.4-0+rpt1+deb12u1 [5844 kB]
Get:122 https://archive.raspberrypi.com/debian bookworm/main armhf liblightdm-gobject-1-0 armhf 1.26.0-8+rpt3 [49.3 kB]
Get:123 https://archive.raspberrypi.com/debian bookworm/main armhf libplymouth5 armhf 22.02.122-3+rpt1 [84.5 kB]
Get:124 https://archive.raspberrypi.com/debian bookworm/main armhf libraspberrypi-bin armhf 1:2+git20231018~131943+3c97f76-1 [49.3 kB]
Get:125 https://archive.raspberrypi.com/debian bookworm/main armhf libraspberrypi0 armhf 1:2+git20231018~131943+3c97f76-1 [68.0 kB]
Get:126 https://archive.raspberrypi.com/debian bookworm/main armhf vlc armhf 1:3.0.20-0+rpt2+deb12u1 [110 kB]
Get:127 https://archive.raspberrypi.com/debian bookworm/main armhf vlc-plugin-base armhf 1:3.0.20-0+rpt2+deb12u1 [2649 kB]
Get:128 https://archive.raspberrypi.com/debian bookworm/main armhf vlc-data all 1:3.0.20-0+rpt2+deb12u1 [421 kB]
Get:129 https://archive.raspberrypi.com/debian bookworm/main armhf libvlccore9 armhf 1:3.0.20-0+rpt2+deb12u1 [450 kB]
Get:130 https://archive.raspberrypi.com/debian bookworm/main armhf vlc-plugin-qt armhf 1:3.0.20-0+rpt2+deb12u1 [1021 kB]
Get:131 https://archive.raspberrypi.com/debian bookworm/main armhf vlc-plugin-video-output armhf 1:3.0.20-0+rpt2+deb12u1 [181 kB]
Get:132 https://archive.raspberrypi.com/debian bookworm/main armhf libvlc5 armhf 1:3.0.20-0+rpt2+deb12u1 [131 kB]
Get:133 https://archive.raspberrypi.com/debian bookworm/main armhf vlc-bin armhf 1:3.0.20-0+rpt2+deb12u1 [128 kB]
Get:134 https://archive.raspberrypi.com/debian bookworm/main armhf libvlc-bin armhf 1:3.0.20-0+rpt2+deb12u1 [91.1 kB]
Get:135 https://archive.raspberrypi.com/debian bookworm/main armhf lightdm armhf 1.26.0-8+rpt3 [143 kB]
Get:136 https://archive.raspberrypi.com/debian bookworm/main armhf locales-all armhf 2.36-9+rpt2+deb12u3 [10.7 MB]
Get:137 https://archive.raspberrypi.com/debian bookworm/main armhf openssl armhf 3.0.11-1~deb12u2+rpt1 [1370 kB]
Get:138 https://archive.raspberrypi.com/debian bookworm/main armhf plymouth armhf 22.02.122-3+rpt1 [120 kB]
Get:139 https://archive.raspberrypi.com/debian bookworm/main armhf python3-gpiozero all 2.0-1 [126 kB]
Get:140 https://archive.raspberrypi.com/debian bookworm/main armhf python3-pip all 23.0.1+dfsg-1+rpt1 [1325 kB]
Get:141 https://archive.raspberrypi.com/debian bookworm/main armhf python3-pip-whl all 23.0.1+dfsg-1+rpt1 [1718 kB]
Get:78 https://archive.raspberrypi.com/debian bookworm/main armhf xserver-common all 2:21.1.7-3+rpt2+deb12u4 [2382 kB]
Get:98 https://archive.raspberrypi.com/debian bookworm/main armhf chromium-browser armhf 120.0.6099.102-rpt1 [110 MB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 312 MB in 17min 0s (306 kB/s)
(Reading database ... 139806 files and directories currently installed.)
Preparing to unpack .../debianutils_5.7-0.5~deb12u1_armhf.deb ...
Unpacking debianutils (5.7-0.5~deb12u1) over (5.7-0.4) ...
Setting up debianutils (5.7-0.5~deb12u1) ...
(Reading database ... 139806 files and directories currently installed.)
Preparing to unpack .../libc6-dev_2.36-9+rpt2+deb12u3_armhf.deb ...
Unpacking libc6-dev:armhf (2.36-9+rpt2+deb12u3) over (2.36-9+rpi1+deb12u3) ...
Preparing to unpack .../libc-dev-bin_2.36-9+rpt2+deb12u3_armhf.deb ...
Unpacking libc-dev-bin (2.36-9+rpt2+deb12u3) over (2.36-9+rpi1+deb12u3) ...
Preparing to unpack .../linux-libc-dev_1%3a6.1.63-1+rpt1_armhf.deb ...
Unpacking linux-libc-dev:armhf (1:6.1.63-1+rpt1) over (1:1.20230405-1) ...
Preparing to unpack .../libc6_2.36-9+rpt2+deb12u3_armhf.deb ...
Unpacking libc6:armhf (2.36-9+rpt2+deb12u3) over (2.36-9+rpi1+deb12u3) ...
Setting up libc6:armhf (2.36-9+rpt2+deb12u3) ...
(Reading database ... 139805 files and directories currently installed.)
Preparing to unpack .../libc-bin_2.36-9+rpt2+deb12u3_armhf.deb ...
Unpacking libc-bin (2.36-9+rpt2+deb12u3) over (2.36-9+rpi1+deb12u3) ...
Setting up libc-bin (2.36-9+rpt2+deb12u3) ...
(Reading database ... 139805 files and directories currently installed.)
Preparing to unpack .../libpam0g-dev_1.5.2-6+rpt2+deb12u1_armhf.deb ...
Unpacking libpam0g-dev:armhf (1.5.2-6+rpt2+deb12u1) over (1.5.2-6) ...
Preparing to unpack .../libpam0g_1.5.2-6+rpt2+deb12u1_armhf.deb ...
Unpacking libpam0g:armhf (1.5.2-6+rpt2+deb12u1) over (1.5.2-6) ...
Setting up libpam0g:armhf (1.5.2-6+rpt2+deb12u1) ...
(Reading database ... 139805 files and directories currently installed.)
Preparing to unpack .../libpam-modules-bin_1.5.2-6+rpt2+deb12u1_armhf.deb ...
Unpacking libpam-modules-bin (1.5.2-6+rpt2+deb12u1) over (1.5.2-6) ...
Setting up libpam-modules-bin (1.5.2-6+rpt2+deb12u1) ...
(Reading database ... 139805 files and directories currently installed.)
Preparing to unpack .../libpam-modules_1.5.2-6+rpt2+deb12u1_armhf.deb ...
Unpacking libpam-modules:armhf (1.5.2-6+rpt2+deb12u1) over (1.5.2-6) ...
Setting up libpam-modules:armhf (1.5.2-6+rpt2+deb12u1) ...
(Reading database ... 139805 files and directories currently installed.)
Preparing to unpack .../libpam-runtime_1.5.2-6+rpt2+deb12u1_all.deb ...
Unpacking libpam-runtime (1.5.2-6+rpt2+deb12u1) over (1.5.2-6) ...
Setting up libpam-runtime (1.5.2-6+rpt2+deb12u1) ...
(Reading database ... 139805 files and directories currently installed.)
Preparing to unpack .../0-dbus-system-bus-common_1.14.10-1~deb12u1_all.deb ...
Unpacking dbus-system-bus-common (1.14.10-1~deb12u1) over (1.14.8-2~deb12u1) ...
Preparing to unpack .../1-dbus-session-bus-common_1.14.10-1~deb12u1_all.deb ...
Unpacking dbus-session-bus-common (1.14.10-1~deb12u1) over (1.14.8-2~deb12u1) ...
Preparing to unpack .../2-libsystemd-dev_252.17-1~deb12u1+rpi1_armhf.deb ...
Unpacking libsystemd-dev:armhf (252.17-1~deb12u1+rpi1) over (252.12-1~deb12u1+rpi1) ...
Preparing to unpack .../3-systemd-timesyncd_252.17-1~deb12u1+rpi1_armhf.deb ...
Unpacking systemd-timesyncd (252.17-1~deb12u1+rpi1) over (252.12-1~deb12u1+rpi1) ...
Preparing to unpack .../4-libsystemd-shared_252.17-1~deb12u1+rpi1_armhf.deb ...
Unpacking libsystemd-shared:armhf (252.17-1~deb12u1+rpi1) over (252.12-1~deb12u1+rpi1) ...
Preparing to unpack .../5-libpam-systemd_252.17-1~deb12u1+rpi1_armhf.deb ...
Unpacking libpam-systemd:armhf (252.17-1~deb12u1+rpi1) over (252.12-1~deb12u1+rpi1) ...
Preparing to unpack .../6-xserver-common_2%3a21.1.7-3+rpt2+deb12u4_all.deb ...
Unpacking xserver-common (2:21.1.7-3+rpt2+deb12u4) over (2:21.1.7-3) ...
Preparing to unpack .../7-xserver-xorg-core_2%3a21.1.7-3+rpt2+deb12u4_armhf.deb ...
Unpacking xserver-xorg-core (2:21.1.7-3+rpt2+deb12u4) over (2:21.1.7-3) ...
Preparing to unpack .../8-systemd_252.17-1~deb12u1+rpi1_armhf.deb ...
Unpacking systemd (252.17-1~deb12u1+rpi1) over (252.12-1~deb12u1+rpi1) ...
Preparing to unpack .../9-libsystemd0_252.17-1~deb12u1+rpi1_armhf.deb ...
Unpacking libsystemd0:armhf (252.17-1~deb12u1+rpi1) over (252.12-1~deb12u1+rpi1) ...
Setting up libsystemd0:armhf (252.17-1~deb12u1+rpi1) ...
(Reading database ... 139806 files and directories currently installed.)
Preparing to unpack .../0-dbus-x11_1.14.10-1~deb12u1_armhf.deb ...
Unpacking dbus-x11 (1.14.10-1~deb12u1) over (1.14.8-2~deb12u1) ...
Preparing to unpack .../1-dbus-user-session_1.14.10-1~deb12u1_armhf.deb ...
Unpacking dbus-user-session (1.14.10-1~deb12u1) over (1.14.8-2~deb12u1) ...
Preparing to unpack .../2-dbus-daemon_1.14.10-1~deb12u1_armhf.deb ...
Unpacking dbus-daemon (1.14.10-1~deb12u1) over (1.14.8-2~deb12u1) ...
Preparing to unpack .../3-dbus-bin_1.14.10-1~deb12u1_armhf.deb ...
Unpacking dbus-bin (1.14.10-1~deb12u1) over (1.14.8-2~deb12u1) ...
Preparing to unpack .../4-dbus_1.14.10-1~deb12u1_armhf.deb ...
Unpacking dbus (1.14.10-1~deb12u1) over (1.14.8-2~deb12u1) ...
Preparing to unpack .../5-libdbus-1-3_1.14.10-1~deb12u1_armhf.deb ...
Unpacking libdbus-1-3:armhf (1.14.10-1~deb12u1) over (1.14.8-2~deb12u1) ...
Setting up libsystemd-shared:armhf (252.17-1~deb12u1+rpi1) ...
Setting up systemd (252.17-1~deb12u1+rpi1) ...
(Reading database ... 139806 files and directories currently installed.)
Preparing to unpack .../0-systemd-sysv_252.17-1~deb12u1+rpi1_armhf.deb ...
Unpacking systemd-sysv (252.17-1~deb12u1+rpi1) over (252.12-1~deb12u1+rpi1) ...
Preparing to unpack .../1-console-setup-linux_1.221rpt1_all.deb ...
Unpacking console-setup-linux (1.221rpt1) over (1.221) ...
Preparing to unpack .../2-keyboard-configuration_1.221rpt1_all.deb ...
Unpacking keyboard-configuration (1.221rpt1) over (1.221) ...
Preparing to unpack .../3-console-setup_1.221rpt1_all.deb ...
Unpacking console-setup (1.221rpt1) over (1.221) ...
Preparing to unpack .../4-libudev-dev_252.17-1~deb12u1+rpi1_armhf.deb ...
Unpacking libudev-dev:armhf (252.17-1~deb12u1+rpi1) over (252.12-1~deb12u1+rpi1) ...
Preparing to unpack .../5-udev_252.17-1~deb12u1+rpi1_armhf.deb ...
Unpacking udev (252.17-1~deb12u1+rpi1) over (252.12-1~deb12u1+rpi1) ...
Preparing to unpack .../6-libudev1_252.17-1~deb12u1+rpi1_armhf.deb ...
Unpacking libudev1:armhf (252.17-1~deb12u1+rpi1) over (252.12-1~deb12u1+rpi1) ...
Setting up libudev1:armhf (252.17-1~deb12u1+rpi1) ...
(Reading database ... 139806 files and directories currently installed.)
Preparing to unpack .../000-libgl1-mesa-dri_23.2.1-1~bpo12+rpt2_armhf.deb ...
Unpacking libgl1-mesa-dri:armhf (23.2.1-1~bpo12+rpt2) over (22.3.6-1+deb12u1+rpi1) ...
Preparing to unpack .../001-libglx-mesa0_23.2.1-1~bpo12+rpt2_armhf.deb ...
Unpacking libglx-mesa0:armhf (23.2.1-1~bpo12+rpt2) over (22.3.6-1+deb12u1+rpi1) ...
Preparing to unpack .../002-libegl-mesa0_23.2.1-1~bpo12+rpt2_armhf.deb ...
Unpacking libegl-mesa0:armhf (23.2.1-1~bpo12+rpt2) over (22.3.6-1+deb12u1+rpi1) ...
Preparing to unpack .../003-libglapi-mesa_23.2.1-1~bpo12+rpt2_armhf.deb ...
Unpacking libglapi-mesa:armhf (23.2.1-1~bpo12+rpt2) over (22.3.6-1+deb12u1+rpi1) ...
Preparing to unpack .../004-libgbm1_23.2.1-1~bpo12+rpt2_armhf.deb ...
Unpacking libgbm1:armhf (23.2.1-1~bpo12+rpt2) over (22.3.6-1+deb12u1+rpi1) ...
Preparing to unpack .../005-libpixman-1-0_0.42.2-1+rpt1_armhf.deb ...
Unpacking libpixman-1-0:armhf (0.42.2-1+rpt1) over (0.42.2-1) ...
Preparing to unpack .../006-libssl-dev_3.0.11-1~deb12u2+rpt1_armhf.deb ...
Unpacking libssl-dev:armhf (3.0.11-1~deb12u2+rpt1) over (3.0.9-1) ...
Preparing to unpack .../007-libssl3_3.0.11-1~deb12u2+rpt1_armhf.deb ...
Unpacking libssl3:armhf (3.0.11-1~deb12u2+rpt1) over (3.0.9-1) ...
Preparing to unpack .../008-libatopology2_1.2.8-1+rpt1_armhf.deb ...
Unpacking libatopology2:armhf (1.2.8-1+rpt1) over (1.2.8-1+b1) ...
Preparing to unpack .../009-libasound2-dev_1.2.8-1+rpt1_armhf.deb ...
Unpacking libasound2-dev:armhf (1.2.8-1+rpt1) over (1.2.8-1+b1) ...
Preparing to unpack .../010-libasound2_1.2.8-1+rpt1_armhf.deb ...
Unpacking libasound2:armhf (1.2.8-1+rpt1) over (1.2.8-1+b1) ...
Preparing to unpack .../011-libasound2-data_1.2.8-1+rpt1_all.deb ...
Unpacking libasound2-data (1.2.8-1+rpt1) over (1.2.8-1) ...
Preparing to unpack .../012-libcairo-gobject2_1.16.0-7+rpt1_armhf.deb ...
Unpacking libcairo-gobject2:armhf (1.16.0-7+rpt1) over (1.16.0-7) ...
Preparing to unpack .../013-libcairo2_1.16.0-7+rpt1_armhf.deb ...
Unpacking libcairo2:armhf (1.16.0-7+rpt1) over (1.16.0-7) ...
Preparing to unpack .../014-libkrb5-dev_1.20.1-2+deb12u1_armhf.deb ...
Unpacking libkrb5-dev:armhf (1.20.1-2+deb12u1) over (1.20.1-2) ...
Preparing to unpack .../015-krb5-multidev_1.20.1-2+deb12u1_armhf.deb ...
Unpacking krb5-multidev:armhf (1.20.1-2+deb12u1) over (1.20.1-2) ...
Preparing to unpack .../016-libk5crypto3_1.20.1-2+deb12u1_armhf.deb ...
Unpacking libk5crypto3:armhf (1.20.1-2+deb12u1) over (1.20.1-2) ...
Preparing to unpack .../017-libgssapi-krb5-2_1.20.1-2+deb12u1_armhf.deb ...
Unpacking libgssapi-krb5-2:armhf (1.20.1-2+deb12u1) over (1.20.1-2) ...
Preparing to unpack .../018-libkrb5-3_1.20.1-2+deb12u1_armhf.deb ...
Unpacking libkrb5-3:armhf (1.20.1-2+deb12u1) over (1.20.1-2) ...
Preparing to unpack .../019-libkrb5support0_1.20.1-2+deb12u1_armhf.deb ...
Unpacking libkrb5support0:armhf (1.20.1-2+deb12u1) over (1.20.1-2) ...
Preparing to unpack .../020-libgssrpc4_1.20.1-2+deb12u1_armhf.deb ...
Unpacking libgssrpc4:armhf (1.20.1-2+deb12u1) over (1.20.1-2) ...
Preparing to unpack .../021-libkdb5-10_1.20.1-2+deb12u1_armhf.deb ...
Unpacking libkdb5-10:armhf (1.20.1-2+deb12u1) over (1.20.1-2) ...
Preparing to unpack .../022-libkadm5srv-mit12_1.20.1-2+deb12u1_armhf.deb ...
Unpacking libkadm5srv-mit12:armhf (1.20.1-2+deb12u1) over (1.20.1-2) ...
Preparing to unpack .../023-libkadm5clnt-mit12_1.20.1-2+deb12u1_armhf.deb ...
Unpacking libkadm5clnt-mit12:armhf (1.20.1-2+deb12u1) over (1.20.1-2) ...
Preparing to unpack .../024-libcups2_2.4.2-3+deb12u4_armhf.deb ...
Unpacking libcups2:armhf (2.4.2-3+deb12u4) over (2.4.2-3+deb12u1) ...
Preparing to unpack .../025-libgtk-3-common_3.24.38-2~deb12u1_all.deb ...
Unpacking libgtk-3-common (3.24.38-2~deb12u1) over (3.24.37-2) ...
Preparing to unpack .../026-libgtk-3-0_3.24.38-2~deb12u1_armhf.deb ...
Unpacking libgtk-3-0:armhf (3.24.38-2~deb12u1) over (3.24.37-2) ...
Preparing to unpack .../027-chromium-browser_120.0.6099.102-rpt1_armhf.deb ...
Unpacking chromium-browser (120.0.6099.102-rpt1) over (116.0.5845.102-rpt1) ...
Preparing to unpack .../028-chromium-codecs-ffmpeg-extra_120.0.6099.102-rpt1_armhf.deb ...
Unpacking chromium-codecs-ffmpeg-extra (120.0.6099.102-rpt1) over (116.0.5845.102-rpt1) ...
Preparing to unpack .../029-libpulsedsp_16.1+dfsg1-2+rpt1_armhf.deb ...
Unpacking libpulsedsp:armhf (16.1+dfsg1-2+rpt1) over (16.1+dfsg1-2+b2) ...
Preparing to unpack .../030-pulseaudio-utils_16.1+dfsg1-2+rpt1_armhf.deb ...
Unpacking pulseaudio-utils (16.1+dfsg1-2+rpt1) over (16.1+dfsg1-2+b2) ...
Preparing to unpack .../031-pulseaudio_16.1+dfsg1-2+rpt1_armhf.deb ...
Unpacking pulseaudio (16.1+dfsg1-2+rpt1) over (16.1+dfsg1-2+b2) ...
Preparing to unpack .../032-libpulse0_16.1+dfsg1-2+rpt1_armhf.deb ...
Unpacking libpulse0:armhf (16.1+dfsg1-2+rpt1) over (16.1+dfsg1-2+b2) ...
Preparing to unpack .../033-chromium-chromedriver_120.0.6099.102-rpt1_armhf.deb ...
Unpacking chromium-chromedriver (120.0.6099.102-rpt1) over (116.0.5845.102-rpt1) ...
Preparing to unpack .../034-openssh-sftp-server_1%3a9.2p1-2+deb12u1_armhf.deb ...
Unpacking openssh-sftp-server (1:9.2p1-2+deb12u1) over (1:9.2p1-2) ...
Preparing to unpack .../035-openssh-server_1%3a9.2p1-2+deb12u1_armhf.deb ...
Unpacking openssh-server (1:9.2p1-2+deb12u1) over (1:9.2p1-2) ...
Preparing to unpack .../036-openssh-client_1%3a9.2p1-2+deb12u1_armhf.deb ...
Unpacking openssh-client (1:9.2p1-2+deb12u1) over (1:9.2p1-2) ...
Preparing to unpack .../037-libc-l10n_2.36-9+rpt2+deb12u3_all.deb ...
Unpacking libc-l10n (2.36-9+rpt2+deb12u3) over (2.36-9+rpi1+deb12u3) ...
Preparing to unpack .../038-locales_2.36-9+rpt2+deb12u3_all.deb ...
Unpacking locales (2.36-9+rpt2+deb12u3) over (2.36-9+rpi1+deb12u3) ...
Preparing to unpack .../039-alsa-utils_1.2.8-1+rpt1_armhf.deb ...
Unpacking alsa-utils (1.2.8-1+rpt1) over (1.2.8-1) ...
Preparing to unpack .../040-clang_1%3a14.0-55.7~deb12u1_armhf.deb ...
Unpacking clang (1:14.0-55.7~deb12u1) over (1:14.0-55.6) ...
Preparing to unpack .../041-curl_7.88.1-10+rpi1+deb12u4_armhf.deb ...
Unpacking curl (7.88.1-10+rpi1+deb12u4) over (7.88.1-10+rpi1) ...
Preparing to unpack .../042-libcurl4_7.88.1-10+rpi1+deb12u4_armhf.deb ...
Unpacking libcurl4:armhf (7.88.1-10+rpi1+deb12u4) over (7.88.1-10+rpi1) ...
Preparing to unpack .../043-filezilla_3.63.0-1+deb12u2_armhf.deb ...
Unpacking filezilla (3.63.0-1+deb12u2) over (3.63.0-1) ...
Preparing to unpack .../044-filezilla-common_3.63.0-1+deb12u2_all.deb ...
Unpacking filezilla-common (3.63.0-1+deb12u2) over (3.63.0-1) ...
Preparing to unpack .../045-firmware-atheros_1%3a20230210-5+rpt3_all.deb ...
Unpacking firmware-atheros (1:20230210-5+rpt3) over (1:20230210-5~bpo11+1+rpt1) ...
Preparing to unpack .../046-firmware-brcm80211_1%3a20230210-5+rpt3_all.deb ...
Unpacking firmware-brcm80211 (1:20230210-5+rpt3) over (1:20230210-5~bpo11+1+rpt1) ...
Preparing to unpack .../047-firmware-iwlwifi_1%3a20230210-5+rpt3_all.deb ...
Unpacking firmware-iwlwifi (1:20230210-5+rpt3) over (1:20230210-5~bpo11+1+rpt1) ...
Preparing to unpack .../048-firmware-misc-nonfree_1%3a20230210-5+rpt3_all.deb ...
Unpacking firmware-misc-nonfree (1:20230210-5+rpt3) over (1:20230210-5~bpo11+1+rpt1) ...
Preparing to unpack .../049-firmware-realtek_1%3a20230210-5+rpt3_all.deb ...
Unpacking firmware-realtek (1:20230210-5+rpt3) over (1:20230210-5~bpo11+1+rpt1) ...
Preparing to unpack .../050-libgimp2.0_2.10.34-1+deb12u1_armhf.deb ...
Unpacking libgimp2.0:armhf (2.10.34-1+deb12u1) over (2.10.34-1) ...
Preparing to unpack .../051-gimp-data_2.10.34-1+deb12u1_all.deb ...
Unpacking gimp-data (2.10.34-1+deb12u1) over (2.10.34-1) ...
Preparing to unpack .../052-libgs10_10.0.0~dfsg-11+deb12u2_armhf.deb ...
Unpacking libgs10:armhf (10.0.0~dfsg-11+deb12u2) over (10.0.0~dfsg-11+deb12u1) ...
Preparing to unpack .../053-libgs10-common_10.0.0~dfsg-11+deb12u2_all.deb ...
Unpacking libgs10-common (10.0.0~dfsg-11+deb12u2) over (10.0.0~dfsg-11+deb12u1) ...
Preparing to unpack .../054-libgs-common_10.0.0~dfsg-11+deb12u2_all.deb ...
Unpacking libgs-common (10.0.0~dfsg-11+deb12u2) over (10.0.0~dfsg-11+deb12u1) ...
Preparing to unpack .../055-libtiff-dev_4.5.0-6+deb12u1_armhf.deb ...
Unpacking libtiff-dev:armhf (4.5.0-6+deb12u1) over (4.5.0-6) ...
Preparing to unpack .../056-libtiffxx6_4.5.0-6+deb12u1_armhf.deb ...
Unpacking libtiffxx6:armhf (4.5.0-6+deb12u1) over (4.5.0-6) ...
Preparing to unpack .../057-libtiff6_4.5.0-6+deb12u1_armhf.deb ...
Unpacking libtiff6:armhf (4.5.0-6+deb12u1) over (4.5.0-6) ...
Preparing to unpack .../058-gimp_2.10.34-1+deb12u1_armhf.deb ...
Unpacking gimp (2.10.34-1+deb12u1) over (2.10.34-1) ...
Preparing to unpack .../059-gsettings-desktop-schemas_43.0-1+rpt1_all.deb ...
Unpacking gsettings-desktop-schemas (43.0-1+rpt1) over (43.0-1) ...
Preparing to unpack .../060-gstreamer1.0-plugins-good_1.22.0-5+rpt1+deb12u1_armhf.deb ...
Unpacking gstreamer1.0-plugins-good:armhf (1.22.0-5+rpt1+deb12u1) over (1.22.0-5+deb12u1) ...
Preparing to unpack .../061-gtk-update-icon-cache_3.24.38-2~deb12u1_armhf.deb ...
Unpacking gtk-update-icon-cache (3.24.38-2~deb12u1) over (3.24.37-2) ...
Preparing to unpack .../062-libswscale6_8%3a5.1.4-0+rpt1+deb12u1_armhf.deb ...
Unpacking libswscale6:armhf (8:5.1.4-0+rpt1+deb12u1) over (7:5.1.3-1) ...
Preparing to unpack .../063-libavformat59_8%3a5.1.4-0+rpt1+deb12u1_armhf.deb ...
Unpacking libavformat59:armhf (8:5.1.4-0+rpt1+deb12u1) over (7:5.1.3-1) ...
Preparing to unpack .../064-libavcodec59_8%3a5.1.4-0+rpt1+deb12u1_armhf.deb ...
Unpacking libavcodec59:armhf (8:5.1.4-0+rpt1+deb12u1) over (7:5.1.3-1) ...
Preparing to unpack .../065-libavutil57_8%3a5.1.4-0+rpt1+deb12u1_armhf.deb ...
Unpacking libavutil57:armhf (8:5.1.4-0+rpt1+deb12u1) over (7:5.1.3-1) ...
Preparing to unpack .../066-libswresample4_8%3a5.1.4-0+rpt1+deb12u1_armhf.deb ...
Unpacking libswresample4:armhf (8:5.1.4-0+rpt1+deb12u1) over (7:5.1.3-1) ...
Selecting previously unselected package libplacebo208:armhf.
Preparing to unpack .../067-libplacebo208_4.208.0-3_armhf.deb ...
Unpacking libplacebo208:armhf (4.208.0-3) ...
Selecting previously unselected package libpostproc56:armhf.
Preparing to unpack .../068-libpostproc56_8%3a5.1.4-0+rpt1+deb12u1_armhf.deb ...
Unpacking libpostproc56:armhf (8:5.1.4-0+rpt1+deb12u1) ...
Selecting previously unselected package libzimg2:armhf.
Preparing to unpack .../069-libzimg2_3.0.4+ds1-1_armhf.deb ...
Unpacking libzimg2:armhf (3.0.4+ds1-1) ...
Selecting previously unselected package libavfilter8:armhf.
Preparing to unpack .../070-libavfilter8_8%3a5.1.4-0+rpt1+deb12u1_armhf.deb ...
Unpacking libavfilter8:armhf (8:5.1.4-0+rpt1+deb12u1) ...
Preparing to unpack .../071-libcurl4-gnutls-dev_7.88.1-10+rpi1+deb12u4_armhf.deb ...
Unpacking libcurl4-gnutls-dev:armhf (7.88.1-10+rpi1+deb12u4) over (7.88.1-10+rpi1) ...
Preparing to unpack .../072-libcurl3-gnutls_7.88.1-10+rpi1+deb12u4_armhf.deb ...
Unpacking libcurl3-gnutls:armhf (7.88.1-10+rpi1+deb12u4) over (7.88.1-10+rpi1) ...
Preparing to unpack .../073-libgstreamer-plugins-bad1.0-0_1.22.0-4+deb12u3_armhf.deb ...
Unpacking libgstreamer-plugins-bad1.0-0:armhf (1.22.0-4+deb12u3) over (1.22.0-4+deb12u1) ...
Preparing to unpack .../074-libimlib2_1.10.0-4+deb12u1_armhf.deb ...
Unpacking libimlib2:armhf (1.10.0-4+deb12u1) over (1.10.0-4) ...
Preparing to unpack .../075-libwebkit2gtk-4.0-37_2.42.2-1~deb12u1+rpi1_armhf.deb ...
Unpacking libwebkit2gtk-4.0-37:armhf (2.42.2-1~deb12u1+rpi1) over (2.40.3-2~deb12u2+rpi1) ...
Preparing to unpack .../076-libjavascriptcoregtk-4.0-18_2.42.2-1~deb12u1+rpi1_armhf.deb ...
Unpacking libjavascriptcoregtk-4.0-18:armhf (2.42.2-1~deb12u1+rpi1) over (2.40.3-2~deb12u2+rpi1) ...
Preparing to unpack .../077-libwebkit2gtk-4.1-0_2.42.2-1~deb12u1+rpi1_armhf.deb ...
Unpacking libwebkit2gtk-4.1-0:armhf (2.42.2-1~deb12u1+rpi1) over (2.40.3-2~deb12u2+rpi1) ...
Preparing to unpack .../078-libjavascriptcoregtk-4.1-0_2.42.2-1~deb12u1+rpi1_armhf.deb ...
Unpacking libjavascriptcoregtk-4.1-0:armhf (2.42.2-1~deb12u1+rpi1) over (2.40.3-2~deb12u2+rpi1) ...
Preparing to unpack .../079-liblightdm-gobject-1-0_1.26.0-8+rpt3_armhf.deb ...
Unpacking liblightdm-gobject-1-0:armhf (1.26.0-8+rpt3) over (1.26.0-8) ...
Preparing to unpack .../080-libnss-myhostname_252.17-1~deb12u1+rpi1_armhf.deb ...
Unpacking libnss-myhostname:armhf (252.17-1~deb12u1+rpi1) over (252.12-1~deb12u1+rpi1) ...
Preparing to unpack .../081-libplymouth5_22.02.122-3+rpt1_armhf.deb ...
Unpacking libplymouth5:armhf (22.02.122-3+rpt1) over (22.02.122-3) ...
Preparing to unpack .../082-libpq-dev_15.5-0+deb12u1_armhf.deb ...
Unpacking libpq-dev (15.5-0+deb12u1) over (15.3-0+deb12u1) ...
Preparing to unpack .../083-libpq5_15.5-0+deb12u1_armhf.deb ...
Unpacking libpq5:armhf (15.5-0+deb12u1) over (15.3-0+deb12u1) ...
Selecting previously unselected package libprotobuf-lite32:armhf.
Preparing to unpack .../084-libprotobuf-lite32_3.21.12-3_armhf.deb ...
Unpacking libprotobuf-lite32:armhf (3.21.12-3) ...
Preparing to unpack .../085-libraspberrypi-bin_1%3a2+git20231018~131943+3c97f76-1_armhf.deb ...
Unpacking libraspberrypi-bin (1:2+git20231018~131943+3c97f76-1) over (1:2+git20230322~143557+9d5250f-1) ...
Preparing to unpack .../086-libraspberrypi0_1%3a2+git20231018~131943+3c97f76-1_armhf.deb ...
Unpacking libraspberrypi0:armhf (1:2+git20231018~131943+3c97f76-1) over (1:2+git20230322~143557+9d5250f-1) ...
Preparing to unpack .../087-vlc_1%3a3.0.20-0+rpt2+deb12u1_armhf.deb ...
Unpacking vlc (1:3.0.20-0+rpt2+deb12u1) over (1:3.0.18-0+rpt7+deb11u1) ...
Preparing to unpack .../088-vlc-plugin-base_1%3a3.0.20-0+rpt2+deb12u1_armhf.deb ...
Unpacking vlc-plugin-base:armhf (1:3.0.20-0+rpt2+deb12u1) over (1:3.0.18-0+rpt7+deb11u1) ...
Preparing to unpack .../089-vlc-data_1%3a3.0.20-0+rpt2+deb12u1_all.deb ...
Unpacking vlc-data (1:3.0.20-0+rpt2+deb12u1) over (1:3.0.18-0+rpt7+deb11u1) ...
Preparing to unpack .../090-libvlccore9_1%3a3.0.20-0+rpt2+deb12u1_armhf.deb ...
Unpacking libvlccore9:armhf (1:3.0.20-0+rpt2+deb12u1) over (1:3.0.18-0+rpt7+deb11u1) ...
Preparing to unpack .../091-vlc-plugin-qt_1%3a3.0.20-0+rpt2+deb12u1_armhf.deb ...
Unpacking vlc-plugin-qt:armhf (1:3.0.20-0+rpt2+deb12u1) over (1:3.0.18-0+rpt7+deb11u1) ...
Preparing to unpack .../092-vlc-plugin-video-output_1%3a3.0.20-0+rpt2+deb12u1_armhf.deb ...
Unpacking vlc-plugin-video-output:armhf (1:3.0.20-0+rpt2+deb12u1) over (1:3.0.18-0+rpt7+deb11u1) ...
Preparing to unpack .../093-libvlc5_1%3a3.0.20-0+rpt2+deb12u1_armhf.deb ...
Unpacking libvlc5:armhf (1:3.0.20-0+rpt2+deb12u1) over (1:3.0.18-0+rpt7+deb11u1) ...
Preparing to unpack .../094-vlc-bin_1%3a3.0.20-0+rpt2+deb12u1_armhf.deb ...
Unpacking vlc-bin (1:3.0.20-0+rpt2+deb12u1) over (1:3.0.18-0+rpt7+deb11u1) ...
Preparing to unpack .../095-libvlc-bin_1%3a3.0.20-0+rpt2+deb12u1_armhf.deb ...
Unpacking libvlc-bin:armhf (1:3.0.20-0+rpt2+deb12u1) over (1:3.0.18-0+rpt7+deb11u1) ...
Preparing to unpack .../096-libvte-2.91-0_0.70.6-2~deb12u1_armhf.deb ...
Unpacking libvte-2.91-0:armhf (0.70.6-2~deb12u1) over (0.70.6-1~deb12u1) ...
Preparing to unpack .../097-libvte-2.91-common_0.70.6-2~deb12u1_armhf.deb ...
Unpacking libvte-2.91-common (0.70.6-2~deb12u1) over (0.70.6-1~deb12u1) ...
Preparing to unpack .../098-lightdm_1.26.0-8+rpt3_armhf.deb ...
Unpacking lightdm (1.26.0-8+rpt3) over (1.26.0-8) ...
Preparing to unpack .../099-locales-all_2.36-9+rpt2+deb12u3_armhf.deb ...
Unpacking locales-all (2.36-9+rpt2+deb12u3) over (2.36-9+rpi1+deb12u3) ...
Preparing to unpack .../100-node-babel7_7.20.15+ds1+~cs214.269.168-3+deb12u1_all.deb ...
Unpacking node-babel7 (7.20.15+ds1+~cs214.269.168-3+deb12u1) over (7.20.15+ds1+~cs214.269.168-3) ...
Preparing to unpack .../101-node-babel7-runtime_7.20.15+ds1+~cs214.269.168-3+deb12u1_all.deb ...
Unpacking node-babel7-runtime (7.20.15+ds1+~cs214.269.168-3+deb12u1) over (7.20.15+ds1+~cs214.269.168-3) ...
Preparing to unpack .../102-openssl_3.0.11-1~deb12u2+rpt1_armhf.deb ...
Unpacking openssl (3.0.11-1~deb12u2+rpt1) over (3.0.9-1) ...
Preparing to unpack .../103-plymouth_22.02.122-3+rpt1_armhf.deb ...
Unpacking plymouth (22.02.122-3+rpt1) over (22.02.122-3) ...
Preparing to unpack .../104-python3-gpiozero_2.0-1_all.deb ...
Unpacking python3-gpiozero (2.0-1) over (1.6.2-1+b4) ...
Preparing to unpack .../105-python3-pip_23.0.1+dfsg-1+rpt1_all.deb ...
Unpacking python3-pip (23.0.1+dfsg-1+rpt1) over (23.0.1+dfsg-1) ...
Preparing to unpack .../106-python3-pip-whl_23.0.1+dfsg-1+rpt1_all.deb ...
Unpacking python3-pip-whl (23.0.1+dfsg-1+rpt1) over (23.0.1+dfsg-1) ...
Setting up gsettings-desktop-schemas (43.0-1+rpt1) ...
Setting up libpixman-1-0:armhf (0.42.2-1+rpt1) ...
Setting up gtk-update-icon-cache (3.24.38-2~deb12u1) ...
Setting up systemd-sysv (252.17-1~deb12u1+rpi1) ...
Setting up libc-l10n (2.36-9+rpt2+deb12u3) ...
Setting up libplacebo208:armhf (4.208.0-3) ...
Setting up chromium-codecs-ffmpeg-extra (120.0.6099.102-rpt1) ...
Setting up libvte-2.91-common (0.70.6-2~deb12u1) ...
Setting up firmware-iwlwifi (1:20230210-5+rpt3) ...
Setting up libgbm1:armhf (23.2.1-1~bpo12+rpt2) ...
Setting up python3-pip-whl (23.0.1+dfsg-1+rpt1) ...
Setting up libgs-common (10.0.0~dfsg-11+deb12u2) ...
Setting up firmware-atheros (1:20230210-5+rpt3) ...
Setting up firmware-misc-nonfree (1:20230210-5+rpt3) ...
Setting up libssl3:armhf (3.0.11-1~deb12u2+rpt1) ...
Setting up libjavascriptcoregtk-4.0-18:armhf (2.42.2-1~deb12u1+rpi1) ...
Setting up linux-libc-dev:armhf (1:6.1.63-1+rpt1) ...
Setting up locales (2.36-9+rpt2+deb12u3) ...
locales-all installed, skipping locales generation
Setting up libcairo2:armhf (1.16.0-7+rpt1) ...
Setting up locales-all (2.36-9+rpt2+deb12u3) ...
Setting up libkrb5support0:armhf (1.20.1-2+deb12u1) ...
Setting up libasound2-data (1.2.8-1+rpt1) ...
Setting up libgstreamer-plugins-bad1.0-0:armhf (1.22.0-4+deb12u3) ...
Setting up node-babel7-runtime (7.20.15+ds1+~cs214.269.168-3+deb12u1) ...
Setting up libavutil57:armhf (8:5.1.4-0+rpt1+deb12u1) ...
Setting up libjavascriptcoregtk-4.1-0:armhf (2.42.2-1~deb12u1+rpi1) ...
Setting up firmware-brcm80211 (1:20230210-5+rpt3) ...
Setting up python3-gpiozero (2.0-1) ...
Setting up libswresample4:armhf (8:5.1.4-0+rpt1+deb12u1) ...
Setting up firmware-realtek (1:20230210-5+rpt3) ...
Setting up clang (1:14.0-55.7~deb12u1) ...
Setting up libdbus-1-3:armhf (1.14.10-1~deb12u1) ...
Setting up filezilla-common (3.63.0-1+deb12u2) ...
Setting up libssl-dev:armhf (3.0.11-1~deb12u2+rpt1) ...
Setting up systemd-timesyncd (252.17-1~deb12u1+rpi1) ...
Setting up udev (252.17-1~deb12u1+rpi1) ...
Setting up libnss-myhostname:armhf (252.17-1~deb12u1+rpi1) ...
Setting up libudev-dev:armhf (252.17-1~deb12u1+rpi1) ...
Setting up python3-pip (23.0.1+dfsg-1+rpt1) ...
Setting up libk5crypto3:armhf (1.20.1-2+deb12u1) ...
Setting up libglapi-mesa:armhf (23.2.1-1~bpo12+rpt2) ...
Setting up libvlccore9:armhf (1:3.0.20-0+rpt2+deb12u1) ...
Setting up libraspberrypi0:armhf (1:2+git20231018~131943+3c97f76-1) ...
Setting up liblightdm-gobject-1-0:armhf (1.26.0-8+rpt3) ...
Setting up gimp-data (2.10.34-1+deb12u1) ...
Setting up vlc-plugin-qt:armhf (1:3.0.20-0+rpt2+deb12u1) ...
Setting up libtiff6:armhf (4.5.0-6+deb12u1) ...
Setting up libplymouth5:armhf (22.02.122-3+rpt1) ...
Setting up dbus-session-bus-common (1.14.10-1~deb12u1) ...
Setting up libasound2:armhf (1.2.8-1+rpt1) ...
Setting up libzimg2:armhf (3.0.4+ds1-1) ...
Setting up libprotobuf-lite32:armhf (3.21.12-3) ...
Setting up libcairo-gobject2:armhf (1.16.0-7+rpt1) ...
Setting up libkrb5-3:armhf (1.20.1-2+deb12u1) ...
Setting up libgimp2.0:armhf (2.10.34-1+deb12u1) ...
Setting up libpostproc56:armhf (8:5.1.4-0+rpt1+deb12u1) ...
Setting up xserver-common (2:21.1.7-3+rpt2+deb12u4) ...
Setting up keyboard-configuration (1.221rpt1) ...
Setting up dbus-system-bus-common (1.14.10-1~deb12u1) ...
Setting up libavcodec59:armhf (8:5.1.4-0+rpt1+deb12u1) ...
Setting up libasound2-dev:armhf (1.2.8-1+rpt1) ...
Setting up node-babel7 (7.20.15+ds1+~cs214.269.168-3+deb12u1) ...
Setting up libc-dev-bin (2.36-9+rpt2+deb12u3) ...
Setting up libswscale6:armhf (8:5.1.4-0+rpt1+deb12u1) ...
Setting up openssl (3.0.11-1~deb12u2+rpt1) ...
Setting up libtiffxx6:armhf (4.5.0-6+deb12u1) ...
Setting up libatopology2:armhf (1.2.8-1+rpt1) ...
Setting up vlc-data (1:3.0.20-0+rpt2+deb12u1) ...
Setting up dbus-bin (1.14.10-1~deb12u1) ...
Setting up libsystemd-dev:armhf (252.17-1~deb12u1+rpi1) ...
Setting up libgtk-3-common (3.24.38-2~deb12u1) ...
Setting up vlc-plugin-video-output:armhf (1:3.0.20-0+rpt2+deb12u1) ...
Setting up libgs10-common (10.0.0~dfsg-11+deb12u2) ...
Setting up libavformat59:armhf (8:5.1.4-0+rpt1+deb12u1) ...
Setting up libpulse0:armhf (16.1+dfsg1-2+rpt1) ...
Setting up plymouth (22.02.122-3+rpt1) ...
update-initramfs: deferring update (trigger activated)
Setting up gstreamer1.0-plugins-good:armhf (1.22.0-5+rpt1+deb12u1) ...
Setting up libgl1-mesa-dri:armhf (23.2.1-1~bpo12+rpt2) ...
Setting up xserver-xorg-core (2:21.1.7-3+rpt2+deb12u4) ...
Setting up libvlc5:armhf (1:3.0.20-0+rpt2+deb12u1) ...
Setting up libpulsedsp:armhf (16.1+dfsg1-2+rpt1) ...
Setting up dbus-daemon (1.14.10-1~deb12u1) ...
Setting up libraspberrypi-bin (1:2+git20231018~131943+3c97f76-1) ...
Setting up libavfilter8:armhf (8:5.1.4-0+rpt1+deb12u1) ...
Setting up alsa-utils (1.2.8-1+rpt1) ...
alsa-state.service is a disabled or a static unit not running, not starting it.
Setting up libegl-mesa0:armhf (23.2.1-1~bpo12+rpt2) ...
Setting up dbus (1.14.10-1~deb12u1) ...
A reboot is required to replace the running dbus-daemon.
Please reboot the system when convenient.
dbus.service is a disabled or a static unit, not starting it.
Setting up pulseaudio-utils (16.1+dfsg1-2+rpt1) ...
Setting up libgssapi-krb5-2:armhf (1.20.1-2+deb12u1) ...
Setting up libimlib2:armhf (1.10.0-4+deb12u1) ...
Setting up libcups2:armhf (2.4.2-3+deb12u4) ...
Setting up libvlc-bin:armhf (1:3.0.20-0+rpt2+deb12u1) ...
Setting up dbus-x11 (1.14.10-1~deb12u1) ...
Setting up libpam-systemd:armhf (252.17-1~deb12u1+rpi1) ...
Setting up libcurl4:armhf (7.88.1-10+rpi1+deb12u4) ...
Setting up libc6-dev:armhf (2.36-9+rpt2+deb12u3) ...
Setting up console-setup-linux (1.221rpt1) ...
Setting up curl (7.88.1-10+rpi1+deb12u4) ...
Setting up vlc-plugin-base:armhf (1:3.0.20-0+rpt2+deb12u1) ...
Setting up lightdm (1.26.0-8+rpt3) ...
Installing new version of config file /etc/lightdm/lightdm.conf ...
Setting up libgs10:armhf (10.0.0~dfsg-11+deb12u2) ...
Setting up gimp (2.10.34-1+deb12u1) ...
Setting up console-setup (1.221rpt1) ...
Setting up libglx-mesa0:armhf (23.2.1-1~bpo12+rpt2) ...
Setting up libpam0g-dev:armhf (1.5.2-6+rpt2+deb12u1) ...
Setting up openssh-client (1:9.2p1-2+deb12u1) ...
Setting up vlc-bin (1:3.0.20-0+rpt2+deb12u1) ...
Setting up libpq5:armhf (15.5-0+deb12u1) ...
Setting up libpq-dev (15.5-0+deb12u1) ...
Setting up libcurl3-gnutls:armhf (7.88.1-10+rpi1+deb12u4) ...
Setting up libcurl4-gnutls-dev:armhf (7.88.1-10+rpi1+deb12u4) ...
Setting up pulseaudio (16.1+dfsg1-2+rpt1) ...
Installing new version of config file /etc/pulse/daemon.conf ...
Installing new version of config file /etc/pulse/default.pa ...
Setting up libgssrpc4:armhf (1.20.1-2+deb12u1) ...
Setting up dbus-user-session (1.14.10-1~deb12u1) ...
Installing new version of config file /etc/X11/Xsession.d/20dbus_xdg-runtime ...
Setting up libtiff-dev:armhf (4.5.0-6+deb12u1) ...
Setting up vlc (1:3.0.20-0+rpt2+deb12u1) ...
Setting up libkadm5clnt-mit12:armhf (1.20.1-2+deb12u1) ...
Setting up openssh-sftp-server (1:9.2p1-2+deb12u1) ...
Setting up libkdb5-10:armhf (1.20.1-2+deb12u1) ...
Setting up openssh-server (1:9.2p1-2+deb12u1) ...
rescue-ssh.target is a disabled or a static unit not running, not starting it.
ssh.socket is a disabled or a static unit not running, not starting it.
Setting up libkadm5srv-mit12:armhf (1.20.1-2+deb12u1) ...
Setting up krb5-multidev:armhf (1.20.1-2+deb12u1) ...
Setting up libkrb5-dev:armhf (1.20.1-2+deb12u1) ...
Processing triggers for mailcap (3.70+nmu1) ...
Processing triggers for initramfs-tools (0.142) ...
Processing triggers for hicolor-icon-theme (0.17-2) ...
Processing triggers for libglib2.0-0:armhf (2.74.6-1) ...
Setting up libgtk-3-0:armhf (3.24.38-2~deb12u1) ...
Processing triggers for libc-bin (2.36-9+rpt2+deb12u3) ...
Setting up libvte-2.91-0:armhf (0.70.6-2~deb12u1) ...
Processing triggers for man-db (2.11.2-2) ...
Setting up libwebkit2gtk-4.0-37:armhf (2.42.2-1~deb12u1+rpi1) ...
Setting up chromium-browser (120.0.6099.102-rpt1) ...
Setting up filezilla (3.63.0-1+deb12u2) ...
Setting up libwebkit2gtk-4.1-0:armhf (2.42.2-1~deb12u1+rpi1) ...
Setting up chromium-chromedriver (120.0.6099.102-rpt1) ...
Processing triggers for libvlc-bin:armhf (1:3.0.20-0+rpt2+deb12u1) ...
Processing triggers for libc-bin (2.36-9+rpt2+deb12u3) ...
[  OK  ] DietPi-Update | APT upgrade

 DietPi-Update
─────────────────────────────────────────────────────
 Phase: Installing new DietPi code

[  OK  ] DietPi-Update | Downloading update archive
[  OK  ] DietPi-Update | Unpacking update archive
[  OK  ] DietPi-Update | Removing unused files
[  OK  ] DietPi-Update | Hardening update archive mode
[  OK  ] DietPi-Update | Installing new DietPi scripts
[  OK  ] DietPi-Update | Installing new DietPi system files
[ SUB1 ] DietPi-Set_software > verify_dietpi.txt
[  OK  ] DietPi-Set_software | Downloading current dietpi.txt
[  OK  ] verify_dietpi.txt  | Completed
[  OK  ] DietPi-Update | sync
[  OK  ] DietPi-Update | systemctl daemon-reload

 DietPi-Update
─────────────────────────────────────────────────────
 Phase: Applying incremental patches

[ INFO ] DietPi-Update | Current version : v8.22.3
[ INFO ] DietPi-Update | Latest version  : v9.0.2
[ INFO ] DietPi-Patch | Patching to DietPi v8.23...
[ INFO ] DietPi-Patch | Updating raspberrypi-sys-mods package ...
[ INFO ] DietPi-Patch | curl -fo package.deb https://dietpi.com/downloads/binaries/raspberrypi-sys-mods.deb, please wait...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  3116  100  3116    0     0   1864      0  0:00:01  0:00:01 --:--:--  1864
[  OK  ] DietPi-Patch | curl -fo package.deb https://dietpi.com/downloads/binaries/raspberrypi-sys-mods.deb
[ INFO ] DietPi-Patch | dpkg -i --force-confdef,confold package.deb, please wait...
(Reading database ... 139846 files and directories currently installed.)
Preparing to unpack package.deb ...
Unpacking raspberrypi-sys-mods (2:20230510-dietpi2) over (2:20230510-dietpi1) ...
Setting up raspberrypi-sys-mods (2:20230510-dietpi2) ...
[  OK  ] DietPi-Patch | dpkg -i --force-confdef,confold package.deb
[  OK  ] DietPi-Patch | rm package.deb
[  OK  ] DietPi-Patch | Patched to DietPi v8.23
[ INFO ] DietPi-Patch | Patching to DietPi v8.24...
[  OK  ] DietPi-Patch | Patched to DietPi v8.24
[ INFO ] DietPi-Patch | Patching to DietPi v8.25...
[  OK  ] DietPi-Patch | Patched to DietPi v8.25
[ INFO ] DietPi-Patch | Patching to DietPi v9.0...
[  OK  ] DietPi-Patch | Patched to DietPi v9.0
[ INFO ] DietPi-Update | APT autopurge, please wait...
Reading package lists...
Building dependency tree...
Reading state information...
The following packages will be REMOVED:
  libaom0* libavcodec58* libavfilter7* libavformat58* libavutil56*
  libcodec2-0.9* libdav1d4* libflac8* libidn11* libplacebo72* libpostproc55*
  libprotobuf-lite23* libsrt1.4-gnutls* libswresample3* libswscale5* libvpx6*
  libwebp6* libx264-160* libx265-192*
0 upgraded, 0 newly installed, 19 to remove and 0 not upgraded.
                                                               After this operation, 75.1 MB disk space will be freed.
(Reading database ... 139846 files and directories currently installed.)
Removing libavfilter7:armhf (8:4.3.6-0+deb11u1+rpt5) ...
Removing libavformat58:armhf (8:4.3.6-0+deb11u1+rpt5) ...
Removing libavcodec58:armhf (8:4.3.6-0+deb11u1+rpt5) ...
Removing libaom0:armhf (1.0.0.errata1-3+deb11u1) ...
Removing libswscale5:armhf (8:4.3.6-0+deb11u1+rpt5) ...
Removing libswresample3:armhf (8:4.3.6-0+deb11u1+rpt5) ...
Removing libcodec2-0.9:armhf (0.9.2-4) ...
Removing libdav1d4:armhf (0.7.1-3+rpi1) ...
Removing libflac8:armhf (1.3.3-2+deb11u1) ...
Removing libidn11:armhf (1.33-3) ...
Removing libplacebo72:armhf (2.72.2-1) ...
Removing libpostproc55:armhf (8:4.3.6-0+deb11u1+rpt5) ...
Removing libprotobuf-lite23:armhf (3.12.4-1) ...
Removing libsrt1.4-gnutls:armhf (1.4.2-1.3) ...
Removing libvpx6:armhf (1.9.0-1) ...
Removing libwebp6:armhf (0.6.1-2.1+deb11u1) ...
Removing libx264-160:armhf (2:0.160.3011+gitcde9a93-2.1+rpi1) ...
Removing libx265-192:armhf (3.4-2) ...
Removing libavutil56:armhf (8:4.3.6-0+deb11u1+rpt5) ...
Processing triggers for libc-bin (2.36-9+rpt2+deb12u3) ...
[  OK  ] DietPi-Update | APT autopurge
[  OK  ] DietPi-Update | systemctl daemon-reload
[  OK  ] DietPi-Update | Incremental patching to v9.0.2 completed
[ INFO ] DietPi-Update | Checking for new available live patches

 DietPi-Update
─────────────────────────────────────────────────────
 Phase: Completed

[ INFO ] DietPi-Update | Current version : v9.0.2
[ INFO ] DietPi-Update | Latest version  : v9.0.2
[  OK  ] DietPi-Survey | Sending survey data
[  OK  ] DietPi-Update | sync
[ SUB1 ] DietPi-Services > restart 
[ INFO ] DietPi-Services | skip : proftpd (masked)
[ INFO ] DietPi-Services | skip : nmbd (disabled)
[ INFO ] DietPi-Services | skip : smbd (disabled)
[ INFO ] DietPi-Services | skip : apache2 (masked)
[  OK  ] DietPi-Services | restart : cron

レシピ

参考文献

付録

  • hardware/raspberry_pi/dietpi.txt
  • 最終更新: 2024/01/25 00:28
  • by ともやん