qubes-doc/ResizeDiskImage.md

126 lines
4.2 KiB
Markdown
Raw Normal View History

2013-03-07 23:58:33 +00:00
---
2015-04-10 20:17:45 +00:00
layout: doc
2013-03-07 23:58:33 +00:00
title: ResizeDiskImage
2015-04-10 20:17:45 +00:00
permalink: /doc/ResizeDiskImage/
redirect_from: /wiki/ResizeDiskImage/
2013-03-07 23:58:33 +00:00
---
Resizing Disk Image
-------------------
There are several disk images which can be easily extended.
But pay attention to the overall consumed space of your sparse disk images.
### Private disk image
1048576 MB is the maximum size which can be assigned to a private storage through qubes-manager.
To grow the private disk image of a AppVM beyond this limit [qubes-grow-private](/wiki/Dom0Tools/QvmGrowPrivate) can be used:
2013-03-07 23:58:33 +00:00
2015-04-10 20:17:45 +00:00
{% highlight trac-wiki %}
2013-03-07 23:58:33 +00:00
qvm-grow-private <vm-name> <size>
2015-04-10 20:17:45 +00:00
{% endhighlight %}
2013-03-07 23:58:33 +00:00
2013-12-21 12:55:18 +00:00
Note: Size is the target size (i.e. 4096MB or 16GB, ...), not the size to add to the existing disk.
Note2: If once the VM is started, the disk is has not been increased, you can issue in the VM's terminal:
2015-04-10 20:17:45 +00:00
{% highlight trac-wiki %}
2013-12-21 12:55:18 +00:00
sudo resize2fs /dev/xvdb
2015-04-10 20:17:45 +00:00
{% endhighlight %}
2013-12-21 12:55:18 +00:00
### Shrinking private disk image (Linux VM)
**This operation is dangerous and this is why it isn't available in standard Qubes tools. If you have enough disk space, it is safer to create new VM with smaller disk and move the data.**
The basic idea is to:
1. Shrink filesystem on the private disk image.
2. Then shrink the image.
Ext4 does not support online shrinking, so can't be done as convenient as image grown. Note that we don't want to touch the VM filesystem directly in dom0 for security reasons. First you need to start VM without `/rw` mounted. One of the possibility is to interrupt its normal startup by adding `rd.break` kernel option:
2015-04-10 20:17:45 +00:00
{% highlight trac-wiki %}
qvm-prefs -s <vm-name> kernelopts rd.break
qvm-start --no-guid <vm-name>
2015-04-10 20:17:45 +00:00
{% endhighlight %}
And wait for qrexec connect timeout (or simply press Ctrl-C). Then you can connect to VM console and shrink the filesystem:
2015-04-10 20:17:45 +00:00
{% highlight trac-wiki %}
sudo xl console <vm-name>
# you should get dracut emergency shell here
mount --bind /dev /sysroot/dev
chroot /sysroot
mount /proc
e2fsck -f /dev/xvdb
resize2fs /dev/xvdb <new-desired-size>
umount /proc
exit
umount /sysroot/dev
poweroff
2015-04-10 20:17:45 +00:00
{% endhighlight %}
Now you can resize the image:
2015-04-10 20:17:45 +00:00
{% highlight trac-wiki %}
truncate -s <new-desired-size> /var/lib/qubes/appvms/<vm-name>/private.img
2015-04-10 20:17:45 +00:00
{% endhighlight %}
**It is critical to use the same (or bigger for some safety margin) size in truncate call compared to resize2fs call. Otherwise you will loose your data!** Then reset kernel options back to default:
2015-04-10 20:17:45 +00:00
{% highlight trac-wiki %}
qvm-prefs -s <vm-name> kernelopts default
2015-04-10 20:17:45 +00:00
{% endhighlight %}
Done.
### Template disk image
If you want install a lot of software in your TemplateVM, you may need to increase the amount of disk space your TemplateVM can use.
1. Make sure that all the VMs based on this template are shut off (including netvms etc).
2. Sanity check: verify that none of loop device are pointing at this template root.img: `sudo losetup -a`
3. Resize root.img file using `truncate -s <desired size>` (the root.img path can be obtained from qvm-prefs).
4. If any netvm/proxyvm used by this template is based on it, set template netvm to none.
5. Start the template.
6. Execute `sudo resize2fs /dev/mapper/dmroot` in the template.
7. Verify available space in the template using `df -h`
8. Shutdown the template.
9. Restore original netvm setting (if changed), check firewall settings (setting netvm to none causes firewall reset to "block all")
2013-03-07 23:58:33 +00:00
### HVM disk image
In this example we will grow the disk image of an HVM to 30GB.
First, stop/shutdown the HVM.
Then, from a Dom0 terminal (in KDE: System Tools -\> Terminal Emulator) do the following:
2013-03-07 23:58:33 +00:00
2015-04-10 20:17:45 +00:00
{% highlight trac-wiki %}
cd /var/lib/qubes/appvms/<yourHVM>/
ls -lh root.img (<--verify current size of disk image)
truncate -s 30GB root.img
ls -lh root.img (<--verify new size of disk image)
2015-04-10 20:17:45 +00:00
{% endhighlight %}
2013-03-07 23:58:33 +00:00
The partition table and file-system must be adjusted after this change:
2013-03-07 23:58:33 +00:00
#### Windows 7
2013-03-07 23:58:33 +00:00
1. Click Start
2. type "diskmgmt.msc" - this takes you to Disk Management
3. Right-click on your existing volume, select "Extend Volume..."
4. Click through the wizard.
2013-03-07 23:58:33 +00:00
No reboot required.
2013-03-07 23:58:33 +00:00
#### FreeBSD
2015-04-10 20:17:45 +00:00
{% highlight trac-wiki %}
2013-03-07 23:58:33 +00:00
gpart recover ada0
sysctl kern.geom.debugflags=0x10
gpart resize -i index ada0
zpool online -e poolname ada0
2015-04-10 20:17:45 +00:00
{% endhighlight %}