Use "mount -o remount" instead of "umount" and "mount /dev/shm",

which results in emptying this virtual file system.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4228 c046a42c-6fe2-441c-8c8c-71466251a162
master
aurel32 2008-04-20 21:10:41 +00:00
parent b29d8ae4d4
commit 2520c665c8
1 changed files with 1 additions and 2 deletions

View File

@ -107,8 +107,7 @@ static void *kqemu_vmalloc(size_t size)
tmpdir, ram_mb);
if (strcmp(tmpdir, "/dev/shm") == 0) {
fprintf(stderr, "To have more space available provided you have enough RAM and swap, do as root:\n"
"umount /dev/shm\n"
"mount -t tmpfs -o size=%dm none /dev/shm\n",
"mount -o remount,size=%dm /dev/shm\n",
ram_mb + 16);
} else {
fprintf(stderr,