From e01745c91578d4aee93a471faff000782f356cef Mon Sep 17 00:00:00 2001 From: Franz <169101@gmail.com> Date: Fri, 29 Nov 2013 11:39:15 +0000 Subject: [PATCH] OutOfmemory changed --- OutOfmemory.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 OutOfmemory.md diff --git a/OutOfmemory.md b/OutOfmemory.md new file mode 100644 index 00000000..d6cabc98 --- /dev/null +++ b/OutOfmemory.md @@ -0,0 +1,19 @@ +--- +layout: wiki +title: OutOfmemory +permalink: /wiki/OutOfmemory/ +--- + +This is about disk memory, not RAM. + +VMs specially templates use disk space. Also default private storage max size is 2 GB, but it is very easy to increase it as required. In case you use all disk memory you get the Out of memory error that may crash your system because also Dom0 does not have enough disk space to work. + +So it is a good practice to regularly check disk memory usage with command + +``` {.wiki} +df +``` + +in dom0 terminal. + +follows ...