News¶
Incus 7.5 has been released¶
Sep 25, 2026
The Incus team is pleased to announce the release of Incus 7.5!
This release introduces another good mix of new features for everyone, touching storage, network, clustering, access control, OCI containers and improved agent support. It also significantly improves performance for large scale environments and fixes a variety of bugs and security issues.
As usual, you can try Incus for yourself online: Linux Containers - Incus - Try it online
NOTE: The actual release version for download is 7.5.1 as 7.5.0 failed producing some of the release artifacts and needed a re-release.
Security fixes¶
This release fixes 11 security issues:
- CVE-2026-85185 (critical) - Arbitrary file deletion and directory placement on host via btrfs subvolume path traversal in optimized backups and migration
- CVE-2026-85526 (critical) - Arbitrary file deletion and directory placement on host via btrfs subvolume path traversal in optimized backups
- GHSA-443p-7392-h4v2 (medium) - Restricted project can use pull mode migration through clustered refresh
- GHSA-4cph-ccqv-hm3c (critical) - Project restriction bypass for
block.create_optionsvia volume update, copy and move - GHSA-579w-c4rw-c8q3 (critical) - Arbitrary file write on host via symlink in migration stream
- GHSA-hpjh-q53p-f27r (critical) - Arbitrary file write on host via path traversal in instance backup dependent volumes
- GHSA-jh4v-j34r-2mgh (high) - Project restriction bypass for custom volume copy with omitted source type
- GHSA-mfwv-x733-9446 (medium) - Authorization bypass lets a restricted client read any operation in another project
- GHSA-mmj7-8rgf-mx2h (high) - Read of other bucket objects via unsigned header on presigned S3 upload URL
- GHSA-wfvq-qh87-gm4j (medium) - Incus CLI arbitrary file write via malicious
incus-agentduring recursive file pull - GHSA-x8gj-2q73-qr6j (high) - Restricted client can read storage bucket keys in the default project
New features¶
OVN child networks¶
OVN networks can now be created with a parent pointing to another OVN network in the same project.
Rather than getting a logical router of its own, the child network attaches its logical switch and subnet to the logical router of its parent. This allows several internal subnets to be routed by a single logical router, sharing its uplink, external address and peerings.
stgraber@vorash:~$ incus network create net1 --type=ovn network=UPLINK ipv4.address=192.0.2.1/24
stgraber@vorash:~$ incus network create net2 --type=ovn parent=net1 ipv4.address=198.51.100.1/24
stgraber@vorash:~$ incus launch images:debian/13 c1 --network net2
A child network keeps its own subnet, DHCP, DNS records, ACLs and instance ports. It can enable NAT independently of its parent and can use ipv4.nat.address and ipv6.nat.address to translate to an address of its own, making it possible to have one subnet translated while another is routed natively on the same router.
Peerings are handled by the parent network and cover the subnets of all its children.
Documentation: https://linuxcontainers.org/incus/docs/main/reference/network_ovn/#child-networks
Live project moves within a cluster¶
A running instance can now be moved to a different project as part of a live migration to another cluster member by combining --target-project with --target.
stgraber@vorash:~$ incus move v1 --target incus02 --target-project prod
The instance's devices must resolve to the same set in the target project.
Custom volumes marked as dependent will follow the instance.
Documentation: https://linuxcontainers.org/incus/docs/main/howto/move_instances/
Initial copy for custom volume disks¶
disk devices backed by a custom storage volume and attached to containers gained an initial.copy property.
When set to true, the content already present at the device path inside the container is copied into the volume the first time the volume is used, if it's empty. This matches what application containers expect when shipping data in the directories that later get volumes mounted onto them.
stgraber@vorash:~$ incus storage volume create default mysql-data
stgraber@vorash:~$ incus config device add mysql data disk pool=default source=mysql-data path=/var/lib/mysql initial.copy=true
The copy only ever happens once per volume, as recorded in the volume's volatile.initial.copied key.
Documentation: https://linuxcontainers.org/incus/docs/main/reference/devices_disk/#initial-copy
Instance security tags¶
A new security.tags instance configuration key holds a comma-separated list of tags.
Incus doesn't use those tags in its own authorization decisions, instead they're exposed to the authorization backend. With OpenFGA, every tag becomes a security_tag object holding a tag relation with every instance carrying it, making it easy for external tooling to write policies based on tags rather than on individual instances.
stgraber@vorash:~$ incus config set c1 security.tags=pci,production
Documentation: https://linuxcontainers.org/incus/docs/main/authorization/#security-tags
OIDC claims in the authorization scriptlet¶
The details argument passed to the authorization scriptlet gained a Claims field holding the validated OIDC token claims of the client.
This allows writing rules based on any claim provided by the identity provider, such as groups or email, without having to maintain a separate mapping in the scriptlet.
Documentation: https://linuxcontainers.org/incus/docs/main/authorization/#scriptlet
Cluster member metrics¶
The /1.0/metrics endpoint now reports cluster member information:
incus_cluster_memberwith the member's architecture and failure domainincus_cluster_member_statuswith one sample per possible statusincus_cluster_member_rolewith one sample per role heldincus_cluster_member_groupwith one sample per group the member belongs to
This makes it easy to alert on an offline or evacuated cluster member directly from Prometheus.
Documentation: https://linuxcontainers.org/incus/docs/main/reference/provided_metrics/
NVIDIA GPUDirect P2P for virtual machines¶
Physical gpu devices passed through to virtual machines gained a nvidia.clique configuration key.
Setting the same clique ID (0 to 15) on several GPUs passed to the same virtual machine advertises them as a GPUDirect P2P clique to the guest driver, allowing direct DMA between the GPUs.
Documentation: https://linuxcontainers.org/incus/docs/main/reference/devices_gpu/
Improved Windows agent¶
The Windows agent now allows for interactive incus exec sessions and also improves handling for signal forwarding.
NetBSD virtual machines¶
The Incus agent is now available for NetBSD guests, on top of the existing Linux, FreeBSD, macOS and Windows support.
As with the other BSDs, setting image.os to something starting with NetBSD will automatically apply the needed tuning to the virtual machine.
FreeBSD client package¶
The Incus client is now packaged in FreeBSD Ports and can be installed with pkg install incus-client. Prebuilt FreeBSD client binaries are also included with every release.
Archive mode for file transfers¶
incus file push and incus file pull gained an --archive (-a) flag, behaving like cp -a.
Ownership, mode and timestamps are now only preserved when using --archive (which also implies --recursive), with regular transfers behaving like a plain cp.
stgraber@vorash:~$ incus file pull --archive c1/etc/ ./etc-backup/
OCI image labels and environment¶
Images imported from OCI registries now expose their standard labels (org.opencontainers.image.*) as oci.* image properties, making the image title, version, source or description visible through incus image info and usable with the new image property columns.
The image environment is also no longer copied into the instance configuration at creation time. Instead it's used as the default environment for incus exec, keeping the instance configuration clean and letting image updates carry environment changes.
Bridge DNS host records¶
bridge networks gained a dns.include_hosts configuration key, controlling whether the network's dnsmasq serves records from the host's /etc/hosts file.
Setting it to false avoids exposing host-only entries to instances while keeping AppArmor confinement.
Documentation: https://linuxcontainers.org/incus/docs/main/reference/network_bridge/
Profiling through the API¶
The Go pprof profiles of incusd are now available under /internal/debug/pprof/ on every listener, restricted to clients allowed to administer the server.
Unlike core.debug_address, this works at any time, over HTTPS and without changing the server configuration.
stgraber@vorash:~$ incus query --raw my-remote:/internal/debug/pprof/heap > heap.pprof
stgraber@vorash:~$ go tool pprof heap.pprof
Documentation: https://linuxcontainers.org/incus/docs/main/debugging/#profiling-incusd
Complete changelog¶
Here is a complete list of all changes in this release:
Full commit list
- incus-agent: Abstract exec process handling
- incus-agent: Report exit status of Windows exec sessions
- incus-agent: Fix PATHEXT for Windows exec sessions
- incus-agent: Forward exec signals on Windows
- incus-agent: Support interactive exec sessions on Windows
- incusd/instance/edk2: Add FirmwarePair.HasNVRAM
- incusd/scriptlet/qemu: Handle firmwares without NVRAM
- incusd/instance/qemu: Skip NVRAM handling with SeaBIOS firmware
- doc: Note NVRAM scriptlet functions need EDK2 firmware
- incusd: Validate OCI config.json before use
- incusd: Consistently say 'an NVRAM'
- incusd/instance/qemu: Close NVRAM file after writing
- incusd/instance/qemu: Never drop runtime state while QEMU is alive
- incusd/instance/qemu/qmp: Raise default command timeout to 2s
- client/oidc: Route provider requests through a dedicated transport
- client/oidc: Drop empty form parameters sent to the provider
- incusd/device: Allow importing dependent volumes with snapshots
- tests: Check dependent volume snapshots survive export/import
- incusd/storage/drivers: Add cluster size to qcow2 ImageInfo
- incusd/instance/qemu: Advertise qcow2 cluster size as discard granularity
- internal/io: Add GetUmask and Lchtimes helpers
- incus/file: Add --archive to file push/pull
- tests: Add --archive file transfer coverage
- i18n: Update translation templates
- incus/cluster: Don't use unix socket URL as the join address
- incus-agent: Externalize PTY logic
- incus-agent: Basic signal handling on Windows
- incus-agent: Add NetBSD agent
- incusd/instance/agent-loader: Add NetBSD files
- incusd/instance/agent-loader: Rename FreeBSD rc.d directory
- shared/osinfo: Add NetBSD
- incusd/instance/qemu: Add NetBSD support
- goreleaser: Add NetBSD
- doc/instance/create: Add NetBSD and update other agents
- github: Tune shellcheck exclusions
- doc/wordlist: Update wordlist
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (Italian)
- Translated using Weblate (Italian)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Dutch)
- Translated using Weblate (Dutch)
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Russian)
- Translated using Weblate (Russian)
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Tamil)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (Greek)
- Translated using Weblate (Georgian)
- Translated using Weblate (Georgian)
- Translated using Weblate (Portuguese)
- incusd/instance: Mention images available for other instance types
- incusd/images: Check source instance access on publish
- incusd/cluster: Wait for all blocking instance operations before evacuating
- incusd/instance: Apply evacuation guard to forwarded state changes
- incusd/instance/lxc: Check liblxc state when tolerating stop failures
- incusd/instance: Balance NUMA nodes on committed memory
- incusd/cluster: Stop Ready and Frozen instances before a restore migration
- incusd/instance: Reject stateless cluster moves of running instances
- incusd/device/tpm: Mount the instance volume when removing state
- incusd/instances: Prefer images.default_architecture for multi-arch sources
- incusd/instance/qmp: Split query and operational command timeouts
- incusd/instance/qmp: Tolerate monitor timeouts in blockJobWait
- incusd/instance/qemu: Report busy monitor as running
- incusd/instance/qemu: Log failure to resume after failed migration
- incusd/instance/qemu: Wait for the NBD server before blockdev-add
- incusd/instance/qemu: Accept qemu-kvm binary name in PID validation
- incus/image: Don't warn on already closed files during import
- Set PKCE challenge and verifier values
- cmd/generate-database/db: Add nullable field support
- incusd/network/bridge: Clean up tunnel interfaces on failed start
- incusd/network/physical: Restore the original MTU on stop
- incusd/instance: Treat pool and project changes as migrations
- api: network_bridge_dns_include_hosts
- incusd/network/bridge: Add dns.include_hosts
- doc: Update configs
- tests: Add dns.include_hosts test
- incusd/db/query: Fix giving-up warning in Retry
- incusd/cluster: Fix IsCowsqlNode return value
- incusd/cluster: Fix lock leak in heartbeat Send
- incusd/cluster: Fix typos
- doc: Mention FreeBSD client
- incusd: Restore in-memory config when update triggers fail
- incusd/config: Distinguish unset keys from explicit defaults
- tests: Add server config default value test
- incusd: Allow unsetting OVN connection when no OVN network exists
- tests: Add OVN server config test
- incusd/network/ovn: Inherit uplink bridge MTU when none is configured
- tests: Check OVN uplink veth MTU
- incusd: Don't close a nil pipe reader on backup failure
- incusd/storage/ceph: Fix qemu-nbd image spec
- tests: Add ceph librbd test
- github: Install qemu with librbd support for ceph tests
- cmd/incus: Remove url escape for spice socket path.
- incusd/storage/drivers: Add ReconnectQemuNbd and DisconnectQemuNbdWait
- incusd/storage/ceph: Reconnect NBD devices in place after resize
- tests: Add ceph-librbd driver to VM storage suites
- github: Run VM storage tests on ceph-librbd
- incus-agent: Fix paths on BSDs
- incus-agent: Factor code for UNIXes
- incus-agent: Please gofumpt
- incusd/instance/qemu/qmp: Be lenient about events with trailing \r
- incusd/instance/qemu: Disable multiport serial on NetBSD
- incusd/instance/drivers: Update serial tests
- doc/instance/create: Document new NetBSD tuning
- incusd/instance/config: Add volatile.last_state.agent.once
- incusd/instance/qemu: Make template application more robust
- doc: Update config
- incusd/instance/qemu: Remove unused argument
- incusd: Fix typo
- incusd/instance/agent-loader: Log agent output
- doc: Add multiport to wordlist
- incusd/rsync: Only transfer xattrs settable without CAP_SYS_ADMIN
- incusd/storage/zfs: Delete target volume before full transfer on refresh
- internal/linux: Add SparseFileWrapper
- incusd/storage: Use linux.SparseFileWrapper
- incusd/cluster/evacuation: Stop in place when scriptlet has no candidates
- incusd/mirror: Add file mirroring package
- internal/linux: Add SetMountReadOnly
- incusd/device/tpm: Run swtpm on a local mirrored copy of its state
- incusd/instance/qemu: Run QEMU on a local mirrored copy of the UEFI variables
- incusd/instance/qemu: Make the config volume read-only during live migration on shared storage
- incusd/storage: Flush local instance state before snapshots, copies and backups
- incusd/storage/drivers: Repair VM config volumes with recorded errors before mounting
- incusd/scriptlet: Track pending instance placements
- incusd/cluster/evacuation: Serialize target selection and record pending placements
- incusd/instance: Reserve NUMA nodes for starting and incoming instances
- incusd/apparmor/rsync: Allow reading destination ancestors
- incusd/api: Exclude node-local config from untargeted cluster ETag
- incusd/cluster: Reject internal rebalance/handover requests during startup
- incus/device: Set NVIDIA device UUIDs for physical GPUs
- incusd/storage/drivers: Add generic property cache
- incusd/storage/zfs: Use generic property cache
- incusd/storage/truenas: Use generic property cache
- incusd/storage/linstor: Add getVolumeIndex
- incusd/storage/linstor: Use filesystem stats for mounted volumes
- incusd/storage/linstor: Cache volume usage lookups
- incusd/storage/lvm: Cache thin volume usage lookups
- incusd/ovn: gofumpt
- incusd/instance/qmp: Handle ringbuf-read racing a chardev swap
- incusd/instance/qemu: Make ConsoleLog tolerant of concurrent console attach
- incusd/instance/lxc: Record migration transfer errors before signaling completion
- incusd/instance/qemu: Record migration transfer error before signaling completion
- incusd/project: Delete network peers on forced project deletion
- tests: Check forced project deletion with OVN peers
- incusd/images: Return error on invalid export request
- incusd/images: Preserve image type on push mode copy
- Translated using Weblate (Georgian)
- incusd/network/ovn: Limit initial connection setup
- incusd/network/ovn: Fail fast and name the database when unavailable
- incusd/network/acl: Resolve profile projects in a single transaction
- incusd/network/address-set: Resolve profile projects in a single transaction
- incusd/network/ovn: Scope mutual peer lookups to the target network
- incusd/instance/qemu: Don't pass nil exec streams to the agent client
- internal/server/storage/drivers: Handle dotted Ceph client IDs
- internal/server/util: Recognize named unconfined AppArmor profiles
- internal/server/instance/drivers: Unmount residual Unix devices during cleanup
- incusd/project: Fix unrestricted project check on volatile keys
- incusd/project: Allow snapshot restore with changed volatile keys
- tests: Add restricted project snapshot restore test
- tests: Cover OVN peering with several peers on one network
- incusd/instance/qmp: Make clearing the event handler sticky
- incusd/instance/qemu: Ignore duplicate stop hooks
- incusd/instance/lxc: Reuse exact-sized ID map gaps
- tests: Check exact-sized isolated ID map reuse
- api: gpu_physical_clique
- incusd/device/gpu: Add clique option to physical GPUs in VMs
- incusd/instance/qemu: Set x-nv-gpudirect-clique on passed-through GPUs
- doc: Document GPU clique option
- doc: Add DMA and GPUDirect to wordlist
- doc: Update configs
- incusd/instance: Fix project change dropped on cross-member moves
- tests: Add cross-project cluster move tests
- client: Don't attempt reconnection on websocket operations
- incusd/storage/zfs: Clean up parent dataset on failed migration
- shared/scriptlet: Flatten embedded pointer structs when marshalling
- api: authorization_scriptlet_claims
- incusd/request: Add OIDC claims context keys and forwarding header
- incusd/auth/oidc: Return validated claims from Auth
- incusd: Store validated OIDC claims in the request context
- incusd/cluster: Forward OIDC claims to other members
- incusd/auth: Expose OIDC claims to the authorization scriptlet
- doc: Document the Claims field of the authorization scriptlet
- incusd/mirror: Don't prune persistent files on start
- incusd/instance/qemu: Regenerate NVRAM when the symlink is dangling
- incus/server/network/driver/common: Remove loadbalancer bgp prefix on network delete
- incusd/instances: Log instance rendering failures
- incusd/backup: Fall back to the index config when backup.yaml is missing
- tests: Import a backup without backup.yaml
- incusd/firewall/nftables: Replace bridge filter chains atomically
- incusd/device/nic/bridged: Keep existing filters when an update fails
- incusd/network/acl: Reject rules the host firewall can't apply
- incusd/network/bridge: Validate ACL actions against the host firewall
- incusd/device/nic/bridged: Validate ACL actions against the host firewall
- doc: Note that allow-stateless is OVN only
- client: Fail clearly when OIDC provider has no device authorization endpoint
- incusd/instance/lxc: Hold the ID map lock until the allocation is persisted
- tests: Check concurrent isolated ID map allocation
- incusd/network/ovn: Match IPv6 load balancer health monitors
- incusd/instance: Add OCI config helpers
- incusd/instance/lxc: Export the OCI image environment as defaults
- incusd: Use the OCI image environment as exec defaults
- incusd: Stop copying the OCI environment into the instance config
- tests: Check OCI environment overrides and rebuild
- api: instance_project_move_live
- incusd/instance: Reject project moves when an attached volume can't follow
- incusd/instance: Reject project moves of instances with backups
- incusd/instance: Allow live project moves within a cluster
- incusd/instance: Resolve the volume project when removing dependent volumes
- incusd/storage: Fix migration type negotiation for dependent volumes
- incusd/instance: Pass the cluster move flag when negotiating dependent volume types
- incusd/instance: Let dependent volumes follow an instance across projects
- doc: Document live project moves
- tests: Add cross-project move tests
- incusd/instance/qemu: Reject live migration of filesystem dependent volumes
- incusd/storage: Resolve the volume project for dependent volumes
- incusd/instance: Resolve the volume project when deleting dependent volumes
- incusd/instance: Resolve the volume project for near-live dependent volume transfers
- incusd/instance: Let dependent volumes on local pools follow a project move to another member
- doc: Document dependent volumes in project moves with shared storage volumes
- tests: Add tests for dependent volumes in projects sharing storage volumes
- incusd: Keep the OS API reachable during shutdown
- incusd: Bound instance stops during shutdown
- incusd: Let a forced shutdown override one in progress
- incusd/storage/lvm: Use shared activation for ISO volumes on clustered pools
- incusd/storage/lvm: Rename both volumes of VM snapshots
- incusd/storage/lvm: Keep the original volumes until a restore fully succeeds
- tests: Rename VM snapshots before restoring them
- incusd/device: Reject unknown GPU types instead of passing through
- incusd/apparmor: Allow reading the local QEMU data directory
- tests: Check unknown GPU types are refused
- incusd/storage/zfs: Only reset datasets overriding the systemd ignore flag
- tests: Check delegated child datasets are reset
- incusd/firewall/nftables: Don't widen ACL rules for the other IP family
- tests: Check mixed-family ACL rule rendering
- incusd/firewall/nftables: Match ICMP on l4proto in ACL rules
- incusd/device/nic/bridged: Don't require br_netfilter for IPv6 filtering
- incusd/firewall/nftables: Allow DHCPv4 discovery through the forward chain
- tests: Check DHCPv4 exception and ICMPv6 ACL rendering
- incusd/firewall/nftables: Replace address set members in one transaction
- incusd/network/address-set: Reject overlapping addresses
- tests: Check a rejected address set edit keeps the applied set
- tests: Check bridged NIC ACL failures keep the filters
- incusd/instance: Don't shadow the project package name
- incusd/project: Re-check limits when recording instances and volumes
- incusd/storage: Check project limits when moving custom volumes
- incusd/cluster: Don't run update trigger under the gateway lock
- incusd/network/zone: Refresh TSIG cluster-wide and notify peers on creation
- incusd/network/bridge: Notify DNS peers on network update
- incus/remote: Make remote name checks stricter
- shared/cliconfig: Include diagnosis data in error path
- incus/usage: Defer remote error handling and clarify messages
- incus/list: Clarify --all-remotes usage
- incus: Hint missing space after remote on empty match list
- i18n: Update translation templates
- api: metrics_cluster_members
- incusd/metrics: Add cluster member metric types
- incusd/metrics: Add cluster member info, status and role metrics
- tests: Check cluster member metrics
- doc: Document cluster member metrics
- Added incant to the list of third party software
- Translated using Weblate (Portuguese)
- incusd/cluster: Include member lookups in heartbeat round duration
- incusd/cluster: Stamp member heartbeats at write time
- incusd/db: Add GetNICConflictCandidateIDs
- incusd/device/nic_bridged: Only load instances that may conflict
- incusd: Only query local instances for forwarded instance listings
- incusd/instances: Load local instances in one query when listing all projects
- incusd/storage: Fix custom volume usage always reporting zero total size
- api: instance_security_tags
- incusd/auth: Add security tag object type
- incusd/auth: Add instance security tags to the authorizer interface
- incusd/auth: Add security tags to the OpenFGA model
- incusd/auth: Add security tag support to OpenFGA
- incusd/auth: Update generated OpenFGA model
- shared/validate: Add IsSecurityTagList
- incusd/instance: Add security.tags
- incusd/instance: Sync security tags with the authorizer
- incusd: Include security tags in OpenFGA resource sync
- incusd/patches: Add auth_openfga_security_tags
- doc: Update configs
- tests: Add OpenFGA security tags test
- doc: Document security tags
- internal/filter: Add RegexpToLike
- incusd/instances: Push simple name filters down to the database
- incusd/instances: Forward filters to other cluster members
- incusd/instance/qemu: Abort snapshot transfer on failed live migration
- incusd/instance: Reject security.idmap.base on isolated containers
- incusd/instance/lxc: Use fixed ID map bases on non-isolated containers
- incusd/patches: Disable isolation on containers with a fixed ID map base
- incusd/instance: Update security.idmap.base description
- doc: Update configs
- doc: Describe fixed ID map ranges
- tests: Cover fixed ID map ranges
- incusd/db: Turn nodeSpecificNetworkConfig into network type aware function
- incusd: Switch usages to network type aware IsNodeSpecificNetworkConfig
- incusd/network/ovn: Add DeleteLogicalRouterNATByLogicalIP
- incusd/network/ovn: Resolve the network owning the logical router
- incusd/network/ovn: Support networks sharing a logical router
- incusd/network/ovn: Add support for child networks
- incusd/network: Put OVN networks with a parent in the logical dependency group
- incusd/network/ovn: Handle child networks in router wide features
- api: network_ovn_parent
- doc: Document OVN child networks
- doc: Update configs
- tests: Add OVN child network tests
- incusd/seccomp: Retry pidfd_open with PIDFD_THREAD on ENOENT
- incusd/network/ovn: Don't load a self-referencing parent
- incus/server/storage/driver/ceph: Flatten image in background during instance creation
- incusd/storage/ceph: Only flatten clones and wait for it before deleting
- incusd/storage/ceph: Release the source snapshot after flattening
- incusd/storage/ceph: Describe background flattening for ceph.rbd.clone_copy
- doc: Update configs
- tests: Cover ceph.rbd.clone_copy=false copies
- api: Add disk_initial_copy extension
- incusd/storage: Add volatile.initial.copied volume key
- incusd/device/disk: Add initial.copy for custom volumes
- incusd/instance/lxc: Allow adding initial.copy disks to existing instances
- tests: Add initial.copy disk test
- doc: Document initial.copy
- doc: Update configs
- client/oci: Expose OCI image labels as oci.* image properties
- tests: Cover OCI image labels
- incusd/profiles: Check project restrictions on profile creation
- incusd/network/ovn: Route child networks through the parent's peerings
- incusd/network/acl: Match the child networks of a peer
- incusd/network/ovn: Allow NAT addresses on child networks
- tests: Cover peering and NAT addresses with OVN child networks
- doc: Document peering and NAT addresses on OVN child networks
- api: Add internal_debug_pprof extension
- incusd: Add /internal/debug/pprof
- tests: Cover /internal/debug/pprof over HTTPS
- doc: Document profiling through the API
- incusd/cluster: Disconnect source client after restore
- incusd/instance/qemu: Only watch console disconnection for text console
- incusd/console: Time out waiting for websockets to connect
- incusd/logging: Don't block event delivery when Loki can't keep up
- incusd/instance: Cache boot time when computing process start time
- shared/resources: Read interface counters from sysfs
- incusd/instance/qemu: Read NIC counters directly for metrics
- incusd/metrics: Reduce allocations when rendering metrics
- shared/resources: Parse the PCI ID database only once
- shared/resources: Avoid over-allocating when reading sysfs files
- shared/resources: Resolve udev links once and count processes cheaply
- Update gomod
- doc/rest-api: Refresh swagger YAML
- incus/file: Contain recursive pull symlinks
- incusd: Don't follow symlinks when receiving migration data
- incusd/storage: Treat volume creation with a source as a copy
- incusd/storage/drivers: Confine btrfs subvolume paths
- incusd/storage: Validate dependent volume names on backup import
- incusd/storage: Ignore backup project for dependent volumes
- incusd/storage/s3: Require x-amz-* headers to be signed
- incusd/operations: Check project access on operation get and wait
- incusd/operations: Hide access token operations from non-admins
- incusd/storage/buckets: Require can_edit to read bucket keys
- incusd/project: Restrict volume options on update and copy
- incusd/instances: Check project restrictions on clustered refresh
- Release Incus 7.5
Documentation¶
The Incus documentation can be found at:
https://linuxcontainers.org/incus/docs/main/
Packages¶
There are no official Incus packages as Incus upstream only releases regular release tarballs. Below are some available options to get Incus up and running.
Installing the Incus server on Linux¶
Incus is available for most common Linux distributions. You'll find detailed installation instructions in our documentation.
https://linuxcontainers.org/incus/docs/main/installing/
Homebrew package for the Incus client¶
The client tool is available through HomeBrew for both Linux and MacOS.
https://formulae.brew.sh/formula/incus
Chocolatey package for the Incus client¶
The client tool is available through Chocolatey for Windows users.
https://community.chocolatey.org/packages/incus/7.5.1
Winget package for the Incus client¶
The client tool is also available through Winget for Windows users.
https://winstall.app/apps/LinuxContainers.Incus
Support¶
Monthly feature releases are only supported up until the next release comes out. Users needing a longer support length and less frequent changes should consider using Incus 7.0 LTS instead.
Community support is provided at: https://discuss.linuxcontainers.org
Commercial support is available through: https://zabbly.com/incus
Bugs can be reported at: https://github.com/lxc/incus/issues
Incus 7.4 has been released¶
Aug 28, 2026
The Incus team is pleased to announce the release of Incus 7.4!
Another pretty busy month for us as we clear a lot of our Github backlog, fix quite a few longstanding bugs and land a good mix of new features too!
As usual, you can try Incus for yourself online: Linux Containers - Incus - Try it online
Security fixes¶
This release fixes 2 security issues:
- CVE-2026-81500 (medium) - Client-side path traversal when exporting an image from a malicious server
- CVE-2026-81501 (medium) - Private image import from another project by a restricted client
New features¶
UEFI Secure Boot key management¶
Following the introduction of NVRAM access in Incus 7.3, this release adds a full set of tools to manage the UEFI Secure Boot databases of virtual machines.
A new incus low-level secureboot command allows listing, adding, removing, exporting and importing Secure Boot database entries.
stgraber@vorash:~$ incus low-level secureboot list v1 db
┌──────┬───────────────────────┬──────────────┬───────────────────────────────────────┐
│ TYPE │ OWNER GUID NAME │ FINGERPRINT │ SUBJECT │
├──────┼───────────────────────┼──────────────┼───────────────────────────────────────┤
│ x509 │ MICROSOFT_VENDOR_GUID │ 48e99b991f57 │ Microsoft Corporation UEFI CA 2011 │
│ │ ├──────────────┼───────────────────────────────────────┤
│ │ │ 076f1fea90ac │ Windows UEFI CA 2023 │
│ │ ├──────────────┼───────────────────────────────────────┤
│ │ │ e5be3e64c6e6 │ Microsoft Option ROM UEFI CA 2023 │
│ │ ├──────────────┼───────────────────────────────────────┤
│ │ │ e8e95f0733a5 │ Microsoft Windows Production PCA 2011 │
│ │ ├──────────────┼───────────────────────────────────────┤
│ │ │ f6124e34125b │ Microsoft UEFI CA 2023 │
└──────┴───────────────────────┴──────────────┴───────────────────────────────────────┘
For those wanting to fully control the initial state of the NVRAM, a new set of initial.* instance configuration keys are also available, allowing for the databases to be populated at instance creation time, ideal for us with profiles.
initial.secureboot.pk,initial.secureboot.kek,initial.secureboot.db,initial.secureboot.dbx,initial.secureboot.dbtandinitial.secureboot.mokto enroll Secure Boot database entriesinitial.nvram.<GUID>.<name>andinitial.nvram-binary.<GUID>.<name>to set other arbitrary NVRAM entries
Documentation: https://linuxcontainers.org/incus/docs/main/reference/instance_options/
Near-live migration of containers¶
Live migration of containers through CRIU has always been somewhat fragile as it depends on the exact workload running inside of the container being compatible with CRIU.
Incus 7.4 introduces an alternative for containers on local storage, near-live migration.
Rather than transferring the memory state, the container's filesystem is transferred to the target server through a series of incremental snapshots while the container keeps running. Only the last incremental transfer requires the container to be stopped, after which it's started back up on the target server.
This isn't a live migration as the container does get restarted, but the downtime is limited to that final transfer, which is usually very quick and allows for very large containers to be moved with very limited downtime.
This is available through the new --refresh flag of incus move, both when moving between cluster members and when moving between remote servers:
stgraber@vorash:~$ incus move c1 --target incus02 --stateless --refresh
or
stgraber@vorash:~$ incus move c1 remote-server:c1 --stateless --refresh
A matching refresh-migrate value was added to the cluster.evacuate instance configuration key making it possible to enable this behavior during cluster evacuations.
Note that this is only supported on ZFS or btrfs and only for containers as other storage drivers don't have an efficient snapshot transfer mechanism for remote transfers.
Documentation: https://linuxcontainers.org/incus/docs/main/howto/move_instances/
One-time boot override for virtual machines¶
The incus start command gained a new --override-boot flag allowing for picking what a VM should be booting from next.
It can be given a specific boot entry, or if left empty, will show an interactive list of the boot entries present in the NVRAM to pick from.
stgraber@vorash:~$ incus start v1 --override-boot
┌────┬────────────────────────────────┬────────────────────────────────────────────────────────────────────────────────────────┐
│ ID │ DESCRIPTION │ PATH │
├────┼────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────────┤
│ 0 │ BootManagerMenuApp │ Fv(64074afe-340a-4be6-94ba-91b5b4d0f71e)/FvFile(eec25bdc-67f2-4d95-b1d5-f81b2039d11d) │
├────┼────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────────┤
│ 1 │ EFI Firmware Setup │ Fv(64074afe-340a-4be6-94ba-91b5b4d0f71e)/FvFile(462caa21-7614-4503-836e-8ab6f4662331) │
├────┼────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────────┤
│ 2 │ UEFI QEMU QEMU HARDDISK │ PciRoot(0x0)/Pci(0x1,0x1)/Pci(0x0,0x0)/Scsi(0x0,0x1) │
├────┼────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────────┤
│ 3 │ UEFI PXEv4 (MAC:10666AA0CED7) │ PciRoot(0x0)/Pci(0x1,0x4)/Pci(0x0,0x0)/MAC(10666aa0ced7,0x1)/IPv4(0.0.0.0,0x0) │
├────┼────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────────┤
│ 4 │ UEFI PXEv6 (MAC:10666AA0CED7) │ PciRoot(0x0)/Pci(0x1,0x4)/Pci(0x0,0x0)/MAC(10666aa0ced7,0x1)/IPv6(::,0x0,Static) │
├────┼────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────────┤
│ 5 │ UEFI HTTPv4 (MAC:10666AA0CED7) │ PciRoot(0x0)/Pci(0x1,0x4)/Pci(0x0,0x0)/MAC(10666aa0ced7,0x1)/IPv4(0.0.0.0,0x0)/Uri() │
├────┼────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────────┤
│ 6 │ UEFI HTTPv6 (MAC:10666AA0CED7) │ PciRoot(0x0)/Pci(0x1,0x4)/Pci(0x0,0x0)/MAC(10666aa0ced7,0x1)/IPv6(::,0x0,Static)/Uri() │
└────┴────────────────────────────────┴────────────────────────────────────────────────────────────────────────────────────────┘
Select next boot entry: 1
Sharing networks with restricted projects¶
Projects with features.networks enabled can now be granted access to networks from the default project through the restricted.networks.access configuration key.
The listed networks get shared into the project, appearing in incus network list and being usable by instances of the project, while the project remains free to create its own OVN networks alongside. This makes it possible to offer a common bridge or physical uplink to a restricted project without giving up on per-project networking.
Documentation: https://linuxcontainers.org/incus/docs/main/reference/projects/
DNS NOTIFY support for network zones¶
The built-in DNS server used for network zones now sends DNS NOTIFY messages to all configured peers whenever the content of a zone changes.
This lets secondary DNS servers refresh the zone immediately rather than having to wait for the refresh interval. The regular refresh interval was therefore bumped up to 15 minutes.
Documentation: https://linuxcontainers.org/incus/docs/main/howto/network_zones/
New table rendering in the CLI¶
We've tweaked the rendering of the lists in the CLI, offering a more polished and slightly more compact look.
stgraber@vorash:~$ incus list
┌─────────────┬─────────┬─────────────────────────┬──────────────────────────────────────────────────┬─────────────────┬───────────┐
│ NAME │ STATE │ IPV4 │ IPV6 │ TYPE │ SNAPSHOTS │
├─────────────┼─────────┼─────────────────────────┼──────────────────────────────────────────────────┼─────────────────┼───────────┤
│ caddy-test │ STOPPED │ │ │ CONTAINER (APP) │ 0 │
├─────────────┼─────────┼─────────────────────────┼──────────────────────────────────────────────────┼─────────────────┼───────────┤
│ dev-os │ STOPPED │ │ │ VIRTUAL-MACHINE │ 1 │
├─────────────┼─────────┼─────────────────────────┼──────────────────────────────────────────────────┼─────────────────┼───────────┤
│ isolated-oc │ STOPPED │ │ │ VIRTUAL-MACHINE │ 0 │
├─────────────┼─────────┼─────────────────────────┼──────────────────────────────────────────────────┼─────────────────┼───────────┤
│ rhel10 │ RUNNING │ 10.10.10.225 (eth0) │ 2602:fc62:ef:1010:1266:6aff:fe69:dd25 (eth0) │ CONTAINER (APP) │ 0 │
├─────────────┼─────────┼─────────────────────────┼──────────────────────────────────────────────────┼─────────────────┼───────────┤
│ rl9 │ RUNNING │ 10.10.10.60 (enp5s0) │ 2602:fc62:ef:1010:fac2:13b0:9ad7:918e (enp5s0) │ VIRTUAL-MACHINE │ 0 │
├─────────────┼─────────┼─────────────────────────┼──────────────────────────────────────────────────┼─────────────────┼───────────┤
│ test │ RUNNING │ 10.226.131.1 (incusbr0) │ fd42:10b9:5a70:b459::1 (incusbr0) │ VIRTUAL-MACHINE │ 0 │
│ │ │ 10.10.10.73 (_venp5s0) │ 2602:fc62:ef:1010:1266:6aff:fe11:9cfd (_venp5s0) │ │ │
├─────────────┼─────────┼─────────────────────────┼──────────────────────────────────────────────────┼─────────────────┼───────────┤
│ u24 │ RUNNING │ 10.10.10.66 (enp5s0) │ 2602:fc62:ef:1010:1266:6aff:fe22:9e8 (enp5s0) │ VIRTUAL-MACHINE │ 0 │
├─────────────┼─────────┼─────────────────────────┼──────────────────────────────────────────────────┼─────────────────┼───────────┤
│ v1 │ RUNNING │ 10.76.140.1 (incusbr0) │ fd42:75ef:6c01:accd::1 (incusbr0) │ VIRTUAL-MACHINE │ 0 │
│ │ │ 10.10.10.69 (enp5s0) │ 2602:fc62:ef:1010:1266:6aff:fe17:7e7f (enp5s0) │ │ │
└─────────────┴─────────┴─────────────────────────┴──────────────────────────────────────────────────┴─────────────────┴───────────┘
librbd backend for Ceph RBD¶
The ceph storage driver gained a ceph.rbd.backend configuration key.
When set to librbd, volumes are accessed through librbd rather than through the RBD kernel driver (krbd)
This allows using RBD features which aren't supported by the kernel driver and can help in environments where the krbd faces stability issues.
Documentation: https://linuxcontainers.org/incus/docs/main/reference/storage_ceph/
Recovery of shared storage pools in clusters¶
incus admin recover can now be used to recover shared storage pools on clustered servers, making disaster recovery possible for clusters that lost their database.
It's assumed that the exact same configuration is used on all servers within the cluster and the server processing the request will be the one initially owning everything that's imported.
Documentation: https://linuxcontainers.org/incus/docs/main/howto/disaster_recovery/
Remote-specific client certificates¶
incus remote add gained --tls-cert, --tls-key and --tls-p12 flags making it easy to load a remote-specific client certificate.
This is useful when working in an environment where you're not just provided with the address to a server or a trust token but instead are provided with a full set of server-generated credentials.
One such example would be a corporate environment with a centrally managed CA.
Another example would be when downloading IncusOS and opting to have our download site generate a client certificate for you.
stgraber@vorash:~$ incus remote add incus-os https://10.10.10.100 --tls-p12 ~/Downloads/client.pfx
Password for /home/stgraber/Downloads/client.pfx:
Raw API requests with custom headers and data files¶
incus query now allows for custom HTTP headers to be set through the -H flag.
It's also now possible to pass in raw binary data using incus query with the --data-file option.
This makes it possible to use the raw API for endpoints which rely on headers or binary payloads, such as the instance file API.
stgraber@vorash:~$ incus query -X POST --data-file ./f.txt -H "X-Incus-type: file" -H "X-Incus-mode: 0600" /1.0/instances/c1/files?path=/root/f.txt
NVRAM access from QEMU scriptlets¶
The QEMU scriptlet can now inspect and modify the NVRAM through a number of new functions:
get_nvram_varhas_nvram_varset_nvram_varunset_nvram_varget_raw_nvram_varset_raw_nvram_varlist_nvram_vars
Documentation: https://linuxcontainers.org/incus/docs/main/reference/instance_options/#qemu-scriptlet
OVN multicast configuration¶
OVN networks gained two new configuration keys, bridge.multicast_snooping and bridge.multicast_relay.
The former controls IGMP/MLD snooping on the virtual switch, only delivering multicast traffic to the ports which subscribed to the group, the latter allows relaying multicast traffic through the network's logical router.
Documentation: https://linuxcontainers.org/incus/docs/main/reference/network_ovn/
Control of IPv6 router advertisements¶
A new ipv6.ra configuration key is available on both bridge and ovn networks, controlling whether IPv6 router advertisements are sent on the network.
Burst I/O limits for disk devices¶
disk devices attached to VMs get new limits.read.burst, limits.write.burst and limits.max.burst keys that take the same syntax as the regular limits (byte/s and/or IOPS) and define the rate that the device may reach while bursting.
The matching limits.read.burst.length, limits.write.burst.length and limits.max.burst.length keys define how long a burst may last, defaulting to one second.
Documentation: https://linuxcontainers.org/incus/docs/main/reference/devices_disk/
Burst I/O limits for network devices¶
nic devices now get new limits.ingress.bucket, limits.egress.bucket and limits.max.bucket keys to define the amount of data (in bit) which may be sent in excess of the sustained limit, with bridged, p2p and routed NICs also taking limits.ingress.burst, limits.egress.burst and limits.max.burst to control the rate at which the bucket may be spent.
For ovn NICs, only the bucket keys are supported.
NIC queuing disciplines¶
bridged, p2p and routed NICs gained a queue.discipline configuration key, selecting the queuing discipline used on the host side of the NIC.
For virtual machines, the host side interface being a multi-queue TAP device, queue.discipline.attach controls whether the queuing discipline is attached to each transmit queue (queue) or to the interface root (root).
Documentation: https://linuxcontainers.org/incus/docs/main/reference/devices_nic/
Image property columns¶
incus image list now supports properties:KEY custom columns, showing the value of any image property directly in the listing.
stgraber@vorash:~$ incus image list images: debian/13 --columns lfpd,properties:os,properties:release,properties:variant
┌──────────────────────────────────┬──────────────┬────────┬────────────────────────────────────────────────┬────────┬─────────┬─────────┐
│ ALIAS │ FINGERPRINT │ PUBLIC │ DESCRIPTION │ OS │ RELEASE │ VARIANT │
├──────────────────────────────────┼──────────────┼────────┼────────────────────────────────────────────────┼────────┼─────────┼─────────┤
│ debian/13 (7 more) │ 065c3e644af0 │ yes │ Debian trixie amd64 (20260827_05:24) │ Debian │ trixie │ default │
│ ├──────────────┼────────┼────────────────────────────────────────────────┼────────┼─────────┼─────────┤
│ │ b8a6f9f60d67 │ yes │ Debian trixie amd64 (20260827_05:24) │ Debian │ trixie │ default │
├──────────────────────────────────┼──────────────┼────────┼────────────────────────────────────────────────┼────────┼─────────┼─────────┤
│ debian/13/arm64 (3 more) │ 4189835984b2 │ yes │ Debian trixie arm64 (20260827_05:24) │ Debian │ trixie │ default │
│ ├──────────────┼────────┼────────────────────────────────────────────────┼────────┼─────────┼─────────┤
│ │ e08e7964a29a │ yes │ Debian trixie arm64 (20260827_05:24) │ Debian │ trixie │ default │
└──────────────────────────────────┴──────────────┴────────┴────────────────────────────────────────────────┴────────┴─────────┴─────────┘
Image locations in clusters¶
Images in a cluster now report a locations field with a list of all servers in the cluster which are holding a copy of that particular image.
Instance start protection¶
A new security.protection.start instance configuration key, when set to true, prevents the instance from being started.
This is quite useful with template instances or decomissioned/backup environments.
stgraber@vorash:~$ incus config set c1 security.protection.start=true
stgraber@vorash:~$ incus start c1
Error: Instance is protected against being started
Ceph Object endpoint certificate¶
The cephobject storage driver's cephobject.radosgw.endpoint_cert_file configuration key has been replaced by cephobject.radosgw.endpoint_cert.
Incus generally tries to avoid referring to local files in configuration given the difficultly in keeping that in sync across multiple servers in a cluster.
Documentation: https://linuxcontainers.org/incus/docs/main/reference/storage_cephobject/
Updated minimal requirements¶
With the release of Go 1.27, Incus has now bumped its minimum Go version to 1.26.
Additionally, recent improvements to our OVN support has also made us bump the minimal OVS to 3.3.0 and OVN to 24.03.0.
Complete changelog¶
Here is a complete list of all changes in this release:
Full commit list
- incus/low-level: Fix naming inconsistency
- i18n: Update translation templates
- shared/api: Hide additional sensitive config keys
- incusd/instance/qmp: Bump query-migrate timeout
- incusd/db: Have NetworkNodeConfigs only consider the requested network
- incusd/network/ovn: Skip empty transactions in SetChassisGroupPriority
- generate-database: Fix GetMany generation for entities without filters
- docs: Clarify the sentence about Incus owning the ZFS pool/dataset
- incusd/daemon: Drop else branches in project expansion
- incusd/bgp: Resolve neighbor address for unnumbered peers
- incus/remote: Restrict proxy /1.0 cache to GET and invalidate on changes
- incusd/endpoints: Fix proxy protocol handling
- incusd/storage: Unmount leftover mounts in CleanupInstancePaths
- incusd/device: Check interface isn't in use by host before passthrough
- incusd/instance/lxc: Fix mount options of OCI /run tmpfs
- incusd/instance/lxc: Skip OCI /run tmpfs when image populates /run
- incusd/cluster: Stop instances in place when evacuation has no target
- api: instance_protection_start
- internal/instance: Add security.protection.start
- incusd/instance: Add support for security.protection.start
- doc: Update config
- incusd/instance: Clarify protection errors
- incusd/forknet: Fix concurrent DHCP resolv.conf handling
- incusd/instance: Update oci.dns.* descriptions
- doc: Update config
- incusd/instance/lxc: Enable edns0 in OCI resolv.conf
- incusd/forknet: Enable edns0 in resolv.conf
- incus: Add support for client-side near-live migration
- incus: Add refresh flag to move
- incusd/instance/drivers: Prevent migration of dependent disk during final sync
- i18n: Update translation templates
- shared/uefi: Various device path fixes
- api: instance_nvram_bulk_update
- client: Add NVRAM bulk update
- incusd/instances: Add NVRAM bulk update
- doc/rest-api: Refresh swagger YAML
- incus/low-level: Accept multiple arguments for nvram set and unset
- client: use a copy of ProtocolIncus for WithContext
- incus/low-level: Allow unsetting nvram with empty set value
- i18n: Update translation templates
- client: Preserve tempPath in UseProject and UseTarget
- incusd/network/ovn: Replace stale SNAT rule on external address change
- incusd/device/nic_ovn: Allow live update of ipv4/ipv6.address.external
- incusd/db: Add generated network, network_config and network_node entities
- incusd/db: Add GetCreatedNetworksInfo
- incusd/network: Add LoadAllCreated
- incusd/network: Reduce database queries in OVN network startup
- incusd/networks: Reduce database queries during network startup
- incusd: Use cached server name for warning operations
- incusd/cluster: Add ConnectIfBucketIsRemote
- incusd: Add forwardedResponseIfBucketIsRemote
- incusd: Forward storage bucket requests to the cluster member holding the bucket
- doc: Document storage bucket handling in clusters
- internal/migration: Don't double close websocket writer
- incusd/instance/qmp: Ignore timeouts during migration
- incusd/network/ovn: Don't replace DNAT rules sharing a logical IP
- incusd/network/ovn: Use tag_request on nested switch ports
- tests: Add OVN test suite
- tests: Register OVN tests
- github: Add OVN tests job
- doc/requirements: Bump minimum OVS/OVN versions
- Makefile: Bump minimum OVS/OVN versions
- internal/server/network: Update generated OVSDB schemas
- incusd/network/ovn: Add logical switch port ARP proxy helpers
- incusd/network/ovn: Use ARP proxy for l2proxy uplink ingress
- incusd/network/ovn: Add GetLogicalRouterNATs
- incusd/patches: Convert OVN l2proxy NAT rules to ARP proxy
- tests: Convert OVN l2proxy NAT checks to ARP proxy
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (Italian)
- Translated using Weblate (Italian)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Dutch)
- Translated using Weblate (Dutch)
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Russian)
- Translated using Weblate (Russian)
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Tamil)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (Greek)
- Translated using Weblate (Georgian)
- Translated using Weblate (Georgian)
- client: Handle unmanaged networks in preseed
- incusd/storage/lvm: Wipe source device rather than VG name
- incusd: Add instanceShutdownOrForceStop
- incusd: Allow cluster-internal instance changes on evacuated members
- shared/api: Add 'Refresh' to InstancePost
- incus/move: Pass Refresh to InstancePost
- incusd: Add support for near-live migration
- incusd: Add support for 'refresh-migrate' action in evacuation path
- internal/instance: Add 'refresh-migrate' option to 'cluster.evacuate'
- tests: Add tests for near-live migration
- doc: Update config
- api: instance_refresh_migration
- doc/rest-api: Refresh swagger YAML
- i18n: Update translation templates
- client: Detect dead event connections
- incusd/events: Deliver events in order
- incusd/projects: Send project-updated after the update
- client: Add EventListener.SetOrdered
- doc: Document event ordering
- client: Fix Disconnect not disconnecting
- incusd/storage/lvm: Detect block type in ListVolumes
- incusd/storage: Tolerate missing snapshot record on delete
- incusd/storage: Repair snapshot records on refresh
- incus/admin_sql: Fix integer rendering
- api: image_locations
- shared/api: Add Locations to Image
- incusd/db/images: Fill in image locations
- doc/rest-api: Refresh swagger YAML
- api: network_ovn_multicast
- incusd/network/ovn: Add multicast helpers
- incusd/network/ovn: Add bridge.multicast_snooping and bridge.multicast_relay
- doc: Update configs
- incusd/instance/qemu: Use temporary data-file when growing metadata image
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (Italian)
- Translated using Weblate (Italian)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Dutch)
- Translated using Weblate (Dutch)
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Russian)
- Translated using Weblate (Russian)
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Tamil)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (Greek)
- Translated using Weblate (Georgian)
- Translated using Weblate (Georgian)
- tests: Skip OVN tests when INCUS_OFFLINE is set
- tests: Add cgroup test suite
- github: Add cgroup tests job
- tests: Add interception test suite
- github: Add interception tests job
- tests: Add network bridge firewall test suite
- github: Add network bridge firewall tests job
- tests: Add storage buckets drivers test suite
- github: Add storage buckets drivers tests job
- Translated using Weblate (Portuguese)
- doc: Document instance-migrated lifecycle event
- incusd/storage/linstor: Fix snapshot resource definition races
- incusd/storage/cephfs: Sync filesystem before snapshot creation
- tests: Wait for nc listeners in network address set test
- tests: Use a 4GiB btrfs test pool
- incusd: Retry transient database errors in the admin SQL endpoint
- incusd/db: Make AddImageToLocalNode idempotent
- tests: Wait for monitor subscription in dev-incus test
- incusd: Retry cluster role handover while another change is in progress
- instance: Derive process start time from proc stat
- incusd/storage/linstor: Mount snapshot volumes read-only
- incus/create: Allow --environment-file to be passed multiple times
- incus: Mention repeatable flags in help strings
- i18n: Update translation templates
- shared/simplestreams: Include variant in image description
- client: Fix crash on listener disconnect without error
- incusd/network/zone: Allow underscore-prefixed names
- incusd/patches: Upgrade OpenFGA model
- incusd: Use x-example in swagger operation parameters
- incusd: Fix header definitions in swagger comments
- incusd: Fix body parameters in swagger comments
- incusd/instance_nvram: Mark var path parameter as required
- incusd: Fix response examples in swagger comments
- shared/api: Drop invalid examples from preseed structs
- shared/api: Drop swagger:model from metadata map key types
- incusd/metadata: Fix swagger definition of configuration endpoint
- incusd/storage: Fix swagger body definition for volume backup rename
- test/lint: Validate swagger spec
- doc/rest-api: Refresh swagger YAML
- incusd: Fix storage volume project expansion
- tests: Cover inherited storage volume authorization
- incusd/storage/linstor: Retry resource definition deletion
- tests: Use future expiry for volume snapshot property test
- incusd: Make cluster role handover resilient to leader changes
- shared/tls: Renew certificates at 80% of validity period
- incusd/acme: Update for CertificateNeedsUpdate change
- incusd/acme: Run renewal check hourly
- incusd: Give up on cluster database after failed role handover
- incusd/images: Propagate old image deletion errors during refresh
- incusd/storage/btrfs: Wait for quota rescan after enabling quotas
- incusd: Bound global database close during shutdown
- incusd/instance/qemu: Record maxcpus in boot state
- incusd/db/cluster: Make node_cluster_group deletion a DeleteMany
- incusd: Fix PATCH of cluster group with multiple members
- global: Fix warnings on double file close
- incusd: Simplify global database shutdown
- incusd/events: Send events outside of the lock
- gomod: Update go-cowsql
- incusd/storage/linstor: Enforce minimum DRBD volume size
- incusd/storage/linstor: Enforce exact DRBD volume sizes
- incusd/storage/lvm: Only grow snapshot CoW capacity when needed
- incusd/qemu: Make generated configuration deterministic
- github: Drop storage_buckets_drivers from extended tests
- tests: Switch to debian/13 test image
- github: Run network_bridge_firewall test on arm64
- tests: Allow overriding the CLI command timeout
- tests: Add cpu vm test suite
- tests: Add guestapi vm test suite
- tests: Add network routed test suite
- tests: Add storage disks vm test suite
- tests: Add storage vm test suite
- tests: Add storage volumes vm test suite
- github: Add VM tests job
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (Italian)
- Translated using Weblate (Italian)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Dutch)
- Translated using Weblate (Dutch)
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Russian)
- Translated using Weblate (Russian)
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Tamil)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (Greek)
- Translated using Weblate (Georgian)
- Translated using Weblate (Georgian)
- shared/uefi: Diverse fixes
- shared/uefi: Refactor dissection primitives
- shared/uefi: Add missing writers
- shared/uefi: Add formatting primitives
- shared/uefi: Add device path string representation lexer
- shared/uefi: Add device path formatting
- shared/uefi: Add device path tests
- shared/uefi: Implement Boot#### formatting
- incus/image: Add support for properties columns in image list
- i18n: Update translation templates
- doc/storage: Add TrueNAS to data storage location table
- lxc: Start live migration action operation before pre-dumps
- incusd/network/ovn: Handle dynamic addresses and removal for ipv4/ipv6.address.external
- incusd/device/nic_ovn: Remove stale SNAT rules on external address update
- incusd/firewall: Restrict wildcard proxy NAT to local addresses
- tests: Update proxy NAT wildcard listen address checks
- incusd/images: Split pruneExpiredImage into its own function
- incusd/images: Hold image lock when pruning and auto-updating images
- Revert "client: Add EventListener.SetOrdered"
- client: Add EventListener.AddChannel
- doc: Document AddChannel/RemoveChannel
- doc: Fix events table alignment
- incus/monitor: Port to EventListener.AddChannel
- incus/remote: Explain trust token prompt in verbose mode
- incus/remote: Add --tls-cert, --tls-key and --tls-p12 to remote add
- incus/remote: Move client certificates on rename
- incus/remote: Delete client certificates on removal
- i18n: Update translation templates
- incusd/cluster: Apply cluster configuration before member init
- incusd/project: Require OVN for features.networks
- doc: Update configs
- tests: Handle OVN requirement for features.networks
- incusd/instance/qmp: Use job-complete instead of block-job-complete
- incusd/instance/qemu: Use -qmp chardev instead of mon config section
- incusd/instance/qemu: Use confidential-guest-support instead of memory-encryption
- incusd/instance/qemu: Remove -mem-path and -mem-prealloc
- incusd/instance/qemu: Move sandbox configuration to qemu.conf
- incusd/instance/qemu: Move RTC configuration to qemu.conf
- incusd/instance/qemu: Move SPICE configuration to qemu.conf
- lxc: Make incremental memory migration opt-in
- storage/ceph: Ignore detached devices during RBD sysfs scan
- lxc: Normalize received CRIU state ownership
- incusd/networks: Fix panic when a network fails to start
- incusd/networks: Notify cluster members before local deletion
- incusd/cluster: Fail fast when target member is offline
- incusd/cluster: Mark offline members as unavailable for event connections
- incusd/cluster: Avoid expensive connectivity probes in NewNotifier
- incusd/cluster: Add connection timeouts to intra-cluster TLS dialer
- incusd/images: Surface write errors from compression pipeline
- incusd/instance/qemu: Cancel incoming state transfer on source failure
- client: Reconnect operation event listener on connection failure
- doc: explain how to resize virtual-machine/* volumes
- doc: storage_volumes: prefer
key=valueoverkey value - shared/subprocess: Make TryRunCommand always use C as locale
- incusd/storage/lvm: Force use of C locale everywhere isLVMNotFoundExitError is used
- incusd/storage/lvm: Check error output in isLVMNotFoundExitError
- incusd/storage/lvm: Preserve sanlock global lock on clustered pool deletion
- incusd/images: Skip offline members during image distribution
- incusd/storage: Don't query offline members in volume listing
- incusd/storage/dir: Set quota project on block volumes
- incusd/storage/dir: Set up quota when restoring custom volumes from backup
- incusd/response: Don't warn on already closed connections
- incusd/instance/qemu: Don't warn on already removed snapshot file
- incusd/instance/qemu: Return Bad Request when no NBD session is active
- shared/uefi: Implement Key#### formatting
- shared/uefi: Make formatters mandatory
- shared/uefi: Accept hexadecimal Boot#### variables
- client/oci: Move unpackOCIImage to ProtocolOCI
- gomod: Add opencontainers/image-spec
- client/oci: Strip volume mounts during unpack
- tests: Update client dependency list
- incusd/storage/drivers: Add flushBlockDeviceCache
- incusd/storage/linstor: Invalidate stale device caches on mount
- incusd/storage/linstor: Unmount volumes synchronously
- incusd/instance/qemu: Sync shared config volume during live migration
- incusd/instance/qemu: Skip config drive generation on live migration receive
- incusd/instance/qemu: Add IsLiveMigration
- incusd/device/tpm: Move swtpm control socket to the devices path
- incusd/device/tpm: Enable swtpm migration handling
- incusd/instance/qmp: Make MigrateWait event-driven
- incusd/instance/qemu: Enable migration status events
- incusd/storage: Fix source snapshot project on same-pool custom volume refresh
- incus/server/device/nic/ovn: hot-reloadable ovn nic limits
- incusd/storage/drivers/linstor: Sync filesystem instead of freezing it before snapshots
- incusd/storage: Add cleanupDependencies argument to DeleteInstanceSnapshot
- incusd/storage/drivers: Add NearLiveMigration to driver Info struct
- incusd: Add dependent disk support for in-cluster near-live migration
- incusd/instance/drivers: Add dependent disk support for in-cluster near-live migration
- tests: Add near-live migration dependent disks tests
- incusd/storage: Add skipDisks argument to GenerateDependentVolumesOffer
- incusd/instance: Add SkipDependentVolumes to MigrateSendArgs
- incusd: Add support for near-live migration for shared root storage and local dependent disks
- incusd/instances: Add non-volatileness check for NVRAM variables
- shared/uefi: Make ESL, ESLNode and ESLEntry public
- shared/uefi: Add Secure Boot vendor GUIDs
- incus/low-level: Add secureboot list subcommand
- incus/low-level: Add secureboot remove subcommand
- incus/low-level: Add secureboot add subcommand
- incus/low-level: Fix unmarshalling to nil pointer
- incus/low-level: Simplify default NVRAM list cols
- incus/low-level: Add column description for nvram list
- incus/low-level: Fix repair autocomplete
- incus/config_trust: Add full fingerprint column
- i18n: Update translation templates
- incusd/instance_post: Skip unchecked err
- golangci: Tweak static-check
- generate-database: Fix test on Go 1.27
- incusd/device: Add support for disk burst limits
- incusd/instance/drivers: Add support for disk burst limits
- tests: Add tests for disk burst limits
- doc: Add documentation for disk burst limits
- doc: Update configs
- api: device_burst_limits
- incus/query: Add --data-file flag
- i18n: Update translation templates
- incusd/device: Use network project for address set refresh on bridged NIC
- shared/uefi: Keep non-NV_VARIABLE_STORE regions
- shared/uefi: Sort GUIDs by name
- shared/uefi: Implement PlatformConfig dissector
- shared/uefi: Refactor Boot#### variable name parsing
- shared/uefi: Make Boot public
- shared/uefi: Implement BootNext dissector
- incus/start: Add --override-boot flag
- i18n: Update translation templates
- api: Add network_ipv6_ra extension
- incusd/network/bridge: Add ipv6.ra config key
- incusd/network/ovn: Add ipv6.ra config key
- doc: Update configs
- incusd/project: Add support for networks shared through restricted.networks.access
- incusd: Handle networks shared through restricted.networks.access
- incusd/device: Resolve shared networks for NIC devices
- incusd/network: Account for shared networks in usage checks
- incusd: Validate restricted.networks.access against project networks
- doc: Update configs
- tests: Add coverage for shared networks in projects
- incusd/auth: Add network shares to the authorizer interface
- incusd/auth: Add shared network support to OpenFGA
- incusd/auth: Update generated OpenFGA model
- incusd: Maintain OpenFGA network shares
- incusd: Add auth_openfga_shared_networks patch
- tests: Add OpenFGA shared network coverage
- incus/low-level: Fix unset capability of nvram set
- incusd/network/ovn: Add DeleteMACBindings
- incusd/network/ovn: Delete stale MAC bindings on instance port stop
- tests: Add NVRAM VM tests
- github: Add NVRAM VM tests job
- shared/uefi: Add getters and setters to the store
- shared/uefi: Make formatters more robust
- incusd/instances: Use new store interface
- incusd/instance/qemu: Avoid needlessly rewriting the NVRAM
- incusd/scriptlet/qemu: Add NVRAM manipulation funs
- incusd/instance/qemu: Pass NVRAM to QEMU scriptlet
- shared/scriptlet: Implement bytes (un)marshalling
- tests: Add NVRAM scriptlet test
- api: qemu_scriptlet_nvram
- doc/ref/instance_options: Update QEMU scriptlet functions
- i18n: Update translation templates
- incusd/ip: Add Addr.FlushDynamic
- incusd/device: Allow "none" NIC addresses without filtering
- incusd/forknet: Disable IPv6 autoconf on statically configured interfaces
- doc: Update configs
- incusd/ip: Add support for nic burst limits
- incusd/device: Add support for nic burst limits
- incusd/network/ovn: Add support for nic burst limits
- tests: Add tests for nic burst limits
- doc: Update configs
- api: device_burst_limits
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (Italian)
- Translated using Weblate (Italian)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Dutch)
- Translated using Weblate (Dutch)
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Russian)
- Translated using Weblate (Russian)
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Tamil)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (Greek)
- Translated using Weblate (Georgian)
- Translated using Weblate (Georgian)
- incusd/instance/qmp: Set a write deadline on monitor commands
- api: Add storage_ceph_rbd_backend extension
- incusd/storage/ceph: Add ceph.rbd.backend config key
- doc: Update configs
- incusd/images: Consider both architecture names when filtering
- incus/image: Consider both architecture names when filtering
- incusd: Allow recovering shared storage pools when clustered
- incus/admin: Allow recovering shared storage pools when clustered
- doc: Cover shared pool recovery on clusters
- Translated using Weblate (Portuguese)
- shared/cmd: Fix progress rendering on non-terminals
- incusd/events: Don't warn when the peer closed the connection first
- incus/network: Use global --project flag in list-allocations
- incus: Add shell completion for --project flag
- incus: Add shell completion for --target-project flag
- i18n: Update translation templates
- client: Fix event connection cleanup on listener failure
- client: Make operation reconnection more resilient
- incusd/instance/lxc: Don't fail Stop when the container stopped on its own
- incusd: Block instance creation from backup while evacuated
- incusd/cluster: Wait for ongoing instance creations before evacuating
- incusd/instance/qemu: Include stderr output in restore crash errors
- incusd/instance: Factor memory into balanced NUMA node selection
- incusd: Validate project in bulk instance state update
- incusd/cluster: Collect per-instance evacuation and restore errors
- incusd/instance/qmp: Add MigrateCancel
- incusd/instance/qemu: Treat live migration hand-over as cut-off
- incusd: Keep instance database location in sync after live migration hand-over
- shared/uefi: Add Incus GUID
- incus/low-level: Use new Incus vendor
- shared/util: Add ESLGUIDVar
- cmd/low-level: Use util.ESLGUIDVar
- shared/validate: Add IsRawNVRAMVariable and IsPEM
- incusd/instance/config: Add initial.nvram., initial.nvram-binary. and initial.secureboot.*
- doc: Update configs
- incusd/instance/qemu: Add support for NVRAM config overrides
- tests: Add NVRAM config override test
- api: instance_nvram_config
- i18n: Update translation templates
- incusd/dns: Add NOTIFY support
- incusd/network/zone: Bump SOA refresh to 15min
- incusd/network/zone: Send NOTIFY on zone and record changes
- incusd/network: Add DNSNotifyZones helper
- incusd/network/zone: Add dnsmasq file watcher
- incusd: Start network zones watcher
- incusd/network/ovn: Send NOTIFY on port and uplink changes
- incusd/networks: Send NOTIFY on network create, update and delete
- doc: Document network zone DNS NOTIFY
- incusd/instance/lxc: Fix instance directory ownership with raw.idmap
- tests: Add raw.idmap host root mapping test
- api: Add storage_cephobject_endpoint_cert extension
- incusd/storage/cephobject: Replace endpoint_cert_file with endpoint_cert
- incusd/patches: Convert cephobject.radosgw.endpoint_cert_file
- doc: Update configs
- shared/validate: Make IsPEM match anchor regexes
- Makefile: Bump minimum to Go 1.26
- gomod: Bump minimum to Go 1.26
- doc/requirements: Bump minimum to Go 1.26
- Use strings.SplitSeq to iterate over split strings
- Use new(expr) instead of protobuf pointer helpers
- Use range over int in counting loops
- Use standard library iterators
- Use strings.Builder for string concatenation
- Use fmt.Appendf
- Use errors.AsType
- Use slices.Backward for reverse iteration
- Use strings.Cut
- incusd/cgroup: Fix parse error messages
- incusd/db: Return Conflict error on duplicate storage volume record
- incusd/storage: Fix error wrapping in VolumeDBCreate
- incusd/storage/linstor: Set resource definition properties at clone time
- incusd/storage/linstor: Implement IsImageCloneSourceReady
- incusd/storage: Handle concurrent image volume creation across cluster members
- Use httputil.ReverseProxy.Rewrite
- incusd/network_integrations: Validate PEM blobs
- incusd/cluster/config: Remove unused LokiServer
- incusd/cluster/config: Validate PEM blobs
- incus/server/config: Validate PEM blobs
- doc: Update configs
- incusd/network/ovn: Allow multiple CAs
- shared/tls: Add ReadCerts
- incusd: Allow multiple CAs
- incusd/storage/linstor: Allow multiple CAs
- incusd/network/acl: Fix OVN ACL matching for cross-chassis traffic
- incusd/patches: Regenerate OVN ACL rules for address set matching
- incus/low-level: Add secureboot export subcommand
- incus/low-level: Add bundle support in secureboot add
- incus/low-level: Add secureboot import subcommand
- tests: Improve low-level secureboot coverage
- i18n: Update translation templates
- incusd/firewall/nftables: Allow EUI-64 link-local address with IPv6 filtering
- tests: Check link-local handling with IPv6 filtering
- incusd/ip: Add QdiscGeneric
- incusd/instance: Add CPUUsage
- incusd/network: Add GetTXQueueCount
- api: device_queue_disc
- incusd/device: Add support for nic queuing disciplines
- doc: Document queuing disciplines
- doc: Update configs
- tests: Add tests for nic queuing disciplines
- shared/tls: Don't duplicate issuer certificates in ACME chain
- incusd/network/ovn: Don't wait forever for database reconnection
- shared/cmd: Modernize table look
- shared/cmd: Prevent merging the last column
- tests: Reduce assumptions on list format
- doc: Use new key=value syntax
- doc: Use new table layout
- shared/uefi: Correctly handle padded VARS files
- client: Add RawQueryWithHeaders
- incus/query: Add --header flag
- test: Add test for query --header
- i18n: Update translation templates
- incus/oci: Don't URL-escape credentials in skopeo authfile
- incusd/network: Switch to backoff/v7
- incus: Switch to go-viper/mapstructure/v2
- incusd/device: Switch to gopacket/gopacket
- Update gomod
- doc/rest-api: Refresh swagger YAML
- incusd/storage/zfs: Reset host-facing properties of delegated datasets
- tests: Check properties of delegated ZFS datasets
- doc/storage/zfs: Document dataset delegation
- incusd/images: Check access before reusing cross-project image
- client/images: Prevent path traversal in downloaded image name
- Release Incus 7.4
Documentation¶
The Incus documentation can be found at:
https://linuxcontainers.org/incus/docs/main/
Packages¶
There are no official Incus packages as Incus upstream only releases regular release tarballs. Below are some available options to get Incus up and running.
Installing the Incus server on Linux¶
Incus is available for most common Linux distributions. You'll find detailed installation instructions in our documentation.
https://linuxcontainers.org/incus/docs/main/installing/
Homebrew package for the Incus client¶
The client tool is available through HomeBrew for both Linux and MacOS.
https://formulae.brew.sh/formula/incus
Chocolatey package for the Incus client¶
The client tool is available through Chocolatey for Windows users.
https://community.chocolatey.org/packages/incus/7.4.0
Winget package for the Incus client¶
The client tool is also available through Winget for Windows users.
https://winstall.app/apps/LinuxContainers.Incus
Support¶
Monthly feature releases are only supported up until the next release comes out. Users needing a longer support length and less frequent changes should consider using Incus 7.0 LTS instead.
Community support is provided at: https://discuss.linuxcontainers.org
Commercial support is available through: https://zabbly.com/incus
Bugs can be reported at: https://github.com/lxc/incus/issues
Incus 7.3 has been released¶
Jul 31, 2026
The Incus team is pleased to announce the release of Incus 7.3!
Another busy release for us, both on the feature front with quite a lot of exciting new features as well as on the performance, bugfix and securty front.
As usual, you can try Incus for yourself online: Linux Containers - Incus - Try it online
Security fixes¶
This release fixes 13 security issues:
- CVE-2026-62867 (critical) - Argument injection through storage volume
block.create_options - CVE-2026-62940 (critical) - Project restriction bypass via instance migration config override
- CVE-2026-62941 (critical) - Project restriction bypass via cross-project instance copy
- CVE-2026-63125 (critical) - Arbitrary file write on host via
backup.yamlsymlink in crafted image - CVE-2026-63343 (critical) - Arbitrary file read+write on host via
metadata.yamlsymlink in crafted image - GHSA-26gp-p5fw-3r2h (critical) - Arbitrary file write on host via path traversal in instance backup import
- GHSA-67qw-68v3-36h6 (critical) - Arbitrary file write on host via path traversal in custom volume import
- GHSA-7fj9-65v4-rp7h (critical) - Arbitrary file write on host via image-planted symlinks and
oci.dns.*newline injection - GHSA-p2v3-6wvc-cv3p (critical) - Arbitrary file write on host via image fingerprint path traversal
- GHSA-4qxq-p5hm-3q3p (high) - Arbitrary file read+write on host via VM template path traversal
- GHSA-m3j6-p3v3-qmjv (high) - Container configuration newline injection through
nvidia.driver.capabilities - CVE-2026-62313 (medium) - Project isolation restriction bypass by omitting
security.idmap.isolated - GHSA-6v6x-387m-rj4w (medium) - Project restriction bypass on network address sets
Note that some of the above don't yet have CVE assigned. This is due to Github having a 3-4 weeks backlog on CVE assignments right now. We have requested CVEs for all the issues above and they will be automatically added to the relevant GHSA once allocated.
New features¶
GPU sharing for virtual machines through DRM native context¶
A new native-context GPU type is now available for virtual machines.
This makes use of virglrenderer and the virtio-gpu type to provide GPU 3D acceleration.
Unlike full GPU passthrough, this can be used by multiple virtual machines in parallel.
Currently, only Linux appears to have drivers fully supporting this, so Windows guests remain unaccelerated.
This can be enabled with:
stgraber@vorash:~$ incus config device add v1 gpu0 gpu gputype=native-context
Documentation: https://linuxcontainers.org/incus/docs/main/reference/devices_gpu/
UEFI variable management for virtual machines¶
Incus now allows direct NVRAM interactions for virtual machines.
This is exposed through the CLI as incus low-level nvram and allows for both read and write access to the NVRAM.
Most UEFI NVRAM configuration keys can be parsed and updated, allowing for modification of the boot devices, boot order and more. Write operation require a stopped VM. A follow-up will focus specifically on UEFI Secure Boot key provisioning.
Additionally, a new rebuild-nvram repair action was added to incus low-level repair, making it easy to reset a virtual machine's UEFI NVRAM to a clean state.
stgraber@vorash:~$ incus launch images:debian/13 v1 --vm
Launching v1
stgraber@vorash:~$ incus low-level nvram get v1 Boot0000
binary: CQEAACwAQgBvAG8AdABNAGEAbgBhAGcAZQByAE0AZQBuAHUAQQBwAHAAAAAEBxQAyb24fOv4NE+q6j7kr2UWoQQGFADcW8Lu8meVTbHV+BsgOdEdf/8EAA==
data:
active: true
category: app
description: BootManagerMenuApp
force_reconnect: false
hidden: true
paths:
- - Fv(7cb8bdc9-f8eb-4f34-aaea-3ee4af6516a1)/FvFile(eec25bdc-67f2-4d95-b1d5-f81b2039d11d)
attributes:
- NON_VOLATILE
- BOOTSERVICE_ACCESS
- RUNTIME_ACCESS
Instance port forwarding¶
A new incus port-forward command makes it easy to access a TCP service running inside of an instance.
The CLI tool runs a local TCP listener and forwards every connection made to it to the given address and port inside of the instance or on a network attached to that instance.
stgraber@vorash:~$ incus port-forward my-nginx 80 8080
stgraber@vorash:~$ incus port-forward my-nginx 10.0.3.1:443 0.0.0.0:8443
Reworked authorization configuration¶
The authorization configuration has moved to a new authorization.* namespace, with the former openfga.* server configuration keys now being authorization.openfga.api.url, authorization.openfga.api.token and authorization.openfga.store.id. Existing values are automatically migrated on upgrade.
This now allows us to support multiple authorization drivers in parallel and chose the provider based on the request type. This is done through a new set of keys:
authorization.client.default: driver for clients without a more specific class routeauthorization.client.unix: driver for local (unixsocket) clientsauthorization.client.tls: driver for unrestricted TLS clientsauthorization.client.tls-restricted: driver for restricted (project-scoped) TLS clientsauthorization.client.oidc: driver for OIDC-authenticated clients
Each key accepts one of allow, deny, openfga or scriptlet, with tls additionally available for restricted TLS clients.
Documentation: https://linuxcontainers.org/incus/docs/main/authorization/
Introducing incus low-level¶
The incus debug command has been renamed to incus low-level.
As part of that, it also gained a few new sub-commands:
bitmap(dirty bitmap management for VMs)nvram(as mentioned above)repair(repair actions for instances)
BGP unnumbered support¶
Incus now supports unnumbered BGP for its peering with external routers.
This is done through a new bgp.peers.NAME.interface configuration key which is used as an alternative to bgp.peers.NAME.address.
When set, the BGP session is established over the given interface using BGP unnumbered. The peer's IPv6 link-local address is discovered automatically and IPv4 routes are exchanged using the extended next-hop capability.
Documentation: https://linuxcontainers.org/incus/docs/main/howto/network_bgp/
Control of nested virtualization¶
The security.nesting instance configuration key now also applies to virtual machines.
Unlike containers, this defaults to true to retain our previous default behavior.
When set to false, the svm and vmx CPU flags will get disabled for the guest VM.
A matching restricted.virtual-machines.nesting project configuration key was also added. When set to block, all virtual machines in the project must have security.nesting set to false.
Documentation: https://linuxcontainers.org/incus/docs/main/reference/projects/
Listing instances across all remotes¶
The incus list command gained an --all-remotes flag, showing the instances from all configured remotes in a single view with an extra remote column.
stgraber@vorash:~$ incus list --all-remotes --all-projects
+------------+---------+-------------+---------+-------------------------+--------------------------------------------------+-----------------+-----------+----------+
| REMOTE | PROJECT | NAME | STATE | IPV4 | IPV6 | TYPE | SNAPSHOTS | LOCATION |
+------------+---------+-------------+---------+-------------------------+--------------------------------------------------+-----------------+-----------+----------+
| local | default | c1 | RUNNING | 10.80.1.4 (eth0) | fd42:8b9f:58e4:b6ac:1266:6aff:fe2d:7101 (eth0) | CONTAINER | 0 | none |
+------------+---------+-------------+---------+-------------------------+--------------------------------------------------+-----------------+-----------+----------+
| local | default | incus-os | STOPPED | | | VIRTUAL-MACHINE | 0 | none |
+------------+---------+-------------+---------+-------------------------+--------------------------------------------------+-----------------+-----------+----------+
| local | default | my-nginx | STOPPED | | | CONTAINER (APP) | 0 | none |
+------------+---------+-------------+---------+-------------------------+--------------------------------------------------+-----------------+-----------+----------+
| local | default | v1 | STOPPED | | | VIRTUAL-MACHINE | 0 | none |
+------------+---------+-------------+---------+-------------------------+--------------------------------------------------+-----------------+-----------+----------+
| s-castiana | default | caddy-test | STOPPED | | | CONTAINER (APP) | 0 | none |
+------------+---------+-------------+---------+-------------------------+--------------------------------------------------+-----------------+-----------+----------+
| s-castiana | default | dev-os | STOPPED | | | VIRTUAL-MACHINE | 1 | none |
+------------+---------+-------------+---------+-------------------------+--------------------------------------------------+-----------------+-----------+----------+
| s-castiana | default | isolated-oc | STOPPED | | | VIRTUAL-MACHINE | 0 | none |
+------------+---------+-------------+---------+-------------------------+--------------------------------------------------+-----------------+-----------+----------+
| s-castiana | default | rhel10 | RUNNING | 10.10.10.225 (eth0) | 2602:fc62:ef:1010:1266:6aff:fe69:dd25 (eth0) | CONTAINER (APP) | 0 | none |
+------------+---------+-------------+---------+-------------------------+--------------------------------------------------+-----------------+-----------+----------+
| s-castiana | default | test | RUNNING | 10.226.131.1 (incusbr0) | fd42:10b9:5a70:b459::1 (incusbr0) | VIRTUAL-MACHINE | 0 | none |
| | | | | 10.10.10.73 (_venp5s0) | 2602:fc62:ef:1010:1266:6aff:fe11:9cfd (_venp5s0) | | | |
+------------+---------+-------------+---------+-------------------------+--------------------------------------------------+-----------------+-----------+----------+
| s-castiana | default | v1 | RUNNING | 10.10.10.80 (enp5s0) | 2602:fc62:ef:1010:1266:6aff:fe49:20ca (enp5s0) | VIRTUAL-MACHINE | 0 | none |
+------------+---------+-------------+---------+-------------------------+--------------------------------------------------+-----------------+-----------+----------+
| s-dakara | default | c1 | STOPPED | | | CONTAINER | 0 | none |
+------------+---------+-------------+---------+-------------------------+--------------------------------------------------+-----------------+-----------+----------+
| s-dakara | default | dev-os | STOPPED | | | VIRTUAL-MACHINE | 0 | none |
+------------+---------+-------------+---------+-------------------------+--------------------------------------------------+-----------------+-----------+----------+
| s-dakara | default | v1 | RUNNING | 172.17.250.222 (enp5s0) | 2602:fc62:c:250:1266:6aff:feb0:6588 (enp5s0) | VIRTUAL-MACHINE | 0 | none |
+------------+---------+-------------+---------+-------------------------+--------------------------------------------------+-----------------+-----------+----------+
| s-dakara | default | win2003 | STOPPED | | | VIRTUAL-MACHINE | 0 | none |
+------------+---------+-------------+---------+-------------------------+--------------------------------------------------+-----------------+-----------+----------+
| s-dakara | default | win2025 | STOPPED | | | VIRTUAL-MACHINE | 0 | none |
+------------+---------+-------------+---------+-------------------------+--------------------------------------------------+-----------------+-----------+----------+
Improved VM agent handling¶
The VM agent can now run in environments that lack virtio-vsock by instead reporting OS data through a serial link. This allows at least correct reporting of IP configuration and OS in environments that historically couldn't run the agent at all.
Network allocations improvements¶
The network allocations API now includes the network that each allocation belongs to.
On the CLI side, incus network list-allocations shows the new network column and gained a --summary flag for a more compact view.
stgraber@vorash:~$ incus network list-allocations
+-------------------------+---------------------------------------------+----------+----------+-----+-------------------+
| USED BY | ADDRESS | NETWORK | TYPE | NAT | MAC ADDRESS |
+-------------------------+---------------------------------------------+----------+----------+-----+-------------------+
| /1.0/instances/c1 | 10.80.1.4/32 | incusbr0 | instance | YES | 10:66:6a:2d:71:01 |
+-------------------------+---------------------------------------------+----------+----------+-----+-------------------+
| /1.0/instances/c1 | fd42:8b9f:58e4:b6ac:1266:6aff:fe2d:7101/128 | incusbr0 | instance | YES | 10:66:6a:2d:71:01 |
+-------------------------+---------------------------------------------+----------+----------+-----+-------------------+
| /1.0/instances/incus-os | fd42:8b9f:58e4:b6ac:1266:6aff:fef3:2d9/128 | incusbr0 | instance | YES | 10:66:6a:f3:02:d9 |
+-------------------------+---------------------------------------------+----------+----------+-----+-------------------+
| /1.0/instances/my-nginx | fd42:8b9f:58e4:b6ac:1266:6aff:fe61:8058/128 | incusbr0 | instance | YES | 10:66:6a:61:80:58 |
+-------------------------+---------------------------------------------+----------+----------+-----+-------------------+
| /1.0/instances/v1 | fd42:8b9f:58e4:b6ac:1266:6aff:fe3f:71f2/128 | incusbr0 | instance | YES | 10:66:6a:3f:71:f2 |
+-------------------------+---------------------------------------------+----------+----------+-----+-------------------+
| /1.0/networks/incusbr0 | 10.80.1.1/24 | incusbr0 | network | YES | |
+-------------------------+---------------------------------------------+----------+----------+-----+-------------------+
| /1.0/networks/incusbr0 | fd42:8b9f:58e4:b6ac::1/64 | incusbr0 | network | YES | |
+-------------------------+---------------------------------------------+----------+----------+-----+-------------------+
stgraber@vorash:~$ incus network list-allocations --summary
+----------+--------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| NETWORK | SUBNET | USED |
+----------+--------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| incusbr0 | 10.80.1.0/24 | 10.80.1.4 |
+----------+--------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| incusbr0 | fd42:8b9f:58e4:b6ac::/64 | fd42:8b9f:58e4:b6ac:1266:6aff:fe2d:7101, fd42:8b9f:58e4:b6ac:1266:6aff:fe3f:71f2, fd42:8b9f:58e4:b6ac:1266:6aff:fe61:8058, fd42:8b9f:58e4:b6ac:1266:6aff:fef3:2d9 |
+----------+--------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+
I/O limits improvements¶
unix-block devices now support the limits.read and limits.write configuration keys, behaving like their disk device equivalents and accepting either a byte/s value or an IOPS value.
Additionally, it's now possible to set both a byte/s limit and an IOPS limit at the same time on disk and unix-block devices by using a comma separated list of values:
incus config device set my-vm data limits.read=30MiB,1000iops
Documentation: https://linuxcontainers.org/incus/docs/main/reference/devices_unix_block/
Storage pool metrics¶
The /1.0/metrics endpoint now includes storage pool usage data:
incus_storage_pool_size_bytes{pool="<pool>",driver="<driver>"}incus_storage_pool_used_bytes{pool="<pool>",driver="<driver>"}
Documentation: https://linuxcontainers.org/incus/docs/main/metrics/
ACME External Account Binding¶
The ACME integration now supports External Account Binding (EAB) through two new server configuration keys, acme.eab.kid and acme.eab.hmac.
This allows using ACME providers which require pre-established account credentials.
Documentation: https://linuxcontainers.org/incus/docs/main/authentication/
CPU cluster reporting in the resources API¶
The resources API now reports a cluster field for each CPU core.
This is useful in ARM big.LITTLE environments where core identifiers aren't unique per socket but instead per cluster of cores.
This is visible in incus info --resources and is also used to make the VM CPU topology validation cluster-aware.
Native Windows and macOS installers¶
Incus releases now come with native installers for the client tool, an MSI package for Windows and a PKG for macOS, built and published as part of the release process.
Worth noting that at this time neither of those are signed, so installation may be challenging.
Complete changelog¶
Here is a complete list of all changes in this release:
Full commit list
- cmd/incusd:
isolatedonrestricted.containers.privilegeprevents settingsecurity.privilegedtotrue - doc: regenerate configurable options index
- api: regenerate
/1.0/metadata/configurationoptions - incus/move: Apply --storage pool to dependent disks
- github: Build Windows and MacOS native installers.
- doc: fix
config setdeprectation warning - Translated using Weblate (Japanese)
- incusd/firewall: Fix double Wait in nftParseRuleset
- incusd/device: Allow static CIDR address on unmanaged bridge
- incusd/instance/qemu/qmp: Run guest memory dump detached
- incusd/instance/qemu/qmp: Add per-command timeout
- github: Add a build workflow
- build(deps): bump actions/download-artifact from 4 to 8
- build(deps): bump actions/upload-artifact from 4 to 7
- shared/logger: Add WarnOnErrorExcept helper
- incus: Avoid double-close warning on volume/bucket/instance import
- incusd/device: Reset VM disk I/O limits on unset
- incusd/devices: Allow /32 and /128 for OCI addresses
- incusd/operations: Fix nil deref race in Cancel
- cmd/generate-database/db: Manually specify uuid package
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- incusd/instance/qemu/qmp: Bump timeout for block commands
- incusd/instance/qemu/qmp: Bump timeout for slow synchronous commands
- incus/server/storage/driver/ceph: Wait, if image is already in the unpacking stage on another cluster member.
- incus: Avoid double-close warning on export and file pull
- doc/incus-cli: reword docs for configuration file path
- incusd/device/disk: Use resolved project for Ceph ISO RBD names
- incusd: Switch OCI network configuration to interfaces.json
- incusd/device: Mention "none" as valid NIC gateway value
- incusd: Support "none" gateways in OCI containers
- doc: Update configuration option metadata
- cmd/incus-agent: Implement Windows osLoadModules to check viosock service
- cmd/incus-agent: Only start agent http server if osLoadModules succeeds
- cmd/incus-agent: Write state data to ringbuffer if no http server present
- internal/server/instance/drivers/qmp: Bump ringbuffer size to 16K
- internal/server/instance/drivers/qmp: Record instance state retrieved from ringbuffer
- internal/server/instance/drivers: Treat degraded agent as offline, except when fetching state
- incusd/instance/qmp: Bump some more timeouts
- incusd: Use constant-time comparison for secrets
- incusd: Limit websocket control message size
- incusd/device: Use IsAPIName for device name validation
- incusd/storage/s3: Pin certificate for local S3 bucket transfers
- incusd/db/query: Use hex blob literal in database dumps
- incusd/instance/qemu: Use a shared memory backend on all architectures
- incusd/storage: Honor btrfs.compression on instances from optimized images
- test: Cover btrfs.compression on instances from optimized images
- incusd/storage/s3: Add GetBucketVersioning
- incus/server/storage/driver/backend: Wait, if image is already in the unpacking stage on another cluster member.
- incus/server/storage/driver/cephfs: Implement stub for IsImageCloneSourceReady function
- incus/server/storage/driver/common: Implement stub for IsImageCloneSourceReady function
- incus/server/storage/driver/linstor: Implement stub for IsImageCloneSourceReady function
- incus/server/storage/driver/lvm: Implement stub for IsImageCloneSourceReady function
- incus/server/storage/driver/truenas: Implement stub for IsImageCloneSourceReady function
- incusd/network/ovn: Add Enabled option to OVNSwitchPortOpts
- incusd/network/ovn: Add UpdateLogicalSwitchPortEnabled
- incusd/network/ovn: Add GetLogicalSwitchActivePorts
- incusd/network/ovn: Make SetLogicalSwitchQoSRules replace existing rules
- incusd/network/ovn: Extract instanceDevicePortOpts
- incusd/network/ovn: Only consider enabled switch ports as active
- incusd/network/ovn: Tweak instance port startup logic
- incusd/network/ovn: Keep instance ports until device removal
- incusd/network/ovn: Create instance ports on device add
- incusd/forknet: Wait up to 5s for initial DHCP configuration
- api: network_bgp_peer_interface
- incusd/bgp: Add support for unnumbered peers
- incusd/network: Add bgp.peers.NAME.interface
- doc: Update config
- doc/network/bgp: Document BGP unnumbered
- incusd/instance/qemu: Handle missing kvm64
- client: Only pass device overrides to sources supporting them
- incusd/instance/qemu: Serialize CPU pinning data in the CPU topology
- incusd/instance/qemu: Re-compute CPU pins on stateful start
- incusd/network/ovn: Fix NAT for network forward default targets
- incsd/device/config: Add DataFilePath field to MountEntryItem
- incusd/instance/drivers: Add support for raw-format block devices
- Translated using Weblate (Japanese)
- Translated using Weblate (Russian)
- Translated using Weblate (Swedish)
- incusd/instance: Allow security.nesting on VMs
- incusd/instance/qemu: Turn off svm and vmx when security.nesting is disabled
- api: projects_restricted_virtual_machines_nesting
- incusd/project: Add restricted.virtual-machines.nesting
- doc: Update config
- incus: Fix remote path handling on Windows
- incusd/forksyscall: Fix mknod emulation for relative paths
- internal/instance: Mention cgroup2 limitations
- doc: Update config
- incusd/auth: Move OpenFGA config to authorization.* namespace
- doc/authorization: Update for authorization config namespace
- doc: Update config
- api: authorization_config
- tests: Update OpenFGA tests for authorization config keys
- incusd/dev_incus: Fix race in ConnPidMapper access
- incusd/forksyscall: Check for path truncation in mknod emulation
- api: network_allocations_network extension
- shared/api: add Network field to NetworkAllocations
- incusd/network-allocations: populate network field
- doc/rest-api: Refresh swagger YAML
- incus/network: add --summary flag to list-allocations
- i18n: Update translation templates
- incusd/storage/ceph: Tolerate concurrently deleted RBD entities in zombie cleanup
- incusd/storage/ceph: Serialize volume deletion on the parent image
- incusd/storage/ceph: Tolerate concurrent-deletion handling for non-image parents and renames
- api: Add gpu_native_context extension
- incusd/device: Add native-context GPU device type
- incusd/instance/drivers: Support native-context GPU in QEMU
- incusd: Fix race between forkfile cleanup and respawn
- incusd/events: Don't warn on double connection close
- Translated using Weblate (Portuguese)
- incusd/apparmor: Fix alignment
- incusd/apparmor: Allow DRM render nodes for native-context GPU
- doc: Document the native-context GPU type
- doc: Update config
- incusd/linux: Add GrantPosixACLUser
- incusd/device: Grant render node access to native-context GPUs
- incusd/network/bridge: Don't NAT traffic between managed bridge networks
- incusd/storage/zfs: Clear volume quota during optimized refresh
- incusd/metrics: Add storage pool usage metric types
- incusd/metrics: Collect storage pool usage
- doc: Document storage pool metrics
- incusd/storage/zfs: Restore volume quota on refresh error
- api: Add instance_port_forward extension
- shared/api: Add InstancePortForwardPost
- client: Add GetInstancePortForwardConn
- incus-agent: Add port-forward API
- incusd/forknet: Add connect command
- incusd/instance: Add PortForwardConn
- incusd/auth: Add can_connect_tcp
- incusd/instances: Add port-forward API
- incus: Add port-forward command
- tests: Add port forward tests
- doc/rest-api: Refresh swagger YAML
- i18n: Update translation templates
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Tamil)
- Translated using Weblate (Dutch)
- Translated using Weblate (Dutch)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Greek)
- Translated using Weblate (Italian)
- Translated using Weblate (Italian)
- Translated using Weblate (Russian)
- Translated using Weblate (Russian)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (Georgian)
- Translated using Weblate (Georgian)
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (Japanese)
- incusd/metrics: Rename incus_storage_pool_total_bytes to incus_storage_pool_size_bytes
- Translated using Weblate (Japanese)
- incusd/seccomp: Handle syscalls from non-leader threads
- incusd/instance/lxc: Stop the DHCP client from the stop hook
- shared/tls: Use first successful connection in RFC3493Dialer
- incusd/instances/common: Fix typo
- incusd/device: Handle CIDR values in NIC ipv4.address/ipv6.address
- incusd/network: Handle CIDR values in NIC ipv4.address/ipv6.address
- client: Only retry TLS dial on certificate verification errors
- incusd/network/ovn: Tolerate stop failures during network deletion
- incusd/device/nic_ovn: Guard cleanup against unavailable network
- incusd/networks: Run driver deletion for locally pending networks
- incusd: Honor target parameter in bitmap endpoints
- incusd/cluster: Resolve instance volumes by name in ConnectIfVolumeIsRemote
- incus/console: Escape spaces in SPICE console socket URI
- incus: Don't persist INCUS_REMOTE as the default remote
- incusd/storage/s3: Support conditional writes
- incusd/instance/qmp: Rework block job monitoring
- incusd/instance/qemu: Harden ephemeral snapshot teardown
- incusd/instance/qmp: Remove unused event channel logic
- client: Always set TLS ServerName on dial
- incusd/storage/btrfs: Restrict subvolume sources under the daemon dir
- incusd: Don't warn on double close of downloaded image files
- incus/cluster_group: Change group separator in assign subcommand
- incus/profile: Change profile separator in assign subcommand
- test: Fix assign separator
- i18n: Update translation templates
- incus/file: Fix progress reporting on stdin push
- incus/import: Fix progress reporting on stdin import
- incus/storage_bucket: Fix progress reporting on stdin import
- incus/storage_volume: Fix progress reporting on stdin import
- incus/storage_volume_file: Fix progress reporting on stdin push
- incusd/network/zone: Return a single SOA record on plain SOA queries
- incusd/storage: Fix races in connectOfflineNBD
- incusd/locking: Make unlock functions release only their own lock
- incusd/storage: Hold NBD operation lock for the whole session
- Translated using Weblate (Portuguese)
- build(deps): bump actions/setup-go from 6 to 7
- incusd/network/ovn: Detect stale database connections
- incusd/network/ovn: Remove NB client singleton
- incusd/storage: Use qcow2 virtual size as instance block size
- incusd/storage: Skip root disk size check on remote cluster move
- incusd/device: Make disk I/O limit parsing reusable
- api: Add unix_block_limits extension
- incusd/device: Add I/O limits for unix-block devices
- doc: Update config
- incusd/auth: Add allow/deny authorizers
- incusd/request: Add CtxUnixIsRoot
- incusd: Add support for multiple authorizers
- incusd: Set defaults for authorization.client.* keys
- tests: Add authorization router tests
- tests: Set authorization.client.* keys
- doc/authorization: Update for authorization client routing
- doc: Update config
- api: authorization_client_routing
- Translated using Weblate (Georgian)
- incusd/device: Require CIDR address when NIC gateway is set
- incusd/storage: Honor writable flag on offline NBD exports
- incusd/seccomp: Use namespace credentials for FUSE mounts
- incusd/dev_incus: Detect LXC monitors from cgroup v2
- incus: Rename debug subcommand to low-level and advertise it
- api: instance_nvram
- shared/api: Add InstanceNVRAMVariable struct
- shared/uefi: Add OVMF parsing primitives
- shared/uefi: Add various variable dissectors
- incusd/instance: Add GetNVRAM
- client: Add NVRAM getters
- incusd/instances: Add NVRAM API
- doc/rest-api: Refresh swagger YAML
- incus/low-level: Add nvram subcommand
- incusd/instance/qemu: Initialize NVRAM on first query
- golangci: Ignore GUID names and comments
- i18n: Update translation templates
- shared/uefi: Add some OVMF dumping primitives
- incusd/instance: Add SetNVRAM
- client: Add NVRAM variable deletion
- incusd/instances: Add NVRAM variable deletion
- doc/rest-api: Refresh swagger YAML
- incus/low-level: Add nvram unset subcommand
- i18n: Update translation templates
- api: Add disk_io_limits_combined extension
- incusd/device: Allow combining byte/s and IOPS limits
- doc/storage_volumes: Mention combined I/O limits
- doc: Update config
- Add storage note about loop devices on COW fs
- incusd/instance/lxc: Use project-qualified CRIU restore name
- incusd/instance/lxc: Clean devices after failed CRIU restore
- Translated using Weblate (Portuguese)
- incusd/storage: Fix instance copy for non-block volumes
- shared/ask: fix password prompt loop on Windows
- incusd/storage: Add support for '--refresh' for instances with dependent disks
- shared/ask: Fix newlines after functional blocks
- incusd/storage/drivers: Don't set received UUID on main btrfs volume
- incusd: Add cpus= argument to forkqemu
- incusd/instance/qemu: Confine QEMU startup to a single CPU type
- api: resources_cpu_cluster
- shared/api: Add Cluster to ResourcesCPUCore
- shared/resources: Fix CPU core grouping to handle core clusters
- incusd/instance/qemu: Make CPU topology validation cluster-aware
- incus/info: Show the CPU cluster of each core
- i18n: Update translation templates
- doc/rest-api: Refresh swagger YAML
- shared/ask: Fix static analysis
- incusd/instance/lxc: Fix OCI entrypoint escaping
- incusd/seccomp: Report FUSE mount helper failures
- incusd/storage/drivers: Fix volume activation of filesystem snapshots
- incusd/instance/qemu: Resize metadata image on disk size change
- incusd: Drop metadata image on instance copy and import
- incusd/storage: Strip unsafe symlinks in externally-supplied instance data
- incusd/storage/s3: Reject symlinks in bucket backups
- incusd/instance/qemu: Fix publish of qcow2-backed volumes
- incusd/auth: Fill missing local bucket location
- doc: Ignore bugzilla.opensuse.org in linkcheck
- Translated using Weblate (Portuguese)
- incusd/storage: Allow expected symlinks in instance metadata
- incusd/instance/qmp: Bump blockdev-add/del timeouts
- internal/filter: Prefer exact key match in ValueOf
- internal/filter: Only allow abbreviating the namespace in DotPrefixMatch
- internal/filter: Workaround spellcheck
- incus/network/allocations: Add a network column
- i18n: Update translation templates
- Translated using Weblate (Portuguese)
- incusd/cluster: Allow certificate updates with offline members on same-key renewals
- incusd/daemon: Sync cluster certificate from leader on startup
- incusd: Keep cluster listener when core.https_address changes
- incusd/firewall/nftables: Use a bridges set for cross-bridge NAT exclusions
- incusd/network/bridge: Drop the cross-bridge NAT rules refresh
- incusd/firewall: Remove unused SNATOpts.ExcludeInterfaces
- build(deps): bump KineticCafe/actions-dco from 3.1.0 to 3.2.0
- build(deps): bump actions/labeler from 6 to 7
- incusd/cgroup: Add swap accounting detection
- incusd/seccomp: Skip swap in sysinfo when swap accounting is unavailable
- incusd/instance/lxc: Handle missing swap accounting
- api: acme_eab
- shared/tls: Add EAB support to RunACMEChallenge
- incusd/cluster/config: Add acme.eab.kid and acme.eab.hmac
- incusd/acme: Pass EAB configuration to lego
- doc/authentication: Mention External Account Binding
- doc: Update config
- doc: Add EAB and HMAC to wordlist
- incusd/instance: Prevent root disk re-creation on running instances
- incusd/instance/qemu: Prevent root disk hot-unplug
- Translated using Weblate (Russian)
- Translated using Weblate (Swedish)
- incusd/instance-types: Use clouds.yaml for the list of clouds
- incusd/instance-types: Add support for root disk size
- incusd: Document HTTP 201 return code in Swagger specs
- incusd: Fix incorrect return codes in Swagger specs
- incusd/network_integrations: Return 201 with Location on rename
- incusd: Document HTTP 412 on instance and snapshot PUT/PATCH
- incusd/response: Add Conflict swagger response definition
- incusd: Document baseline error codes for endpoints using SmartError
- doc/rest-api: Refresh swagger YAML
- incusd/storage: Strip sub-path from dependent volume sources
- incusd/migration: Strip sub-path from dependent volume source overrides
- incusd/instance: Strip sub-path from dependent volume sources
- incusd: Strip sub-path from dependent volume sources
- incusd/storage: Allow unattached volumes in qcow2 migration
- incusd/instance/qmp: Add copy-before-write export helpers
- incusd/instance/qemu: Use copy-before-write overlays for NBD exports
- incusd/main_forkfile: Set SFTP max packet size to 128KiB
- incus-agent: Set SFTP max packet size to 128KiB
- internal/linux: detect initial user namespace by inode
- incus/launch: Link to the supported instance types
- doc/howto/instances_create: Update instance types link
- i18n: Update translation templates
- incusd/storage/ceph: Bound RBD unmap with a 30s timeout
- shared/archive: Add CompressionThreads
- incusd/images: Support reproducible pigz output
- shared/archive: Prefer pigz for decompression when available
- incusd/images: Prefer pigz for compression when available
- Update gomod
- client/oci: Use pgzip for image compression
- tests: Update godeps
- incusd/qemu: Use pgzip for state compression
- incus/list: Add --all-remotes
- tests: Add --all-remotes test
- i18n: Update translation templates
- client: Add ETag on NVRAM variable getter
- incusd/instances: Add ETag on NVRAM variable getter
- client: Add NVRAM variable update
- incusd/instances: Diverse fixes
- shared/api: Add InstanceNVRAMVariablePut struct
- shared/uefi: Add some OVMF formatting primitives
- incusd/instances: Add NVRAM variable update
- doc/rest-api: Refresh swagger YAML
- incus: Modify argument order in flag helpers
- incus/usage: Add MakeKV
- incus/usage: Add AsSingleton
- incus/low-level: Add nvram set subcommand
- incus/low-level: Add nvram edit subcommand
- api: instance_nvram (updated)
- i18n: Update translation templates
- incusd/firewall/nftables: Fix template race in applyNftConfig
- incusd: Fix repair endpoint swagger method
- client: Add RepairInstance
- incus/low-level: Add bitmaps subcommand
- incus/low-level: Add repair subcommand
- client: Add GetStorageVolumeBitmap
- incus/storage_volume: Add bitmap subcommand
- i18n: Update translation templates
- incusd/instance/qemu: Release operation lock on snapshot size failure
- incusd/operations: Remove operation from map on DB registration failure
- incusd: Fix goroutine leak when cluster instance list times out
- generate-database: Add ReferenceID filtering for reference tables
- incusd/db: Add ReferenceID filtering to Config and Device
- incusd/db/cluster: Update generated code
- incusd/db/cluster: Add referenced profile query helpers
- incusd/db: Only load referenced profiles when filling instances
- incusd/db/cluster: Scope profile queries in Instance.ToAPI
- incusd: Only load referenced profile data
- incusd/backup: Only load referenced profile data
- incusd/project: Scope config queries to project resources
- incusd/scriptlet: Scope instance device query
- incusd/db: Port instance config and device fill to generated queries
- incusd/instances: Add NVRAM rebuild as a repair action
- incusd/instance: Add ResetNVRAM
- api: instance_nvram (updated)
- incus/low-level: Add rebuild-nvram to the list of repair actions
- i18n: Update translation templates
- incusd/instances: Fix capitalization
- incusd/project: Restrict volume creation options in restricted projects
- internal/instance: Prevent line breaks in NVIDIA config values
- incusd/instance: Confine OCI network writes to instance root
- incusd/storage: Confine backup.yaml write to instance root
- incusd/instance: Confine metadata.yaml access to instance root
- incusd/instance/qemu: Confine template access to instance root
- incusd/images: Validate image fingerprint for all protocols
- incusd/storage: Validate volume name on ISO and backup import
- incusd/instances: Validate instance name on backup import
- incusd/instances: Re-check restrictions after copy config merge
- incusd/instance: Enforce project restrictions on migration overrides
- incusd/project: Enforce isolated restriction when idmap key omitted
- incusd: Expand network address set project for authorization
- incusd/instance: Fix NVIDIA require.cuda and require.driver handling
- incusd/instance: Confine exec-output access to its directory
- incusd: Fail closed on unknown authorization project expansion
- incusd/instance/qemu: Use os.Root for template output
- client: Make GetRawInstanceNVRAMGUIDVar return attributes
- incusd/response: Allow custom headers in devIncusResponse
- shared/uefi: Export dumpAttributes
- incusd/instances: Add headers to raw NVRAM variable response
- incus/low-level: Support more formats in NVRAM getter and setter
- i18n: Update translation templates
- Makefile: Bump to 1.25.12
- Update gomod
- Translated using Weblate (Georgian)
- Translated using Weblate (Georgian)
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Russian)
- Translated using Weblate (Russian)
- Translated using Weblate (Tamil)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (Greek)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (Dutch)
- Translated using Weblate (Dutch)
- Translated using Weblate (Italian)
- Translated using Weblate (Italian)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Portuguese)
- Release Incus 7.3
Documentation¶
The Incus documentation can be found at:
https://linuxcontainers.org/incus/docs/main/
Packages¶
There are no official Incus packages as Incus upstream only releases regular release tarballs. Below are some available options to get Incus up and running.
Installing the Incus server on Linux¶
Incus is available for most common Linux distributions. You'll find detailed installation instructions in our documentation.
https://linuxcontainers.org/incus/docs/main/installing/
Homebrew package for the Incus client¶
The client tool is available through HomeBrew for both Linux and MacOS.
https://formulae.brew.sh/formula/incus
Chocolatey package for the Incus client¶
The client tool is available through Chocolatey for Windows users.
https://community.chocolatey.org/packages/incus/7.3.0
Winget package for the Incus client¶
The client tool is also available through Winget for Windows users.
https://winstall.app/apps/LinuxContainers.Incus
Support¶
Monthly feature releases are only supported up until the next release comes out. Users needing a longer support length and less frequent changes should consider using Incus 7.0 LTS instead.
Community support is provided at: https://discuss.linuxcontainers.org
Commercial support is available through: https://zabbly.com/incus
Bugs can be reported at: https://github.com/lxc/incus/issues
Incus 7.0.1 LTS has been released¶
Jul 10, 2026
Introduction¶
The Incus team is pleased to announce the release of Incus 7.0.1!
This is the first bugfix release for Incus 7.0 which is supported until June 2031.
Of note, with the 7.0.x series, we are decoupling the bugfix updates of our various projects, so there won't be an update of LXC and LXCFS at the same time as this one.
Changes¶
As usual this bugfix releases focus on stability and hardening.
Minor improvements have also been backported, specifically anything which does not require data migration, database changes or cause any unexpected change to user facing behavior.
The number of such improvements will decrease over time within the LTS branch.
Some of the highlights for this release are:
- Rebuilding custom storage volumes
- Explicit CPU topology for virtual machines
- Custom TPM platform certificate
- Volume creation on attach
- Filesystem creation options for storage
- Low-level LINSTOR configuration
- IP ranges in network address sets
- Multicast snooping control on bridge networks
- Multiple addresses per remote
- S3 object storage improvements
- Per-instance SELinux integration
- New
incus defaultCLI command - Filtered server info by default
- Keepalive timeout from the CLI
- Better OS-specific handling of CLI configuration
- Standalone server certificate update
- Static network configuration for OCI containers
- Per-instance BGP route advertisement
- Dynamic addresses in proxy NAT mode
- Expanded NBD access to VMs
- Btrfs compression for storage volumes
- InfiniBand SR-IOV GUID configuration
- Websocket origin restriction
This update also addresses the following security issues:
- CVE-2026-48753 (critical) - Arbitrary file write via path traversal in S3 multipart upload
- CVE-2026-47753 (low) - Nil-Pointer Dereference Panic via Instance Backup Import (volume omitted)
- CVE-2026-48754 (low) - Nil-pointer dereference in createDependentVolumesFromBackup
- CVE-2026-48756 (low) - Nil-pointer dereference in CreateCustomVolumeFromBackup
- CVE-2026-48749 (critical) - Arbitrary file read+write on host via
rootfs/symlink in malicious image - CVE-2026-48750 (critical) - Arbitrary file write on host via
exec-outputsymlink in crafted image - CVE-2026-48751 (critical) - Restricted project bypass leading to arbitrary command execution
- CVE-2026-48752 (critical) - Arbitrary file read+write on host via
templates/symlink in malicious image - CVE-2026-48755 (critical) - Argument injection in backup compression algorithm leading to arbitrary file write and command execution
- CVE-2026-48769 (critical) - Arbitrary file write on client due to trusted image hash
- CVE-2026-55621 (high) - Project restriction bypass for custom volume copy across projects
- CVE-2026-55622 (high) - Project restriction bypass in instance copy across projects
All of those have been previously fixed in regular monthly releases and been widely backported by the various distributions shipping Incus 7.0 LTS.
The full list of commits is available below:
Detailed changelog
- doc/devices/disk: Fix broken link
- incusd/instance/qemu: Fix version detection for qemu-kvm
- incusd: Re-introduce core scheduling detection
- incusd/instance/lxc: Fix swap=false failure
- incusd/forknet: Persist DHCPv6 client DUID across restarts
- incusd/forknet: Include FQDN in DHCPv6 INFO requests
- incusd/forknet: Properly renew stateful DHCPv6
- incusd/forknet: Add jitter to DHCPv6 renewal
- incusd/device/nic_bridged: Fix swapped IPv4/IPv6 DNS record
- doc/authorization: Fix reference to old "manager" relation
- incusd/network/acl: Fix issue with instances in different project than ACL
- incusd/projects: Fix targeting on project delete
- incusd/storage_volume_nbd: Fix incorrect swagger
- doc/rest-api: Refresh swagger YAML
- test/network_acl: Add test for ACL used by instance in different project
- incusd/instance/qemu: Remove deprecated QEMU flag
- incusd/cluster: Re-order evacuations to happen earlier on shutdown
- incusd/endpoints: Fix Wait() race in Tomb shutdown
- incusd/instance/qemu: Pass SMBIOS type 11 entries via files
- incusd/db/node: Cleanup node offline messages
- api: network_bridge_multicast_snooping
- incusd/network/bridge: Add bridge.multicast_snooping config key
- doc: Update config
- incusd/locking: Add TryLock
- incusd/storage: Use InstanceByVolumeName in qcow2MigrateVolume
- incusd/storage: Add lock handling for NBD operations
- devcontainer: fix golangci-lint install source
- build(deps): bump actions/dependency-review-action from 4 to 5
- incusd/storage/drivers: Restore config volume as part of VM block restoration
- doc: Update Ansible section with incus-client details
- Update list of Ubuntu LTS releases that get pre-built Incus packages
- Use correct host:port format for ClusterAddress
- incusd/cluster: Better handle misisng OVS/OVN
- incusd/storage/zfs: Avoid recursive zfs list in GetResources
- incusd/network/ovn: Skip per-IP NAT for external routes when no uplink
- incusd/instances: Skip offline members in bulk state changes
- incusd/instance/drivers/lxc: Quote values in lxc.environment
- test: Disable volume shrinking with LINSTOR
- doc/storage_volume: Fix outdated information
- incusd/storage/s3: Implement S3 CopyObject
- incus/storage_volume: Add --create flag to attach
- tests/storage_volume_attach: Test --create on attach
- incusd/storage/s3: Implement ACL placeholder
- tests/storage: Add S3 CopyObject coverage
- incusd/storage/drivers: Add workaround for shared VG removal failures
- incusd/networks: Parallelize network startup and OVN restart
- incusd/ip: Set NUD_PERMANENT on neighbour proxy entries
- incusd/device/nic_bridged: Drop redundant accept_ra=0
- incusd/device/nic_bridged: Recover orphaned veth on startup
- incusd/forknet: Use space separator for DNS search domains
- incusd/db/node: Allow using a fixed time in Offline checks
- incus: Print console log when attaching via --console
- incusd/storage/ceph: Refuse pool deletion when unexpected images exist
- shared/api: Fix swagger examples
- cmd/incus: Clarify --expiry flag format
- doc: Clarify snapshots.expiry
- doc: Update metadata
- doc/rest-api: Refresh swagger YAML
- incusd/firewall/nftables: Use terse mode to improve performance
- client/oci: Pass --no-tags to skopeo inspect
- incus/server/network/ovn/driver: Fix duplicate listening ip check in ForwardCreate
- incus/server/network/ovn/driver: Fix duplicate listening ip check in LoadBalancerCreate
- Extend description for OCI-compliant remotes
- incusd/instance/qmp: Add QueryVirtioVGADevice
- incusd/instance/qemu: Add virtio vga feature gating
- incus/operation: Fix default column layout in help text
- incus/network: Fix typo in description
- incus/network/zone: Align long and short descriptions
- incus/network: Fix typo in description
- incus/storage/volume: Fix typo in description
- incus/config/trust: Fix typo in description
- incus/network/forward: Fix typo in description
- incus/image: Align description formatting
- incus/config/trust: Align description formatting
- incus/warning: Align description formatting
- incus/cluster/group: Fix typo in description
- incus/project: Fix typo in description
- incus/project: Align description formatting
- incus/storage/volume: Align long and short description
- api: storage_create_options
- incusd/storage/drivers: Add support for block.create_options
- tests: Add test for block.create_options
- doc: Update config
- incus/utils: Tweak environment file handling to strip matching outer quotes
- shared/archive: Improved ENOSPC detection
- api: instances_tpm_platform_cert
- incusd/devices: Set volatileGet on Refresh
- incusd/cluster/config: Add instances.tpm.platform keys
- incusd/device/tpm: Provision vTPM with platform CA when configured
- doc: Update config
- doc: Add PEM to wordlist
- incus/cluster: Fix typo in description
- incus/launch: Clarify examples
- incus/remote_unix: Clarify socket type
- incus/network/forward: Fix typo in description
- incus/launch: Update examples
- incus/config: Fix YAML file name in help text
- shared/simplestreams: Add combined_type
- incus-simplestreams: Support split container images
- incus-simplestreams: Detect type of unified images
- incusd/forknet: Time out DHCPv4 lease acquisition
- incusd/forknet: Time out DHCPv6 lease acquisition
- incusd/forknet: Handle zero wait time for DHCPv6
- incusd/forknet: Filter the DHCPv4 raw socket
- Makefile: Use older incus-os for Go 1.25
- gomod: Update dependencies
- incusd/storage: Allow skipping validation for more prefixes
- incusd/storage/linstor: Allow setting raw DRBD properties on storage pools
- incusd/storage/linstor: Allow setting raw DRBD properties on storage volumes
- tests: Add quick raw DRBD key checks
- api: linstor_raw
- incusd/network/ovn: Use dnat_and_snat for fully mapped external addresses
- doc: Update config
- api: network_address_set_ip_ranges
- incusd/network/address-set: Support IP ranges
- doc: Document IP range support in network address sets
- tests: Add IP range coverage for network address sets
- inucsd/devices/tpm: Enable tpm live migration
- incusd/storage/zfs: Use latest common GUID as refresh base
- incusd/instances: Only reset NVRAM on secureboot change for VMs
- incus/file: Fix push behavior with UID/GID/mode overrides
- incus/file: Fix typo
- tests: Add thorough tests for incus file push with UID/GID/mode overrides
- incus/storage_volume: Fix push behavior with UID/GID/mode overrides
- incus/info: Handle negative usage values (unknown)
- incusd/storage: Return -1 as disk usage when the driver doesn't support it
- incusd/instance: Handle negative disk usage values
- incusd/instance/lxc: Use os.Root for templating
- tests: Update btrfs test for new behavior
- incusd/storage: Add missing doc comments on exported symbols (revive:exported)
- incusd/storage: Rename locals that shadow imports (revive:import-shadowing)
- incusd/storage: Simplify if/else with early return (revive:early-return)
- incusd/storage: Check type assertion result (revive:unchecked-type-assertion)
- incusd/storage: Use tagged switch statements (staticcheck:QF1003)
- incusd/storage: Simplify boolean with De Morgan's law (staticcheck:QF1001)
- incusd/storage/drivers: Add missing doc comments on exported symbols (revive:exported)
- incusd/storage/drivers: Rename locals that shadow imports (revive:import-shadowing)
- incusd/storage/drivers: Avoid deferring inside loops (revive:defer)
- incusd/storage/drivers: Simplify if/else with early return (revive:early-return)
- incusd/storage/drivers: Remove extra blank lines at start of block (revive:empty-lines)
- incusd/storage/drivers: Omit inferable type from declaration (staticcheck:QF1011)
- incusd/storage/drivers: Use strings.Split instead of SplitN (staticcheck:QF1004)
- incusd/storage/drivers: Use tagged switch statements (staticcheck:QF1003)
- incusd/network/ovs: Remove unused unquote function (unused)
- incusd/network/ovs: Use strings.Split instead of SplitN (staticcheck:QF1004)
- incusd/network/ovn: Use tagged switch statements (staticcheck:QF1003)
- incusd/network/zone: Rename param that shadows state import (revive:import-shadowing)
- incusd/network/zone: Add and fix doc comments on exported methods (revive:exported)
- incusd/network/acl: Rename locals that shadow imports (revive:import-shadowing)
- incusd/network/acl: Use tagged switch on rule.Action (staticcheck:QF1002)
- incusd/network/acl: Use tagged switch on rule.Protocol (staticcheck:QF1003)
- incusd/network/acl: Merge conditional assignment into declaration (staticcheck:QF1007)
- incusd/network/acl: Invert condition to return early (revive:early-return)
- incusd/network/acl: Remove blank line at start of switch (revive:empty-lines)
- incusd/network: Add and fix doc comments on exported symbols (revive:exported)
- incusd/network: Rename locals that shadow imports (revive:import-shadowing)
- incusd/network: Remove blank line at start of block (revive:empty-lines)
- incusd/network: Remove embedded common field from selectors (staticcheck:QF1008)
- incusd/network: Merge conditional assignment into declaration (staticcheck:QF1007)
- incusd/network: Lift break condition into loop (staticcheck:QF1006)
- incusd/network: Use tagged switch statements (staticcheck:QF1003)
- incusd/operations: Add missing doc comments on exported methods (revive:exported)
- incusd/operations: Rename param that shadows import (revive:import-shadowing)
- incusd/endpoints: Rename locals that shadow import (revive:import-shadowing)
- incusd/cluster: Drop redundant client import alias (revive:redundant-import-alias)
- incusd/cluster: Add missing doc comments on exported methods (revive:exported)
- incusd/cluster: Simplify with early return (revive:early-return)
- incusd/cluster: Avoid deferring inside loops and chains (revive:defer)
- incusd/cluster: Rename locals that shadow imports (revive:import-shadowing)
- incusd/db/query: Add missing doc comments on exported symbols (revive:exported)
- incusd/db/query: Rename locals that shadow imports (revive:import-shadowing)
- incusd/db/node: Rename locals that shadow imports (revive:import-shadowing)
- incusd/db/schema: Check error from db.Close (errcheck)
- incusd/db/schema: Rename locals that shadow imports (revive:import-shadowing)
- incusd/db/cluster: Remove redundant import alias (revive:redundant-import-alias)
- incusd/db/cluster: Rename locals that shadow imports (revive:import-shadowing)
- incusd/db/cluster: Check type assertion result (revive:unchecked-type-assertion)
- incusd/db/cluster: Use fmt.Fprintf instead of WriteString (staticcheck:QF1012)
- incusd/db: Rename locals that shadow imports (revive:import-shadowing)
- incusd/db: Apply De Morgan's law to simplify boolean (staticcheck:QF1001)
- incusd/db: Rename profileIds parameter to profileIDs (revive:var-naming)
- incusd/db: Rename local that redefines builtin max (revive:redefines-builtin-id)
- incusd/db: Check type assertion result (revive:unchecked-type-assertion)
- incusd/db: Use fmt.Fprintf instead of WriteString (staticcheck:QF1012)
- incusd/db: Omit redundant types in var declarations (revive:var-declaration)
- incusd/db: Add space after comment delimiter (revive:comment-spacings)
- incusd/db: Omit type from strings.Builder declarations (staticcheck:ST1023)
- incusd/logging: Use fmt.Fprintf instead of WriteString (staticcheck:QF1012)
- incusd/instance/drivers/qmp: Fix doc comment on exported Run method (revive:exported)
- incusd/instance/drivers/qmp: Use tagged switch statement (staticcheck:QF1003)
- incusd/instance: Return explicit values instead of bare returns (revive:bare-return)
- incusd/instance: Use fmt.Fprintf instead of WriteString (staticcheck:QF1012)
- incusd/instance: Rename locals that shadow imports (revive:import-shadowing)
- incusd/instance/drivers: Remove unused const and function (unused)
- incusd/instance/drivers: Remove unnecessary blank line at end of block (whitespace)
- incusd/instance/drivers: Omit inferred type from var declaration (revive:var-declaration)
- incusd/instance/drivers: Avoid deferring inside loops (revive:defer)
- incusd/instance/drivers: Return early to reduce nesting (revive:early-return)
- incusd/instance/drivers: Check type assertions (revive:unchecked-type-assertion)
- incusd/instance/drivers: Add doc comments on exported methods (revive:exported)
- incusd/instance/drivers: Rename locals that shadow imports (revive:import-shadowing)
- incusd/instance/drivers: Replace append loop with variadic append (staticcheck:S1011)
- incusd/instance/drivers: Use tagged switch statements (staticcheck:QF1003)
- incus: Use tagged switch statement (staticcheck:QF1003)
- incus: Remove unused functions (unused)
- incus/usage: Remove dead assignments to renderedAtoms (staticcheck:SA4006)
- incusd/dns: Add doc comment on exported method ServeDNS (revive:exported)
- incusd/dns: Rename param that shadows db import (revive:import-shadowing)
- incusd/dnsmasq: Use strings.Split instead of SplitN (staticcheck:QF1004)
- incusd/dnsmasq/dhcpalloc: Lift break condition into loop (staticcheck:QF1006)
- incusd/metrics: Use fmt.Fprintf instead of WriteString (staticcheck:QF1012)
- incusd/scriptlet: Use tagged switch statements (staticcheck:QF1003)
- incusd/scriptlet/log: Fix doc comment on exported CreateLogger (revive:exported)
- incusd/ucred: Check type assertion in GetConnFromContext (revive:unchecked-type-assertion)
- incusd/refcount: Omit redundant type in var declaration (revive:var-declaration)
- incusd/metadata: Add doc comment on exported var Data (revive:exported)
- incusd/firewall/drivers: Remove unused subnetMask function (unused)
- incusd/bgp: Remove unused setup method (unused)
- incusd/config: Use fmt.Fprintf instead of WriteString (staticcheck:QF1012)
- incusd: Fix import grouping (gci)
- incusd: End comments with a period (godot)
- incusd: Remove unnecessary trailing newline (whitespace)
- incusd: Merge conditional assignments into declarations (staticcheck:QF1007)
- incusd: Convert byte slice argument to string (staticcheck:QF1010)
- incusd: Use fmt.Fprintf instead of Write of Sprintf (staticcheck:QF1012)
- incusd: Fix errors.Is argument order (staticcheck:SA1032)
- incusd: Remove dead source connection (staticcheck:SA4006)
- incusd: Use tagged switch statements (staticcheck:QF1003)
- incusd: Fix identifier naming (revive:var-naming)
- incusd: Rename locals that shadow imports (revive:import-shadowing)
- incusd: Use comma-ok form for type assertions (revive:unchecked-type-assertion)
- incusd: Return early to reduce nesting (revive:early-return)
- incusd: Drop else after return (revive:indent-error-flow)
- incusd: Avoid deferring inside loops (revive:defer)
- incusd: Add space after comment delimiter (revive:comment-spacings)
- incusd: Rename local that shadows builtin min (revive:redefines-builtin-id)
- incusd: Remove empty else block (revive:empty-block)
- incusd: Remove blank line at start of block (revive:empty-lines)
- incusd: Remove useless break in case clauses (revive:useless-break)
- incusd: Annotate intentional os.Exit calls (revive:deep-exit)
- incusd: Fix remaining identifier naming (revive:var-naming)
- incusd/device/config: Rename copy locals that shadow builtin (revive:redefines-builtin-id)
- incusd/response: Add doc comments on exported Render methods (revive:exported)
- incusd/response: Avoid defer inside loop in fileResponse.Render (revive:defer)
- incusd/response: Use fmt.Fprintf instead of WriteString with Sprintf (staticcheck:QF1012)
- incusd/events: Remove embedded Conn field from selectors (staticcheck:QF1008)
- incusd/events: Add doc comments on exported methods (revive:exported)
- incusd/auth: Rename locals that shadow logger import (revive:import-shadowing)
- incusd/auth: Add doc comments on exported symbols (revive:exported)
- incusd/auth: Use strings.Split instead of SplitN (staticcheck:QF1004)
- incusd/auth/oidc: Check email claim type assertion (revive:unchecked-type-assertion)
- incusd/auth/oidc: Add doc comments on exported methods (revive:exported)
- incusd/device: Rename locals that shadow imports (revive:import-shadowing)
- incusd/device: Avoid defer inside loop in checkAttachedRunningProcesses (revive:defer)
- incusd/device: Remove blank line at start of block (revive:empty-lines)
- incusd/device: Remove unnecessary blank line in validateConfig (whitespace)
- incusd/device: Invert conditions to return early (revive:early-return)
- incusd/device: Check container type assertions (revive:unchecked-type-assertion)
- incusd/device: Remove embedded StorageVolume field from selector (staticcheck:QF1008)
- incusd/device: Apply De Morgan's law to simplify booleans (staticcheck:QF1001)
- incusd/device: Use tagged switch statements (staticcheck:QF1003)
- internal/linux: Return error last from GetErrno (revive:error-return)
- internal/linux: Rename devpts_fd parameter (revive:var-naming)
- internal/linux: Drop redundant = nil from err declaration (revive:var-declaration)
- internal/linux: Add missing doc comments on exported symbols (revive:exported)
- incusd/apparmor: Add doc comment on nullWriteCloser.Close (revive:exported)
- incusd/apparmor: Omit inferred type from strings.Builder declarations (staticcheck:ST1023)
- incusd/backup: Rename locals that shadow state import (revive:import-shadowing)
- incusd/seccomp: Simplify setxattr whiteout check with early return (revive:early-return)
- incusd/fsmonitor: Rename local that shadows logger import (revive:import-shadowing)
- incusd/fsmonitor/drivers: Rename locals that shadow logger import (revive:import-shadowing)
- incusd/fsmonitor/drivers: Add doc comments on exported Name methods (revive:exported)
- incusd: Add newline after block before switch case (newline-after-block)
- incusd/device: Add newline after block before switch case (newline-after-block)
- incusd/instance/drivers: Add newline after block before switch case (newline-after-block)
- incusd/storage/drivers: Add newline after block before switch case (newline-after-block)
- incus: Add newline after block before switch case (newline-after-block)
- incus: Inline reflect.Ptr as reflect.Pointer (govet:inline)
- incusd/operations: Inline reflect.Ptr as reflect.Pointer (govet:inline)
- incusd: Omit redundant error type from sentinel var declaration (revive:var-declaration)
- incusd/cluster: Omit redundant error type from sentinel var declaration (revive:var-declaration)
- incusd/dnsmasq/dhcpalloc: Omit redundant error type from sentinel var declaration (revive:var-declaration)
- incusd/instance/operationlock: Omit redundant error type from sentinel var declaration (revive:var-declaration)
- test/lint: Run full golangci-lint instead of only new changes
- api: storage_volumes_rebuild
- incusd/storage: Add RebuildCustomVolume to pool backend
- shared/api: Add StorageVolumeRebuildPost
- incusd/storage: Add storage volume rebuild API endpoint
- doc/rest-api: Refresh swagger YAML
- client: Add RebuildStoragePoolVolume
- incus/storage_volume: Add rebuild command
- tests: Add storage volume rebuild test
- incusd/network/ovn: Correctly set VLAN on uplink veth
- incusd/network/physical: Skip VLAN interface on filtered bridges
- incusd: Rename dqlite references to cowsql
- global: Use sync.WaitGroup.Go for goroutine management
- global: Use maps.Copy instead of manual copy loops
- global: Use range-over-int loops
- global: Use reflect.TypeFor
- global: Use t.Context in tests
- incusd: Use unsafe.Add for pointer arithmetic in forkproxy
- incusd/instance/drivers: Use the min builtin for memory capping
- global: Use strings.Cut instead of strings.Split/SplitN
- global: Use strings.CutSuffix instead of HasSuffix/TrimSuffix
- global: Use slices.Backward for reverse iteration
- shared/api: Drop no-op omitempty on nested struct fields
- global: Use strings.Builder for string concatenation in loops
- incus/remote: Add support for multiple URLs
- incus: Refactor calls to the parser
- incus: Remove global mutable state from the parser
- incus: Keep track of last working remote
- doc: Update command name
- incus/storage/s3: Support SigV4 presigned URLs
- incus/storage/s3: Support SigV2 presigned URLs
- tests: Add storage bucket presigned URL test
- client: handle absolute paths for simplestream files
- shared/api/url: Add URL fragment setter
- incusd/storage: Improve handling of daemon volumes
- incusd/db/cluster/entities: Add TypeServer and fix map sorting
- incusd/project: Handle server objects
- api: api_fragments
- incusd/storage: Prevent creating daemon volumes on shared pools
- incusd/images: Revert 36f513c
- incus/remote: Improve usage
- incus/storage/volume: Improve usage
- incus/move: Improve usage
- incus/image: Improve usage
- incus/config: Fix typo in usage
- incusd/devices: Cleanup leftover forkproxy on startup
- incus/storage_volume: Put big subcommands into their own files
- incus/file: Make recursive push apply UID/GID overrides recursively
- tests: Switch to recursive chown on file push
- api: instance_limits_cpu_topology
- shared/validate: Add CPU topology parsing helper
- internal/instance: Allow CPU topology syntax for limits.cpu
- incusd/instance: Support CPU topology for VM limits.cpu
- doc: Document CPU topology support for limits.cpu
- doc: Update config
- incusd/instance/drivers: Apply standard API object name checks
- incusd/device: Encode device names in DevicesPath storage paths
- incusd/storage: Fix unsafe access to backup data
- incusd/storage: Guard nil ExpiresAt in CreateCustomVolumeFromBackup
- incusd/storage: Guard nil fields in createDependentVolumesFromBackup
- incusd/storage/s3: Confine multipart uploads with os.Root
- internal/instance: Add volatile.last_state.agent
- internal/server: fire agent events after checking current state
- doc: Update config
- tests: Update for new name restrictions
- incusd/instance/lxc: Allow unsetting limits.memory.swap without hitting a cgroup error
- incusd/instance/drivers: Round memory hotplug size up to block size
- gomod: Update dependencies
- doc/authorization: Fix markdownlint
- shared/tls: Add support for Lego v5
- incusd/instance/lxc: Fix environment quoting
- incusd/storage/zfs: Refuse refresh only when snapshots have no common base
- shared/tls: Detect Lego version/behavior based on help
- doc/cloud-init: Clarify VM behavior
- github: Remove pre-installed java
- incus: Make unset commands accept several keys
- server/network: fix comment alignment
- server/network: fix scope of node specific network configs
- doc: update generated metadata
- server/metadata: update generated metadata
- internal/server/instance/drivers: Add migration-compatible hv flags with migration.stateful=true
- cmd/generate-database/db: Add joinas db tag
- cmd/generate-database/lex: Fix pluralizations ending in y
- incusd/storage: Fix qcow2 custom volume backups
- incusd/instance/qemu: Remove stale migrate.sock before qcow2 export
- incusd/response: Abort piped exports that fail mid-stream
- incusd/migration: Detect target migration errors
- incusd/instance/qemu: Tweak migration fallback for VMs
- incusd: Reject migration onto existing instance of different type
- incusd/migrate: Bump migration handshake timeouts to 2 minutes
- shared/api: Remove legacy logic
- incusd/cluster: Remove legacy logic
- Update gomod
- incusd: Use partial device validation when recovering instances
- incusd/network/ovn: Don't require an active chassis when updating tunnels
- incusd/network: Clean up stale OVS ports on startup
- incusd/cluster: Honor cluster group during evacuation
- incusd/cluster: Honor restricted cluster groups during evacuation
- incusd/cluster: Improve evacuation and restoration progress reporting
- global: Clean latest gofumpt
- incusd: Replace gorilla/mux with http.ServeMux
- Update go.mod
- api: instance_nbd
- client: Add GetInstanceNBDConn
- incusd/instances: Add NBD API
- incusd/storage: Implement all-disks NBD function
- incusd/instance/qmp: Add block snapshot transaction and node size helpers
- incusd/instance: Implement ConnectNBDAllDisks
- incusd/instance/qemu: Use empty NBD export name for single-disk exports
- incusd/instance/qemu: Report disk usage on stopped instances
- incus/debug: Add NBD command
- doc/rest-api: Refresh swagger YAML
- incusd/instance/drivers/qmp: Add locking around event handlers
- incusd/instance/qemu: Fully cleanup the old monitor
- incusd/storage/drivers: Handle sgdisk return codes
- incusd/auth/oidc: Refactor cookie setting logic
- shared/api: Add Server.Filtered()
- incus/info: Add --show-sensitive
- incusd/auth/oidc: Set expiration on authentication cookies
- incusd/auth/oidc: Clear cookies on terminal refresh failure
- shared/logger: Add WarnOnError helper
- incusd/instancewriter: Log deferred errors with WarnOnError
- incus: Log deferred errors with WarnOnError
- incus-agent: Log deferred errors with WarnOnError
- internal/incusos: Log deferred errors with WarnOnError
- internal/linux: Log deferred errors with WarnOnError
- incusd/migration: Log deferred errors with WarnOnError
- internal/netutils: Log deferred errors with WarnOnError
- internal/rsync: Log deferred errors with WarnOnError
- incusd/backup: Log deferred errors with WarnOnError
- incusd/cgroup: Log deferred errors with WarnOnError
- incusd/cluster: Log deferred errors with WarnOnError
- incusd/device: Log deferred errors with WarnOnError
- incusd/device/pci: Log deferred errors with WarnOnError
- incusd/dnsmasq: Log deferred errors with WarnOnError
- incusd/firewall/drivers: Log deferred errors with WarnOnError
- incusd/instance/drivers: Log deferred errors with WarnOnError
- incusd/network: Log deferred errors with WarnOnError
- incusd/network/acl: Log deferred errors with WarnOnError
- incusd/response: Log deferred errors with WarnOnError
- incusd/seccomp: Log deferred errors with WarnOnError
- incusd/storage: Log deferred errors with WarnOnError
- incusd/storage/quota: Log deferred errors with WarnOnError
- incusd/storage/s3: Log deferred errors with WarnOnError
- incusd/storage/s3/local: Log deferred errors with WarnOnError
- incusd/util: Log deferred errors with WarnOnError
- internal/util: Log deferred errors with WarnOnError
- incusd: Log deferred errors with WarnOnError
- incusd/storage/drivers: Log deferred errors with WarnOnError
- client: Log deferred errors with WarnOnError
- incusd/db: Log deferred errors with WarnOnError
- incusd/db/cluster: Log deferred errors with WarnOnError
- incusd/db/node: Log deferred errors with WarnOnError
- incusd/db/query: Log deferred errors with WarnOnError
- incusd/db/schema: Log deferred errors with WarnOnError
- shared/resources: Log deferred errors with WarnOnError
- shared/resources/usbid: Log deferred errors with WarnOnError
- shared/idmap: Log deferred errors with WarnOnError
- shared/cliconfig: Log deferred errors with WarnOnError
- shared/archive: Log deferred errors with WarnOnError
- shared/subprocess: Log deferred errors with WarnOnError
- shared/simplestreams: Log deferred errors with WarnOnError
- shared/util: Log deferred errors with WarnOnError
- incus-migrate: Log deferred errors with WarnOnError
- incus-benchmark: Log deferred errors with WarnOnError
- incus-user: Log deferred errors with WarnOnError
- incus-simplestreams: Log deferred errors with WarnOnError
- lxc-to-incus: Log deferred errors with WarnOnError
- generate-database/file: Log deferred errors with WarnOnError
- incusd: Rename forknet logger parameter to avoid shadowing
- incusd: Log deferred errors in main_forknet with WarnOnError
- github: Update DCO check
- incusd/api_internal: Add server-certificate endpoint
- incus/admin: Add update-certificate command
- i18n: Update translation templates
- incusd/device/disk: Use virtiofsd --posix-acl=auto if supported
- incus/client: Fix panic when cancelling
- incus/remote: Move OIDC and cookie jar on rename
- incus/cluster: Document the actions
- incusd/console: Read the container console without resetting it
- incusd/linux: Add DialUnix helper
- incusd/qemu: Handle long run paths for the QMP socket
- incusd/qemu: Handle long run paths for the SPICE socket
- shared/cliconfig: Remove duplicate file closing
- Makefile: Remove pinned incus-os
- Update gomod
- global: Update for go-yaml/v4 rc5
- incus/alias: Add alias add command examples with args and numbered args
- doc/incus-alias: Fix italic and ref modifers order to correctly apply both modifiers
- Makefile: Fix sphinx build script to prevent issues with terminal colors
- doc/incus-alias: Refactor doc to create new use-case section and provide how-to examples
- incus/debug: Fix NBD description
- client: Add reuse support to GetInstanceNBDConn
- incusd/instance/qmp: Add listen path support to NBDServerStart
- incusd/instance/qmp: Allow multiple NBD server connections
- incusd/instance/qemu: Update NBDServerStart calls
- incusd/instance: Add reuse support to ConnectNBDAllDisks
- incusd/storage: Add reuse support to GetInstanceAllDisksNBD
- incusd/instances: Add NBD reuse parameter
- incus/debug: Support multiple NBD client connections
- doc/rest-api: Refresh swagger YAML
- incus/server/storage/driver/ceph: Shrink images to minimal size after unpacking
- doc/incus-cli: Add CLI configuration file reference
- Makefile: add incremental spellcheck that skips the sphinx and cli setups
- Makefile: Improve target padding in make help
- incusd/linux: Add ListenUnix helper
- incusd/qemu: Handle long run paths for the migration socket
- incusd/qemu: Handle long run paths for the console socket
- incusd/qemu: Handle long run paths for the virtiofs socket
- incusd/images: Mention images available for other instance types
- incusd/device/nic_routed: Add neighbour proxy entries on the on-link interface
- incusd/network/ovn: Don't use missing router IP as DNS server
- doc: Update preseed description to match with reality
- incus/utils_copy: Fix wrong error returned
- doc: Ignore criu.org link checking
- api: network_bridge_bgp_instances
- incusd/network: Add BGP instance advertisement config keys
- incusd/device: Advertise individual instance addresses over BGP
- doc: Document BGP advertisement of instance addresses
- doc: Update config
- doc: Add NIC's to wordlist
- incusd: Use IsNoneOrEmpty helper
- incusd/device: Add configOrVolatile helper
- incus/remote: Add set-keepalive subcommand
- incus/keepalive: Fix comment typo
- doc/remote: Update docs with keepalive configuration via CLI commands
- incus/alias: Fix wrong example command typo
- api: core_https_allowed_websocket_origin
- shared/ws: Validate websocket origin against trusted origins
- incusd: Add core.https_allowed_websocket_origin server config key
- doc: Update config
- incus: close web UI probe response body
- ci: authenticate OpenFGA release lookups
- storage/zfs: factor out send receive helper
- storage/zfs: avoid raw sends for encrypted snapshot copies
- tests: cover encrypted ZFS snapshot copies
- incus/server/storage/driver/volume: Ensure cached image can grow to needed size and not be restricted by pool size config.
- tests: Add more tests for ConfigSizeFromSource
- doc: Update AI/LLM policy
- doc: Add GPG to wordlist
- client: Default to port 443 for raw connections
- incusd/util: Fix JWT validation
- api: Add storage_btrfs_compression extension
- incusd/storage/drivers: Add "btrfs.compression" volume option
- doc: Document the "btrfs.compression" volume option
- doc: Update config
- doc/rest-api: Refresh swagger YAML
- incus/server/storage/driver/ceph: Don't return error if image size is larger than cached image size
- build(deps): bump actions/checkout from 6 to 7
- incusd/instance/lxc: Restrict OCI configuration keys to OCI containers
- api: Add oci_network_config extension
- internal/instance: Simplify OCI key descriptions
- internal/instance: Add OCI DNS configuration keys
- incusd/device: Apply OCI static network configuration on NICs
- incusd/instance/lxc: Generate OCI container network files
- incusd/main_forknet: Handle static interfaces and DNS in forknet dhcp
- doc: Update config
- incusd/storage/btrfs: Fix daemon dir prefix check
- doc/cloud-init: Change YAML spec domain
- incus/server/device: Persist NIC host_name before creating interface
- incusd/images: Tolerate concurrent image record creation in a cluster
- incus/events: Forward info-level log events across the cluster
- incus/vm: Select OVMF.amdsev.fd firmware for SEV guests
- incus/vm: Skip vmcoreinfo device for SEV guests
- incus/console: Ignore not-exist error when removing temporary socket
- github: Block LLM/AI attribution in commit messages
- incusd: Skip br_netfilter proxy/forward handling on IncusOS
- incusd/storage/zfs: Batch snapshot GUID lookups
- incusd/endpoints: Fix infinite loop in network error log writer
- api: infiniband_sriov_guid
- incusd/ip: Add SetVfNodeGUID/SetVfPortGUID for SR-IOV
- incusd/device/infiniband: Add configurable port_guid/node_guid for SR-IOV
- doc: Update config
- doc: Add GUID to wordlist
- incusd/storage/lvm: Account for qcow2 overhead in volume sizing
- incusd/storage: Add patch to fix existing lvmcluster qcow2 volumes
- incusd: Skip NVRAM setup for unified AMD SEV firmware
- shared/cliconfig: Use platform-specific config directory
- incus: Use platform-specific cache directory
- incusd/device/disk: Reject pool property with special sources
- incusd/network/bridge: Clarify nat.order has no effect on nftables
- incusd/metadata: Update generated metadata
- shared/osinfo: Add osinfo package
- internal/server/instance/drivers: Use DetermineOS and osinfo.OSType for instance GuestOS value
- internal/server/instance/drivers: Update GuestOS usages
- internal/server/instance/drivers: Add OS version specific QEMU options
- incusd/storage/drivers: Apply nodatacow directly for btrfs.compression=none
- incusd/storage/drivers: Allow btrfs.compression as a pool-wide default
- test: Cover btrfs.compression nodatacow and pool-wide default
- incusd/network: Add GetNeighbourAddresses helper
- incusd/device: Add shared instance neighbour scan helper
- incusd/firewall: Allow wildcard listen address in proxy NAT
- incusd/device: Support dynamic addresses in proxy NAT mode
- doc: Update config
- doc: Document proxy NAT dynamic addresses
- tests: Add proxy NAT wildcard and dynamic address tests
- incusd: Rename neighbour to neighbor for US english
- incusd: Reject rootfs symlink for instances
- incusd/exec: Reject exec-output symlink
- incusd/instance: Enforce project restrictions on snapshot restore
- api: instance_selinux
- internal/server/sys: Extend SELinux context detection
- internal/server/selinux: Add SELinux package
- shared/validate: Add SELinux validation functions
- internal/instance: Add SELinux configuration keys
- internal/server/project: Add SELinux config permissions
- incusd: Rename forkstart to forklxc and forklimits to forkqemu
- incusd: Add SELinux exec context to forkqemu
- internal/server/instance/drivers: Add SELinux support
- doc: Update config
- Update gomod
- incusd/instance: Confine template access to instance root
- shared/validate: Reject compression algorithm arguments
- incusd/images: Validate fingerprint on direct download
- incusd/storage: Check source volume access on copy
- incusd/instances: Check source instance access on copy
- incus/default: Add incus default commands
- cmd/incusd:
isolatedonrestricted.containers.privilegeprevents settingsecurity.idmap.isolatedtofalse - doc: regenerate configurable options index
- api: regenerate
/1.0/metadata/configurationoptions - incusd/storage: Recreate missing snapshot config subvolume
- incusd/storage: Fix storage patches
- incus: Fix gofumpt
- cmd/incusd:
isolatedonrestricted.containers.privilegeprevents settingsecurity.privilegedtotrue - doc: regenerate configurable options index
- api: regenerate
/1.0/metadata/configurationoptions - doc: fix
config setdeprectation warning - incusd/firewall: Fix double Wait in nftParseRuleset
- incusd/device: Allow static CIDR address on unmanaged bridge
- shared/logger: Add WarnOnErrorExcept helper
- incus: Avoid double-close warning on volume/bucket/instance import
- incusd/device: Reset VM disk I/O limits on unset
- incusd/devices: Allow /32 and /128 for OCI addresses
- incusd/operations: Fix nil deref race in Cancel
- cmd/generate-database/db: Manually specify uuid package
- incus: Avoid double-close warning on export and file pull
- doc/incus-cli: reword docs for configuration file path
- incusd/device/disk: Use resolved project for Ceph ISO RBD names
- incusd: Use constant-time comparison for secrets
- incusd: Limit websocket control message size
- incusd/device: Use IsAPIName for device name validation
- incusd/storage/s3: Pin certificate for local S3 bucket transfers
- incusd/db/query: Use hex blob literal in database dumps
- incusd/storage: Honor btrfs.compression on instances from optimized images
- test: Cover btrfs.compression on instances from optimized images
- incusd/storage/s3: Add GetBucketVersioning
- incusd/instance/qemu: Handle missing kvm64
- client: Only pass device overrides to sources supporting them
- incusd/instance/qemu: Serialize CPU pinning data in the CPU topology
- incusd/instance/qemu: Re-compute CPU pins on stateful start
- incus: Fix remote path handling on Windows
- incusd/forksyscall: Fix mknod emulation for relative paths
- internal/instance: Mention cgroup2 limitations
- doc: Update config
- incusd/dev_incus: Fix race in ConnPidMapper access
- incusd/forksyscall: Check for path truncation in mknod emulation
- i18n: Update translation templates
- Makefile: Bump to Go 1.25.11
- Update gomod
Support and upgrade¶
The Incus 7.0 branch is supported until June 2031.
It's always strongly recommended to keep up and run the latest LTS bugfix release.
Downloads¶
- Main release tarball: incus-7.0.1.tar.xz
- GPG signature: incus-7.0.1.tar.xz.asc
Incus 7.2 has been released¶
Jun 26, 2026
The Incus team is pleased to announce the release of Incus 7.2!
It's another pretty busy release for us with a varied set of new features across the board as well as the usual set of performance improvements and bugfixes.
As usual, you can try Incus for yourself online: Linux Containers - Incus - Try it online
Security fixes¶
This release fixes 8 security issues:
- CVE-2026-48749 (critical) - Arbitrary file read+write on host via
rootfs/symlink in malicious image - CVE-2026-48750 (critical) - Arbitrary file write on host via
exec-outputsymlink in crafted image - CVE-2026-48751 (critical) - Restricted project bypass leading to arbitrary command execution
- CVE-2026-48752 (critical) - Arbitrary file read+write on host via
templates/symlink in malicious image - CVE-2026-48755 (critical) - Argument injection in backup compression algorithm leading to arbitrary file write and command execution
- CVE-2026-48769 (critical) - Arbitrary file write on client due to trusted image hash
- CVE-2026-55621 (high) - Project restriction bypass for custom volume copy across projects
- CVE-2026-55622 (high) - Project restriction bypass in instance copy across projects
New features¶
Per-instance SELinux integration¶
Incus now supports per-instance SELinux confinement for both containers and virtual machines, with automatic MCS (Multi-Category Security) level allocation to isolate instances from one another on the same host.
Four new instance configuration keys were introduced:
security.selinux.domain: Override the SELinux process domain.security.selinux.type: Override the SELinux file type used for the instance storage.security.selinux.level: Override the SELinux MCS level.security.selinux.label_rootfs: Control rootfs labeling behavior (auto,alwaysornever).
The computed context is persisted in the volatile.selinux.context key so that the allocated MCS range stays stable across restarts.
Documentation: https://linuxcontainers.org/incus/docs/main/reference/instance_options/#instance-options-security
New incus default CLI command¶
A new incus default command has been added to help control CLI default options.
stgraber@orilla:~$ incus default show
list_format: ""
console_type: ""
console_spice_command: ""
no_color: false
stgraber@orilla:~$ incus default set list_format=compact
stgraber@orilla:~$ incus storage list
NAME DRIVER DESCRIPTION USED BY STATE
default zfs 11 CREATED
stgraber@orilla:~$ incus default unset list_format
stgraber@orilla:~$ incus storage list
+---------+--------+-------------+---------+---------+
| NAME | DRIVER | DESCRIPTION | USED BY | STATE |
+---------+--------+-------------+---------+---------+
| default | zfs | | 11 | CREATED |
+---------+--------+-------------+---------+---------+
stgraber@orilla:~$
The documentation for those options has also been updated:
https://linuxcontainers.org/incus/docs/main/client-config/
Filtered server info by default¶
incus info now defaults to a filtered view of the server information.
This hides (replaces with SENSITIVE) all private keys, certificates and other tokens by default, requiring --show-sensitive to reveal them. It also makes the output shorter by hiding the full list of API extensions and instead just showing a count.
Keepalive timeout from the CLI¶
The incus remote command gained a set-keepalive subcommand to configure (or disable) the connection keepalive timeout.
stgraber@orilla:~$ incus remote set-keepalive my-remote 30
stgraber@orilla:~$ incus remote set-keepalive my-remote 0
The CLI keepalive feature is used to maintain a connection with the remote server, making subsequent interactions a fair bit faster. This is particularly useful on higher latency connections as well as in environments where a lot of incus commands are being run.
Better OS-specific handling of CLI configuration¶
The CLI now stores its configuration and cache data in the correct per-OS location.
Up until now, the CLI tool would always use ~/.config/incus/ and ~/.cache/incus/ regardless of operating system, leading to an unusual location on MacOS and Windows.
With Incus 7.2, MacOS now uses ~/Library/Application Support/incus/ whereas Windows uses %APPDATA%\incus. The CLI will automatically relocate its configuration on first use.
Standalone server certificate update¶
A new incus admin update-certificate command allows replacing the server certificate on standalone (non-clustered) systems.
This is the equivalent to incus cluster update-certificate but for standalone systems. It replaces directly modifying the files in /var/lib/incus/.
Static network configuration for OCI containers¶
OCI application containers can now have their network statically configured.
The NIC ipv4.address and ipv6.address keys accept a CIDR value to statically configure the address inside the container, and the new ipv4.gateway and ipv6.gateway keys set the default gateway. Setting either address to none prevents any configuration for that address family and stops the built-in DHCP client from running on it.
For DNS, the new oci.dns.nameservers, oci.dns.domain and oci.dns.search instance configuration keys set the initial content of the container's resolv.conf, which is then extended with anything received over DHCP.
All of those keys are only valid for OCI containers.
stgraber@orilla:~$ incus create docker:nginx my-nginx
Creating my-nginx
stgraber@orilla:~$ incus config set my-nginx oci.dns.nameservers=1.0.0.1,1.1.1.1 oci.dns.domain=stgraber.net
stgraber@orilla:~$ incus config device override my-nginx eth0 ipv4.address=10.10.10.2/24 ipv4.gateway=10.10.10.1
Device eth0 overridden for my-nginx
stgraber@orilla:~$ incus start my-nginx
stgraber@orilla:~$ incus list my-nginx
+----------+---------+-------------------+------------------------------------------------+-----------------+-----------+
| NAME | STATE | IPV4 | IPV6 | TYPE | SNAPSHOTS |
+----------+---------+-------------------+------------------------------------------------+-----------------+-----------+
| my-nginx | RUNNING | 10.10.10.2 (eth0) | fd42:8b9f:58e4:b6ac:1266:6aff:fecb:e324 (eth0) | CONTAINER (APP) | 0 |
+----------+---------+-------------------+------------------------------------------------+-----------------+-----------+
Per-instance BGP route advertisement¶
Managed bridge networks gained two new configuration keys, bgp.ipv4.instances and bgp.ipv6.instances.
When enabled, Incus advertises a /32 (IPv4) or /128 (IPv6) route over BGP for each running instance connected to the network, withdrawing the route again when the instance stops. This makes it easy to route directly to individual instances in a BGP environment.
As part of that, Incus has now grown the ability to learn instance IP addresses by monitoring ARP/NDP for a limited period of time on instance startup.
Documentation: https://linuxcontainers.org/incus/docs/main/reference/network_bridge/
Dynamic addresses in proxy NAT mode¶
Building on the new ability to detect instance IP addresses, proxy devices running in NAT mode can now use dynamic addresses and a wildcard listen address, removing the need to hardcode the instance address in the proxy device configuration.
stgraber@orilla:~$ incus launch docker:nginx my-nginx
Launching my-nginx
stgraber@orilla:~$ incus config device add my-nginx http-80 proxy listen=tcp:0.0.0.0:1234 connect=tcp:0.0.0.0:80 nat=true
Device http-80 added to my-nginx
stgraber@orilla:~$ incus list my-nginx
+----------+---------+--------------------+------------------------------------------------+-----------------+-----------+
| NAME | STATE | IPV4 | IPV6 | TYPE | SNAPSHOTS |
+----------+---------+--------------------+------------------------------------------------+-----------------+-----------+
| my-nginx | RUNNING | 10.80.1.162 (eth0) | fd42:8b9f:58e4:b6ac:1266:6aff:fe55:dbdb (eth0) | CONTAINER (APP) | 0 |
+----------+---------+--------------------+------------------------------------------------+-----------------+-----------+
stgraber@orilla:~$ ip -4 a show dev enp0s5
2: enp0s5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
altname enx001c42e6a809
inet 10.211.55.3/24 brd 10.211.55.255 scope global dynamic noprefixroute enp0s5
valid_lft 1031sec preferred_lft 1031sec
stgraber@orilla:~$ nc -v 10.211.55.3 1234
Connection to 10.211.55.3 1234 port [tcp/*] succeeded!
Expanded NBD access to VMs¶
A new GET /1.0/instances/{name}/nbd endpoint exposes all disks attached to a virtual machine over NBD, allowing concurrent access to every disk rather than a single volume at a time.
This is also wired up to a new incus debug nbd command which supports multiple concurrent client connections.
stgraber@orilla:~$ incus start v1
stgraber@orilla:~$ incus debug nbd v1
NBD listening on 127.0.0.1:36539
Those APIs are primarily meant for backup systems needing to easily and consistently access all of the drives on a VM. The NBD export also exposes the dirty bitmaps, allowing for easy incremental backups to be made.
Restoration can be done through the individual volume's NBD API when the instance is stopped.
Btrfs compression for storage volumes¶
A new btrfs.compression storage volume configuration key was added for the btrfs driver. It maps to the Btrfs compression property and takes the same values (for example zstd, lzo, zlib or none).
This can also be used to override compression settings from an existing btrfs filesystem, allowing for the Incus volumes to use a different compression algorithm as well as allowing turning off compression which then allows Incus to set the nocow flag on virtual machine disks.
Documentation: https://linuxcontainers.org/incus/docs/main/reference/storage_btrfs/
InfiniBand SR-IOV GUID configuration¶
infiniband devices using the sriov nictype now support two new configuration keys, node_guid and port_guid.
When set, the matching GUID of the allocated virtual function is changed to the provided value when the instance starts and restored to its original value when the instance stops.
Documentation: https://linuxcontainers.org/incus/docs/main/reference/devices_infiniband/
Websocket origin restriction¶
A new core.https_allowed_websocket_origin server configuration key was added.
It can be set to a comma-separated list of allowed origins or to the * wildcard, controlling which origins are accepted on websocket connections.
This is useful for cross-origin access as well as in some proxied environments.
Documentation: https://linuxcontainers.org/incus/docs/main/server_config/#server-options-core
Deferred function logging¶
A large, repository-wide change in this release adds logging for deferred cleanup calls.
As a result, users may notice a number of new WARNING level log entries (for example around closing files, sockets or response bodies). This is expected and does not indicate a regression; these errors were always occurring but were simply discarded before.
If you notice spurious/repetitive such messages, please let us know so they can be investigated or silenced.
Complete changelog¶
Here is a complete list of all changes in this release:
Full commit list
- Translated using Weblate (Greek)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Russian)
- Translated using Weblate (Russian)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (Italian)
- Translated using Weblate (Italian)
- Translated using Weblate (Tamil)
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Georgian)
- Translated using Weblate (Georgian)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Dutch)
- Translated using Weblate (Dutch)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese)
- doc/authorization: Fix markdownlint
- shared/tls: Add support for Lego v5
- incusd/instance/lxc: Fix environment quoting
- incusd/storage/zfs: Refuse refresh only when snapshots have no common base
- shared/tls: Detect Lego version/behavior based on help
- doc/cloud-init: Clarify VM behavior
- github: Remove pre-installed java
- incus: Make unset commands accept several keys
- i18n: Update translation templates
- server/network: fix comment alignment
- server/network: fix scope of node specific network configs
- doc: update generated metadata
- server/metadata: update generated metadata
- internal/server/instance/drivers: Add migration-compatible hv flags with migration.stateful=true
- cmd/generate-database/db: Add joinas db tag
- cmd/generate-database/lex: Fix pluralizations ending in y
- Translated using Weblate (Portuguese)
- incusd/storage: Fix qcow2 custom volume backups
- incusd/instance/qemu: Remove stale migrate.sock before qcow2 export
- incusd/response: Abort piped exports that fail mid-stream
- incusd/migration: Detect target migration errors
- incusd/instance/qemu: Tweak migration fallback for VMs
- incusd: Reject migration onto existing instance of different type
- incusd/migrate: Bump migration handshake timeouts to 2 minutes
- Remove lxd-to-incus
- shared/api: Remove legacy logic
- incusd/cluster: Remove legacy logic
- Update gomod
- incusd: Use partial device validation when recovering instances
- incusd/network/ovn: Don't require an active chassis when updating tunnels
- incusd/network: Clean up stale OVS ports on startup
- incusd/cluster: Honor cluster group during evacuation
- incusd/cluster: Honor restricted cluster groups during evacuation
- incusd/cluster: Improve evacuation and restoration progress reporting
- global: Clean latest gofumpt
- incusd: Replace gorilla/mux with http.ServeMux
- Update go.mod
- api: instance_nbd
- client: Add GetInstanceNBDConn
- incusd/instances: Add NBD API
- incusd/storage: Implement all-disks NBD function
- incusd/instance/qmp: Add block snapshot transaction and node size helpers
- incusd/instance: Implement ConnectNBDAllDisks
- incusd/instance/qemu: Use empty NBD export name for single-disk exports
- incusd/instance/qemu: Report disk usage on stopped instances
- incus/debug: Add NBD command
- i18n: Update translation templates
- doc/rest-api: Refresh swagger YAML
- incusd/instance/drivers/qmp: Add locking around event handlers
- incusd/instance/qemu: Fully cleanup the old monitor
- incusd/storage/drivers: Handle sgdisk return codes
- incusd/auth/oidc: Refactor cookie setting logic
- shared/api: Add Server.Filtered()
- incus/info: Add --show-sensitive
- i18n: Update translation templates
- incusd/auth/oidc: Set expiration on authentication cookies
- incusd/auth/oidc: Clear cookies on terminal refresh failure
- shared/logger: Add WarnOnError helper
- incusd/instancewriter: Log deferred errors with WarnOnError
- incus: Log deferred errors with WarnOnError
- incus-agent: Log deferred errors with WarnOnError
- internal/incusos: Log deferred errors with WarnOnError
- internal/linux: Log deferred errors with WarnOnError
- incusd/migration: Log deferred errors with WarnOnError
- internal/netutils: Log deferred errors with WarnOnError
- internal/rsync: Log deferred errors with WarnOnError
- incusd/backup: Log deferred errors with WarnOnError
- incusd/cgroup: Log deferred errors with WarnOnError
- incusd/cluster: Log deferred errors with WarnOnError
- incusd/device: Log deferred errors with WarnOnError
- incusd/device/pci: Log deferred errors with WarnOnError
- incusd/dnsmasq: Log deferred errors with WarnOnError
- incusd/firewall/drivers: Log deferred errors with WarnOnError
- incusd/instance/drivers: Log deferred errors with WarnOnError
- incusd/network: Log deferred errors with WarnOnError
- incusd/network/acl: Log deferred errors with WarnOnError
- incusd/response: Log deferred errors with WarnOnError
- incusd/seccomp: Log deferred errors with WarnOnError
- incusd/storage: Log deferred errors with WarnOnError
- incusd/storage/quota: Log deferred errors with WarnOnError
- incusd/storage/s3: Log deferred errors with WarnOnError
- incusd/storage/s3/local: Log deferred errors with WarnOnError
- incusd/util: Log deferred errors with WarnOnError
- internal/util: Log deferred errors with WarnOnError
- incusd: Log deferred errors with WarnOnError
- incusd/storage/drivers: Log deferred errors with WarnOnError
- client: Log deferred errors with WarnOnError
- incusd/db: Log deferred errors with WarnOnError
- incusd/db/cluster: Log deferred errors with WarnOnError
- incusd/db/node: Log deferred errors with WarnOnError
- incusd/db/query: Log deferred errors with WarnOnError
- incusd/db/schema: Log deferred errors with WarnOnError
- shared/resources: Log deferred errors with WarnOnError
- shared/resources/usbid: Log deferred errors with WarnOnError
- shared/idmap: Log deferred errors with WarnOnError
- shared/cliconfig: Log deferred errors with WarnOnError
- shared/archive: Log deferred errors with WarnOnError
- shared/subprocess: Log deferred errors with WarnOnError
- shared/simplestreams: Log deferred errors with WarnOnError
- shared/util: Log deferred errors with WarnOnError
- incus-migrate: Log deferred errors with WarnOnError
- incus-benchmark: Log deferred errors with WarnOnError
- incus-user: Log deferred errors with WarnOnError
- incus-simplestreams: Log deferred errors with WarnOnError
- lxc-to-incus: Log deferred errors with WarnOnError
- generate-database/file: Log deferred errors with WarnOnError
- incusd: Rename forknet logger parameter to avoid shadowing
- incusd: Log deferred errors in main_forknet with WarnOnError
- github: Update DCO check
- Translated using Weblate (Italian)
- Translated using Weblate (Italian)
- Translated using Weblate (Georgian)
- Translated using Weblate (Georgian)
- Translated using Weblate (Greek)
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (Tamil)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (Dutch)
- Translated using Weblate (Dutch)
- Translated using Weblate (Russian)
- Translated using Weblate (Russian)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Portuguese)
- incusd/api_internal: Add server-certificate endpoint
- incus/admin: Add update-certificate command
- i18n: Update translation templates
- incusd/device/disk: Use virtiofsd --posix-acl=auto if supported
- Translated using Weblate (Russian)
- Translated using Weblate (Swedish)
- Translated using Weblate (Portuguese)
- incus/client: Fix panic when cancelling
- incus/remote: Move OIDC and cookie jar on rename
- incus/cluster: Document the actions
- incusd/console: Read the container console without resetting it
- incusd/linux: Add DialUnix helper
- incusd/qemu: Handle long run paths for the QMP socket
- incusd/qemu: Handle long run paths for the SPICE socket
- i18n: Update translation templates
- shared/cliconfig: Remove duplicate file closing
- Makefile: Remove pinned incus-os
- Update gomod
- global: Update for go-yaml/v4 rc5
- Translated using Weblate (Portuguese)
- Translated using Weblate (Swedish)
- Translated using Weblate (Russian)
- incus/alias: Add alias add command examples with args and numbered args
- doc/incus-alias: Fix italic and ref modifers order to correctly apply both modifiers
- Makefile: Fix sphinx build script to prevent issues with terminal colors
- doc/incus-alias: Refactor doc to create new use-case section and provide how-to examples
- i18n: Update translation templates
- incus/debug: Fix NBD description
- i18n: Update translation templates
- client: Add reuse support to GetInstanceNBDConn
- incusd/instance/qmp: Add listen path support to NBDServerStart
- incusd/instance/qmp: Allow multiple NBD server connections
- incusd/instance/qemu: Update NBDServerStart calls
- incusd/instance: Add reuse support to ConnectNBDAllDisks
- incusd/storage: Add reuse support to GetInstanceAllDisksNBD
- incusd/instances: Add NBD reuse parameter
- incus/debug: Support multiple NBD client connections
- i18n: Update translation templates
- doc/rest-api: Refresh swagger YAML
- incus/server/storage/driver/ceph: Shrink images to minimal size after unpacking
- doc/incus-cli: Add CLI configuration file reference
- Makefile: add incremental spellcheck that skips the sphinx and cli setups
- Makefile: Improve target padding in make help
- incusd/linux: Add ListenUnix helper
- incusd/qemu: Handle long run paths for the migration socket
- incusd/qemu: Handle long run paths for the console socket
- incusd/qemu: Handle long run paths for the virtiofs socket
- incusd/images: Mention images available for other instance types
- incusd/device/nic_routed: Add neighbour proxy entries on the on-link interface
- incusd/network/ovn: Don't use missing router IP as DNS server
- doc: Update preseed description to match with reality
- incus/utils_copy: Fix wrong error returned
- doc: Ignore criu.org link checking
- api: network_bridge_bgp_instances
- incusd/network: Add BGP instance advertisement config keys
- incusd/device: Advertise individual instance addresses over BGP
- doc: Document BGP advertisement of instance addresses
- doc: Update config
- doc: Add NIC's to wordlist
- incusd: Use IsNoneOrEmpty helper
- incusd/device: Add configOrVolatile helper
- incus/remote: Add set-keepalive subcommand
- incus/keepalive: Fix comment typo
- doc/remote: Update docs with keepalive configuration via CLI commands
- incus/alias: Fix wrong example command typo
- i18n: Update translation templates
- api: core_https_allowed_websocket_origin
- shared/ws: Validate websocket origin against trusted origins
- incusd: Add core.https_allowed_websocket_origin server config key
- doc: Update config
- incus: close web UI probe response body
- ci: authenticate OpenFGA release lookups
- storage/zfs: factor out send receive helper
- Translated using Weblate (Greek)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (German)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Georgian)
- Translated using Weblate (Georgian)
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (Spanish)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (French)
- Translated using Weblate (Tamil)
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Chinese (Simplified Han script))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Portuguese (Brazil))
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Norwegian Bokmål)
- Translated using Weblate (Dutch)
- Translated using Weblate (Dutch)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (Swedish)
- Translated using Weblate (Italian)
- Translated using Weblate (Italian)
- Translated using Weblate (Russian)
- Translated using Weblate (Russian)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Japanese)
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Chinese (Traditional Han script))
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- Translated using Weblate (Indonesian)
- storage/zfs: avoid raw sends for encrypted snapshot copies
- tests: cover encrypted ZFS snapshot copies
- incus/server/storage/driver/volume: Ensure cached image can grow to needed size and not be restricted by pool size config.
- tests: Add more tests for ConfigSizeFromSource
- doc: Update AI/LLM policy
- doc: Add GPG to wordlist
- Translated using Weblate (Swedish)
- Translated using Weblate (Portuguese)
- Translated using Weblate (Russian)
- client: Default to port 443 for raw connections
- incusd/util: Fix JWT validation
- api: Add storage_btrfs_compression extension
- incusd/storage/drivers: Add "btrfs.compression" volume option
- doc: Document the "btrfs.compression" volume option
- doc: Update config
- doc/rest-api: Refresh swagger YAML
- incus/server/storage/driver/ceph: Don't return error if image size is larger than cached image size
- build(deps): bump actions/checkout from 6 to 7
- incusd/instance/lxc: Restrict OCI configuration keys to OCI containers
- api: Add oci_network_config extension
- internal/instance: Simplify OCI key descriptions
- internal/instance: Add OCI DNS configuration keys
- incusd/device: Apply OCI static network configuration on NICs
- incusd/instance/lxc: Generate OCI container network files
- incusd/main_forknet: Handle static interfaces and DNS in forknet dhcp
- doc: Update config
- incusd/storage/btrfs: Fix daemon dir prefix check
- doc/cloud-init: Change YAML spec domain
- incus/server/device: Persist NIC host_name before creating interface
- incusd/images: Tolerate concurrent image record creation in a cluster
- incus/events: Forward info-level log events across the cluster
- incus/vm: Select OVMF.amdsev.fd firmware for SEV guests
- incus/vm: Skip vmcoreinfo device for SEV guests
- incus/console: Ignore not-exist error when removing temporary socket
- github: Block LLM/AI attribution in commit messages
- incusd: Skip br_netfilter proxy/forward handling on IncusOS
- incusd/storage/zfs: Batch snapshot GUID lookups
- incusd/endpoints: Fix infinite loop in network error log writer
- api: infiniband_sriov_guid
- incusd/ip: Add SetVfNodeGUID/SetVfPortGUID for SR-IOV
- incusd/device/infiniband: Add configurable port_guid/node_guid for SR-IOV
- doc: Update config
- doc: Add GUID to wordlist
- incusd/storage/lvm: Account for qcow2 overhead in volume sizing
- incusd/storage: Add patch to fix existing lvmcluster qcow2 volumes
- incusd: Skip NVRAM setup for unified AMD SEV firmware
- shared/cliconfig: Use platform-specific config directory
- incus: Use platform-specific cache directory
- incusd/device/disk: Reject pool property with special sources
- incusd/network/bridge: Clarify nat.order has no effect on nftables
- incusd/metadata: Update generated metadata
- shared/osinfo: Add osinfo package
- internal/server/instance/drivers: Use DetermineOS and osinfo.OSType for instance GuestOS value
- internal/server/instance/drivers: Update GuestOS usages
- internal/server/instance/drivers: Add OS version specific QEMU options
- incusd/storage/drivers: Apply nodatacow directly for btrfs.compression=none
- incusd/storage/drivers: Allow btrfs.compression as a pool-wide default
- test: Cover btrfs.compression nodatacow and pool-wide default
- incusd/network: Add GetNeighbourAddresses helper
- incusd/device: Add shared instance neighbour scan helper
- incusd/firewall: Allow wildcard listen address in proxy NAT
- incusd/device: Support dynamic addresses in proxy NAT mode
- doc: Update config
- doc: Document proxy NAT dynamic addresses
- tests: Add proxy NAT wildcard and dynamic address tests
- incusd: Rename neighbour to neighbor for US english
- incusd: Reject rootfs symlink for instances
- incusd/exec: Reject exec-output symlink
- incusd/instance: Enforce project restrictions on snapshot restore
- api: instance_selinux
- internal/server/sys: Extend SELinux context detection
- internal/server/selinux: Add SELinux package
- shared/validate: Add SELinux validation functions
- internal/instance: Add SELinux configuration keys
- internal/server/project: Add SELinux config permissions
- incusd: Rename forkstart to forklxc and forklimits to forkqemu
- incusd: Add SELinux exec context to forkqemu
- internal/server/instance/drivers: Add SELinux support
- doc: Update config
- Update gomod
- incusd/instance: Confine template access to instance root
- shared/validate: Reject compression algorithm arguments
- incusd/images: Validate fingerprint on direct download
- incusd/storage: Check source volume access on copy
- incusd/instances: Check source instance access on copy
- incus/default: Add incus default commands
- i18n: Update translation templates
- cmd/incusd:
isolatedonrestricted.containers.privilegeprevents settingsecurity.idmap.isolatedtofalse - doc: regenerate configurable options index
- api: regenerate
/1.0/metadata/configurationoptions - incusd/storage: Recreate missing snapshot config subvolume
- Translated using Weblate (Portuguese)
- incusd/storage: Fix storage patches
- incus: Fix gofumpt
- i18n: Update translation templates
Documentation¶
The Incus documentation can be found at:
https://linuxcontainers.org/incus/docs/main/
Packages¶
There are no official Incus packages as Incus upstream only releases regular release tarballs. Below are some available options to get Incus up and running.
Installing the Incus server on Linux¶
Incus is available for most common Linux distributions. You'll find detailed installation instructions in our documentation.
https://linuxcontainers.org/incus/docs/main/installing/
Homebrew package for the Incus client¶
The client tool is available through HomeBrew for both Linux and MacOS.
https://formulae.brew.sh/formula/incus
Chocolatey package for the Incus client¶
The client tool is available through Chocolatey for Windows users.
https://community.chocolatey.org/packages/incus/7.2.0
Winget package for the Incus client¶
The client tool is also available through Winget for Windows users.
https://winstall.app/apps/LinuxContainers.Incus
Support¶
Monthly feature releases are only supported up until the next release comes out. Users needing a longer support length and less frequent changes should consider using Incus 7.0 LTS instead.
Community support is provided at: https://discuss.linuxcontainers.org
Commercial support is available through: https://zabbly.com/incus
Bugs can be reported at: https://github.com/lxc/incus/issues
Older news¶
- May 30, 2026
- May 5, 2026
- Mar 27, 2026
- Mar 16, 2026
- Feb 27, 2026
- Jan 23, 2026
- Dec 19, 2025
- Nov 29, 2025
- Oct 31, 2025
- Sep 26, 2025
- Aug 29, 2025
- Aug 15, 2025
- Aug 1, 2025
- Jun 28, 2025
- May 30, 2025
- Apr 25, 2025
- Apr 4, 2025
- Mar 28, 2025
- Feb 28, 2025
- Jan 24, 2025
- Dec 19, 2024
- Dec 13, 2024
- Nov 15, 2024
- Oct 3, 2024
- Sep 17, 2024
- Sep 6, 2024
- Aug 9, 2024
- Jul 12, 2024
- Jun 28, 2024
- May 31, 2024
- May 7, 2024
- Apr 4, 2024
- Mar 26, 2024
- Feb 23, 2024
- Jan 29, 2024
- Jan 26, 2024
- Dec 21, 2023
- Nov 27, 2023
- Oct 28, 2023
- Oct 7, 2023



