How to change default location of libvirt VM images

Last updated on August 16, 2020 by Dan Nanni

Question: I am using libvirt and virt-manager to create VMs on my Linux system. I noticed that the VM images are stored in /var/lib/libvirt/images directory. Is there a way to change the default location of VM image directory to something else?

libvirt and its GUI front-end virt-manager can create and manage VMs using different hypervisors such as KVM and Xen. By default, all the VM images created via libvirt go to /var/lib/libvirt/images directory. However, this may not be desirable in some cases. For example, the disk partition where /var/lib/libvirt/images resides may have limited free space. Or you may want to store all VM images in a specific repository for management purposes.

In fact, you can easily change the default location of the libvirt image directory, or what they call a "storage pool".

There are two ways to change the default storage pool.

Method One: virt-manager GUI

If you are using virt-manager GUI program, changing the default storage pool is very easy.

Go to Edit → "Connection Details" in virt-manager menu GUI.

You will see the default storage pool as shown below. On the left bottom of the window, click on the cross icon, which will stop the default storage pool. Once the pool is stopped, click on the trash bin icon on the right, which will delete the pool. Note that this action will NOT remove the VM images inside the pool.

Now click on the plus icon on the far left to add a new storage pool.

Type in the name of a new storage pool (e.g., default), and choose the type of the pool. In this case, choose a "Filesystem Directory" type since we are simply changing a storage pool directory.

Type in the path of a new storage pool (e.g., /storage).

At this point, the new storage pool should be started, and automatically used when you create a new VM.

Method Two: virsh Command-Line

Another method to change the default storage pool directory is to use virsh command line utility which comes with libvirt package.

First, run the following command to dump XML definition of the default storage pool.

$ virsh pool-dumpxml default > pool.xml

Open this XML file with a text editor, and change <path> element from /var/lib/libvirt/images to a new location.

<pool type='dir'>
  <name>default</name>
  <uuid>0ec0e393-28a2-e975-feec-0c7356f38d08</uuid>
  <capacity unit='bytes'>975762788352</capacity>
  <allocation unit='bytes'>530052247552</allocation>
  <available unit='bytes'>445710540800</available>
  <source>
  </source>
  <target>
    <path>/var/lib/libvirt/images</path>
    <permissions>
      <mode>0711</mode>
      <owner>-1</owner>
      <group>-1</group>
    </permissions>
  </target>
</pool>

Remove the current default pool.

$ virsh pool-destroy default
Pool default destroyed

Now create a new storage pool based on the updated XML file.

$ virsh pool-create pool.xml
Pool default created from pool.xml

At this point, a default pool has been changed to a new location, and is ready for use.

Support Xmodulo

This website is made possible by minimal ads and your gracious donation via PayPal or credit card

Please note that this article is published by Xmodulo.com under a Creative Commons Attribution-ShareAlike 3.0 Unported License. If you would like to use the whole or any part of this article, you need to cite this web page at Xmodulo.com as the original source.

Xmodulo © 2021 ‒ AboutWrite for UsFeed ‒ Powered by DigitalOcean