vi /usr/sbin/anaconda
then disable memory checking , then save . ( see below code )
Running with ssh -X and remote X server I got installed live iso on a machine with 512 MB.
( to start sshd : "service sshd start"; change your password, then open ssh port )
anaconda is quite dumb at computing requirement for cases when you do remote liveinst :
- Code: Select all
def check_memory(anaconda, opts, display_mode=None):
reason_strict = _("%s requires %s MB of memory to install, but you only have "
"%s MB on this machine.\n")
reason_graphical = _("The %s graphical installer requires %s MB of memory, but "
"you only have %s MB.")
reboot_extra = _('\n'
'Press <return> to reboot your system.\n')
livecd_title = _("Not enough RAM")
livecd_extra =_(" Try the text mode installer by running:\n\n"
"'/usr/bin/liveinst -T'\n\n from a root "
"terminal.")
nolivecd_extra = _(" Starting text mode.")
if not display_mode:
display_mode = anaconda.displayMode
extra_ram = 0
reason = reason_strict
total_ram = int(isys.total_memory() / 1024)
needed_ram = int((isys.MIN_RAM + extra_ram) / 1024)
##to disable memcheck requirement uncomment folowing line:
#needed_ram = 500
if needed_ram > total_ram:

Maybe a bug shall be posted against anaconda to have it correctly computing memory requirements for all supported installation options (command line options) ....
