Skip to content

Cloud-Image Host Automation Utility and System Image Engine

Notifications You must be signed in to change notification settings

lateralblast/chausie

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chausie cat

CHAUSIE

Cloud-Image Host Automation Utility and System Image Engine

Version

Current version 0.8.2

Prerequisites

Required packages:

  • libvirt
  • libosinfo-bin
  • libguestfs-tools
  • whois (mkpasswd)
  • virt-manager
  • cloud-image-utils
  • ipcalc

You'll also need to configure network bridges (the default is br0, but can be changed) if you want to use the default settings. You could configure it with NAT, or internal/ host-only networking, but I haven't looked at those options yet.

Configuring bridges on Ubuntu can be done on Ubuntu by editing the netplan file located in /etc/netplan.

An example of a netplan file wihout bridges configured:

network:
  ethernets:
    eno1:
      addresses: [192.168.10.63/22]
      nameservers:
        addresses: [8.8.8.8]
      routes:
        - to:  default
          via: 192.168.11.254
  version: 2

An example of a netplan file with bridges configured:

network:
  ethernets:
    eno1:
      dhcp4: false
  bridges:
    br0:
      interfaces: [eno1]
      addresses: [192.168.10.63/22]
      nameservers:
        addresses: [8.8.8.8]
      routes:
        - to:  default
          via: 192.168.11.254
  version: 2

Once the change has been done it can be enabled by:

sudo netplan apply

Introduction

This script is designed to automate/simplify the creation of KVM VMs from cloud images.

Background

I wrote this script as I was tired of Canonical's inconsistent cloud-init support.

I understand having some differences between physical and virtual machines, e.g. ISO based installs versus using Cloud Images, but when my instructions/workflow for 20.04 and 22.04 stopped working with 24.04, I thought I'd write a script to help handle these inconsistencies for cloud images.

This script is also able do updates to images using virt-customize to bootstrap the image (e.g. configure network, and SSH keys) if needed, and then use my existing ansible workflow to finish configuring the VM rather than using cloud-init.

The script also support hardware pass-through, making it slighty easier to configure that (you still need to the host side and inside the VM) with the --hostdevice switch which you can pass the host PCI ID to, e.g.

./chausie.sh --action createvm --hostdevice 04:00.0

If you want more information on the system and software side of this you can look at the example documentation I created for Nvidia GPU pass-through here:

https://github.com/lateralblast/kvm-nvidia-passthrough

Usage

The default username and password used with images is "cloudadmin"

By default the script will try to create a VM using a cloud-init config. If you wish to create an image without cloud-init and do manual modifications via virt-customize (which can also be driven by the script to make it easier), then use the option nolocalds, e.g.

./chausie --action createvm --option nolocalds

If you want to set mulitple options, e.g. enable verbose and dryrun modes, ou can include both of them in after the --option switch, separated by a comma, e.g.

./chausie.sh --action createvm --options verbose,dryrun

Similarly, if you want to set mulitple options, e.g. listvms and listpools, you can include both of them in after the --option switch, separated by a comma, e.g.

./chausie.sh --action listvms,listpools

Obviously you need to be careful about chaining actions, e.g. you need to add user before injecting keys and adding to sudoers, so you'd order those actions:

./chausie.sh --action user,injectkeys,sudoers --user ubuntu --name test

You can get usage information by usign the --help switch. This will return information about the standard switches.

./chausie.sh --help

If you want specific information about just the actions or options, you can get this by using the --help switch folled by actions, or options.

./chausie.sh --help actions

If you want full help, i.e. standard switches, actions, and options, use the --help switch followed by full/all.

Examples

List VMs:

./chausie.sh --action listvms
 Id   Name   State
-----------------------
 -    test   shut off

List Pools:

./chausie.sh --action listpools
 Name   State    Autostart
----------------------------
 test   active   no

List Nets:

./chausie.sh --action listnets
 Name      State      Autostart   Persistent
----------------------------------------------
 default   inactive   no          yes

Create VM with latest LTS cloud image:

./chausie.sh --action createvm --name test
Formatting '/var/lib/libvirt/images/test/test.qcow2', fmt=qcow2 cluster_size=65536 extended_l2=off compression_type=zlib size=21474836480 backing_file=/var/lib/libvirt/images/releases/ubuntu-24.04-server-cloudimg-amd64.img backing_fmt=qcow2 lazy_refcounts=off refcount_bits=16

Starting install...
Creating domain...                                                                                                                                                                    |    0 B  00:00:00
Domain creation completed.
You can restart your domain by running:
  virsh --connect qemu:///system start test

Create default user (ubuntu), inject SSH keys, and add to sudoers:

./chausie.sh --action user,injectkeys,sudoers --name test

Set root password:

./chausie.sh --action password --user root --password P455w0rd --name test

Delete VM:

./chausie.sh --action deletevm --name test

Start VM:

./chausie.sh --action startvm --name test

Connect to VM via console:

./chausie.sh --action connect --name test

Stop VM:

./chausie.sh --action stopvm --name test

The dryrun with the verbose option can be useful for testing/reviewing workflow, e.g.

 ./chausie.sh --action createvm --name testvm --option verbose,dryrun
Notice:       Enabling debug mode
Notice:       Enabling strict mode
Notice:       Setting VM arch to "amd64"
Notice:       Setting CPU type to "host"
Notice:       Setting VM name to "testvm"
Notice:       Setting VM CPUs to "2"
Notice:       Setting VM RAM to "4096"
Notice:       Setting VM size to "20G"
Notice:       Setting OS version to "24.04"
Notice:       Setting VM boot type to "uefi"
Notice:       Setting VM vm_graphics to "none"
Notice:       Setting VM hostname to "testvm"
Notice:       Setting VM network type to "bridge"
Notice:       Setting VM bridge to "br0"
Notice:       Setting VM network driver/bus to "virtio"
Notice:       Setting VM network device to "enp1s0"
Notice:       Setting VM CIDR to "24"
Notice:       Setting VM DNS server to "8.8.8.8"
Notice:       Setting Cloud Image file to "ubuntu-24.04-server-cloudimg-amd64.img"
Notice:       Setting Cloud Image URL to "https://cloud-images.ubuntu.com/releases/24.04/release/ubuntu-24.04-server-cloudimg-amd64.img"
Notice:       Setting libvirt directory to "/var/lib/libvirt"
Notice:       Setting Image directory to "/var/lib/libvirt/images"
Notice:       Setting VM disk to "/var/lib/libvirt/images/testvm/testvm.qcow2"
Notice:       Setting VM cdrom to "/var/lib/libvirt/images/testvm/testvm.cloud.img"
Notice:       Setting VM network config file to "/var/lib/libvirt/images/testvm/testvm.network.cfg"
Notice:       Setting VM cloud-init file to "/var/lib/libvirt/images/testvm/testvm.cloud.cfg"
Notice:       Setting VM packages "/var/lib/libvirt/images/testvm/testvm.cloud.cfg"
Notice:       Setting pool name to "testvm"
Notice:       Setting pool directory to "/var/lib/libvirt/images/testvm"
Notice:       Setting release directory to "/var/lib/libvirt/images/releases"
Notice:       Setting VM OS variant to "ubuntu24.04"
Notice:       Setting post install script to "/home/sysadmin/Code/chausie/scripts/post_install.sh"
Notice:       Setting VM power state to "reboot"
Notice:       Setting cache directory to "/home/sysadmin/.cache/virt-manager"
Notice:       Setting username to "cloudadmin"
Notice:       Setting password to "cloudadmin"
Notice:       Setting user ID to "1000"
Notice:       Setting group to "cloudadmin"
Notice:       Setting GECOS field to "CloudAdmin"
Notice:       Setting group ID to "1000"
Notice:       Setting home directory to "/home/cloudadmin"
Notice:       Setting groups to "users"
Notice:       Setting shell to "/usr/bin/bash"
Notice:       Setting sudoers entry to "ALL=(ALL) NOPASSWD:ALL"
Notice:       Setting SSH key to "/home/sysadmin/.ssh/id_ed25519.pub"
Notice:       Setting network to DHCP
Notice:       Directory "/var/lib/libvirt/images/releases" already exists
Notice:       Directory "/var/lib/libvirt/images/releases" already exists
Notice:       Cloud Image "/var/lib/libvirt/images/releases/ubuntu-24.04-server-cloudimg-amd64.img" already exists
Information:  Checking config
Executing:    sudo sh -c "mkdir -p /var/lib/libvirt"
Executing:    sudo sh -c 'usermod -a -G libvirt-qemu sysadmin'
Executing:    sudo sh -c "mkdir -p /var/lib/libvirt/images/testvm"
Executing:    sudo sh -c 'chown root:libvirt-qemu /var/lib/libvirt/images/testvm'
Executing:    sudo sh -c 'chmod 775 /var/lib/libvirt/images/testvm'
Executing:    virsh pool-create-as --name testvm --type dir --target /var/lib/libvirt/images/testvm > /dev/null 2>&1
Executing:    sudo sh -c 'chown root:libvirt-qemu /var/lib/libvirt/images/testvm'
Executing:    sudo sh -c 'chmod 775 /var/lib/libvirt/images/testvm'
Information:  Found Cloud Image file "/var/lib/libvirt/images/releases/ubuntu-24.04-server-cloudimg-amd64.img"
Information:  Creating VM disk file "/var/lib/libvirt/images/testvm/testvm.qcow2"
Executing:    sudo sh -c "qemu-img create -b /var/lib/libvirt/images/releases/ubuntu-24.04-server-cloudimg-amd64.img -F qcow2 -f qcow2 /var/lib/libvirt/images/testvm/testvm.qcow2 20G"
Executing:    sudo sh -c 'chown root:libvirt-qemu /var/lib/libvirt/images/testvm/testvm.qcow2'
Executing:    sudo sh -c 'chmod 775 /var/lib/libvirt/images/testvm/testvm.qcow2'
Information:  Contents of file "/tmp/01-netcfg.yaml"
ethernets:
  enp1s0:
    dhcp4: true
version: 2
Executing:    sudo sh -c "cp /tmp/01-netcfg.yaml /var/lib/libvirt/images/testvm/testvm.network.cfg"
Information:  Contents of file "/tmp/cloud-init.cfg"
#cloud-config
hostname: testvm
groups:
  - cloudadmin: cloudadmin
users:
  - default
  - name: cloudadmin
    gecos: CloudAdmin
    primary_group: cloudadmin
    groups: users
    shell: /usr/bin/bash
    passwd: "$6$hIGg7DqPr8xhla8H$j34C9ChJANPo2FC82n8kglv.iVF.A9VExTk0yR7gUZanSLwawj2GcsmWn6Tr9pd0usyZylFt0yxTt8.KZScQ/1"
    sudo: ALL=(ALL) NOPASSWD:ALL
    lock_passwd: false
packages:
  - ansible
growpart:
  mode: auto
  devices: ['/']
power_state:
  mode: reboot
Executing:    sudo sh -c "cp /tmp/cloud-init.cfg /var/lib/libvirt/images/testvm/testvm.cloud.cfg"
Executing:    sudo sh -c "cloud-localds --network-config /var/lib/libvirt/images/testvm/testvm.network.cfg /var/lib/libvirt/images/testvm/testvm.cloud.img /var/lib/libvirt/images/testvm/testvm.cloud.cfg"
Executing:    sudo sh -c "virt-install --import --name testvm --memory 4096 --vcpus 2 --cpu host --disk /var/lib/libvirt/images/testvm/testvm.qcow2,format=qcow2,bus=virtio --disk /var/lib/libvirt/images/testvm/testvm.cloud.img,device=cdrom --network bridge=br0,model=virtio --os-variant ubuntu24.04 --noautoconsole --graphics none --boot uefi  --noreboot"

Detailed Usage

Standard help:

./chausie.sh --help
Usage: chausie.sh [OPTIONS...]
-----
 --action*)
   Action to perform (e.g. createvm,deletevm)
 --arch)
   Specify architecture
 --boot*)
   VM boot type (e.g. UEFI)
 --bridge)
   VM network bridge
 --cdrom)
   VM localds cdrom
 --cidr)
   VM CIDR
 --cloud*)
   VM cloud-init config
 --*codename)
   VM cloud-init config
 --cpus)
   Number of VM CPUs
 --cputype)
   Type of CPU within VM
 --crypt)
   VM password crypt
 --debug)
   Run in debug mode
 --dest*)
   Destination of file to copy into VM disk
 --disk)
   VM disk file
 --dns)
   VM DNS server
 --domain*)
   VM domainname
 --dryrun)
   Run in dryrun mode
 --features)
   VM features
 --filegroup)
   Set group of a file within VM image
 --fileowner)
   Set owner of a file within VM image
 --fileperms)
   Set permissions of a file within VM image
 --force)
   Force mode
 --fqdn)
   VM FQDN
 --getimage)
   Get Image
 --gateway|--router)
   VM gateway address
 --graphics)
   VM Graphics type
 --gecos)
   GECOS field for user
 --groupid|--gid)
   Group ID
 --group|--groupname)
   Primary Group a user is member of in VM image
 --groups)
   Additional groups a user is a member of in VM image
 --help|--usage|-h)
   Print help
 --home*)
   Home directory
 --hostdevice)
   VM host device pass-through
 --hostname)
   VM hostname
 --imagedir)
   Image directory
 --imagefile)
   Image file
 --imageurl)
   Image URL
 --ip*)
   VM IP address
 --mask)
   Enable masking of password and ssh keys
 --name|--vmname)
   Name of VM
 --nettype)
   Net type (e.g. bridge)
 --netbus|netdriver)
   Net bus/driver (e.g. virtio)
 --netc*|--networkc*)
   VM network config file
 --netdev|--nic)
   VM network device (e.g. enp1s0)
 --option*)
   Option(s) (e.g. verbose,dryrun)
 --osvariant)
   Os variant
 --osvers|--release)
   OS version of image
 --packages)
   Packages to install in VM
 --password)
   Password for user (e.g. root)
 --poolname)
   Pool name
 --pooldir)
   Pool directory
 --post*)
   Post install script
 --power*)
   VM power state
 --ram)
   Amount of VM RAM
 --shell)
   User shell in VM image
 --size)
   Size of VM disk
 --shellcheck)
   Run shellcheck on script
 --source*|--input*)
   Source file to copy into VM disk
 --sshkey)
   SSH key
 --sshkeyfile)
   SSH key file
 --strict)
   Run in strict mode
 --sudoers)
   Sudoers entry
 --userid|--uid)
   User ID
 --user|--username)
   Username
 --verbose)
   Run in verbose mode
 --version|-V)
   Print version
 --virtdir)
   VM/libvirt base directory

Options help:

./chausie.sh --help options
Options:
-------
 debug)
   Enable debug mode
 dryrun)
   Enable dryrun mode (don't execute commands)
 dhcp)
   Use DHCP
 force)
   Force action
 noautoconsole)
   Disable autoconsole
 autoconsole)
   Enable autoconsole
 noautostart)
   Disable autostart
 autostart)
   Enable autostart
 nolocalds)
   Don't use cloud-localds
 localds)
   Use cloud-localds
 nolock*)
   Lock password
 lock*)
   Lock password
 nobacking)
   Don't use backing (creates a full copy of image)
 options|help)
   Print options help
 nomask)
   Disable masking of password and ssh keys
 mask)
   Enable masking of password and ssh keys
 noreboot)
   Disable reboot
 reboot)
   Enable reboot
 strict)
   Enable strict mode
 verbose)
   Enable verbose mode
 version)
   Print versionn

Actions help:

./chausie.sh --help actions
Actions:
-------
 action|help)
   Print actions help
 *config)
   Check config
 connect|console)
   Connect to VM console
 copy|upload)
   Copy file into VM image
 createpool)
   Create pool
 createvm)
   Create VM
 *network*)
   Configure network
 customize|post*)
   Do postinstall config
 deletepool)
   Delete pool
 deletevm)
   Delete VM
 getimage)
   Get image
 *group*)
   Add group to to VM image
 *inject*)
   Inject SSH key into VM image
 install*)
   Install packages in VM image
 listvm*)
   List VMs
 listpool*)
   List pools
 listnet*)
   List nets
 *password*)
   Set password for user in VM image
 run*)
   Run command in VM image
 shellcheck)
   Check script with shellcheck
 shutdown*|stop*)
   Stop VM
 start*|boot*)
   Start VM
 sudo*)
   Add sudoers entry to VM image
 *user*)
   Add user to VM
 version)
   Print version

Detailed Examples

Create test VM (this will use defaults and also fetch the latest LTS image if it isn't present):

./chausie.sh --action createvm --name test --option verbose
Notice:       Enabling debug mode
Notice:       Enabling strict mode
Notice:       Setting VM arch to "amd64"
Notice:       Setting CPU type to "host"
Notice:       Setting VM name to "test"
Notice:       Setting VM CPUs to "2"
Notice:       Setting VM RAM to "4096"
Notice:       Setting VM size to "20G"
Notice:       Setting OS version to "24.04"
Notice:       Setting VM boot type to "uefi"
Notice:       Setting VM vm_graphics to "none"
Notice:       Setting VM hostname to "chausie"
Notice:       Setting VM network type to "bridge"
Notice:       Setting VM bridge to "br0"
Notice:       Setting VM network driver/bus to "virtio"
Notice:       Setting VM network device to "enp1s0"
Notice:       Setting VM CIDR to "24"
Notice:       Setting VM DNS server to "8.8.8.8"
Notice:       Setting Cloud Image file to "ubuntu-24.04-server-cloudimg-amd64.img"
Notice:       Setting Cloud Image URL to "https://cloud-images.ubuntu.com/releases/24.04/release/ubuntu-24.04-server-cloudimg-amd64.img"
Notice:       Setting libvirt directory to "/var/lib/libvirt"
Notice:       Setting Image directory to "/var/lib/libvirt/images"
Notice:       Setting VM disk to "/var/lib/libvirt/images/test/test.qcow2"
Notice:       Setting pool name to "test"
Notice:       Setting pool directory to "/var/lib/libvirt/images/test"
Notice:       Setting release directory to "/var/lib/libvirt/images/releases"
Notice:       Setting VM OS variant to "ubuntu24.04"
Notice:       Setting post install script to "/home/localuser/Code/chausie/scripts/post_install.sh"
Notice:       Setting cache directory to "/home/localuser/.cache/virt-manager"
Notice:       Setting username to "ubuntu"
Notice:       Setting password to "ubuntu"
Notice:       Setting user ID to "1000"
Notice:       Setting group to "ubuntu"
Notice:       Setting group ID to "1000"
Notice:       Setting home directory to "/home/ubuntu"
Notice:       Setting sudoers entry to "ALL=(ALL) NOPASSWD:ALL"
Notice:       Setting SSH key to "/home/localuser/.ssh/id_rsa.pub"
Notice:       Directory "/var/lib/libvirt/images/releases" already exists
Information:  Checking config
Executing:    sudo sh -c 'mkdir -p /var/lib/libvirt'
Executing:    sudo sh -c 'usermod -a -G libvirt localuser'
Executing:    sudo sh -c 'usermod -a -G libvirt-qemu localuser'
Notice:       Directory "/var/lib/libvirt/images/releases" already exists
Executing:    sudo sh -c 'cd /var/lib/libvirt/images/releases ; wget https://cloud-images.ubuntu.com/releases/24.04/release/ubuntu-24.04-server-cloudimg-amd64.img'
--2024-09-02 21:56:41--  https://cloud-images.ubuntu.com/releases/24.04/release/ubuntu-24.04-server-cloudimg-amd64.img
Resolving cloud-images.ubuntu.com (cloud-images.ubuntu.com)... 2620:2d:4000:1::1a, 2620:2d:4000:1::17, 2001:67c:1562::28, ...
Connecting to cloud-images.ubuntu.com (cloud-images.ubuntu.com)|2620:2d:4000:1::1a|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 586022912 (559M) [application/octet-stream]
Saving to: ‘ubuntu-24.04-server-cloudimg-amd64.img’

ubuntu-24.04-server-cloudimg-amd64.img     100%[======================================================================================>] 558.88M  7.21MB/s    in 73s

2024-09-02 21:57:55 (7.66 MB/s) - ‘ubuntu-24.04-server-cloudimg-amd64.img’ saved [586022912/586022912]

Notice:       Directory "/var/lib/libvirt/images/test" already exists
Executing:    virsh pool-create-as --name test --type dir --target /var/lib/libvirt/images/test > /dev/null 2>&1
Executing:    sudo sh -c 'chown root:libvirt-qemu /var/lib/libvirt/images/test'
Executing:    sudo sh -c 'chmod 775 /var/lib/libvirt/images/test'
Information:  Found Cloud Image file "/var/lib/libvirt/images/releases/ubuntu-24.04-server-cloudimg-amd64.img"
Information:  Creating VM disk file "/var/lib/libvirt/images/test/test.qcow2"
Executing:    sudo sh -c 'qemu-img create -b /var/lib/libvirt/images/releases/ubuntu-24.04-server-cloudimg-amd64.img -F qcow2 -f qcow2 /var/lib/libvirt/images/test/test.qcow2 20G'
Formatting '/var/lib/libvirt/images/test/test.qcow2', fmt=qcow2 cluster_size=65536 extended_l2=off compression_type=zlib size=21474836480 backing_file=/var/lib/libvirt/images/releases/ubuntu-24.04-server-cloudimg-amd64.img backing_fmt=qcow2 lazy_refcounts=off refcount_bits=16
Executing:    sudo sh -c 'chown root:libvirt-qemu /var/lib/libvirt/images/test/test.qcow2'
Executing:    sudo sh -c 'chmod 770 /var/lib/libvirt/images/test/test.qcow2'
Executing:    sudo sh -c 'virt-install --import --name test --memory 4096 --vcpus 2 --cpu host --disk /var/lib/libvirt/images/test/test.qcow2,format=qcow2,bus=virtio --network bridge=br0,model=virtio --os-variant ubuntu24.04 --noautoconsole --graphics none --boot uefi  --noreboot'

Starting install...
Creating domain...                                                                                                                                 |    0 B  00:00:00
Domain creation completed.
You can restart your domain by running:
  virsh --connect qemu:///system start test

Detailed Usage

Running the checkconfig action will check the local configuration and install required packages. It's a good idea to logout and login after this as it will add the user account to required groups (e.g. libvirt)

./chausie.sh --action checkconfig --options verbose
Notice:       Enabling debug mode
Notice:       Enabling strict mode
Notice:       Setting VM arch to "amd64"
Notice:       Setting CPU type to "host"
Notice:       Setting VM name to "chausie"
Notice:       Setting VM CPUs to "2"
Notice:       Setting VM RAM to "4096"
Notice:       Setting VM size to "20G"
Notice:       Setting OS version to "24.04"
Notice:       Setting VM boot type to "uefi"
Notice:       Setting VM vm_graphics to "none"
Notice:       Setting VM hostname to "chausie"
Notice:       Setting VM network type to "bridge"
Notice:       Setting VM bridge to "br0"
Notice:       Setting VM network driver/bus to "virtio"
Notice:       Setting VM network device to "enp1s0"
Notice:       Setting VM CIDR to "24"
Notice:       Setting VM DNS server to "8.8.8.8"
Notice:       Setting Cloud Image file to "ubuntu-24.04-server-cloudimg-amd64.img"
Notice:       Setting Cloud Image URL to "https://cloud-images.ubuntu.com/releases/24.04/release/ubuntu-24.04-server-cloudimg-amd64.img"
Notice:       Setting libvirt directory to "/var/lib/libvirt"
Notice:       Setting Image directory to "/var/lib/libvirt/images"
Notice:       Setting VM disk to "/var/lib/libvirt/images/chausie/chausie.qcow2"
Notice:       Setting pool name to "chausie"
Notice:       Setting pool directory to "/var/lib/libvirt/images/chausie"
Notice:       Setting release directory to "/var/lib/libvirt/images/releases"
Notice:       Setting VM OS variant to "ubuntu24.04"
Notice:       Setting post install script to "/home/localuser/Code/chausie/scripts/post_install.sh"
Notice:       Setting cache directory to "/home/localuser/.cache/virt-manager"
Notice:       Setting username to "ubuntu"
Notice:       Setting password to "ubuntu"
Notice:       Setting user ID to "1000"
Notice:       Setting group to "ubuntu"
Notice:       Setting group ID to "1000"
Notice:       Setting home directory to "/home/ubuntu"
Notice:       Setting sudoers entry to "ALL=(ALL) NOPASSWD:ALL"
Notice:       Setting SSH key to "/home/localuser/.ssh/id_rsa.pub"
Notice:       Directory "/var/lib/libvirt/images/releases" already exists
Information:  Checking config
Executing:    sudo sh -c 'mkdir -p /var/lib/libvirt'
Executing:    sudo sh -c 'usermod -a -G kvm localuser'
Executing:    sudo sh -c 'usermod -a -G libvirt localuser'
usermod: group 'libvirt' does not exist
Executing:    sudo sh -c 'usermod -a -G libvirt-qemu localuser'
usermod: group 'libvirt-qemu' does not exist
Executing:    sudo sh -c 'apt-get install virt-manager'
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following additional packages will be installed:
  acl adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-common at-spi2-core cpu-checker dconf-gsettings-backend dconf-service dns-root-data dnsmasq-base
  gir1.2-atk-1.0 gir1.2-ayatanaappindicator3-0.1 gir1.2-freedesktop gir1.2-gdkpixbuf-2.0 gir1.2-gstreamer-1.0 gir1.2-gtk-3.0 gir1.2-gtk-vnc-2.0 gir1.2-gtksource-4
  gir1.2-harfbuzz-0.0 gir1.2-libosinfo-1.0 gir1.2-libvirt-glib-1.0 gir1.2-pango-1.0 gir1.2-spiceclientglib-2.0 gir1.2-spiceclientgtk-3.0 gir1.2-vte-2.91 glib-networking
  glib-networking-common glib-networking-services gsettings-desktop-schemas gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-x gtk-update-icon-cache
  humanity-icon-theme i965-va-driver intel-media-va-driver ipxe-qemu ipxe-qemu-256k-compat-efi-roms libaa1 libasound2-data libasound2t64 libasyncns0
  libatk-bridge2.0-0t64 libatk1.0-0t64 libatspi2.0-0t64 libavc1394-0 libayatana-appindicator3-1 libayatana-ido3-0.4-0 libayatana-indicator3-7 libboost-iostreams1.83.0
  libboost-thread1.83.0 libbrlapi0.8 libburn4t64 libcacard0 libcdparanoia0 libcolord2 libdaxctl1 libdbusmenu-glib4 libdbusmenu-gtk3-4 libdconf1 libdecor-0-0
  libdecor-0-plugin-1-gtk libdrm-amdgpu1 libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdv4t64 libepoxy0 libfdt1 libflac12t64 libgbm1 libgl1 libgl1-amber-dri
  libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgtk-3-0t64 libgtk-3-bin libgtk-3-common
  libgtk-vnc-2.0-0 libgtksourceview-4-0 libgtksourceview-4-common libgvnc-1.0-0 libharfbuzz-gobject0 libiec61883-0 libigdgmm12 libiscsi7 libisoburn1t64 libisofs6t64
  libjack-jackd2-0 libllvm17t64 libmp3lame0 libmpg123-0t64 libndctl6 libnfs14 libnss-mymachines libogg0 libopus0 liborc-0.4-0t64 libosinfo-1.0-0 libosinfo-l10n
  libpangoxft-1.0-0 libpciaccess0 libpcsclite1 libphodav-3.0-0 libphodav-3.0-common libpipewire-0.3-0t64 libpipewire-0.3-common libpmem1 libpmemobj1 libproxy1v5
  libpulse0 librados2 libraw1394-11 librbd1 librdmacm1t64 libsamplerate0 libsdl2-2.0-0 libshout3 libslirp0 libsndfile1 libsoup-3.0-0 libsoup-3.0-common
  libspa-0.2-modules libspeex1 libspice-client-glib-2.0-8 libspice-client-gtk-3.0-5 libspice-server1 libtag1v5 libtag1v5-vanilla libtheora0 libtpms0 libtwolame0
  liburing2 libusbredirhost1t64 libusbredirparser1t64 libv4l-0t64 libv4lconvert0t64 libva-x11-2 libva2 libvirglrenderer1 libvirt-clients libvirt-daemon
  libvirt-daemon-config-network libvirt-daemon-config-nwfilter libvirt-daemon-driver-qemu libvirt-daemon-system libvirt-daemon-system-systemd libvirt-glib-1.0-0
  libvirt-glib-1.0-data libvirt-l10n libvirt0 libvisual-0.4-0 libvorbis0a libvorbisenc2 libvpx9 libvte-2.91-0 libvte-2.91-common libvulkan1 libwavpack1
  libwayland-client0 libwayland-cursor0 libwayland-egl1 libwayland-server0 libwebrtc-audio-processing1 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0
  libxcb-randr0 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 libxfixes3 libxft2 libxi6 libxinerama1 libxml2-utils libxrandr2 libxshmfence1 libxss1
  libxtst6 libxv1 libxxf86vm1 libyajl2 mdevctl mesa-va-drivers mesa-vulkan-drivers msr-tools osinfo-db ovmf python3-cairo python3-gi-cairo python3-libvirt
  python3-libxml2 qemu-block-extra qemu-system-common qemu-system-data qemu-system-gui qemu-system-modules-opengl qemu-system-modules-spice qemu-system-x86 qemu-utils
  seabios session-migration spice-client-glib-usb-acl-helper swtpm swtpm-tools systemd-container ubuntu-mono va-driver-all virt-viewer virtinst xorriso
Suggested packages:
  gvfs i965-va-driver-shaders alsa-utils libasound2-plugins colord libdv-bin oss-compat libvisual-0.4-plugins jackd2 opus-tools pcscd pipewire pulseaudio libraw1394-doc
  xdg-utils speex gstreamer1.0-libav gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly libvirt-clients-qemu libvirt-login-shell libvirt-daemon-driver-storage-gluster
  libvirt-daemon-driver-storage-iscsi-direct libvirt-daemon-driver-storage-rbd libvirt-daemon-driver-storage-zfs libvirt-daemon-driver-lxc libvirt-daemon-driver-vbox
  libvirt-daemon-driver-xen numad passt auditd nfs-common pm-utils systemtap samba vde2 trousers gir1.2-secret-1 gnome-keyring python3-guestfs ssh-askpass xorriso-tcltk
  jigit cdck
The following NEW packages will be installed:
  acl adwaita-icon-theme alsa-topology-conf alsa-ucm-conf at-spi2-common at-spi2-core cpu-checker dconf-gsettings-backend dconf-service dns-root-data dnsmasq-base
  gir1.2-atk-1.0 gir1.2-ayatanaappindicator3-0.1 gir1.2-freedesktop gir1.2-gdkpixbuf-2.0 gir1.2-gstreamer-1.0 gir1.2-gtk-3.0 gir1.2-gtk-vnc-2.0 gir1.2-gtksource-4
  gir1.2-harfbuzz-0.0 gir1.2-libosinfo-1.0 gir1.2-libvirt-glib-1.0 gir1.2-pango-1.0 gir1.2-spiceclientglib-2.0 gir1.2-spiceclientgtk-3.0 gir1.2-vte-2.91 glib-networking
  glib-networking-common glib-networking-services gsettings-desktop-schemas gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-x gtk-update-icon-cache
  humanity-icon-theme i965-va-driver intel-media-va-driver ipxe-qemu ipxe-qemu-256k-compat-efi-roms libaa1 libasound2-data libasound2t64 libasyncns0
  libatk-bridge2.0-0t64 libatk1.0-0t64 libatspi2.0-0t64 libavc1394-0 libayatana-appindicator3-1 libayatana-ido3-0.4-0 libayatana-indicator3-7 libboost-iostreams1.83.0
  libboost-thread1.83.0 libbrlapi0.8 libburn4t64 libcacard0 libcdparanoia0 libcolord2 libdaxctl1 libdbusmenu-glib4 libdbusmenu-gtk3-4 libdconf1 libdecor-0-0
  libdecor-0-plugin-1-gtk libdrm-amdgpu1 libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdv4t64 libepoxy0 libfdt1 libflac12t64 libgbm1 libgl1 libgl1-amber-dri
  libgl1-mesa-dri libglapi-mesa libglvnd0 libglx-mesa0 libglx0 libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgtk-3-0t64 libgtk-3-bin libgtk-3-common
  libgtk-vnc-2.0-0 libgtksourceview-4-0 libgtksourceview-4-common libgvnc-1.0-0 libharfbuzz-gobject0 libiec61883-0 libigdgmm12 libiscsi7 libisoburn1t64 libisofs6t64
  libjack-jackd2-0 libllvm17t64 libmp3lame0 libmpg123-0t64 libndctl6 libnfs14 libnss-mymachines libogg0 libopus0 liborc-0.4-0t64 libosinfo-1.0-0 libosinfo-l10n
  libpangoxft-1.0-0 libpciaccess0 libpcsclite1 libphodav-3.0-0 libphodav-3.0-common libpipewire-0.3-0t64 libpipewire-0.3-common libpmem1 libpmemobj1 libproxy1v5
  libpulse0 librados2 libraw1394-11 librbd1 librdmacm1t64 libsamplerate0 libsdl2-2.0-0 libshout3 libslirp0 libsndfile1 libsoup-3.0-0 libsoup-3.0-common
  libspa-0.2-modules libspeex1 libspice-client-glib-2.0-8 libspice-client-gtk-3.0-5 libspice-server1 libtag1v5 libtag1v5-vanilla libtheora0 libtpms0 libtwolame0
  liburing2 libusbredirhost1t64 libusbredirparser1t64 libv4l-0t64 libv4lconvert0t64 libva-x11-2 libva2 libvirglrenderer1 libvirt-clients libvirt-daemon
  libvirt-daemon-config-network libvirt-daemon-config-nwfilter libvirt-daemon-driver-qemu libvirt-daemon-system libvirt-daemon-system-systemd libvirt-glib-1.0-0
  libvirt-glib-1.0-data libvirt-l10n libvirt0 libvisual-0.4-0 libvorbis0a libvorbisenc2 libvpx9 libvte-2.91-0 libvte-2.91-common libvulkan1 libwavpack1
  libwayland-client0 libwayland-cursor0 libwayland-egl1 libwayland-server0 libwebrtc-audio-processing1 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0
  libxcb-randr0 libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxcursor1 libxdamage1 libxfixes3 libxft2 libxi6 libxinerama1 libxml2-utils libxrandr2 libxshmfence1 libxss1
  libxtst6 libxv1 libxxf86vm1 libyajl2 mdevctl mesa-va-drivers mesa-vulkan-drivers msr-tools osinfo-db ovmf python3-cairo python3-gi-cairo python3-libvirt
  python3-libxml2 qemu-block-extra qemu-system-common qemu-system-data qemu-system-gui qemu-system-modules-opengl qemu-system-modules-spice qemu-system-x86 qemu-utils
  seabios session-migration spice-client-glib-usb-acl-helper swtpm swtpm-tools systemd-container ubuntu-mono va-driver-all virt-manager virt-viewer virtinst xorriso
0 upgraded, 222 newly installed, 0 to remove and 2 not upgraded.
Need to get 125 MB of archives.
After this operation, 561 MB of additional disk space will be used.
Do you want to continue? [Y/n]
Get:1 http://archive.ubuntu.com/ubuntu noble/main amd64 acl amd64 2.3.2-1build1 [39.4 kB]
Get:2 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 gtk-update-icon-cache amd64 3.24.41-4ubuntu1.1 [51.7 kB]
Get:3 http://archive.ubuntu.com/ubuntu noble/main amd64 humanity-icon-theme all 0.6.16 [1,282 kB]
Get:4 http://archive.ubuntu.com/ubuntu noble/main amd64 ubuntu-mono all 24.04-0ubuntu1 [151 kB]
Get:5 http://archive.ubuntu.com/ubuntu noble/main amd64 adwaita-icon-theme all 46.0-1 [723 kB]
Get:6 http://archive.ubuntu.com/ubuntu noble/main amd64 alsa-topology-conf all 1.2.5.1-2 [15.5 kB]
Get:7 http://archive.ubuntu.com/ubuntu noble/main amd64 libasound2-data all 1.2.11-1build2 [21.0 kB]
Get:8 http://archive.ubuntu.com/ubuntu noble/main amd64 libasound2t64 amd64 1.2.11-1build2 [399 kB]
Get:9 http://archive.ubuntu.com/ubuntu noble/main amd64 alsa-ucm-conf all 1.2.10-1ubuntu5 [63.1 kB]
Get:10 http://archive.ubuntu.com/ubuntu noble/main amd64 at-spi2-common all 2.52.0-1build1 [8,674 B]
Get:11 http://archive.ubuntu.com/ubuntu noble/main amd64 libxi6 amd64 2:1.8.1-1build1 [32.4 kB]
Get:12 http://archive.ubuntu.com/ubuntu noble/main amd64 libatspi2.0-0t64 amd64 2.52.0-1build1 [80.5 kB]
Get:13 http://archive.ubuntu.com/ubuntu noble/main amd64 libxtst6 amd64 2:1.2.3-1.1build1 [12.6 kB]
Get:14 http://archive.ubuntu.com/ubuntu noble/main amd64 libdconf1 amd64 0.40.0-4build2 [39.4 kB]
Get:15 http://archive.ubuntu.com/ubuntu noble/main amd64 dconf-service amd64 0.40.0-4build2 [27.5 kB]
Get:16 http://archive.ubuntu.com/ubuntu noble/main amd64 dconf-gsettings-backend amd64 0.40.0-4build2 [22.1 kB]
Get:17 http://archive.ubuntu.com/ubuntu noble/main amd64 session-migration amd64 0.3.9build1 [9,034 B]
Get:18 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 gsettings-desktop-schemas all 46.1-0ubuntu1 [35.6 kB]
Get:19 http://archive.ubuntu.com/ubuntu noble/main amd64 at-spi2-core amd64 2.52.0-1build1 [56.6 kB]
Get:20 http://archive.ubuntu.com/ubuntu noble/main amd64 msr-tools amd64 1.3-5build1 [9,610 B]
Get:21 http://archive.ubuntu.com/ubuntu noble/main amd64 cpu-checker amd64 0.7-1.3build2 [6,148 B]
Get:22 http://archive.ubuntu.com/ubuntu noble/main amd64 dns-root-data all 2023112702~willsync1 [4,450 B]
Get:23 http://archive.ubuntu.com/ubuntu noble/main amd64 dnsmasq-base amd64 2.90-2build2 [375 kB]
Get:24 http://archive.ubuntu.com/ubuntu noble/main amd64 libatk1.0-0t64 amd64 2.52.0-1build1 [55.3 kB]
Get:25 http://archive.ubuntu.com/ubuntu noble/main amd64 gir1.2-atk-1.0 amd64 2.52.0-1build1 [23.1 kB]
Get:26 http://archive.ubuntu.com/ubuntu noble/main amd64 gir1.2-freedesktop amd64 1.80.1-1 [49.7 kB]
Get:27 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 gir1.2-gdkpixbuf-2.0 amd64 2.42.10+dfsg-3ubuntu3.1 [9,486 B]
Get:28 http://archive.ubuntu.com/ubuntu noble/main amd64 libharfbuzz-gobject0 amd64 8.3.0-2build2 [34.3 kB]
Get:29 http://archive.ubuntu.com/ubuntu noble/main amd64 gir1.2-harfbuzz-0.0 amd64 8.3.0-2build2 [44.5 kB]
Get:30 http://archive.ubuntu.com/ubuntu noble/main amd64 libxft2 amd64 2.3.6-1build1 [45.3 kB]
Get:31 http://archive.ubuntu.com/ubuntu noble/main amd64 libpangoxft-1.0-0 amd64 1.52.1+ds-1build1 [20.3 kB]
Get:32 http://archive.ubuntu.com/ubuntu noble/main amd64 gir1.2-pango-1.0 amd64 1.52.1+ds-1build1 [34.8 kB]
Get:33 http://archive.ubuntu.com/ubuntu noble/main amd64 libatk-bridge2.0-0t64 amd64 2.52.0-1build1 [66.0 kB]
Get:34 http://archive.ubuntu.com/ubuntu noble/main amd64 libcolord2 amd64 1.4.7-1build2 [149 kB]
Get:35 http://archive.ubuntu.com/ubuntu noble/main amd64 libepoxy0 amd64 1.5.10-1build1 [220 kB]
Get:36 http://archive.ubuntu.com/ubuntu noble/main amd64 libwayland-client0 amd64 1.22.0-2.1build1 [26.4 kB]
Get:37 http://archive.ubuntu.com/ubuntu noble/main amd64 libwayland-cursor0 amd64 1.22.0-2.1build1 [10.4 kB]
Get:38 http://archive.ubuntu.com/ubuntu noble/main amd64 libwayland-egl1 amd64 1.22.0-2.1build1 [5,628 B]
Get:39 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcomposite1 amd64 1:0.4.5-1build3 [6,320 B]
Get:40 http://archive.ubuntu.com/ubuntu noble/main amd64 libxfixes3 amd64 1:6.0.0-2build1 [10.8 kB]
Get:41 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcursor1 amd64 1:1.2.1-1build1 [20.7 kB]
Get:42 http://archive.ubuntu.com/ubuntu noble/main amd64 libxdamage1 amd64 1:1.1.6-1build1 [6,150 B]
Get:43 http://archive.ubuntu.com/ubuntu noble/main amd64 libxinerama1 amd64 2:1.1.4-3build1 [6,396 B]
Get:44 http://archive.ubuntu.com/ubuntu noble/main amd64 libxrandr2 amd64 2:1.5.2-2build1 [19.7 kB]
Get:45 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgtk-3-common all 3.24.41-4ubuntu1.1 [1,202 kB]
Get:46 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgtk-3-0t64 amd64 3.24.41-4ubuntu1.1 [2,901 kB]
Get:47 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 gir1.2-gtk-3.0 amd64 3.24.41-4ubuntu1.1 [245 kB]
Get:48 http://archive.ubuntu.com/ubuntu noble/main amd64 libayatana-ido3-0.4-0 amd64 0.10.1-1build2 [56.6 kB]
Get:49 http://archive.ubuntu.com/ubuntu noble/main amd64 libayatana-indicator3-7 amd64 0.9.4-1build1 [31.7 kB]
Get:50 http://archive.ubuntu.com/ubuntu noble/main amd64 libdbusmenu-glib4 amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 [43.0 kB]
Get:51 http://archive.ubuntu.com/ubuntu noble/main amd64 libdbusmenu-gtk3-4 amd64 18.10.20180917~bzr492+repack1-3.1ubuntu5 [27.6 kB]
Get:52 http://archive.ubuntu.com/ubuntu noble/main amd64 libayatana-appindicator3-1 amd64 0.5.93-1build3 [24.7 kB]
Get:53 http://archive.ubuntu.com/ubuntu noble/main amd64 gir1.2-ayatanaappindicator3-0.1 amd64 0.5.93-1build3 [5,838 B]
Get:54 http://archive.ubuntu.com/ubuntu noble/main amd64 gir1.2-gstreamer-1.0 amd64 1.24.2-1 [88.4 kB]
Get:55 http://archive.ubuntu.com/ubuntu noble/main amd64 libasyncns0 amd64 0.8-6build4 [11.3 kB]
Get:56 http://archive.ubuntu.com/ubuntu noble/main amd64 libogg0 amd64 1.3.5-3build1 [22.7 kB]
Get:57 http://archive.ubuntu.com/ubuntu noble/main amd64 libflac12t64 amd64 1.4.3+ds-2.1ubuntu2 [197 kB]
Get:58 http://archive.ubuntu.com/ubuntu noble/main amd64 libmp3lame0 amd64 3.100-6build1 [142 kB]
Get:59 http://archive.ubuntu.com/ubuntu noble/main amd64 libmpg123-0t64 amd64 1.32.5-1ubuntu1 [169 kB]
Get:60 http://archive.ubuntu.com/ubuntu noble/main amd64 libopus0 amd64 1.4-1build1 [208 kB]
Get:61 http://archive.ubuntu.com/ubuntu noble/main amd64 libvorbis0a amd64 1.3.7-1build3 [97.6 kB]
Get:62 http://archive.ubuntu.com/ubuntu noble/main amd64 libvorbisenc2 amd64 1.3.7-1build3 [80.8 kB]
Get:63 http://archive.ubuntu.com/ubuntu noble/main amd64 libsndfile1 amd64 1.2.2-1ubuntu5 [208 kB]
Get:64 http://archive.ubuntu.com/ubuntu noble/main amd64 libpulse0 amd64 1:16.1+dfsg1-2ubuntu10 [292 kB]
Get:65 http://archive.ubuntu.com/ubuntu noble/universe amd64 libgvnc-1.0-0 amd64 1.3.1-1build2 [67.1 kB]
Get:66 http://archive.ubuntu.com/ubuntu noble/universe amd64 libgtk-vnc-2.0-0 amd64 1.3.1-1build2 [28.9 kB]
Get:67 http://archive.ubuntu.com/ubuntu noble/universe amd64 gir1.2-gtk-vnc-2.0 amd64 1.3.1-1build2 [12.1 kB]
Get:68 http://archive.ubuntu.com/ubuntu noble/universe amd64 libgtksourceview-4-common all 4.8.4-5build4 [590 kB]
Get:69 http://archive.ubuntu.com/ubuntu noble/universe amd64 libgtksourceview-4-0 amd64 4.8.4-5build4 [233 kB]
Get:70 http://archive.ubuntu.com/ubuntu noble/universe amd64 gir1.2-gtksource-4 amd64 4.8.4-5build4 [20.3 kB]
Get:71 http://archive.ubuntu.com/ubuntu noble/universe amd64 spice-client-glib-usb-acl-helper amd64 0.42-2ubuntu2 [12.5 kB]
Get:72 http://archive.ubuntu.com/ubuntu noble/main amd64 libpcsclite1 amd64 2.0.3-1build1 [21.4 kB]
Get:73 http://archive.ubuntu.com/ubuntu noble/main amd64 libcacard0 amd64 1:2.8.0-3build4 [36.5 kB]
Get:74 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 liborc-0.4-0t64 amd64 1:0.4.38-1ubuntu0.1 [207 kB]
Get:75 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgstreamer-plugins-base1.0-0 amd64 1.24.2-1ubuntu0.1 [862 kB]
Get:76 http://archive.ubuntu.com/ubuntu noble/universe amd64 libphodav-3.0-common all 3.0-8build3 [14.9 kB]
Get:77 http://archive.ubuntu.com/ubuntu noble/main amd64 libproxy1v5 amd64 0.5.4-4build1 [26.5 kB]
Get:78 http://archive.ubuntu.com/ubuntu noble/main amd64 glib-networking-common all 2.80.0-1build1 [6,702 B]
Get:79 http://archive.ubuntu.com/ubuntu noble/main amd64 glib-networking-services amd64 2.80.0-1build1 [12.8 kB]
Get:80 http://archive.ubuntu.com/ubuntu noble/main amd64 glib-networking amd64 2.80.0-1build1 [64.1 kB]
Get:81 http://archive.ubuntu.com/ubuntu noble/main amd64 libsoup-3.0-common all 3.4.4-5build2 [10.0 kB]
Get:82 http://archive.ubuntu.com/ubuntu noble/main amd64 libsoup-3.0-0 amd64 3.4.4-5build2 [289 kB]
Get:83 http://archive.ubuntu.com/ubuntu noble/universe amd64 libphodav-3.0-0 amd64 3.0-8build3 [29.9 kB]
Get:84 http://archive.ubuntu.com/ubuntu noble/main amd64 libusbredirparser1t64 amd64 0.13.0-2.1build1 [16.5 kB]
Get:85 http://archive.ubuntu.com/ubuntu noble/main amd64 libusbredirhost1t64 amd64 0.13.0-2.1build1 [20.0 kB]
Get:86 http://archive.ubuntu.com/ubuntu noble/universe amd64 libspice-client-glib-2.0-8 amd64 0.42-2ubuntu2 [314 kB]
Get:87 http://archive.ubuntu.com/ubuntu noble/universe amd64 gir1.2-spiceclientglib-2.0 amd64 0.42-2ubuntu2 [14.4 kB]
Get:88 http://archive.ubuntu.com/ubuntu noble/universe amd64 libva2 amd64 2.20.0-2build1 [66.2 kB]
Get:89 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-dri3-0 amd64 1.15-1ubuntu2 [7,142 B]
Get:90 http://archive.ubuntu.com/ubuntu noble/universe amd64 libva-x11-2 amd64 2.20.0-2build1 [12.0 kB]
Get:91 http://archive.ubuntu.com/ubuntu noble/main amd64 libwayland-server0 amd64 1.22.0-2.1build1 [33.9 kB]
Get:92 http://archive.ubuntu.com/ubuntu noble/universe amd64 libspice-client-gtk-3.0-5 amd64 0.42-2ubuntu2 [56.6 kB]
Get:93 http://archive.ubuntu.com/ubuntu noble/universe amd64 gir1.2-spiceclientgtk-3.0 amd64 0.42-2ubuntu2 [5,610 B]
Get:94 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libvte-2.91-common amd64 0.76.0-1ubuntu0.1 [13.5 kB]
Get:95 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libvte-2.91-0 amd64 0.76.0-1ubuntu0.1 [230 kB]
Get:96 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 gir1.2-vte-2.91 amd64 0.76.0-1ubuntu0.1 [11.5 kB]
Get:97 http://archive.ubuntu.com/ubuntu noble/main amd64 libcdparanoia0 amd64 3.10.2+debian-14build3 [48.5 kB]
Get:98 http://archive.ubuntu.com/ubuntu noble/main amd64 libtheora0 amd64 1.1.1+dfsg.1-16.1build3 [211 kB]
Get:99 http://archive.ubuntu.com/ubuntu noble/main amd64 libvisual-0.4-0 amd64 0.4.2-2build1 [115 kB]
Get:100 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 gstreamer1.0-plugins-base amd64 1.24.2-1ubuntu0.1 [721 kB]
Get:101 http://archive.ubuntu.com/ubuntu noble/main amd64 libaa1 amd64 1.4p5-51.1 [49.9 kB]
Get:102 http://archive.ubuntu.com/ubuntu noble/main amd64 libraw1394-11 amd64 2.1.2-2build3 [26.2 kB]
Get:103 http://archive.ubuntu.com/ubuntu noble/main amd64 libavc1394-0 amd64 0.5.4-5build3 [15.4 kB]
Get:104 http://archive.ubuntu.com/ubuntu noble/main amd64 libdv4t64 amd64 1.0.0-17.1build1 [63.2 kB]
Get:105 http://archive.ubuntu.com/ubuntu noble/main amd64 libgstreamer-plugins-good1.0-0 amd64 1.24.2-1ubuntu1 [32.7 kB]
Get:106 http://archive.ubuntu.com/ubuntu noble/main amd64 libiec61883-0 amd64 1.2.0-6build1 [24.5 kB]
Get:107 http://archive.ubuntu.com/ubuntu noble/main amd64 libspeex1 amd64 1.2.1-2ubuntu2 [59.5 kB]
Get:108 http://archive.ubuntu.com/ubuntu noble/main amd64 libshout3 amd64 2.4.6-1build2 [50.3 kB]
Get:109 http://archive.ubuntu.com/ubuntu noble/main amd64 libtag1v5-vanilla amd64 1.13.1-1build1 [326 kB]
Get:110 http://archive.ubuntu.com/ubuntu noble/main amd64 libtag1v5 amd64 1.13.1-1build1 [11.7 kB]
Get:111 http://archive.ubuntu.com/ubuntu noble/main amd64 libtwolame0 amd64 0.4.0-2build3 [52.3 kB]
Get:112 http://archive.ubuntu.com/ubuntu noble/main amd64 libv4lconvert0t64 amd64 1.26.1-4build3 [87.6 kB]
Get:113 http://archive.ubuntu.com/ubuntu noble/main amd64 libv4l-0t64 amd64 1.26.1-4build3 [46.9 kB]
Get:114 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libvpx9 amd64 1.14.0-1ubuntu2.1 [1,143 kB]
Get:115 http://archive.ubuntu.com/ubuntu noble/main amd64 libwavpack1 amd64 5.6.0-1build1 [84.6 kB]
Get:116 http://archive.ubuntu.com/ubuntu noble/main amd64 gstreamer1.0-plugins-good amd64 1.24.2-1ubuntu1 [2,237 kB]
Get:117 http://archive.ubuntu.com/ubuntu noble/main amd64 libxv1 amd64 2:1.0.11-1.1build1 [10.7 kB]
Get:118 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 gstreamer1.0-x amd64 1.24.2-1ubuntu0.1 [85.0 kB]
Get:119 http://archive.ubuntu.com/ubuntu noble/universe amd64 libigdgmm12 amd64 22.3.17+ds1-1 [145 kB]
Get:120 http://archive.ubuntu.com/ubuntu noble/universe amd64 intel-media-va-driver amd64 24.1.0+dfsg1-1 [4,022 kB]
Get:121 http://archive.ubuntu.com/ubuntu noble/main amd64 ipxe-qemu all 1.21.1+git-20220113.fbbdc3926-0ubuntu2 [1,565 kB]
Get:122 http://archive.ubuntu.com/ubuntu noble/main amd64 ipxe-qemu-256k-compat-efi-roms all 1.0.0+git-20150424.a25a16d-0ubuntu5 [548 kB]
Get:123 http://archive.ubuntu.com/ubuntu noble/main amd64 libboost-iostreams1.83.0 amd64 1.83.0-2.1ubuntu3 [259 kB]
Get:124 http://archive.ubuntu.com/ubuntu noble/main amd64 libboost-thread1.83.0 amd64 1.83.0-2.1ubuntu3 [276 kB]
Get:125 http://archive.ubuntu.com/ubuntu noble/main amd64 libbrlapi0.8 amd64 6.6-4ubuntu5 [31.4 kB]
Get:126 http://archive.ubuntu.com/ubuntu noble/main amd64 libburn4t64 amd64 1.5.6-1.1build1 [158 kB]
Get:127 http://archive.ubuntu.com/ubuntu noble/main amd64 libdaxctl1 amd64 77-2ubuntu2 [21.4 kB]
Get:128 http://archive.ubuntu.com/ubuntu noble/main amd64 libdecor-0-0 amd64 0.2.2-1build2 [16.5 kB]
Get:129 http://archive.ubuntu.com/ubuntu noble/main amd64 libdecor-0-plugin-1-gtk amd64 0.2.2-1build2 [22.2 kB]
Get:130 http://archive.ubuntu.com/ubuntu noble/main amd64 libdrm-amdgpu1 amd64 2.4.120-2build1 [20.2 kB]
Get:131 http://archive.ubuntu.com/ubuntu noble/main amd64 libpciaccess0 amd64 0.17-3build1 [18.6 kB]
Get:132 http://archive.ubuntu.com/ubuntu noble/main amd64 libdrm-intel1 amd64 2.4.120-2build1 [63.8 kB]
Get:133 http://archive.ubuntu.com/ubuntu noble/main amd64 libdrm-nouveau2 amd64 2.4.120-2build1 [17.7 kB]
Get:134 http://archive.ubuntu.com/ubuntu noble/main amd64 libdrm-radeon1 amd64 2.4.120-2build1 [20.8 kB]
Get:135 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-randr0 amd64 1.15-1ubuntu2 [17.9 kB]
Get:136 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgbm1 amd64 24.0.9-0ubuntu0.1 [42.7 kB]
Get:137 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libglapi-mesa amd64 24.0.9-0ubuntu0.1 [41.2 kB]
Get:138 http://archive.ubuntu.com/ubuntu noble/main amd64 libgl1-amber-dri amd64 21.3.9-0ubuntu2 [4,212 kB]
Get:139 http://archive.ubuntu.com/ubuntu noble/main amd64 libvulkan1 amd64 1.3.275.0-1build1 [142 kB]
Get:140 http://archive.ubuntu.com/ubuntu noble/main amd64 libllvm17t64 amd64 1:17.0.6-9ubuntu1 [26.2 MB]
Get:141 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgl1-mesa-dri amd64 24.0.9-0ubuntu0.1 [8,950 kB]
Get:142 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-dri2-0 amd64 1.15-1ubuntu2 [7,222 B]
Get:143 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-glx0 amd64 1.15-1ubuntu2 [24.8 kB]
Get:144 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-present0 amd64 1.15-1ubuntu2 [5,676 B]
Get:145 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-sync1 amd64 1.15-1ubuntu2 [9,312 B]
Get:146 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-xfixes0 amd64 1.15-1ubuntu2 [10.2 kB]
Get:147 http://archive.ubuntu.com/ubuntu noble/main amd64 libxshmfence1 amd64 1.3-1build5 [4,764 B]
Get:148 http://archive.ubuntu.com/ubuntu noble/main amd64 libxxf86vm1 amd64 1:1.1.4-1build4 [9,282 B]
Get:149 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libglx-mesa0 amd64 24.0.9-0ubuntu0.1 [154 kB]
Get:150 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgtk-3-bin amd64 3.24.41-4ubuntu1.1 [74.0 kB]
Get:151 http://archive.ubuntu.com/ubuntu noble/main amd64 librdmacm1t64 amd64 50.0-2build2 [70.7 kB]
Get:152 http://archive.ubuntu.com/ubuntu noble/main amd64 libiscsi7 amd64 1.19.0-3build4 [68.7 kB]
Get:153 http://archive.ubuntu.com/ubuntu noble/main amd64 libisofs6t64 amd64 1.5.6.pl01-1.1ubuntu2 [220 kB]
Get:154 http://archive.ubuntu.com/ubuntu noble/main amd64 libisoburn1t64 amd64 1:1.5.6-1.1ubuntu3 [405 kB]
Get:155 http://archive.ubuntu.com/ubuntu noble/main amd64 libsamplerate0 amd64 0.2.2-4build1 [1,344 kB]
Get:156 http://archive.ubuntu.com/ubuntu noble/main amd64 libjack-jackd2-0 amd64 1.9.21~dfsg-3ubuntu3 [289 kB]
Get:157 http://archive.ubuntu.com/ubuntu noble/main amd64 libndctl6 amd64 77-2ubuntu2 [62.8 kB]
Get:158 http://archive.ubuntu.com/ubuntu noble/main amd64 libnfs14 amd64 5.0.2-1build1 [109 kB]
Get:159 http://archive.ubuntu.com/ubuntu noble/main amd64 libwebrtc-audio-processing1 amd64 0.3.1-0ubuntu6 [290 kB]
Get:160 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libspa-0.2-modules amd64 1.0.5-1ubuntu1 [627 kB]
Get:161 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libpipewire-0.3-0t64 amd64 1.0.5-1ubuntu1 [252 kB]
Get:162 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libpipewire-0.3-common all 1.0.5-1ubuntu1 [18.6 kB]
Get:163 http://archive.ubuntu.com/ubuntu noble/main amd64 libpmem1 amd64 1.13.1-1.1ubuntu2 [84.8 kB]
Get:164 http://archive.ubuntu.com/ubuntu noble/main amd64 libpmemobj1 amd64 1.13.1-1.1ubuntu2 [116 kB]
Get:165 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 librados2 amd64 19.2.0~git20240301.4c76c50-0ubuntu6.1 [3,917 kB]
Get:166 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 librbd1 amd64 19.2.0~git20240301.4c76c50-0ubuntu6.1 [3,327 kB]
Get:167 http://archive.ubuntu.com/ubuntu noble/main amd64 libxss1 amd64 1:1.2.3-1build3 [7,204 B]
Get:168 http://archive.ubuntu.com/ubuntu noble/main amd64 libsdl2-2.0-0 amd64 2.30.0+dfsg-1build3 [685 kB]
Get:169 http://archive.ubuntu.com/ubuntu noble/main amd64 libslirp0 amd64 4.7.0-1ubuntu3 [63.8 kB]
Get:170 http://archive.ubuntu.com/ubuntu noble/main amd64 libspice-server1 amd64 0.15.1-1build2 [349 kB]
Get:171 http://archive.ubuntu.com/ubuntu noble/main amd64 libtpms0 amd64 0.9.3-0ubuntu4 [373 kB]
Get:172 http://archive.ubuntu.com/ubuntu noble/main amd64 liburing2 amd64 2.5-1build1 [21.1 kB]
Get:173 http://archive.ubuntu.com/ubuntu noble/main amd64 libvirglrenderer1 amd64 1.0.0-1ubuntu2 [226 kB]
Get:174 http://archive.ubuntu.com/ubuntu noble/main amd64 libyajl2 amd64 2.1.0-5build1 [20.2 kB]
Get:175 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libvirt0 amd64 10.0.0-2ubuntu8.3 [1,824 kB]
Get:176 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libvirt-clients amd64 10.0.0-2ubuntu8.3 [438 kB]
Get:177 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libvirt-daemon-driver-qemu amd64 10.0.0-2ubuntu8.3 [740 kB]
Get:178 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libvirt-daemon amd64 10.0.0-2ubuntu8.3 [431 kB]
Get:179 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libvirt-daemon-config-network all 10.0.0-2ubuntu8.3 [3,120 B]
Get:180 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libvirt-daemon-config-nwfilter all 10.0.0-2ubuntu8.3 [6,044 B]
Get:181 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 systemd-container amd64 255.4-1ubuntu8.4 [417 kB]
Get:182 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libvirt-daemon-system-systemd all 10.0.0-2ubuntu8.3 [1,378 B]
Get:183 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libvirt-daemon-system amd64 10.0.0-2ubuntu8.3 [49.6 kB]
Get:184 http://archive.ubuntu.com/ubuntu noble/universe amd64 libvirt-glib-1.0-data all 5.0.0-2build3 [17.3 kB]
Get:185 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libvirt-l10n all 10.0.0-2ubuntu8.3 [1,150 B]
Get:186 http://archive.ubuntu.com/ubuntu noble/main amd64 libxml2-utils amd64 2.9.14+dfsg-1.3ubuntu3 [39.4 kB]
Get:187 http://archive.ubuntu.com/ubuntu noble/main amd64 mdevctl amd64 1.3.0-1ubuntu2 [936 kB]
Get:188 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 mesa-va-drivers amd64 24.0.9-0ubuntu0.1 [4,247 kB]
Get:189 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 mesa-vulkan-drivers amd64 24.0.9-0ubuntu0.1 [11.0 MB]
Get:190 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 osinfo-db all 0.20240523-0ubuntu0.24.04.1 [167 kB]
Get:191 http://archive.ubuntu.com/ubuntu noble/main amd64 python3-cairo amd64 1.25.1-2build2 [119 kB]
Get:192 http://archive.ubuntu.com/ubuntu noble/main amd64 python3-gi-cairo amd64 3.48.2-1 [8,132 B]
Get:193 http://archive.ubuntu.com/ubuntu noble/main amd64 python3-libvirt amd64 10.0.0-1build1 [164 kB]
Get:194 http://archive.ubuntu.com/ubuntu noble/universe amd64 python3-libxml2 amd64 2.9.14+dfsg-1.3ubuntu3 [139 kB]
Get:195 http://archive.ubuntu.com/ubuntu noble/main amd64 libfdt1 amd64 1.7.0-2build1 [20.1 kB]
Get:196 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 qemu-system-common amd64 1:8.2.2+ds-0ubuntu1.2 [1,252 kB]
Get:197 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 qemu-system-data all 1:8.2.2+ds-0ubuntu1.2 [1,789 kB]
Get:198 http://archive.ubuntu.com/ubuntu noble/main amd64 seabios all 1.16.3-2 [175 kB]
Get:199 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 qemu-system-x86 amd64 1:8.2.2+ds-0ubuntu1.2 [11.2 MB]
Get:200 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 qemu-utils amd64 1:8.2.2+ds-0ubuntu1.2 [2,218 kB]
Get:201 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 qemu-block-extra amd64 1:8.2.2+ds-0ubuntu1.2 [110 kB]
Get:202 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 qemu-system-modules-opengl amd64 1:8.2.2+ds-0ubuntu1.2 [183 kB]
Get:203 http://archive.ubuntu.com/ubuntu noble/main amd64 libglvnd0 amd64 1.7.0-1build1 [69.6 kB]
Get:204 http://archive.ubuntu.com/ubuntu noble/main amd64 libglx0 amd64 1.7.0-1build1 [38.6 kB]
Get:205 http://archive.ubuntu.com/ubuntu noble/main amd64 libgl1 amd64 1.7.0-1build1 [102 kB]
Get:206 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 qemu-system-gui amd64 1:8.2.2+ds-0ubuntu1.2 [314 kB]
Get:207 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 qemu-system-modules-spice amd64 1:8.2.2+ds-0ubuntu1.2 [70.2 kB]
Get:208 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 swtpm amd64 0.7.3-0ubuntu5.24.04.1 [53.1 kB]
Get:209 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 swtpm-tools amd64 0.7.3-0ubuntu5.24.04.1 [92.9 kB]
Get:210 http://archive.ubuntu.com/ubuntu noble/universe amd64 i965-va-driver amd64 2.4.1+dfsg1-1build2 [332 kB]
Get:211 http://archive.ubuntu.com/ubuntu noble/universe amd64 va-driver-all amd64 2.20.0-2build1 [4,844 B]
Get:212 http://archive.ubuntu.com/ubuntu noble/universe amd64 libosinfo-l10n all 1.11.0-2build3 [50.6 kB]
Get:213 http://archive.ubuntu.com/ubuntu noble/universe amd64 libosinfo-1.0-0 amd64 1.11.0-2build3 [91.5 kB]
Get:214 http://archive.ubuntu.com/ubuntu noble/universe amd64 gir1.2-libosinfo-1.0 amd64 1.11.0-2build3 [18.6 kB]
Get:215 http://archive.ubuntu.com/ubuntu noble/universe amd64 libvirt-glib-1.0-0 amd64 5.0.0-2build3 [121 kB]
Get:216 http://archive.ubuntu.com/ubuntu noble/universe amd64 gir1.2-libvirt-glib-1.0 amd64 5.0.0-2build3 [32.6 kB]
Get:217 http://archive.ubuntu.com/ubuntu noble/main amd64 xorriso amd64 1:1.5.6-1.1ubuntu3 [297 kB]
Get:218 http://archive.ubuntu.com/ubuntu noble/universe amd64 virtinst all 1:4.1.0-3 [890 kB]
Get:219 http://archive.ubuntu.com/ubuntu noble/universe amd64 virt-manager all 1:4.1.0-3 [263 kB]
Get:220 http://archive.ubuntu.com/ubuntu noble/universe amd64 virt-viewer amd64 11.0-3build2 [285 kB]
Get:221 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libnss-mymachines amd64 255.4-1ubuntu8.4 [153 kB]
Get:222 http://archive.ubuntu.com/ubuntu noble/main amd64 ovmf all 2024.02-2 [4,571 kB]
Fetched 125 MB in 24s (5,184 kB/s)
Extracting templates from packages: 100%
Preconfiguring packages ...
Selecting previously unselected package acl.
(Reading database ... 112057 files and directories currently installed.)
Preparing to unpack .../000-acl_2.3.2-1build1_amd64.deb ...
Unpacking acl (2.3.2-1build1) ...
Selecting previously unselected package gtk-update-icon-cache.
Preparing to unpack .../001-gtk-update-icon-cache_3.24.41-4ubuntu1.1_amd64.deb ...
Unpacking gtk-update-icon-cache (3.24.41-4ubuntu1.1) ...
Selecting previously unselected package humanity-icon-theme.
Preparing to unpack .../002-humanity-icon-theme_0.6.16_all.deb ...
Unpacking humanity-icon-theme (0.6.16) ...
Selecting previously unselected package ubuntu-mono.
Preparing to unpack .../003-ubuntu-mono_24.04-0ubuntu1_all.deb ...
Unpacking ubuntu-mono (24.04-0ubuntu1) ...
Selecting previously unselected package adwaita-icon-theme.
Preparing to unpack .../004-adwaita-icon-theme_46.0-1_all.deb ...
Unpacking adwaita-icon-theme (46.0-1) ...
Selecting previously unselected package alsa-topology-conf.
Preparing to unpack .../005-alsa-topology-conf_1.2.5.1-2_all.deb ...
Unpacking alsa-topology-conf (1.2.5.1-2) ...
Selecting previously unselected package libasound2-data.
Preparing to unpack .../006-libasound2-data_1.2.11-1build2_all.deb ...
Unpacking libasound2-data (1.2.11-1build2) ...
Selecting previously unselected package libasound2t64:amd64.
Preparing to unpack .../007-libasound2t64_1.2.11-1build2_amd64.deb ...
Unpacking libasound2t64:amd64 (1.2.11-1build2) ...
Selecting previously unselected package alsa-ucm-conf.
Preparing to unpack .../008-alsa-ucm-conf_1.2.10-1ubuntu5_all.deb ...
Unpacking alsa-ucm-conf (1.2.10-1ubuntu5) ...
Selecting previously unselected package at-spi2-common.
Preparing to unpack .../009-at-spi2-common_2.52.0-1build1_all.deb ...
Unpacking at-spi2-common (2.52.0-1build1) ...
Selecting previously unselected package libxi6:amd64.
Preparing to unpack .../010-libxi6_2%3a1.8.1-1build1_amd64.deb ...
Unpacking libxi6:amd64 (2:1.8.1-1build1) ...
Selecting previously unselected package libatspi2.0-0t64:amd64.
Preparing to unpack .../011-libatspi2.0-0t64_2.52.0-1build1_amd64.deb ...
Unpacking libatspi2.0-0t64:amd64 (2.52.0-1build1) ...
Selecting previously unselected package libxtst6:amd64.
Preparing to unpack .../012-libxtst6_2%3a1.2.3-1.1build1_amd64.deb ...
Unpacking libxtst6:amd64 (2:1.2.3-1.1build1) ...
Selecting previously unselected package libdconf1:amd64.
Preparing to unpack .../013-libdconf1_0.40.0-4build2_amd64.deb ...
Unpacking libdconf1:amd64 (0.40.0-4build2) ...
Selecting previously unselected package dconf-service.
Preparing to unpack .../014-dconf-service_0.40.0-4build2_amd64.deb ...
Unpacking dconf-service (0.40.0-4build2) ...
Selecting previously unselected package dconf-gsettings-backend:amd64.
Preparing to unpack .../015-dconf-gsettings-backend_0.40.0-4build2_amd64.deb ...
Unpacking dconf-gsettings-backend:amd64 (0.40.0-4build2) ...
Selecting previously unselected package session-migration.
Preparing to unpack .../016-session-migration_0.3.9build1_amd64.deb ...
Unpacking session-migration (0.3.9build1) ...
Selecting previously unselected package gsettings-desktop-schemas.
Preparing to unpack .../017-gsettings-desktop-schemas_46.1-0ubuntu1_all.deb ...
Unpacking gsettings-desktop-schemas (46.1-0ubuntu1) ...
Selecting previously unselected package at-spi2-core.
Preparing to unpack .../018-at-spi2-core_2.52.0-1build1_amd64.deb ...
Unpacking at-spi2-core (2.52.0-1build1) ...
Selecting previously unselected package msr-tools.
Preparing to unpack .../019-msr-tools_1.3-5build1_amd64.deb ...
Unpacking msr-tools (1.3-5build1) ...
Selecting previously unselected package cpu-checker.
Preparing to unpack .../020-cpu-checker_0.7-1.3build2_amd64.deb ...
Unpacking cpu-checker (0.7-1.3build2) ...
Selecting previously unselected package dns-root-data.
Preparing to unpack .../021-dns-root-data_2023112702~willsync1_all.deb ...
Unpacking dns-root-data (2023112702~willsync1) ...
Selecting previously unselected package dnsmasq-base.
Preparing to unpack .../022-dnsmasq-base_2.90-2build2_amd64.deb ...
Unpacking dnsmasq-base (2.90-2build2) ...
Selecting previously unselected package libatk1.0-0t64:amd64.
Preparing to unpack .../023-libatk1.0-0t64_2.52.0-1build1_amd64.deb ...
Unpacking libatk1.0-0t64:amd64 (2.52.0-1build1) ...
Selecting previously unselected package gir1.2-atk-1.0:amd64.
Preparing to unpack .../024-gir1.2-atk-1.0_2.52.0-1build1_amd64.deb ...
Unpacking gir1.2-atk-1.0:amd64 (2.52.0-1build1) ...
Selecting previously unselected package gir1.2-freedesktop:amd64.
Preparing to unpack .../025-gir1.2-freedesktop_1.80.1-1_amd64.deb ...
Unpacking gir1.2-freedesktop:amd64 (1.80.1-1) ...
Selecting previously unselected package gir1.2-gdkpixbuf-2.0:amd64.
Preparing to unpack .../026-gir1.2-gdkpixbuf-2.0_2.42.10+dfsg-3ubuntu3.1_amd64.deb ...
Unpacking gir1.2-gdkpixbuf-2.0:amd64 (2.42.10+dfsg-3ubuntu3.1) ...
Selecting previously unselected package libharfbuzz-gobject0:amd64.
Preparing to unpack .../027-libharfbuzz-gobject0_8.3.0-2build2_amd64.deb ...
Unpacking libharfbuzz-gobject0:amd64 (8.3.0-2build2) ...
Selecting previously unselected package gir1.2-harfbuzz-0.0:amd64.
Preparing to unpack .../028-gir1.2-harfbuzz-0.0_8.3.0-2build2_amd64.deb ...
Unpacking gir1.2-harfbuzz-0.0:amd64 (8.3.0-2build2) ...
Selecting previously unselected package libxft2:amd64.
Preparing to unpack .../029-libxft2_2.3.6-1build1_amd64.deb ...
Unpacking libxft2:amd64 (2.3.6-1build1) ...
Selecting previously unselected package libpangoxft-1.0-0:amd64.
Preparing to unpack .../030-libpangoxft-1.0-0_1.52.1+ds-1build1_amd64.deb ...
Unpacking libpangoxft-1.0-0:amd64 (1.52.1+ds-1build1) ...
Selecting previously unselected package gir1.2-pango-1.0:amd64.
Preparing to unpack .../031-gir1.2-pango-1.0_1.52.1+ds-1build1_amd64.deb ...
Unpacking gir1.2-pango-1.0:amd64 (1.52.1+ds-1build1) ...
Selecting previously unselected package libatk-bridge2.0-0t64:amd64.
Preparing to unpack .../032-libatk-bridge2.0-0t64_2.52.0-1build1_amd64.deb ...
Unpacking libatk-bridge2.0-0t64:amd64 (2.52.0-1build1) ...
Selecting previously unselected package libcolord2:amd64.
Preparing to unpack .../033-libcolord2_1.4.7-1build2_amd64.deb ...
Unpacking libcolord2:amd64 (1.4.7-1build2) ...
Selecting previously unselected package libepoxy0:amd64.
Preparing to unpack .../034-libepoxy0_1.5.10-1build1_amd64.deb ...
Unpacking libepoxy0:amd64 (1.5.10-1build1) ...
Selecting previously unselected package libwayland-client0:amd64.
Preparing to unpack .../035-libwayland-client0_1.22.0-2.1build1_amd64.deb ...
Unpacking libwayland-client0:amd64 (1.22.0-2.1build1) ...
Selecting previously unselected package libwayland-cursor0:amd64.
Preparing to unpack .../036-libwayland-cursor0_1.22.0-2.1build1_amd64.deb ...
Unpacking libwayland-cursor0:amd64 (1.22.0-2.1build1) ...
Selecting previously unselected package libwayland-egl1:amd64.
Preparing to unpack .../037-libwayland-egl1_1.22.0-2.1build1_amd64.deb ...
Unpacking libwayland-egl1:amd64 (1.22.0-2.1build1) ...
Selecting previously unselected package libxcomposite1:amd64.
Preparing to unpack .../038-libxcomposite1_1%3a0.4.5-1build3_amd64.deb ...
Unpacking libxcomposite1:amd64 (1:0.4.5-1build3) ...
Selecting previously unselected package libxfixes3:amd64.
Preparing to unpack .../039-libxfixes3_1%3a6.0.0-2build1_amd64.deb ...
Unpacking libxfixes3:amd64 (1:6.0.0-2build1) ...
Selecting previously unselected package libxcursor1:amd64.
Preparing to unpack .../040-libxcursor1_1%3a1.2.1-1build1_amd64.deb ...
Unpacking libxcursor1:amd64 (1:1.2.1-1build1) ...
Selecting previously unselected package libxdamage1:amd64.
Preparing to unpack .../041-libxdamage1_1%3a1.1.6-1build1_amd64.deb ...
Unpacking libxdamage1:amd64 (1:1.1.6-1build1) ...
Selecting previously unselected package libxinerama1:amd64.
Preparing to unpack .../042-libxinerama1_2%3a1.1.4-3build1_amd64.deb ...
Unpacking libxinerama1:amd64 (2:1.1.4-3build1) ...
Selecting previously unselected package libxrandr2:amd64.
Preparing to unpack .../043-libxrandr2_2%3a1.5.2-2build1_amd64.deb ...
Unpacking libxrandr2:amd64 (2:1.5.2-2build1) ...
Selecting previously unselected package libgtk-3-common.
Preparing to unpack .../044-libgtk-3-common_3.24.41-4ubuntu1.1_all.deb ...
Unpacking libgtk-3-common (3.24.41-4ubuntu1.1) ...
Selecting previously unselected package libgtk-3-0t64:amd64.
Preparing to unpack .../045-libgtk-3-0t64_3.24.41-4ubuntu1.1_amd64.deb ...
Unpacking libgtk-3-0t64:amd64 (3.24.41-4ubuntu1.1) ...
Selecting previously unselected package gir1.2-gtk-3.0:amd64.
Preparing to unpack .../046-gir1.2-gtk-3.0_3.24.41-4ubuntu1.1_amd64.deb ...
Unpacking gir1.2-gtk-3.0:amd64 (3.24.41-4ubuntu1.1) ...
Selecting previously unselected package libayatana-ido3-0.4-0:amd64.
Preparing to unpack .../047-libayatana-ido3-0.4-0_0.10.1-1build2_amd64.deb ...
Unpacking libayatana-ido3-0.4-0:amd64 (0.10.1-1build2) ...
Selecting previously unselected package libayatana-indicator3-7:amd64.
Preparing to unpack .../048-libayatana-indicator3-7_0.9.4-1build1_amd64.deb ...
Unpacking libayatana-indicator3-7:amd64 (0.9.4-1build1) ...
Selecting previously unselected package libdbusmenu-glib4:amd64.
Preparing to unpack .../049-libdbusmenu-glib4_18.10.20180917~bzr492+repack1-3.1ubuntu5_amd64.deb ...
Unpacking libdbusmenu-glib4:amd64 (18.10.20180917~bzr492+repack1-3.1ubuntu5) ...
Selecting previously unselected package libdbusmenu-gtk3-4:amd64.
Preparing to unpack .../050-libdbusmenu-gtk3-4_18.10.20180917~bzr492+repack1-3.1ubuntu5_amd64.deb ...
Unpacking libdbusmenu-gtk3-4:amd64 (18.10.20180917~bzr492+repack1-3.1ubuntu5) ...
Selecting previously unselected package libayatana-appindicator3-1.
Preparing to unpack .../051-libayatana-appindicator3-1_0.5.93-1build3_amd64.deb ...
Unpacking libayatana-appindicator3-1 (0.5.93-1build3) ...
Selecting previously unselected package gir1.2-ayatanaappindicator3-0.1.
Preparing to unpack .../052-gir1.2-ayatanaappindicator3-0.1_0.5.93-1build3_amd64.deb ...
Unpacking gir1.2-ayatanaappindicator3-0.1 (0.5.93-1build3) ...
Selecting previously unselected package gir1.2-gstreamer-1.0:amd64.
Preparing to unpack .../053-gir1.2-gstreamer-1.0_1.24.2-1_amd64.deb ...
Unpacking gir1.2-gstreamer-1.0:amd64 (1.24.2-1) ...
Selecting previously unselected package libasyncns0:amd64.
Preparing to unpack .../054-libasyncns0_0.8-6build4_amd64.deb ...
Unpacking libasyncns0:amd64 (0.8-6build4) ...
Selecting previously unselected package libogg0:amd64.
Preparing to unpack .../055-libogg0_1.3.5-3build1_amd64.deb ...
Unpacking libogg0:amd64 (1.3.5-3build1) ...
Selecting previously unselected package libflac12t64:amd64.
Preparing to unpack .../056-libflac12t64_1.4.3+ds-2.1ubuntu2_amd64.deb ...
Unpacking libflac12t64:amd64 (1.4.3+ds-2.1ubuntu2) ...
Selecting previously unselected package libmp3lame0:amd64.
Preparing to unpack .../057-libmp3lame0_3.100-6build1_amd64.deb ...
Unpacking libmp3lame0:amd64 (3.100-6build1) ...
Selecting previously unselected package libmpg123-0t64:amd64.
Preparing to unpack .../058-libmpg123-0t64_1.32.5-1ubuntu1_amd64.deb ...
Unpacking libmpg123-0t64:amd64 (1.32.5-1ubuntu1) ...
Selecting previously unselected package libopus0:amd64.
Preparing to unpack .../059-libopus0_1.4-1build1_amd64.deb ...
Unpacking libopus0:amd64 (1.4-1build1) ...
Selecting previously unselected package libvorbis0a:amd64.
Preparing to unpack .../060-libvorbis0a_1.3.7-1build3_amd64.deb ...
Unpacking libvorbis0a:amd64 (1.3.7-1build3) ...
Selecting previously unselected package libvorbisenc2:amd64.
Preparing to unpack .../061-libvorbisenc2_1.3.7-1build3_amd64.deb ...
Unpacking libvorbisenc2:amd64 (1.3.7-1build3) ...
Selecting previously unselected package libsndfile1:amd64.
Preparing to unpack .../062-libsndfile1_1.2.2-1ubuntu5_amd64.deb ...
Unpacking libsndfile1:amd64 (1.2.2-1ubuntu5) ...
Selecting previously unselected package libpulse0:amd64.
Preparing to unpack .../063-libpulse0_1%3a16.1+dfsg1-2ubuntu10_amd64.deb ...
Unpacking libpulse0:amd64 (1:16.1+dfsg1-2ubuntu10) ...
Selecting previously unselected package libgvnc-1.0-0:amd64.
Preparing to unpack .../064-libgvnc-1.0-0_1.3.1-1build2_amd64.deb ...
Unpacking libgvnc-1.0-0:amd64 (1.3.1-1build2) ...
Selecting previously unselected package libgtk-vnc-2.0-0:amd64.
Preparing to unpack .../065-libgtk-vnc-2.0-0_1.3.1-1build2_amd64.deb ...
Unpacking libgtk-vnc-2.0-0:amd64 (1.3.1-1build2) ...
Selecting previously unselected package gir1.2-gtk-vnc-2.0:amd64.
Preparing to unpack .../066-gir1.2-gtk-vnc-2.0_1.3.1-1build2_amd64.deb ...
Unpacking gir1.2-gtk-vnc-2.0:amd64 (1.3.1-1build2) ...
Selecting previously unselected package libgtksourceview-4-common.
Preparing to unpack .../067-libgtksourceview-4-common_4.8.4-5build4_all.deb ...
Unpacking libgtksourceview-4-common (4.8.4-5build4) ...
Selecting previously unselected package libgtksourceview-4-0:amd64.
Preparing to unpack .../068-libgtksourceview-4-0_4.8.4-5build4_amd64.deb ...
Unpacking libgtksourceview-4-0:amd64 (4.8.4-5build4) ...
Selecting previously unselected package gir1.2-gtksource-4:amd64.
Preparing to unpack .../069-gir1.2-gtksource-4_4.8.4-5build4_amd64.deb ...
Unpacking gir1.2-gtksource-4:amd64 (4.8.4-5build4) ...
Selecting previously unselected package spice-client-glib-usb-acl-helper.
Preparing to unpack .../070-spice-client-glib-usb-acl-helper_0.42-2ubuntu2_amd64.deb ...
Unpacking spice-client-glib-usb-acl-helper (0.42-2ubuntu2) ...
Selecting previously unselected package libpcsclite1:amd64.
Preparing to unpack .../071-libpcsclite1_2.0.3-1build1_amd64.deb ...
Unpacking libpcsclite1:amd64 (2.0.3-1build1) ...
Selecting previously unselected package libcacard0:amd64.
Preparing to unpack .../072-libcacard0_1%3a2.8.0-3build4_amd64.deb ...
Unpacking libcacard0:amd64 (1:2.8.0-3build4) ...
Selecting previously unselected package liborc-0.4-0t64:amd64.
Preparing to unpack .../073-liborc-0.4-0t64_1%3a0.4.38-1ubuntu0.1_amd64.deb ...
Unpacking liborc-0.4-0t64:amd64 (1:0.4.38-1ubuntu0.1) ...
Selecting previously unselected package libgstreamer-plugins-base1.0-0:amd64.
Preparing to unpack .../074-libgstreamer-plugins-base1.0-0_1.24.2-1ubuntu0.1_amd64.deb ...
Unpacking libgstreamer-plugins-base1.0-0:amd64 (1.24.2-1ubuntu0.1) ...
Selecting previously unselected package libphodav-3.0-common.
Preparing to unpack .../075-libphodav-3.0-common_3.0-8build3_all.deb ...
Unpacking libphodav-3.0-common (3.0-8build3) ...
Selecting previously unselected package libproxy1v5:amd64.
Preparing to unpack .../076-libproxy1v5_0.5.4-4build1_amd64.deb ...
Unpacking libproxy1v5:amd64 (0.5.4-4build1) ...
Selecting previously unselected package glib-networking-common.
Preparing to unpack .../077-glib-networking-common_2.80.0-1build1_all.deb ...
Unpacking glib-networking-common (2.80.0-1build1) ...
Selecting previously unselected package glib-networking-services.
Preparing to unpack .../078-glib-networking-services_2.80.0-1build1_amd64.deb ...
Unpacking glib-networking-services (2.80.0-1build1) ...
Selecting previously unselected package glib-networking:amd64.
Preparing to unpack .../079-glib-networking_2.80.0-1build1_amd64.deb ...
Unpacking glib-networking:amd64 (2.80.0-1build1) ...
Selecting previously unselected package libsoup-3.0-common.
Preparing to unpack .../080-libsoup-3.0-common_3.4.4-5build2_all.deb ...
Unpacking libsoup-3.0-common (3.4.4-5build2) ...
Selecting previously unselected package libsoup-3.0-0:amd64.
Preparing to unpack .../081-libsoup-3.0-0_3.4.4-5build2_amd64.deb ...
Unpacking libsoup-3.0-0:amd64 (3.4.4-5build2) ...
Selecting previously unselected package libphodav-3.0-0:amd64.
Preparing to unpack .../082-libphodav-3.0-0_3.0-8build3_amd64.deb ...
Unpacking libphodav-3.0-0:amd64 (3.0-8build3) ...
Selecting previously unselected package libusbredirparser1t64:amd64.
Preparing to unpack .../083-libusbredirparser1t64_0.13.0-2.1build1_amd64.deb ...
Unpacking libusbredirparser1t64:amd64 (0.13.0-2.1build1) ...
Selecting previously unselected package libusbredirhost1t64:amd64.
Preparing to unpack .../084-libusbredirhost1t64_0.13.0-2.1build1_amd64.deb ...
Unpacking libusbredirhost1t64:amd64 (0.13.0-2.1build1) ...
Selecting previously unselected package libspice-client-glib-2.0-8:amd64.
Preparing to unpack .../085-libspice-client-glib-2.0-8_0.42-2ubuntu2_amd64.deb ...
Unpacking libspice-client-glib-2.0-8:amd64 (0.42-2ubuntu2) ...
Selecting previously unselected package gir1.2-spiceclientglib-2.0:amd64.
Preparing to unpack .../086-gir1.2-spiceclientglib-2.0_0.42-2ubuntu2_amd64.deb ...
Unpacking gir1.2-spiceclientglib-2.0:amd64 (0.42-2ubuntu2) ...
Selecting previously unselected package libva2:amd64.
Preparing to unpack .../087-libva2_2.20.0-2build1_amd64.deb ...
Unpacking libva2:amd64 (2.20.0-2build1) ...
Selecting previously unselected package libxcb-dri3-0:amd64.
Preparing to unpack .../088-libxcb-dri3-0_1.15-1ubuntu2_amd64.deb ...
Unpacking libxcb-dri3-0:amd64 (1.15-1ubuntu2) ...
Selecting previously unselected package libva-x11-2:amd64.
Preparing to unpack .../089-libva-x11-2_2.20.0-2build1_amd64.deb ...
Unpacking libva-x11-2:amd64 (2.20.0-2build1) ...
Selecting previously unselected package libwayland-server0:amd64.
Preparing to unpack .../090-libwayland-server0_1.22.0-2.1build1_amd64.deb ...
Unpacking libwayland-server0:amd64 (1.22.0-2.1build1) ...
Selecting previously unselected package libspice-client-gtk-3.0-5:amd64.
Preparing to unpack .../091-libspice-client-gtk-3.0-5_0.42-2ubuntu2_amd64.deb ...
Unpacking libspice-client-gtk-3.0-5:amd64 (0.42-2ubuntu2) ...
Selecting previously unselected package gir1.2-spiceclientgtk-3.0:amd64.
Preparing to unpack .../092-gir1.2-spiceclientgtk-3.0_0.42-2ubuntu2_amd64.deb ...
Unpacking gir1.2-spiceclientgtk-3.0:amd64 (0.42-2ubuntu2) ...
Selecting previously unselected package libvte-2.91-common.
Preparing to unpack .../093-libvte-2.91-common_0.76.0-1ubuntu0.1_amd64.deb ...
Unpacking libvte-2.91-common (0.76.0-1ubuntu0.1) ...
Selecting previously unselected package libvte-2.91-0:amd64.
Preparing to unpack .../094-libvte-2.91-0_0.76.0-1ubuntu0.1_amd64.deb ...
Unpacking libvte-2.91-0:amd64 (0.76.0-1ubuntu0.1) ...
Selecting previously unselected package gir1.2-vte-2.91:amd64.
Preparing to unpack .../095-gir1.2-vte-2.91_0.76.0-1ubuntu0.1_amd64.deb ...
Unpacking gir1.2-vte-2.91:amd64 (0.76.0-1ubuntu0.1) ...
Selecting previously unselected package libcdparanoia0:amd64.
Preparing to unpack .../096-libcdparanoia0_3.10.2+debian-14build3_amd64.deb ...
Unpacking libcdparanoia0:amd64 (3.10.2+debian-14build3) ...
Selecting previously unselected package libtheora0:amd64.
Preparing to unpack .../097-libtheora0_1.1.1+dfsg.1-16.1build3_amd64.deb ...
Unpacking libtheora0:amd64 (1.1.1+dfsg.1-16.1build3) ...
Selecting previously unselected package libvisual-0.4-0:amd64.
Preparing to unpack .../098-libvisual-0.4-0_0.4.2-2build1_amd64.deb ...
Unpacking libvisual-0.4-0:amd64 (0.4.2-2build1) ...
Selecting previously unselected package gstreamer1.0-plugins-base:amd64.
Preparing to unpack .../099-gstreamer1.0-plugins-base_1.24.2-1ubuntu0.1_amd64.deb ...
Unpacking gstreamer1.0-plugins-base:amd64 (1.24.2-1ubuntu0.1) ...
Selecting previously unselected package libaa1:amd64.
Preparing to unpack .../100-libaa1_1.4p5-51.1_amd64.deb ...
Unpacking libaa1:amd64 (1.4p5-51.1) ...
Selecting previously unselected package libraw1394-11:amd64.
Preparing to unpack .../101-libraw1394-11_2.1.2-2build3_amd64.deb ...
Unpacking libraw1394-11:amd64 (2.1.2-2build3) ...
Selecting previously unselected package libavc1394-0:amd64.
Preparing to unpack .../102-libavc1394-0_0.5.4-5build3_amd64.deb ...
Unpacking libavc1394-0:amd64 (0.5.4-5build3) ...
Selecting previously unselected package libdv4t64:amd64.
Preparing to unpack .../103-libdv4t64_1.0.0-17.1build1_amd64.deb ...
Unpacking libdv4t64:amd64 (1.0.0-17.1build1) ...
Selecting previously unselected package libgstreamer-plugins-good1.0-0:amd64.
Preparing to unpack .../104-libgstreamer-plugins-good1.0-0_1.24.2-1ubuntu1_amd64.deb ...
Unpacking libgstreamer-plugins-good1.0-0:amd64 (1.24.2-1ubuntu1) ...
Selecting previously unselected package libiec61883-0:amd64.
Preparing to unpack .../105-libiec61883-0_1.2.0-6build1_amd64.deb ...
Unpacking libiec61883-0:amd64 (1.2.0-6build1) ...
Selecting previously unselected package libspeex1:amd64.
Preparing to unpack .../106-libspeex1_1.2.1-2ubuntu2_amd64.deb ...
Unpacking libspeex1:amd64 (1.2.1-2ubuntu2) ...
Selecting previously unselected package libshout3:amd64.
Preparing to unpack .../107-libshout3_2.4.6-1build2_amd64.deb ...
Unpacking libshout3:amd64 (2.4.6-1build2) ...
Selecting previously unselected package libtag1v5-vanilla:amd64.
Preparing to unpack .../108-libtag1v5-vanilla_1.13.1-1build1_amd64.deb ...
Unpacking libtag1v5-vanilla:amd64 (1.13.1-1build1) ...
Selecting previously unselected package libtag1v5:amd64.
Preparing to unpack .../109-libtag1v5_1.13.1-1build1_amd64.deb ...
Unpacking libtag1v5:amd64 (1.13.1-1build1) ...
Selecting previously unselected package libtwolame0:amd64.
Preparing to unpack .../110-libtwolame0_0.4.0-2build3_amd64.deb ...
Unpacking libtwolame0:amd64 (0.4.0-2build3) ...
Selecting previously unselected package libv4lconvert0t64:amd64.
Preparing to unpack .../111-libv4lconvert0t64_1.26.1-4build3_amd64.deb ...
Unpacking libv4lconvert0t64:amd64 (1.26.1-4build3) ...
Selecting previously unselected package libv4l-0t64:amd64.
Preparing to unpack .../112-libv4l-0t64_1.26.1-4build3_amd64.deb ...
Unpacking libv4l-0t64:amd64 (1.26.1-4build3) ...
Selecting previously unselected package libvpx9:amd64.
Preparing to unpack .../113-libvpx9_1.14.0-1ubuntu2.1_amd64.deb ...
Unpacking libvpx9:amd64 (1.14.0-1ubuntu2.1) ...
Selecting previously unselected package libwavpack1:amd64.
Preparing to unpack .../114-libwavpack1_5.6.0-1build1_amd64.deb ...
Unpacking libwavpack1:amd64 (5.6.0-1build1) ...
Selecting previously unselected package gstreamer1.0-plugins-good:amd64.
Preparing to unpack .../115-gstreamer1.0-plugins-good_1.24.2-1ubuntu1_amd64.deb ...
Unpacking gstreamer1.0-plugins-good:amd64 (1.24.2-1ubuntu1) ...
Selecting previously unselected package libxv1:amd64.
Preparing to unpack .../116-libxv1_2%3a1.0.11-1.1build1_amd64.deb ...
Unpacking libxv1:amd64 (2:1.0.11-1.1build1) ...
Selecting previously unselected package gstreamer1.0-x:amd64.
Preparing to unpack .../117-gstreamer1.0-x_1.24.2-1ubuntu0.1_amd64.deb ...
Unpacking gstreamer1.0-x:amd64 (1.24.2-1ubuntu0.1) ...
Selecting previously unselected package libigdgmm12:amd64.
Preparing to unpack .../118-libigdgmm12_22.3.17+ds1-1_amd64.deb ...
Unpacking libigdgmm12:amd64 (22.3.17+ds1-1) ...
Selecting previously unselected package intel-media-va-driver:amd64.
Preparing to unpack .../119-intel-media-va-driver_24.1.0+dfsg1-1_amd64.deb ...
Unpacking intel-media-va-driver:amd64 (24.1.0+dfsg1-1) ...
Selecting previously unselected package ipxe-qemu.
Preparing to unpack .../120-ipxe-qemu_1.21.1+git-20220113.fbbdc3926-0ubuntu2_all.deb ...
Unpacking ipxe-qemu (1.21.1+git-20220113.fbbdc3926-0ubuntu2) ...
Selecting previously unselected package ipxe-qemu-256k-compat-efi-roms.
Preparing to unpack .../121-ipxe-qemu-256k-compat-efi-roms_1.0.0+git-20150424.a25a16d-0ubuntu5_all.deb ...
Unpacking ipxe-qemu-256k-compat-efi-roms (1.0.0+git-20150424.a25a16d-0ubuntu5) ...
Selecting previously unselected package libboost-iostreams1.83.0:amd64.
Preparing to unpack .../122-libboost-iostreams1.83.0_1.83.0-2.1ubuntu3_amd64.deb ...
Unpacking libboost-iostreams1.83.0:amd64 (1.83.0-2.1ubuntu3) ...
Selecting previously unselected package libboost-thread1.83.0:amd64.
Preparing to unpack .../123-libboost-thread1.83.0_1.83.0-2.1ubuntu3_amd64.deb ...
Unpacking libboost-thread1.83.0:amd64 (1.83.0-2.1ubuntu3) ...
Selecting previously unselected package libbrlapi0.8:amd64.
Preparing to unpack .../124-libbrlapi0.8_6.6-4ubuntu5_amd64.deb ...
Unpacking libbrlapi0.8:amd64 (6.6-4ubuntu5) ...
Selecting previously unselected package libburn4t64:amd64.
Preparing to unpack .../125-libburn4t64_1.5.6-1.1build1_amd64.deb ...
Unpacking libburn4t64:amd64 (1.5.6-1.1build1) ...
Selecting previously unselected package libdaxctl1:amd64.
Preparing to unpack .../126-libdaxctl1_77-2ubuntu2_amd64.deb ...
Unpacking libdaxctl1:amd64 (77-2ubuntu2) ...
Selecting previously unselected package libdecor-0-0:amd64.
Preparing to unpack .../127-libdecor-0-0_0.2.2-1build2_amd64.deb ...
Unpacking libdecor-0-0:amd64 (0.2.2-1build2) ...
Selecting previously unselected package libdecor-0-plugin-1-gtk:amd64.
Preparing to unpack .../128-libdecor-0-plugin-1-gtk_0.2.2-1build2_amd64.deb ...
Unpacking libdecor-0-plugin-1-gtk:amd64 (0.2.2-1build2) ...
Selecting previously unselected package libdrm-amdgpu1:amd64.
Preparing to unpack .../129-libdrm-amdgpu1_2.4.120-2build1_amd64.deb ...
Unpacking libdrm-amdgpu1:amd64 (2.4.120-2build1) ...
Selecting previously unselected package libpciaccess0:amd64.
Preparing to unpack .../130-libpciaccess0_0.17-3build1_amd64.deb ...
Unpacking libpciaccess0:amd64 (0.17-3build1) ...
Selecting previously unselected package libdrm-intel1:amd64.
Preparing to unpack .../131-libdrm-intel1_2.4.120-2build1_amd64.deb ...
Unpacking libdrm-intel1:amd64 (2.4.120-2build1) ...
Selecting previously unselected package libdrm-nouveau2:amd64.
Preparing to unpack .../132-libdrm-nouveau2_2.4.120-2build1_amd64.deb ...
Unpacking libdrm-nouveau2:amd64 (2.4.120-2build1) ...
Selecting previously unselected package libdrm-radeon1:amd64.
Preparing to unpack .../133-libdrm-radeon1_2.4.120-2build1_amd64.deb ...
Unpacking libdrm-radeon1:amd64 (2.4.120-2build1) ...
Selecting previously unselected package libxcb-randr0:amd64.
Preparing to unpack .../134-libxcb-randr0_1.15-1ubuntu2_amd64.deb ...
Unpacking libxcb-randr0:amd64 (1.15-1ubuntu2) ...
Selecting previously unselected package libgbm1:amd64.
Preparing to unpack .../135-libgbm1_24.0.9-0ubuntu0.1_amd64.deb ...
Unpacking libgbm1:amd64 (24.0.9-0ubuntu0.1) ...
Selecting previously unselected package libglapi-mesa:amd64.
Preparing to unpack .../136-libglapi-mesa_24.0.9-0ubuntu0.1_amd64.deb ...
Unpacking libglapi-mesa:amd64 (24.0.9-0ubuntu0.1) ...
Selecting previously unselected package libgl1-amber-dri:amd64.
Preparing to unpack .../137-libgl1-amber-dri_21.3.9-0ubuntu2_amd64.deb ...
Unpacking libgl1-amber-dri:amd64 (21.3.9-0ubuntu2) ...
Selecting previously unselected package libvulkan1:amd64.
Preparing to unpack .../138-libvulkan1_1.3.275.0-1build1_amd64.deb ...
Unpacking libvulkan1:amd64 (1.3.275.0-1build1) ...
Selecting previously unselected package libllvm17t64:amd64.
Preparing to unpack .../139-libllvm17t64_1%3a17.0.6-9ubuntu1_amd64.deb ...
Unpacking libllvm17t64:amd64 (1:17.0.6-9ubuntu1) ...
Selecting previously unselected package libgl1-mesa-dri:amd64.
Preparing to unpack .../140-libgl1-mesa-dri_24.0.9-0ubuntu0.1_amd64.deb ...
Unpacking libgl1-mesa-dri:amd64 (24.0.9-0ubuntu0.1) ...
Selecting previously unselected package libxcb-dri2-0:amd64.
Preparing to unpack .../141-libxcb-dri2-0_1.15-1ubuntu2_amd64.deb ...
Unpacking libxcb-dri2-0:amd64 (1.15-1ubuntu2) ...
Selecting previously unselected package libxcb-glx0:amd64.
Preparing to unpack .../142-libxcb-glx0_1.15-1ubuntu2_amd64.deb ...
Unpacking libxcb-glx0:amd64 (1.15-1ubuntu2) ...
Selecting previously unselected package libxcb-present0:amd64.
Preparing to unpack .../143-libxcb-present0_1.15-1ubuntu2_amd64.deb ...
Unpacking libxcb-present0:amd64 (1.15-1ubuntu2) ...
Selecting previously unselected package libxcb-sync1:amd64.
Preparing to unpack .../144-libxcb-sync1_1.15-1ubuntu2_amd64.deb ...
Unpacking libxcb-sync1:amd64 (1.15-1ubuntu2) ...
Selecting previously unselected package libxcb-xfixes0:amd64.
Preparing to unpack .../145-libxcb-xfixes0_1.15-1ubuntu2_amd64.deb ...
Unpacking libxcb-xfixes0:amd64 (1.15-1ubuntu2) ...
Selecting previously unselected package libxshmfence1:amd64.
Preparing to unpack .../146-libxshmfence1_1.3-1build5_amd64.deb ...
Unpacking libxshmfence1:amd64 (1.3-1build5) ...
Selecting previously unselected package libxxf86vm1:amd64.
Preparing to unpack .../147-libxxf86vm1_1%3a1.1.4-1build4_amd64.deb ...
Unpacking libxxf86vm1:amd64 (1:1.1.4-1build4) ...
Selecting previously unselected package libglx-mesa0:amd64.
Preparing to unpack .../148-libglx-mesa0_24.0.9-0ubuntu0.1_amd64.deb ...
Unpacking libglx-mesa0:amd64 (24.0.9-0ubuntu0.1) ...
Selecting previously unselected package libgtk-3-bin.
Preparing to unpack .../149-libgtk-3-bin_3.24.41-4ubuntu1.1_amd64.deb ...
Unpacking libgtk-3-bin (3.24.41-4ubuntu1.1) ...
Selecting previously unselected package librdmacm1t64:amd64.
Preparing to unpack .../150-librdmacm1t64_50.0-2build2_amd64.deb ...
Unpacking librdmacm1t64:amd64 (50.0-2build2) ...
Selecting previously unselected package libiscsi7:amd64.
Preparing to unpack .../151-libiscsi7_1.19.0-3build4_amd64.deb ...
Unpacking libiscsi7:amd64 (1.19.0-3build4) ...
Selecting previously unselected package libisofs6t64:amd64.
Preparing to unpack .../152-libisofs6t64_1.5.6.pl01-1.1ubuntu2_amd64.deb ...
Unpacking libisofs6t64:amd64 (1.5.6.pl01-1.1ubuntu2) ...
Selecting previously unselected package libisoburn1t64:amd64.
Preparing to unpack .../153-libisoburn1t64_1%3a1.5.6-1.1ubuntu3_amd64.deb ...
Unpacking libisoburn1t64:amd64 (1:1.5.6-1.1ubuntu3) ...
Selecting previously unselected package libsamplerate0:amd64.
Preparing to unpack .../154-libsamplerate0_0.2.2-4build1_amd64.deb ...
Unpacking libsamplerate0:amd64 (0.2.2-4build1) ...
Selecting previously unselected package libjack-jackd2-0:amd64.
Preparing to unpack .../155-libjack-jackd2-0_1.9.21~dfsg-3ubuntu3_amd64.deb ...
Unpacking libjack-jackd2-0:amd64 (1.9.21~dfsg-3ubuntu3) ...
Selecting previously unselected package libndctl6:amd64.
Preparing to unpack .../156-libndctl6_77-2ubuntu2_amd64.deb ...
Unpacking libndctl6:amd64 (77-2ubuntu2) ...
Selecting previously unselected package libnfs14:amd64.
Preparing to unpack .../157-libnfs14_5.0.2-1build1_amd64.deb ...
Unpacking libnfs14:amd64 (5.0.2-1build1) ...
Selecting previously unselected package libwebrtc-audio-processing1:amd64.
Preparing to unpack .../158-libwebrtc-audio-processing1_0.3.1-0ubuntu6_amd64.deb ...
Unpacking libwebrtc-audio-processing1:amd64 (0.3.1-0ubuntu6) ...
Selecting previously unselected package libspa-0.2-modules:amd64.
Preparing to unpack .../159-libspa-0.2-modules_1.0.5-1ubuntu1_amd64.deb ...
Unpacking libspa-0.2-modules:amd64 (1.0.5-1ubuntu1) ...
Selecting previously unselected package libpipewire-0.3-0t64:amd64.
Preparing to unpack .../160-libpipewire-0.3-0t64_1.0.5-1ubuntu1_amd64.deb ...
Unpacking libpipewire-0.3-0t64:amd64 (1.0.5-1ubuntu1) ...
Selecting previously unselected package libpipewire-0.3-common.
Preparing to unpack .../161-libpipewire-0.3-common_1.0.5-1ubuntu1_all.deb ...
Unpacking libpipewire-0.3-common (1.0.5-1ubuntu1) ...
Selecting previously unselected package libpmem1:amd64.
Preparing to unpack .../162-libpmem1_1.13.1-1.1ubuntu2_amd64.deb ...
Unpacking libpmem1:amd64 (1.13.1-1.1ubuntu2) ...
Selecting previously unselected package libpmemobj1:amd64.
Preparing to unpack .../163-libpmemobj1_1.13.1-1.1ubuntu2_amd64.deb ...
Unpacking libpmemobj1:amd64 (1.13.1-1.1ubuntu2) ...
Selecting previously unselected package librados2.
Preparing to unpack .../164-librados2_19.2.0~git20240301.4c76c50-0ubuntu6.1_amd64.deb ...
Unpacking librados2 (19.2.0~git20240301.4c76c50-0ubuntu6.1) ...
Selecting previously unselected package librbd1.
Preparing to unpack .../165-librbd1_19.2.0~git20240301.4c76c50-0ubuntu6.1_amd64.deb ...
Unpacking librbd1 (19.2.0~git20240301.4c76c50-0ubuntu6.1) ...
Selecting previously unselected package libxss1:amd64.
Preparing to unpack .../166-libxss1_1%3a1.2.3-1build3_amd64.deb ...
Unpacking libxss1:amd64 (1:1.2.3-1build3) ...
Selecting previously unselected package libsdl2-2.0-0:amd64.
Preparing to unpack .../167-libsdl2-2.0-0_2.30.0+dfsg-1build3_amd64.deb ...
Unpacking libsdl2-2.0-0:amd64 (2.30.0+dfsg-1build3) ...
Selecting previously unselected package libslirp0:amd64.
Preparing to unpack .../168-libslirp0_4.7.0-1ubuntu3_amd64.deb ...
Unpacking libslirp0:amd64 (4.7.0-1ubuntu3) ...
Selecting previously unselected package libspice-server1:amd64.
Preparing to unpack .../169-libspice-server1_0.15.1-1build2_amd64.deb ...
Unpacking libspice-server1:amd64 (0.15.1-1build2) ...
Selecting previously unselected package libtpms0:amd64.
Preparing to unpack .../170-libtpms0_0.9.3-0ubuntu4_amd64.deb ...
Unpacking libtpms0:amd64 (0.9.3-0ubuntu4) ...
Selecting previously unselected package liburing2:amd64.
Preparing to unpack .../171-liburing2_2.5-1build1_amd64.deb ...
Unpacking liburing2:amd64 (2.5-1build1) ...
Selecting previously unselected package libvirglrenderer1:amd64.
Preparing to unpack .../172-libvirglrenderer1_1.0.0-1ubuntu2_amd64.deb ...
Unpacking libvirglrenderer1:amd64 (1.0.0-1ubuntu2) ...
Selecting previously unselected package libyajl2:amd64.
Preparing to unpack .../173-libyajl2_2.1.0-5build1_amd64.deb ...
Unpacking libyajl2:amd64 (2.1.0-5build1) ...
Selecting previously unselected package libvirt0:amd64.
Preparing to unpack .../174-libvirt0_10.0.0-2ubuntu8.3_amd64.deb ...
Unpacking libvirt0:amd64 (10.0.0-2ubuntu8.3) ...
Selecting previously unselected package libvirt-clients.
Preparing to unpack .../175-libvirt-clients_10.0.0-2ubuntu8.3_amd64.deb ...
Unpacking libvirt-clients (10.0.0-2ubuntu8.3) ...
Selecting previously unselected package libvirt-daemon-driver-qemu.
Preparing to unpack .../176-libvirt-daemon-driver-qemu_10.0.0-2ubuntu8.3_amd64.deb ...
Unpacking libvirt-daemon-driver-qemu (10.0.0-2ubuntu8.3) ...
Selecting previously unselected package libvirt-daemon.
Preparing to unpack .../177-libvirt-daemon_10.0.0-2ubuntu8.3_amd64.deb ...
Unpacking libvirt-daemon (10.0.0-2ubuntu8.3) ...
Selecting previously unselected package libvirt-daemon-config-network.
Preparing to unpack .../178-libvirt-daemon-config-network_10.0.0-2ubuntu8.3_all.deb ...
Unpacking libvirt-daemon-config-network (10.0.0-2ubuntu8.3) ...
Selecting previously unselected package libvirt-daemon-config-nwfilter.
Preparing to unpack .../179-libvirt-daemon-config-nwfilter_10.0.0-2ubuntu8.3_all.deb ...
Unpacking libvirt-daemon-config-nwfilter (10.0.0-2ubuntu8.3) ...
Selecting previously unselected package systemd-container.
Preparing to unpack .../180-systemd-container_255.4-1ubuntu8.4_amd64.deb ...
Unpacking systemd-container (255.4-1ubuntu8.4) ...
Selecting previously unselected package libvirt-daemon-system-systemd.
Preparing to unpack .../181-libvirt-daemon-system-systemd_10.0.0-2ubuntu8.3_all.deb ...
Unpacking libvirt-daemon-system-systemd (10.0.0-2ubuntu8.3) ...
Selecting previously unselected package libvirt-daemon-system.
Preparing to unpack .../182-libvirt-daemon-system_10.0.0-2ubuntu8.3_amd64.deb ...
Unpacking libvirt-daemon-system (10.0.0-2ubuntu8.3) ...
Selecting previously unselected package libvirt-glib-1.0-data.
Preparing to unpack .../183-libvirt-glib-1.0-data_5.0.0-2build3_all.deb ...
Unpacking libvirt-glib-1.0-data (5.0.0-2build3) ...
Selecting previously unselected package libvirt-l10n.
Preparing to unpack .../184-libvirt-l10n_10.0.0-2ubuntu8.3_all.deb ...
Unpacking libvirt-l10n (10.0.0-2ubuntu8.3) ...
Selecting previously unselected package libxml2-utils.
Preparing to unpack .../185-libxml2-utils_2.9.14+dfsg-1.3ubuntu3_amd64.deb ...
Unpacking libxml2-utils (2.9.14+dfsg-1.3ubuntu3) ...
Selecting previously unselected package mdevctl.
Preparing to unpack .../186-mdevctl_1.3.0-1ubuntu2_amd64.deb ...
Unpacking mdevctl (1.3.0-1ubuntu2) ...
Selecting previously unselected package mesa-va-drivers:amd64.
Preparing to unpack .../187-mesa-va-drivers_24.0.9-0ubuntu0.1_amd64.deb ...
Unpacking mesa-va-drivers:amd64 (24.0.9-0ubuntu0.1) ...
Selecting previously unselected package mesa-vulkan-drivers:amd64.
Preparing to unpack .../188-mesa-vulkan-drivers_24.0.9-0ubuntu0.1_amd64.deb ...
Unpacking mesa-vulkan-drivers:amd64 (24.0.9-0ubuntu0.1) ...
Selecting previously unselected package osinfo-db.
Preparing to unpack .../189-osinfo-db_0.20240523-0ubuntu0.24.04.1_all.deb ...
Unpacking osinfo-db (0.20240523-0ubuntu0.24.04.1) ...
Selecting previously unselected package python3-cairo.
Preparing to unpack .../190-python3-cairo_1.25.1-2build2_amd64.deb ...
Unpacking python3-cairo (1.25.1-2build2) ...
Selecting previously unselected package python3-gi-cairo.
Preparing to unpack .../191-python3-gi-cairo_3.48.2-1_amd64.deb ...
Unpacking python3-gi-cairo (3.48.2-1) ...
Selecting previously unselected package python3-libvirt.
Preparing to unpack .../192-python3-libvirt_10.0.0-1build1_amd64.deb ...
Unpacking python3-libvirt (10.0.0-1build1) ...
Selecting previously unselected package python3-libxml2:amd64.
Preparing to unpack .../193-python3-libxml2_2.9.14+dfsg-1.3ubuntu3_amd64.deb ...
Unpacking python3-libxml2:amd64 (2.9.14+dfsg-1.3ubuntu3) ...
Selecting previously unselected package libfdt1:amd64.
Preparing to unpack .../194-libfdt1_1.7.0-2build1_amd64.deb ...
Unpacking libfdt1:amd64 (1.7.0-2build1) ...
Selecting previously unselected package qemu-system-common.
Preparing to unpack .../195-qemu-system-common_1%3a8.2.2+ds-0ubuntu1.2_amd64.deb ...
Unpacking qemu-system-common (1:8.2.2+ds-0ubuntu1.2) ...
Selecting previously unselected package qemu-system-data.
Preparing to unpack .../196-qemu-system-data_1%3a8.2.2+ds-0ubuntu1.2_all.deb ...
Unpacking qemu-system-data (1:8.2.2+ds-0ubuntu1.2) ...
Selecting previously unselected package seabios.
Preparing to unpack .../197-seabios_1.16.3-2_all.deb ...
Unpacking seabios (1.16.3-2) ...
Selecting previously unselected package qemu-system-x86.
Preparing to unpack .../198-qemu-system-x86_1%3a8.2.2+ds-0ubuntu1.2_amd64.deb ...
Unpacking qemu-system-x86 (1:8.2.2+ds-0ubuntu1.2) ...
Selecting previously unselected package qemu-utils.
Preparing to unpack .../199-qemu-utils_1%3a8.2.2+ds-0ubuntu1.2_amd64.deb ...
Unpacking qemu-utils (1:8.2.2+ds-0ubuntu1.2) ...
Selecting previously unselected package qemu-block-extra.
Preparing to unpack .../200-qemu-block-extra_1%3a8.2.2+ds-0ubuntu1.2_amd64.deb ...
Unpacking qemu-block-extra (1:8.2.2+ds-0ubuntu1.2) ...
Selecting previously unselected package qemu-system-modules-opengl.
Preparing to unpack .../201-qemu-system-modules-opengl_1%3a8.2.2+ds-0ubuntu1.2_amd64.deb ...
Unpacking qemu-system-modules-opengl (1:8.2.2+ds-0ubuntu1.2) ...
Selecting previously unselected package libglvnd0:amd64.
Preparing to unpack .../202-libglvnd0_1.7.0-1build1_amd64.deb ...
Unpacking libglvnd0:amd64 (1.7.0-1build1) ...
Selecting previously unselected package libglx0:amd64.
Preparing to unpack .../203-libglx0_1.7.0-1build1_amd64.deb ...
Unpacking libglx0:amd64 (1.7.0-1build1) ...
Selecting previously unselected package libgl1:amd64.
Preparing to unpack .../204-libgl1_1.7.0-1build1_amd64.deb ...
Unpacking libgl1:amd64 (1.7.0-1build1) ...
Selecting previously unselected package qemu-system-gui.
Preparing to unpack .../205-qemu-system-gui_1%3a8.2.2+ds-0ubuntu1.2_amd64.deb ...
Unpacking qemu-system-gui (1:8.2.2+ds-0ubuntu1.2) ...
Selecting previously unselected package qemu-system-modules-spice.
Preparing to unpack .../206-qemu-system-modules-spice_1%3a8.2.2+ds-0ubuntu1.2_amd64.deb ...
Unpacking qemu-system-modules-spice (1:8.2.2+ds-0ubuntu1.2) ...
Selecting previously unselected package swtpm.
Preparing to unpack .../207-swtpm_0.7.3-0ubuntu5.24.04.1_amd64.deb ...
Unpacking swtpm (0.7.3-0ubuntu5.24.04.1) ...
Selecting previously unselected package swtpm-tools.
Preparing to unpack .../208-swtpm-tools_0.7.3-0ubuntu5.24.04.1_amd64.deb ...
Unpacking swtpm-tools (0.7.3-0ubuntu5.24.04.1) ...
Selecting previously unselected package i965-va-driver:amd64.
Preparing to unpack .../209-i965-va-driver_2.4.1+dfsg1-1build2_amd64.deb ...
Unpacking i965-va-driver:amd64 (2.4.1+dfsg1-1build2) ...
Selecting previously unselected package va-driver-all:amd64.
Preparing to unpack .../210-va-driver-all_2.20.0-2build1_amd64.deb ...
Unpacking va-driver-all:amd64 (2.20.0-2build1) ...
Selecting previously unselected package libosinfo-l10n.
Preparing to unpack .../211-libosinfo-l10n_1.11.0-2build3_all.deb ...
Unpacking libosinfo-l10n (1.11.0-2build3) ...
Selecting previously unselected package libosinfo-1.0-0:amd64.
Preparing to unpack .../212-libosinfo-1.0-0_1.11.0-2build3_amd64.deb ...
Unpacking libosinfo-1.0-0:amd64 (1.11.0-2build3) ...
Selecting previously unselected package gir1.2-libosinfo-1.0:amd64.
Preparing to unpack .../213-gir1.2-libosinfo-1.0_1.11.0-2build3_amd64.deb ...
Unpacking gir1.2-libosinfo-1.0:amd64 (1.11.0-2build3) ...
Selecting previously unselected package libvirt-glib-1.0-0:amd64.
Preparing to unpack .../214-libvirt-glib-1.0-0_5.0.0-2build3_amd64.deb ...
Unpacking libvirt-glib-1.0-0:amd64 (5.0.0-2build3) ...
Selecting previously unselected package gir1.2-libvirt-glib-1.0:amd64.
Preparing to unpack .../215-gir1.2-libvirt-glib-1.0_5.0.0-2build3_amd64.deb ...
Unpacking gir1.2-libvirt-glib-1.0:amd64 (5.0.0-2build3) ...
Selecting previously unselected package xorriso.
Preparing to unpack .../216-xorriso_1%3a1.5.6-1.1ubuntu3_amd64.deb ...
Unpacking xorriso (1:1.5.6-1.1ubuntu3) ...
Selecting previously unselected package virtinst.
Preparing to unpack .../217-virtinst_1%3a4.1.0-3_all.deb ...
Unpacking virtinst (1:4.1.0-3) ...
Selecting previously unselected package virt-manager.
Preparing to unpack .../218-virt-manager_1%3a4.1.0-3_all.deb ...
Unpacking virt-manager (1:4.1.0-3) ...
Selecting previously unselected package virt-viewer.
Preparing to unpack .../219-virt-viewer_11.0-3build2_amd64.deb ...
Unpacking virt-viewer (11.0-3build2) ...
Selecting previously unselected package libnss-mymachines:amd64.
Preparing to unpack .../220-libnss-mymachines_255.4-1ubuntu8.4_amd64.deb ...
Unpacking libnss-mymachines:amd64 (255.4-1ubuntu8.4) ...
Selecting previously unselected package ovmf.
Preparing to unpack .../221-ovmf_2024.02-2_all.deb ...
Unpacking ovmf (2024.02-2) ...
Setting up libpipewire-0.3-common (1.0.5-1ubuntu1) ...
Setting up libxcb-dri3-0:amd64 (1.15-1ubuntu2) ...
Setting up libcdparanoia0:amd64 (3.10.2+debian-14build3) ...
Setting up libwayland-server0:amd64 (1.22.0-2.1build1) ...
Setting up gtk-update-icon-cache (3.24.41-4ubuntu1.1) ...
Setting up libpciaccess0:amd64 (0.17-3build1) ...
Setting up gir1.2-gstreamer-1.0:amd64 (1.24.2-1) ...
Setting up session-migration (0.3.9build1) ...
Created symlink /etc/systemd/user/graphical-session-pre.target.wants/session-migration.service → /usr/lib/systemd/user/session-migration.service.
Setting up libraw1394-11:amd64 (2.1.2-2build3) ...
Setting up libxft2:amd64 (2.3.6-1build1) ...
Setting up libproxy1v5:amd64 (0.5.4-4build1) ...
Setting up libdrm-nouveau2:amd64 (2.4.120-2build1) ...
Setting up gir1.2-freedesktop:amd64 (1.80.1-1) ...
Setting up libtag1v5-vanilla:amd64 (1.13.1-1build1) ...
Setting up libxdamage1:amd64 (1:1.1.6-1build1) ...
Setting up libxcb-xfixes0:amd64 (1.15-1ubuntu2) ...
Setting up libogg0:amd64 (1.3.5-3build1) ...
Setting up python3-cairo (1.25.1-2build2) ...
Setting up libphodav-3.0-common (3.0-8build3) ...
Setting up libspeex1:amd64 (1.2.1-2ubuntu2) ...
Setting up libv4lconvert0t64:amd64 (1.26.1-4build3) ...
Setting up libpangoxft-1.0-0:amd64 (1.52.1+ds-1build1) ...
Setting up libxi6:amd64 (2:1.8.1-1build1) ...
Setting up libtwolame0:amd64 (0.4.0-2build3) ...
Setting up libvte-2.91-common (0.76.0-1ubuntu0.1) ...
Setting up gir1.2-gdkpixbuf-2.0:amd64 (2.42.10+dfsg-3ubuntu3.1) ...
Setting up libvisual-0.4-0:amd64 (0.4.2-2build1) ...
Setting up libdrm-radeon1:amd64 (2.4.120-2build1) ...
Setting up libglvnd0:amd64 (1.7.0-1build1) ...
Setting up libxtst6:amd64 (2:1.2.3-1.1build1) ...
Setting up libxcb-glx0:amd64 (1.15-1ubuntu2) ...
Setting up libdbusmenu-glib4:amd64 (18.10.20180917~bzr492+repack1-3.1ubuntu5) ...
Setting up libdrm-intel1:amd64 (2.4.120-2build1) ...
Setting up spice-client-glib-usb-acl-helper (0.42-2ubuntu2) ...
Setting up libyajl2:amd64 (2.1.0-5build1) ...
Setting up msr-tools (1.3-5build1) ...
Setting up libwebrtc-audio-processing1:amd64 (0.3.1-0ubuntu6) ...
Setting up libboost-thread1.83.0:amd64 (1.83.0-2.1ubuntu3) ...
Setting up libharfbuzz-gobject0:amd64 (8.3.0-2build2) ...
Setting up libigdgmm12:amd64 (22.3.17+ds1-1) ...
Setting up libsoup-3.0-common (3.4.4-5build2) ...
Setting up dnsmasq-base (2.90-2build2) ...
Setting up libmpg123-0t64:amd64 (1.32.5-1ubuntu1) ...
Setting up libfdt1:amd64 (1.7.0-2build1) ...
Setting up gir1.2-harfbuzz-0.0:amd64 (8.3.0-2build2) ...
Setting up libcolord2:amd64 (1.4.7-1build2) ...
Setting up libnfs14:amd64 (5.0.2-1build1) ...
Setting up libxxf86vm1:amd64 (1:1.1.4-1build4) ...
Setting up liborc-0.4-0t64:amd64 (1:0.4.38-1ubuntu0.1) ...
Setting up acl (2.3.2-1build1) ...
Setting up ovmf (2024.02-2) ...
Setting up dns-root-data (2023112702~willsync1) ...
Setting up libxcb-present0:amd64 (1.15-1ubuntu2) ...
Setting up libdconf1:amd64 (0.40.0-4build2) ...
Setting up python3-libxml2:amd64 (2.9.14+dfsg-1.3ubuntu3) ...
Setting up libasound2-data (1.2.11-1build2) ...
Setting up gir1.2-pango-1.0:amd64 (1.52.1+ds-1build1) ...
Setting up libasound2t64:amd64 (1.2.11-1build2) ...
Setting up libllvm17t64:amd64 (1:17.0.6-9ubuntu1) ...
Setting up libvirt-glib-1.0-data (5.0.0-2build3) ...
Setting up libva2:amd64 (2.20.0-2build1) ...
Setting up libepoxy0:amd64 (1.5.10-1build1) ...
Setting up libspa-0.2-modules:amd64 (1.0.5-1ubuntu1) ...
Setting up libxfixes3:amd64 (1:6.0.0-2build1) ...
Setting up libxcb-sync1:amd64 (1.15-1ubuntu2) ...
Setting up libboost-iostreams1.83.0:amd64 (1.83.0-2.1ubuntu3) ...
Setting up libatspi2.0-0t64:amd64 (2.52.0-1build1) ...
Setting up libopus0:amd64 (1.4-1build1) ...
Setting up libxinerama1:amd64 (2:1.1.4-3build1) ...
Setting up intel-media-va-driver:amd64 (24.1.0+dfsg1-1) ...
Setting up libxv1:amd64 (2:1.0.11-1.1build1) ...
Setting up libvorbis0a:amd64 (1.3.7-1build3) ...
Setting up libxrandr2:amd64 (2:1.5.2-2build1) ...
Setting up libdv4t64:amd64 (1.0.0-17.1build1) ...
Setting up osinfo-db (0.20240523-0ubuntu0.24.04.1) ...
Setting up libpcsclite1:amd64 (2.0.3-1build1) ...
Setting up libdaxctl1:amd64 (77-2ubuntu2) ...
Setting up libglapi-mesa:amd64 (24.0.9-0ubuntu0.1) ...
Setting up qemu-system-data (1:8.2.2+ds-0ubuntu1.2) ...
Setting up libvulkan1:amd64 (1.3.275.0-1build1) ...
Setting up seabios (1.16.3-2) ...
Setting up libv4l-0t64:amd64 (1.26.1-4build3) ...
Setting up libxcb-dri2-0:amd64 (1.15-1ubuntu2) ...
Setting up libvirt0:amd64 (10.0.0-2ubuntu8.3) ...
Setting up systemd-container (255.4-1ubuntu8.4) ...
Created symlink /etc/systemd/system/multi-user.target.wants/machines.target → /usr/lib/systemd/system/machines.target.
Setting up libvpx9:amd64 (1.14.0-1ubuntu2.1) ...
Setting up libslirp0:amd64 (4.7.0-1ubuntu3) ...
Setting up alsa-topology-conf (1.2.5.1-2) ...
Setting up libtag1v5:amd64 (1.13.1-1build1) ...
Setting up libvirt-glib-1.0-0:amd64 (5.0.0-2build3) ...
Setting up cpu-checker (0.7-1.3build2) ...
Setting up libisofs6t64:amd64 (1.5.6.pl01-1.1ubuntu2) ...
Setting up libasyncns0:amd64 (0.8-6build4) ...
Setting up libxshmfence1:amd64 (1.3-1build5) ...
Setting up at-spi2-common (2.52.0-1build1) ...
Setting up libwavpack1:amd64 (5.6.0-1build1) ...
Setting up libusbredirparser1t64:amd64 (0.13.0-2.1build1) ...
Setting up libxcb-randr0:amd64 (1.15-1ubuntu2) ...
Setting up ipxe-qemu (1.21.1+git-20220113.fbbdc3926-0ubuntu2) ...
Setting up libtheora0:amd64 (1.1.1+dfsg.1-16.1build3) ...
Setting up libburn4t64:amd64 (1.5.6-1.1build1) ...
Setting up libndctl6:amd64 (77-2ubuntu2) ...
Setting up librdmacm1t64:amd64 (50.0-2build2) ...
Setting up ipxe-qemu-256k-compat-efi-roms (1.0.0+git-20150424.a25a16d-0ubuntu5) ...
Setting up libflac12t64:amd64 (1.4.3+ds-2.1ubuntu2) ...
Setting up libbrlapi0.8:amd64 (6.6-4ubuntu5) ...
Setting up libwayland-egl1:amd64 (1.22.0-2.1build1) ...
Setting up libxss1:amd64 (1:1.2.3-1build3) ...
Setting up libtpms0:amd64 (0.9.3-0ubuntu4) ...
Setting up glib-networking-common (2.80.0-1build1) ...
Setting up liburing2:amd64 (2.5-1build1) ...
Setting up libiscsi7:amd64 (1.19.0-3build4) ...
Setting up libisoburn1t64:amd64 (1:1.5.6-1.1ubuntu3) ...
Setting up libxml2-utils (2.9.14+dfsg-1.3ubuntu3) ...
Setting up libvirt-daemon-config-nwfilter (10.0.0-2ubuntu8.3) ...
Setting up xorriso (1:1.5.6-1.1ubuntu3) ...
Setting up libsamplerate0:amd64 (0.2.2-4build1) ...
Setting up libpmem1:amd64 (1.13.1-1.1ubuntu2) ...
Setting up libva-x11-2:amd64 (2.20.0-2build1) ...
Setting up python3-gi-cairo (3.48.2-1) ...
Setting up libxcomposite1:amd64 (1:0.4.5-1build3) ...
Setting up libgtksourceview-4-common (4.8.4-5build4) ...
Setting up libpipewire-0.3-0t64:amd64 (1.0.5-1ubuntu1) ...
Setting up libmp3lame0:amd64 (3.100-6build1) ...
Setting up i965-va-driver:amd64 (2.4.1+dfsg1-1build2) ...
Setting up libosinfo-l10n (1.11.0-2build3) ...
Setting up libvorbisenc2:amd64 (1.3.7-1build3) ...
Setting up libaa1:amd64 (1.4p5-51.1) ...
Setting up libiec61883-0:amd64 (1.2.0-6build1) ...
Setting up libdrm-amdgpu1:amd64 (2.4.120-2build1) ...
Setting up mdevctl (1.3.0-1ubuntu2) ...
Setting up libwayland-client0:amd64 (1.22.0-2.1build1) ...
Setting up libavc1394-0:amd64 (0.5.4-5build3) ...
Setting up libgl1-amber-dri:amd64 (21.3.9-0ubuntu2) ...
Setting up mesa-vulkan-drivers:amd64 (24.0.9-0ubuntu0.1) ...
Setting up glib-networking-services (2.80.0-1build1) ...
Setting up libvirt-daemon-config-network (10.0.0-2ubuntu8.3) ...
Setting up librados2 (19.2.0~git20240301.4c76c50-0ubuntu6.1) ...
Setting up libatk1.0-0t64:amd64 (2.52.0-1build1) ...
Setting up libgbm1:amd64 (24.0.9-0ubuntu0.1) ...
Setting up alsa-ucm-conf (1.2.10-1ubuntu5) ...
Setting up gir1.2-atk-1.0:amd64 (2.52.0-1build1) ...
Setting up python3-libvirt (10.0.0-1build1) ...
Setting up libvirt-clients (10.0.0-2ubuntu8.3) ...
Setting up libxcursor1:amd64 (1:1.2.1-1build1) ...
Setting up libgl1-mesa-dri:amd64 (24.0.9-0ubuntu0.1) ...
Setting up gir1.2-libvirt-glib-1.0:amd64 (5.0.0-2build3) ...
Setting up libgstreamer-plugins-base1.0-0:amd64 (1.24.2-1ubuntu0.1) ...
Setting up dconf-service (0.40.0-4build2) ...
Setting up libcacard0:amd64 (1:2.8.0-3build4) ...
Setting up libusbredirhost1t64:amd64 (0.13.0-2.1build1) ...
Setting up libgstreamer-plugins-good1.0-0:amd64 (1.24.2-1ubuntu1) ...
Setting up gstreamer1.0-plugins-base:amd64 (1.24.2-1ubuntu0.1) ...
Setting up libvirglrenderer1:amd64 (1.0.0-1ubuntu2) ...
Setting up libvirt-l10n (10.0.0-2ubuntu8.3) ...
Setting up libnss-mymachines:amd64 (255.4-1ubuntu8.4) ...
Setting up swtpm (0.7.3-0ubuntu5.24.04.1) ...
Setting up libshout3:amd64 (2.4.6-1build2) ...
Setting up libpmemobj1:amd64 (1.13.1-1.1ubuntu2) ...
Setting up libvirt-daemon-driver-qemu (10.0.0-2ubuntu8.3) ...
Setting up librbd1 (19.2.0~git20240301.4c76c50-0ubuntu6.1) ...
Setting up libvirt-daemon-system-systemd (10.0.0-2ubuntu8.3) ...
Setting up libjack-jackd2-0:amd64 (1.9.21~dfsg-3ubuntu3) ...
Setting up libwayland-cursor0:amd64 (1.22.0-2.1build1) ...
Setting up libdecor-0-0:amd64 (0.2.2-1build2) ...
Setting up libsndfile1:amd64 (1.2.2-1ubuntu5) ...
Setting up qemu-utils (1:8.2.2+ds-0ubuntu1.2) ...
Setting up mesa-va-drivers:amd64 (24.0.9-0ubuntu0.1) ...
Setting up libvirt-daemon (10.0.0-2ubuntu8.3) ...
Setting up qemu-block-extra (1:8.2.2+ds-0ubuntu1.2) ...
Created symlink /etc/systemd/system/multi-user.target.wants/run-qemu.mount → /usr/lib/systemd/system/run-qemu.mount.
Setting up libatk-bridge2.0-0t64:amd64 (2.52.0-1build1) ...
Setting up libglx-mesa0:amd64 (24.0.9-0ubuntu0.1) ...
Setting up gstreamer1.0-x:amd64 (1.24.2-1ubuntu0.1) ...
Setting up qemu-system-common (1:8.2.2+ds-0ubuntu1.2) ...
Created symlink /etc/systemd/system/multi-user.target.wants/qemu-kvm.service → /usr/lib/systemd/system/qemu-kvm.service.
Setting up libglx0:amd64 (1.7.0-1build1) ...
Setting up dconf-gsettings-backend:amd64 (0.40.0-4build2) ...
Setting up libpulse0:amd64 (1:16.1+dfsg1-2ubuntu10) ...
Setting up libspice-server1:amd64 (0.15.1-1build2) ...
Setting up qemu-system-x86 (1:8.2.2+ds-0ubuntu1.2) ...
Setting up libgvnc-1.0-0:amd64 (1.3.1-1build2) ...
Setting up swtpm-tools (0.7.3-0ubuntu5.24.04.1) ...
info: Selecting GID from range 100 to 999 ...
info: Adding group `swtpm' (GID 123) ...
info: The home dir /var/lib/swtpm you specified can't be accessed: No such file or directory

info: Selecting UID from range 100 to 999 ...

info: Adding system user `swtpm' (UID 116) ...
info: Adding new user `swtpm' (UID 116) with group `swtpm' ...
info: Not creating home directory `/var/lib/swtpm'.
Setting up libgl1:amd64 (1.7.0-1build1) ...
Setting up va-driver-all:amd64 (2.20.0-2build1) ...
Setting up libvirt-daemon-system (10.0.0-2ubuntu8.3) ...
useradd warning: libvirt-qemu's uid 64055 is greater than SYS_UID_MAX 999
Not enabling default network as no free network was found
Created symlink /etc/systemd/system/multi-user.target.wants/libvirtd.service → /usr/lib/systemd/system/libvirtd.service.
Created symlink /etc/systemd/system/sockets.target.wants/virtlockd.socket → /usr/lib/systemd/system/virtlockd.socket.
Created symlink /etc/systemd/system/sockets.target.wants/virtlogd.socket → /usr/lib/systemd/system/virtlogd.socket.
Created symlink /etc/systemd/system/sockets.target.wants/libvirtd.socket → /usr/lib/systemd/system/libvirtd.socket.
Created symlink /etc/systemd/system/sockets.target.wants/libvirtd-ro.socket → /usr/lib/systemd/system/libvirtd-ro.socket.
Created symlink /etc/systemd/system/sockets.target.wants/libvirtd-admin.socket → /usr/lib/systemd/system/libvirtd-admin.socket.
Created symlink /etc/systemd/system/sockets.target.wants/virtlockd-admin.socket → /usr/lib/systemd/system/virtlockd-admin.socket.
Created symlink /etc/systemd/system/sockets.target.wants/virtlogd-admin.socket → /usr/lib/systemd/system/virtlogd-admin.socket.
Created symlink /etc/systemd/system/multi-user.target.wants/libvirt-guests.service → /usr/lib/systemd/system/libvirt-guests.service.
Created symlink /etc/systemd/system/multi-user.target.wants/virtlockd.service → /usr/lib/systemd/system/virtlockd.service.
Created symlink /etc/systemd/system/multi-user.target.wants/virtlogd.service → /usr/lib/systemd/system/virtlogd.service.
Setting up libvirt-daemon dnsmasq configuration.
Setting up libsdl2-2.0-0:amd64 (2.30.0+dfsg-1build3) ...
Setting up libgtk-3-common (3.24.41-4ubuntu1.1) ...
Setting up gsettings-desktop-schemas (46.1-0ubuntu1) ...
Setting up qemu-system-modules-opengl (1:8.2.2+ds-0ubuntu1.2) ...
Setting up qemu-system-modules-spice (1:8.2.2+ds-0ubuntu1.2) ...
Setting up adwaita-icon-theme (46.0-1) ...
update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode
Setting up humanity-icon-theme (0.6.16) ...
Setting up ubuntu-mono (24.04-0ubuntu1) ...
Processing triggers for man-db (2.12.0-4build2) ...
Processing triggers for libglib2.0-0t64:amd64 (2.80.0-6ubuntu3.1) ...
Processing triggers for dbus (1.14.10-4ubuntu4.1) ...
Setting up libgtk-3-0t64:amd64 (3.24.41-4ubuntu1.1) ...
Processing triggers for shared-mime-info (2.4-4) ...
Setting up at-spi2-core (2.52.0-1build1) ...
Setting up glib-networking:amd64 (2.80.0-1build1) ...
Processing triggers for install-info (7.1-3build2) ...
Setting up libdecor-0-plugin-1-gtk:amd64 (0.2.2-1build2) ...
Setting up libgtk-vnc-2.0-0:amd64 (1.3.1-1build2) ...
Setting up libdbusmenu-gtk3-4:amd64 (18.10.20180917~bzr492+repack1-3.1ubuntu5) ...
Processing triggers for hicolor-icon-theme (0.17-2) ...
Processing triggers for libc-bin (2.39-0ubuntu8.3) ...
Setting up libsoup-3.0-0:amd64 (3.4.4-5build2) ...
Setting up gir1.2-gtk-3.0:amd64 (3.24.41-4ubuntu1.1) ...
Setting up libgtk-3-bin (3.24.41-4ubuntu1.1) ...
Setting up libphodav-3.0-0:amd64 (3.0-8build3) ...
Setting up libvte-2.91-0:amd64 (0.76.0-1ubuntu0.1) ...
Setting up libayatana-ido3-0.4-0:amd64 (0.10.1-1build2) ...
Setting up libgtksourceview-4-0:amd64 (4.8.4-5build4) ...
Setting up libosinfo-1.0-0:amd64 (1.11.0-2build3) ...
Setting up gir1.2-gtk-vnc-2.0:amd64 (1.3.1-1build2) ...
Setting up gir1.2-vte-2.91:amd64 (0.76.0-1ubuntu0.1) ...
Setting up gir1.2-libosinfo-1.0:amd64 (1.11.0-2build3) ...
Setting up libayatana-indicator3-7:amd64 (0.9.4-1build1) ...
Setting up libspice-client-glib-2.0-8:amd64 (0.42-2ubuntu2) ...
Setting up gir1.2-gtksource-4:amd64 (4.8.4-5build4) ...
Setting up virtinst (1:4.1.0-3) ...
Setting up gir1.2-spiceclientglib-2.0:amd64 (0.42-2ubuntu2) ...
Setting up qemu-system-gui (1:8.2.2+ds-0ubuntu1.2) ...
Setting up gstreamer1.0-plugins-good:amd64 (1.24.2-1ubuntu1) ...
Setting up virt-manager (1:4.1.0-3) ...
Setting up libayatana-appindicator3-1 (0.5.93-1build3) ...
Setting up libspice-client-gtk-3.0-5:amd64 (0.42-2ubuntu2) ...
Setting up gir1.2-spiceclientgtk-3.0:amd64 (0.42-2ubuntu2) ...
Setting up virt-viewer (11.0-3build2) ...
Setting up gir1.2-ayatanaappindicator3-0.1 (0.5.93-1build3) ...
Processing triggers for libc-bin (2.39-0ubuntu8.3) ...
Scanning processes...
Scanning processor microcode...
Scanning linux images...

Running kernel seems to be up-to-date.

The processor microcode seems to be up-to-date.

No services need to be restarted.

No containers need to be restarted.

No user sessions are running outdated binaries.

No VM guests are running outdated hypervisor (qemu) binaries on this host.
Executing:    sudo sh -c 'apt-get install libosinfo-bin'
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following NEW packages will be installed:
  libosinfo-bin
0 upgraded, 1 newly installed, 0 to remove and 2 not upgraded.
Need to get 21.8 kB of archives.
After this operation, 94.2 kB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu noble/universe amd64 libosinfo-bin amd64 1.11.0-2build3 [21.8 kB]
Fetched 21.8 kB in 1s (25.9 kB/s)
Selecting previously unselected package libosinfo-bin.
(Reading database ... 129298 files and directories currently installed.)
Preparing to unpack .../libosinfo-bin_1.11.0-2build3_amd64.deb ...
Unpacking libosinfo-bin (1.11.0-2build3) ...
Setting up libosinfo-bin (1.11.0-2build3) ...
Processing triggers for man-db (2.12.0-4build2) ...
Scanning processes...
Scanning processor microcode...
Scanning linux images...

Running kernel seems to be up-to-date.

The processor microcode seems to be up-to-date.

No services need to be restarted.

No containers need to be restarted.

No user sessions are running outdated binaries.

No VM guests are running outdated hypervisor (qemu) binaries on this host.
Executing:    sudo sh -c 'apt-get install libguestfs-tools'
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following additional packages will be installed:
  attr augeas-lenses db-util db5.3-util exfatprogs extlinux f2fs-tools guestfish guestfs-tools guestmount hfsplus icoutils ldmtool libafflib0t64 libaugeas0
  libauthen-sasl-perl libbfio1 libclone-perl libconfig9 libdata-dump-perl libdate-manip-perl libencode-locale-perl libewf2 libfile-listing-perl libfont-afm-perl
  libfuse2t64 libguestfs-hfsplus libguestfs-perl libguestfs-reiserfs libguestfs-xfs libguestfs0t64 libhfsp0t64 libhivex0 libhtml-form-perl libhtml-format-perl
  libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl
  libio-html-perl libio-socket-ssl-perl libldm-1.0-0t64 liblua5.3-0 liblwp-mediatypes-perl liblwp-protocol-https-perl libmailtools-perl libnet-http-perl
  libnet-smtp-ssl-perl libnet-ssleay-perl librpm9t64 librpmio9t64 libstring-shellquote-perl libsys-virt-perl libtimedate-perl libtry-tiny-perl libtsk19t64 liburi-perl
  libvhdi1 libvmdk1 libwin-hivex-perl libwww-perl libwww-robotrules-perl libxml-parser-perl libxml-xpath-perl libyara10 lsscsi lzop mtools perl-openssl-defaults
  reiserfsprogs rpm-common scrub sleuthkit supermin syslinux syslinux-common virt-p2v
Suggested packages:
  augeas-doc libterm-readline-gnu-perl | libterm-readline-perl-perl augeas-tools libdigest-hmac-perl libgssapi-perl libguestfs-gfs2 libguestfs-jfs libguestfs-nilfs
  libguestfs-rescue libguestfs-rsync libguestfs-zfs libio-compress-brotli-perl libcrypt-ssleay-perl libsub-name-perl libbusiness-isbn-perl libregexp-ipv6-perl
  libauthen-ntlm-perl floppyd debhelper autopsy mac-robber
Recommended packages:
  linux-image-amd64
The following NEW packages will be installed:
  attr augeas-lenses db-util db5.3-util exfatprogs extlinux f2fs-tools guestfish guestfs-tools guestmount hfsplus icoutils ldmtool libafflib0t64 libaugeas0
  libauthen-sasl-perl libbfio1 libclone-perl libconfig9 libdata-dump-perl libdate-manip-perl libencode-locale-perl libewf2 libfile-listing-perl libfont-afm-perl
  libfuse2t64 libguestfs-hfsplus libguestfs-perl libguestfs-reiserfs libguestfs-tools libguestfs-xfs libguestfs0t64 libhfsp0t64 libhivex0 libhtml-form-perl
  libhtml-format-perl libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl libhttp-message-perl
  libhttp-negotiate-perl libio-html-perl libio-socket-ssl-perl libldm-1.0-0t64 liblua5.3-0 liblwp-mediatypes-perl liblwp-protocol-https-perl libmailtools-perl
  libnet-http-perl libnet-smtp-ssl-perl libnet-ssleay-perl librpm9t64 librpmio9t64 libstring-shellquote-perl libsys-virt-perl libtimedate-perl libtry-tiny-perl
  libtsk19t64 liburi-perl libvhdi1 libvmdk1 libwin-hivex-perl libwww-perl libwww-robotrules-perl libxml-parser-perl libxml-xpath-perl libyara10 lsscsi lzop mtools
  perl-openssl-defaults reiserfsprogs rpm-common scrub sleuthkit supermin syslinux syslinux-common virt-p2v
0 upgraded, 82 newly installed, 0 to remove and 2 not upgraded.
Need to get 19.1 MB of archives.
After this operation, 82.4 MB of additional disk space will be used.
Do you want to continue? [Y/n]
Get:1 http://archive.ubuntu.com/ubuntu noble/main amd64 attr amd64 1:2.5.2-1build1 [22.8 kB]
Get:2 http://archive.ubuntu.com/ubuntu noble/universe amd64 augeas-lenses all 1.14.1-1build2 [323 kB]
Get:3 http://archive.ubuntu.com/ubuntu noble/main amd64 db5.3-util amd64 5.3.28+dfsg2-7 [71.7 kB]
Get:4 http://archive.ubuntu.com/ubuntu noble/universe amd64 exfatprogs amd64 1.2.2-1build1 [65.9 kB]
Get:5 http://archive.ubuntu.com/ubuntu noble/universe amd64 extlinux amd64 3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3 [147 kB]
Get:6 http://archive.ubuntu.com/ubuntu noble/universe amd64 f2fs-tools amd64 1.16.0-1 [202 kB]
Get:7 http://archive.ubuntu.com/ubuntu noble/universe amd64 libaugeas0 amd64 1.14.1-1build2 [166 kB]
Get:8 http://archive.ubuntu.com/ubuntu noble/universe amd64 libfuse2t64 amd64 2.9.9-8.1build1 [89.9 kB]
Get:9 http://archive.ubuntu.com/ubuntu noble/universe amd64 libhivex0 amd64 1.3.23-1build7 [26.4 kB]
Get:10 http://archive.ubuntu.com/ubuntu noble/universe amd64 liblua5.3-0 amd64 5.3.6-2build2 [143 kB]
Get:11 http://archive.ubuntu.com/ubuntu noble/universe amd64 librpmio9t64 amd64 4.18.2+dfsg-2.1build2 [95.2 kB]
Get:12 http://archive.ubuntu.com/ubuntu noble/universe amd64 librpm9t64 amd64 4.18.2+dfsg-2.1build2 [217 kB]
Get:13 http://archive.ubuntu.com/ubuntu noble/universe amd64 libafflib0t64 amd64 3.7.20-1.1ubuntu5 [224 kB]
Get:14 http://archive.ubuntu.com/ubuntu noble/universe amd64 libewf2 amd64 20140814-1build3 [573 kB]
Get:15 http://archive.ubuntu.com/ubuntu noble/universe amd64 libvhdi1 amd64 20210425-1build5 [425 kB]
Get:16 http://archive.ubuntu.com/ubuntu noble/universe amd64 libbfio1 amd64 20170123-6 [306 kB]
Get:17 http://archive.ubuntu.com/ubuntu noble/universe amd64 libvmdk1 amd64 20200926-2build5 [453 kB]
Get:18 http://archive.ubuntu.com/ubuntu noble/universe amd64 libtsk19t64 amd64 4.12.1+dfsg-1.1ubuntu2 [435 kB]
Get:19 http://archive.ubuntu.com/ubuntu noble/universe amd64 libyara10 amd64 4.5.0-1build2 [203 kB]
Get:20 http://archive.ubuntu.com/ubuntu noble/universe amd64 supermin amd64 5.2.2-4ubuntu4 [529 kB]
Get:21 http://archive.ubuntu.com/ubuntu noble/main amd64 db-util all 1:5.3.21ubuntu2 [2,412 B]
Get:22 http://archive.ubuntu.com/ubuntu noble/main amd64 libencode-locale-perl all 1.05-3 [11.6 kB]
Get:23 http://archive.ubuntu.com/ubuntu noble/main amd64 libtimedate-perl all 2.3300-2 [34.0 kB]
Get:24 http://archive.ubuntu.com/ubuntu noble/main amd64 libhttp-date-perl all 6.06-1 [10.2 kB]
Get:25 http://archive.ubuntu.com/ubuntu noble/main amd64 libfile-listing-perl all 6.16-1 [11.3 kB]
Get:26 http://archive.ubuntu.com/ubuntu noble/main amd64 libhtml-tagset-perl all 3.20-6 [11.3 kB]
Get:27 http://archive.ubuntu.com/ubuntu noble/main amd64 liburi-perl all 5.27-1 [88.0 kB]
Get:28 http://archive.ubuntu.com/ubuntu noble/main amd64 libhtml-parser-perl amd64 3.81-1build3 [85.8 kB]
Get:29 http://archive.ubuntu.com/ubuntu noble/main amd64 libhtml-tree-perl all 5.07-3 [200 kB]
Get:30 http://archive.ubuntu.com/ubuntu noble/main amd64 libclone-perl amd64 0.46-1build3 [10.7 kB]
Get:31 http://archive.ubuntu.com/ubuntu noble/main amd64 libio-html-perl all 1.004-3 [15.9 kB]
Get:32 http://archive.ubuntu.com/ubuntu noble/main amd64 liblwp-mediatypes-perl all 6.04-2 [20.1 kB]
Get:33 http://archive.ubuntu.com/ubuntu noble/main amd64 libhttp-message-perl all 6.45-1ubuntu1 [78.2 kB]
Get:34 http://archive.ubuntu.com/ubuntu noble/main amd64 libhttp-cookies-perl all 6.11-1 [18.2 kB]
Get:35 http://archive.ubuntu.com/ubuntu noble/main amd64 libhttp-negotiate-perl all 6.01-2 [12.4 kB]
Get:36 http://archive.ubuntu.com/ubuntu noble/main amd64 perl-openssl-defaults amd64 7build3 [6,626 B]
Get:37 http://archive.ubuntu.com/ubuntu noble/main amd64 libnet-ssleay-perl amd64 1.94-1build4 [316 kB]
Get:38 http://archive.ubuntu.com/ubuntu noble/main amd64 libio-socket-ssl-perl all 2.085-1 [195 kB]
Get:39 http://archive.ubuntu.com/ubuntu noble/main amd64 libnet-http-perl all 6.23-1 [22.3 kB]
Get:40 http://archive.ubuntu.com/ubuntu noble/main amd64 liblwp-protocol-https-perl all 6.13-1 [9,006 B]
Get:41 http://archive.ubuntu.com/ubuntu noble/main amd64 libtry-tiny-perl all 0.31-2 [20.8 kB]
Get:42 http://archive.ubuntu.com/ubuntu noble/main amd64 libwww-robotrules-perl all 6.02-1 [12.6 kB]
Get:43 http://archive.ubuntu.com/ubuntu noble/main amd64 libwww-perl all 6.76-1 [138 kB]
Get:44 http://archive.ubuntu.com/ubuntu noble/universe amd64 icoutils amd64 0.32.3-4build2 [55.7 kB]
Get:45 http://archive.ubuntu.com/ubuntu noble/universe amd64 libldm-1.0-0t64 amd64 0.2.5-1.1build2 [24.3 kB]
Get:46 http://archive.ubuntu.com/ubuntu noble/universe amd64 ldmtool amd64 0.2.5-1.1build2 [13.8 kB]
Get:47 http://archive.ubuntu.com/ubuntu noble/main amd64 lsscsi amd64 0.32-1build1 [48.2 kB]
Get:48 http://archive.ubuntu.com/ubuntu noble/main amd64 lzop amd64 1.04-2build3 [82.2 kB]
Get:49 http://archive.ubuntu.com/ubuntu noble/main amd64 mtools amd64 4.0.43-1build1 [197 kB]
Get:50 http://archive.ubuntu.com/ubuntu noble/universe amd64 scrub amd64 2.6.1-1build2 [30.8 kB]
Get:51 http://archive.ubuntu.com/ubuntu noble/main amd64 libdate-manip-perl all 6.95-1 [923 kB]
Get:52 http://archive.ubuntu.com/ubuntu noble/universe amd64 sleuthkit amd64 4.12.1+dfsg-1.1ubuntu2 [383 kB]
Get:53 http://archive.ubuntu.com/ubuntu noble/universe amd64 syslinux amd64 3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3 [157 kB]
Get:54 http://archive.ubuntu.com/ubuntu noble/universe amd64 libguestfs0t64 amd64 1:1.52.0-5ubuntu3 [3,213 kB]
Get:55 http://archive.ubuntu.com/ubuntu noble/universe amd64 libconfig9 amd64 1.5-0.4build2 [23.2 kB]
Get:56 http://archive.ubuntu.com/ubuntu noble/universe amd64 guestfish amd64 1:1.52.0-5ubuntu3 [624 kB]
Get:57 http://archive.ubuntu.com/ubuntu noble/main amd64 libxml-parser-perl amd64 2.47-1build3 [204 kB]
Get:58 http://archive.ubuntu.com/ubuntu noble/universe amd64 libxml-xpath-perl all 1.48-1 [67.5 kB]
Get:59 http://archive.ubuntu.com/ubuntu noble/universe amd64 libwin-hivex-perl amd64 1.3.23-1build7 [36.5 kB]
Get:60 http://archive.ubuntu.com/ubuntu noble/universe amd64 libsys-virt-perl amd64 10.0.0-1build2 [268 kB]
Get:61 http://archive.ubuntu.com/ubuntu noble/universe amd64 libguestfs-perl amd64 1:1.52.0-5ubuntu3 [276 kB]
Get:62 http://archive.ubuntu.com/ubuntu noble/main amd64 libstring-shellquote-perl all 1.04-3 [11.3 kB]
Get:63 http://archive.ubuntu.com/ubuntu noble/universe amd64 guestfs-tools amd64 1.52.0-2ubuntu5 [4,284 kB]
Get:64 http://archive.ubuntu.com/ubuntu noble/universe amd64 guestmount amd64 1:1.52.0-5ubuntu3 [58.0 kB]
Get:65 http://archive.ubuntu.com/ubuntu noble/main amd64 libhfsp0t64 amd64 1.0.4-17.1build1 [36.8 kB]
Get:66 http://archive.ubuntu.com/ubuntu noble/main amd64 hfsplus amd64 1.0.4-17.1build1 [37.4 kB]
Get:67 http://archive.ubuntu.com/ubuntu noble/main amd64 libdata-dump-perl all 1.25-1 [25.9 kB]
Get:68 http://archive.ubuntu.com/ubuntu noble/main amd64 libfont-afm-perl all 1.20-4 [13.0 kB]
Get:69 http://archive.ubuntu.com/ubuntu noble/main amd64 libhtml-form-perl all 6.11-1 [32.1 kB]
Get:70 http://archive.ubuntu.com/ubuntu noble/main amd64 libhtml-format-perl all 2.16-2 [36.9 kB]
Get:71 http://archive.ubuntu.com/ubuntu noble/main amd64 libhttp-daemon-perl all 6.16-1 [22.4 kB]
Get:72 http://archive.ubuntu.com/ubuntu noble/main amd64 libnet-smtp-ssl-perl all 1.04-2 [6,218 B]
Get:73 http://archive.ubuntu.com/ubuntu noble/main amd64 libmailtools-perl all 2.21-2 [80.4 kB]
Get:74 http://archive.ubuntu.com/ubuntu noble/main amd64 reiserfsprogs amd64 1:3.6.27-7.1build1 [143 kB]
Get:75 http://archive.ubuntu.com/ubuntu noble/universe amd64 rpm-common amd64 4.18.2+dfsg-2.1build2 [34.0 kB]
Get:76 http://archive.ubuntu.com/ubuntu noble/main amd64 syslinux-common all 3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3 [1,261 kB]
Get:77 http://archive.ubuntu.com/ubuntu noble/universe amd64 libguestfs-tools amd64 1:1.52.0-5ubuntu3 [32.5 kB]
Get:78 http://archive.ubuntu.com/ubuntu noble/universe amd64 virt-p2v amd64 1.42.3-1 [232 kB]
Get:79 http://archive.ubuntu.com/ubuntu noble/main amd64 libauthen-sasl-perl all 2.1700-1 [42.9 kB]
Get:80 http://archive.ubuntu.com/ubuntu noble/universe amd64 libguestfs-hfsplus amd64 1:1.52.0-5ubuntu3 [1,576 B]
Get:81 http://archive.ubuntu.com/ubuntu noble/universe amd64 libguestfs-reiserfs amd64 1:1.52.0-5ubuntu3 [1,590 B]
Get:82 http://archive.ubuntu.com/ubuntu noble/universe amd64 libguestfs-xfs amd64 1:1.52.0-5ubuntu3 [1,580 B]
Fetched 19.1 MB in 5s (3,569 kB/s)
Extracting templates from packages: 100%
Selecting previously unselected package attr.
(Reading database ... 129307 files and directories currently installed.)
Preparing to unpack .../00-attr_1%3a2.5.2-1build1_amd64.deb ...
Unpacking attr (1:2.5.2-1build1) ...
Selecting previously unselected package augeas-lenses.
Preparing to unpack .../01-augeas-lenses_1.14.1-1build2_all.deb ...
Unpacking augeas-lenses (1.14.1-1build2) ...
Selecting previously unselected package db5.3-util.
Preparing to unpack .../02-db5.3-util_5.3.28+dfsg2-7_amd64.deb ...
Unpacking db5.3-util (5.3.28+dfsg2-7) ...
Selecting previously unselected package exfatprogs.
Preparing to unpack .../03-exfatprogs_1.2.2-1build1_amd64.deb ...
Unpacking exfatprogs (1.2.2-1build1) ...
Selecting previously unselected package extlinux.
Preparing to unpack .../04-extlinux_3%3a6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3_amd64.deb ...
Unpacking extlinux (3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3) ...
Selecting previously unselected package f2fs-tools.
Preparing to unpack .../05-f2fs-tools_1.16.0-1_amd64.deb ...
Unpacking f2fs-tools (1.16.0-1) ...
Selecting previously unselected package libaugeas0:amd64.
Preparing to unpack .../06-libaugeas0_1.14.1-1build2_amd64.deb ...
Unpacking libaugeas0:amd64 (1.14.1-1build2) ...
Selecting previously unselected package libfuse2t64:amd64.
Preparing to unpack .../07-libfuse2t64_2.9.9-8.1build1_amd64.deb ...
Unpacking libfuse2t64:amd64 (2.9.9-8.1build1) ...
Selecting previously unselected package libhivex0:amd64.
Preparing to unpack .../08-libhivex0_1.3.23-1build7_amd64.deb ...
Unpacking libhivex0:amd64 (1.3.23-1build7) ...
Selecting previously unselected package liblua5.3-0:amd64.
Preparing to unpack .../09-liblua5.3-0_5.3.6-2build2_amd64.deb ...
Unpacking liblua5.3-0:amd64 (5.3.6-2build2) ...
Selecting previously unselected package librpmio9t64.
Preparing to unpack .../10-librpmio9t64_4.18.2+dfsg-2.1build2_amd64.deb ...
Unpacking librpmio9t64 (4.18.2+dfsg-2.1build2) ...
Selecting previously unselected package librpm9t64.
Preparing to unpack .../11-librpm9t64_4.18.2+dfsg-2.1build2_amd64.deb ...
Unpacking librpm9t64 (4.18.2+dfsg-2.1build2) ...
Selecting previously unselected package libafflib0t64:amd64.
Preparing to unpack .../12-libafflib0t64_3.7.20-1.1ubuntu5_amd64.deb ...
Unpacking libafflib0t64:amd64 (3.7.20-1.1ubuntu5) ...
Selecting previously unselected package libewf2:amd64.
Preparing to unpack .../13-libewf2_20140814-1build3_amd64.deb ...
Unpacking libewf2:amd64 (20140814-1build3) ...
Selecting previously unselected package libvhdi1:amd64.
Preparing to unpack .../14-libvhdi1_20210425-1build5_amd64.deb ...
Unpacking libvhdi1:amd64 (20210425-1build5) ...
Selecting previously unselected package libbfio1:amd64.
Preparing to unpack .../15-libbfio1_20170123-6_amd64.deb ...
Unpacking libbfio1:amd64 (20170123-6) ...
Selecting previously unselected package libvmdk1:amd64.
Preparing to unpack .../16-libvmdk1_20200926-2build5_amd64.deb ...
Unpacking libvmdk1:amd64 (20200926-2build5) ...
Selecting previously unselected package libtsk19t64:amd64.
Preparing to unpack .../17-libtsk19t64_4.12.1+dfsg-1.1ubuntu2_amd64.deb ...
Unpacking libtsk19t64:amd64 (4.12.1+dfsg-1.1ubuntu2) ...
Selecting previously unselected package libyara10:amd64.
Preparing to unpack .../18-libyara10_4.5.0-1build2_amd64.deb ...
Unpacking libyara10:amd64 (4.5.0-1build2) ...
Selecting previously unselected package supermin.
Preparing to unpack .../19-supermin_5.2.2-4ubuntu4_amd64.deb ...
Unpacking supermin (5.2.2-4ubuntu4) ...
Selecting previously unselected package db-util.
Preparing to unpack .../20-db-util_1%3a5.3.21ubuntu2_all.deb ...
Unpacking db-util (1:5.3.21ubuntu2) ...
Selecting previously unselected package libencode-locale-perl.
Preparing to unpack .../21-libencode-locale-perl_1.05-3_all.deb ...
Unpacking libencode-locale-perl (1.05-3) ...
Selecting previously unselected package libtimedate-perl.
Preparing to unpack .../22-libtimedate-perl_2.3300-2_all.deb ...
Unpacking libtimedate-perl (2.3300-2) ...
Selecting previously unselected package libhttp-date-perl.
Preparing to unpack .../23-libhttp-date-perl_6.06-1_all.deb ...
Unpacking libhttp-date-perl (6.06-1) ...
Selecting previously unselected package libfile-listing-perl.
Preparing to unpack .../24-libfile-listing-perl_6.16-1_all.deb ...
Unpacking libfile-listing-perl (6.16-1) ...
Selecting previously unselected package libhtml-tagset-perl.
Preparing to unpack .../25-libhtml-tagset-perl_3.20-6_all.deb ...
Unpacking libhtml-tagset-perl (3.20-6) ...
Selecting previously unselected package liburi-perl.
Preparing to unpack .../26-liburi-perl_5.27-1_all.deb ...
Unpacking liburi-perl (5.27-1) ...
Selecting previously unselected package libhtml-parser-perl:amd64.
Preparing to unpack .../27-libhtml-parser-perl_3.81-1build3_amd64.deb ...
Unpacking libhtml-parser-perl:amd64 (3.81-1build3) ...
Selecting previously unselected package libhtml-tree-perl.
Preparing to unpack .../28-libhtml-tree-perl_5.07-3_all.deb ...
Unpacking libhtml-tree-perl (5.07-3) ...
Selecting previously unselected package libclone-perl:amd64.
Preparing to unpack .../29-libclone-perl_0.46-1build3_amd64.deb ...
Unpacking libclone-perl:amd64 (0.46-1build3) ...
Selecting previously unselected package libio-html-perl.
Preparing to unpack .../30-libio-html-perl_1.004-3_all.deb ...
Unpacking libio-html-perl (1.004-3) ...
Selecting previously unselected package liblwp-mediatypes-perl.
Preparing to unpack .../31-liblwp-mediatypes-perl_6.04-2_all.deb ...
Unpacking liblwp-mediatypes-perl (6.04-2) ...
Selecting previously unselected package libhttp-message-perl.
Preparing to unpack .../32-libhttp-message-perl_6.45-1ubuntu1_all.deb ...
Unpacking libhttp-message-perl (6.45-1ubuntu1) ...
Selecting previously unselected package libhttp-cookies-perl.
Preparing to unpack .../33-libhttp-cookies-perl_6.11-1_all.deb ...
Unpacking libhttp-cookies-perl (6.11-1) ...
Selecting previously unselected package libhttp-negotiate-perl.
Preparing to unpack .../34-libhttp-negotiate-perl_6.01-2_all.deb ...
Unpacking libhttp-negotiate-perl (6.01-2) ...
Selecting previously unselected package perl-openssl-defaults:amd64.
Preparing to unpack .../35-perl-openssl-defaults_7build3_amd64.deb ...
Unpacking perl-openssl-defaults:amd64 (7build3) ...
Selecting previously unselected package libnet-ssleay-perl:amd64.
Preparing to unpack .../36-libnet-ssleay-perl_1.94-1build4_amd64.deb ...
Unpacking libnet-ssleay-perl:amd64 (1.94-1build4) ...
Selecting previously unselected package libio-socket-ssl-perl.
Preparing to unpack .../37-libio-socket-ssl-perl_2.085-1_all.deb ...
Unpacking libio-socket-ssl-perl (2.085-1) ...
Selecting previously unselected package libnet-http-perl.
Preparing to unpack .../38-libnet-http-perl_6.23-1_all.deb ...
Unpacking libnet-http-perl (6.23-1) ...
Selecting previously unselected package liblwp-protocol-https-perl.
Preparing to unpack .../39-liblwp-protocol-https-perl_6.13-1_all.deb ...
Unpacking liblwp-protocol-https-perl (6.13-1) ...
Selecting previously unselected package libtry-tiny-perl.
Preparing to unpack .../40-libtry-tiny-perl_0.31-2_all.deb ...
Unpacking libtry-tiny-perl (0.31-2) ...
Selecting previously unselected package libwww-robotrules-perl.
Preparing to unpack .../41-libwww-robotrules-perl_6.02-1_all.deb ...
Unpacking libwww-robotrules-perl (6.02-1) ...
Selecting previously unselected package libwww-perl.
Preparing to unpack .../42-libwww-perl_6.76-1_all.deb ...
Unpacking libwww-perl (6.76-1) ...
Selecting previously unselected package icoutils.
Preparing to unpack .../43-icoutils_0.32.3-4build2_amd64.deb ...
Unpacking icoutils (0.32.3-4build2) ...
Selecting previously unselected package libldm-1.0-0t64:amd64.
Preparing to unpack .../44-libldm-1.0-0t64_0.2.5-1.1build2_amd64.deb ...
Unpacking libldm-1.0-0t64:amd64 (0.2.5-1.1build2) ...
Selecting previously unselected package ldmtool.
Preparing to unpack .../45-ldmtool_0.2.5-1.1build2_amd64.deb ...
Unpacking ldmtool (0.2.5-1.1build2) ...
Selecting previously unselected package lsscsi.
Preparing to unpack .../46-lsscsi_0.32-1build1_amd64.deb ...
Unpacking lsscsi (0.32-1build1) ...
Selecting previously unselected package lzop.
Preparing to unpack .../47-lzop_1.04-2build3_amd64.deb ...
Unpacking lzop (1.04-2build3) ...
Selecting previously unselected package mtools.
Preparing to unpack .../48-mtools_4.0.43-1build1_amd64.deb ...
Unpacking mtools (4.0.43-1build1) ...
Selecting previously unselected package scrub.
Preparing to unpack .../49-scrub_2.6.1-1build2_amd64.deb ...
Unpacking scrub (2.6.1-1build2) ...
Selecting previously unselected package libdate-manip-perl.
Preparing to unpack .../50-libdate-manip-perl_6.95-1_all.deb ...
Unpacking libdate-manip-perl (6.95-1) ...
Selecting previously unselected package sleuthkit.
Preparing to unpack .../51-sleuthkit_4.12.1+dfsg-1.1ubuntu2_amd64.deb ...
Unpacking sleuthkit (4.12.1+dfsg-1.1ubuntu2) ...
Selecting previously unselected package syslinux.
Preparing to unpack .../52-syslinux_3%3a6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3_amd64.deb ...
Unpacking syslinux (3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3) ...
Selecting previously unselected package libguestfs0t64:amd64.
Preparing to unpack .../53-libguestfs0t64_1%3a1.52.0-5ubuntu3_amd64.deb ...
Unpacking libguestfs0t64:amd64 (1:1.52.0-5ubuntu3) ...
Selecting previously unselected package libconfig9:amd64.
Preparing to unpack .../54-libconfig9_1.5-0.4build2_amd64.deb ...
Unpacking libconfig9:amd64 (1.5-0.4build2) ...
Selecting previously unselected package guestfish.
Preparing to unpack .../55-guestfish_1%3a1.52.0-5ubuntu3_amd64.deb ...
Unpacking guestfish (1:1.52.0-5ubuntu3) ...
Selecting previously unselected package libxml-parser-perl.
Preparing to unpack .../56-libxml-parser-perl_2.47-1build3_amd64.deb ...
Unpacking libxml-parser-perl (2.47-1build3) ...
Selecting previously unselected package libxml-xpath-perl.
Preparing to unpack .../57-libxml-xpath-perl_1.48-1_all.deb ...
Unpacking libxml-xpath-perl (1.48-1) ...
Selecting previously unselected package libwin-hivex-perl.
Preparing to unpack .../58-libwin-hivex-perl_1.3.23-1build7_amd64.deb ...
Unpacking libwin-hivex-perl (1.3.23-1build7) ...
Selecting previously unselected package libsys-virt-perl.
Preparing to unpack .../59-libsys-virt-perl_10.0.0-1build2_amd64.deb ...
Unpacking libsys-virt-perl (10.0.0-1build2) ...
Selecting previously unselected package libguestfs-perl.
Preparing to unpack .../60-libguestfs-perl_1%3a1.52.0-5ubuntu3_amd64.deb ...
Unpacking libguestfs-perl (1:1.52.0-5ubuntu3) ...
Selecting previously unselected package libstring-shellquote-perl.
Preparing to unpack .../61-libstring-shellquote-perl_1.04-3_all.deb ...
Unpacking libstring-shellquote-perl (1.04-3) ...
Selecting previously unselected package guestfs-tools.
Preparing to unpack .../62-guestfs-tools_1.52.0-2ubuntu5_amd64.deb ...
Unpacking guestfs-tools (1.52.0-2ubuntu5) ...
Selecting previously unselected package guestmount.
Preparing to unpack .../63-guestmount_1%3a1.52.0-5ubuntu3_amd64.deb ...
Unpacking guestmount (1:1.52.0-5ubuntu3) ...
Selecting previously unselected package libhfsp0t64.
Preparing to unpack .../64-libhfsp0t64_1.0.4-17.1build1_amd64.deb ...
Unpacking libhfsp0t64 (1.0.4-17.1build1) ...
Selecting previously unselected package hfsplus.
Preparing to unpack .../65-hfsplus_1.0.4-17.1build1_amd64.deb ...
Unpacking hfsplus (1.0.4-17.1build1) ...
Selecting previously unselected package libdata-dump-perl.
Preparing to unpack .../66-libdata-dump-perl_1.25-1_all.deb ...
Unpacking libdata-dump-perl (1.25-1) ...
Selecting previously unselected package libfont-afm-perl.
Preparing to unpack .../67-libfont-afm-perl_1.20-4_all.deb ...
Unpacking libfont-afm-perl (1.20-4) ...
Selecting previously unselected package libhtml-form-perl.
Preparing to unpack .../68-libhtml-form-perl_6.11-1_all.deb ...
Unpacking libhtml-form-perl (6.11-1) ...
Selecting previously unselected package libhtml-format-perl.
Preparing to unpack .../69-libhtml-format-perl_2.16-2_all.deb ...
Unpacking libhtml-format-perl (2.16-2) ...
Selecting previously unselected package libhttp-daemon-perl.
Preparing to unpack .../70-libhttp-daemon-perl_6.16-1_all.deb ...
Unpacking libhttp-daemon-perl (6.16-1) ...
Selecting previously unselected package libnet-smtp-ssl-perl.
Preparing to unpack .../71-libnet-smtp-ssl-perl_1.04-2_all.deb ...
Unpacking libnet-smtp-ssl-perl (1.04-2) ...
Selecting previously unselected package libmailtools-perl.
Preparing to unpack .../72-libmailtools-perl_2.21-2_all.deb ...
Unpacking libmailtools-perl (2.21-2) ...
Selecting previously unselected package reiserfsprogs.
Preparing to unpack .../73-reiserfsprogs_1%3a3.6.27-7.1build1_amd64.deb ...
Unpacking reiserfsprogs (1:3.6.27-7.1build1) ...
Selecting previously unselected package rpm-common.
Preparing to unpack .../74-rpm-common_4.18.2+dfsg-2.1build2_amd64.deb ...
Unpacking rpm-common (4.18.2+dfsg-2.1build2) ...
Selecting previously unselected package syslinux-common.
Preparing to unpack .../75-syslinux-common_3%3a6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3_all.deb ...
Unpacking syslinux-common (3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3) ...
Selecting previously unselected package libguestfs-tools.
Preparing to unpack .../76-libguestfs-tools_1%3a1.52.0-5ubuntu3_amd64.deb ...
Unpacking libguestfs-tools (1:1.52.0-5ubuntu3) ...
Selecting previously unselected package virt-p2v.
Preparing to unpack .../77-virt-p2v_1.42.3-1_amd64.deb ...
Unpacking virt-p2v (1.42.3-1) ...
Selecting previously unselected package libauthen-sasl-perl.
Preparing to unpack .../78-libauthen-sasl-perl_2.1700-1_all.deb ...
Unpacking libauthen-sasl-perl (2.1700-1) ...
Selecting previously unselected package libguestfs-hfsplus:amd64.
Preparing to unpack .../79-libguestfs-hfsplus_1%3a1.52.0-5ubuntu3_amd64.deb ...
Unpacking libguestfs-hfsplus:amd64 (1:1.52.0-5ubuntu3) ...
Selecting previously unselected package libguestfs-reiserfs:amd64.
Preparing to unpack .../80-libguestfs-reiserfs_1%3a1.52.0-5ubuntu3_amd64.deb ...
Unpacking libguestfs-reiserfs:amd64 (1:1.52.0-5ubuntu3) ...
Selecting previously unselected package libguestfs-xfs:amd64.
Preparing to unpack .../81-libguestfs-xfs_1%3a1.52.0-5ubuntu3_amd64.deb ...
Unpacking libguestfs-xfs:amd64 (1:1.52.0-5ubuntu3) ...
Setting up libconfig9:amd64 (1.5-0.4build2) ...
Setting up reiserfsprogs (1:3.6.27-7.1build1) ...
update-initramfs: deferring update (trigger activated)
Setting up libfont-afm-perl (1.20-4) ...
Setting up exfatprogs (1.2.2-1build1) ...
Setting up mtools (4.0.43-1build1) ...
Setting up augeas-lenses (1.14.1-1build2) ...
Setting up attr (1:2.5.2-1build1) ...
Setting up libclone-perl:amd64 (0.46-1build3) ...
Setting up libvhdi1:amd64 (20210425-1build5) ...
Setting up f2fs-tools (1.16.0-1) ...
Setting up libhtml-tagset-perl (3.20-6) ...
Setting up libyara10:amd64 (4.5.0-1build2) ...
Setting up libauthen-sasl-perl (2.1700-1) ...
Setting up liblwp-mediatypes-perl (6.04-2) ...
Setting up libtry-tiny-perl (0.31-2) ...
Setting up perl-openssl-defaults:amd64 (7build3) ...
Setting up syslinux-common (3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3) ...
Setting up libencode-locale-perl (1.05-3) ...
Setting up syslinux (3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3) ...
Setting up libstring-shellquote-perl (1.04-3) ...
Setting up libafflib0t64:amd64 (3.7.20-1.1ubuntu5) ...
Setting up libdata-dump-perl (1.25-1) ...
Setting up libaugeas0:amd64 (1.14.1-1build2) ...
Setting up db5.3-util (5.3.28+dfsg2-7) ...
Setting up libio-html-perl (1.004-3) ...
Setting up lsscsi (0.32-1build1) ...
Setting up scrub (2.6.1-1build2) ...
Setting up libtimedate-perl (2.3300-2) ...
Setting up extlinux (3:6.04~git20190206.bf6db5b4+dfsg1-3ubuntu3) ...
Setting up liblua5.3-0:amd64 (5.3.6-2build2) ...
Setting up lzop (1.04-2build3) ...
Setting up libewf2:amd64 (20140814-1build3) ...
Setting up libhivex0:amd64 (1.3.23-1build7) ...
Setting up libfuse2t64:amd64 (2.9.9-8.1build1) ...
Setting up supermin (5.2.2-4ubuntu4) ...
Setting up libhfsp0t64 (1.0.4-17.1build1) ...
Setting up libldm-1.0-0t64:amd64 (0.2.5-1.1build2) ...
Setting up liburi-perl (5.27-1) ...
Setting up libdate-manip-perl (6.95-1) ...
Setting up libsys-virt-perl (10.0.0-1build2) ...
Setting up libbfio1:amd64 (20170123-6) ...
Setting up libnet-ssleay-perl:amd64 (1.94-1build4) ...
Setting up hfsplus (1.0.4-17.1build1) ...
Setting up libhttp-date-perl (6.06-1) ...
Setting up libfile-listing-perl (6.16-1) ...
Setting up db-util (1:5.3.21ubuntu2) ...
Setting up libnet-http-perl (6.23-1) ...
Setting up libwin-hivex-perl (1.3.23-1build7) ...
Setting up ldmtool (0.2.5-1.1build2) ...
Setting up libvmdk1:amd64 (20200926-2build5) ...
Setting up librpmio9t64 (4.18.2+dfsg-2.1build2) ...
Setting up libwww-robotrules-perl (6.02-1) ...
Setting up libhtml-parser-perl:amd64 (3.81-1build3) ...
Setting up libtsk19t64:amd64 (4.12.1+dfsg-1.1ubuntu2) ...
Setting up libio-socket-ssl-perl (2.085-1) ...
Setting up libhttp-message-perl (6.45-1ubuntu1) ...
Setting up libhtml-form-perl (6.11-1) ...
Setting up libhttp-negotiate-perl (6.01-2) ...
Setting up librpm9t64 (4.18.2+dfsg-2.1build2) ...
Setting up libhttp-cookies-perl (6.11-1) ...
Setting up libhtml-tree-perl (5.07-3) ...
Setting up libhtml-format-perl (2.16-2) ...
Setting up rpm-common (4.18.2+dfsg-2.1build2) ...
Setting up libnet-smtp-ssl-perl (1.04-2) ...
Setting up libmailtools-perl (2.21-2) ...
Setting up sleuthkit (4.12.1+dfsg-1.1ubuntu2) ...
Setting up libhttp-daemon-perl (6.16-1) ...
Setting up liblwp-protocol-https-perl (6.13-1) ...
Setting up libwww-perl (6.76-1) ...
Setting up icoutils (0.32.3-4build2) ...
Setting up libxml-parser-perl (2.47-1build3) ...
Setting up libxml-xpath-perl (1.48-1) ...
Setting up libguestfs0t64:amd64 (1:1.52.0-5ubuntu3) ...
Setting up libguestfs-xfs:amd64 (1:1.52.0-5ubuntu3) ...
Setting up libguestfs-perl (1:1.52.0-5ubuntu3) ...
Setting up guestfs-tools (1.52.0-2ubuntu5) ...
Setting up libguestfs-hfsplus:amd64 (1:1.52.0-5ubuntu3) ...
Setting up guestfish (1:1.52.0-5ubuntu3) ...
Setting up libguestfs-reiserfs:amd64 (1:1.52.0-5ubuntu3) ...
Setting up guestmount (1:1.52.0-5ubuntu3) ...
Setting up libguestfs-tools (1:1.52.0-5ubuntu3) ...
Setting up virt-p2v (1.42.3-1) ...
Processing triggers for man-db (2.12.0-4build2) ...
Processing triggers for dbus (1.14.10-4ubuntu4.1) ...
Processing triggers for install-info (7.1-3build2) ...
Processing triggers for initramfs-tools (0.142ubuntu25.1) ...
update-initramfs: Generating /boot/initrd.img-6.8.0-41-generic
Processing triggers for libc-bin (2.39-0ubuntu8.3) ...
Scanning processes...
Scanning processor microcode...
Scanning linux images...

Running kernel seems to be up-to-date.

The processor microcode seems to be up-to-date.

No services need to be restarted.

No containers need to be restarted.

No user sessions are running outdated binaries.

No VM guests are running outdated hypervisor (qemu) binaries on this host.

About

Cloud-Image Host Automation Utility and System Image Engine

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages