<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.osgeo.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Wiki-Shansen</id>
	<title>OSGeo - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.osgeo.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Wiki-Shansen"/>
	<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/wiki/Special:Contributions/Wiki-Shansen"/>
	<updated>2026-04-12T11:24:53Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.9</generator>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=FOSS4G_2009_Press_Release_28&amp;diff=40627</id>
		<title>FOSS4G 2009 Press Release 28</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=FOSS4G_2009_Press_Release_28&amp;diff=40627"/>
		<updated>2009-08-28T06:58:52Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font color=&amp;quot;red&amp;quot;&amp;gt; . . . DRAFT . . . &amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=The Easy steps to get your project on the FOSS4G Live DVD=&lt;br /&gt;
&lt;br /&gt;
Sydney, Australia. 22 August 2009. http://2009.foss4g.org&lt;br /&gt;
&lt;br /&gt;
The [http://arramagong.com Arramagong Live DVD], [http://gisvm.com GISVM], and [http://wiki.osgeo.org/wiki/Live_GIS_Disc OSGeo Live-Demo] projects are collaborating to create a set of simple, automated install scripts for a wide variety of Free and open source GIS projects, and we're calling on each project to help us write a script for their software.&lt;br /&gt;
&lt;br /&gt;
The scripts should cover the installation and configuration of each project into a base [http://www.xubuntu.org/ Xubuntu] 9.04 system. Separate scripts can optionally cover data, demos and tutorials.&lt;br /&gt;
&lt;br /&gt;
For projects already packaged for [http://packages.ubuntu.com/ Ubuntu] or by [http://wiki.debian.org/DebianGis DebianGIS], an install script will likely be as simple as:&lt;br /&gt;
&lt;br /&gt;
''install_mapserver.sh''&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 apt-get install cgi-mapserver&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Projects that haven't been packaged yet are slightly more complicated:&lt;br /&gt;
&lt;br /&gt;
''install_udig.sh''&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 #################################################&lt;br /&gt;
 # &lt;br /&gt;
 # Purpose: Installation of udig into Xubuntu&lt;br /&gt;
 # Author:  Stefan Hansen &amp;lt;shansen@lisasoft.com&amp;gt;&lt;br /&gt;
 #&lt;br /&gt;
 #################################################&lt;br /&gt;
 # Copyright (c) 2009 Open Geospatial Foundation&lt;br /&gt;
 # Copyright (c) 2009 LISAsoft&lt;br /&gt;
 #&lt;br /&gt;
 # Licensed under the GNU LGPL.&lt;br /&gt;
 # &lt;br /&gt;
 # This library is free software; you can redistribute it and/or modify it&lt;br /&gt;
 # under the terms of the GNU Lesser General Public License as published&lt;br /&gt;
 # by the Free Software Foundation, either version 2.1 of the License,&lt;br /&gt;
 # or any later version.  This library is distributed in the hope that&lt;br /&gt;
 # it will be useful, but WITHOUT ANY WARRANTY, without even the implied&lt;br /&gt;
 # warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.&lt;br /&gt;
 # See the GNU Lesser General Public License for more details, either&lt;br /&gt;
 # in the &amp;quot;LICENSE.LGPL.txt&amp;quot; file distributed with this software or at&lt;br /&gt;
 # web page &amp;quot;http://www.fsf.org/licenses/lgpl.html&amp;quot;.&lt;br /&gt;
 ##################################################&lt;br /&gt;
 &lt;br /&gt;
 # About:&lt;br /&gt;
 # =====&lt;br /&gt;
 # This script will install udig into Xubuntu &lt;br /&gt;
&lt;br /&gt;
 # Running:&lt;br /&gt;
 # =======&lt;br /&gt;
 # sudo ./install_udig.sh &lt;br /&gt;
 &lt;br /&gt;
 TMP=&amp;quot;/tmp/udig_downloads&amp;quot;&lt;br /&gt;
 INSTALL_FOLDER=&amp;quot;/usr/lib&amp;quot;&lt;br /&gt;
 DATA_FOLDER=&amp;quot;/usr/local/share&amp;quot;&lt;br /&gt;
 UDIG_FOLDER=&amp;quot;$INSTALL_FOLDER/udig&amp;quot;&lt;br /&gt;
 BIN=&amp;quot;/usr/bin&amp;quot;&lt;br /&gt;
 USER_NAME=&amp;quot;user&amp;quot;&lt;br /&gt;
 USER_HOME=&amp;quot;/home/$USER_NAME&amp;quot;&lt;br /&gt;
  &lt;br /&gt;
 ## Setup things... ##&lt;br /&gt;
  &lt;br /&gt;
 # check required tools are installed&lt;br /&gt;
 if [ ! -x &amp;quot;`which wget`&amp;quot; ] ; then&lt;br /&gt;
    echo &amp;quot;ERROR: wget is required, please install it and try again&amp;quot; &lt;br /&gt;
    exit 1&lt;br /&gt;
 fi&lt;br /&gt;
 # create tmp folders&lt;br /&gt;
 mkdir $TMP&lt;br /&gt;
 cd $TMP&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 ## Install Application ##  &lt;br /&gt;
 &lt;br /&gt;
 # get udig&lt;br /&gt;
 if [ -f &amp;quot;udig-1.2-M6.linux.gtk.x86.tar.gz&amp;quot; ]&lt;br /&gt;
 then&lt;br /&gt;
    echo &amp;quot;udig-1.2-M6.linux.gtk.x86.tar.gz has already been downloaded.&amp;quot;&lt;br /&gt;
 else&lt;br /&gt;
    wget http://udig.refractions.net/files/downloads/branches/udig-1.2-M6.linux.gtk.x86.tar.gz&lt;br /&gt;
 fi&lt;br /&gt;
 # unpack it and copy it to /usr/lib&lt;br /&gt;
 tar -xzf udig-1.2-M6.linux.gtk.x86.tar.gz -C $INSTALL_FOLDER&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 ## Configure Application ##&lt;br /&gt;
 &lt;br /&gt;
 # Download modified startup script for udig&lt;br /&gt;
 if [ -f &amp;quot;udig.sh&amp;quot; ]&lt;br /&gt;
 then&lt;br /&gt;
    echo &amp;quot;udig.sh has already been downloaded.&amp;quot;&lt;br /&gt;
 else&lt;br /&gt;
    wget https://svn.osgeo.org/osgeo/livedvd/gisvm/trunk/udig-conf/udig.sh&lt;br /&gt;
 fi&lt;br /&gt;
 # copy it into the udig folder&lt;br /&gt;
 cp udig.sh $UDIG_FOLDER &lt;br /&gt;
 &lt;br /&gt;
 # create link to startup script&lt;br /&gt;
 ln -s $UDIG_FOLDER/udig.sh $BIN/udig &lt;br /&gt;
 &lt;br /&gt;
 # Download desktop icon&lt;br /&gt;
 if [ -f &amp;quot;uDig.desktop&amp;quot; ]&lt;br /&gt;
 then&lt;br /&gt;
    echo &amp;quot;uDig.desktop has already been downloaded.&amp;quot;&lt;br /&gt;
 else&lt;br /&gt;
    wget https://svn.osgeo.org/osgeo/livedvd/gisvm/trunk/udig-conf/uDig.desktop&lt;br /&gt;
 fi&lt;br /&gt;
 # copy it into the udig folder&lt;br /&gt;
 cp uDig.desktop $USER_HOME/Desktop&lt;br /&gt;
 chown $USER_NAME:$USER_NAME $USER_HOME/Desktop/uDig.desktop&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 ## Sample Data ##&lt;br /&gt;
 &lt;br /&gt;
 # Download udig's sample data&lt;br /&gt;
 if [ -f &amp;quot;data-v1_1.zip&amp;quot; ]&lt;br /&gt;
 then&lt;br /&gt;
    echo &amp;quot;data-v1_1.zip has already been downloaded.&amp;quot;&lt;br /&gt;
 else&lt;br /&gt;
    wget http://udig.refractions.net/docs/data-v1_1.zip&lt;br /&gt;
 fi&lt;br /&gt;
 #unzip the file into /usr/local/share/udig-data&lt;br /&gt;
 mkdir $DATA_FOLDER/udig-data&lt;br /&gt;
 unzip data-v1_1.zip -d $DATA_FOLDER/udig-data&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
 ## Documentation ##&lt;br /&gt;
 &lt;br /&gt;
 # Download udig's documentation&lt;br /&gt;
 if [ -f &amp;quot;udig-1.2-M5.html&amp;quot; ]&lt;br /&gt;
 then&lt;br /&gt;
    echo &amp;quot;udig-1.2-M5.html has already been downloaded.&amp;quot;&lt;br /&gt;
 else&lt;br /&gt;
    wget http://udig.refractions.net/files/downloads/branches/udig-1.2-M5.html&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 if [ -f &amp;quot;uDigWalkthrough1.pdf&amp;quot; ]&lt;br /&gt;
 then&lt;br /&gt;
    echo &amp;quot;uDigWalkthrough1.pdf has already been downloaded.&amp;quot;&lt;br /&gt;
 else&lt;br /&gt;
    wget http://udig.refractions.net/docs/uDigWalkthrough1.pdf&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 if [ -f &amp;quot;uDigWalkthrough2.pdf&amp;quot; ]&lt;br /&gt;
 then&lt;br /&gt;
    echo &amp;quot;uDigWalkthrough2.pdf has already been downloaded.&amp;quot;&lt;br /&gt;
 else&lt;br /&gt;
    wget http://udig.refractions.net/docs/uDigWalkthrough2.pdf&lt;br /&gt;
 fi&lt;br /&gt;
 &lt;br /&gt;
 #copy into /usr/local/share/udig-docs&lt;br /&gt;
 mkdir $DATA_FOLDER/udig-docs&lt;br /&gt;
 cp udig-1.2-M5.html $DATA_FOLDER/udig-docs&lt;br /&gt;
 cp uDigWalkthrough1.pdf $DATA_FOLDER/udig-docs&lt;br /&gt;
 cp uDigWalkthrough1.pdf $DATA_FOLDER/udig-docs&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
As we are still bootstrapping the packaging project, and as we are very short on time before feature freeze, manual steps can be included as comments in each install script, and can be automated by a project member, or packager at a later date.&lt;br /&gt;
&lt;br /&gt;
Packaging details and examples can be found at: http://wiki.osgeo.org/wiki/GISVM_Build&lt;br /&gt;
&lt;br /&gt;
And help is available on the [http://lists.osgeo.org/mailman/listinfo/live-demo Live-Demo mailing list] via Cameron Shorter, Stefan Hansen, Ricardo Pino, Hamish Bowman, Alex Mandel, Massimo de Stefano and others.&lt;br /&gt;
&lt;br /&gt;
The [http://arramagong.com Arramagong Live DVD] and [http://gisvm.com GISVM] projects are collaborating to provide a Live DVD and GIS Virtual Machine for all conference delegates attending the [http://2009.foss4g.org Free and Open Source Software for Geospatial] (FOSS4G) conference this October, 2009.&lt;br /&gt;
&lt;br /&gt;
== Timeline ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Date !! Date !! Milestone&lt;br /&gt;
|-&lt;br /&gt;
| 7 Sep 2009 || in 1 week || LiveDVD Feature Freeze&lt;br /&gt;
|-&lt;br /&gt;
| 11 Sep 2009 || in 2 weeks || LiveDVD Beta Release&lt;br /&gt;
|-&lt;br /&gt;
| 18 Sep 2009 || in 3 weeks || LiveDVD Final Freeze&lt;br /&gt;
|-&lt;br /&gt;
| 20 Sep 2009 || in 3 weeks || LiveDVD Final Release &amp;amp; sent to printers&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== About GISVM ==&lt;br /&gt;
&lt;br /&gt;
GISVM is a Free(dom) and ready to use anywhere Geographic Information System Virtual Machine. Based on the amazing Virtualization technology it can be used on almost any operating system environment and is intended to be a hassle-free installation option for anyone that needs a ready to use GIS solution.&lt;br /&gt;
: Homepage: http://www.gisvm.com/&lt;br /&gt;
&lt;br /&gt;
== About Arramagong Live DVD ==&lt;br /&gt;
The [http://arramagong.com Arramagong Live DVD] provides a stack of most of best Geospatial Open Source software, pre-configured with sample data. It is based on the XUbuntu linux operating system and also contains windows installers. It has been built by LISAsoft in conjunction with the Open Source Geospatial community.&lt;br /&gt;
&lt;br /&gt;
== About FOSS4G ==&lt;br /&gt;
FOSS4G is the international Free and Open Source Software for Geospatial conference, which comes to Sydney, Australia, 20-23 October 2009. FOSS4G offers presentations, workshops, demos, an install-fest, and a code sprint. It is presented by the world's best Developers, Policy Makers, Sponsors and Geospatial Professionals and includes the latest geospatial applications, standards, government programs, business processes and case studies. Topics include mobile platforms, location based applications, crowd sourcing, cloud computing, development, spatial standards, integration of cross-agency data, Spatial Data Infrastructures, Sensor Webs, Web Processing Services, Integration of Open Source and Proprietary Software and more.&lt;br /&gt;
&lt;br /&gt;
== Upcoming milestones ==&lt;br /&gt;
* 14 Sep 2009, Final program available&lt;br /&gt;
* 21 Sep 2009, Poster Submission closes&lt;br /&gt;
* 20 Oct 2009, FOSS4G Workshop&lt;br /&gt;
* 21-23 Oct 2009, FOSS4G Presentations and Tutorials&lt;br /&gt;
* 24 Oct 2009, FOSS4G Code Sprint&lt;br /&gt;
&lt;br /&gt;
== Media Sponsors ==&lt;br /&gt;
* Position Magazine: http://www.positionmag.com.au/&lt;br /&gt;
* Asian Surveying and Mapping Newsletter: http://www.asmmag.com&lt;br /&gt;
* Geoconnexions Magazine: http://www.geoconnexion.com/&lt;br /&gt;
* Directions Magazine: http://directionsmag.com/&lt;br /&gt;
* GIS Development: http://gisdevelopment.net/&lt;br /&gt;
* Baliz Media: http://www.BALIZ-MEDIA.com/&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
For more information or to keep informed from the FOSS4G Organising Committee, join our email list or twitter feed at: http://2009.foss4g.org/about_us/&lt;br /&gt;
&lt;br /&gt;
or contact:&lt;br /&gt;
&lt;br /&gt;
Cameron Shorter, Chair of the FOSS4G Organising Committee and Geospatial Systems Architect at LISAsoft&lt;br /&gt;
&lt;br /&gt;
tel +61-2-8570-5050&lt;br /&gt;
&lt;br /&gt;
c a m e r o n . s h o r t e r @ l i s a s o f t . c o m&lt;br /&gt;
&lt;br /&gt;
[[Category:FOSS4G2009]]&lt;br /&gt;
[[Category:FOSS4G]]&lt;br /&gt;
[[Category:Live-demo]]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Build&amp;diff=40623</id>
		<title>Live GIS Build</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Build&amp;diff=40623"/>
		<updated>2009-08-28T03:57:51Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=About=&lt;br /&gt;
&lt;br /&gt;
[http://gisvm.com/ GISVM] is an Xubuntu based Virtual Machine which has been installed with a suite of the best Open Source Geospatial software. It is also used to build [http://www.arramagong.com/Arramagong.html Arramagong], the Linux based Live DVD.&lt;br /&gt;
&lt;br /&gt;
=How to add your project or data to GISVM in 10 minutes=&lt;br /&gt;
&lt;br /&gt;
All that's required to add your favorite package into GISVM is to:&lt;br /&gt;
&lt;br /&gt;
* write a shell script which installs and configures your stable package into the current GISVM virtual machine (which will usually be the same as installing on Xubuntu or Ubuntu).&lt;br /&gt;
&lt;br /&gt;
* add the script to subversion, in https://svn.osgeo.org/osgeo/livedvd/gisvm/trunk/bin/&lt;br /&gt;
: If you do not have write permission there feel free to send the script to the [[Live_GIS_Disc#Communication|OSGeo live-demo mailing list]] ''as an attachment'' and we'll see that it makes it in.&lt;br /&gt;
&lt;br /&gt;
* Notify the GISVM team to test your script, and reference your script from ''main.sh''.&lt;br /&gt;
&lt;br /&gt;
The script may be as simple as:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''install_mapserver.sh''&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 # Copyright (c) 2009 The Open Source Geospatial Foundation.&lt;br /&gt;
 # Licensed under the GNU LGPL.&lt;br /&gt;
 # &lt;br /&gt;
 # About:&lt;br /&gt;
 # =====&lt;br /&gt;
 # This script will install mapserver&lt;br /&gt;
 #&lt;br /&gt;
 # Running:&lt;br /&gt;
 # =======&lt;br /&gt;
 # sudo ./install_mapserver.sh&lt;br /&gt;
 &lt;br /&gt;
 apt-get install cgi-mapserver&lt;br /&gt;
&lt;br /&gt;
= Build Drivers =&lt;br /&gt;
== Which version? ==&lt;br /&gt;
The criteria used to select applications for GISVM is as follows:&lt;br /&gt;
&lt;br /&gt;
# Priority goes to Ubuntu packaged software first, then Debian packaged software! This facilitates easy and reliable maintenance and update. Users will benefit from it. Programmers are encouraged to move their software into [http://wiki.debian.org/DebianGis DebianGIS] or [https://wiki.ubuntu.com/UbuntuGIS UbuntuGIS] repositories.&lt;br /&gt;
# Stable, always! GISVM users are mainly starters. So they obviously are better with stable software. They have enough problems already and will gladly be happier without software bugs.&lt;br /&gt;
&lt;br /&gt;
For people who want the latest version, they can create an alternative upgrade script.&lt;br /&gt;
&lt;br /&gt;
== Low Memory ==&lt;br /&gt;
Both Virtual Machines, and a LiveDVD images are likely to be constrained by limited memory. So to reduce memory usage. Disk image size is not of major concern, as we can just distribute less data.&lt;br /&gt;
&lt;br /&gt;
The following principles should be followed. &lt;br /&gt;
# Do not start applications upon power up. (Ie, don't start deamons, allow users to start them instead).&lt;br /&gt;
# Set up examples which, by default, don't depend on other applications. Less applications open, means less memory. Ie, Have GeoServer access a shapefile instead of PostGIS.&lt;br /&gt;
# Try to avoid scenarios which write data to disk, as disk space in the Live DVD is stored in RAM, and is not cleared afterward.&lt;br /&gt;
&lt;br /&gt;
= Directory Structure =&lt;br /&gt;
# Temporary files (e.g., downloaded archives) go into /tmp. Please create a separate folder for your project.&lt;br /&gt;
# application are usually installed into /usr/lib&lt;br /&gt;
# things that get executed by the user such as startup scripts or links to them should go into /usr/bin&lt;br /&gt;
# startup/shutdown scripts for services (e.g., postgres, apache, tomcat) are stored in /etc/init.d&lt;br /&gt;
# sample data and documentation goes into /usr/local/share&lt;br /&gt;
# config files are stored in /etc&lt;br /&gt;
# user specific config files or working directories can go into /home/user. However, it will be appreciated if you can keep the amount of things in the user's home folder as small as possible.&lt;br /&gt;
&lt;br /&gt;
[[Category: Live-demo]]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Build&amp;diff=40587</id>
		<title>Live GIS Build</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Build&amp;diff=40587"/>
		<updated>2009-08-27T08:31:31Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=About=&lt;br /&gt;
&lt;br /&gt;
[http://gisvm.com/ GISVM] is an Xubuntu based Virtual Machine which has been installed with a suite of the best Open Source Geospatial software. It is also used to build [http://www.arramagong.com/Arramagong.html Arramagong], the Linux based Live DVD.&lt;br /&gt;
&lt;br /&gt;
=How to add your project or data to GISVM in 10 minutes=&lt;br /&gt;
&lt;br /&gt;
All that's required to add your favorite package into GISVM is to:&lt;br /&gt;
* write a shell script which installs and configures your stable package into the current GISVM virtual machine (which will usually be the same as installing on Xubuntu or Ubuntu).&lt;br /&gt;
* add the script to subversion, in https://svn.osgeo.org/osgeo/livedvd/gisvm/trunk/bin/&lt;br /&gt;
* Notify the GISVM team to test your script, and reference your script from ''main.sh''.&lt;br /&gt;
&lt;br /&gt;
The script may be as simple as:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''install_mapserver.sh''&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 # Copyright (c) 2009 The Open Source Geospatial Foundation.&lt;br /&gt;
 # Licensed under the GNU LGPL.&lt;br /&gt;
 # &lt;br /&gt;
 # About:&lt;br /&gt;
 # =====&lt;br /&gt;
 # This script will install mapserver&lt;br /&gt;
 #&lt;br /&gt;
 # Running:&lt;br /&gt;
 # =======&lt;br /&gt;
 # sudo ./install_mapserver.sh&lt;br /&gt;
 &lt;br /&gt;
 apt-get install cgi-mapserver&lt;br /&gt;
&lt;br /&gt;
= Build Drivers =&lt;br /&gt;
== Which version? ==&lt;br /&gt;
The criteria used to select applications for GISVM is as follows:&lt;br /&gt;
&lt;br /&gt;
# Priority goes to Ubuntu packaged software first, then Debian packaged software! This facilitates easy and reliable maintenance and update. Users will benefit from it. Programmers are encouraged to move their software into [http://wiki.debian.org/DebianGis DebianGIS] or [https://wiki.ubuntu.com/UbuntuGIS UbuntuGIS] repositories.&lt;br /&gt;
# Stable, always! GISVM users are mainly starters. So they obviously are better with stable software. They have enough problems already and will gladly be happier without software bugs.&lt;br /&gt;
&lt;br /&gt;
For people who want the latest version, they can create an alternative upgrade script.&lt;br /&gt;
&lt;br /&gt;
== Low Memory ==&lt;br /&gt;
Both Virtual Machines, and a LiveDVD images are likely to be constrained by limited memory. So to reduce memory usage. Disk image size is not of major concern, as we can just distribute less data.&lt;br /&gt;
&lt;br /&gt;
The following principles should be followed. &lt;br /&gt;
# Do not start applications upon power up. (Ie, don't start deamons, allow users to start them instead).&lt;br /&gt;
# Set up examples which, by default, don't depend on other applications. Less applications open, means less memory. Ie, Have GeoServer access a shapefile instead of PostGIS.&lt;br /&gt;
# Try to avoid scenarios which write data to disk, as disk space in the Live DVD is stored in RAM, and is not cleared afterward.&lt;br /&gt;
&lt;br /&gt;
= Directory Structure =&lt;br /&gt;
# application are usually installed into /usr/lib&lt;br /&gt;
# things that get executed by the user such as startup scripts or links to them should go into /usr/bin&lt;br /&gt;
# startup/shutdown scripts for services (e.g., postgres, apache, tomcat) are stored in /etc/init.d&lt;br /&gt;
# sample data goes into /usr/local/share&lt;br /&gt;
# config files are stored in /etc&lt;br /&gt;
# user specific config files or working directories can go into /home/user. However, it will be appreciated if you can keep the amount of things in the user's home folder as small as possible.&lt;br /&gt;
&lt;br /&gt;
[[Category: Live-demo]]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Build&amp;diff=40586</id>
		<title>Live GIS Build</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Build&amp;diff=40586"/>
		<updated>2009-08-27T08:29:17Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=About=&lt;br /&gt;
&lt;br /&gt;
[http://gisvm.com/ GISVM] is an Xubuntu based Virtual Machine which has been installed with a suite of the best Open Source Geospatial software. It is also used to build [http://www.arramagong.com/Arramagong.html Arramagong], the Linux based Live DVD.&lt;br /&gt;
&lt;br /&gt;
=How to add your project or data to GISVM in 10 minutes=&lt;br /&gt;
&lt;br /&gt;
All that's required to add your favorite package into GISVM is to:&lt;br /&gt;
* write a shell script which installs and configures your stable package into the current GISVM virtual machine (which will usually be the same as installing on Xubuntu or Ubuntu).&lt;br /&gt;
* add the script to subversion, in https://svn.osgeo.org/osgeo/livedvd/gisvm/trunk/bin/&lt;br /&gt;
* Notify the GISVM team to test your script, and reference your script from ''main.sh''.&lt;br /&gt;
&lt;br /&gt;
The script may be as simple as:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''install_mapserver.sh''&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 # Copyright (c) 2009 The Open Source Geospatial Foundation.&lt;br /&gt;
 # Licensed under the GNU LGPL.&lt;br /&gt;
 # &lt;br /&gt;
 # About:&lt;br /&gt;
 # =====&lt;br /&gt;
 # This script will install mapserver&lt;br /&gt;
 #&lt;br /&gt;
 # Running:&lt;br /&gt;
 # =======&lt;br /&gt;
 # sudo ./install_mapserver.sh&lt;br /&gt;
 &lt;br /&gt;
 apt-get install cgi-mapserver&lt;br /&gt;
&lt;br /&gt;
= Build Drivers =&lt;br /&gt;
== Which version? ==&lt;br /&gt;
The criteria used to select applications for GISVM is as follows:&lt;br /&gt;
&lt;br /&gt;
# Priority goes to Ubuntu packaged software first, then Debian packaged software! This facilitates easy and reliable maintenance and update. Users will benefit from it. Programmers are encouraged to move their software into [http://wiki.debian.org/DebianGis DebianGIS] or [https://wiki.ubuntu.com/UbuntuGIS UbuntuGIS] repositories.&lt;br /&gt;
# Stable, always! GISVM users are mainly starters. So they obviously are better with stable software. They have enough problems already and will gladly be happier without software bugs.&lt;br /&gt;
&lt;br /&gt;
For people who want the latest version, they can create an alternative upgrade script.&lt;br /&gt;
&lt;br /&gt;
== Low Memory ==&lt;br /&gt;
Both Virtual Machines, and a LiveDVD images are likely to be constrained by limited memory. So to reduce memory usage. Disk image size is not of major concern, as we can just distribute less data.&lt;br /&gt;
&lt;br /&gt;
The following principles should be followed. &lt;br /&gt;
# Do not start applications upon power up. (Ie, don't start deamons, allow users to start them instead).&lt;br /&gt;
# Set up examples which, by default, don't depend on other applications. Less applications open, means less memory. Ie, Have GeoServer access a shapefile instead of PostGIS.&lt;br /&gt;
# Try to avoid scenarios which write data to disk, as disk space in the Live DVD is stored in RAM, and is not cleared afterward.&lt;br /&gt;
&lt;br /&gt;
= Directory Structure =&lt;br /&gt;
# application are usually installed into /usr/lib&lt;br /&gt;
# startup scripts or links to them should go into /usr/bin&lt;br /&gt;
# sample data goes into /usr/local/share&lt;br /&gt;
# config files are stored in /etc&lt;br /&gt;
# user specific config files or working directories can go into /home/user. However, it will be appreciated if you can keep the amount of things in the user's home folder as small as possible.&lt;br /&gt;
&lt;br /&gt;
[[Category: Live-demo]]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=FOSS4G_2009_Schedule&amp;diff=40570</id>
		<title>FOSS4G 2009 Schedule</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=FOSS4G_2009_Schedule&amp;diff=40570"/>
		<updated>2009-08-26T00:07:03Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Date !! FOSS4G, Derived from [http://docs.google.com/Doc?docid=dcd63bvv_14vzf642gg&amp;amp;hl=en master] !! [http://wiki.osgeo.org/wiki/Live_GIS_Disc LiveDVD] !! [http://external.opengis.org/twiki_public/bin/view/ClimateChallenge2009/WebHome Climate Change Integration Showcase (CCIP)]&lt;br /&gt;
|-&lt;br /&gt;
| 2 Feb 2009 || '''Call for Workshops/Tutorials opens''' || ||&lt;br /&gt;
|-&lt;br /&gt;
| 19 Feb 2009 || || [https://wiki.ubuntu.com/JauntyReleaseSchedule Ubuntu Jaunty Feature Freeze] ||&lt;br /&gt;
|-&lt;br /&gt;
| 2 Mar 2009 || Call for Workshops/Tutorials closes || ||&lt;br /&gt;
|-&lt;br /&gt;
| 9 Mar 2009 || '''Call for Abstracts opens''' || || &lt;br /&gt;
|-&lt;br /&gt;
| 30 Mar 2009 || Notification of acceptance for workshops/tutorials || || Core hardware live&lt;br /&gt;
|-&lt;br /&gt;
| 23 Apr 2009 || || [https://wiki.ubuntu.com/JauntyReleaseSchedule Ubuntu Jaunty Final Release] ||&lt;br /&gt;
|-&lt;br /&gt;
| 5 May 2009 || '''Registration for conference and tutorials opens''' || ||&lt;br /&gt;
|-&lt;br /&gt;
| 18 May 2009 || || || Call for Sponsors released&lt;br /&gt;
|-&lt;br /&gt;
| 25 May 2009 || 2 weeks till abstracts due reminder || ||&lt;br /&gt;
|-&lt;br /&gt;
| 26 May 2009 || || || Call for Participation released&lt;br /&gt;
|-&lt;br /&gt;
| 8 Jun 2009 || Abstract submission deadline || ||&lt;br /&gt;
|-&lt;br /&gt;
| 27 June 2009 || || || Call for Sponsors closes&lt;br /&gt;
|-&lt;br /&gt;
| 28 June 2009 || Abstract voting closes || ||&lt;br /&gt;
|-&lt;br /&gt;
| 20 Jul 2009 || Presenters notified of acceptance for talks || || Sponsored Scenario freeze&lt;br /&gt;
|-&lt;br /&gt;
| 20 Jul 2009 || || || Call for Participation closes&lt;br /&gt;
|-&lt;br /&gt;
| 27 Jul 2009 || || || Core Web Services installed (alpha)&lt;br /&gt;
|-&lt;br /&gt;
| 7 Aug 2009 || '''Early registration deadline''' || ||&lt;br /&gt;
|-&lt;br /&gt;
| 31 Aug 2009 || || || Beta Release: Data, Web Services, Clients, Scenarios&lt;br /&gt;
|-&lt;br /&gt;
| 4 Sep 2009 || || LiveDVD Feature Freeze  ||&lt;br /&gt;
|-&lt;br /&gt;
| 11 Sep 2009 || || LiveDVD Beta Release ||&lt;br /&gt;
|-&lt;br /&gt;
| 14 Sep 2009 || '''Completed program available on the wiki''' || ||&lt;br /&gt;
|-&lt;br /&gt;
| 18 Sep 2009 || || LiveDVD Final Freeze ||&lt;br /&gt;
|-&lt;br /&gt;
| 20 Sep 2009 || || LiveDVD Final Release &amp;amp; sent to printers ||&lt;br /&gt;
|-&lt;br /&gt;
| 21 Sep 2009 ||Printed Programme Deadline, Poster submission close || || [http://external.opengis.org/twiki_public/bin/view/ClimateChallenge2009/CompetitiveProcess]Plugfest award judging&lt;br /&gt;
|-&lt;br /&gt;
| 28 Sep 2009 || || || System installs on CCIP local system(s)&lt;br /&gt;
|-&lt;br /&gt;
| 29 Sep 2009 || Deadline for Workshop Printing and data directory submissions || || &lt;br /&gt;
|-&lt;br /&gt;
| 5 Oct 2009 || || || Feature freeze, Start Video production&lt;br /&gt;
|-&lt;br /&gt;
| 6 Oct 2009 || Programme to Printers || ||&lt;br /&gt;
|-&lt;br /&gt;
| 20 Oct 2009 || FOSS4G Workshop || ||&lt;br /&gt;
|-&lt;br /&gt;
| 21-23 Oct 2009 || FOSS4G Presentations and Tutorials || ||&lt;br /&gt;
|-&lt;br /&gt;
| 24-25 Oct 2009 || FOSS4G Code Sprint || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:FOSS4G2009]]&lt;br /&gt;
[[Category:FOSS4G]]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32883</id>
		<title>Live GIS Disc</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32883"/>
		<updated>2008-12-04T00:03:22Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: /* Packaging */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Communication ==&lt;br /&gt;
&lt;br /&gt;
* The project is coordinated on the [http://lists.osgeo.org/mailman/listinfo/live-demo OSGeo live-demo mailing list]&lt;br /&gt;
: The mailing list is [http://lists.osgeo.org/pipermail/live-demo/ archived here] and at [http://news.gmane.org/gmane.comp.gis.osgeo.livedemo Gmane]&lt;br /&gt;
* IRC will be on irc://freenode.net#osgeo&lt;br /&gt;
&lt;br /&gt;
== Long Term Plan ==&lt;br /&gt;
&lt;br /&gt;
Following the BOF session on 1 Oct, 2008 in Cape Town (and IRC), we've developed a broad plan for the future of the LiveDVD project.  I will attempt to summarise it.&lt;br /&gt;
&lt;br /&gt;
=== Use Cases ===&lt;br /&gt;
&lt;br /&gt;
There are multiple use cases for this product:&lt;br /&gt;
&lt;br /&gt;
* '''Demo DVD''' that can be handed out at conferences.&amp;lt;br /&amp;gt;This will contain a wide variety of applications, preconfigured with some sample data and containing introductory tutorials.  It should be able to function completely offline, at least within the scope of the tutorials, and should provide an introduction to many products.  This is very much a Live DVD, and as such should be conservative with regards to size (it will be run from RAM).&lt;br /&gt;
* '''Education DVD'''&amp;lt;br /&amp;gt;This seems to be a more involved version than the Demo DVD, including more involved material, including train-the-trainer style material.  This is targeted at those who will be teaching others, be it in workshops or university classes/labs.  My expectation (mleslie: feel free to correct me) is that this is more likely to be installed on machines and used as a teaching resource, as opposed to a toy to play with, as with the Demo DVD.  This will require material developed through the [[Category:Education|Education initiative]].&lt;br /&gt;
* '''Workstation Install DVD'''&amp;lt;br /&amp;gt;  This need was seen in Cape Town, where the bandwidth seems to be a very limiting factor.  Using the DVD to install either a complete OS, a set of packages to an existing Linux, or Windows installers completely offline is of great value in the developing world.  Would it be of greater value to lose the Edu or demo material and put in complete application documentation?&lt;br /&gt;
&lt;br /&gt;
=== Packaging ===&lt;br /&gt;
&lt;br /&gt;
The way forward was seen to require some proper packaging of every module used in the various products.  This means that every application needs to be packaged in a .deb file.  Datasets will be packaged in their own .deb files.  Application configurations, tutorials, documentation, education materials and the like would then be packaged separately, with dependencies defined to ensure the data and applications they need are in place.  &lt;br /&gt;
&lt;br /&gt;
Once these packages are created, it will be fairly easy to cut special-purpose images containing subsets of the available packages.  Standard images can be defined using 'virtual packages' that only contain dependencies.&lt;br /&gt;
&lt;br /&gt;
More information on our packaging efforts can be found here: [[Live_GIS_Disc_Packages]]&lt;br /&gt;
&lt;br /&gt;
=== Scripts and Tutorials ===&lt;br /&gt;
Besides debian-packages the project tries to provide scripts and tutorials on how to create a Live DVD. This will help interested people to create their own Live DVD customized for their personal needs.&lt;br /&gt;
&lt;br /&gt;
====Available Tutorials, Scripts, Instructions...====&lt;br /&gt;
* How to create a Live DVD from an existing Ubuntu/Xubuntu/LiveDemo installation: [[Creating_a_Live_GIS_DISC_from_scratch]]&lt;br /&gt;
&lt;br /&gt;
== Next Steps ==&lt;br /&gt;
&lt;br /&gt;
[[Live_GIS_Disc_Packages]] documents what is currently available through Debian repositories and OSGeo repositories, and what still needs to be packaged.&lt;br /&gt;
&lt;br /&gt;
The immediate steps (as of 2 Oct, 2008) are:&lt;br /&gt;
* Get a repository up and running (Tim Bowden as volunteered as repo maintainer, with guidance from Chris Schmidt)&lt;br /&gt;
* Complete the proper packaging of everything that made it on to the FOSS4G 2008 version&lt;br /&gt;
* Prod the Edu group for content that can be packaged.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Future Targets ==&lt;br /&gt;
&lt;br /&gt;
Here is an attempt at a list of milestones that should have DVD image releases.&lt;br /&gt;
&lt;br /&gt;
* GIS Day 2008, November 19th 2008&lt;br /&gt;
* [[AAG 2009]], March 2009&lt;br /&gt;
* FOSS4G 2009, November 2009&lt;br /&gt;
&lt;br /&gt;
== How to contribute? ==&lt;br /&gt;
Collaborating on a Live DVD is not that simple. Basically, only one person at&lt;br /&gt;
a time can work on the image. Also up- and downloading iso-images is rather &lt;br /&gt;
tedious. This was one of the reasons, why we decided to package everything that is supposed to&lt;br /&gt;
go on the DVD in debian-packages.&lt;br /&gt;
&lt;br /&gt;
So the best and easiest way to contribute is to create packages for geospatial&lt;br /&gt;
applications that have not been packaged yet, for sample data, configurations&lt;br /&gt;
or examples.&lt;br /&gt;
&lt;br /&gt;
Also this allows everyone who wants to create a customized version of the Live&lt;br /&gt;
DVD can install all the packages and examples and data he wants on and create &lt;br /&gt;
his own ISO-image.&lt;br /&gt;
&lt;br /&gt;
== Available Live Discs ==&lt;br /&gt;
&lt;br /&gt;
=== FOSS4G 2008 LiveDVD ===&lt;br /&gt;
&lt;br /&gt;
The discussion and planning for the FOSS4G 2008 LiveDVD has been archived [[FOSS4G2008_LiveDVD_discussion|here]].&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is now [[FOSS4G2008_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
=== Arramagong LiveDVD ===&lt;br /&gt;
&lt;br /&gt;
Currently LISAsoft is working on the Arramagong Live DVD, which was initially &lt;br /&gt;
based on Ominiverdi's Live CD.&lt;br /&gt;
&lt;br /&gt;
Arramagong is, like Ominiverdi's Live DVD, based on Xubuntu (currently v8.04).&lt;br /&gt;
Arrmagong adds a variety of geospatial software to it. This software is &lt;br /&gt;
preconfigured and comes with sample data and projects, so after booting from&lt;br /&gt;
the DVD, they can be immediately tested.  &lt;br /&gt;
&lt;br /&gt;
Recently LISAsoft released the a first beta version of Arramagong 1.0.&lt;br /&gt;
&lt;br /&gt;
====Arramagong Links====&lt;br /&gt;
*Homepage: http://www.arramagong.com&lt;br /&gt;
*Until we have an issue tracker, problems can be reported [[Arramagong_LiveDVD_issues|here]].&lt;br /&gt;
*ISO Images:&lt;br /&gt;
**Stable: http://download.osgeo.org/livedvd/Arramagong-Live-v0.11.iso&lt;br /&gt;
**Latest: http://download.osgeo.org/livedvd/Arramagong_v1.0Beta1.iso&lt;br /&gt;
&lt;br /&gt;
== Links to related projects ==&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.debian.org/DebianGis/LiveImages DebianGIS Live Image]&lt;br /&gt;
: [http://svn.debian.org/wsvn/pkg-grass/packages/debian-gis/?rev=0&amp;amp;sc=0 build scripts in SVN]&lt;br /&gt;
* [http://livecd.ominiverdi.org/index.php?page=LiveCD&amp;amp;toc=livecd Omniverdi LiveCD project]&lt;br /&gt;
* [http://grass.osgeo.org/download/cdrom.php List of live CDs from the GRASS download site]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Links to Build tool options ==&lt;br /&gt;
* [http://packages.debian.org/sid/live-helper live-helper]&lt;br /&gt;
* [http://www.gnewsense.org/Builder/HowToCreateYourOwnGNULinuxDistribution Gnewsense method]&lt;br /&gt;
* [http://www.howtoforge.com/ubuntu-linux-mint-livecd-with-remastersys Remastersys]&lt;br /&gt;
* [http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd Debian\Ubuntu Tricks]&lt;br /&gt;
* [https://help.ubuntu.com/community/LiveCDCustomization Ubuntu Help Way]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc_Packaging&amp;diff=32882</id>
		<title>Live GIS Disc Packaging</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc_Packaging&amp;diff=32882"/>
		<updated>2008-12-04T00:02:24Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: Removing all content from page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc_Packages&amp;diff=32881</id>
		<title>Live GIS Disc Packages</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc_Packages&amp;diff=32881"/>
		<updated>2008-12-04T00:02:00Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Goal=&lt;br /&gt;
The goal of creating packages for the Live GIS Disc is everything required to create a customized version of the Live Disc. &lt;br /&gt;
This includes Debian packages of&lt;br /&gt;
&lt;br /&gt;
* geospatial applications&lt;br /&gt;
* configuration files&lt;br /&gt;
* sample data&lt;br /&gt;
* sample projects and examples&lt;br /&gt;
&lt;br /&gt;
The efforts to provide Debian packages does not compete with the DebianGIS-project. Our focus is not on creating official packages for any applications. We only package applications where a project's build process or dependencies make it difficult to create a package fulfilling the official requirements and guidelines for a Debian package. Instead our focus is on packaging additional material (data, examples, configurations) in order to make them easily usable for everyone.&lt;br /&gt;
&lt;br /&gt;
==Guidelines==&lt;br /&gt;
* Basic rules of reuse apply.  If the same application configuration is used by more than one tutorial, it belongs in it's own package.  &lt;br /&gt;
* Standard version numbering is required to ensure compatibility as tutorials are updated.&lt;br /&gt;
* Packages should be compatible with both Ubuntu and Debian&lt;br /&gt;
* OSGeo should host a package repository for this work&lt;br /&gt;
* Applications should target release to official Debian repositories as a long-term goal&lt;br /&gt;
&lt;br /&gt;
==Meta-Packages==&lt;br /&gt;
Also working on packaging applications and additional material makes the collaboration between the different contributors of a project more easy.&lt;br /&gt;
&lt;br /&gt;
To allow for easily reproduce packages and repackaging we store scripts, config-files and instructions on how to build each package in the projects [http://svn.osgeo.org/osgeo/livedvd subversion repository].&lt;br /&gt;
&lt;br /&gt;
= Debian Repository =&lt;br /&gt;
&lt;br /&gt;
These sections describe what is in, and what we would like in, the Debian repositories.&lt;br /&gt;
&lt;br /&gt;
== Direct from Debian ==&lt;br /&gt;
 * GDAL/OGR (with Python, Perl, Ruby bindings)&lt;br /&gt;
 * mapserver &lt;br /&gt;
 * postgis&lt;br /&gt;
 * pgadmin&lt;br /&gt;
 * grass&lt;br /&gt;
 * gdal-grass plugin&lt;br /&gt;
 * proj&lt;br /&gt;
&lt;br /&gt;
For a complete list see [http://wiki.debian.org/DebianGis DebianGIS] [http://wiki.debian.org/DebianGis/PackageList Package list] and&lt;br /&gt;
[http://pkg-grass.alioth.debian.org/debiangis-status.html Package status] pages.&lt;br /&gt;
&lt;br /&gt;
== Not in Debian ==&lt;br /&gt;
 * qgis (just needs to be uploaded/approved)&lt;br /&gt;
 * geoserver&lt;br /&gt;
 * uDig&lt;br /&gt;
 * gvSig (some preliminary work done by a DD, issues pointed)&lt;br /&gt;
 * r-spatial&lt;br /&gt;
 * GeoNetwork&lt;br /&gt;
&lt;br /&gt;
== Possiblies ==&lt;br /&gt;
 * ossim (available on d-gis svn)&lt;br /&gt;
 * jump&lt;br /&gt;
 * WW Java (needs a custom app and testing on debian/ubuntu)  http://packages.ubuntu.com/source/intrepid/worldwind&lt;br /&gt;
&lt;br /&gt;
= OSGeo Repository =&lt;br /&gt;
&lt;br /&gt;
These sections describe the packages we have or want in the OSGeo repository.&lt;br /&gt;
&lt;br /&gt;
== Suggestions / Requests ==&lt;br /&gt;
&lt;br /&gt;
* Addition of some more python tools: &lt;br /&gt;
** OGR&lt;br /&gt;
** Shapely&lt;br /&gt;
** Featureserver &lt;br /&gt;
** Tilecache&lt;br /&gt;
** MapFish&lt;br /&gt;
* Add JTS-1.8.0, with a script to launch the TestBuilder as a demo&lt;br /&gt;
* Add OpenStreetMap stuff :&lt;br /&gt;
** JOSM&lt;br /&gt;
** Mapnik&lt;br /&gt;
* Add [http://packages.debian.org/gpsdrive GpsDrive]&lt;br /&gt;
: (Can render OpenStreetMap data with Mapnik; already packaged)&lt;br /&gt;
&lt;br /&gt;
= Meta-Packages =&lt;br /&gt;
&lt;br /&gt;
==Available packages==&lt;br /&gt;
&lt;br /&gt;
''The list is not complete.''&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Application !!On LiveDVD? !!Version on DVD !!Application packaged? !!Meta-package in SVN? !!Example available? !!Example packaged? !!Documenation available? !!Documentation packaged? !!Comment&lt;br /&gt;
|-&lt;br /&gt;
!Postgres/Postgis||YES||8.3.5/1.3.3-1||YES||NO||YES||NO||NO||NO&lt;br /&gt;
|-&lt;br /&gt;
!GeoServer||YES||1.7.0||YES||NO||YES||NO||NO||NO||Comes with examaple config, but needs additional config for postgis&lt;br /&gt;
|-&lt;br /&gt;
!Mapserver||YES||5.0.0-3||YES||NO||YES||NO||NO||NO||Example looks crap&lt;br /&gt;
|-&lt;br /&gt;
!GRASS||YES||6.3.0-0||YES||NO||YES||NO||NO||NO||&lt;br /&gt;
|-&lt;br /&gt;
!Qgis||YES||0.11.0-Metis||YES||NO||YES||NO||NO||NO||Better example needed&lt;br /&gt;
|-&lt;br /&gt;
!gvSIG||YES||1.1.2||NO||NO||YES||NO||NO||NO||Better example needed&lt;br /&gt;
|-&lt;br /&gt;
!uDig||YES||1.1.1||YES, only unofficially||YES||YES||YES||NO||NO||Better example needed&lt;br /&gt;
|-&lt;br /&gt;
!Open Layers||YES||2.6||NO||NO||YES||NO||NO||NO||Better example needed. Only on DVD as part of GeoServer&lt;br /&gt;
|-&lt;br /&gt;
!GeoNetwork||NO||||NO||NO||NO||NO||NO||NO||&lt;br /&gt;
|-&lt;br /&gt;
!Mapguide||NO||||NO||NO||NO||NO||NO||NO||&lt;br /&gt;
|-&lt;br /&gt;
!Open Jump||NO||||YES||NO||NO||NO||NO||NO||&lt;br /&gt;
|-&lt;br /&gt;
!Deegree||NO||||NO||NO||NO||NO||NO||NO||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: Software Stack]]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Creating_a_Live_GIS_DISC_from_scratch&amp;diff=32847</id>
		<title>Creating a Live GIS DISC from scratch</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Creating_a_Live_GIS_DISC_from_scratch&amp;diff=32847"/>
		<updated>2008-12-03T06:19:21Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=How to make a Live GIS Disc from scratch=&lt;br /&gt;
This document describes step by step how to generate an iso-image from an existing Ubuntu/Xubuntu installation.&lt;br /&gt;
&lt;br /&gt;
Instead of entering each single step by hand, you can also download scripts [http://svn.osgeo.org/osgeo/livedvd/scripts/trunk/LiveDVDFromScratch here], that execute the commands.&lt;br /&gt;
Please note, that you probably have to adjust the scripts a bit to get them to work on your system.&lt;br /&gt;
&lt;br /&gt;
'''This document and the scripts are based on:'''&lt;br /&gt;
* http://ubuntuforums.org/showthread.php?t=688872&lt;br /&gt;
* https://help.ubuntu.com/community/LiveCDCustomizationFromScratch&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Steps to create the Live DVD==&lt;br /&gt;
1. Install the current version of the Live DVD on your system or virtual machine or, in case you want to start from scratch, install a clean Ubuntu/Xubuntu.&lt;br /&gt;
&lt;br /&gt;
2. Remove any applications your don't want to have on your Live DVD.&lt;br /&gt;
&lt;br /&gt;
3. Install and configure all applications, data, examples, documentation you want to have on your Live DVD&lt;br /&gt;
&lt;br /&gt;
4. Configure the system as you wish. (Please note, that exisiting user won't be used on the Live DVD. However, you can copy later everything you want in the Live DVD's user's home-directory from your current user's home.)&lt;br /&gt;
&lt;br /&gt;
5. Adjust script iso.sh to your needs and execute it in your home-directory. Especially, add everthing to the CONFIG variable, you want to have in the standard user's home-directory. Or run the following commands:&lt;br /&gt;
   &lt;br /&gt;
 export WORK=$HOME/work&lt;br /&gt;
 export CD=$HOME/cd&lt;br /&gt;
 export FORMAT=squashfs&lt;br /&gt;
 export FS_DIR=casper&lt;br /&gt;
&lt;br /&gt;
 sudo mkdir -p ${CD}/${FS_DIR} ${CD}/boot/grub ${WORK}/rootfs&lt;br /&gt;
 sudo apt-get update&lt;br /&gt;
 sudo apt-get install mkisofs grub squashfs-tools&lt;br /&gt;
 sudo apt-get install linux-ubuntu-modules-$(uname -r)&lt;br /&gt;
 sudo apt-get clean&lt;br /&gt;
&lt;br /&gt;
 sudo rsync -av --one-file-system --exclude=/proc/* --exclude=/dev/*\&lt;br /&gt;
 --exclude=/sys/* --exclude=/tmp/* --exclude=/home/*\&lt;br /&gt;
 --exclude=/lost+found --exclude=/mnt/* --exclude=/var/www/tmp/*\&lt;br /&gt;
 / ${WORK}/rootfs&lt;br /&gt;
&lt;br /&gt;
 sudo cp -av /boot/* ${WORK}/rootfs/boot&lt;br /&gt;
&lt;br /&gt;
 CONFIG='.config .bashrc'&lt;br /&gt;
&lt;br /&gt;
 cd $HOME &amp;amp;&amp;amp; for i in $CONFIG&lt;br /&gt;
 do&lt;br /&gt;
 sudo cp -rpv --parents $i ${WORK}/rootfs/etc/skel&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
 sudo cp $HOME/scripts/inchroot.sh $WORK//rootfs/tmp/&lt;br /&gt;
&lt;br /&gt;
 sudo mount -o bind /dev/ ${WORK}/rootfs/dev&lt;br /&gt;
 sudo mount -t proc proc ${WORK}/rootfs/proc&lt;br /&gt;
 sudo chroot ${WORK}/rootfs /bin/bash&lt;br /&gt;
	&lt;br /&gt;
You should be now in a chroot-environment.&lt;br /&gt;
	&lt;br /&gt;
6. Adjust and execute now the sript 'inchroot.sh', which should be located in '/tmp' of the chroot environment. Or execute the following commands:&lt;br /&gt;
&lt;br /&gt;
 LANG=&lt;br /&gt;
 apt-get update&lt;br /&gt;
 apt-get install casper xresprobe &lt;br /&gt;
 #apt-get ubiquity #optinal. Installs ubiquity&lt;br /&gt;
 depmod -a $(uname -r)&lt;br /&gt;
 update-initramfs -u -k $(uname -r)&lt;br /&gt;
 for i in &amp;quot;/etc/hosts /etc/hostname /etc/resolv.conf /etc/timezone /etc/fstab /etc/mtab /etc/shadow /etc/shadow- /etc/gshadow  /etc/gshadow- /etc/gdm/gdm-cdd.conf /etc/gdm/gdm.conf-custom 	/etc/X11/xorg.conf /boot/grub/menu.lst /boot/grub/device.map&amp;quot;&lt;br /&gt;
 do&lt;br /&gt;
 rm $i&lt;br /&gt;
 done 2&amp;gt;/dev/null&lt;br /&gt;
 apt-get clean&lt;br /&gt;
 rm -r /tmp/* /root/* 2&amp;gt;/dev/null&lt;br /&gt;
 rm  /boot/*.bak 2&amp;gt;/dev/null&lt;br /&gt;
&lt;br /&gt;
 for i in `cat /etc/passwd | awk -F&amp;quot;:&amp;quot; '{print $1}'`&lt;br /&gt;
 do&lt;br /&gt;
 uid=`cat /etc/passwd | grep &amp;quot;^${i}:&amp;quot; | awk -F&amp;quot;:&amp;quot; '{print $3}'`&lt;br /&gt;
 [ &amp;quot;$uid&amp;quot; -gt &amp;quot;999&amp;quot; -a  &amp;quot;$uid&amp;quot; -ne &amp;quot;65534&amp;quot;  ] &amp;amp;&amp;amp; userdel --force ${i} 2&amp;gt;/dev/null&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
 find /var/run /var/log /var/mail /var/spool /var/lock /var/backups /var/tmp -type f -exec rm {} \;&lt;br /&gt;
&lt;br /&gt;
 [ -f &amp;quot;/etc/gdm/factory-gdm.conf&amp;quot; ] &amp;amp;&amp;amp; cp -f /etc/gdm/factory-gdm.conf /etc/gdm/gdm.conf 2&amp;gt;/dev/null&lt;br /&gt;
&lt;br /&gt;
 for i in dpkg.log lastlog mail.log syslog auth.log daemon.log faillog lpr.log mail.warn user.log boot debug mail.err messages wtmp bootstrap.log dmesg kern.log mail.info&lt;br /&gt;
 do&lt;br /&gt;
 touch /var/log/${i}&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
7. Exit the chroot environemnt by entering 'exit'.&lt;br /&gt;
&lt;br /&gt;
8. Adjust and execute the script 'iso2.sh'. Or enter the following commands:&lt;br /&gt;
&lt;br /&gt;
 cd $HOME&lt;br /&gt;
 export WORK=$HOME/work&lt;br /&gt;
 export CD=$HOME/cd&lt;br /&gt;
 export FORMAT=squashfs&lt;br /&gt;
 export FS_DIR=casper&lt;br /&gt;
 export IMAGE_VERSION=1.0Beta1&lt;br /&gt;
&lt;br /&gt;
 sudo cp -vp ${WORK}/rootfs/boot/vmlinuz-$(uname -r) ${CD}/casper/vmlinuz&lt;br /&gt;
 sudo cp -vp ${WORK}/rootfs/boot/initrd.img-$(uname -r) ${CD}/casper/initrd.gz&lt;br /&gt;
&lt;br /&gt;
 # The following steps are only required, if ubiquity will be installed.&lt;br /&gt;
 #sudo chroot ${WORK}/rootfs dpkg-query -W --showformat='${Package} ${Version}\n' | sudo tee ${CD}/${FS_DIR}/filesystem.manifest&lt;br /&gt;
 #sudo cp -v ${CD}/${FS_DIR}/filesystem.manifest ${CD}/${FS_DIR}/filesystem.manifest-desktop&lt;br /&gt;
 #REMOVE='ubiquity casper user-setup discover1 xresprobe os-prober libdebian-installer4'&lt;br /&gt;
 #for i in $REMOVE &lt;br /&gt;
 #do&lt;br /&gt;
 #	sudo sed -i &amp;quot;/${i}/d&amp;quot; ${CD}/${FS_DIR}/filesystem.manifest-desktop&lt;br /&gt;
 #done&lt;br /&gt;
&lt;br /&gt;
 sudo umount ${WORK}/rootfs/proc&lt;br /&gt;
 sudo umount ${WORK}/rootfs/sys&lt;br /&gt;
 sudo umount ${WORK}/rootfs/dev&lt;br /&gt;
&lt;br /&gt;
 sudo mksquashfs ${WORK}/rootfs ${CD}/${FS_DIR}/filesystem.${FORMAT} -noappend -no-duplicates&lt;br /&gt;
&lt;br /&gt;
 sudo cp -rf /mnt/ralph/save/add2cd/* ${CD}/&lt;br /&gt;
 sudo rm -rf ${CD}/boot&lt;br /&gt;
&lt;br /&gt;
 cd $CD &amp;amp;&amp;amp; find . -type f -print0 | xargs -0 sudo md5sum | sudo tee ${CD}/md5sum.txt&lt;br /&gt;
 sudo mkisofs -r -V &amp;quot;Arramagong_v$IMAGE_VERSION&amp;quot; -cache-inodes -J -l -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o 	$HOME/Arramagong_v$IMAGE_VERSION.iso .&lt;br /&gt;
	&lt;br /&gt;
9. Run the script &amp;quot;test.sh&amp;quot;, or enter the following commands:&lt;br /&gt;
&lt;br /&gt;
 cd $HOME&lt;br /&gt;
 export WORK=$HOME/work&lt;br /&gt;
 export CD=$HOME/cd&lt;br /&gt;
 export FORMAT=squashfs&lt;br /&gt;
 export FS_DIR=casper&lt;br /&gt;
 export IMAGE_VERSION=1.0Beta1&lt;br /&gt;
&lt;br /&gt;
 sudo mkdir /tmp/livecd&lt;br /&gt;
 sudo mount -o loop ~/Arramagong_v$IMAGE_VERSION.iso /tmp/livecd&lt;br /&gt;
 cd /tmp/livecd&lt;br /&gt;
 sudo md5sum -c md5sum.txt&lt;br /&gt;
	&lt;br /&gt;
If the sript finds any errors, adjust and run the script 'repair.sh' or the following commands:&lt;br /&gt;
	&lt;br /&gt;
 cd $HOME&lt;br /&gt;
 export WORK=$HOME/work&lt;br /&gt;
 export CD=$HOME/cd&lt;br /&gt;
 export FORMAT=squashfs&lt;br /&gt;
 export FS_DIR=casper&lt;br /&gt;
 export IMAGE_VERSION=1.0Beta1&lt;br /&gt;
&lt;br /&gt;
 sudo rm cd/md5sum.txt&lt;br /&gt;
 cd $CD &amp;amp;&amp;amp; find . -type f -print0 | xargs -0 sudo md5sum | sudo tee ${CD}/md5sum.txt&lt;br /&gt;
 sudo mkisofs -r -V &amp;quot;Arramagong_v$IMAGE_VERSION&amp;quot; -cache-inodes -J -l -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o $HOME/Arramagong_v$IMAGE_VERSION.iso .&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Creating_a_Live_GIS_DISC_from_scratch&amp;diff=32846</id>
		<title>Creating a Live GIS DISC from scratch</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Creating_a_Live_GIS_DISC_from_scratch&amp;diff=32846"/>
		<updated>2008-12-03T06:13:49Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: New page: =How to make a Live GIS Disc from scratch= This document describes step by step how to generate an iso-image from an existing Ubuntu/Xubuntu installation.  Instead of entering each single ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=How to make a Live GIS Disc from scratch=&lt;br /&gt;
This document describes step by step how to generate an iso-image from an existing Ubuntu/Xubuntu installation.&lt;br /&gt;
&lt;br /&gt;
Instead of entering each single step by hand, you can also download scripts [http://svn.osgeo.org/osgeo/livedvd/scripts/trunk/LiveDVDFromScratch here], that execute the commands.&lt;br /&gt;
Please note, that you probably have to adjust the scripts a bit to get them to work on your system.&lt;br /&gt;
&lt;br /&gt;
==Steps to create the Live DVD==&lt;br /&gt;
1. Install the current version of the Live DVD on your system or virtual machine or, in case you want to start from scratch, install a clean Ubuntu/Xubuntu.&lt;br /&gt;
&lt;br /&gt;
2. Remove any applications your don't want to have on your Live DVD.&lt;br /&gt;
&lt;br /&gt;
3. Install and configure all applications, data, examples, documentation you want to have on your Live DVD&lt;br /&gt;
&lt;br /&gt;
4. Configure the system as you wish. (Please note, that exisiting user won't be used on the Live DVD. However, you can copy later everything you want in the Live DVD's user's home-directory from your current user's home.)&lt;br /&gt;
&lt;br /&gt;
5. Adjust script iso.sh to your needs and execute it in your home-directory. Especially, add everthing to the CONFIG variable, you want to have in the standard user's home-directory. Or run the following commands:&lt;br /&gt;
   &lt;br /&gt;
 export WORK=$HOME/work&lt;br /&gt;
 export CD=$HOME/cd&lt;br /&gt;
 export FORMAT=squashfs&lt;br /&gt;
 export FS_DIR=casper&lt;br /&gt;
&lt;br /&gt;
 sudo mkdir -p ${CD}/${FS_DIR} ${CD}/boot/grub ${WORK}/rootfs&lt;br /&gt;
 sudo apt-get update&lt;br /&gt;
 sudo apt-get install mkisofs grub squashfs-tools&lt;br /&gt;
 sudo apt-get install linux-ubuntu-modules-$(uname -r)&lt;br /&gt;
 sudo apt-get clean&lt;br /&gt;
&lt;br /&gt;
 sudo rsync -av --one-file-system --exclude=/proc/* --exclude=/dev/*\&lt;br /&gt;
 --exclude=/sys/* --exclude=/tmp/* --exclude=/home/*\&lt;br /&gt;
 --exclude=/lost+found --exclude=/mnt/* --exclude=/var/www/tmp/*\&lt;br /&gt;
 / ${WORK}/rootfs&lt;br /&gt;
&lt;br /&gt;
 sudo cp -av /boot/* ${WORK}/rootfs/boot&lt;br /&gt;
&lt;br /&gt;
 CONFIG='.config .bashrc'&lt;br /&gt;
&lt;br /&gt;
 cd $HOME &amp;amp;&amp;amp; for i in $CONFIG&lt;br /&gt;
 do&lt;br /&gt;
 sudo cp -rpv --parents $i ${WORK}/rootfs/etc/skel&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
 sudo cp $HOME/scripts/inchroot.sh $WORK//rootfs/tmp/&lt;br /&gt;
&lt;br /&gt;
 sudo mount -o bind /dev/ ${WORK}/rootfs/dev&lt;br /&gt;
 sudo mount -t proc proc ${WORK}/rootfs/proc&lt;br /&gt;
 sudo chroot ${WORK}/rootfs /bin/bash&lt;br /&gt;
	&lt;br /&gt;
You should be now in a chroot-environment.&lt;br /&gt;
	&lt;br /&gt;
6. Adjust and execute now the sript 'inchroot.sh', which should be located in '/tmp' of the chroot environment. Or execute the following commands:&lt;br /&gt;
&lt;br /&gt;
 LANG=&lt;br /&gt;
 apt-get update&lt;br /&gt;
 apt-get install casper xresprobe &lt;br /&gt;
 #apt-get ubiquity #optinal. Installs ubiquity&lt;br /&gt;
 depmod -a $(uname -r)&lt;br /&gt;
 update-initramfs -u -k $(uname -r)&lt;br /&gt;
 for i in &amp;quot;/etc/hosts /etc/hostname /etc/resolv.conf /etc/timezone /etc/fstab /etc/mtab /etc/shadow /etc/shadow- /etc/gshadow  /etc/gshadow- /etc/gdm/gdm-cdd.conf /etc/gdm/gdm.conf-custom 	/etc/X11/xorg.conf /boot/grub/menu.lst /boot/grub/device.map&amp;quot;&lt;br /&gt;
 do&lt;br /&gt;
 rm $i&lt;br /&gt;
 done 2&amp;gt;/dev/null&lt;br /&gt;
 apt-get clean&lt;br /&gt;
 rm -r /tmp/* /root/* 2&amp;gt;/dev/null&lt;br /&gt;
 rm  /boot/*.bak 2&amp;gt;/dev/null&lt;br /&gt;
&lt;br /&gt;
 for i in `cat /etc/passwd | awk -F&amp;quot;:&amp;quot; '{print $1}'`&lt;br /&gt;
 do&lt;br /&gt;
 uid=`cat /etc/passwd | grep &amp;quot;^${i}:&amp;quot; | awk -F&amp;quot;:&amp;quot; '{print $3}'`&lt;br /&gt;
 [ &amp;quot;$uid&amp;quot; -gt &amp;quot;999&amp;quot; -a  &amp;quot;$uid&amp;quot; -ne &amp;quot;65534&amp;quot;  ] &amp;amp;&amp;amp; userdel --force ${i} 2&amp;gt;/dev/null&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
 find /var/run /var/log /var/mail /var/spool /var/lock /var/backups /var/tmp -type f -exec rm {} \;&lt;br /&gt;
&lt;br /&gt;
 [ -f &amp;quot;/etc/gdm/factory-gdm.conf&amp;quot; ] &amp;amp;&amp;amp; cp -f /etc/gdm/factory-gdm.conf /etc/gdm/gdm.conf 2&amp;gt;/dev/null&lt;br /&gt;
&lt;br /&gt;
 for i in dpkg.log lastlog mail.log syslog auth.log daemon.log faillog lpr.log mail.warn user.log boot debug mail.err messages wtmp bootstrap.log dmesg kern.log mail.info&lt;br /&gt;
 do&lt;br /&gt;
 touch /var/log/${i}&lt;br /&gt;
 done&lt;br /&gt;
&lt;br /&gt;
7. Exit the chroot environemnt by entering 'exit'.&lt;br /&gt;
&lt;br /&gt;
8. Adjust and execute the script 'iso2.sh'. Or enter the following commands:&lt;br /&gt;
&lt;br /&gt;
 cd $HOME&lt;br /&gt;
 export WORK=$HOME/work&lt;br /&gt;
 export CD=$HOME/cd&lt;br /&gt;
 export FORMAT=squashfs&lt;br /&gt;
 export FS_DIR=casper&lt;br /&gt;
 export IMAGE_VERSION=1.0Beta1&lt;br /&gt;
&lt;br /&gt;
 sudo cp -vp ${WORK}/rootfs/boot/vmlinuz-$(uname -r) ${CD}/casper/vmlinuz&lt;br /&gt;
 sudo cp -vp ${WORK}/rootfs/boot/initrd.img-$(uname -r) ${CD}/casper/initrd.gz&lt;br /&gt;
&lt;br /&gt;
 # The following steps are only required, if ubiquity will be installed.&lt;br /&gt;
 #sudo chroot ${WORK}/rootfs dpkg-query -W --showformat='${Package} ${Version}\n' | sudo tee ${CD}/${FS_DIR}/filesystem.manifest&lt;br /&gt;
 #sudo cp -v ${CD}/${FS_DIR}/filesystem.manifest ${CD}/${FS_DIR}/filesystem.manifest-desktop&lt;br /&gt;
 #REMOVE='ubiquity casper user-setup discover1 xresprobe os-prober libdebian-installer4'&lt;br /&gt;
 #for i in $REMOVE &lt;br /&gt;
 #do&lt;br /&gt;
 #	sudo sed -i &amp;quot;/${i}/d&amp;quot; ${CD}/${FS_DIR}/filesystem.manifest-desktop&lt;br /&gt;
 #done&lt;br /&gt;
&lt;br /&gt;
 sudo umount ${WORK}/rootfs/proc&lt;br /&gt;
 sudo umount ${WORK}/rootfs/sys&lt;br /&gt;
 sudo umount ${WORK}/rootfs/dev&lt;br /&gt;
&lt;br /&gt;
 sudo mksquashfs ${WORK}/rootfs ${CD}/${FS_DIR}/filesystem.${FORMAT} -noappend -no-duplicates&lt;br /&gt;
&lt;br /&gt;
 sudo cp -rf /mnt/ralph/save/add2cd/* ${CD}/&lt;br /&gt;
 sudo rm -rf ${CD}/boot&lt;br /&gt;
&lt;br /&gt;
 cd $CD &amp;amp;&amp;amp; find . -type f -print0 | xargs -0 sudo md5sum | sudo tee ${CD}/md5sum.txt&lt;br /&gt;
 sudo mkisofs -r -V &amp;quot;Arramagong_v$IMAGE_VERSION&amp;quot; -cache-inodes -J -l -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o 	$HOME/Arramagong_v$IMAGE_VERSION.iso .&lt;br /&gt;
	&lt;br /&gt;
9. Run the script &amp;quot;test.sh&amp;quot;, or enter the following commands:&lt;br /&gt;
&lt;br /&gt;
 cd $HOME&lt;br /&gt;
 export WORK=$HOME/work&lt;br /&gt;
 export CD=$HOME/cd&lt;br /&gt;
 export FORMAT=squashfs&lt;br /&gt;
 export FS_DIR=casper&lt;br /&gt;
 export IMAGE_VERSION=1.0Beta1&lt;br /&gt;
&lt;br /&gt;
 sudo mkdir /tmp/livecd&lt;br /&gt;
 sudo mount -o loop ~/Arramagong_v$IMAGE_VERSION.iso /tmp/livecd&lt;br /&gt;
 cd /tmp/livecd&lt;br /&gt;
 sudo md5sum -c md5sum.txt&lt;br /&gt;
	&lt;br /&gt;
If the sript finds any errors, adjust and run the script 'repair.sh' or the following commands:&lt;br /&gt;
	&lt;br /&gt;
 cd $HOME&lt;br /&gt;
 export WORK=$HOME/work&lt;br /&gt;
 export CD=$HOME/cd&lt;br /&gt;
 export FORMAT=squashfs&lt;br /&gt;
 export FS_DIR=casper&lt;br /&gt;
 export IMAGE_VERSION=1.0Beta1&lt;br /&gt;
&lt;br /&gt;
 sudo rm cd/md5sum.txt&lt;br /&gt;
 cd $CD &amp;amp;&amp;amp; find . -type f -print0 | xargs -0 sudo md5sum | sudo tee ${CD}/md5sum.txt&lt;br /&gt;
 sudo mkisofs -r -V &amp;quot;Arramagong_v$IMAGE_VERSION&amp;quot; -cache-inodes -J -l -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o $HOME/Arramagong_v$IMAGE_VERSION.iso .&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32845</id>
		<title>Live GIS Disc</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32845"/>
		<updated>2008-12-03T06:10:12Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: /* Long Term Plan */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Communication ==&lt;br /&gt;
&lt;br /&gt;
* The project is coordinated on the [http://lists.osgeo.org/mailman/listinfo/live-demo OSGeo live-demo mailing list]&lt;br /&gt;
: The mailing list is [http://lists.osgeo.org/pipermail/live-demo/ archived here] and at [http://news.gmane.org/gmane.comp.gis.osgeo.livedemo Gmane]&lt;br /&gt;
* IRC will be on irc://freenode.net#osgeo&lt;br /&gt;
&lt;br /&gt;
== Long Term Plan ==&lt;br /&gt;
&lt;br /&gt;
Following the BOF session on 1 Oct, 2008 in Cape Town (and IRC), we've developed a broad plan for the future of the LiveDVD project.  I will attempt to summarise it.&lt;br /&gt;
&lt;br /&gt;
=== Use Cases ===&lt;br /&gt;
&lt;br /&gt;
There are multiple use cases for this product:&lt;br /&gt;
&lt;br /&gt;
* '''Demo DVD''' that can be handed out at conferences.&amp;lt;br /&amp;gt;This will contain a wide variety of applications, preconfigured with some sample data and containing introductory tutorials.  It should be able to function completely offline, at least within the scope of the tutorials, and should provide an introduction to many products.  This is very much a Live DVD, and as such should be conservative with regards to size (it will be run from RAM).&lt;br /&gt;
* '''Education DVD'''&amp;lt;br /&amp;gt;This seems to be a more involved version than the Demo DVD, including more involved material, including train-the-trainer style material.  This is targeted at those who will be teaching others, be it in workshops or university classes/labs.  My expectation (mleslie: feel free to correct me) is that this is more likely to be installed on machines and used as a teaching resource, as opposed to a toy to play with, as with the Demo DVD.  This will require material developed through the [[Category:Education|Education initiative]].&lt;br /&gt;
* '''Workstation Install DVD'''&amp;lt;br /&amp;gt;  This need was seen in Cape Town, where the bandwidth seems to be a very limiting factor.  Using the DVD to install either a complete OS, a set of packages to an existing Linux, or Windows installers completely offline is of great value in the developing world.  Would it be of greater value to lose the Edu or demo material and put in complete application documentation?&lt;br /&gt;
&lt;br /&gt;
=== Packaging ===&lt;br /&gt;
&lt;br /&gt;
The way forward was seen to require some proper packaging of every module used in the various products.  This means that every application needs to be packaged in a .deb file.  Datasets will be packaged in their own .deb files.  Application configurations, tutorials, documentation, education materials and the like would then be packaged separately, with dependencies defined to ensure the data and applications they need are in place.  &lt;br /&gt;
&lt;br /&gt;
Once these packages are created, it will be fairly easy to cut special-purpose images containing subsets of the available packages.  Standard images can be defined using 'virtual packages' that only contain dependencies.&lt;br /&gt;
&lt;br /&gt;
More information on our packaging efforts can be found here: [[Live_GIS_Disc_Packaging]]&lt;br /&gt;
&lt;br /&gt;
=== Scripts and Tutorials ===&lt;br /&gt;
Besides debian-packages the project tries to provide scripts and tutorials on how to create a Live DVD. This will help interested people to create their own Live DVD customized for their personal needs.&lt;br /&gt;
&lt;br /&gt;
====Available Tutorials, Scripts, Instructions...====&lt;br /&gt;
* How to create a Live DVD from an existing Ubuntu/Xubuntu/LiveDemo installation: [[Creating_a_Live_GIS_DISC_from_scratch]]&lt;br /&gt;
&lt;br /&gt;
== Next Steps ==&lt;br /&gt;
&lt;br /&gt;
[[Live_GIS_Disc_Packages]] documents what is currently available through Debian repositories and OSGeo repositories, and what still needs to be packaged.&lt;br /&gt;
&lt;br /&gt;
The immediate steps (as of 2 Oct, 2008) are:&lt;br /&gt;
* Get a repository up and running (Tim Bowden as volunteered as repo maintainer, with guidance from Chris Schmidt)&lt;br /&gt;
* Complete the proper packaging of everything that made it on to the FOSS4G 2008 version&lt;br /&gt;
* Prod the Edu group for content that can be packaged.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Future Targets ==&lt;br /&gt;
&lt;br /&gt;
Here is an attempt at a list of milestones that should have DVD image releases.&lt;br /&gt;
&lt;br /&gt;
* GIS Day 2008, November 19th 2008&lt;br /&gt;
* [[AAG 2009]], March 2009&lt;br /&gt;
* FOSS4G 2009, November 2009&lt;br /&gt;
&lt;br /&gt;
== How to contribute? ==&lt;br /&gt;
Collaborating on a Live DVD is not that simple. Basically, only one person at&lt;br /&gt;
a time can work on the image. Also up- and downloading iso-images is rather &lt;br /&gt;
tedious. This was one of the reasons, why we decided to package everything that is supposed to&lt;br /&gt;
go on the DVD in debian-packages.&lt;br /&gt;
&lt;br /&gt;
So the best and easiest way to contribute is to create packages for geospatial&lt;br /&gt;
applications that have not been packaged yet, for sample data, configurations&lt;br /&gt;
or examples.&lt;br /&gt;
&lt;br /&gt;
Also this allows everyone who wants to create a customized version of the Live&lt;br /&gt;
DVD can install all the packages and examples and data he wants on and create &lt;br /&gt;
his own ISO-image.&lt;br /&gt;
&lt;br /&gt;
== Available Live Discs ==&lt;br /&gt;
&lt;br /&gt;
=== FOSS4G 2008 LiveDVD ===&lt;br /&gt;
&lt;br /&gt;
The discussion and planning for the FOSS4G 2008 LiveDVD has been archived [[FOSS4G2008_LiveDVD_discussion|here]].&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is now [[FOSS4G2008_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
=== Arramagong LiveDVD ===&lt;br /&gt;
&lt;br /&gt;
Currently LISAsoft is working on the Arramagong Live DVD, which was initially &lt;br /&gt;
based on Ominiverdi's Live CD.&lt;br /&gt;
&lt;br /&gt;
Arramagong is, like Ominiverdi's Live DVD, based on Xubuntu (currently v8.04).&lt;br /&gt;
Arrmagong adds a variety of geospatial software to it. This software is &lt;br /&gt;
preconfigured and comes with sample data and projects, so after booting from&lt;br /&gt;
the DVD, they can be immediately tested.  &lt;br /&gt;
&lt;br /&gt;
Recently LISAsoft released the a first beta version of Arramagong 1.0.&lt;br /&gt;
&lt;br /&gt;
====Arramagong Links====&lt;br /&gt;
*Homepage: http://www.arramagong.com&lt;br /&gt;
*Until we have an issue tracker, problems can be reported [[Arramagong_LiveDVD_issues|here]].&lt;br /&gt;
*ISO Images:&lt;br /&gt;
**Stable: http://download.osgeo.org/livedvd/Arramagong-Live-v0.11.iso&lt;br /&gt;
**Latest: http://download.osgeo.org/livedvd/Arramagong_v1.0Beta1.iso&lt;br /&gt;
&lt;br /&gt;
== Links to related projects ==&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.debian.org/DebianGis/LiveImages DebianGIS Live Image]&lt;br /&gt;
: [http://svn.debian.org/wsvn/pkg-grass/packages/debian-gis/?rev=0&amp;amp;sc=0 build scripts in SVN]&lt;br /&gt;
* [http://livecd.ominiverdi.org/index.php?page=LiveCD&amp;amp;toc=livecd Omniverdi LiveCD project]&lt;br /&gt;
* [http://grass.osgeo.org/download/cdrom.php List of live CDs from the GRASS download site]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Links to Build tool options ==&lt;br /&gt;
* [http://packages.debian.org/sid/live-helper live-helper]&lt;br /&gt;
* [http://www.gnewsense.org/Builder/HowToCreateYourOwnGNULinuxDistribution Gnewsense method]&lt;br /&gt;
* [http://www.howtoforge.com/ubuntu-linux-mint-livecd-with-remastersys Remastersys]&lt;br /&gt;
* [http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd Debian\Ubuntu Tricks]&lt;br /&gt;
* [https://help.ubuntu.com/community/LiveCDCustomization Ubuntu Help Way]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32844</id>
		<title>Live GIS Disc</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32844"/>
		<updated>2008-12-03T06:08:56Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Communication ==&lt;br /&gt;
&lt;br /&gt;
* The project is coordinated on the [http://lists.osgeo.org/mailman/listinfo/live-demo OSGeo live-demo mailing list]&lt;br /&gt;
: The mailing list is [http://lists.osgeo.org/pipermail/live-demo/ archived here] and at [http://news.gmane.org/gmane.comp.gis.osgeo.livedemo Gmane]&lt;br /&gt;
* IRC will be on irc://freenode.net#osgeo&lt;br /&gt;
&lt;br /&gt;
== Long Term Plan ==&lt;br /&gt;
&lt;br /&gt;
Following the BOF session on 1 Oct, 2008 in Cape Town (and IRC), we've developed a broad plan for the future of the LiveDVD project.  I will attempt to summarise it.&lt;br /&gt;
&lt;br /&gt;
=== Use Cases ===&lt;br /&gt;
&lt;br /&gt;
There are multiple use cases for this product:&lt;br /&gt;
&lt;br /&gt;
* '''Demo DVD''' that can be handed out at conferences.&amp;lt;br /&amp;gt;This will contain a wide variety of applications, preconfigured with some sample data and containing introductory tutorials.  It should be able to function completely offline, at least within the scope of the tutorials, and should provide an introduction to many products.  This is very much a Live DVD, and as such should be conservative with regards to size (it will be run from RAM).&lt;br /&gt;
* '''Education DVD'''&amp;lt;br /&amp;gt;This seems to be a more involved version than the Demo DVD, including more involved material, including train-the-trainer style material.  This is targeted at those who will be teaching others, be it in workshops or university classes/labs.  My expectation (mleslie: feel free to correct me) is that this is more likely to be installed on machines and used as a teaching resource, as opposed to a toy to play with, as with the Demo DVD.  This will require material developed through the [[Category:Education|Education initiative]].&lt;br /&gt;
* '''Workstation Install DVD'''&amp;lt;br /&amp;gt;  This need was seen in Cape Town, where the bandwidth seems to be a very limiting factor.  Using the DVD to install either a complete OS, a set of packages to an existing Linux, or Windows installers completely offline is of great value in the developing world.  Would it be of greater value to lose the Edu or demo material and put in complete application documentation?&lt;br /&gt;
&lt;br /&gt;
=== Packaging ===&lt;br /&gt;
&lt;br /&gt;
The way forward was seen to require some proper packaging of every module used in the various products.  This means that every application needs to be packaged in a .deb file.  Datasets will be packaged in their own .deb files.  Application configurations, tutorials, documentation, education materials and the like would then be packaged separately, with dependencies defined to ensure the data and applications they need are in place.  &lt;br /&gt;
&lt;br /&gt;
Once these packages are created, it will be fairly easy to cut special-purpose images containing subsets of the available packages.  Standard images can be defined using 'virtual packages' that only contain dependencies.&lt;br /&gt;
&lt;br /&gt;
More information on our packaging efforts can be found here: [[Live_GIS_Disc_Packaging]]&lt;br /&gt;
&lt;br /&gt;
== Next Steps ==&lt;br /&gt;
&lt;br /&gt;
[[Live_GIS_Disc_Packages]] documents what is currently available through Debian repositories and OSGeo repositories, and what still needs to be packaged.&lt;br /&gt;
&lt;br /&gt;
The immediate steps (as of 2 Oct, 2008) are:&lt;br /&gt;
* Get a repository up and running (Tim Bowden as volunteered as repo maintainer, with guidance from Chris Schmidt)&lt;br /&gt;
* Complete the proper packaging of everything that made it on to the FOSS4G 2008 version&lt;br /&gt;
* Prod the Edu group for content that can be packaged.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Future Targets ==&lt;br /&gt;
&lt;br /&gt;
Here is an attempt at a list of milestones that should have DVD image releases.&lt;br /&gt;
&lt;br /&gt;
* GIS Day 2008, November 19th 2008&lt;br /&gt;
* [[AAG 2009]], March 2009&lt;br /&gt;
* FOSS4G 2009, November 2009&lt;br /&gt;
&lt;br /&gt;
== How to contribute? ==&lt;br /&gt;
Collaborating on a Live DVD is not that simple. Basically, only one person at&lt;br /&gt;
a time can work on the image. Also up- and downloading iso-images is rather &lt;br /&gt;
tedious. This was one of the reasons, why we decided to package everything that is supposed to&lt;br /&gt;
go on the DVD in debian-packages.&lt;br /&gt;
&lt;br /&gt;
So the best and easiest way to contribute is to create packages for geospatial&lt;br /&gt;
applications that have not been packaged yet, for sample data, configurations&lt;br /&gt;
or examples.&lt;br /&gt;
&lt;br /&gt;
Also this allows everyone who wants to create a customized version of the Live&lt;br /&gt;
DVD can install all the packages and examples and data he wants on and create &lt;br /&gt;
his own ISO-image.&lt;br /&gt;
&lt;br /&gt;
== Available Live Discs ==&lt;br /&gt;
&lt;br /&gt;
=== FOSS4G 2008 LiveDVD ===&lt;br /&gt;
&lt;br /&gt;
The discussion and planning for the FOSS4G 2008 LiveDVD has been archived [[FOSS4G2008_LiveDVD_discussion|here]].&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is now [[FOSS4G2008_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
=== Arramagong LiveDVD ===&lt;br /&gt;
&lt;br /&gt;
Currently LISAsoft is working on the Arramagong Live DVD, which was initially &lt;br /&gt;
based on Ominiverdi's Live CD.&lt;br /&gt;
&lt;br /&gt;
Arramagong is, like Ominiverdi's Live DVD, based on Xubuntu (currently v8.04).&lt;br /&gt;
Arrmagong adds a variety of geospatial software to it. This software is &lt;br /&gt;
preconfigured and comes with sample data and projects, so after booting from&lt;br /&gt;
the DVD, they can be immediately tested.  &lt;br /&gt;
&lt;br /&gt;
Recently LISAsoft released the a first beta version of Arramagong 1.0.&lt;br /&gt;
&lt;br /&gt;
====Arramagong Links====&lt;br /&gt;
*Homepage: http://www.arramagong.com&lt;br /&gt;
*Until we have an issue tracker, problems can be reported [[Arramagong_LiveDVD_issues|here]].&lt;br /&gt;
*ISO Images:&lt;br /&gt;
**Stable: http://download.osgeo.org/livedvd/Arramagong-Live-v0.11.iso&lt;br /&gt;
**Latest: http://download.osgeo.org/livedvd/Arramagong_v1.0Beta1.iso&lt;br /&gt;
&lt;br /&gt;
== Links to related projects ==&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.debian.org/DebianGis/LiveImages DebianGIS Live Image]&lt;br /&gt;
: [http://svn.debian.org/wsvn/pkg-grass/packages/debian-gis/?rev=0&amp;amp;sc=0 build scripts in SVN]&lt;br /&gt;
* [http://livecd.ominiverdi.org/index.php?page=LiveCD&amp;amp;toc=livecd Omniverdi LiveCD project]&lt;br /&gt;
* [http://grass.osgeo.org/download/cdrom.php List of live CDs from the GRASS download site]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Links to Build tool options ==&lt;br /&gt;
* [http://packages.debian.org/sid/live-helper live-helper]&lt;br /&gt;
* [http://www.gnewsense.org/Builder/HowToCreateYourOwnGNULinuxDistribution Gnewsense method]&lt;br /&gt;
* [http://www.howtoforge.com/ubuntu-linux-mint-livecd-with-remastersys Remastersys]&lt;br /&gt;
* [http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd Debian\Ubuntu Tricks]&lt;br /&gt;
* [https://help.ubuntu.com/community/LiveCDCustomization Ubuntu Help Way]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32843</id>
		<title>Live GIS Disc</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32843"/>
		<updated>2008-12-03T06:08:14Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: /* Long Term Plan */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Communication ==&lt;br /&gt;
&lt;br /&gt;
* The project is coordinated on the [http://lists.osgeo.org/mailman/listinfo/live-demo OSGeo live-demo mailing list]&lt;br /&gt;
: The mailing list is [http://lists.osgeo.org/pipermail/live-demo/ archived here] and at [http://news.gmane.org/gmane.comp.gis.osgeo.livedemo Gmane]&lt;br /&gt;
* IRC will be on irc://freenode.net#osgeo&lt;br /&gt;
&lt;br /&gt;
== Long Term Plan ==&lt;br /&gt;
&lt;br /&gt;
Following the BOF session on 1 Oct, 2008 in Cape Town (and IRC), we've developed a broad plan for the future of the LiveDVD project.  I will attempt to summarise it.&lt;br /&gt;
&lt;br /&gt;
=== Use Cases ===&lt;br /&gt;
&lt;br /&gt;
There are multiple use cases for this product:&lt;br /&gt;
&lt;br /&gt;
* '''Demo DVD''' that can be handed out at conferences.&amp;lt;br /&amp;gt;This will contain a wide variety of applications, preconfigured with some sample data and containing introductory tutorials.  It should be able to function completely offline, at least within the scope of the tutorials, and should provide an introduction to many products.  This is very much a Live DVD, and as such should be conservative with regards to size (it will be run from RAM).&lt;br /&gt;
* '''Education DVD'''&amp;lt;br /&amp;gt;This seems to be a more involved version than the Demo DVD, including more involved material, including train-the-trainer style material.  This is targeted at those who will be teaching others, be it in workshops or university classes/labs.  My expectation (mleslie: feel free to correct me) is that this is more likely to be installed on machines and used as a teaching resource, as opposed to a toy to play with, as with the Demo DVD.  This will require material developed through the [[Category:Education|Education initiative]].&lt;br /&gt;
* '''Workstation Install DVD'''&amp;lt;br /&amp;gt;  This need was seen in Cape Town, where the bandwidth seems to be a very limiting factor.  Using the DVD to install either a complete OS, a set of packages to an existing Linux, or Windows installers completely offline is of great value in the developing world.  Would it be of greater value to lose the Edu or demo material and put in complete application documentation?&lt;br /&gt;
&lt;br /&gt;
=== Packaging ===&lt;br /&gt;
&lt;br /&gt;
The way forward was seen to require some proper packaging of every module used in the various products.  This means that every application needs to be packaged in a .deb file.  Datasets will be packaged in their own .deb files.  Application configurations, tutorials, documentation, education materials and the like would then be packaged separately, with dependencies defined to ensure the data and applications they need are in place.  &lt;br /&gt;
&lt;br /&gt;
Once these packages are created, it will be fairly easy to cut special-purpose images containing subsets of the available packages.  Standard images can be defined using 'virtual packages' that only contain dependencies.&lt;br /&gt;
&lt;br /&gt;
More information on our packaging efforts can be found here: [[Live_GIS_Disc_Packaging]]&lt;br /&gt;
&lt;br /&gt;
== How to contribute? ==&lt;br /&gt;
Collaborating on a Live DVD is not that simple. Basically, only one person at&lt;br /&gt;
a time can work on the image. Also up- and downloading iso-images is rather &lt;br /&gt;
tedious. This was one of the reasons, why we decided to package everything that is supposed to&lt;br /&gt;
go on the DVD in debian-packages.&lt;br /&gt;
&lt;br /&gt;
So the best and easiest way to contribute is to create packages for geospatial&lt;br /&gt;
applications that have not been packaged yet, for sample data, configurations&lt;br /&gt;
or examples.&lt;br /&gt;
&lt;br /&gt;
Also this allows everyone who wants to create a customized version of the Live&lt;br /&gt;
DVD can install all the packages and examples and data he wants on and create &lt;br /&gt;
his own ISO-image.&lt;br /&gt;
&lt;br /&gt;
== Next Steps ==&lt;br /&gt;
&lt;br /&gt;
[[Live_GIS_Disc_Packages]] documents what is currently available through Debian repositories and OSGeo repositories, and what still needs to be packaged.&lt;br /&gt;
&lt;br /&gt;
The immediate steps (as of 2 Oct, 2008) are:&lt;br /&gt;
* Get a repository up and running (Tim Bowden as volunteered as repo maintainer, with guidance from Chris Schmidt)&lt;br /&gt;
* Complete the proper packaging of everything that made it on to the FOSS4G 2008 version&lt;br /&gt;
* Prod the Edu group for content that can be packaged.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Future Targets ==&lt;br /&gt;
&lt;br /&gt;
Here is an attempt at a list of milestones that should have DVD image releases.&lt;br /&gt;
&lt;br /&gt;
* GIS Day 2008, November 19th 2008&lt;br /&gt;
* [[AAG 2009]], March 2009&lt;br /&gt;
* FOSS4G 2009, November 2009&lt;br /&gt;
&lt;br /&gt;
== Available Live Discs ==&lt;br /&gt;
&lt;br /&gt;
=== FOSS4G 2008 LiveDVD ===&lt;br /&gt;
&lt;br /&gt;
The discussion and planning for the FOSS4G 2008 LiveDVD has been archived [[FOSS4G2008_LiveDVD_discussion|here]].&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is now [[FOSS4G2008_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
=== Arramagong LiveDVD ===&lt;br /&gt;
&lt;br /&gt;
Currently LISAsoft is working on the Arramagong Live DVD, which was initially &lt;br /&gt;
based on Ominiverdi's Live CD.&lt;br /&gt;
&lt;br /&gt;
Arramagong is, like Ominiverdi's Live DVD, based on Xubuntu (currently v8.04).&lt;br /&gt;
Arrmagong adds a variety of geospatial software to it. This software is &lt;br /&gt;
preconfigured and comes with sample data and projects, so after booting from&lt;br /&gt;
the DVD, they can be immediately tested.  &lt;br /&gt;
&lt;br /&gt;
Recently LISAsoft released the a first beta version of Arramagong 1.0.&lt;br /&gt;
&lt;br /&gt;
====Arramagong Links====&lt;br /&gt;
*Homepage: http://www.arramagong.com&lt;br /&gt;
*Until we have an issue tracker, problems can be reported [[Arramagong_LiveDVD_issues|here]].&lt;br /&gt;
*ISO Images:&lt;br /&gt;
**Stable: http://download.osgeo.org/livedvd/Arramagong-Live-v0.11.iso&lt;br /&gt;
**Latest: http://download.osgeo.org/livedvd/Arramagong_v1.0Beta1.iso&lt;br /&gt;
&lt;br /&gt;
== Links to related projects ==&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.debian.org/DebianGis/LiveImages DebianGIS Live Image]&lt;br /&gt;
: [http://svn.debian.org/wsvn/pkg-grass/packages/debian-gis/?rev=0&amp;amp;sc=0 build scripts in SVN]&lt;br /&gt;
* [http://livecd.ominiverdi.org/index.php?page=LiveCD&amp;amp;toc=livecd Omniverdi LiveCD project]&lt;br /&gt;
* [http://grass.osgeo.org/download/cdrom.php List of live CDs from the GRASS download site]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Links to Build tool options ==&lt;br /&gt;
* [http://packages.debian.org/sid/live-helper live-helper]&lt;br /&gt;
* [http://www.gnewsense.org/Builder/HowToCreateYourOwnGNULinuxDistribution Gnewsense method]&lt;br /&gt;
* [http://www.howtoforge.com/ubuntu-linux-mint-livecd-with-remastersys Remastersys]&lt;br /&gt;
* [http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd Debian\Ubuntu Tricks]&lt;br /&gt;
* [https://help.ubuntu.com/community/LiveCDCustomization Ubuntu Help Way]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32842</id>
		<title>Live GIS Disc</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32842"/>
		<updated>2008-12-03T06:07:54Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: /* How to contribute? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Communication ==&lt;br /&gt;
&lt;br /&gt;
* The project is coordinated on the [http://lists.osgeo.org/mailman/listinfo/live-demo OSGeo live-demo mailing list]&lt;br /&gt;
: The mailing list is [http://lists.osgeo.org/pipermail/live-demo/ archived here] and at [http://news.gmane.org/gmane.comp.gis.osgeo.livedemo Gmane]&lt;br /&gt;
* IRC will be on irc://freenode.net#osgeo&lt;br /&gt;
&lt;br /&gt;
== Long Term Plan ==&lt;br /&gt;
&lt;br /&gt;
Following the BOF session on 1 Oct, 2008 in Cape Town (and IRC), we've developed a broad plan for the future of the LiveDVD project.  I will attempt to summarise it.&lt;br /&gt;
&lt;br /&gt;
=== Use Cases ===&lt;br /&gt;
&lt;br /&gt;
There are multiple use cases for this product:&lt;br /&gt;
&lt;br /&gt;
* '''Demo DVD''' that can be handed out at conferences.&amp;lt;br /&amp;gt;This will contain a wide variety of applications, preconfigured with some sample data and containing introductory tutorials.  It should be able to function completely offline, at least within the scope of the tutorials, and should provide an introduction to many products.  This is very much a Live DVD, and as such should be conservative with regards to size (it will be run from RAM).&lt;br /&gt;
* '''Education DVD'''&amp;lt;br /&amp;gt;This seems to be a more involved version than the Demo DVD, including more involved material, including train-the-trainer style material.  This is targeted at those who will be teaching others, be it in workshops or university classes/labs.  My expectation (mleslie: feel free to correct me) is that this is more likely to be installed on machines and used as a teaching resource, as opposed to a toy to play with, as with the Demo DVD.  This will require material developed through the [[Category:Education|Education initiative]].&lt;br /&gt;
* '''Workstation Install DVD'''&amp;lt;br /&amp;gt;  This need was seen in Cape Town, where the bandwidth seems to be a very limiting factor.  Using the DVD to install either a complete OS, a set of packages to an existing Linux, or Windows installers completely offline is of great value in the developing world.  Would it be of greater value to lose the Edu or demo material and put in complete application documentation?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Packaging ===&lt;br /&gt;
&lt;br /&gt;
The way forward was seen to require some proper packaging of every module used in the various products.  This means that every application needs to be packaged in a .deb file.  Datasets will be packaged in their own .deb files.  Application configurations, tutorials, documentation, education materials and the like would then be packaged separately, with dependencies defined to ensure the data and applications they need are in place.  &lt;br /&gt;
&lt;br /&gt;
Once these packages are created, it will be fairly easy to cut special-purpose images containing subsets of the available packages.  Standard images can be defined using 'virtual packages' that only contain dependencies.&lt;br /&gt;
&lt;br /&gt;
More information on our packaging efforts can be found here: [[Live_GIS_Disc_Packaging]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How to contribute? ==&lt;br /&gt;
Collaborating on a Live DVD is not that simple. Basically, only one person at&lt;br /&gt;
a time can work on the image. Also up- and downloading iso-images is rather &lt;br /&gt;
tedious. This was one of the reasons, why we decided to package everything that is supposed to&lt;br /&gt;
go on the DVD in debian-packages.&lt;br /&gt;
&lt;br /&gt;
So the best and easiest way to contribute is to create packages for geospatial&lt;br /&gt;
applications that have not been packaged yet, for sample data, configurations&lt;br /&gt;
or examples.&lt;br /&gt;
&lt;br /&gt;
Also this allows everyone who wants to create a customized version of the Live&lt;br /&gt;
DVD can install all the packages and examples and data he wants on and create &lt;br /&gt;
his own ISO-image.&lt;br /&gt;
&lt;br /&gt;
== Next Steps ==&lt;br /&gt;
&lt;br /&gt;
[[Live_GIS_Disc_Packages]] documents what is currently available through Debian repositories and OSGeo repositories, and what still needs to be packaged.&lt;br /&gt;
&lt;br /&gt;
The immediate steps (as of 2 Oct, 2008) are:&lt;br /&gt;
* Get a repository up and running (Tim Bowden as volunteered as repo maintainer, with guidance from Chris Schmidt)&lt;br /&gt;
* Complete the proper packaging of everything that made it on to the FOSS4G 2008 version&lt;br /&gt;
* Prod the Edu group for content that can be packaged.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Future Targets ==&lt;br /&gt;
&lt;br /&gt;
Here is an attempt at a list of milestones that should have DVD image releases.&lt;br /&gt;
&lt;br /&gt;
* GIS Day 2008, November 19th 2008&lt;br /&gt;
* [[AAG 2009]], March 2009&lt;br /&gt;
* FOSS4G 2009, November 2009&lt;br /&gt;
&lt;br /&gt;
== Available Live Discs ==&lt;br /&gt;
&lt;br /&gt;
=== FOSS4G 2008 LiveDVD ===&lt;br /&gt;
&lt;br /&gt;
The discussion and planning for the FOSS4G 2008 LiveDVD has been archived [[FOSS4G2008_LiveDVD_discussion|here]].&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is now [[FOSS4G2008_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
=== Arramagong LiveDVD ===&lt;br /&gt;
&lt;br /&gt;
Currently LISAsoft is working on the Arramagong Live DVD, which was initially &lt;br /&gt;
based on Ominiverdi's Live CD.&lt;br /&gt;
&lt;br /&gt;
Arramagong is, like Ominiverdi's Live DVD, based on Xubuntu (currently v8.04).&lt;br /&gt;
Arrmagong adds a variety of geospatial software to it. This software is &lt;br /&gt;
preconfigured and comes with sample data and projects, so after booting from&lt;br /&gt;
the DVD, they can be immediately tested.  &lt;br /&gt;
&lt;br /&gt;
Recently LISAsoft released the a first beta version of Arramagong 1.0.&lt;br /&gt;
&lt;br /&gt;
====Arramagong Links====&lt;br /&gt;
*Homepage: http://www.arramagong.com&lt;br /&gt;
*Until we have an issue tracker, problems can be reported [[Arramagong_LiveDVD_issues|here]].&lt;br /&gt;
*ISO Images:&lt;br /&gt;
**Stable: http://download.osgeo.org/livedvd/Arramagong-Live-v0.11.iso&lt;br /&gt;
**Latest: http://download.osgeo.org/livedvd/Arramagong_v1.0Beta1.iso&lt;br /&gt;
&lt;br /&gt;
== Links to related projects ==&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.debian.org/DebianGis/LiveImages DebianGIS Live Image]&lt;br /&gt;
: [http://svn.debian.org/wsvn/pkg-grass/packages/debian-gis/?rev=0&amp;amp;sc=0 build scripts in SVN]&lt;br /&gt;
* [http://livecd.ominiverdi.org/index.php?page=LiveCD&amp;amp;toc=livecd Omniverdi LiveCD project]&lt;br /&gt;
* [http://grass.osgeo.org/download/cdrom.php List of live CDs from the GRASS download site]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Links to Build tool options ==&lt;br /&gt;
* [http://packages.debian.org/sid/live-helper live-helper]&lt;br /&gt;
* [http://www.gnewsense.org/Builder/HowToCreateYourOwnGNULinuxDistribution Gnewsense method]&lt;br /&gt;
* [http://www.howtoforge.com/ubuntu-linux-mint-livecd-with-remastersys Remastersys]&lt;br /&gt;
* [http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd Debian\Ubuntu Tricks]&lt;br /&gt;
* [https://help.ubuntu.com/community/LiveCDCustomization Ubuntu Help Way]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32841</id>
		<title>Live GIS Disc</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32841"/>
		<updated>2008-12-03T06:07:05Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: /* Long Term Plan */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Communication ==&lt;br /&gt;
&lt;br /&gt;
* The project is coordinated on the [http://lists.osgeo.org/mailman/listinfo/live-demo OSGeo live-demo mailing list]&lt;br /&gt;
: The mailing list is [http://lists.osgeo.org/pipermail/live-demo/ archived here] and at [http://news.gmane.org/gmane.comp.gis.osgeo.livedemo Gmane]&lt;br /&gt;
* IRC will be on irc://freenode.net#osgeo&lt;br /&gt;
&lt;br /&gt;
== Long Term Plan ==&lt;br /&gt;
&lt;br /&gt;
Following the BOF session on 1 Oct, 2008 in Cape Town (and IRC), we've developed a broad plan for the future of the LiveDVD project.  I will attempt to summarise it.&lt;br /&gt;
&lt;br /&gt;
=== Use Cases ===&lt;br /&gt;
&lt;br /&gt;
There are multiple use cases for this product:&lt;br /&gt;
&lt;br /&gt;
* '''Demo DVD''' that can be handed out at conferences.&amp;lt;br /&amp;gt;This will contain a wide variety of applications, preconfigured with some sample data and containing introductory tutorials.  It should be able to function completely offline, at least within the scope of the tutorials, and should provide an introduction to many products.  This is very much a Live DVD, and as such should be conservative with regards to size (it will be run from RAM).&lt;br /&gt;
* '''Education DVD'''&amp;lt;br /&amp;gt;This seems to be a more involved version than the Demo DVD, including more involved material, including train-the-trainer style material.  This is targeted at those who will be teaching others, be it in workshops or university classes/labs.  My expectation (mleslie: feel free to correct me) is that this is more likely to be installed on machines and used as a teaching resource, as opposed to a toy to play with, as with the Demo DVD.  This will require material developed through the [[Category:Education|Education initiative]].&lt;br /&gt;
* '''Workstation Install DVD'''&amp;lt;br /&amp;gt;  This need was seen in Cape Town, where the bandwidth seems to be a very limiting factor.  Using the DVD to install either a complete OS, a set of packages to an existing Linux, or Windows installers completely offline is of great value in the developing world.  Would it be of greater value to lose the Edu or demo material and put in complete application documentation?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Packaging ===&lt;br /&gt;
&lt;br /&gt;
The way forward was seen to require some proper packaging of every module used in the various products.  This means that every application needs to be packaged in a .deb file.  Datasets will be packaged in their own .deb files.  Application configurations, tutorials, documentation, education materials and the like would then be packaged separately, with dependencies defined to ensure the data and applications they need are in place.  &lt;br /&gt;
&lt;br /&gt;
Once these packages are created, it will be fairly easy to cut special-purpose images containing subsets of the available packages.  Standard images can be defined using 'virtual packages' that only contain dependencies.&lt;br /&gt;
&lt;br /&gt;
More information on our packaging efforts can be found here: [[Live_GIS_Disc_Packaging]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== How to contribute? ===&lt;br /&gt;
Collaborating on a Live DVD is not that simple. Bascially, only one person at&lt;br /&gt;
a time can work on the image. Also up- and downloading iso-images is rather &lt;br /&gt;
tedious. This was one of the reasons, why we decided to package everything that is supposed to&lt;br /&gt;
go on the DVD in debian-packages.&lt;br /&gt;
&lt;br /&gt;
So the best and easiest way to contribute is to create packages for geospatial&lt;br /&gt;
applications that have not been packaged yet, for sample data, configurations&lt;br /&gt;
or examples.&lt;br /&gt;
&lt;br /&gt;
Also this allows everyone who wants to create a customized version of the Live&lt;br /&gt;
DVD can install all the packages and examples and data he wants on and create &lt;br /&gt;
his own iso-image.&lt;br /&gt;
&lt;br /&gt;
== Next Steps ==&lt;br /&gt;
&lt;br /&gt;
[[Live_GIS_Disc_Packages]] documents what is currently available through Debian repositories and OSGeo repositories, and what still needs to be packaged.&lt;br /&gt;
&lt;br /&gt;
The immediate steps (as of 2 Oct, 2008) are:&lt;br /&gt;
* Get a repository up and running (Tim Bowden as volunteered as repo maintainer, with guidance from Chris Schmidt)&lt;br /&gt;
* Complete the proper packaging of everything that made it on to the FOSS4G 2008 version&lt;br /&gt;
* Prod the Edu group for content that can be packaged.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Future Targets ==&lt;br /&gt;
&lt;br /&gt;
Here is an attempt at a list of milestones that should have DVD image releases.&lt;br /&gt;
&lt;br /&gt;
* GIS Day 2008, November 19th 2008&lt;br /&gt;
* [[AAG 2009]], March 2009&lt;br /&gt;
* FOSS4G 2009, November 2009&lt;br /&gt;
&lt;br /&gt;
== Available Live Discs ==&lt;br /&gt;
&lt;br /&gt;
=== FOSS4G 2008 LiveDVD ===&lt;br /&gt;
&lt;br /&gt;
The discussion and planning for the FOSS4G 2008 LiveDVD has been archived [[FOSS4G2008_LiveDVD_discussion|here]].&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is now [[FOSS4G2008_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
=== Arramagong LiveDVD ===&lt;br /&gt;
&lt;br /&gt;
Currently LISAsoft is working on the Arramagong Live DVD, which was initially &lt;br /&gt;
based on Ominiverdi's Live CD.&lt;br /&gt;
&lt;br /&gt;
Arramagong is, like Ominiverdi's Live DVD, based on Xubuntu (currently v8.04).&lt;br /&gt;
Arrmagong adds a variety of geospatial software to it. This software is &lt;br /&gt;
preconfigured and comes with sample data and projects, so after booting from&lt;br /&gt;
the DVD, they can be immediately tested.  &lt;br /&gt;
&lt;br /&gt;
Recently LISAsoft released the a first beta version of Arramagong 1.0.&lt;br /&gt;
&lt;br /&gt;
====Arramagong Links====&lt;br /&gt;
*Homepage: http://www.arramagong.com&lt;br /&gt;
*Until we have an issue tracker, problems can be reported [[Arramagong_LiveDVD_issues|here]].&lt;br /&gt;
*ISO Images:&lt;br /&gt;
**Stable: http://download.osgeo.org/livedvd/Arramagong-Live-v0.11.iso&lt;br /&gt;
**Latest: http://download.osgeo.org/livedvd/Arramagong_v1.0Beta1.iso&lt;br /&gt;
&lt;br /&gt;
== Links to related projects ==&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.debian.org/DebianGis/LiveImages DebianGIS Live Image]&lt;br /&gt;
: [http://svn.debian.org/wsvn/pkg-grass/packages/debian-gis/?rev=0&amp;amp;sc=0 build scripts in SVN]&lt;br /&gt;
* [http://livecd.ominiverdi.org/index.php?page=LiveCD&amp;amp;toc=livecd Omniverdi LiveCD project]&lt;br /&gt;
* [http://grass.osgeo.org/download/cdrom.php List of live CDs from the GRASS download site]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Links to Build tool options ==&lt;br /&gt;
* [http://packages.debian.org/sid/live-helper live-helper]&lt;br /&gt;
* [http://www.gnewsense.org/Builder/HowToCreateYourOwnGNULinuxDistribution Gnewsense method]&lt;br /&gt;
* [http://www.howtoforge.com/ubuntu-linux-mint-livecd-with-remastersys Remastersys]&lt;br /&gt;
* [http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd Debian\Ubuntu Tricks]&lt;br /&gt;
* [https://help.ubuntu.com/community/LiveCDCustomization Ubuntu Help Way]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32840</id>
		<title>Live GIS Disc</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32840"/>
		<updated>2008-12-03T06:06:43Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: /* Packaging */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Communication ==&lt;br /&gt;
&lt;br /&gt;
* The project is coordinated on the [http://lists.osgeo.org/mailman/listinfo/live-demo OSGeo live-demo mailing list]&lt;br /&gt;
: The mailing list is [http://lists.osgeo.org/pipermail/live-demo/ archived here] and at [http://news.gmane.org/gmane.comp.gis.osgeo.livedemo Gmane]&lt;br /&gt;
* IRC will be on irc://freenode.net#osgeo&lt;br /&gt;
&lt;br /&gt;
== Long Term Plan ==&lt;br /&gt;
&lt;br /&gt;
Following the BOF session on 1 Oct, 2008 in Cape Town (and IRC), we've developed a broad plan for the future of the LiveDVD project.  I will attempt to summarise it.&lt;br /&gt;
&lt;br /&gt;
=== Use Cases ===&lt;br /&gt;
&lt;br /&gt;
There are multiple use cases for this product:&lt;br /&gt;
&lt;br /&gt;
* '''Demo DVD''' that can be handed out at conferences.&amp;lt;br /&amp;gt;This will contain a wide variety of applications, preconfigured with some sample data and containing introductory tutorials.  It should be able to function completely offline, at least within the scope of the tutorials, and should provide an introduction to many products.  This is very much a Live DVD, and as such should be conservative with regards to size (it will be run from RAM).&lt;br /&gt;
* '''Education DVD'''&amp;lt;br /&amp;gt;This seems to be a more involved version than the Demo DVD, including more involved material, including train-the-trainer style material.  This is targeted at those who will be teaching others, be it in workshops or university classes/labs.  My expectation (mleslie: feel free to correct me) is that this is more likely to be installed on machines and used as a teaching resource, as opposed to a toy to play with, as with the Demo DVD.  This will require material developed through the [[Category:Education|Education initiative]].&lt;br /&gt;
* '''Workstation Install DVD'''&amp;lt;br /&amp;gt;  This need was seen in Cape Town, where the bandwidth seems to be a very limiting factor.  Using the DVD to install either a complete OS, a set of packages to an existing Linux, or Windows installers completely offline is of great value in the developing world.  Would it be of greater value to lose the Edu or demo material and put in complete application documentation?&lt;br /&gt;
&lt;br /&gt;
=== Packaging ===&lt;br /&gt;
&lt;br /&gt;
The way forward was seen to require some proper packaging of every module used in the various products.  This means that every application needs to be packaged in a .deb file.  Datasets will be packaged in their own .deb files.  Application configurations, tutorials, documentation, education materials and the like would then be packaged separately, with dependencies defined to ensure the data and applications they need are in place.  &lt;br /&gt;
&lt;br /&gt;
Once these packages are created, it will be fairly easy to cut special-purpose images containing subsets of the available packages.  Standard images can be defined using 'virtual packages' that only contain dependencies.&lt;br /&gt;
&lt;br /&gt;
More information on our packaging efforts can be found here: [[Live_GIS_Disc_Packaging]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== How to contribute? ===&lt;br /&gt;
Collaborating on a Live DVD is not that simple. Bascially, only one person at&lt;br /&gt;
a time can work on the image. Also up- and downloading iso-images is rather &lt;br /&gt;
tedious. This was one of the reasons, why we decided to package everything that is supposed to&lt;br /&gt;
go on the DVD in debian-packages.&lt;br /&gt;
&lt;br /&gt;
So the best and easiest way to contribute is to create packages for geospatial&lt;br /&gt;
applications that have not been packaged yet, for sample data, configurations&lt;br /&gt;
or examples.&lt;br /&gt;
&lt;br /&gt;
Also this allows everyone who wants to create a customized version of the Live&lt;br /&gt;
DVD can install all the packages and examples and data he wants on and create &lt;br /&gt;
his own iso-image.&lt;br /&gt;
&lt;br /&gt;
== Next Steps ==&lt;br /&gt;
&lt;br /&gt;
[[Live_GIS_Disc_Packages]] documents what is currently available through Debian repositories and OSGeo repositories, and what still needs to be packaged.&lt;br /&gt;
&lt;br /&gt;
The immediate steps (as of 2 Oct, 2008) are:&lt;br /&gt;
* Get a repository up and running (Tim Bowden as volunteered as repo maintainer, with guidance from Chris Schmidt)&lt;br /&gt;
* Complete the proper packaging of everything that made it on to the FOSS4G 2008 version&lt;br /&gt;
* Prod the Edu group for content that can be packaged.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Future Targets ==&lt;br /&gt;
&lt;br /&gt;
Here is an attempt at a list of milestones that should have DVD image releases.&lt;br /&gt;
&lt;br /&gt;
* GIS Day 2008, November 19th 2008&lt;br /&gt;
* [[AAG 2009]], March 2009&lt;br /&gt;
* FOSS4G 2009, November 2009&lt;br /&gt;
&lt;br /&gt;
== Available Live Discs ==&lt;br /&gt;
&lt;br /&gt;
=== FOSS4G 2008 LiveDVD ===&lt;br /&gt;
&lt;br /&gt;
The discussion and planning for the FOSS4G 2008 LiveDVD has been archived [[FOSS4G2008_LiveDVD_discussion|here]].&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is now [[FOSS4G2008_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
=== Arramagong LiveDVD ===&lt;br /&gt;
&lt;br /&gt;
Currently LISAsoft is working on the Arramagong Live DVD, which was initially &lt;br /&gt;
based on Ominiverdi's Live CD.&lt;br /&gt;
&lt;br /&gt;
Arramagong is, like Ominiverdi's Live DVD, based on Xubuntu (currently v8.04).&lt;br /&gt;
Arrmagong adds a variety of geospatial software to it. This software is &lt;br /&gt;
preconfigured and comes with sample data and projects, so after booting from&lt;br /&gt;
the DVD, they can be immediately tested.  &lt;br /&gt;
&lt;br /&gt;
Recently LISAsoft released the a first beta version of Arramagong 1.0.&lt;br /&gt;
&lt;br /&gt;
====Arramagong Links====&lt;br /&gt;
*Homepage: http://www.arramagong.com&lt;br /&gt;
*Until we have an issue tracker, problems can be reported [[Arramagong_LiveDVD_issues|here]].&lt;br /&gt;
*ISO Images:&lt;br /&gt;
**Stable: http://download.osgeo.org/livedvd/Arramagong-Live-v0.11.iso&lt;br /&gt;
**Latest: http://download.osgeo.org/livedvd/Arramagong_v1.0Beta1.iso&lt;br /&gt;
&lt;br /&gt;
== Links to related projects ==&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.debian.org/DebianGis/LiveImages DebianGIS Live Image]&lt;br /&gt;
: [http://svn.debian.org/wsvn/pkg-grass/packages/debian-gis/?rev=0&amp;amp;sc=0 build scripts in SVN]&lt;br /&gt;
* [http://livecd.ominiverdi.org/index.php?page=LiveCD&amp;amp;toc=livecd Omniverdi LiveCD project]&lt;br /&gt;
* [http://grass.osgeo.org/download/cdrom.php List of live CDs from the GRASS download site]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Links to Build tool options ==&lt;br /&gt;
* [http://packages.debian.org/sid/live-helper live-helper]&lt;br /&gt;
* [http://www.gnewsense.org/Builder/HowToCreateYourOwnGNULinuxDistribution Gnewsense method]&lt;br /&gt;
* [http://www.howtoforge.com/ubuntu-linux-mint-livecd-with-remastersys Remastersys]&lt;br /&gt;
* [http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd Debian\Ubuntu Tricks]&lt;br /&gt;
* [https://help.ubuntu.com/community/LiveCDCustomization Ubuntu Help Way]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32839</id>
		<title>Live GIS Disc</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32839"/>
		<updated>2008-12-03T06:05:10Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: /* Arramagong Links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Communication ==&lt;br /&gt;
&lt;br /&gt;
* The project is coordinated on the [http://lists.osgeo.org/mailman/listinfo/live-demo OSGeo live-demo mailing list]&lt;br /&gt;
: The mailing list is [http://lists.osgeo.org/pipermail/live-demo/ archived here] and at [http://news.gmane.org/gmane.comp.gis.osgeo.livedemo Gmane]&lt;br /&gt;
* IRC will be on irc://freenode.net#osgeo&lt;br /&gt;
&lt;br /&gt;
== Long Term Plan ==&lt;br /&gt;
&lt;br /&gt;
Following the BOF session on 1 Oct, 2008 in Cape Town (and IRC), we've developed a broad plan for the future of the LiveDVD project.  I will attempt to summarise it.&lt;br /&gt;
&lt;br /&gt;
=== Use Cases ===&lt;br /&gt;
&lt;br /&gt;
There are multiple use cases for this product:&lt;br /&gt;
&lt;br /&gt;
* '''Demo DVD''' that can be handed out at conferences.&amp;lt;br /&amp;gt;This will contain a wide variety of applications, preconfigured with some sample data and containing introductory tutorials.  It should be able to function completely offline, at least within the scope of the tutorials, and should provide an introduction to many products.  This is very much a Live DVD, and as such should be conservative with regards to size (it will be run from RAM).&lt;br /&gt;
* '''Education DVD'''&amp;lt;br /&amp;gt;This seems to be a more involved version than the Demo DVD, including more involved material, including train-the-trainer style material.  This is targeted at those who will be teaching others, be it in workshops or university classes/labs.  My expectation (mleslie: feel free to correct me) is that this is more likely to be installed on machines and used as a teaching resource, as opposed to a toy to play with, as with the Demo DVD.  This will require material developed through the [[Category:Education|Education initiative]].&lt;br /&gt;
* '''Workstation Install DVD'''&amp;lt;br /&amp;gt;  This need was seen in Cape Town, where the bandwidth seems to be a very limiting factor.  Using the DVD to install either a complete OS, a set of packages to an existing Linux, or Windows installers completely offline is of great value in the developing world.  Would it be of greater value to lose the Edu or demo material and put in complete application documentation?&lt;br /&gt;
&lt;br /&gt;
=== Packaging ===&lt;br /&gt;
&lt;br /&gt;
The way forward was seen to require some proper packaging of every module used in the various products.  This means that every application needs to be packaged in a .deb file.  Datasets will be packaged in their own .deb files.  Application configurations, tutorials, documentation, education materials and the like would then be packaged separately, with dependencies defined to ensure the data and applications they need are in place.  &lt;br /&gt;
&lt;br /&gt;
Once these packages are created, it will be fairly easy to cut special-purpose images containing subsets of the available packages.  Standard images can be defined using 'virtual packages' that only contain dependencies.&lt;br /&gt;
&lt;br /&gt;
More information on our packaging efforts can be found here: [[Live_GIS_Disc_Packaging]]&lt;br /&gt;
&lt;br /&gt;
== Next Steps ==&lt;br /&gt;
&lt;br /&gt;
[[Live_GIS_Disc_Packages]] documents what is currently available through Debian repositories and OSGeo repositories, and what still needs to be packaged.&lt;br /&gt;
&lt;br /&gt;
The immediate steps (as of 2 Oct, 2008) are:&lt;br /&gt;
* Get a repository up and running (Tim Bowden as volunteered as repo maintainer, with guidance from Chris Schmidt)&lt;br /&gt;
* Complete the proper packaging of everything that made it on to the FOSS4G 2008 version&lt;br /&gt;
* Prod the Edu group for content that can be packaged.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Future Targets ==&lt;br /&gt;
&lt;br /&gt;
Here is an attempt at a list of milestones that should have DVD image releases.&lt;br /&gt;
&lt;br /&gt;
* GIS Day 2008, November 19th 2008&lt;br /&gt;
* [[AAG 2009]], March 2009&lt;br /&gt;
* FOSS4G 2009, November 2009&lt;br /&gt;
&lt;br /&gt;
== Available Live Discs ==&lt;br /&gt;
&lt;br /&gt;
=== FOSS4G 2008 LiveDVD ===&lt;br /&gt;
&lt;br /&gt;
The discussion and planning for the FOSS4G 2008 LiveDVD has been archived [[FOSS4G2008_LiveDVD_discussion|here]].&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is now [[FOSS4G2008_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
=== Arramagong LiveDVD ===&lt;br /&gt;
&lt;br /&gt;
Currently LISAsoft is working on the Arramagong Live DVD, which was initially &lt;br /&gt;
based on Ominiverdi's Live CD.&lt;br /&gt;
&lt;br /&gt;
Arramagong is, like Ominiverdi's Live DVD, based on Xubuntu (currently v8.04).&lt;br /&gt;
Arrmagong adds a variety of geospatial software to it. This software is &lt;br /&gt;
preconfigured and comes with sample data and projects, so after booting from&lt;br /&gt;
the DVD, they can be immediately tested.  &lt;br /&gt;
&lt;br /&gt;
Recently LISAsoft released the a first beta version of Arramagong 1.0.&lt;br /&gt;
&lt;br /&gt;
====Arramagong Links====&lt;br /&gt;
*Homepage: http://www.arramagong.com&lt;br /&gt;
*Until we have an issue tracker, problems can be reported [[Arramagong_LiveDVD_issues|here]].&lt;br /&gt;
*ISO Images:&lt;br /&gt;
**Stable: http://download.osgeo.org/livedvd/Arramagong-Live-v0.11.iso&lt;br /&gt;
**Latest: http://download.osgeo.org/livedvd/Arramagong_v1.0Beta1.iso&lt;br /&gt;
&lt;br /&gt;
== Links to related projects ==&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.debian.org/DebianGis/LiveImages DebianGIS Live Image]&lt;br /&gt;
: [http://svn.debian.org/wsvn/pkg-grass/packages/debian-gis/?rev=0&amp;amp;sc=0 build scripts in SVN]&lt;br /&gt;
* [http://livecd.ominiverdi.org/index.php?page=LiveCD&amp;amp;toc=livecd Omniverdi LiveCD project]&lt;br /&gt;
* [http://grass.osgeo.org/download/cdrom.php List of live CDs from the GRASS download site]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Links to Build tool options ==&lt;br /&gt;
* [http://packages.debian.org/sid/live-helper live-helper]&lt;br /&gt;
* [http://www.gnewsense.org/Builder/HowToCreateYourOwnGNULinuxDistribution Gnewsense method]&lt;br /&gt;
* [http://www.howtoforge.com/ubuntu-linux-mint-livecd-with-remastersys Remastersys]&lt;br /&gt;
* [http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd Debian\Ubuntu Tricks]&lt;br /&gt;
* [https://help.ubuntu.com/community/LiveCDCustomization Ubuntu Help Way]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32838</id>
		<title>Live GIS Disc</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32838"/>
		<updated>2008-12-03T06:04:50Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Communication ==&lt;br /&gt;
&lt;br /&gt;
* The project is coordinated on the [http://lists.osgeo.org/mailman/listinfo/live-demo OSGeo live-demo mailing list]&lt;br /&gt;
: The mailing list is [http://lists.osgeo.org/pipermail/live-demo/ archived here] and at [http://news.gmane.org/gmane.comp.gis.osgeo.livedemo Gmane]&lt;br /&gt;
* IRC will be on irc://freenode.net#osgeo&lt;br /&gt;
&lt;br /&gt;
== Long Term Plan ==&lt;br /&gt;
&lt;br /&gt;
Following the BOF session on 1 Oct, 2008 in Cape Town (and IRC), we've developed a broad plan for the future of the LiveDVD project.  I will attempt to summarise it.&lt;br /&gt;
&lt;br /&gt;
=== Use Cases ===&lt;br /&gt;
&lt;br /&gt;
There are multiple use cases for this product:&lt;br /&gt;
&lt;br /&gt;
* '''Demo DVD''' that can be handed out at conferences.&amp;lt;br /&amp;gt;This will contain a wide variety of applications, preconfigured with some sample data and containing introductory tutorials.  It should be able to function completely offline, at least within the scope of the tutorials, and should provide an introduction to many products.  This is very much a Live DVD, and as such should be conservative with regards to size (it will be run from RAM).&lt;br /&gt;
* '''Education DVD'''&amp;lt;br /&amp;gt;This seems to be a more involved version than the Demo DVD, including more involved material, including train-the-trainer style material.  This is targeted at those who will be teaching others, be it in workshops or university classes/labs.  My expectation (mleslie: feel free to correct me) is that this is more likely to be installed on machines and used as a teaching resource, as opposed to a toy to play with, as with the Demo DVD.  This will require material developed through the [[Category:Education|Education initiative]].&lt;br /&gt;
* '''Workstation Install DVD'''&amp;lt;br /&amp;gt;  This need was seen in Cape Town, where the bandwidth seems to be a very limiting factor.  Using the DVD to install either a complete OS, a set of packages to an existing Linux, or Windows installers completely offline is of great value in the developing world.  Would it be of greater value to lose the Edu or demo material and put in complete application documentation?&lt;br /&gt;
&lt;br /&gt;
=== Packaging ===&lt;br /&gt;
&lt;br /&gt;
The way forward was seen to require some proper packaging of every module used in the various products.  This means that every application needs to be packaged in a .deb file.  Datasets will be packaged in their own .deb files.  Application configurations, tutorials, documentation, education materials and the like would then be packaged separately, with dependencies defined to ensure the data and applications they need are in place.  &lt;br /&gt;
&lt;br /&gt;
Once these packages are created, it will be fairly easy to cut special-purpose images containing subsets of the available packages.  Standard images can be defined using 'virtual packages' that only contain dependencies.&lt;br /&gt;
&lt;br /&gt;
More information on our packaging efforts can be found here: [[Live_GIS_Disc_Packaging]]&lt;br /&gt;
&lt;br /&gt;
== Next Steps ==&lt;br /&gt;
&lt;br /&gt;
[[Live_GIS_Disc_Packages]] documents what is currently available through Debian repositories and OSGeo repositories, and what still needs to be packaged.&lt;br /&gt;
&lt;br /&gt;
The immediate steps (as of 2 Oct, 2008) are:&lt;br /&gt;
* Get a repository up and running (Tim Bowden as volunteered as repo maintainer, with guidance from Chris Schmidt)&lt;br /&gt;
* Complete the proper packaging of everything that made it on to the FOSS4G 2008 version&lt;br /&gt;
* Prod the Edu group for content that can be packaged.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Future Targets ==&lt;br /&gt;
&lt;br /&gt;
Here is an attempt at a list of milestones that should have DVD image releases.&lt;br /&gt;
&lt;br /&gt;
* GIS Day 2008, November 19th 2008&lt;br /&gt;
* [[AAG 2009]], March 2009&lt;br /&gt;
* FOSS4G 2009, November 2009&lt;br /&gt;
&lt;br /&gt;
== Available Live Discs ==&lt;br /&gt;
&lt;br /&gt;
=== FOSS4G 2008 LiveDVD ===&lt;br /&gt;
&lt;br /&gt;
The discussion and planning for the FOSS4G 2008 LiveDVD has been archived [[FOSS4G2008_LiveDVD_discussion|here]].&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is now [[FOSS4G2008_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
=== Arramagong LiveDVD ===&lt;br /&gt;
&lt;br /&gt;
Currently LISAsoft is working on the Arramagong Live DVD, which was initially &lt;br /&gt;
based on Ominiverdi's Live CD.&lt;br /&gt;
&lt;br /&gt;
Arramagong is, like Ominiverdi's Live DVD, based on Xubuntu (currently v8.04).&lt;br /&gt;
Arrmagong adds a variety of geospatial software to it. This software is &lt;br /&gt;
preconfigured and comes with sample data and projects, so after booting from&lt;br /&gt;
the DVD, they can be immediately tested.  &lt;br /&gt;
&lt;br /&gt;
Recently LISAsoft released the a first beta version of Arramagong 1.0.&lt;br /&gt;
&lt;br /&gt;
===Arramagong Links===&lt;br /&gt;
*Homepage: http://www.arramagong.com&lt;br /&gt;
*Until we have an issue tracker, problems can be reported [[Arramagong_LiveDVD_issues|here]].&lt;br /&gt;
*ISO Images:&lt;br /&gt;
**Stable: http://download.osgeo.org/livedvd/Arramagong-Live-v0.11.iso&lt;br /&gt;
**Latest: http://download.osgeo.org/livedvd/Arramagong_v1.0Beta1.iso&lt;br /&gt;
&lt;br /&gt;
== Links to related projects ==&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.debian.org/DebianGis/LiveImages DebianGIS Live Image]&lt;br /&gt;
: [http://svn.debian.org/wsvn/pkg-grass/packages/debian-gis/?rev=0&amp;amp;sc=0 build scripts in SVN]&lt;br /&gt;
* [http://livecd.ominiverdi.org/index.php?page=LiveCD&amp;amp;toc=livecd Omniverdi LiveCD project]&lt;br /&gt;
* [http://grass.osgeo.org/download/cdrom.php List of live CDs from the GRASS download site]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Links to Build tool options ==&lt;br /&gt;
* [http://packages.debian.org/sid/live-helper live-helper]&lt;br /&gt;
* [http://www.gnewsense.org/Builder/HowToCreateYourOwnGNULinuxDistribution Gnewsense method]&lt;br /&gt;
* [http://www.howtoforge.com/ubuntu-linux-mint-livecd-with-remastersys Remastersys]&lt;br /&gt;
* [http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd Debian\Ubuntu Tricks]&lt;br /&gt;
* [https://help.ubuntu.com/community/LiveCDCustomization Ubuntu Help Way]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32837</id>
		<title>Live GIS Disc</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32837"/>
		<updated>2008-12-03T06:01:51Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: /* Packaging */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Communication ==&lt;br /&gt;
&lt;br /&gt;
* The project is coordinated on the [http://lists.osgeo.org/mailman/listinfo/live-demo OSGeo live-demo mailing list]&lt;br /&gt;
: The mailing list is [http://lists.osgeo.org/pipermail/live-demo/ archived here] and at [http://news.gmane.org/gmane.comp.gis.osgeo.livedemo Gmane]&lt;br /&gt;
* IRC will be on irc://freenode.net#osgeo&lt;br /&gt;
&lt;br /&gt;
== Long Term Plan ==&lt;br /&gt;
&lt;br /&gt;
Following the BOF session on 1 Oct, 2008 in Cape Town (and IRC), we've developed a broad plan for the future of the LiveDVD project.  I will attempt to summarise it.&lt;br /&gt;
&lt;br /&gt;
=== Use Cases ===&lt;br /&gt;
&lt;br /&gt;
There are multiple use cases for this product:&lt;br /&gt;
&lt;br /&gt;
* '''Demo DVD''' that can be handed out at conferences.&amp;lt;br /&amp;gt;This will contain a wide variety of applications, preconfigured with some sample data and containing introductory tutorials.  It should be able to function completely offline, at least within the scope of the tutorials, and should provide an introduction to many products.  This is very much a Live DVD, and as such should be conservative with regards to size (it will be run from RAM).&lt;br /&gt;
* '''Education DVD'''&amp;lt;br /&amp;gt;This seems to be a more involved version than the Demo DVD, including more involved material, including train-the-trainer style material.  This is targeted at those who will be teaching others, be it in workshops or university classes/labs.  My expectation (mleslie: feel free to correct me) is that this is more likely to be installed on machines and used as a teaching resource, as opposed to a toy to play with, as with the Demo DVD.  This will require material developed through the [[Category:Education|Education initiative]].&lt;br /&gt;
* '''Workstation Install DVD'''&amp;lt;br /&amp;gt;  This need was seen in Cape Town, where the bandwidth seems to be a very limiting factor.  Using the DVD to install either a complete OS, a set of packages to an existing Linux, or Windows installers completely offline is of great value in the developing world.  Would it be of greater value to lose the Edu or demo material and put in complete application documentation?&lt;br /&gt;
&lt;br /&gt;
=== Packaging ===&lt;br /&gt;
&lt;br /&gt;
The way forward was seen to require some proper packaging of every module used in the various products.  This means that every application needs to be packaged in a .deb file.  Datasets will be packaged in their own .deb files.  Application configurations, tutorials, documentation, education materials and the like would then be packaged separately, with dependencies defined to ensure the data and applications they need are in place.  &lt;br /&gt;
&lt;br /&gt;
Once these packages are created, it will be fairly easy to cut special-purpose images containing subsets of the available packages.  Standard images can be defined using 'virtual packages' that only contain dependencies.&lt;br /&gt;
&lt;br /&gt;
More information on our packaging efforts can be found here: [[Live_GIS_Disc_Packaging]]&lt;br /&gt;
&lt;br /&gt;
== Next Steps ==&lt;br /&gt;
&lt;br /&gt;
[[Live_GIS_Disc_Packages]] documents what is currently available through Debian repositories and OSGeo repositories, and what still needs to be packaged.&lt;br /&gt;
&lt;br /&gt;
The immediate steps (as of 2 Oct, 2008) are:&lt;br /&gt;
* Get a repository up and running (Tim Bowden as volunteered as repo maintainer, with guidance from Chris Schmidt)&lt;br /&gt;
* Complete the proper packaging of everything that made it on to the FOSS4G 2008 version&lt;br /&gt;
* Prod the Edu group for content that can be packaged.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Future Targets ==&lt;br /&gt;
&lt;br /&gt;
Here is an attempt at a list of milestones that should have DVD image releases.&lt;br /&gt;
&lt;br /&gt;
* GIS Day 2008, November 19th 2008&lt;br /&gt;
* [[AAG 2009]], March 2009&lt;br /&gt;
* FOSS4G 2009, November 2009&lt;br /&gt;
&lt;br /&gt;
== FOSS4G 2008 LiveDVD ==&lt;br /&gt;
&lt;br /&gt;
The discussion and planning for the FOSS4G 2008 LiveDVD has been archived [[FOSS4G2008_LiveDVD_discussion|here]].&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is now [[FOSS4G2008_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
== Arramagong LiveDVD ==&lt;br /&gt;
&lt;br /&gt;
''The latests version of the LiveDVD is v1.0Beta1''&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is [[Arramagong_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
Until we have an issue tracker, problems can be reported [[Arramagong_LiveDVD_issues|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
== Links to related projects ==&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.debian.org/DebianGis/LiveImages DebianGIS Live Image]&lt;br /&gt;
: [http://svn.debian.org/wsvn/pkg-grass/packages/debian-gis/?rev=0&amp;amp;sc=0 build scripts in SVN]&lt;br /&gt;
* [http://livecd.ominiverdi.org/index.php?page=LiveCD&amp;amp;toc=livecd Omniverdi LiveCD project]&lt;br /&gt;
* [http://grass.osgeo.org/download/cdrom.php List of live CDs from the GRASS download site]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Links to Build tool options ==&lt;br /&gt;
* [http://packages.debian.org/sid/live-helper live-helper]&lt;br /&gt;
* [http://www.gnewsense.org/Builder/HowToCreateYourOwnGNULinuxDistribution Gnewsense method]&lt;br /&gt;
* [http://www.howtoforge.com/ubuntu-linux-mint-livecd-with-remastersys Remastersys]&lt;br /&gt;
* [http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd Debian\Ubuntu Tricks]&lt;br /&gt;
* [https://help.ubuntu.com/community/LiveCDCustomization Ubuntu Help Way]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc_Packaging&amp;diff=32836</id>
		<title>Live GIS Disc Packaging</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc_Packaging&amp;diff=32836"/>
		<updated>2008-12-03T06:00:32Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: New page: =Goal= The goal of creating packages for the Live GIS Disc is everything required to create a customized version of the Live Disc.  This includes Debian packages of  * geospatial applicati...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Goal=&lt;br /&gt;
The goal of creating packages for the Live GIS Disc is everything required to create a customized version of the Live Disc. &lt;br /&gt;
This includes Debian packages of&lt;br /&gt;
&lt;br /&gt;
* geospatial applications&lt;br /&gt;
* configuration files&lt;br /&gt;
* sample data&lt;br /&gt;
* sample projects and examples&lt;br /&gt;
&lt;br /&gt;
The efforts to provide Debian packages does not compete with the DebianGIS-project. Our focus is not on creating official packages for any applications. We only package applications where a project's build process or dependencies make it difficult to create a package fulfilling the official requirements and guidelines for a Debian package. Instead our focus is on packaging additional material (data, examples, configurations) in order to make them easily usable for everyone.&lt;br /&gt;
&lt;br /&gt;
==Guidelines==&lt;br /&gt;
* Basic rules of reuse apply.  If the same application configuration is used by more than one tutorial, it belongs in it's own package.  &lt;br /&gt;
* Standard version numbering is required to ensure compatibility as tutorials are updated.&lt;br /&gt;
* Packages should be compatible with both Ubuntu and Debian&lt;br /&gt;
* OSGeo should host a package repository for this work&lt;br /&gt;
* Applications should target release to official Debian repositories as a long-term goal&lt;br /&gt;
&lt;br /&gt;
==Meta-Packages==&lt;br /&gt;
Also working on packaging applications and additional material makes the collaboration between the different contributors of a project more easy.&lt;br /&gt;
&lt;br /&gt;
To allow for easily reproduce packages and repackaging we store scripts, config-files and instructions on how to build each package in the projects [http://svn.osgeo.org/osgeo/livedvd subversion repository].&lt;br /&gt;
&lt;br /&gt;
==Available packages==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Application !!On LiveDVD? !!Version on DVD !!Application packaged? !!Meta-package in SVN? !!Example available? !!Example packaged? !!Documenation available? !!Documentation packaged? !!Comment&lt;br /&gt;
|-&lt;br /&gt;
!Postgres/Postgis||YES||8.3.5/1.3.3-1||YES||NO||YES||NO||NO||NO&lt;br /&gt;
|-&lt;br /&gt;
!GeoServer||YES||1.7.0||YES||NO||YES||NO||NO||NO||Comes with examaple config, but needs additional config for postgis&lt;br /&gt;
|-&lt;br /&gt;
!Mapserver||YES||5.0.0-3||YES||NO||YES||NO||NO||NO||Example looks crap&lt;br /&gt;
|-&lt;br /&gt;
!GRASS||YES||6.3.0-0||YES||NO||YES||NO||NO||NO||&lt;br /&gt;
|-&lt;br /&gt;
!Qgis||YES||0.11.0-Metis||YES||NO||YES||NO||NO||NO||Better example needed&lt;br /&gt;
|-&lt;br /&gt;
!gvSIG||YES||1.1.2||NO||NO||YES||NO||NO||NO||Better example needed&lt;br /&gt;
|-&lt;br /&gt;
!uDig||YES||1.1.1||YES, only unofficially||YES||YES||YES||NO||NO||Better example needed&lt;br /&gt;
|-&lt;br /&gt;
!Open Layers||YES||2.6||NO||NO||YES||NO||NO||NO||Better example needed. Only on DVD as part of GeoServer&lt;br /&gt;
|-&lt;br /&gt;
!GeoNetwork||NO||||NO||NO||NO||NO||NO||NO||&lt;br /&gt;
|-&lt;br /&gt;
!Mapguide||NO||||NO||NO||NO||NO||NO||NO||&lt;br /&gt;
|-&lt;br /&gt;
!Open Jump||NO||||YES||NO||NO||NO||NO||NO||&lt;br /&gt;
|-&lt;br /&gt;
!Deegree||NO||||NO||NO||NO||NO||NO||NO||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32835</id>
		<title>Live GIS Disc</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32835"/>
		<updated>2008-12-03T05:59:24Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: /* Packaging */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Communication ==&lt;br /&gt;
&lt;br /&gt;
* The project is coordinated on the [http://lists.osgeo.org/mailman/listinfo/live-demo OSGeo live-demo mailing list]&lt;br /&gt;
: The mailing list is [http://lists.osgeo.org/pipermail/live-demo/ archived here] and at [http://news.gmane.org/gmane.comp.gis.osgeo.livedemo Gmane]&lt;br /&gt;
* IRC will be on irc://freenode.net#osgeo&lt;br /&gt;
&lt;br /&gt;
== Long Term Plan ==&lt;br /&gt;
&lt;br /&gt;
Following the BOF session on 1 Oct, 2008 in Cape Town (and IRC), we've developed a broad plan for the future of the LiveDVD project.  I will attempt to summarise it.&lt;br /&gt;
&lt;br /&gt;
=== Use Cases ===&lt;br /&gt;
&lt;br /&gt;
There are multiple use cases for this product:&lt;br /&gt;
&lt;br /&gt;
* '''Demo DVD''' that can be handed out at conferences.&amp;lt;br /&amp;gt;This will contain a wide variety of applications, preconfigured with some sample data and containing introductory tutorials.  It should be able to function completely offline, at least within the scope of the tutorials, and should provide an introduction to many products.  This is very much a Live DVD, and as such should be conservative with regards to size (it will be run from RAM).&lt;br /&gt;
* '''Education DVD'''&amp;lt;br /&amp;gt;This seems to be a more involved version than the Demo DVD, including more involved material, including train-the-trainer style material.  This is targeted at those who will be teaching others, be it in workshops or university classes/labs.  My expectation (mleslie: feel free to correct me) is that this is more likely to be installed on machines and used as a teaching resource, as opposed to a toy to play with, as with the Demo DVD.  This will require material developed through the [[Category:Education|Education initiative]].&lt;br /&gt;
* '''Workstation Install DVD'''&amp;lt;br /&amp;gt;  This need was seen in Cape Town, where the bandwidth seems to be a very limiting factor.  Using the DVD to install either a complete OS, a set of packages to an existing Linux, or Windows installers completely offline is of great value in the developing world.  Would it be of greater value to lose the Edu or demo material and put in complete application documentation?&lt;br /&gt;
&lt;br /&gt;
=== Packaging ===&lt;br /&gt;
&lt;br /&gt;
The way forward was seen to require some proper packaging of every module used in the various products.  This means that every application needs to be packaged in a .deb file.  Datasets will be packaged in their own .deb files.  Application configurations, tutorials, documentation, education materials and the like would then be packaged separately, with dependencies defined to ensure the data and applications they need are in place.  &lt;br /&gt;
&lt;br /&gt;
Once these packages are created, it will be fairly easy to cut special-purpose images containing subsets of the available packages.  Standard images can be defined using 'virtual packages' that only contain dependencies.&lt;br /&gt;
&lt;br /&gt;
== Next Steps ==&lt;br /&gt;
&lt;br /&gt;
[[Live_GIS_Disc_Packages]] documents what is currently available through Debian repositories and OSGeo repositories, and what still needs to be packaged.&lt;br /&gt;
&lt;br /&gt;
The immediate steps (as of 2 Oct, 2008) are:&lt;br /&gt;
* Get a repository up and running (Tim Bowden as volunteered as repo maintainer, with guidance from Chris Schmidt)&lt;br /&gt;
* Complete the proper packaging of everything that made it on to the FOSS4G 2008 version&lt;br /&gt;
* Prod the Edu group for content that can be packaged.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Future Targets ==&lt;br /&gt;
&lt;br /&gt;
Here is an attempt at a list of milestones that should have DVD image releases.&lt;br /&gt;
&lt;br /&gt;
* GIS Day 2008, November 19th 2008&lt;br /&gt;
* [[AAG 2009]], March 2009&lt;br /&gt;
* FOSS4G 2009, November 2009&lt;br /&gt;
&lt;br /&gt;
== FOSS4G 2008 LiveDVD ==&lt;br /&gt;
&lt;br /&gt;
The discussion and planning for the FOSS4G 2008 LiveDVD has been archived [[FOSS4G2008_LiveDVD_discussion|here]].&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is now [[FOSS4G2008_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
== Arramagong LiveDVD ==&lt;br /&gt;
&lt;br /&gt;
''The latests version of the LiveDVD is v1.0Beta1''&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is [[Arramagong_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
Until we have an issue tracker, problems can be reported [[Arramagong_LiveDVD_issues|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
== Links to related projects ==&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.debian.org/DebianGis/LiveImages DebianGIS Live Image]&lt;br /&gt;
: [http://svn.debian.org/wsvn/pkg-grass/packages/debian-gis/?rev=0&amp;amp;sc=0 build scripts in SVN]&lt;br /&gt;
* [http://livecd.ominiverdi.org/index.php?page=LiveCD&amp;amp;toc=livecd Omniverdi LiveCD project]&lt;br /&gt;
* [http://grass.osgeo.org/download/cdrom.php List of live CDs from the GRASS download site]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Links to Build tool options ==&lt;br /&gt;
* [http://packages.debian.org/sid/live-helper live-helper]&lt;br /&gt;
* [http://www.gnewsense.org/Builder/HowToCreateYourOwnGNULinuxDistribution Gnewsense method]&lt;br /&gt;
* [http://www.howtoforge.com/ubuntu-linux-mint-livecd-with-remastersys Remastersys]&lt;br /&gt;
* [http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd Debian\Ubuntu Tricks]&lt;br /&gt;
* [https://help.ubuntu.com/community/LiveCDCustomization Ubuntu Help Way]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Arramagong_LiveDVD&amp;diff=32332</id>
		<title>Arramagong LiveDVD</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Arramagong_LiveDVD&amp;diff=32332"/>
		<updated>2008-11-20T00:44:21Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to the Arramagong Live DVD'''&lt;br /&gt;
&lt;br /&gt;
If you've gotten this far, you already know the concept of a Live DVD. This disk provides the opportunity to try a variety of open source geospatial applications without the need to install anything new on your system. This Live DVD is based on the XUbuntu operating system to ensure it can be freely distributed. Including such supporting applications as Apache Web Server, Apache Tomcat Application Server, Sun Java, PostgreSQL and PGAdmin, we are able to provide you with the variety of server and client applications, described below.&lt;br /&gt;
&lt;br /&gt;
This Live DVD is based on the Live DVD produced for the FOSS4G 2008 conference in Capetown, South Africa through the tireless effort of LISAsoft and Ominiverdi.&lt;br /&gt;
&lt;br /&gt;
'''Included Applications'''&lt;br /&gt;
&lt;br /&gt;
{|	&lt;br /&gt;
|-&lt;br /&gt;
|Application&lt;br /&gt;
|Homepage&lt;br /&gt;
|Notes&lt;br /&gt;
|-&lt;br /&gt;
|GeoServer 1.7.0&lt;br /&gt;
|http://geoserver.org/&lt;br /&gt;
|The GeoServer administration page is loaded by clicking on the Geoserver desktop icon. Under the Demo option on the admin page there are two options of interest. Sample Requests provides a form with XML sample responses that can be altered and sent to the server. The XML responses are displayed when returned. Map Preview provides an OpenLayers based map interface to allow exploration of the data served by GeoServer.&lt;br /&gt;
|-&lt;br /&gt;
|GRASS 6.3.0&lt;br /&gt;
|http://grass.osgeo.org/&lt;br /&gt;
|The GRASS GUI is available by clicking the GRASS Gis desktop icon.&lt;br /&gt;
|-&lt;br /&gt;
|gvSIG 1.1.2&lt;br /&gt;
|http://www.gvsig.gva.es/&lt;br /&gt;
|gvSIG is available by clicking the gvSIG desktop icon.&lt;br /&gt;
|-&lt;br /&gt;
|MapServer 5.0.0&lt;br /&gt;
|http://mapserver.gis.umn.edu/&lt;br /&gt;
|The UMN MapServer CGI binary and binary utilities are installed. A sample CGI application can be loaded by clicking on the Mapserver desktop icon. Two sample mapfiles are provided in the /home/demo/mapserver/ directory.&lt;br /&gt;
|-&lt;br /&gt;
|PostGIS 1.3.1&lt;br /&gt;
|http://postgis.refractions.net/&lt;br /&gt;
|PostGIS is installed in PostgreSQL 8.3, in the template_postgis, test and australia databases. These databases can be accessed directly using the psql command within a terminal window, or through PGAdmin by clicking on the pgadmin 3 desktop icon. They can also be accessed via the various desktop client applications, using the username/password combination of demo/demo.&lt;br /&gt;
|-&lt;br /&gt;
|QGIS 0.11.0&lt;br /&gt;
|http://www.qgis.org/&lt;br /&gt;
|QGIS is available by clicking on the QGIS desktop icon.&lt;br /&gt;
|-&lt;br /&gt;
|uDig 1.1.0&lt;br /&gt;
|http://udig.refractions.net/&lt;br /&gt;
|uDig is available by clicking on the uDig desktop icon.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Included Data'''&lt;br /&gt;
	&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
|Data&lt;br /&gt;
|Location&lt;br /&gt;
|Notes&lt;br /&gt;
|-&lt;br /&gt;
|Alaska&lt;br /&gt;
|/usr/local/share/qgis_sample_data&lt;br /&gt;
|The Alaska Dataset is a free dataset including raster and vector data for the state of Alaska, as well as boundary polygons for neighbouring countries. The Alaskan state boundary is also available in the PostGIS database test.&lt;br /&gt;
|-&lt;br /&gt;
|Spearfish&lt;br /&gt;
|/usr/local/share/datagrass&lt;br /&gt;
|The spearfish demo is provided in GRASS compatible formats.&lt;br /&gt;
|-&lt;br /&gt;
|Australian&lt;br /&gt;
|''postgres'' database&lt;br /&gt;
|The Australian Dataset consists of low-scale vector data for australian roads, rails and rivers, as well as political boundary shapes Australia and surrounding areas.&lt;br /&gt;
|-&lt;br /&gt;
|Blue Marble&lt;br /&gt;
|/usr/local/share/bluemarble&lt;br /&gt;
|Blue Marble is the blue marble.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Arramagong_LiveDVD&amp;diff=32331</id>
		<title>Arramagong LiveDVD</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Arramagong_LiveDVD&amp;diff=32331"/>
		<updated>2008-11-20T00:43:38Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to the Arramagong Live DVD'''&lt;br /&gt;
&lt;br /&gt;
If you've gotten this far, you already know the concept of a Live DVD. This disk provides the opportunity to try a variety of open source geospatial applications without the need to install anything new on your system. This Live DVD is based on the XUbuntu operating system to ensure it can be freely distributed. Including such supporting applications as Apache Web Server, Apache Tomcat Application Server, Sun Java, PostgreSQL and PGAdmin, we are able to provide you with the variety of server and client applications, described below.&lt;br /&gt;
&lt;br /&gt;
This Live DVD is based on the Live DVD produced for the FOSS4G 2008 conference in Capetown, South Africa through the tireless effort of LISAsoft and Ominiverdi.&lt;br /&gt;
&lt;br /&gt;
'''Included Applications'''&lt;br /&gt;
&lt;br /&gt;
{|	&lt;br /&gt;
|-&lt;br /&gt;
|Application&lt;br /&gt;
|Homepage&lt;br /&gt;
|Notes&lt;br /&gt;
|-&lt;br /&gt;
|GeoServer 1.7.0&lt;br /&gt;
|http://geoserver.org/&lt;br /&gt;
|The GeoServer administration page is loaded by clicking on the Geoserver desktop icon. Under the Demo option on the admin page there are two options of interest. Sample Requests provides a form with XML sample responses that can be altered and sent to the server. The XML responses are displayed when returned. Map Preview provides an OpenLayers based map interface to allow exploration of the data served by GeoServer.&lt;br /&gt;
|-&lt;br /&gt;
|GRASS 6.3.0&lt;br /&gt;
|http://grass.osgeo.org/&lt;br /&gt;
|The GRASS GUI is available by clicking the GRASS Gis desktop icon.&lt;br /&gt;
|-&lt;br /&gt;
|gvSIG 1.1.2&lt;br /&gt;
|http://www.gvsig.gva.es/&lt;br /&gt;
|gvSIG is available by clicking the gvSIG desktop icon.&lt;br /&gt;
|-&lt;br /&gt;
|MapServer 5.0.0&lt;br /&gt;
|http://mapserver.gis.umn.edu/&lt;br /&gt;
|The UMN MapServer CGI binary and binary utilities are installed. A sample CGI application can be loaded by clicking on the Mapserver desktop icon. Two sample mapfiles are provided in the /home/demo/mapserver/ directory.&lt;br /&gt;
|-&lt;br /&gt;
|PostGIS 1.3.1&lt;br /&gt;
|http://postgis.refractions.net/&lt;br /&gt;
|PostGIS is installed in PostgreSQL 8.3, in the template_postgis, test and australia databases. These databases can be accessed directly using the psql command within a terminal window, or through PGAdmin by clicking on the pgadmin 3 desktop icon. They can also be accessed via the various desktop client applications, using the username/password combination of demo/demo.&lt;br /&gt;
|-&lt;br /&gt;
|QGIS 0.11.0&lt;br /&gt;
|http://www.qgis.org/&lt;br /&gt;
|QGIS is available by clicking on the QGIS desktop icon.&lt;br /&gt;
|-&lt;br /&gt;
|uDig 1.1.0&lt;br /&gt;
|http://udig.refractions.net/&lt;br /&gt;
|uDig is available by clicking on the uDig desktop icon.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Included Data'''&lt;br /&gt;
	&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
|Data&lt;br /&gt;
|Location&lt;br /&gt;
|Notes&lt;br /&gt;
|-&lt;br /&gt;
|Alaska&lt;br /&gt;
|/usr/local/share/qgis_sample_data&lt;br /&gt;
|The Alaska Dataset is a free dataset including raster and vector data for the state of Alaska, as well as boundary polygons for neighbouring countries. The Alaskan state boundary is also available in the PostGIS database test.&lt;br /&gt;
|-&lt;br /&gt;
|Spearfish&lt;br /&gt;
|/usr/local/share/datagrass&lt;br /&gt;
|The spearfish demo is provided in GRASS compatible formats.&lt;br /&gt;
|-&lt;br /&gt;
|Australian&lt;br /&gt;
|''australia'' database&lt;br /&gt;
|The Australian Dataset consists of low-scale vector data for australian roads, rails and rivers, as well as political boundary shapes Australia and surrounding areas.&lt;br /&gt;
|-&lt;br /&gt;
|Blue Marble&lt;br /&gt;
|/usr/local/share/bluemarble&lt;br /&gt;
|Blue Marble is the blue marble.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Arramagong_LiveDVD&amp;diff=32330</id>
		<title>Arramagong LiveDVD</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Arramagong_LiveDVD&amp;diff=32330"/>
		<updated>2008-11-20T00:40:52Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: New page: '''Welcome to the Arramagong Live DVD'''  If you've gotten this far, you already know the concept of a Live DVD. This disk provides the opportunity to try a variety of open source geospati...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Welcome to the Arramagong Live DVD'''&lt;br /&gt;
&lt;br /&gt;
If you've gotten this far, you already know the concept of a Live DVD. This disk provides the opportunity to try a variety of open source geospatial applications without the need to install anything new on your system. This Live DVD is based on the XUbuntu operating system to ensure it can be freely distributed. Including such supporting applications as Apache Web Server, Apache Tomcat Application Server, Sun Java, PostgreSQL and PGAdmin, we are able to provide you with the variety of server and client applications, described below.&lt;br /&gt;
&lt;br /&gt;
This Live DVD is based on the Live DVD produced for the FOSS4G 2008 conference in Capetown, South Africa through the tireless effort of LISAsoft and Ominiverdi.&lt;br /&gt;
&lt;br /&gt;
'''Included Applications'''&lt;br /&gt;
&lt;br /&gt;
{|	&lt;br /&gt;
|-&lt;br /&gt;
|Application&lt;br /&gt;
|Homepage&lt;br /&gt;
|Notes&lt;br /&gt;
|-&lt;br /&gt;
|GeoServer 1.7.0&lt;br /&gt;
|http://geoserver.org/&lt;br /&gt;
|The GeoServer administration page is loaded by clicking on the Geoserver desktop icon. Under the Demo option on the admin page there are two options of interest. Sample Requests provides a form with XML sample responses that can be altered and sent to the server. The XML responses are displayed when returned. Map Preview provides an OpenLayers based map interface to allow exploration of the data served by GeoServer.&lt;br /&gt;
|-&lt;br /&gt;
|GRASS 6.3.0&lt;br /&gt;
|http://grass.osgeo.org/&lt;br /&gt;
|The GRASS GUI is available by clicking the GRASS Gis desktop icon.&lt;br /&gt;
|-&lt;br /&gt;
|gvSIG 1.1.2&lt;br /&gt;
|http://www.gvsig.gva.es/&lt;br /&gt;
|gvSIG is available by clicking the gvSIG desktop icon.&lt;br /&gt;
|-&lt;br /&gt;
|MapServer 5.0.0&lt;br /&gt;
|http://mapserver.gis.umn.edu/&lt;br /&gt;
|The UMN MapServer CGI binary and binary utilities are installed. A sample CGI application can be loaded by clicking on the Mapserver desktop icon. Two sample mapfiles are provided in the /home/demo/mapserver/ directory.&lt;br /&gt;
|-&lt;br /&gt;
|PostGIS 1.3.1&lt;br /&gt;
|http://postgis.refractions.net/&lt;br /&gt;
|PostGIS is installed in PostgreSQL 8.3, in the template_postgis, test and australia databases. These databases can be accessed directly using the psql command within a terminal window, or through PGAdmin by clicking on the pgadmin 3 desktop icon. They can also be accessed via the various desktop client applications, using the username/password combination of demo/demo.&lt;br /&gt;
|-&lt;br /&gt;
|QGIS 0.11.0&lt;br /&gt;
|http://www.qgis.org/&lt;br /&gt;
|QGIS is available by clicking on the QGIS desktop icon.&lt;br /&gt;
|-&lt;br /&gt;
|uDig 1.1-SC1&lt;br /&gt;
|http://udig.refractions.net/&lt;br /&gt;
|uDig is available by clicking on the uDig desktop icon.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
'''Included Data'''&lt;br /&gt;
	&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
|Data&lt;br /&gt;
|Location&lt;br /&gt;
|Notes&lt;br /&gt;
|-&lt;br /&gt;
|Alaska&lt;br /&gt;
|/home/demo/qgis_sample_data&lt;br /&gt;
|The Alaska Dataset is a free dataset including raster and vector data for the state of Alaska, as well as boundary polygons for neighbouring countries. The Alaskan state boundary is also available in the PostGIS database test.&lt;br /&gt;
|-&lt;br /&gt;
|Spearfish&lt;br /&gt;
|/home/demo/spearfish60&lt;br /&gt;
|The spearfish demo is provided in GRASS compatible formats.&lt;br /&gt;
|-&lt;br /&gt;
|Australian&lt;br /&gt;
|''australia'' database&lt;br /&gt;
|The Australian Dataset consists of low-scale vector data for australian roads, rails and rivers, as well as political boundary shapes Australia and surrounding areas.&lt;br /&gt;
|-&lt;br /&gt;
|Blue Marble&lt;br /&gt;
|/home/demo/bluemarble&lt;br /&gt;
|Blue Marble is the blue marble.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32329</id>
		<title>Live GIS Disc</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32329"/>
		<updated>2008-11-20T00:38:53Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: /* Arramagong LiveDVD */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Communication ==&lt;br /&gt;
&lt;br /&gt;
* The project is coordinated on the [http://lists.osgeo.org/mailman/listinfo/live-demo OSGeo live-demo mailing list]&lt;br /&gt;
: The mailing list is [http://lists.osgeo.org/pipermail/live-demo/ archived here] and at [http://news.gmane.org/gmane.comp.gis.osgeo.livedemo Gmane]&lt;br /&gt;
* IRC will be on irc://freenode.net#osgeo&lt;br /&gt;
&lt;br /&gt;
== Long Term Plan ==&lt;br /&gt;
&lt;br /&gt;
Following the BOF session on 1 Oct, 2008 in Cape Town (and IRC), we've developed a broad plan for the future of the LiveDVD project.  I will attempt to summarise it.&lt;br /&gt;
&lt;br /&gt;
=== Use Cases ===&lt;br /&gt;
&lt;br /&gt;
There are multiple use cases for this product:&lt;br /&gt;
&lt;br /&gt;
* '''Demo DVD''' that can be handed out at conferences.&amp;lt;br /&amp;gt;This will contain a wide variety of applications, preconfigured with some sample data and containing introductory tutorials.  It should be able to function completely offline, at least within the scope of the tutorials, and should provide an introduction to many products.  This is very much a Live DVD, and as such should be conservative with regards to size (it will be run from RAM).&lt;br /&gt;
* '''Education DVD'''&amp;lt;br /&amp;gt;This seems to be a more involved version than the Demo DVD, including more involved material, including train-the-trainer style material.  This is targeted at those who will be teaching others, be it in workshops or university classes/labs.  My expectation (mleslie: feel free to correct me) is that this is more likely to be installed on machines and used as a teaching resource, as opposed to a toy to play with, as with the Demo DVD.  This will require material developed through the [[Category:Education|Education initiative]].&lt;br /&gt;
* '''Workstation Install DVD'''&amp;lt;br /&amp;gt;  This need was seen in Cape Town, where the bandwidth seems to be a very limiting factor.  Using the DVD to install either a complete OS, a set of packages to an existing Linux, or Windows installers completely offline is of great value in the developing world.  Would it be of greater value to lose the Edu or demo material and put in complete application documentation?&lt;br /&gt;
&lt;br /&gt;
=== Packaging ===&lt;br /&gt;
&lt;br /&gt;
The way forward was seen to require some proper packaging of every module used in the various products.  This means that every application needs to be packaged in a .deb file.  Datasets will be packaged in their own .deb files.  Application configurations, tutorials, documentation, education materials and the like would then be packaged separately, with dependencies defined to ensure the data and applications they need are in place.  &lt;br /&gt;
&lt;br /&gt;
* Basic rules of reuse apply.  If the same application configuration is used by more than one tutorial, it belongs in it's own package.  &lt;br /&gt;
* Standard version numbering is required to ensure compatibility as tutorials are updated.&lt;br /&gt;
* Packages should be compatible with both Ubuntu and Debian&lt;br /&gt;
* OSGeo should host a package repository for this work&lt;br /&gt;
* Applications should target release to official Debian repositories as a long-term goal&lt;br /&gt;
&lt;br /&gt;
Once these packages are created, it will be fairly easy to cut special-purpose images containing subsets of the available packages.  Standard images can be defined using 'virtual packages' that only contain dependencies.&lt;br /&gt;
&lt;br /&gt;
== Next Steps ==&lt;br /&gt;
&lt;br /&gt;
[[Live_GIS_Disc_Packages]] documents what is currently available through Debian repositories and OSGeo repositories, and what still needs to be packaged.&lt;br /&gt;
&lt;br /&gt;
The immediate steps (as of 2 Oct, 2008) are:&lt;br /&gt;
* Get a repository up and running (Tim Bowden as volunteered as repo maintainer, with guidance from Chris Schmidt)&lt;br /&gt;
* Complete the proper packaging of everything that made it on to the FOSS4G 2008 version&lt;br /&gt;
* Prod the Edu group for content that can be packaged.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Future Targets ==&lt;br /&gt;
&lt;br /&gt;
Here is an attempt at a list of milestones that should have DVD image releases.&lt;br /&gt;
&lt;br /&gt;
* GIS Day 2008, November 19th 2008&lt;br /&gt;
* [[AAG 2009]], March 2009&lt;br /&gt;
* FOSS4G 2009, November 2009&lt;br /&gt;
&lt;br /&gt;
== FOSS4G 2008 LiveDVD ==&lt;br /&gt;
&lt;br /&gt;
The discussion and planning for the FOSS4G 2008 LiveDVD has been archived [[FOSS4G2008_LiveDVD_discussion|here]].&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is now [[FOSS4G2008_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
== Arramagong LiveDVD ==&lt;br /&gt;
&lt;br /&gt;
''The latests version of the LiveDVD is v1.0Beta1''&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is [[Arramagong_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
Until we have an issue tracker, problems can be reported [[Arramagong_LiveDVD_issues|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
== Links to related projects ==&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.debian.org/DebianGis/LiveImages DebianGIS Live Image]&lt;br /&gt;
: [http://svn.debian.org/wsvn/pkg-grass/packages/debian-gis/?rev=0&amp;amp;sc=0 build scripts in SVN]&lt;br /&gt;
* [http://livecd.ominiverdi.org/index.php?page=LiveCD&amp;amp;toc=livecd Omniverdi LiveCD project]&lt;br /&gt;
* [http://grass.osgeo.org/download/cdrom.php List of live CDs from the GRASS download site]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Links to Build tool options ==&lt;br /&gt;
* [http://packages.debian.org/sid/live-helper live-helper]&lt;br /&gt;
* [http://www.gnewsense.org/Builder/HowToCreateYourOwnGNULinuxDistribution Gnewsense method]&lt;br /&gt;
* [http://www.howtoforge.com/ubuntu-linux-mint-livecd-with-remastersys Remastersys]&lt;br /&gt;
* [http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd Debian\Ubuntu Tricks]&lt;br /&gt;
* [https://help.ubuntu.com/community/LiveCDCustomization Ubuntu Help Way]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Arramagogn_LiveDVD_issues&amp;diff=32327</id>
		<title>Arramagogn LiveDVD issues</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Arramagogn_LiveDVD_issues&amp;diff=32327"/>
		<updated>2008-11-20T00:38:12Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: Arramagogn LiveDVD issues moved to Arramagong LiveDVD issues: now it's a spelling mistake.... :'(&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Arramagong LiveDVD issues]]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Arramagong_LiveDVD_issues&amp;diff=32326</id>
		<title>Arramagong LiveDVD issues</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Arramagong_LiveDVD_issues&amp;diff=32326"/>
		<updated>2008-11-20T00:38:12Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: Arramagogn LiveDVD issues moved to Arramagong LiveDVD issues: now it's a spelling mistake.... :'(&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Testing===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
!Who did testing!!ISO Image!!Results!!Machines&lt;br /&gt;
|-&lt;br /&gt;
| Stefan Hansen&lt;br /&gt;
| Arramagongv1.0Beta1.iso  &lt;br /&gt;
| &lt;br /&gt;
* Loaded fine &lt;br /&gt;
* Grass path not pointing to folder with example data&lt;br /&gt;
* Being forced to enter postgres pwd when gvSIG is started is annoying&lt;br /&gt;
* path to example data on welcome page is incorrect&lt;br /&gt;
| VirtualBox v2.0.2&lt;br /&gt;
|-&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32325</id>
		<title>Live GIS Disc</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32325"/>
		<updated>2008-11-20T00:37:44Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: /* Arramagong LiveDVD */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Communication ==&lt;br /&gt;
&lt;br /&gt;
* The project is coordinated on the [http://lists.osgeo.org/mailman/listinfo/live-demo OSGeo live-demo mailing list]&lt;br /&gt;
: The mailing list is [http://lists.osgeo.org/pipermail/live-demo/ archived here] and at [http://news.gmane.org/gmane.comp.gis.osgeo.livedemo Gmane]&lt;br /&gt;
* IRC will be on irc://freenode.net#osgeo&lt;br /&gt;
&lt;br /&gt;
== Long Term Plan ==&lt;br /&gt;
&lt;br /&gt;
Following the BOF session on 1 Oct, 2008 in Cape Town (and IRC), we've developed a broad plan for the future of the LiveDVD project.  I will attempt to summarise it.&lt;br /&gt;
&lt;br /&gt;
=== Use Cases ===&lt;br /&gt;
&lt;br /&gt;
There are multiple use cases for this product:&lt;br /&gt;
&lt;br /&gt;
* '''Demo DVD''' that can be handed out at conferences.&amp;lt;br /&amp;gt;This will contain a wide variety of applications, preconfigured with some sample data and containing introductory tutorials.  It should be able to function completely offline, at least within the scope of the tutorials, and should provide an introduction to many products.  This is very much a Live DVD, and as such should be conservative with regards to size (it will be run from RAM).&lt;br /&gt;
* '''Education DVD'''&amp;lt;br /&amp;gt;This seems to be a more involved version than the Demo DVD, including more involved material, including train-the-trainer style material.  This is targeted at those who will be teaching others, be it in workshops or university classes/labs.  My expectation (mleslie: feel free to correct me) is that this is more likely to be installed on machines and used as a teaching resource, as opposed to a toy to play with, as with the Demo DVD.  This will require material developed through the [[Category:Education|Education initiative]].&lt;br /&gt;
* '''Workstation Install DVD'''&amp;lt;br /&amp;gt;  This need was seen in Cape Town, where the bandwidth seems to be a very limiting factor.  Using the DVD to install either a complete OS, a set of packages to an existing Linux, or Windows installers completely offline is of great value in the developing world.  Would it be of greater value to lose the Edu or demo material and put in complete application documentation?&lt;br /&gt;
&lt;br /&gt;
=== Packaging ===&lt;br /&gt;
&lt;br /&gt;
The way forward was seen to require some proper packaging of every module used in the various products.  This means that every application needs to be packaged in a .deb file.  Datasets will be packaged in their own .deb files.  Application configurations, tutorials, documentation, education materials and the like would then be packaged separately, with dependencies defined to ensure the data and applications they need are in place.  &lt;br /&gt;
&lt;br /&gt;
* Basic rules of reuse apply.  If the same application configuration is used by more than one tutorial, it belongs in it's own package.  &lt;br /&gt;
* Standard version numbering is required to ensure compatibility as tutorials are updated.&lt;br /&gt;
* Packages should be compatible with both Ubuntu and Debian&lt;br /&gt;
* OSGeo should host a package repository for this work&lt;br /&gt;
* Applications should target release to official Debian repositories as a long-term goal&lt;br /&gt;
&lt;br /&gt;
Once these packages are created, it will be fairly easy to cut special-purpose images containing subsets of the available packages.  Standard images can be defined using 'virtual packages' that only contain dependencies.&lt;br /&gt;
&lt;br /&gt;
== Next Steps ==&lt;br /&gt;
&lt;br /&gt;
[[Live_GIS_Disc_Packages]] documents what is currently available through Debian repositories and OSGeo repositories, and what still needs to be packaged.&lt;br /&gt;
&lt;br /&gt;
The immediate steps (as of 2 Oct, 2008) are:&lt;br /&gt;
* Get a repository up and running (Tim Bowden as volunteered as repo maintainer, with guidance from Chris Schmidt)&lt;br /&gt;
* Complete the proper packaging of everything that made it on to the FOSS4G 2008 version&lt;br /&gt;
* Prod the Edu group for content that can be packaged.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Future Targets ==&lt;br /&gt;
&lt;br /&gt;
Here is an attempt at a list of milestones that should have DVD image releases.&lt;br /&gt;
&lt;br /&gt;
* GIS Day 2008, November 19th 2008&lt;br /&gt;
* [[AAG 2009]], March 2009&lt;br /&gt;
* FOSS4G 2009, November 2009&lt;br /&gt;
&lt;br /&gt;
== FOSS4G 2008 LiveDVD ==&lt;br /&gt;
&lt;br /&gt;
The discussion and planning for the FOSS4G 2008 LiveDVD has been archived [[FOSS4G2008_LiveDVD_discussion|here]].&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is now [[FOSS4G2008_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
== Arramagong LiveDVD ==&lt;br /&gt;
&lt;br /&gt;
''The latests version of the LiveDVD is v1.0Beta1''&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is [[Arramagong_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
Until we have an issue tracker, problems can be reported [[Arramagogn_LiveDVD_issues|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
== Links to related projects ==&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.debian.org/DebianGis/LiveImages DebianGIS Live Image]&lt;br /&gt;
: [http://svn.debian.org/wsvn/pkg-grass/packages/debian-gis/?rev=0&amp;amp;sc=0 build scripts in SVN]&lt;br /&gt;
* [http://livecd.ominiverdi.org/index.php?page=LiveCD&amp;amp;toc=livecd Omniverdi LiveCD project]&lt;br /&gt;
* [http://grass.osgeo.org/download/cdrom.php List of live CDs from the GRASS download site]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Links to Build tool options ==&lt;br /&gt;
* [http://packages.debian.org/sid/live-helper live-helper]&lt;br /&gt;
* [http://www.gnewsense.org/Builder/HowToCreateYourOwnGNULinuxDistribution Gnewsense method]&lt;br /&gt;
* [http://www.howtoforge.com/ubuntu-linux-mint-livecd-with-remastersys Remastersys]&lt;br /&gt;
* [http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd Debian\Ubuntu Tricks]&lt;br /&gt;
* [https://help.ubuntu.com/community/LiveCDCustomization Ubuntu Help Way]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32324</id>
		<title>Live GIS Disc</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32324"/>
		<updated>2008-11-20T00:37:20Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: /* Arramagong LiveDVD */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Communication ==&lt;br /&gt;
&lt;br /&gt;
* The project is coordinated on the [http://lists.osgeo.org/mailman/listinfo/live-demo OSGeo live-demo mailing list]&lt;br /&gt;
: The mailing list is [http://lists.osgeo.org/pipermail/live-demo/ archived here] and at [http://news.gmane.org/gmane.comp.gis.osgeo.livedemo Gmane]&lt;br /&gt;
* IRC will be on irc://freenode.net#osgeo&lt;br /&gt;
&lt;br /&gt;
== Long Term Plan ==&lt;br /&gt;
&lt;br /&gt;
Following the BOF session on 1 Oct, 2008 in Cape Town (and IRC), we've developed a broad plan for the future of the LiveDVD project.  I will attempt to summarise it.&lt;br /&gt;
&lt;br /&gt;
=== Use Cases ===&lt;br /&gt;
&lt;br /&gt;
There are multiple use cases for this product:&lt;br /&gt;
&lt;br /&gt;
* '''Demo DVD''' that can be handed out at conferences.&amp;lt;br /&amp;gt;This will contain a wide variety of applications, preconfigured with some sample data and containing introductory tutorials.  It should be able to function completely offline, at least within the scope of the tutorials, and should provide an introduction to many products.  This is very much a Live DVD, and as such should be conservative with regards to size (it will be run from RAM).&lt;br /&gt;
* '''Education DVD'''&amp;lt;br /&amp;gt;This seems to be a more involved version than the Demo DVD, including more involved material, including train-the-trainer style material.  This is targeted at those who will be teaching others, be it in workshops or university classes/labs.  My expectation (mleslie: feel free to correct me) is that this is more likely to be installed on machines and used as a teaching resource, as opposed to a toy to play with, as with the Demo DVD.  This will require material developed through the [[Category:Education|Education initiative]].&lt;br /&gt;
* '''Workstation Install DVD'''&amp;lt;br /&amp;gt;  This need was seen in Cape Town, where the bandwidth seems to be a very limiting factor.  Using the DVD to install either a complete OS, a set of packages to an existing Linux, or Windows installers completely offline is of great value in the developing world.  Would it be of greater value to lose the Edu or demo material and put in complete application documentation?&lt;br /&gt;
&lt;br /&gt;
=== Packaging ===&lt;br /&gt;
&lt;br /&gt;
The way forward was seen to require some proper packaging of every module used in the various products.  This means that every application needs to be packaged in a .deb file.  Datasets will be packaged in their own .deb files.  Application configurations, tutorials, documentation, education materials and the like would then be packaged separately, with dependencies defined to ensure the data and applications they need are in place.  &lt;br /&gt;
&lt;br /&gt;
* Basic rules of reuse apply.  If the same application configuration is used by more than one tutorial, it belongs in it's own package.  &lt;br /&gt;
* Standard version numbering is required to ensure compatibility as tutorials are updated.&lt;br /&gt;
* Packages should be compatible with both Ubuntu and Debian&lt;br /&gt;
* OSGeo should host a package repository for this work&lt;br /&gt;
* Applications should target release to official Debian repositories as a long-term goal&lt;br /&gt;
&lt;br /&gt;
Once these packages are created, it will be fairly easy to cut special-purpose images containing subsets of the available packages.  Standard images can be defined using 'virtual packages' that only contain dependencies.&lt;br /&gt;
&lt;br /&gt;
== Next Steps ==&lt;br /&gt;
&lt;br /&gt;
[[Live_GIS_Disc_Packages]] documents what is currently available through Debian repositories and OSGeo repositories, and what still needs to be packaged.&lt;br /&gt;
&lt;br /&gt;
The immediate steps (as of 2 Oct, 2008) are:&lt;br /&gt;
* Get a repository up and running (Tim Bowden as volunteered as repo maintainer, with guidance from Chris Schmidt)&lt;br /&gt;
* Complete the proper packaging of everything that made it on to the FOSS4G 2008 version&lt;br /&gt;
* Prod the Edu group for content that can be packaged.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Future Targets ==&lt;br /&gt;
&lt;br /&gt;
Here is an attempt at a list of milestones that should have DVD image releases.&lt;br /&gt;
&lt;br /&gt;
* GIS Day 2008, November 19th 2008&lt;br /&gt;
* [[AAG 2009]], March 2009&lt;br /&gt;
* FOSS4G 2009, November 2009&lt;br /&gt;
&lt;br /&gt;
== FOSS4G 2008 LiveDVD ==&lt;br /&gt;
&lt;br /&gt;
The discussion and planning for the FOSS4G 2008 LiveDVD has been archived [[FOSS4G2008_LiveDVD_discussion|here]].&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is now [[FOSS4G2008_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
== Arramagong LiveDVD ==&lt;br /&gt;
&lt;br /&gt;
''The latests version of the LiveDVD is v1.0Beta1''&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is [[Arramagong_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
Until we have an issue tracker, problems can be reported [[FOSS4G2008_Arramagong_issues|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
== Links to related projects ==&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.debian.org/DebianGis/LiveImages DebianGIS Live Image]&lt;br /&gt;
: [http://svn.debian.org/wsvn/pkg-grass/packages/debian-gis/?rev=0&amp;amp;sc=0 build scripts in SVN]&lt;br /&gt;
* [http://livecd.ominiverdi.org/index.php?page=LiveCD&amp;amp;toc=livecd Omniverdi LiveCD project]&lt;br /&gt;
* [http://grass.osgeo.org/download/cdrom.php List of live CDs from the GRASS download site]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Links to Build tool options ==&lt;br /&gt;
* [http://packages.debian.org/sid/live-helper live-helper]&lt;br /&gt;
* [http://www.gnewsense.org/Builder/HowToCreateYourOwnGNULinuxDistribution Gnewsense method]&lt;br /&gt;
* [http://www.howtoforge.com/ubuntu-linux-mint-livecd-with-remastersys Remastersys]&lt;br /&gt;
* [http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd Debian\Ubuntu Tricks]&lt;br /&gt;
* [https://help.ubuntu.com/community/LiveCDCustomization Ubuntu Help Way]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=FOSS4G2008_LiveDVD_issues&amp;diff=32323</id>
		<title>FOSS4G2008 LiveDVD issues</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=FOSS4G2008_LiveDVD_issues&amp;diff=32323"/>
		<updated>2008-11-20T00:36:44Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: FOSS4G2008 LiveDVD issues moved to Arramagogn LiveDVD issues: wrong LiveDVD....&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Arramagogn LiveDVD issues]]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Arramagong_LiveDVD_issues&amp;diff=32322</id>
		<title>Arramagong LiveDVD issues</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Arramagong_LiveDVD_issues&amp;diff=32322"/>
		<updated>2008-11-20T00:36:44Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: FOSS4G2008 LiveDVD issues moved to Arramagogn LiveDVD issues: wrong LiveDVD....&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Testing===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
!Who did testing!!ISO Image!!Results!!Machines&lt;br /&gt;
|-&lt;br /&gt;
| Stefan Hansen&lt;br /&gt;
| Arramagongv1.0Beta1.iso  &lt;br /&gt;
| &lt;br /&gt;
* Loaded fine &lt;br /&gt;
* Grass path not pointing to folder with example data&lt;br /&gt;
* Being forced to enter postgres pwd when gvSIG is started is annoying&lt;br /&gt;
* path to example data on welcome page is incorrect&lt;br /&gt;
| VirtualBox v2.0.2&lt;br /&gt;
|-&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Arramagong_LiveDVD_issues&amp;diff=32321</id>
		<title>Arramagong LiveDVD issues</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Arramagong_LiveDVD_issues&amp;diff=32321"/>
		<updated>2008-11-20T00:29:41Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: New page: ===Testing===  {|border=&amp;quot;1&amp;quot; !Who did testing!!ISO Image!!Results!!Machines |- | Stefan Hansen | Arramagongv1.0Beta1.iso   |  * Loaded fine  * Grass path not pointing to folder with example...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Testing===&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
!Who did testing!!ISO Image!!Results!!Machines&lt;br /&gt;
|-&lt;br /&gt;
| Stefan Hansen&lt;br /&gt;
| Arramagongv1.0Beta1.iso  &lt;br /&gt;
| &lt;br /&gt;
* Loaded fine &lt;br /&gt;
* Grass path not pointing to folder with example data&lt;br /&gt;
* Being forced to enter postgres pwd when gvSIG is started is annoying&lt;br /&gt;
* path to example data on welcome page is incorrect&lt;br /&gt;
| VirtualBox v2.0.2&lt;br /&gt;
|-&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32320</id>
		<title>Live GIS Disc</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=32320"/>
		<updated>2008-11-20T00:21:42Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: /* FOSS4G 2008 LiveDVD */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Communication ==&lt;br /&gt;
&lt;br /&gt;
* The project is coordinated on the [http://lists.osgeo.org/mailman/listinfo/live-demo OSGeo live-demo mailing list]&lt;br /&gt;
: The mailing list is [http://lists.osgeo.org/pipermail/live-demo/ archived here] and at [http://news.gmane.org/gmane.comp.gis.osgeo.livedemo Gmane]&lt;br /&gt;
* IRC will be on irc://freenode.net#osgeo&lt;br /&gt;
&lt;br /&gt;
== Long Term Plan ==&lt;br /&gt;
&lt;br /&gt;
Following the BOF session on 1 Oct, 2008 in Cape Town (and IRC), we've developed a broad plan for the future of the LiveDVD project.  I will attempt to summarise it.&lt;br /&gt;
&lt;br /&gt;
=== Use Cases ===&lt;br /&gt;
&lt;br /&gt;
There are multiple use cases for this product:&lt;br /&gt;
&lt;br /&gt;
* '''Demo DVD''' that can be handed out at conferences.&amp;lt;br /&amp;gt;This will contain a wide variety of applications, preconfigured with some sample data and containing introductory tutorials.  It should be able to function completely offline, at least within the scope of the tutorials, and should provide an introduction to many products.  This is very much a Live DVD, and as such should be conservative with regards to size (it will be run from RAM).&lt;br /&gt;
* '''Education DVD'''&amp;lt;br /&amp;gt;This seems to be a more involved version than the Demo DVD, including more involved material, including train-the-trainer style material.  This is targeted at those who will be teaching others, be it in workshops or university classes/labs.  My expectation (mleslie: feel free to correct me) is that this is more likely to be installed on machines and used as a teaching resource, as opposed to a toy to play with, as with the Demo DVD.  This will require material developed through the [[Category:Education|Education initiative]].&lt;br /&gt;
* '''Workstation Install DVD'''&amp;lt;br /&amp;gt;  This need was seen in Cape Town, where the bandwidth seems to be a very limiting factor.  Using the DVD to install either a complete OS, a set of packages to an existing Linux, or Windows installers completely offline is of great value in the developing world.  Would it be of greater value to lose the Edu or demo material and put in complete application documentation?&lt;br /&gt;
&lt;br /&gt;
=== Packaging ===&lt;br /&gt;
&lt;br /&gt;
The way forward was seen to require some proper packaging of every module used in the various products.  This means that every application needs to be packaged in a .deb file.  Datasets will be packaged in their own .deb files.  Application configurations, tutorials, documentation, education materials and the like would then be packaged separately, with dependencies defined to ensure the data and applications they need are in place.  &lt;br /&gt;
&lt;br /&gt;
* Basic rules of reuse apply.  If the same application configuration is used by more than one tutorial, it belongs in it's own package.  &lt;br /&gt;
* Standard version numbering is required to ensure compatibility as tutorials are updated.&lt;br /&gt;
* Packages should be compatible with both Ubuntu and Debian&lt;br /&gt;
* OSGeo should host a package repository for this work&lt;br /&gt;
* Applications should target release to official Debian repositories as a long-term goal&lt;br /&gt;
&lt;br /&gt;
Once these packages are created, it will be fairly easy to cut special-purpose images containing subsets of the available packages.  Standard images can be defined using 'virtual packages' that only contain dependencies.&lt;br /&gt;
&lt;br /&gt;
== Next Steps ==&lt;br /&gt;
&lt;br /&gt;
[[Live_GIS_Disc_Packages]] documents what is currently available through Debian repositories and OSGeo repositories, and what still needs to be packaged.&lt;br /&gt;
&lt;br /&gt;
The immediate steps (as of 2 Oct, 2008) are:&lt;br /&gt;
* Get a repository up and running (Tim Bowden as volunteered as repo maintainer, with guidance from Chris Schmidt)&lt;br /&gt;
* Complete the proper packaging of everything that made it on to the FOSS4G 2008 version&lt;br /&gt;
* Prod the Edu group for content that can be packaged.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Future Targets ==&lt;br /&gt;
&lt;br /&gt;
Here is an attempt at a list of milestones that should have DVD image releases.&lt;br /&gt;
&lt;br /&gt;
* GIS Day 2008, November 19th 2008&lt;br /&gt;
* [[AAG 2009]], March 2009&lt;br /&gt;
* FOSS4G 2009, November 2009&lt;br /&gt;
&lt;br /&gt;
== FOSS4G 2008 LiveDVD ==&lt;br /&gt;
&lt;br /&gt;
The discussion and planning for the FOSS4G 2008 LiveDVD has been archived [[FOSS4G2008_LiveDVD_discussion|here]].&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is now [[FOSS4G2008_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
== Arramagong LiveDVD ==&lt;br /&gt;
&lt;br /&gt;
''The latests version of the LiveDVD is v1.0Beta1''&lt;br /&gt;
&lt;br /&gt;
The index page of the DVD is [[Arramagong_LiveDVD|here]].&lt;br /&gt;
&lt;br /&gt;
Until we have an issue tracker, problems can be reported [[FOSS4G2008_LiveDVD_issues|here]].&lt;br /&gt;
&lt;br /&gt;
The DVD is available for download at http://download.osgeo.org/livedvd.&lt;br /&gt;
&lt;br /&gt;
== Links to related projects ==&lt;br /&gt;
&lt;br /&gt;
* [http://wiki.debian.org/DebianGis/LiveImages DebianGIS Live Image]&lt;br /&gt;
: [http://svn.debian.org/wsvn/pkg-grass/packages/debian-gis/?rev=0&amp;amp;sc=0 build scripts in SVN]&lt;br /&gt;
* [http://livecd.ominiverdi.org/index.php?page=LiveCD&amp;amp;toc=livecd Omniverdi LiveCD project]&lt;br /&gt;
* [http://grass.osgeo.org/download/cdrom.php List of live CDs from the GRASS download site]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Links to Build tool options ==&lt;br /&gt;
* [http://packages.debian.org/sid/live-helper live-helper]&lt;br /&gt;
* [http://www.gnewsense.org/Builder/HowToCreateYourOwnGNULinuxDistribution Gnewsense method]&lt;br /&gt;
* [http://www.howtoforge.com/ubuntu-linux-mint-livecd-with-remastersys Remastersys]&lt;br /&gt;
* [http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd Debian\Ubuntu Tricks]&lt;br /&gt;
* [https://help.ubuntu.com/community/LiveCDCustomization Ubuntu Help Way]&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=LISAsoft-LiveCD_process&amp;diff=28985</id>
		<title>LISAsoft-LiveCD process</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=LISAsoft-LiveCD_process&amp;diff=28985"/>
		<updated>2008-09-15T07:18:36Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: /* Making DISPLAY usable within CHROOT */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=How LISAsoft's LiveCD is created=&lt;br /&gt;
&lt;br /&gt;
Basically, we follow this HOW-TO: http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd&lt;br /&gt;
&lt;br /&gt;
As starting point we use current Ubuntu ISO-image. In the following it is assumed that the image is stored under ~/Desktop.&lt;br /&gt;
&lt;br /&gt;
==Preparing the Host==&lt;br /&gt;
&lt;br /&gt;
 $ sudo apt-get install squashfs-tools chroot&lt;br /&gt;
 $ mkdir /tmp/livecd&lt;br /&gt;
 $ sudo mount -o loop ~/Desktop/ubuntu-7.10-desktop-i386.iso /tmp/livecd&lt;br /&gt;
 $ mkdir ~/livecd&lt;br /&gt;
 $ mkdir ~/livecd/cd&lt;br /&gt;
 $ rsync --exclude=/casper/filesystem.squashfs -a /tmp/livecd/ ~/livecd/cd&lt;br /&gt;
 $ mkdir ~/livecd/squashfs&lt;br /&gt;
 $ mkdir ~/livecd/custom&lt;br /&gt;
 $ sudo modprobe squashfs&lt;br /&gt;
 $ sudo mount -t squashfs -o loop /tmp/livecd/casper/filesystem.squashfs ~/livecd/squashfs/&lt;br /&gt;
 $ sudo cp -a ~/livecd/squashfs/* ~/livecd/custom&lt;br /&gt;
 $ sudo cp /etc/resolv.conf /etc/hosts ~/livecd/custom/etc/&lt;br /&gt;
&lt;br /&gt;
==Getting into our future image==&lt;br /&gt;
 $ sudo chroot ~/livecd/custom&lt;br /&gt;
 # mount -t proc none /proc/&lt;br /&gt;
 # mount -t sysfs none /sys/&lt;br /&gt;
 # export HOME=/root&lt;br /&gt;
&lt;br /&gt;
==Making DISPLAY usable within CHROOT==&lt;br /&gt;
*extract display cookie (do this as the normal VMware user)&lt;br /&gt;
 xauth extract /tmp/display $DISPLAY&lt;br /&gt;
*bind mount /tmp, so that it's visible on chroot&lt;br /&gt;
 sudo mount --bind /tmp/ /home/vmplanet/livecd/custom/tmp&lt;br /&gt;
*on chroot environment&lt;br /&gt;
 xauth merge /tmp/display&lt;br /&gt;
 export DISPLAY=:0&lt;br /&gt;
&lt;br /&gt;
==Cleaning up within CHROOT==&lt;br /&gt;
 # apt-get clean&lt;br /&gt;
 # rm -rf /tmp/*&lt;br /&gt;
 # umount /proc/&lt;br /&gt;
 # umount /sys/&lt;br /&gt;
 # exit &lt;br /&gt;
&lt;br /&gt;
==Building the ISO image==&lt;br /&gt;
 chmod +w ~/livecd/cd/casper/filesystem.manifest&lt;br /&gt;
&lt;br /&gt;
 sudo chroot ~/livecd/custom dpkg-query -W --showformat='${Package} ${Version}\n' &amp;gt; ~/livecd/cd/casper/filesystem.manifest&lt;br /&gt;
&lt;br /&gt;
 sudo cp ~/livecd/cd/casper/filesystem.manifest ~/livecd/cd/casper/filesystem.manifest-desktop&lt;br /&gt;
&lt;br /&gt;
 sudo mksquashfs ~/livecd/custom ~/livecd/cd/casper/filesystem.squashfs -no-duplicates -noappend&lt;br /&gt;
&lt;br /&gt;
 sudo rm ~/livecd/cd/md5sum.txt&lt;br /&gt;
 sudo -s&lt;br /&gt;
 (cd ~/livecd/cd &amp;amp;&amp;amp; find . -type f -print0 | xargs -0 md5sum &amp;gt; md5sum.txt) &lt;br /&gt;
&lt;br /&gt;
 cd ~/livecd/cd&lt;br /&gt;
 sudo mkisofs -r -V &amp;quot;Arramagong-Live-v0_4&amp;quot; -b isolinux/isolinux.bin -c isolinux/boot.cat -cache-inodes -J -l -no-emul-boot -boot-load-size 4 -boot-info-table -o ~/Desktop/Arramagong-Live-v0_4.iso .&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=LISAsoft-LiveCD_process&amp;diff=28911</id>
		<title>LISAsoft-LiveCD process</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=LISAsoft-LiveCD_process&amp;diff=28911"/>
		<updated>2008-09-12T07:40:13Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: New page: =How LISAsoft's LiveCD is created=  Basically, we follow this HOW-TO: http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd  As starting point we use current Ubuntu ISO-image. In the...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=How LISAsoft's LiveCD is created=&lt;br /&gt;
&lt;br /&gt;
Basically, we follow this HOW-TO: http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd&lt;br /&gt;
&lt;br /&gt;
As starting point we use current Ubuntu ISO-image. In the following it is assumed that the image is stored under ~/Desktop.&lt;br /&gt;
&lt;br /&gt;
==Preparing the Host==&lt;br /&gt;
&lt;br /&gt;
 $ sudo apt-get install squashfs-tools chroot&lt;br /&gt;
 $ mkdir /tmp/livecd&lt;br /&gt;
 $ sudo mount -o loop ~/Desktop/ubuntu-7.10-desktop-i386.iso /tmp/livecd&lt;br /&gt;
 $ mkdir ~/livecd&lt;br /&gt;
 $ mkdir ~/livecd/cd&lt;br /&gt;
 $ rsync --exclude=/casper/filesystem.squashfs -a /tmp/livecd/ ~/livecd/cd&lt;br /&gt;
 $ mkdir ~/livecd/squashfs&lt;br /&gt;
 $ mkdir ~/livecd/custom&lt;br /&gt;
 $ sudo modprobe squashfs&lt;br /&gt;
 $ sudo mount -t squashfs -o loop /tmp/livecd/casper/filesystem.squashfs ~/livecd/squashfs/&lt;br /&gt;
 $ sudo cp -a ~/livecd/squashfs/* ~/livecd/custom&lt;br /&gt;
 $ sudo cp /etc/resolv.conf /etc/hosts ~/livecd/custom/etc/&lt;br /&gt;
&lt;br /&gt;
==Getting into our future image==&lt;br /&gt;
 $ sudo chroot ~/livecd/custom&lt;br /&gt;
 # mount -t proc none /proc/&lt;br /&gt;
 # mount -t sysfs none /sys/&lt;br /&gt;
 # export HOME=/root&lt;br /&gt;
&lt;br /&gt;
==Making DISPLAY usable within CHROOT==&lt;br /&gt;
*extract display cookie (do this as the normal VMware user)&lt;br /&gt;
 xauth extract /tmp/display $DISPLAY&lt;br /&gt;
*bind mount /tmp, so that it's visible on chroot&lt;br /&gt;
 sudo mount --bind /tmp/ /home/vmplanet/livecd/custom/tmp&lt;br /&gt;
&lt;br /&gt;
==Cleaning up within CHROOT==&lt;br /&gt;
 # apt-get clean&lt;br /&gt;
 # rm -rf /tmp/*&lt;br /&gt;
 # umount /proc/&lt;br /&gt;
 # umount /sys/&lt;br /&gt;
 # exit &lt;br /&gt;
&lt;br /&gt;
==Building the ISO image==&lt;br /&gt;
 chmod +w ~/livecd/cd/casper/filesystem.manifest&lt;br /&gt;
&lt;br /&gt;
 sudo chroot ~/livecd/custom dpkg-query -W --showformat='${Package} ${Version}\n' &amp;gt; ~/livecd/cd/casper/filesystem.manifest&lt;br /&gt;
&lt;br /&gt;
 sudo cp ~/livecd/cd/casper/filesystem.manifest ~/livecd/cd/casper/filesystem.manifest-desktop&lt;br /&gt;
&lt;br /&gt;
 sudo mksquashfs ~/livecd/custom ~/livecd/cd/casper/filesystem.squashfs -no-duplicates -noappend&lt;br /&gt;
&lt;br /&gt;
 sudo rm ~/livecd/cd/md5sum.txt&lt;br /&gt;
 sudo -s&lt;br /&gt;
 (cd ~/livecd/cd &amp;amp;&amp;amp; find . -type f -print0 | xargs -0 md5sum &amp;gt; md5sum.txt) &lt;br /&gt;
&lt;br /&gt;
 cd ~/livecd/cd&lt;br /&gt;
 sudo mkisofs -r -V &amp;quot;Arramagong-Live-v0_4&amp;quot; -b isolinux/isolinux.bin -c isolinux/boot.cat -cache-inodes -J -l -no-emul-boot -boot-load-size 4 -boot-info-table -o ~/Desktop/Arramagong-Live-v0_4.iso .&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
	<entry>
		<id>https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=28909</id>
		<title>Live GIS Disc</title>
		<link rel="alternate" type="text/html" href="https://wiki.osgeo.org/w/index.php?title=Live_GIS_Disc&amp;diff=28909"/>
		<updated>2008-09-12T07:22:00Z</updated>

		<summary type="html">&lt;p&gt;Wiki-Shansen: /* What exists as of September, 11 2008 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Goal ==&lt;br /&gt;
&lt;br /&gt;
To create a live CD\DVD with as much OSGEO software as possible to be used in workshops, as handouts at conferences and to demonstrate a full functioning FOSS GIS stack.&lt;br /&gt;
&lt;br /&gt;
== What exists as of September, 11 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|border=&amp;quot;1&amp;quot;&lt;br /&gt;
!Authors!!Distro Base!!Packages!!Building tool!!Link&lt;br /&gt;
|-&lt;br /&gt;
|Camptocamp &lt;br /&gt;
|Ubuntu: &lt;br /&gt;
|MapGuideOS, adding SDI?&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|LisaSoft &lt;br /&gt;
|Ubuntu&lt;br /&gt;
|PostGIS, geoserver, gvsig&lt;br /&gt;
|[[LISAsoft-LiveCD process]]&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Ominiverdi&lt;br /&gt;
|Xubuntu&lt;br /&gt;
| QGIS, Grass, PostGIS, GDAL, R&lt;br /&gt;
|&lt;br /&gt;
|[http://livecd.ominiverdi.org/index.php?page=LiveCD&amp;amp;toc=livecd Omini Edu Live]&lt;br /&gt;
|-&lt;br /&gt;
|Gvsig&lt;br /&gt;
|Knoppix &lt;br /&gt;
|Postgis, geoserver, deegree, geonetwork&lt;br /&gt;
|&lt;br /&gt;
|[http://www.gvsig.gva.es/index.php?id=1992&amp;amp;L=0&amp;amp;K=1 gvsig live]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Plan for merged disc by [[FOSS4G2008]] ==&lt;br /&gt;
&lt;br /&gt;
'''Xubuntu'''&lt;br /&gt;
&lt;br /&gt;
* Build tool options &lt;br /&gt;
** [http://packages.debian.org/sid/live-helper live-helper]&lt;br /&gt;
** [http://www.gnewsense.org/Builder/HowToCreateYourOwnGNULinuxDistribution Gnewsense method]&lt;br /&gt;
** [http://www.howtoforge.com/ubuntu-linux-mint-livecd-with-remastersys Remastersys]&lt;br /&gt;
** [http://www.debuntu.org/how-to-customize-your-ubuntu-live-cd Debian\Ubuntu Tricks]&lt;br /&gt;
** [https://help.ubuntu.com/community/LiveCDCustomization Ubuntu Help Way]&lt;br /&gt;
&lt;br /&gt;
* Remaster the Ominiverdi [http://download.osgeo.org/livedvd/ image]&lt;br /&gt;
&lt;br /&gt;
* Communication on the [http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-general Debian GIS list]&lt;br /&gt;
&lt;br /&gt;
== Long Term Plan ==&lt;br /&gt;
&lt;br /&gt;
Not discussed yet.&lt;/div&gt;</summary>
		<author><name>Wiki-Shansen</name></author>
	</entry>
</feed>