No VM other than Dom0 is running!

Bonjour!
Today (16 February 2026), I updated my Qubes, and after the update, all running VMs were shut down on their on. Now, whenever I try to start any VM, it does not start. Additionally, when I try to open the settings of any VM, I get the following error:

Value Error: Invalid literal for Int () with base 10: 92274688B at line 33 of file/usr/bin/qubes-vm-settings

Any guidance?

1 Like

Can you post details of that error message?

Do you see also similar error in sudo journalctl -u qubesd output?

1 Like

This is the output of sudo journalctl -u qubesd :

qubesd.service: start start operation timed out. Terminating.
qubesd.service: Failed with result 'timeout'.
qubesd.service: Unit process 1931 (lvm) remains running after unit stopped.
Failed to start qubesd.service - Qubes OS daemon.
qubesd.service: Scheduled restart job, restart counter is at 1.
qubesd.service: Found left-over process 1931 (lvm) in control group while starting unit. Ignoring.
qubesd.service: This usually indicates unclean termination of a previous run, or service  implementation deficiencies. 
qubesd.service: Found left-over process 2976 (lvm) in control group while starting unit. Ignoring.
1 Like

Uh, start timeout is bad. And lvm that remains running also is not good (it should be short call, should not remain running after qubesd stops). I guess something about LVM itself went wrong. Can you check just sudo journalctl about that time if you seem some LVM-related errors (or generally some other errors before that start timeout)? Maybe something from the kernel about device-mapper (“dm” in short)?

1 Like

I experienced the same issue but it solved eventually so I’ve to edit this post multiple times. Here is the summary:

Qubes Manager was not running. When I started it from Qubes menu, after clicking on any VM’s settings it crashes.

When I tried to open VM settings from Qubes Menu it gives the following error:

ValueError: Invalid literal for int() with base 10:
'100663296B'
at line 33
of file /usr/bin/qubes-vm-settings.

The output of sudo journalctl -u qubesd was this:

qubesd.service: start operation timed out. Terminating.
qubesd.service: Failed with result 'timeout'.
qubesd.service: Unit process 1976 (lvm) remains running after unit stopped.
Failed to start qubesd.service - Qubes OS daemon.
qubesd.service: Scheduled restart job, restart counter is at 1.
qubesd.service. Found left-over process 1976 (lvm) in control group wile restarting unit. Ignoring.
qubes.service: This usually indicates unclean termination of a previous run, or service implement
Starting qubesd.service - Qubes OS daemon...
Started qubesd.service - Qubes OS daemon.

All the VMs in Qubes Manager were showing 0.0 MiB Disk Usage

I checked journalctl for errors and the following error is there for all VMs

ERROR: vm.sys-net Start failed: Logical Volume "vm-sys-net-private-snap" already exists in volu.....

I tried to remove this snap volume but again got error:

sudo lvremove qubes_dom0/vm-sys-net-private-snap
Check of pool qubes_dom0/vm-pool failed (status:64). Manual repair required!
Failed to update thin pool qubes_dom0/vm-pool.

Then I tried to repair the thin pool but again got error:

sudo lvconvert --repair qubes_dom0/vm-pool
Transaction id 1999 from pool "qubes_dom0/vm-pool" does not match repaired transaction id 1998 from /dev/qubes_dom0/lvol0_pmspare.

Then I followed @unman 's solution here to take backup and then change transaction id.

sudo vgcfgbackup qubes_dom0 -f /home/user/VG_backup

Edited the new file, at the section under logical_volumes->vm-pool->segment1
changed the transaction_id to 1998.
Saved the edited file.
Restored the edited data back in:

sudo vgcfgrestore qubes_dom0 -f /home/user/VG_backup

but it failed

Then used --force to restore it again and it workd

sudo vgcfgrestore qubes_dom0 -f /home/user/VG_backup --force

Activated the edited volume:

sudo lvchange -ay qubes_dom0

It took many minutes but finally it worked. Now everything is working fine. Many thanks to @unman

3 Likes