Changes between Version 2 and Version 3 of BluePrintlivecdinstaller


Ignore:
Timestamp:
12/14/10 14:35:30 (14 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BluePrintlivecdinstaller

    v2 v3  
    1 == Blueprint for LiveCD ==
    2 A Live CD (probably based on Ubuntu) that can be used to demo and deploy a !SahanaPy instance. Should help in rapid deployment if up to date.
     1[[TOC]]
    32
    4 Should include scripts to create daily/weekly snapshots of the live CD automatically.
     3= Blueprint for LiveCD =
     4A Live CD (probably based on Ubuntu) that can be used to demo and deploy a Sahana Eden instance.
     5
     6The same CD can be used to build Virtual Machines.
     7
     8We want 4 different builds:
     9 * Lite
     10 * Normal
     11 * GIS
     12 * Dev
     13
     14== Lite ==
     15Designed to run headless as a simple server to be accessed by host's Web browser & perhaps 1-2 other users on a small LAN
     16 * Python
     17 * Rocket
     18 * Sqlite
     19
     20=== Build ===
     21{{{
     22bzr checkout --lightweight -r 2717 lp:~mdipierro/web2py/devel web2py
     23cd web2py/applications
     24bzr checkout --lightweight -r XXX lp:~sahana-eden eden
     25}}}
     26
     27 * ConfigurationGuidelines#FilePermissions
     28
     29Run with password & NIC bound to real IP:
     30{{{
     31python web2py.py -a <password> <etc>
     32}}}
     33=== Updates ===
     34Need a way to keep the system updated easily (web2page?):
     35{{{
     36cd web2py
     37bzr up -r <revision>
     38cd applications/eden
     39bzr up -r <revision>
     40}}}
     41
     42== Normal ==
     43Designed to be run in an office of up to 50 users with poor quality Internet...would be a dedicated machine if a lot of users.
     44 * [wiki:InstallationGuidelinesApacheModWSGI Apache/WSGI]
     45 * MySQL or [wiki:InstallationGuidelinesPostgreSQL PostgreSQL] (latter better for being common to GIS)
     46
     47== GIS ==
     48Useful for the [wiki:BluePrintGISGPSSharing GPS Sharing] tool, for instance. Can run on a fairly high-end laptop or a dedicated desktop.
     49
     50 * [wiki:InstallationGuidelinesGISData]
     51 * [wiki:InstallationGuidelinesApacheModWSGI Apache/WSGI]
     52 * PostGIS
     53 * !GeoServer
     54 * Mapnik
     55 * DATA
     56  * Download by geographic area
     57  * !OpenStreetMap
     58  * Contours
     59
     60== Dev ==
     61This would replace our existing VM:
     62 * InstallationGuidelinesVirtualMachine
     63
     64== Status ==
     65[http://9while9.com Chelsea School] are building these for us based on [http://www.turnkeylinux.org TurnKey Linux]
     66
    567----
    668BluePrints