﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,resolution,keywords,cc
5,Allow to grow the AppVM's private storage?,joanna,marmarek,"Research options for automatically or semi-automatically handling a situation when a given AppVM needs more storage (private.img) than originally assigned.

Currently if a user wants to extend private storage for an AppVM, the user must do something like this:
{{{
cd /var/lib/qubes/appvms/XXX/
mkdir mnt mnt.new
mount -o loop,ro private.img mnt
truncate -s <new_max_size> private-new.img
mkfs.ext4 private-new.img
mount -o loop private-new.img mnt.new
cp -pr mnt/* mnt.new/
umount mnt mnt.new
rm -f private.img mnt mnt.new
mv private-new.img private.img
}}}
... which is a bit, well, not user-friendly ;)",enhancement,closed,major,Release 1 Beta 1,core,fixed,,marmarek@…
