将池存储目录 KVM 附加到 Windows 客户机

将池存储目录 KVM 附加到 Windows 客户机

我刚刚基于我的主机 KVM 创建了一个存储池目录

# virsh pool-list --all

Name                 State      Autostart 
-----------------------------------------
guest_images_dir     active     yes

以下是信息:

# virsh pool-info guest_images_dir

Name:           guest_images_dir
UUID:           720c6735-9ca0-e7c2-18cf-396c729a512e
State:          running
Persistent:     yes
Autostart:      yes
Capacity:       920.54 GB
Allocation:     23.02 GB
Available:      897.51 GB

XML 如下

# cat /etc/libvirt/storage/autostart/guest_images_dir.xml 

<pool type='dir'>
  <name>guest_images_dir</name>
  <uuid>720c6735-9ca0-e7c2-18cf-396c729a512e</uuid>
  <capacity>0</capacity>
  <allocation>0</allocation>
  <available>0</available>
  <source>
  </source>
  <target>
    <path>/home/virtuals/shared_dir_kvm</path>
    <permissions>
          <mode>0700</mode>
          <owner>-1</owner>
          <group>-1</group>
        </permissions>
  </target>
</pool>

但我在客户机 Windows 2008 上看不到它。我还能做什么?

谢谢

答案1

池是放置映像的地方。您不会从虚拟机看到它,因为虚拟机可以看到的是映像(如磁盘),而不是池中映像的分组。

如果你进入池并在那里创建一个卷,并将该卷附加到虚拟机,它将看到一个新附加的磁盘,它将能够格式化并使用

相关内容