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 lives 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 One: 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.
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.
Pool default destroyed
Now create a new storage pool based on the updated XML file.
Pool default created from pool.xml
At this point, a default pool has been changed to a new location, and is ready for use.
Subscribe to Ask Xmodulo
Do you want to receive Linux related questions & answers published at Ask Xmodulo? Enter your email address below, and we will deliver our Linux Q&A straight to your email box, for free. Delivery powered by Google Feedburner.
Support Xmodulo
Did you find this tutorial helpful? Then please be generous and support Xmodulo!






Subscribe to Ask Xmodulo
Support Xmodulo
Thanks for the step-by-step pictures. I'm old and need lots of help - this was perfect!