ニュースのトップページに戻る

Incus 6.23 リリースのお知らせ

2026/03/27

はじめに

Incus チームは、Incus 6.23 のリリースのアナウンスができてうれしいです!

このリリースは、4 月 30 日にリリース予定の Incus 7.0 LTS に前にリリースする、最後の 6.x リリースです。

今回は非常に内容が充実したリリースです。セキュリティ問題(7asecurity による継続的な分析のおかげです)、バグ修正、パフォーマンスの改良に加えて、VM 向け OS サポートの拡張から、依存ボリュームによる、より柔軟なインスタンスストレージの追加まで、非常に優れた機能が多数含まれています。

image|690x357

いつものように、オンラインでご自身で試せます: https://linuxcontainers.org/incus/try-it/

Enjoy!

新たなメンテナー

今回の Incus リリースに伴い、Incus プロジェクトに 2 人の新たなメンテナーが加わりました:

  • Benjamin Somers
  • Piotr Resztak

彼らは二人とも Incus に長年貢献しており、Incus のコードベース全体にわたる様々な機能開発やバグ修正に携わってきたため、コードレビューやプロジェクトの全体的な方向性決定、メンテナンスを支援するのに十分な資格を持っています。

彼らはこれまでのメンテナーに合流します:

  • Aleksa Sarai
  • Christian Brauner
  • Free Ekanayaka
  • Serge Hallyn
  • Stéphane Graber
  • Tycho Andersen

脆弱性の修正

このリリースでは、次の 6 つの脆弱性を修正しました:

CVE-2026-33542 を除くすべての問題は、7asecurity による Incus の継続的なレビューの一環として発見されました。

LTS ブランチへのバックポートは stable-6.0 ブランチで利用可能であり、Incus LTS のパッケージをリリースしているディストリビューションには通知済みで、更新されたパッケージが公開されているか、まもなく公開される予定です。

新機能

依存ストレージボリューム

Incus は「依存」(dependent)ボリュームをサポートするようになりました。これは、インスタンスにアタッチされた通常のカスタムボリュームと実質同じですが、インスタンスに完全にひもづいているところが異なります。

これは、インスタンスを削除すると同時にボリュームも削除され、インスタンスのスナップショットを作成するとボリューム上に一致するスナップショットが作成され、インスタンスのバックアップには依存ボリュームが含まれ、リストア時は依存ボリュームもリストアされ、インスタンスを移行すると依存ボリュームも一緒に移行されることを意味します。

stgraber@castiana:~$ incus launch images:debian/13 c1
Launching c1
stgraber@castiana:~$ incus storage volume create default c1-extra dependent=true
Storage volume c1-extra created
stgraber@castiana:~$ incus config device add c1 extra disk pool=default source=c1-extra dependent=true path=/extra
Device extra added to c1
stgraber@castiana:~$ incus storage volume snapshot create default c1-extra test
Error: Direct snapshots are not allowed for dependent volumes
stgraber@castiana:~$ incus snapshot create c1 foo
stgraber@castiana:~$ incus storage volume snapshot list default c1-extra
+------+----------------------+------------+
| NAME |       TAKEN AT       | EXPIRES AT |
+------+----------------------+------------+
| foo  | 2026/03/27 18:54 EDT |            |
+------+----------------------+------------+
stgraber@castiana:~$ incus snapshot delete c1 foo
stgraber@castiana:~$ incus storage volume snapshot list default c1-extra
+------+----------+------------+
| NAME | TAKEN AT | EXPIRES AT |
+------+----------+------------+

FreeBSD VM サポート

Incus は FreeBSD 上でエージェントを実行することをサポートするようになりました。
MacOS サポートと同様に、これは Incus とエージェント間でネットワーク接続があることに依存しており、VM は Incus が管理するネットワーク上で実行されている必要があります。

イメージサーバーで、FreeBSD 14 と 15 のデイリービルドが利用できます。

stgraber@castiana:~$ incus launch images:freebsd/15.0 bsd -c security.secureboot=false --vm
Launching bsd
stgraber@castiana:~$ incus wait bsd agent && incus exec bsd sh
# freebsd-version·
15.0-RELEASE

注意: すべてのパッケージ作成者が FreeBSD エージェント用の必要なビルドレシピを含めるまでにしばらく時間がかかる場合があります。その結果、一部の Incus 6.23 システムでは、初期状態ではシェルにアクセスできないことがあります。VM をシングルユーザーモードで再起動すると、root パスワードを設定して、コンソール経由で使用できるようになります。

CLI パーサーの改良

incus コマンドのメインコマンドラインパーサーにいくつかの改良が加えられました。引数に誤りや不足があることを示すエラーメッセージが大幅に改良され、ヘルプメッセージの視認性を向上させるためにカラー出力されるようになりました。

image|690x192

ゲートウェイの DHCP アナウンスの無効化をサポート

ipv4.dhcp.gateway に、特別な値として none を設定できるようになりました。これにより、DHCP サーバーから IP アドレスのみを設定し、ルーティング情報をプッシュしないよう設定できます。

これにより、インスタンスの一部が複数のネットワークに接続されており、それらの中には外部ネットワークへのトラフィックをルーティングすることを目的としていないような場合に、特に役立ちます。

OVN ネットワークでの ipv4.dhcp.gateway のサポート

前述の機能に関連し、OVN でも、特別な値である none を含め、ipv4.dhcp.gateway もサポートするようになりました。

これにより、OVN ネットワーク上の別のインスタンスやマシンを仮想ルーターの代わりにゲートウェイとして機能させたり、OVN DHCP サービスがデフォルトルートを一切広告しないように設定したりできるようになります。

OVN NIC での io.bus サポート

OVN NIC で io.bus が使えるようになりました。

これにより、VM に USB ネットワークインターフェースを追加し、OVN ネットワークに接続できるようになりました。

VM エージェントのライフサイクルイベント

今回のリリースで、新たなライフサイクルイベントが 2 つ追加されました:

  • instance-agent-started
  • instance-agent-stopped

これらのイベントについては説明不要でしょう。イベントは、Incus VM に限定されており、Incus がシリアル接続経由でエージェント通知を受信するとすぐに発生します。

incus file pullincus storage volume file pull の再実装

この両方のコマンドのファイル取得ロジックは、一般的な cp コマンドの動作に合わせるように更新されました。

これは、特にシンボリックリンクの扱いに関係するもので、次のようなオプションをサポートするようになりました:

  • -L (ソースパス内のシンボリックリンクを常にたどる)
  • -H (コマンドラインに指定したソースパスのみシンボリックリンクをたどる)
  • -P (ソースパス内のシンボリックリンクはたどらない)

プロジェクト関連のメトリクス

プロジェクト全体の統計情報を提供するために、いくつか新しいメトリクスが追加されました。

stgraber@castiana:~/Code/lxc/incus (git:lxc/main)$ incus query /1.0/metrics | grep _project_
# HELP incus_project_resources_total Current resource count in a project.
# TYPE incus_project_resources_total gauge
incus_project_resources_total{project="default",resource="containers"} 0
incus_project_resources_total{project="default",resource="virtual-machines"} 3
incus_project_resources_total{project="default",resource="images"} 17
incus_project_resources_total{project="default",resource="profiles"} 1
incus_project_resources_total{project="default",resource="networks"} 3
incus_project_resources_total{project="default",resource="storage-volumes"} 6
incus_project_resources_total{project="demo",resource="containers"} 0
incus_project_resources_total{project="demo",resource="virtual-machines"} 0
incus_project_resources_total{project="demo",resource="images"} 0
incus_project_resources_total{project="demo",resource="profiles"} 1
incus_project_resources_total{project="demo",resource="networks"} 0
incus_project_resources_total{project="demo",resource="storage-volumes"} 0
incus_project_resources_total{project="user-1001",resource="containers"} 0
incus_project_resources_total{project="user-1001",resource="virtual-machines"} 0
incus_project_resources_total{project="user-1001",resource="images"} 2
incus_project_resources_total{project="user-1001",resource="profiles"} 1
incus_project_resources_total{project="user-1001",resource="networks"} 0
incus_project_resources_total{project="user-1001",resource="storage-volumes"} 0

インスタンスの低レベル修復 API

/1.0/instances/NAME/debug/repair に新しい API 専用のエンドポイントを導入しました。
これにより、Incus は低レベルの修復アクションをいくつか公開できるようになりました。これは、特にユーザーがインスタンスのディスク上の構成やストレージを直接確認できないような制限された環境(IncusOS はその良い例です)で実行する必要があるかもしれない修復アクションです。

現在サポートされているアクションは rebuild-config-volume 1 つだけです。クラスター化 LVM ドライバーで QCOW2 ブロックストレージを使用しているインスタンスで利用できます。名前が示すとおり、ホストの電源喪失から生じる btrfs の破損問題から構成ボリュームを完全にリビルドできます。

すべての変更点

このリリースのすべての変更のリストは次の通りです(翻訳なし):

すべてのChangeLogを見る
  • incusd/instance: Allow custom volume snapshot create/delete when attached to running instance
  • incusd/server: Allow custom volume snapshot create/delete when attached to running instance
  • shared/cliconfig: Add lock to prevent panic
  • incusd/endpoints/starttls: Report correct ServerName
  • cmd/generate-database: fix linter complaints - #2636
  • build(deps): bump actions/upload-artifact from 6 to 7
  • incusd/network/bridge: Support disabling DHCPv4 router announcement
  • incusd/network/ovn: Implement ipv4.dhcp.gateway
  • doc: Update config
  • internal/server/firewall: fix linter complaints - #2636
  • internal/server/sys: fix linter complaints - #2636
  • internal/server/project: fix linter complaints - #2636
  • internal/server/util: fix linter complaints - #2636
  • incusd/instance/lxc: Add /usr/bin/init to OCI PID1 list
  • internal/server/seccomp: fix linter complaints - #2636
  • internal/server/migration: fix linter complaints - #2636
  • internal/server/task: fix linter complaints - #2636
  • incus/usage: Add a way to show the user a parsing rule different from the one in use
  • incus/usage: Small tweaks before adding parsers
  • api: instances_debug_repair
  • shared/api: Add InstanceDebugRepairPost
  • doc/rest-api: Refresh swagger YAML
  • incusd/storage: Implement ActivateTask
  • incusd/instance/debug: Implement instance repair API
  • incus/usage: Add parsers
  • incus: Add --explain global flag
  • incus/usage: Add legacy support functions
  • incus/action: Switch to new parser
  • incus/admin_init: Switch to new parser
  • incus/admin_recover: Switch to new parser
  • incus/admin_shutdown: Switch to new parser
  • incus/admin_sql: Switch to new parser
  • incus/admin_waitready: Switch to new parser
  • incus/alias: Switch to new parser
  • incus/cluster: Switch to new parser
  • incus/cluster_group: Switch to new parser
  • incus/cluster_role: Switch to new parser
  • incus/config: Switch to new parser
  • incus/config_device: Switch to new parser
  • incus/config_metadata: Switch to new parser
  • incus/config_template: Switch to new parser
  • incus/config_trust: Switch to new parser
  • incus/console: Switch to new parser
  • incus/delete: Switch to new parser
  • incus: Switch copy and move to new parser
  • incus: Switch create and launch to new parser
  • incus/debug: Switch to new parser
  • incus/exec: Switch to new parser
  • incus/export: Switch to new parser
  • incus/file: Switch to new parser
  • incus/image: Switch to new parser
  • incus/image_alias: Switch to new parser
  • incus/import: Switch to new parser
  • incus/info: Switch to new parser
  • incus/list: Switch to new parser
  • incus/manpage: Switch to new parser
  • incus/monitor: Switch to new parser
  • incus/network: Switch to new parser
  • incus/network_acl: Switch to new parser
  • incus/network_address_set: Switch to new parser
  • incus/network_allocations: Switch to new parser
  • incus/network_forward: Switch to new parser
  • incus/network_integration: Switch to new parser
  • incus/network_load_balancer: Switch to new parser
  • incus/network_peer: Switch to new parser
  • incus/network_zone: Switch to new parser
  • incus/operation: Switch to new parser
  • incus/profile: Switch to new parser
  • incus/project: Switch to new parser
  • incus/publish: Switch to new parser
  • incus/query: Switch to new parser
  • incus/rebuild: Switch to new parser
  • incus/remote: Switch to new parser
  • incus/rename: Switch to new parser
  • incus/snapshot: Switch to new parser
  • incus/storage: Switch to new parser
  • incus/storage_bucket: Switch to new parser
  • incus/storage_volume: Switch to new parser
  • incus/top: Switch to new parser
  • incus/version: Switch to new parser
  • incus/wait: Switch to new parser
  • incus/warning: Switch to new parser
  • incus/webui: Switch to new parser
  • test: Fix incus config set tests
  • test: Fix incus profile assign tests
  • test: Fix incus storage volume attach tests
  • test: Fix incus storage volume snapshot show tests
  • test: ISO import now allows setting no volume name
  • go.mod: Make runewidth a direct dependency
  • Makefile: Properly set POT encoding
  • i18n: Update translation templates
  • 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 (Norwegian Bokmål)
  • Translated using Weblate (Norwegian Bokmål)
  • 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 (Italian)
  • Translated using Weblate (Italian)
  • Translated using Weblate (Portuguese)
  • Translated using Weblate (Portuguese)
  • Translated using Weblate (Dutch)
  • Translated using Weblate (Dutch)
  • Translated using Weblate (Japanese)
  • Translated using Weblate (Japanese)
  • Translated using Weblate (Japanese)
  • Translated using Weblate (Indonesian)
  • Translated using Weblate (Indonesian)
  • Translated using Weblate (Spanish)
  • Translated using Weblate (Spanish)
  • 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 (Tamil)
  • Translated using Weblate (Swedish)
  • Translated using Weblate (Swedish)
  • incusd/operations: Fix missing Unlock
  • doc: Fix typo
  • incusd: Fix typo
  • Translated using Weblate (Portuguese)
  • incusd/metrics: Increase node-exporter timeout to 5s
  • doc: Add preselects to wordlist
  • Translated using Weblate (Swedish)
  • incusd/instance_logs: Prevent bad values for exec-output
  • incus-migrate: Restrict OVA unpack path
  • incus/network_allocation: Fix project handling
  • incusd/network_allocations: Use canAccessNetwork
  • incusd/instance/qemu: Relax SEV check
  • incus: Fix import shadowing
  • incusd/storage_volumes: Use switch statement
  • incusd/network/common: Use FPrintf instead of WriteString
  • incusd/device/nic_physical: Drop support for connected key
  • incusd/device/nic_ovn: Add io.bus key for OVN NICs
  • doc: Update config
  • api: network_io_bus_ovn
  • shared/api: add new instance-agent events
  • internal/server: fire instance-agent events when agent status changes
  • doc: add instance-agent entries to lifecycle events
  • incus/usage: Defer remote connection
  • incusd/backup: Make extra sure backup.yaml is consistent on disk
  • incus-agent/darwin: Factor BSD-like bits out
  • incus-agent/freebsd: Add FreeBSD agent
  • incusd/instance/agent-loader: Add FreeBSD files
  • incusd/instance/qemu: Support FreeBSD
  • doc/instance/create: Add details for FreeBSD
  • doc/wordlist: Update wordlist
  • incusd/instance/lxc: Stop any forkfile instances prior to migration
  • incusd/storage/zfs: Freeze ZFS instances when using block_mode
  • incusd/storage/zfs: Don't create temporary snapshot for inactive volumes
  • incusd/storage/zfs: Don't unmap a mounted snapshot
  • incus/storage/volume: Fix image deletion
  • incusd/storage: Don't allow loop pools on IncusOS
  • Translated using Weblate (Swedish)
  • cmd/incus: fix log in sftpRecursiveMkdir
  • Translated using Weblate (Swedish)
  • Translated using Weblate (Swedish)
  • devcontainer: update Go version and pipx install command
  • Translated using Weblate (Swedish)
  • incus/cluster: Fix default column layout in help text
  • i18n: Update translation templates
  • incus: Fix indent on --sub-commands
  • incusd/storage: Add readonly 'dependent' volume config key
  • incusd/device: Add 'dependent' config key to disk device
  • incusd: Prevent direct snapshot creation and deletion on dependent volumes
  • incusd/storage: Create and delete dependent volume snapshots with instance snapshots
  • incusd/storage: Support restoring an instance with dependent volumes from a snapshot
  • incusd/storage/drivers: Add ability to set archive files path when exporting/importing volumes
  • incusd/backup: Add DefaultBackupPrefix constant
  • incusd/backup/config: Add DependentVolumes field to Config struct
  • incusd: Pass path info when exporting/importing custom volume
  • incusd/storage: Add support for exporting/importing dependent volumes
  • incusd/storage/drivers: Create QCOW2 config volume snapshot during unpack if needed
  • incusd/export: Add support for root-only flag
  • incusd: Pass rootOnly argument where needed
  • shared/api: Add RootOnly to InstanceBackupsPost
  • incusd/backup: Add support for dependent volumes to backup
  • incusd/db/cluster: Add root_only column to instances_backups
  • incusd/db: Read and write 'root_only' field in table operations
  • incusd/storage: Conditionally export dependent volumes
  • incusd/instance: Pass rootOnly argument where needed
  • tests: Add tests for dependent volumes
  • doc/rest-api: Refresh swagger YAML
  • doc: Update metadata
  • api: Add dependent extension
  • i18n: Update translation templates
  • Introduce goreleaser
  • incusd/daemon: Allow internal and os API during startup
  • api: Add project_metrics extension
  • incusd/metrics: Add project resource, limit and usage metrics
  • doc: Add project metrics documentation
  • incus-agent: Fix typos
  • incusd/instance/agent-loader: Make stop kill the daemon instead of the agent
  • incus-agent: Add hostname update logic for FreeBSD
  • github: Disable shellcheck for rc.d services
  • incusd/storage/drivers: Disallow for qcow2 custom block volumes
  • doc: Document restriction for qcow2 custom block volumes
  • cmd/incus: Print newly-created snapshot name if unspecified
  • i18n: Update translation templates
  • incus/info: Allow querying alternative log files
  • i18n: Update translation templates
  • incus: Add colors
  • go.mod: Make color a direct dependency
  • golangci: ignore errcheck for colored printers
  • shared/cmd: Remove non-translatable colon
  • incus: Refactor description strings
  • incus-simplestreams: Re-add colons in description headers
  • incusd: Re-add colons in description headers
  • Makefile: Add missing packages to translate
  • i18n: Update translation templates
  • incusd/storage: Remove renaming of config volume Btrfs subvolume
  • incusd/storage/drivers: Switch Btrfs subvolume naming to 'instance-' prefix
  • incusd: Add patch to rename existing Btrfs subvolumes from '-' to 'instance-'
  • incusd/device: Add support for partial device validation
  • incusd: Pass partial validation flag to device validation functions
  • incusd/instance: Pass partial validation flag to device validation functions
  • incusd/migration: Add protobuf definitions to support dependent volume migration
  • incusd/migration: Add structs and helper functions for dependent volume migration
  • incusd: Switch to common VolumeSnapshotToProtobuf
  • incusd/storage: Add support for dependent volumes migration
  • incusd/instance: Add support for dependent volumes migration
  • incusd: Add support for removing dependent volumes on source after migration
  • internal/util: Fix LogPath logic to work with logs volume
  • incusd/instances: Use internalUtil.LogPath
  • incusd/daemon_storage: Fix log directory handling after LogPath change
  • incus: Disable colors in parsing error messages
  • incus: Print a new line before printing parsing errors
  • shared/ws: Remove CheckOrigin bypass
  • incusd/s3: Use standard TLS config on S3 API calls
  • incusd/auth/oidc: Tighten cookie policy
  • incus-agent: Tighten HTTP listener configuration
  • incusd: Tighten HTTP listener configuration
  • incusd/certificates: Prevent any type change
  • tests: Confirm certificate type can't be changed
  • incus: Add no_color config key
  • incusd/seccomp: Limit the new mount API system calls we block
  • shared/validate: Allow LZ4 compression
  • incus-migrate: Fix OVA handling within os.Root
  • incus-migrate: Allow importing OVAs from URLs
  • client: Make ImageFileRequest require a ReadWriteSeeker
  • incus: Update for changes to incus.ImageFileRequest
  • incusd: Update for changes to incus.ImageFileRequest
  • client/simplestreams: Validate the full image hash
  • incusd/instance_console: Prevent symlink attacks
  • incusd/storage/s3: Don't assume backup structure
  • incusd/instance: Use restricted pongo2 parser
  • incus/remote: Actually validate the token code in incus webui
  • doc/authentication: Clarify the type of incus.allowed_subnets
  • incusd/auth/oidc: Cleanup and tighten subnet claim handling
  • incus-agent: Use same YAML version as rest of code base
  • incusd/network: Switch to backoff/v5
  • incusd/network: Switch to go-criu/v8
  • shared/logger: Implement basic slog wrapper
  • incusd/bgp: Port to go-bgp/v4
  • Makefile: Bump to Go 1.25.6
  • gomod: Update dependencies
  • github: Allow GHSA-4p9m-8gc4-rw2h (no fix available)
  • incus/usage: Fix edge case
  • Translated using Weblate (Tamil)
  • Translated using Weblate (Italian)
  • Translated using Weblate (Italian)
  • Translated using Weblate (Norwegian Bokmål)
  • Translated using Weblate (Norwegian Bokmål)
  • Translated using Weblate (Japanese)
  • Translated using Weblate (Japanese)
  • Translated using Weblate (Japanese)
  • Translated using Weblate (Russian)
  • Translated using Weblate (Dutch)
  • Translated using Weblate (Dutch)
  • 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 (Spanish)
  • Translated using Weblate (Spanish)
  • Translated using Weblate (German)
  • Translated using Weblate (German)
  • Translated using Weblate (German)
  • Translated using Weblate (German)
  • Translated using Weblate (German)
  • Translated using Weblate (Swedish)
  • Translated using Weblate (Swedish)
  • 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 (Portuguese (Brazil))
  • Translated using Weblate (Portuguese (Brazil))
  • 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)
  • doc: Remove config-options page
  • Added translation using Weblate (Greek)
  • incusd/instance/drivers: Refactor live migration - extract common logic
  • incusd/storage/drivers: Prevent setting the 'snapshots.XYZ' keys on dependent volumes
  • incusd/device: Use ValidateDependentConfigKey for dependent config validation
  • incus: Add cp-like flags to incus file pull
  • tests: Test cp-like flags in incus file pull
  • incus/storage_volume: Add cp-like flags to incus storage volume file pull
  • tests: Test cp-like flags in incus storage volume file pull
  • i18n: Update translation templates
  • incusd/instances_post: Add extra validation during backup import
  • incus/import: Fix bad rendering on error
  • incusd/device: Allow live migration of dependent disks
  • incusd/instance/drivers: Add support for live migration of dependent disks
  • Translated using Weblate (Japanese)
  • Translated using Weblate (Japanese)
  • Translated using Weblate (Japanese)
  • 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 (Portuguese (Brazil))
  • Translated using Weblate (Portuguese (Brazil))
  • Translated using Weblate (Swedish)
  • Translated using Weblate (Swedish)
  • Translated using Weblate (Spanish)
  • Translated using Weblate (Spanish)
  • Translated using Weblate (Indonesian)
  • Translated using Weblate (Indonesian)
  • 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 (Russian)
  • Translated using Weblate (Russian)
  • Translated using Weblate (Norwegian Bokmål)
  • Translated using Weblate (Norwegian Bokmål)
  • Translated using Weblate (Dutch)
  • Translated using Weblate (Dutch)
  • Translated using Weblate (Italian)
  • Translated using Weblate (Italian)
  • 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 (Chinese (Traditional Han script))
  • Translated using Weblate (Chinese (Traditional Han script))
  • Translated using Weblate (Portuguese)
  • Translated using Weblate (Portuguese)
  • Translated using Weblate (French)
  • Translated using Weblate (Russian)
  • incusd/instance/qemu: Add image.requirements.cdrom_cloud_init key
  • doc: Update config
  • incusd/daemon_storage: Don't unmount logs path on shutdown
  • incusd/instance/lxc: Wait after thawing
  • incusd/instance/lxc: Confine credentials write to credentials directory
  • incusd/response: Make sftpResponse generic
  • incusd: Update for UpgradeResponse
  • client: Move to generic upgrader
  • Translated using Weblate (Russian)
  • Translated using Weblate (Portuguese)
  • Translated using Weblate (French)
  • incusd/storage/lvm: Use shared access mode for ISO
  • incusd/storage/truenas: Fix VM rename
  • incus-agent: Fix router to avoid global match
  • incusd/instance/lxc: Include config.json on publish
  • doc/images_create: Mention that OCI container publishing isn't recommended
  • incus: Complete all configs keys
  • incusd/instance/lxc: Relax handling of initial.
  • incusd/storage/volume/list: Fix project handling in all-projects queries
  • incusd/seccomp: Fix mknod in /dev
  • incus: Don't hang on password prompt when run from script
  • gomod: Update dependencies
  • Release Incus 6.23

ドキュメント

Incus のドキュメントはこちらです:
https://incus-ja.readthedocs.io/ja/latest/ (日本語訳)
https://linuxcontainers.org/incus/docs/main/ (原文)

パッケージ

Incus の開発元は、通常リリースの tarball のみをリリースするため、公式の Incus パッケージはありません。Incus を実行するために使えるオプションを以下にいくつか示します。

Linux 上に Incus サーバーをインストールする

Incus はほとんどの一般的な Linux ディストリビューションで利用できます。インストール手順の詳細は、Incus のドキュメントを参照してください。

https://incus-ja.readthedocs.io/ja/latest/installing/ (日本語訳)
https://linuxcontainers.org/incus/docs/main/installing/ (原文)

Incus クライアントの Homebrew パッケージ

Homebrew 経由で、Linux と macOS 向けにクライアントツールが利用できます。

https://formulae.brew.sh/formula/incus

Incus クライアントの Chocolatey パッケージ

Chocolatey 経由で、Windows ユーザー向けにクライアントツールが利用できます。

https://community.chocolatey.org/packages/incus/6.23.0

Incus クライアントの Winget パッケージ

Winget 経由で、Windows ユーザー向けにクライアントツールが利用できます。

https://winstall.app/apps/LinuxContainers.Incus

サポート

月次のフィーチャーリリースは、次のリリースがリリースされるまでのみサポートされます。より長いサポート期間と少ない変更頻度が必要な場合、代わりに Incus 6.0 LTS の使用を検討すべきです。

コミュニティサポートはこちらから : https://discuss.linuxcontainers.org
商用サポートはこちらから : https://zabbly.com/incus
バグはこちらから報告できます : https://github.com/lxc/incus/issues