Tribe
FS#311 - 1 GB RAM for Installation
Attached to Project:
Tribe
Opened by Georg Grabler (STiAT) - Monday, 18 July 2011, 09:05 GMT
Last edited by Manuel Tortosa (manutortosa) - Saturday, 12 January 2013, 15:23 GMT
Opened by Georg Grabler (STiAT) - Monday, 18 July 2011, 09:05 GMT
Last edited by Manuel Tortosa (manutortosa) - Saturday, 12 January 2013, 15:23 GMT
|
DetailsWe need to check if we do have enough RAM for installation. 1 GB is recommended.
Check either at boot-time, or at Tribe start, maybe introduce a "installer only" mode which is more leightweight. http://chakra-project.org/bbs/viewtopic.php?pid=36082#p36082 |
This task depends upon
Closed by Manuel Tortosa (manutortosa)
Saturday, 12 January 2013, 15:23 GMT
Reason for closing: Implemented
Saturday, 12 January 2013, 15:23 GMT
Reason for closing: Implemented
Live RAM usage was brought way down, just lately brought back up a bit by enabling desktop effects again by default in live.
1 Gb as minimum can be lowered a bit, to 750 Mb, but is that a goal anymore with the drop of i686?
QProcess p;
p.start("awk", QStringList() << "/MemTotal/ { print $2 }" << "/proc/meminfo");
can be even
p.start("awk", QStringList() << "/MemFree/ { print $2 }" << "/proc/meminfo");
Needs testing.