TheFu, thanks for the tip. I mounted in /home/charles because I thought it would be safer, as it isn't touched during a release upgrade. I think I know how to do this, but I want to make sure.
First, unmount the partition;
Code:
sudo umount /home/charles/KVM_pool
Second, edit fstab;
Code:
## current entry for KVM_pool
UUID=c23e8deb-98eb-437a-834f-7a9287937dc0 /home/charles/KVM_pool ext4 auto,rw,async,user 0 0
## edit to read
UUID=c23e8deb-98eb-437a-834f-7a9287937dc0 /var/lib/libvirt/images ext4 auto,rw,async,user >
Third, edit default pool as follows;
Code:
## existing entry
<path>/home/charles/KVM_pool/images</path>
## edit to
<path>/var/lib/libvirt/images</path>
Finally, remount the partition;
Code:
sudo mount /var/lib/libvirt/images
If this is not correct, please let me know. I will hold back on making the changes stated above until I'm sure this is correct.