Difference between revisions of "Development snapshots"

From ScarletDME
Jump to navigation Jump to search
Line 8: Line 8:
  
 
==How to unpack a snapshot==
 
==How to unpack a snapshot==
 +
 +
The snapshot is a gzipped tar file. The simplest way to extract the files is to use the following command:
 +
 +
 +
tar -zxf current-dev-snapshot.tar.gz
 +
 +
 +
You can also decompress the file first and then extract the files:
 +
 +
gunzip current-dev-snapshot.tar.gz
 +
 +
tar -xf current-dev-snapshot.tar.gz
 +
 +
 +
This will extract the entire OpenQM bundle and gplsrc root into the current working directory.
 +
 +
 +
cd /tmp/
 +
 +
mkdir /tmp/openqm-snapshot/
 +
 +
cd /tmp/openqm-snapshot/
 +
 +
wget http://gpl.openqm.com/downloads/snapshots/current-dev-snapshot.tar.gz
 +
 +
tar -zxf current-dev-snapshot.tar.gz
 +
 
==How to build a new copy of OpenQM GPL from a snapshot==
 
==How to build a new copy of OpenQM GPL from a snapshot==
 
==How to upgrade an existing OpenQM GPL install from a snapshot==
 
==How to upgrade an existing OpenQM GPL install from a snapshot==

Revision as of 20:35, 11 April 2009

How to obtain a snapshot of a recent development revision

Snapshots are available at http://gpl.openqm.com/downloads/snapshots/.

For the latest snapshot go to http://gpl.openqm.com/downloads/snapshots/current-dev-snapshot.tar.gz

Snapshot filename convention is: openqm-gpl-dev-<stable version number>-r<SVN revision>.tar.gz

How to unpack a snapshot

The snapshot is a gzipped tar file. The simplest way to extract the files is to use the following command:


tar -zxf current-dev-snapshot.tar.gz


You can also decompress the file first and then extract the files:

gunzip current-dev-snapshot.tar.gz

tar -xf current-dev-snapshot.tar.gz


This will extract the entire OpenQM bundle and gplsrc root into the current working directory.


cd /tmp/

mkdir /tmp/openqm-snapshot/

cd /tmp/openqm-snapshot/

wget http://gpl.openqm.com/downloads/snapshots/current-dev-snapshot.tar.gz

tar -zxf current-dev-snapshot.tar.gz

How to build a new copy of OpenQM GPL from a snapshot

How to upgrade an existing OpenQM GPL install from a snapshot