Displaying 1 result from an estimated 1 matches for "meminstalled".
Did you mean:
deinstalled
2011 Jul 27
1
HOWTO install CentOS 6 on low memory computer or virtual machine (even 192MB RAM)
...able_memory" adding a line "return True" like this:
def within_available_memory(needed_ram):
return True
# kernel binary code estimate that is
# not reported in MemTotal by /proc/meminfo
epsilon = 15360 # 15 MB
return needed_ram < (iutil.memInstalled() + epsilon)
This would get rid of artificial hard-coded memory requirement.
4. Edit a file /usr/lib/anaconda/storage/__init__.py - search for 4th
occurrence of "swapoff" and modify a fragment of function
"umountFilesystems" from:
for device in devices:
if not devic...