0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

IncusOS 備忘録

0
Posted at

容量が混在する状態でZFS RAID10を組むには

config:
  pools:
    - name: hdd-pool
      type: zfs-raid10
	  allow_mixed_dev_sizes: true
      devices:
        - /dev/disk/by-id/ata-HDD1
        - /dev/disk/by-id/ata-HDD2
        - /dev/disk/by-id/ata-HDD3
        - /dev/disk/by-id/ata-HDD4

Config parsing error: encryption key for 'プール名' already existsの対処

incus admin os system storage delete -d '{"name":"プール名"}'

Windows系OSを動かしたいがそもそもCDドライブすら認識しない

io.busを明示的に指定し、virtio driverをインストールすれば問題なく動く。

devices:
  root:
    io.bus: virtio-scsi
    path: /
    pool: ssd-pool
    size: 64GiB
    type: disk
  tpm:
    type: tpm
  virtio-driver:
    boot.priority: '5'
    io.bus: usb
    pool: local
    source: virtio-win-0.1.285.iso
    type: disk
  win-install:
    boot.priority: '10'
    io.bus: usb
    pool: local
    source: Windows-Server-2025.ISO
    type: disk

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?