Unable to create a VM with lxc launch, containers work fine. (Full error in post)

Hello all, thank you for everything you do!

I’m at the beginning of my lxc/lxd journey and I have hit a snag fairly early on.
When I try to create a vm with lxc launch ... --vm specifying any image, I am receiving an error that I am unable to find in either the forum or elsewhere.

The error below is reached with any image, and only with the --vm flag:

λ ~/ lxc launch -s zpool1 ubuntu:22.04 vm1 --vm  
Creating vm1
Error: Failed instance creation: Failed creating instance from image: Failed to run: /usr/bin/sgdisk --move-second-header /dev/zvol/zpool1/images/439c6c7c17f94708f4ad0c47a8aec3f51c2085154159e9cbdeec0477e321517b.block: exit status 2 (Problem opening `��X for reading! Error is 2.
The specified file does not exist!)
λ ~/
λ ~/ lxc launch -s zpool1 images:archlinux/current/cloud vm1 --vm
Creating vm1
Error: Failed instance creation: Failed creating instance from image: Failed to run: /usr/bin/sgdisk --move-second-header /dev/zvol/zpool1/images/704e52924d82ffc940b7e567ec587ce3e6f682344b974aa5144bd75453d25cea.block: exit status 2 (Problem opening ��V for reading! Error is 2.
The specified file does not exist!)
λ ~/ 
λ ~/ lxc init -s zpool1 images:archlinux/current/cloud vm1 --vm
Creating vm1
Error: Failed instance creation: Failed creating instance from image: Failed to run: /usr/bin/sgdisk --move-second-header /dev/zvol/zpool1/images/704e52924d82ffc940b7e567ec587ce3e6f682344b974aa5144bd75453d25cea.block: exit status 2 (Problem opening ̔�U for reading! Error is 2.
The specified file does not exist!)
λ ~/ 

When I look in /dev/ Neither that file, nor that location exist.
Here are some of the details about my system:

OS: Arch Linux
Kernel: x86_64 Linux 6.0.7-arch1-1
CPU: AMD Ryzen Threadripper 3970X 32-Core @ 64x 3.7GHz
GPU: NVIDIA GeForce GTX 1060 6GB, NVIDIA GeForce GTX 1060 6GB
RAM: 11712MiB / 128659MiB

λ ~/ uname -a
Linux DS1 6.0.7-arch1-1 #1 SMP PREEMPT_DYNAMIC Thu, 03 Nov 2022 18:01:58 +0000 x86_64 GNU/Linux
λ ~/

LXC/LXD versions:

λ ~/ lxc --version
5.7
λ ~/ lxd --version
5.7
λ ~/

Cached images:

λ ~/ lxc image ls
+-------+--------------+--------+-----------------------------------------------+--------------+-----------------+----------+-------------------------------+
| ALIAS | FINGERPRINT  | PUBLIC |                  DESCRIPTION                  | ARCHITECTURE |      TYPE       |   SIZE   |          UPLOAD DATE          |
+-------+--------------+--------+-----------------------------------------------+--------------+-----------------+----------+-------------------------------+
|       | 3ec01db0d412 | no     | Alpine 3.16 amd64 (20221112_13:00)            | x86_64       | VIRTUAL-MACHINE | 123.04MB | Nov 13, 2022 at 8:40am (UTC)  |
+-------+--------------+--------+-----------------------------------------------+--------------+-----------------+----------+-------------------------------+
|       | 43a077c5261b | no     | Archlinux current amd64 (20221112_04:42)      | x86_64       | CONTAINER       | 196.72MB | Nov 12, 2022 at 8:33pm (UTC)  |
+-------+--------------+--------+-----------------------------------------------+--------------+-----------------+----------+-------------------------------+
|       | 439c6c7c17f9 | no     | ubuntu 22.04 LTS amd64 (release) (20221101.1) | x86_64       | VIRTUAL-MACHINE | 605.25MB | Nov 14, 2022 at 2:03am (UTC)  |
+-------+--------------+--------+-----------------------------------------------+--------------+-----------------+----------+-------------------------------+
|       | 704e52924d82 | no     | Archlinux current amd64 (20221113_04:18)      | x86_64       | VIRTUAL-MACHINE | 546.10MB | Nov 13, 2022 at 11:04am (UTC) |
+-------+--------------+--------+-----------------------------------------------+--------------+-----------------+----------+-------------------------------+
|       | e5c3e251eae0 | no     | Archlinux current amd64 (20221113_04:18)      | x86_64       | CONTAINER       | 196.69MB | Nov 13, 2022 at 8:14am (UTC)  |
+-------+--------------+--------+-----------------------------------------------+--------------+-----------------+----------+-------------------------------+
λ ~/ 

Local storage

λ ~/ lxc storage ls
+------------+--------+--------------------------------------+-------------+---------+-------------+
|    NAME    | DRIVER |                SOURCE                | DESCRIPTION | USED BY |    STATE    |
+------------+--------+--------------------------------------+-------------+---------+-------------+
| lxdpool    | btrfs  | f06e5984-bd9a-432f-9661-8b58256929f3 |             | 5       | CREATED     |
+------------+--------+--------------------------------------+-------------+---------+-------------+
| onexternal | btrfs  | 75d66804-3000-42c1-870a-a1c80d4dad47 |             | 1       | UNAVAILABLE |
+------------+--------+--------------------------------------+-------------+---------+-------------+
| zpool1     | zfs    | zpool1                               |             | 0       | CREATED     |
+------------+--------+--------------------------------------+-------------+---------+-------------+
λ ~/ 
λ ~/ lxc storage volume list lxdpool
+-----------+------------------------------------------------------------------+-------------+--------------+---------+
|   TYPE    |                               NAME                               | DESCRIPTION | CONTENT-TYPE | USED BY |
+-----------+------------------------------------------------------------------+-------------+--------------+---------+
| container | con1                                                             |             | filesystem   | 1       |
+-----------+------------------------------------------------------------------+-------------+--------------+---------+
| container | con2                                                             |             | filesystem   | 1       |
+-----------+------------------------------------------------------------------+-------------+--------------+---------+
| custom    | backups                                                          |             | filesystem   | 1       |
+-----------+------------------------------------------------------------------+-------------+--------------+---------+
| custom    | images                                                           |             | filesystem   | 1       |
+-----------+------------------------------------------------------------------+-------------+--------------+---------+
| image     | e5c3e251eae02856cd8663d2d28e1df5e16e1ecf26d9d5e018b3b67bc4f9f3a9 |             | filesystem   | 1       |
+-----------+------------------------------------------------------------------+-------------+--------------+---------+
λ ~/ lxc storage volume list zpool1 
+------+------+-------------+--------------+---------+
| TYPE | NAME | DESCRIPTION | CONTENT-TYPE | USED BY |
+------+------+-------------+--------------+---------+
λ ~/

Info about zpool1

λ ~/ lxc storage show zpool1
config:
  source: zpool1
  volatile.initial_source: /dev/sda2
  zfs.pool_name: zpool1
description: ""
name: zpool1
driver: zfs
used_by: []
status: Created
locations:
- none
λ ~/
λ ~/ zfs list -t all
NAME                              USED  AVAIL     REFER  MOUNTPOINT
zpool1                           1020K  48.0G       24K  legacy
zpool1/buckets                     24K  48.0G       24K  legacy
zpool1/containers                  24K  48.0G       24K  legacy
zpool1/custom                      24K  48.0G       24K  legacy
zpool1/deleted                    144K  48.0G       24K  legacy
zpool1/deleted/buckets             24K  48.0G       24K  legacy
zpool1/deleted/containers          24K  48.0G       24K  legacy
zpool1/deleted/custom              24K  48.0G       24K  legacy
zpool1/deleted/images              24K  48.0G       24K  legacy
zpool1/deleted/virtual-machines    24K  48.0G       24K  legacy
zpool1/images                      24K  48.0G       24K  legacy
zpool1/virtual-machines            24K  48.0G       24K  legacy
λ ~/

Info about both the images and the storage volumes

λ ~/ lxd sql global "SELECT * FROM images;"
+----+------------------------------------------------------------------+-----------------------------------------------+----------------+--------+--------------+----------------------+----------------------+--------------------------------+--------+--------------------------------+-------------+------------+------+
| id |                           fingerprint                            |                   filename                    |      size      | public | architecture |    creation_date     |     expiry_date      |          upload_date           | cached |         last_use_date          | auto_update | project_id | type |
+----+------------------------------------------------------------------+-----------------------------------------------+----------------+--------+--------------+----------------------+----------------------+--------------------------------+--------+--------------------------------+-------------+------------+------+
| 1  | 43a077c5261b9084aea6ef23e16366adb00376e669cb83e3dcdb78d4e53aed09 | lxd.tar.xz                                    | 2.06275676e+08 | 0      | 2            | 2022-11-12T00:00:00Z | 1970-01-01T00:00:00Z | 2022-11-12T20:33:23.14027915Z  | 1      | 2022-11-12T20:33:23.163458522Z | 1           | 1          | 0    |
| 2  | e5c3e251eae02856cd8663d2d28e1df5e16e1ecf26d9d5e018b3b67bc4f9f3a9 | lxd.tar.xz                                    | 2.06242908e+08 | 0      | 2            | 2022-11-13T00:00:00Z | 1970-01-01T00:00:00Z | 2022-11-13T08:14:28.265363965Z | 1      | 2022-11-13T11:02:59.925100762Z | 1           | 1          | 0    |
| 4  | 3ec01db0d412d0a59ef1866d36980e26563c82be92a147d85396f933258b3474 | lxd.tar.xz                                    | 1.29020712e+08 | 0      | 2            | 2022-11-12T00:00:00Z | 1970-01-01T00:00:00Z | 2022-11-13T08:40:22.061550937Z | 1      | 2022-11-13T08:40:22.083687875Z | 1           | 1          | 1    |
| 6  | 704e52924d82ffc940b7e567ec587ce3e6f682344b974aa5144bd75453d25cea | lxd.tar.xz                                    | 5.72622428e+08 | 0      | 2            | 2022-11-13T00:00:00Z | 1970-01-01T00:00:00Z | 2022-11-13T11:04:25.503558748Z | 1      | 2022-11-14T02:52:45.42383576Z  | 1           | 1          | 1    |
| 7  | 439c6c7c17f94708f4ad0c47a8aec3f51c2085154159e9cbdeec0477e321517b | ubuntu-22.04-server-cloudimg-amd64-lxd.tar.xz | 6.34651036e+08 | 0      | 2            | 2022-11-01T00:00:00Z | 2027-04-21T00:00:00Z | 2022-11-14T02:03:59.117243796Z | 1      | 2022-11-14T02:03:59.134305108Z | 1           | 1          | 1    |
+----+------------------------------------------------------------------+-----------------------------------------------+----------------+--------+--------------+----------------------+----------------------+--------------------------------+--------+--------------------------------+-------------+------------+------+
λ ~/ 
λ ~/ lxd sql global "SELECT * FROM storage_volumes;"
+----+------------------------------------------------------------------+-----------------+---------+------+-------------+------------+--------------+
| id |                               name                               | storage_pool_id | node_id | type | description | project_id | content_type |
+----+------------------------------------------------------------------+-----------------+---------+------+-------------+------------+--------------+
| 2  | backups                                                          | 5               | 1       | 2    |             | 1          | 0            |
| 3  | images                                                           | 5               | 1       | 2    |             | 1          | 0            |
| 4  | con1                                                             | 5               | 1       | 0    |             | 1          | 0            |
| 5  | e5c3e251eae02856cd8663d2d28e1df5e16e1ecf26d9d5e018b3b67bc4f9f3a9 | 5               | 1       | 1    |             | 1          | 0            |
| 11 | con2                                                             | 5               | 1       | 0    |             | 1          | 0            |
+----+------------------------------------------------------------------+-----------------+---------+------+-------------+------------+--------------+
λ ~/ 

Local running containers

λ ~/ lxc ls
+------+---------+---------------------+-----------------------------------------------+-----------+-----------+
| NAME |  STATE  |        IPV4         |                     IPV6                      |   TYPE    | SNAPSHOTS |
+------+---------+---------------------+-----------------------------------------------+-----------+-----------+
| con1 | RUNNING | 10.190.19.88 (eth0) | fd42:f150:a392:2dc8:216:3eff:feb3:a10b (eth0) | CONTAINER | 0         |
+------+---------+---------------------+-----------------------------------------------+-----------+-----------+
| con2 | RUNNING | 10.190.19.45 (eth0) | fd42:f150:a392:2dc8:216:3eff:fef6:cdf4 (eth0) | CONTAINER | 0         |
+------+---------+---------------------+-----------------------------------------------+-----------+-----------+
λ ~/ 

Profiles

λ ~/ lxc profile ls
+---------+---------------------+---------+
|  NAME   |     DESCRIPTION     | USED BY |
+---------+---------------------+---------+
| default | Default LXD profile | 2       |
+---------+---------------------+---------+
λ ~/ 

Any and all help or guidance will be appreciated!
Thank you ahead of time for anyone taking the time to read this.

-Mr. E

Update:

I updated with Pacman this evening and tried running the same launch command again and it just worked
My versions of LXC/LXD/ZFS did not change, but all is fine now. :man_shrugging:

λ ~/ lxc list
+------+---------+------------------------+-------------------------------------------------+-----------------+-----------+
| NAME |  STATE  |          IPV4          |                      IPV6                       |      TYPE       | SNAPSHOTS |
+------+---------+------------------------+-------------------------------------------------+-----------------+-----------+
| con1 | RUNNING | 10.190.19.102 (eth0)   | fd42:f150:a392:2dc8:216:3eff:fed5:60cf (eth0)   | CONTAINER       | 0         |
+------+---------+------------------------+-------------------------------------------------+-----------------+-----------+
| vm1  | RUNNING | 10.190.19.226 (enp5s0) | fd42:f150:a392:2dc8:216:3eff:fec6:d269 (enp5s0) | VIRTUAL-MACHINE | 0         |
+------+---------+------------------------+-------------------------------------------------+-----------------+-----------+

Thank you anyway to anyone who spent cycles on this!!

Here is a list of what I updated in case someone can spot the issue and help the next person.

λ ~/ grep -iE "$(tail -n1 /var/log/pacman.log | grep -iEo "([0-9]{4}-[0-9]{2}-[0-9]{2})").+upgraded" /var/log/pacman.log
[2022-11-15T18:04:46-0800] [ALPM] upgraded iana-etc (20221025-1 -> 20221107-1)
[2022-11-15T18:04:47-0800] [ALPM] upgraded alembic (1.8.3-3 -> 1.8.4-1)
[2022-11-15T18:04:47-0800] [ALPM] upgraded alsa-card-profiles (1:0.3.59-5 -> 1:0.3.60-2)
[2022-11-15T18:04:47-0800] [ALPM] upgraded amd-ucode (20220913.f09bebf-1 -> 20221109.60310c2-1)
[2022-11-15T18:04:47-0800] [ALPM] upgraded systemd-libs (251.7-4 -> 252.1-1)
[2022-11-15T18:04:47-0800] [ALPM] upgraded gnutls (3.7.8-2 -> 3.7.8-4)
[2022-11-15T18:04:47-0800] [ALPM] upgraded ca-certificates-mozilla (3.84-1 -> 3.85-1)
[2022-11-15T18:04:47-0800] [ALPM] upgraded archlinux-keyring (20220927-1 -> 20221110-1)
[2022-11-15T18:04:50-0800] [ALPM] upgraded blas (3.10.1-1 -> 3.11-1)
[2022-11-15T18:04:50-0800] [ALPM] upgraded bluez (5.65-3 -> 5.66-1)
[2022-11-15T18:04:50-0800] [ALPM] upgraded bluez-libs (5.65-3 -> 5.66-1)
[2022-11-15T18:04:50-0800] [ALPM] upgraded device-mapper (2.03.16-2 -> 2.03.17-1)
[2022-11-15T18:04:50-0800] [ALPM] upgraded shadow (4.12.3-1 -> 4.12.3-2)
[2022-11-15T18:04:50-0800] [ALPM] upgraded systemd (251.7-4 -> 252.1-1)
[2022-11-15T18:04:50-0800] [ALPM] upgraded bluez-utils (5.65-3 -> 5.66-1)
[2022-11-15T18:04:50-0800] [ALPM] upgraded bubblewrap (0.6.2-1 -> 0.7.0-1)
[2022-11-15T18:04:50-0800] [ALPM] upgraded cblas (3.10.1-1 -> 3.11-1)
[2022-11-15T18:04:50-0800] [ALPM] upgraded netavark (1.2.0-1 -> 1.3.0-1)
[2022-11-15T18:04:50-0800] [ALPM] upgraded containers-common (1:0.50.1-1 -> 1:0.50.1-2)
[2022-11-15T18:04:50-0800] [ALPM] upgraded guile (2.2.7-3 -> 3.0.8-3)
[2022-11-15T18:04:50-0800] [ALPM] upgraded gdb-common (12.1-1 -> 12.1-2)
[2022-11-15T18:04:50-0800] [ALPM] upgraded gdb (12.1-1 -> 12.1-2)
[2022-11-15T18:04:50-0800] [ALPM] upgraded lapack (3.10.1-1 -> 3.11-1)
[2022-11-15T18:04:51-0800] [ALPM] upgraded suitesparse (5.13.0-1 -> 6.0.1-1)
[2022-11-15T18:04:51-0800] [ALPM] upgraded libx11 (1.8.1-3 -> 1.8.2-1)
[2022-11-15T18:04:51-0800] [ALPM] upgraded mesa (22.2.2-1 -> 22.2.3-1)
[2022-11-15T18:04:51-0800] [ALPM] upgraded nss (3.84-1 -> 3.85-1)
[2022-11-15T18:04:51-0800] [ALPM] upgraded gegl (0.4.38-1 -> 0.4.38-2)
[2022-11-15T18:04:51-0800] [ALPM] upgraded glew (2.2.0-5 -> 2.2.0-6)
[2022-11-15T18:04:51-0800] [ALPM] upgraded gnome-color-manager (3.36.0+r25+g4aab8b59-1 -> 3.36.0+r42+g90481514-1)
[2022-11-15T18:04:51-0800] [ALPM] upgraded gptfdisk (1.0.9-1 -> 1.0.9-2)
[2022-11-15T18:04:51-0800] [ALPM] upgraded lvm2 (2.03.16-2 -> 2.03.17-1)
[2022-11-15T18:04:51-0800] [ALPM] upgraded pipewire (1:0.3.59-5 -> 1:0.3.60-2)
[2022-11-15T18:04:51-0800] [ALPM] upgraded pipewire-audio (1:0.3.59-5 -> 1:0.3.60-2)
[2022-11-15T18:04:51-0800] [ALPM] upgraded pipewire-pulse (1:0.3.59-5 -> 1:0.3.60-2)
[2022-11-15T18:04:51-0800] [ALPM] upgraded libmm-glib (1.20.0-1 -> 1.20.2-1)
[2022-11-15T18:04:51-0800] [ALPM] upgraded gnome-shell (1:43.1-1 -> 1:43.1-2)
[2022-11-15T18:04:51-0800] [ALPM] upgraded libheif (1.13.0-2 -> 1.14.0-1)
[2022-11-15T18:04:51-0800] [ALPM] upgraded ijs (0.35-4 -> 0.35-5)
[2022-11-15T18:04:51-0800] [ALPM] upgraded graphviz (7.0.0-1 -> 7.0.1-2)
[2022-11-15T18:04:51-0800] [ALPM] upgraded gst-plugin-pipewire (1:0.3.59-5 -> 1:0.3.60-2)
[2022-11-15T18:04:51-0800] [ALPM] upgraded hyphen (2.8.8-4 -> 2.8.8-5)
[2022-11-15T18:04:51-0800] [ALPM] upgraded kubectl (1.25.3-1 -> 1.25.4-1)
[2022-11-15T18:04:51-0800] [ALPM] upgraded lazygit (0.35-1 -> 0.36.0-1)
[2022-11-15T18:04:51-0800] [ALPM] upgraded librevenge (0.0.4-4 -> 0.0.4-5)
[2022-11-15T18:04:51-0800] [ALPM] upgraded libe-book (0.1.3-12 -> 0.1.3-13)
[2022-11-15T18:04:51-0800] [ALPM] upgraded libepubgen (0.1.1-3 -> 0.1.1-4)
[2022-11-15T18:04:51-0800] [ALPM] upgraded libluv (1.44.2_1-1 -> 1.44.2_1-2)
[2022-11-15T18:04:51-0800] [ALPM] upgraded libmwaw (0.3.21-2 -> 0.3.21-3)
[2022-11-15T18:04:51-0800] [ALPM] upgraded libnumbertext (1.0.10-1 -> 1.0.11-1)
[2022-11-15T18:04:51-0800] [ALPM] upgraded libodfgen (0.1.8-1 -> 0.1.8-2)
[2022-11-15T18:04:51-0800] [ALPM] upgraded librest (0.9.1-1 -> 0.9.1-2)
[2022-11-15T18:04:51-0800] [ALPM] upgraded libwnck3 (43.0-2 -> 43.0-3)
[2022-11-15T18:04:51-0800] [ALPM] upgraded libwpd (0.10.3-3 -> 0.10.3-4)
[2022-11-15T18:04:51-0800] [ALPM] upgraded libwpg (0.3.3-3 -> 0.3.3-4)
[2022-11-15T18:04:52-0800] [ALPM] upgraded libwps (0.4.12-1 -> 0.4.12-2)
[2022-11-15T18:04:52-0800] [ALPM] upgraded linux (6.0.7.arch1-1 -> 6.0.8.arch1-1)
[2022-11-15T18:04:52-0800] [ALPM] upgraded linux-firmware-whence (20220913.f09bebf-1 -> 20221109.60310c2-1)
[2022-11-15T18:04:53-0800] [ALPM] upgraded linux-firmware (20220913.f09bebf-1 -> 20221109.60310c2-1)
[2022-11-15T18:04:55-0800] [ALPM] upgraded linux-headers (6.0.7.arch1-1 -> 6.0.8.arch1-1)
[2022-11-15T18:04:55-0800] [ALPM] upgraded lpsolve (5.5.2.11-1 -> 5.5.2.11-2)
[2022-11-15T18:04:55-0800] [ALPM] upgraded make (4.3-3 -> 4.3-5)
[2022-11-15T18:04:55-0800] [ALPM] upgraded mpv (1:0.34.1-5 -> 1:0.35.0-2)
[2022-11-15T18:04:55-0800] [ALPM] upgraded neovim (0.8.0-3 -> 0.8.1-1)
[2022-11-15T18:04:55-0800] [ALPM] upgraded ninja (1.11.1-1 -> 1.11.1-2)
[2022-11-15T18:04:55-0800] [ALPM] upgraded nodejs (19.0.1-1 -> 19.1.0-1)
[2022-11-15T18:04:55-0800] [ALPM] upgraded nvidia (520.56.06-9 -> 520.56.06-10)
[2022-11-15T18:04:55-0800] [ALPM] upgraded opencv (4.6.0-5 -> 4.6.0-6)
[2022-11-15T18:04:56-0800] [ALPM] upgraded opensubdiv (3.5.0-1 -> 3.5.0-2)
[2022-11-15T18:04:56-0800] [ALPM] upgraded perl-http-message (6.42-1 -> 6.43-1)
[2022-11-15T18:04:56-0800] [ALPM] upgraded podman (4.3.0-1 -> 4.3.1-1)
[2022-11-15T18:04:56-0800] [ALPM] upgraded pugixml (1.12.1-1 -> 1.13-1)
[2022-11-15T18:04:56-0800] [ALPM] upgraded python-decorator (5.1.1-1 -> 5.1.1-2)
[2022-11-15T18:04:56-0800] [ALPM] upgraded python-dnspython (1:2.2.1-1 -> 1:2.2.1-2)
[2022-11-15T18:04:56-0800] [ALPM] upgraded python-exceptiongroup (1.0.1-1 -> 1.0.2-1)
[2022-11-15T18:04:57-0800] [ALPM] upgraded python-setuptools (1:65.1.0-1 -> 1:65.2.0-1)
[2022-11-15T18:04:57-0800] [ALPM] upgraded python-google-auth (2.7.0-1 -> 2.8.0-1)
[2022-11-15T18:04:57-0800] [ALPM] upgraded python-hypothesis (6.54.4-2 -> 6.54.4-3)
[2022-11-15T18:04:57-0800] [ALPM] upgraded python-installer (0.5.1-1 -> 0.5.1-2)
[2022-11-15T18:04:57-0800] [ALPM] upgraded python-pytz (2022.1-1 -> 2022.6-1)
[2022-11-15T18:04:57-0800] [ALPM] upgraded python-pandas (1.4.4-1 -> 1.5.1-1)
[2022-11-15T18:04:57-0800] [ALPM] upgraded python-pbr (5.11.0-1 -> 5.11.0-2)
[2022-11-15T18:04:57-0800] [ALPM] upgraded python-platformdirs (2.5.3-1 -> 2.5.4-1)
[2022-11-15T18:04:57-0800] [ALPM] upgraded python-psutil (5.9.3-1 -> 5.9.4-1)
[2022-11-15T18:04:57-0800] [ALPM] upgraded python-pyglet (2.0.0-1 -> 2.0.0-2)
[2022-11-15T18:04:58-0800] [ALPM] upgraded qt5-base (5.15.7+kde+r173-1 -> 5.15.7+kde+r174-1)
[2022-11-15T18:04:58-0800] [ALPM] upgraded python-pyqt5 (5.15.7-2 -> 5.15.7-3)
[2022-11-15T18:04:58-0800] [ALPM] upgraded python-pytest (7.2.0-3 -> 7.2.0-4)
[2022-11-15T18:04:58-0800] [ALPM] upgraded python-virtualenv (20.16.6-1 -> 20.16.7-1)
[2022-11-15T18:04:58-0800] [ALPM] upgraded python-wheel (0.38.2-1 -> 0.38.3-1)
[2022-11-15T18:04:58-0800] [ALPM] upgraded qt5-declarative (5.15.7+kde+r21-1 -> 5.15.7+kde+r22-1)
[2022-11-15T18:04:58-0800] [ALPM] upgraded qt5-wayland (5.15.7+kde+r49-1 -> 5.15.7+kde+r52-1)
[2022-11-15T18:04:58-0800] [ALPM] upgraded shared-color-targets (0.1.7-3 -> 0.1.7-4)
[2022-11-15T18:04:58-0800] [ALPM] upgraded shotwell (2:0.30.16-2 -> 2:0.30.17-2)
[2022-11-15T18:04:58-0800] [ALPM] upgraded soundtouch (2.3.1-2 -> 2.3.2-1)
[2022-11-15T18:04:58-0800] [ALPM] upgraded systemd-sysvcompat (251.7-4 -> 252.1-1)
λ ~/

Grateful.

-Mr. E

Sounds like ZFS wasn’t functioning properly. Maybe that kernel update you got fixed it.

1 Like