我正在使用 LXD 安装 Windows VM,具体步骤如下:https://ubuntu.com/tutorials/how-to-install-a-windows-11-vm-using-lxd#1-overview。到目前为止,它们对我来说运行良好。
但是,我无法与 Windows 11 VM 共享驱动器。
我尝试过以下命令:
lxc config device add win11 foobar disk source=/home/foo/test/ path=C:\\Users\\bar\\Desktop\\test
和:
lxc config device add win11 foo disk source=/home/foo/test/ path=/c/Users/david/Desktop/test
由于内核是共享的,所以这应该可以工作。
附加信息
lxc config show
执行上述命令后将返回以下内容:
architecture: x86_64
config:
limits.cpu: "4"
limits.memory: 8GiB
volatile.cloud-init.instance-id: xxx
volatile.eth0.host_name: xxxxxxxxxxx
volatile.eth0.hwaddr: xxx
volatile.last_state.power: RUNNING
volatile.uuid: xxx
volatile.uuid.generation: xxx
volatile.vsock_id: "xxxxxxxxxx"
devices:
foobar:
path: C:\Users\janedoe\Desktop\test
source: /home/johndoe/test/
type: disk
foo:
path: /c/Users/janedoe/Desktop/test
source: /home/johndoe/test/
type: disk
root:
path: /
pool: default
size: 80GiB
type: disk
vtpm:
path: /dev/tpm0
type: tpm
ephemeral: false
profiles:
- default
stateful: false
description: ""
这是我第一次尝试 LXD/LXC。因此,如果能为初学者提供指导,我将不胜感激。