Displaying 1 result from an estimated 1 matches for "umountfilesystem".
Did you mean:
umountfilesystems
2011 Jul 27
1
HOWTO install CentOS 6 on low memory computer or virtual machine (even 192MB RAM)
...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 device.format.mountable and \
(device.format.type != "swap" or swapoff):
continue
to:
for device in devices:
if not (device.format.mountable and \
(device.format.type != "swap" or...