<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.archivematica.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Austin</id>
	<title>Archivematica - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.archivematica.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Austin"/>
	<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/Special:Contributions/Austin"/>
	<updated>2026-05-01T17:15:32Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.4</generator>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9372</id>
		<title>Install-1.0-packages</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9372"/>
		<updated>2014-01-21T18:27:32Z</updated>

		<summary type="html">&lt;p&gt;Austin: /* Deploying Archivematica 1.0 packages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Deploying Archivematica 1.0 packages ==&lt;br /&gt;
&lt;br /&gt;
Archivematica packages are hosted on Launchpad, in an Ubuntu PPA (Personal Package Archive).  There are a number of Archivematica PPA's, the test versions of Archivematica 1.0 packages are hosted in the archivematica/daily ppa.  In order to install software onto your Ubuntu 12.04 system from this PPA:&lt;br /&gt;
&lt;br /&gt;
*Add the archivematica/daily PPA to your list of trusted repositories (if add-apt-repositories is not available you must install python-software-properties first):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install python-software-properties&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/release&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/externals&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note: The daily PPA is used for daily snapshots, it is not suitable for use in a production environment. When testing of the packages in the daily PPA is complete, they will be copied to the archivematica/release ppa for production use.&lt;br /&gt;
&lt;br /&gt;
*Update your system to the most recent 12.04 release (12.04.3).  These instructions have been tested on both 32 bit and 64 bit versions of Ubuntu server.  This step will also fetch a list of the software from the archivematica/daily ppa&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get upgrade&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Install all packages (each of these packages can be installed sperately, if necessary). Say YES or OK to any prompts you get after entering the following into terminal:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install archivematica-mcp-server archivematica-mcp-client archivematica-dashboard archivematica-storage-service&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Configure the dashboard and storage service&lt;br /&gt;
note:these steps are safe to do on a desktop, or a machine dedicated to Archivematica.  They may not be advisable on an existing web server.  Consult with your web server administrator if you are unsure. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo wget -q https://raw.github.com/artefactual/archivematica/stable/1.0.x/src/vm-includes/share/apache.default -O /etc/apache2/sites-available/default&lt;br /&gt;
sudo rm /etc/nginx/sites-enabled/default&lt;br /&gt;
sudo ln -s /etc/nginx/sites-available/storage /etc/nginx/sites-enabled/storage&lt;br /&gt;
sudo ln -s /etc/uwsgi/apps-available/storage.ini /etc/uwsgi/apps-enabled/storage.ini&lt;br /&gt;
sudo service uwsgi restart&lt;br /&gt;
sudo service nginx restart&lt;br /&gt;
sudo /etc/init.d/apache2 restart&lt;br /&gt;
sudo freshclam&lt;br /&gt;
sudo /etc/init.d/clamav-daemon start&lt;br /&gt;
sudo /etc/init.d/elasticsearch restart&lt;br /&gt;
sudo /etc/init.d/gearman-job-server restart&lt;br /&gt;
sudo start archivematica-mcp-server&lt;br /&gt;
sudo start archivematica-mcp-client&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Test the storage service&lt;br /&gt;
go to the following link in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost:8000  (or use the ip address of the machine you have been installing on).  &amp;lt;p&amp;gt;&lt;br /&gt;
log in as user: test pass: test&lt;br /&gt;
&lt;br /&gt;
* Delete the test user and create a new user&lt;br /&gt;
&lt;br /&gt;
The storage service runs as a separate web app from the Archivematica dashboard, and has its own set of users.  You should add at least one user, and delete or modify the test user.&lt;br /&gt;
&lt;br /&gt;
* Test the dashboard&lt;br /&gt;
you can login to the archivematica dashboard and finish the installation in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost&lt;br /&gt;
&lt;br /&gt;
== Using AtoM with Archivematica ==&lt;br /&gt;
&lt;br /&gt;
If you are interested in using the ICA-Atom Access system you can use the package with in our PPA.&lt;br /&gt;
&lt;br /&gt;
It is installed by running the following commands in your Terminal (answer yes to all prompts, it may require your mysql adminitration password if one was entered above):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo aptitude install ica-atom&lt;br /&gt;
sudo /etc/init.d/apache2 restart&lt;br /&gt;
sudo cp /var/www/atom/init/atom-worker.conf /etc/init/atom-worker.conf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can finish your installation by visiting http://localhost/ica-atom/.  &lt;br /&gt;
&lt;br /&gt;
Occasionally when loading the ica-atom web installer for the first time an error appears, refreshing your web browser usually resolves this.   We intend to fix this in future version of the AtoM package.&lt;br /&gt;
&lt;br /&gt;
After the AtoM installation configure it to use the sword pluggin as well as the job scheduler then start the atom-worker.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo start atom-worker&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9371</id>
		<title>Install-1.0-packages</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9371"/>
		<updated>2014-01-21T18:21:03Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Deploying Archivematica 1.0 packages ==&lt;br /&gt;
&lt;br /&gt;
Archivematica packages are hosted on Launchpad, in an Ubuntu PPA (Personal Package Archive).  There are a number of Archivematica PPA's, the test versions of Archivematica 1.0 packages are hosted in the archivematica/daily ppa.  In order to install software onto your Ubuntu 12.04 system from this PPA:&lt;br /&gt;
&lt;br /&gt;
*Add the archivematica/daily PPA to your list of trusted repositories (if add-apt-repositories is not available you must install python-software-properties first):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install python-software-properties&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/daily&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/externals-dev&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note: The daily PPA is used for daily snapshots, it is not suitable for use in a production environment. When testing of the packages in the daily PPA is complete, they will be copied to the archivematica/release ppa for production use.&lt;br /&gt;
&lt;br /&gt;
*Update your system to the most recent 12.04 release (12.04.3).  These instructions have been tested on both 32 bit and 64 bit versions of Ubuntu server.  This step will also fetch a list of the software from the archivematica/daily ppa&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get upgrade&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Install all packages (each of these packages can be installed sperately, if necessary). Say YES or OK to any prompts you get after entering the following into terminal:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install archivematica-mcp-server archivematica-mcp-client archivematica-dashboard archivematica-storage-service&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Configure the dashboard and storage service&lt;br /&gt;
note:these steps are safe to do on a desktop, or a machine dedicated to Archivematica.  They may not be advisable on an existing web server.  Consult with your web server administrator if you are unsure. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo wget -q https://raw.github.com/artefactual/archivematica/stable/1.0.x/src/vm-includes/share/apache.default -O /etc/apache2/sites-available/default&lt;br /&gt;
sudo rm /etc/nginx/sites-enabled/default&lt;br /&gt;
sudo ln -s /etc/nginx/sites-available/storage /etc/nginx/sites-enabled/storage&lt;br /&gt;
sudo ln -s /etc/uwsgi/apps-available/storage.ini /etc/uwsgi/apps-enabled/storage.ini&lt;br /&gt;
sudo service uwsgi restart&lt;br /&gt;
sudo service nginx restart&lt;br /&gt;
sudo /etc/init.d/apache2 restart&lt;br /&gt;
sudo freshclam&lt;br /&gt;
sudo /etc/init.d/clamav-daemon start&lt;br /&gt;
sudo /etc/init.d/elasticsearch restart&lt;br /&gt;
sudo /etc/init.d/gearman-job-server restart&lt;br /&gt;
sudo start archivematica-mcp-server&lt;br /&gt;
sudo start archivematica-mcp-client&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Test the storage service&lt;br /&gt;
go to the following link in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost:8000  (or use the ip address of the machine you have been installing on).  &amp;lt;p&amp;gt;&lt;br /&gt;
log in as user: test pass: test&lt;br /&gt;
&lt;br /&gt;
* Delete the test user and create a new user&lt;br /&gt;
&lt;br /&gt;
The storage service runs as a separate web app from the Archivematica dashboard, and has its own set of users.  You should add at least one user, and delete or modify the test user.&lt;br /&gt;
&lt;br /&gt;
* Test the dashboard&lt;br /&gt;
you can login to the archivematica dashboard and finish the installation in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using AtoM with Archivematica ==&lt;br /&gt;
&lt;br /&gt;
If you are interested in using the ICA-Atom Access system you can use the package with in our PPA.&lt;br /&gt;
&lt;br /&gt;
It is installed by running the following commands in your Terminal (answer yes to all prompts, it may require your mysql adminitration password if one was entered above):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo aptitude install ica-atom&lt;br /&gt;
sudo /etc/init.d/apache2 restart&lt;br /&gt;
sudo cp /var/www/atom/init/atom-worker.conf /etc/init/atom-worker.conf&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can finish your installation by visiting http://localhost/ica-atom/.  &lt;br /&gt;
&lt;br /&gt;
Occasionally when loading the ica-atom web installer for the first time an error appears, refreshing your web browser usually resolves this.   We intend to fix this in future version of the AtoM package.&lt;br /&gt;
&lt;br /&gt;
After the AtoM installation configure it to use the sword pluggin as well as the job scheduler then start the atom-worker.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo start atom-worker&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9370</id>
		<title>Install-1.0-packages</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9370"/>
		<updated>2014-01-21T18:07:14Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Deploying Archivematica 1.0 packages ==&lt;br /&gt;
&lt;br /&gt;
Archivematica packages are hosted on Launchpad, in an Ubuntu PPA (Personal Package Archive).  There are a number of Archivematica PPA's, the test versions of Archivematica 1.0 packages are hosted in the archivematica/daily ppa.  In order to install software onto your Ubuntu 12.04 system from this PPA:&lt;br /&gt;
&lt;br /&gt;
*Add the archivematica/daily PPA to your list of trusted repositories (if add-apt-repositories is not available you must install python-software-properties first):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install python-software-properties&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/daily&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/externals-dev&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note: The daily PPA is used for daily snapshots, it is not suitable for use in a production environment. When testing of the packages in the daily PPA is complete, they will be copied to the archivematica/release ppa for production use.&lt;br /&gt;
&lt;br /&gt;
*Update your system to the most recent 12.04 release (12.04.3).  These instructions have been tested on both 32 bit and 64 bit versions of Ubuntu server.  This step will also fetch a list of the software from the archivematica/daily ppa&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get upgrade&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Install all packages (each of these packages can be installed sperately, if necessary). Say YES or OK to any prompts you get after entering the following into terminal:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install archivematica-mcp-server archivematica-mcp-client archivematica-dashboard archivematica-storage-service&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Configure the dashboard and storage service&lt;br /&gt;
note:these steps are safe to do on a desktop, or a machine dedicated to Archivematica.  They may not be advisable on an existing web server.  Consult with your web server administrator if you are unsure. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo wget -q https://raw.github.com/artefactual/archivematica/stable/1.0.x/src/vm-includes/share/apache.default -O /etc/apache2/sites-available/default&lt;br /&gt;
sudo rm /etc/nginx/sites-enabled/default&lt;br /&gt;
sudo ln -s /etc/nginx/sites-available/storage /etc/nginx/sites-enabled/storage&lt;br /&gt;
sudo ln -s /etc/uwsgi/apps-available/storage.ini /etc/uwsgi/apps-enabled/storage.ini&lt;br /&gt;
sudo service uwsgi restart&lt;br /&gt;
sudo service nginx restart&lt;br /&gt;
sudo /etc/init.d/apache2 restart&lt;br /&gt;
sudo freshclam&lt;br /&gt;
sudo /etc/init.d/clamav-daemon start&lt;br /&gt;
sudo /etc/init.d/elasticsearch restart&lt;br /&gt;
sudo /etc/init.d/gearman-job-server restart&lt;br /&gt;
sudo start archivematica-mcp-server&lt;br /&gt;
sudo start archivematica-mcp-client&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Test the storage service&lt;br /&gt;
go to the following link in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost:8000  (or use the ip address of the machine you have been installing on).  &amp;lt;p&amp;gt;&lt;br /&gt;
log in as user: test pass: test&lt;br /&gt;
&lt;br /&gt;
* Delete the test user and create a new user&lt;br /&gt;
&lt;br /&gt;
The storage service runs as a separate web app from the Archivematica dashboard, and has its own set of users.  You should add at least one user, and delete or modify the test user.&lt;br /&gt;
&lt;br /&gt;
* Test the dashboard&lt;br /&gt;
you can login to the archivematica dashboard and finish the installation in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using AtoM with Archivematica ==&lt;br /&gt;
&lt;br /&gt;
If you are interested in using the ICA-Atom Access system you can use the package with in our PPA.&lt;br /&gt;
&lt;br /&gt;
It is installed by running the following commands in your Terminal (answer yes to all prompts, it may require your mysql adminitration password if one was entered above):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo aptitude install ica-atom&lt;br /&gt;
sudo /etc/init.d/apache2 restart&lt;br /&gt;
sudo cp /var/www/atom/init/atom-worker.conf /etc/init/atom-worker.conf&lt;br /&gt;
sudo start atom-worker&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can finish your installation by visiting http://localhost/ica-atom/.  &lt;br /&gt;
&lt;br /&gt;
Occasionally when loading the ica-atom web installer for the first time an error appears, refreshing your web browser usually resolves this.   We intend to fix this in future version of the AtoM package.&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9368</id>
		<title>Install-1.0-packages</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9368"/>
		<updated>2014-01-20T20:46:25Z</updated>

		<summary type="html">&lt;p&gt;Austin: /* Using AtoM with Archivematica */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Deploying Archivematica 1.0 packages ==&lt;br /&gt;
&lt;br /&gt;
Archivematica packages are hosted on Launchpad, in an Ubuntu PPA (Personal Package Archive).  There are a number of Archivematica PPA's, the test versions of Archivematica 1.0 packages are hosted in the archivematica/daily ppa.  In order to install software onto your Ubuntu 12.04 system from this PPA:&lt;br /&gt;
&lt;br /&gt;
*Add the archivematica/daily PPA to your list of trusted repositories (if add-apt-repositories is not available you must install python-software-properties first):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install python-software-properties&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/daily&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/externals-dev&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note: The daily PPA is used for daily snapshots, it is not suitable for use in a production environment. When testing of the packages in the daily PPA is complete, they will be copied to the archivematica/release ppa for production use.&lt;br /&gt;
&lt;br /&gt;
*Update your system to the most recent 12.04 release (12.04.3).  These instructions have been tested on both 32 bit and 64 bit versions of Ubuntu server.  This step will also fetch a list of the software from the archivematica/daily ppa&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get upgrade&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Install all packages (each of these packages can be installed sperately, if necessary). Say YES or OK to any prompts you get after entering the following into terminal:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install archivematica-mcp-server archivematica-mcp-client archivematica-dashboard archivematica-storage-service&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Configure the dashboard and storage service&lt;br /&gt;
note:these steps are safe to do on a desktop, or a machine dedicated to Archivematica.  They may not be advisable on an existing web server.  Consult with your web server administrator if you are unsure. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo wget -q https://raw.github.com/artefactual/archivematica/stable/1.0.x/src/vm-includes/share/apache.default -O /etc/apache2/sites-available/default&lt;br /&gt;
sudo rm /etc/nginx/sites-enabled/default&lt;br /&gt;
sudo ln -s /etc/nginx/sites-available/storage /etc/nginx/sites-enabled/storage&lt;br /&gt;
sudo ln -s /etc/uwsgi/apps-available/storage.ini /etc/uwsgi/apps-enabled/storage.ini&lt;br /&gt;
sudo service uwsgi restart&lt;br /&gt;
sudo service nginx restart&lt;br /&gt;
sudo /etc/init.d/apache2 restart&lt;br /&gt;
sudo /etc/init.d/clamav-daemon restart&lt;br /&gt;
sudo /etc/init.d/elasticsearch restart&lt;br /&gt;
sudo /etc/init.d/gearman-job-server restart&lt;br /&gt;
sudo start archivematica-mcp-server&lt;br /&gt;
sudo start archivematica-mcp-client&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Test the storage service&lt;br /&gt;
go to the following link in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost:8000  (or use the ip address of the machine you have been installing on).  &amp;lt;p&amp;gt;&lt;br /&gt;
log in as user: test pass: test&lt;br /&gt;
&lt;br /&gt;
* Delete the test user and create a new user&lt;br /&gt;
&lt;br /&gt;
The storage service runs as a separate web app from the Archivematica dashboard, and has its own set of users.  You should add at least one user, and delete or modify the test user.&lt;br /&gt;
&lt;br /&gt;
* Test the dashboard&lt;br /&gt;
you can login to the archivematica dashboard and finish the installation in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using AtoM with Archivematica ==&lt;br /&gt;
&lt;br /&gt;
If you are interested in using the ICA-Atom Access system you can use the package with in our PPA.&lt;br /&gt;
&lt;br /&gt;
It is installed by running the following commands in your Terminal (answer yes to all prompts, it may require your mysql adminitration password if one was entered above):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo aptitude install ica-atom&lt;br /&gt;
sudo /etc/init.d/apache2 restart&lt;br /&gt;
sudo cp /var/www/atom/init/atom-worker.conf /etc/init/atom-worker.conf&lt;br /&gt;
sudo start atom-worker&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can finish your installation by visiting http://localhost/ica-atom/.  &lt;br /&gt;
&lt;br /&gt;
Occasionally when loading the ica-atom web installer for the first time an error appears, refreshing your web browser usually resolves this.   We intend to fix this in future version of the AtoM package.&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9367</id>
		<title>Install-1.0-packages</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9367"/>
		<updated>2014-01-20T18:46:32Z</updated>

		<summary type="html">&lt;p&gt;Austin: /* Using AtoM with Archivematica */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Deploying Archivematica 1.0 packages ==&lt;br /&gt;
&lt;br /&gt;
Archivematica packages are hosted on Launchpad, in an Ubuntu PPA (Personal Package Archive).  There are a number of Archivematica PPA's, the test versions of Archivematica 1.0 packages are hosted in the archivematica/daily ppa.  In order to install software onto your Ubuntu 12.04 system from this PPA:&lt;br /&gt;
&lt;br /&gt;
*Add the archivematica/daily PPA to your list of trusted repositories (if add-apt-repositories is not available you must install python-software-properties first):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install python-software-properties&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/daily&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/externals-dev&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note: The daily PPA is used for daily snapshots, it is not suitable for use in a production environment. When testing of the packages in the daily PPA is complete, they will be copied to the archivematica/release ppa for production use.&lt;br /&gt;
&lt;br /&gt;
*Update your system to the most recent 12.04 release (12.04.3).  These instructions have been tested on both 32 bit and 64 bit versions of Ubuntu server.  This step will also fetch a list of the software from the archivematica/daily ppa&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get upgrade&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Install all packages (each of these packages can be installed sperately, if necessary). Say YES or OK to any prompts you get after entering the following into terminal:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install archivematica-mcp-server archivematica-mcp-client archivematica-dashboard archivematica-storage-service&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Configure the dashboard and storage service&lt;br /&gt;
note:these steps are safe to do on a desktop, or a machine dedicated to Archivematica.  They may not be advisable on an existing web server.  Consult with your web server administrator if you are unsure. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo wget -q https://raw.github.com/artefactual/archivematica/stable/1.0.x/src/vm-includes/share/apache.default -O /etc/apache2/sites-available/default&lt;br /&gt;
sudo rm /etc/nginx/sites-enabled/default&lt;br /&gt;
sudo ln -s /etc/nginx/sites-available/storage /etc/nginx/sites-enabled/storage&lt;br /&gt;
sudo ln -s /etc/uwsgi/apps-available/storage.ini /etc/uwsgi/apps-enabled/storage.ini&lt;br /&gt;
sudo service uwsgi restart&lt;br /&gt;
sudo service nginx restart&lt;br /&gt;
sudo /etc/init.d/apache2 restart&lt;br /&gt;
sudo /etc/init.d/clamav-daemon restart&lt;br /&gt;
sudo /etc/init.d/elasticsearch restart&lt;br /&gt;
sudo /etc/init.d/gearman-job-server restart&lt;br /&gt;
sudo start archivematica-mcp-server&lt;br /&gt;
sudo start archivematica-mcp-client&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Test the storage service&lt;br /&gt;
go to the following link in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost:8000  (or use the ip address of the machine you have been installing on).  &amp;lt;p&amp;gt;&lt;br /&gt;
log in as user: test pass: test&lt;br /&gt;
&lt;br /&gt;
* Delete the test user and create a new user&lt;br /&gt;
&lt;br /&gt;
The storage service runs as a separate web app from the Archivematica dashboard, and has its own set of users.  You should add at least one user, and delete or modify the test user.&lt;br /&gt;
&lt;br /&gt;
* Test the dashboard&lt;br /&gt;
you can login to the archivematica dashboard and finish the installation in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using AtoM with Archivematica ==&lt;br /&gt;
&lt;br /&gt;
If you are interested in using the ICA-Atom Access system you can use the package with in our PPA.&lt;br /&gt;
&lt;br /&gt;
It is installed by running the following commands in your Terminal (answer yes to all prompts, it may require your mysql adminitration password if one was entered above):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo aptitude install ica-atom&lt;br /&gt;
sudo cp /var/www/atom/init/atom-worker.conf /etc/init/atom-worker.conf&lt;br /&gt;
sudo start atom-worker&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can finish your installation by visiting http://localhost/ica-atom/.  &lt;br /&gt;
&lt;br /&gt;
Occasionally when loading the ica-atom web installer for the first time an error appears, refreshing your web browser usually resolves this.   We intend to fix this in future version of the AtoM package.&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9366</id>
		<title>Install-1.0-packages</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9366"/>
		<updated>2014-01-20T18:45:53Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Deploying Archivematica 1.0 packages ==&lt;br /&gt;
&lt;br /&gt;
Archivematica packages are hosted on Launchpad, in an Ubuntu PPA (Personal Package Archive).  There are a number of Archivematica PPA's, the test versions of Archivematica 1.0 packages are hosted in the archivematica/daily ppa.  In order to install software onto your Ubuntu 12.04 system from this PPA:&lt;br /&gt;
&lt;br /&gt;
*Add the archivematica/daily PPA to your list of trusted repositories (if add-apt-repositories is not available you must install python-software-properties first):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install python-software-properties&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/daily&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/externals-dev&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note: The daily PPA is used for daily snapshots, it is not suitable for use in a production environment. When testing of the packages in the daily PPA is complete, they will be copied to the archivematica/release ppa for production use.&lt;br /&gt;
&lt;br /&gt;
*Update your system to the most recent 12.04 release (12.04.3).  These instructions have been tested on both 32 bit and 64 bit versions of Ubuntu server.  This step will also fetch a list of the software from the archivematica/daily ppa&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get upgrade&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Install all packages (each of these packages can be installed sperately, if necessary). Say YES or OK to any prompts you get after entering the following into terminal:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install archivematica-mcp-server archivematica-mcp-client archivematica-dashboard archivematica-storage-service&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Configure the dashboard and storage service&lt;br /&gt;
note:these steps are safe to do on a desktop, or a machine dedicated to Archivematica.  They may not be advisable on an existing web server.  Consult with your web server administrator if you are unsure. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo wget -q https://raw.github.com/artefactual/archivematica/stable/1.0.x/src/vm-includes/share/apache.default -O /etc/apache2/sites-available/default&lt;br /&gt;
sudo rm /etc/nginx/sites-enabled/default&lt;br /&gt;
sudo ln -s /etc/nginx/sites-available/storage /etc/nginx/sites-enabled/storage&lt;br /&gt;
sudo ln -s /etc/uwsgi/apps-available/storage.ini /etc/uwsgi/apps-enabled/storage.ini&lt;br /&gt;
sudo service uwsgi restart&lt;br /&gt;
sudo service nginx restart&lt;br /&gt;
sudo /etc/init.d/apache2 restart&lt;br /&gt;
sudo /etc/init.d/clamav-daemon restart&lt;br /&gt;
sudo /etc/init.d/elasticsearch restart&lt;br /&gt;
sudo /etc/init.d/gearman-job-server restart&lt;br /&gt;
sudo start archivematica-mcp-server&lt;br /&gt;
sudo start archivematica-mcp-client&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Test the storage service&lt;br /&gt;
go to the following link in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost:8000  (or use the ip address of the machine you have been installing on).  &amp;lt;p&amp;gt;&lt;br /&gt;
log in as user: test pass: test&lt;br /&gt;
&lt;br /&gt;
* Delete the test user and create a new user&lt;br /&gt;
&lt;br /&gt;
The storage service runs as a separate web app from the Archivematica dashboard, and has its own set of users.  You should add at least one user, and delete or modify the test user.&lt;br /&gt;
&lt;br /&gt;
* Test the dashboard&lt;br /&gt;
you can login to the archivematica dashboard and finish the installation in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Using AtoM with Archivematica ==&lt;br /&gt;
&lt;br /&gt;
If you are interested in using the ICA-Atom Access system you can use the package with in our PPA.&lt;br /&gt;
&lt;br /&gt;
It is installed by running the following commands in your Terminal (answer yes to all prompts, it may require your mysql adminitration password if one was entered above):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo aptitude install ica-atom&lt;br /&gt;
sudo cp /var/www/atom/init/atom-worker.conf /etc/init/atom-worker.conf&lt;br /&gt;
sudo start atom-worker&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can finish your installation by visiting http://localhost/ica-atom/.  &lt;br /&gt;
&lt;br /&gt;
Occasionally when loading the ica-atom web installer for the first time an error appears, refreshing your web browser usually resolves this.  We hope to fix this in future version of the AtoM package.&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9340</id>
		<title>Install-1.0-packages</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9340"/>
		<updated>2014-01-11T00:10:23Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Deploying Archivematica 1.0 packages ==&lt;br /&gt;
&lt;br /&gt;
Archivematica packages are hosted on Launchpad, in an Ubuntu PPA (Personal Package Archive).  There are a number of Archivematica PPA's, the test versions of Archivematica 1.0 packages are hosted in the archivematica/daily ppa.  In order to install software onto your Ubuntu 12.04 system from this PPA:&lt;br /&gt;
&lt;br /&gt;
*Update your system to the most recent 12.04 release (12.04.3)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get upgrade&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*Add the archivematica/daily PPA to your list of trusted repositories(if add-apt-repositories is not available you must install python-software-properties first):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/daily&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/externals-dev&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note: The daily PPA is used for daily snapshots, it is not suitable for use in a production environment. When testing of the packages in the daily PPA is complete, they will be copied to the archivematica/release ppa for production use.&lt;br /&gt;
&lt;br /&gt;
*Fetch a list of the software from the archivematica/daily ppa:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Install all packages (each of these packages can be installed sperately, if necessary)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install archivematica-mcp-server archivematica-mcp-client archivematica-dashboard archivematica-storage-service&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Configure the dashboard and storage service&lt;br /&gt;
note:these steps are safe to do on a desktop, or a machine dedicated to Archivematica.  They may not be advisable on an existing web server.  Consult with your web server administrator if you are unsure. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
wget -q https://raw.github.com/artefactual/archivematica/stable/1.0.x/src/vm-includes/share/apache.default -O /etc/apache2/sites-available/default&lt;br /&gt;
sudo rm /etc/nginx/sites-enabled/default&lt;br /&gt;
sudo ln -s /etc/nginx/sites-available/storage /etc/nginx/sites-enabled/storage&lt;br /&gt;
sudo ln -s /etc/uwsgi/apps-available/storage.ini /etc/uwsgi/apps-enabled/storage.ini&lt;br /&gt;
sudo service uwsgi restart&lt;br /&gt;
sudo service nginx restart&lt;br /&gt;
sudo /etc/init.d/apache2 restart&lt;br /&gt;
sudo /etc/init.d/clamav-daemon restart&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Test the storage service&lt;br /&gt;
go to the following link in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost:8000  (or use the ip address of the machine you have been installing on).  &amp;lt;p&amp;gt;&lt;br /&gt;
log in as user: test pass: test&lt;br /&gt;
&lt;br /&gt;
* Delete the test user and create a new user&lt;br /&gt;
&lt;br /&gt;
The storage service runs as a separate web app from the Archivematica dashboard, and has its own set of users.  You should add at least one user, and delete or modify the test user.&lt;br /&gt;
&lt;br /&gt;
* Test the dashboard&lt;br /&gt;
you can login to the archivematica dashboard and finish the installation in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9338</id>
		<title>Install-1.0-packages</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9338"/>
		<updated>2014-01-11T00:09:59Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Deploying Archivematica 1.0 packages ==&lt;br /&gt;
&lt;br /&gt;
Archivematica packages are hosted on Launchpad, in an Ubuntu PPA (Personal Package Archive).  There are a number of Archivematica PPA's, the test versions of Archivematica 1.0 packages are hosted in the archivematica/daily ppa.  In order to install software onto your Ubuntu 12.04 system from this PPA:&lt;br /&gt;
&lt;br /&gt;
*Update your system to the most recent 12.04 release (12.04.3)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get upgrade&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*Add the archivematica/daily PPA to your list of trusted repositories(if add-apt-repositories is not available you must install python-software-properties first):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/daily&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/externals-dev&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note: The daily PPA is used for daily snapshots, it is not suitable for use in a production environment. When testing of the packages in the daily PPA is complete, they will be copied to the archivematica/release ppa for production use.&lt;br /&gt;
&lt;br /&gt;
*Fetch a list of the software from the archivematica/daily ppa:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Install all packages (each of these packages can be installed sperately, if necessary)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install archivematica-mcp-server archivematica-mcp-client archivematica-dashboard archivematica-storage-service&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Configure the dashboard and storage service&lt;br /&gt;
note:these steps are safe to do on a desktop, or a machine dedicated to Archivematica.  They may not be advisable on an existing web server.  Consult with your web server administrator if you are unsure. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
wget -q https://raw.github.com/artefactual/archivematica/stable/1.0.x/src/vm-includes/share/apache.default -O /etc/apache2/sites-available/default&lt;br /&gt;
sudo rm /etc/nginx/sites-enabled/default&lt;br /&gt;
sudo ln -s /etc/nginx/sites-available/storage /etc/nginx/sites-enabled/storage&lt;br /&gt;
sudo ln -s /etc/uwsgi/apps-available/storage.ini /etc/uwsgi/apps-enabled/storage.ini&lt;br /&gt;
sudo service uwsgi restart&lt;br /&gt;
sudo service nginx restart&lt;br /&gt;
sudo /etc/init.d/apache2 restart&lt;br /&gt;
sudo /etc/init.d/clamav-daemon start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Test the storage service&lt;br /&gt;
go to the following link in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost:8000  (or use the ip address of the machine you have been installing on).  &amp;lt;p&amp;gt;&lt;br /&gt;
log in as user: test pass: test&lt;br /&gt;
&lt;br /&gt;
* Delete the test user and create a new user&lt;br /&gt;
&lt;br /&gt;
The storage service runs as a separate web app from the Archivematica dashboard, and has its own set of users.  You should add at least one user, and delete or modify the test user.&lt;br /&gt;
&lt;br /&gt;
* Test the dashboard&lt;br /&gt;
you can login to the archivematica dashboard and finish the installation in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9335</id>
		<title>Install-1.0-packages</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9335"/>
		<updated>2014-01-11T00:08:28Z</updated>

		<summary type="html">&lt;p&gt;Austin: ini&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Deploying Archivematica 1.0 packages ==&lt;br /&gt;
&lt;br /&gt;
Archivematica packages are hosted on Launchpad, in an Ubuntu PPA (Personal Package Archive).  There are a number of Archivematica PPA's, the test versions of Archivematica 1.0 packages are hosted in the archivematica/daily ppa.  In order to install software onto your Ubuntu 12.04 system from this PPA:&lt;br /&gt;
&lt;br /&gt;
*Update your system to the most recent 12.04 release (12.04.3)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get upgrade&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*Add the archivematica/daily PPA to your list of trusted repositories(if add-apt-repositories is not available you must install python-software-properties first):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/daily&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/externals-dev&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note: The daily PPA is used for daily snapshots, it is not suitable for use in a production environment. When testing of the packages in the daily PPA is complete, they will be copied to the archivematica/release ppa for production use.&lt;br /&gt;
&lt;br /&gt;
*Fetch a list of the software from the archivematica/daily ppa:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Install all packages (each of these packages can be installed sperately, if necessary)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install archivematica-mcp-server archivematica-mcp-client archivematica-dashboard archivematica-storage-service&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Configure the dashboard and storage service&lt;br /&gt;
note:these steps are safe to do on a desktop, or a machine dedicated to Archivematica.  They may not be advisable on an existing web server.  Consult with your web server administrator if you are unsure. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
wget -q https://raw.github.com/artefactual/archivematica/stable/1.0.x/src/vm-includes/share/apache.default -O /etc/apache2/sites-available/default&lt;br /&gt;
sudo rm /etc/nginx/sites-enabled/default&lt;br /&gt;
sudo ln -s /etc/nginx/sites-available/storage /etc/nginx/sites-enabled/storage&lt;br /&gt;
sudo ln -s /etc/uwsgi/apps-available/storage.ini /etc/uwsgi/apps-enabled/storage.ini&lt;br /&gt;
sudo service uwsgi restart&lt;br /&gt;
sudo service nginx restart&lt;br /&gt;
sudo /etc/init.d/apache2 restart&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Test the storage service&lt;br /&gt;
go to the following link in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost:8000  (or use the ip address of the machine you have been installing on).  &amp;lt;p&amp;gt;&lt;br /&gt;
log in as user: test pass: test&lt;br /&gt;
&lt;br /&gt;
* Delete the test user and create a new user&lt;br /&gt;
&lt;br /&gt;
The storage service runs as a separate web app from the Archivematica dashboard, and has its own set of users.  You should add at least one user, and delete or modify the test user.&lt;br /&gt;
&lt;br /&gt;
* Test the dashboard&lt;br /&gt;
you can login to the archivematica dashboard and finish the installation in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9331</id>
		<title>Install-1.0-packages</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Install-1.0-packages&amp;diff=9331"/>
		<updated>2014-01-10T23:08:57Z</updated>

		<summary type="html">&lt;p&gt;Austin: /* Deploying Archivematica 1.0 packages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Deploying Archivematica 1.0 packages ==&lt;br /&gt;
&lt;br /&gt;
Archivematica packages are hosted on Launchpad, in an Ubuntu PPA (Personal Package Archive).  There are a number of Archivematica PPA's, the test versions of Archivematica 1.0 packages are hosted in the archivematica/daily ppa.  In order to install software onto your Ubuntu 12.04 system from this PPA:&lt;br /&gt;
&lt;br /&gt;
*Update your system to the most recent 12.04 release (12.04.3)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
sudo apt-get upgrade&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*Add the archivematica/daily PPA to your list of trusted repositories(if add-apt-repositories is not available you must install python-software-properties first):&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/daily&lt;br /&gt;
sudo add-apt-repository ppa:archivematica/externals-dev&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note: The daily PPA is used for daily snapshots, it is not suitable for use in a production environment. When testing of the packages in the daily PPA is complete, they will be copied to the archivematica/release ppa for production use.&lt;br /&gt;
&lt;br /&gt;
*Fetch a list of the software from the archivematica/daily ppa:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get update&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Install all packages (each of these packages can be installed sperately, if necessary)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install archivematica-mcp-server archivematica-mcp-client archivematica-dashboard archivematica-storage-service&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Configure the dashboard and storage service&lt;br /&gt;
note:these steps are safe to do on a desktop, or a machine dedicated to Archivematica.  They may not be advisable on an existing web server.  Consult with your web server administrator if you are unsure. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
wget -q https://raw.github.com/artefactual/archivematica/stable/1.0.x/src/vm-includes/share/apache.default -O /etc/apache2/sites-available/default&lt;br /&gt;
sudo rm /etc/nginx/sites-enabled/default&lt;br /&gt;
sudo ln -s /etc/nginx/sites-available/storage /etc/nginx/sites-enabled/storage&lt;br /&gt;
sudo ln -s /etc/uwsgi/apps-available/storage.ini /etc/uwsgi/apps-enabled/storage.ini&lt;br /&gt;
sudo service uwsgi restart&lt;br /&gt;
sudo service nginx restart&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Test the storage service&lt;br /&gt;
go to the following link in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost:8000  (or use the ip address of the machine you have been installing on).  &amp;lt;p&amp;gt;&lt;br /&gt;
log in as user: test pass: test&lt;br /&gt;
&lt;br /&gt;
* Delete the test user and create a new user&lt;br /&gt;
&lt;br /&gt;
The storage service runs as a separate web app from the Archivematica dashboard, and has its own set of users.  You should add at least one user, and delete or modify the test user.&lt;br /&gt;
&lt;br /&gt;
* Test the dashboard&lt;br /&gt;
you can login to the archivematica dashboard and finish the installation in a web browser:&lt;br /&gt;
&lt;br /&gt;
http://localhost&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Meeting_20131204&amp;diff=9183</id>
		<title>Meeting 20131204</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Meeting_20131204&amp;diff=9183"/>
		<updated>2013-12-04T19:00:18Z</updated>

		<summary type="html">&lt;p&gt;Austin: /* To Do */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Artefactual Systems, Internal Archivematica Dev Mtg, 2013-12-04&lt;br /&gt;
&lt;br /&gt;
==Development==&lt;br /&gt;
* Holly updated the manual rebuild of Elasticsearch for package changes, and to work with AICs.  #6034/#5898&lt;br /&gt;
* Holly made Archivematica delete 'unneeded files' like Thumbs.db early in processing.  #6020&lt;br /&gt;
* Holly added the ability to delete AIPs from the SS.  #5872&lt;br /&gt;
* Holly did a rough implementation of NFS automounting.  #5257&lt;br /&gt;
* Holly investigated all the weird characters and encodings and how to handle them in the SS.  #6067&lt;br /&gt;
* Misty submitted AccessData AD1 to PRONOM using the Yale samples and having done a little poking into the files' structure. #5836&lt;br /&gt;
* Misty also spent some time looking at #6067 after Justin's initial report.&lt;br /&gt;
* Misty has also been working on rebasing the transfer metadata UI onto the Archivematica 1.0 branch, with the UI changes requested by courtney. #5900&lt;br /&gt;
* Mike C reworked SWORD server to create new SWORD space per daahboard (issue #5980).&lt;br /&gt;
* Mike C fixed 2 issues with the Archivist Toolkit DIP matcher (issue #6069 and #6070).&lt;br /&gt;
&lt;br /&gt;
==Documentation==&lt;br /&gt;
* Courtney screenshootin' the Storage Service for the Admin Man &lt;br /&gt;
&lt;br /&gt;
==Deployment==&lt;br /&gt;
* archivematica 1.0 is working at columbia, harvard, ubc, rockefeller (testing there still)&lt;br /&gt;
&lt;br /&gt;
==To Do==&lt;br /&gt;
* Justin is meeting with City of Vancouver Archives tomorrow to plan 1.0 upgrade there&lt;br /&gt;
* UBC is wanting to test DIP Upload from archivematica 1.0 to atom 1.3.1 that is #6075&lt;br /&gt;
&lt;br /&gt;
==Community/Outreach==&lt;br /&gt;
* Courtney is chairing a session at ACA, in addition to our workshop&lt;br /&gt;
* Courtney going to London next week to speak with Tate, British Library, Kings College London, Arkivum, and as a featured guest of the DPC MEET THE TECHIES event&lt;br /&gt;
&lt;br /&gt;
[[Category:meetings]]&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Meeting_20131204&amp;diff=9182</id>
		<title>Meeting 20131204</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Meeting_20131204&amp;diff=9182"/>
		<updated>2013-12-04T18:59:07Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Artefactual Systems, Internal Archivematica Dev Mtg, 2013-12-04&lt;br /&gt;
&lt;br /&gt;
==Development==&lt;br /&gt;
* Holly updated the manual rebuild of Elasticsearch for package changes, and to work with AICs.  #6034/#5898&lt;br /&gt;
* Holly made Archivematica delete 'unneeded files' like Thumbs.db early in processing.  #6020&lt;br /&gt;
* Holly added the ability to delete AIPs from the SS.  #5872&lt;br /&gt;
* Holly did a rough implementation of NFS automounting.  #5257&lt;br /&gt;
* Holly investigated all the weird characters and encodings and how to handle them in the SS.  #6067&lt;br /&gt;
* Misty submitted AccessData AD1 to PRONOM using the Yale samples and having done a little poking into the files' structure. #5836&lt;br /&gt;
* Misty also spent some time looking at #6067 after Justin's initial report.&lt;br /&gt;
* Misty has also been working on rebasing the transfer metadata UI onto the Archivematica 1.0 branch, with the UI changes requested by courtney. #5900&lt;br /&gt;
* Mike C reworked SWORD server to create new SWORD space per daahboard (issue #5980).&lt;br /&gt;
* Mike C fixed 2 issues with the Archivist Toolkit DIP matcher (issue #6069 and #6070).&lt;br /&gt;
&lt;br /&gt;
==Documentation==&lt;br /&gt;
* Courtney screenshootin' the Storage Service for the Admin Man &lt;br /&gt;
&lt;br /&gt;
==Deployment==&lt;br /&gt;
* archivematica 1.0 is working at columbia, harvard, ubc, rockefeller (testing there still)&lt;br /&gt;
&lt;br /&gt;
==To Do==&lt;br /&gt;
* Justin is meeting with City of Vancouver Archives tomorrow to plan 1.0 upgrade there&lt;br /&gt;
* UBC is wanting to test DIP Upload from archivematica 1.0 to atom 1.3.1 that is #6075&lt;br /&gt;
* Courtney going to London next week to speak with Tate, British Library, Kings College London, Arkivum, and as a featured guest of the DPC MEET THE TECHIES event&lt;br /&gt;
&lt;br /&gt;
[[Category:meetings]]&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Meeting_20131204&amp;diff=9181</id>
		<title>Meeting 20131204</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Meeting_20131204&amp;diff=9181"/>
		<updated>2013-12-04T18:58:29Z</updated>

		<summary type="html">&lt;p&gt;Austin: /* Deployment */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Artefactual Systems, Internal Archivematica Dev Mtg, 2013-12-04&lt;br /&gt;
&lt;br /&gt;
==Development==&lt;br /&gt;
* Holly updated the manual rebuild of Elasticsearch for package changes, and to work with AICs.  #6034/#5898&lt;br /&gt;
* Holly made Archivematica delete 'unneeded files' like Thumbs.db early in processing.  #6020&lt;br /&gt;
* Holly added the ability to delete AIPs from the SS.  #5872&lt;br /&gt;
* Holly did a rough implementation of NFS automounting.  #5257&lt;br /&gt;
* Holly investigated all the weird characters and encodings and how to handle them in the SS.  #6067&lt;br /&gt;
* Misty submitted AccessData AD1 to PRONOM using the Yale samples and having done a little poking into the files' structure. #5836&lt;br /&gt;
* Misty also spent some time looking at #6067 after Justin's initial report.&lt;br /&gt;
* Misty has also been working on rebasing the transfer metadata UI onto the Archivematica 1.0 branch, with the UI changes requested by courtney. #5900&lt;br /&gt;
* Mike C reworked SWORD server to create new SWORD space per daahboard (issue #5980).&lt;br /&gt;
* Mike C fixed 2 issues with the Archivist Toolkit DIP matcher (issue #6069 and #6070).&lt;br /&gt;
&lt;br /&gt;
==Documentation==&lt;br /&gt;
&lt;br /&gt;
==Deployment==&lt;br /&gt;
* archivematica 1.0 is working at columbia, harvard, ubc, rockefeller (testing there still)&lt;br /&gt;
&lt;br /&gt;
==To Do==&lt;br /&gt;
* Justin is meeting with City of Vancouver Archives tomorrow to plan 1.0 upgrade there&lt;br /&gt;
* UBC is wanting to test DIP Upload from archivematica 1.0 to atom 1.3.1 that is #6075&lt;br /&gt;
&lt;br /&gt;
==Community/Training/Other==&lt;br /&gt;
* Courtney going to London next week to speak with Tate, British Library, Kings College London, Arkivum, and as a featured guest of the DPC MEET THE TECHIES event&lt;br /&gt;
&lt;br /&gt;
[[Category:meetings]]&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Meeting_20131204&amp;diff=9180</id>
		<title>Meeting 20131204</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Meeting_20131204&amp;diff=9180"/>
		<updated>2013-12-04T18:54:35Z</updated>

		<summary type="html">&lt;p&gt;Austin: /* Community/Training/Other */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Artefactual Systems, Internal Archivematica Dev Mtg, 2013-12-04&lt;br /&gt;
&lt;br /&gt;
==Development==&lt;br /&gt;
* Holly updated the manual rebuild of Elasticsearch for package changes, and to work with AICs.  #6034/#5898&lt;br /&gt;
* Holly made Archivematica delete 'unneeded files' like Thumbs.db early in processing.  #6020&lt;br /&gt;
* Holly added the ability to delete AIPs from the SS.  #5872&lt;br /&gt;
* Holly did a rough implementation of NFS automounting.  #5257&lt;br /&gt;
* Holly investigated all the weird characters and encodings and how to handle them in the SS.  #6067&lt;br /&gt;
* Misty submitted AccessData AD1 to PRONOM using the Yale samples and having done a little poking into the files' structure. #5836&lt;br /&gt;
* Misty also spent some time looking at #6067 after Justin's initial report.&lt;br /&gt;
* Misty has also been working on rebasing the transfer metadata UI onto the Archivematica 1.0 branch, with the UI changes requested by courtney. #5900&lt;br /&gt;
* Mike C reworked SWORD server to create new SWORD space per daahboard (issue #5980).&lt;br /&gt;
* Mike C fixed 2 issues with the Archivist Toolkit DIP matcher (issue #6069 and #6070).&lt;br /&gt;
&lt;br /&gt;
==Documentation==&lt;br /&gt;
&lt;br /&gt;
==Deployment==&lt;br /&gt;
&lt;br /&gt;
==Community/Training/Other==&lt;br /&gt;
* Courtney going to London next week to speak with Tate, British Library, Kings College London, Arkivum, and as a featured guest of the DPC MEET THE TECHIES event&lt;br /&gt;
&lt;br /&gt;
[[Category:meetings]]&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Meeting_20131204&amp;diff=9179</id>
		<title>Meeting 20131204</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Meeting_20131204&amp;diff=9179"/>
		<updated>2013-12-04T18:54:00Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Artefactual Systems, Internal Archivematica Dev Mtg, 2013-12-04&lt;br /&gt;
&lt;br /&gt;
==Development==&lt;br /&gt;
* Holly updated the manual rebuild of Elasticsearch for package changes, and to work with AICs.  #6034/#5898&lt;br /&gt;
* Holly made Archivematica delete 'unneeded files' like Thumbs.db early in processing.  #6020&lt;br /&gt;
* Holly added the ability to delete AIPs from the SS.  #5872&lt;br /&gt;
* Holly did a rough implementation of NFS automounting.  #5257&lt;br /&gt;
* Holly investigated all the weird characters and encodings and how to handle them in the SS.  #6067&lt;br /&gt;
* Misty submitted AccessData AD1 to PRONOM using the Yale samples and having done a little poking into the files' structure. #5836&lt;br /&gt;
* Misty also spent some time looking at #6067 after Justin's initial report.&lt;br /&gt;
* Misty has also been working on rebasing the transfer metadata UI onto the Archivematica 1.0 branch, with the UI changes requested by courtney. #5900&lt;br /&gt;
* Mike C reworked SWORD server to create new SWORD space per daahboard (issue #5980).&lt;br /&gt;
* Mike C fixed 2 issues with the Archivist Toolkit DIP matcher (issue #6069 and #6070).&lt;br /&gt;
&lt;br /&gt;
==Documentation==&lt;br /&gt;
&lt;br /&gt;
==Deployment==&lt;br /&gt;
&lt;br /&gt;
==Community/Training/Other==&lt;br /&gt;
* Courtney going to London next week to speak with Tate, British Library, Kings College London, Arkivum, and as a featured guest of the DPC MEET THE TECHIES event&lt;br /&gt;
[[Category:meetings]]&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Meeting_20131204&amp;diff=9178</id>
		<title>Meeting 20131204</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Meeting_20131204&amp;diff=9178"/>
		<updated>2013-12-04T18:51:24Z</updated>

		<summary type="html">&lt;p&gt;Austin: Created page with &amp;quot;Artefactual Systems, Internal Archivematica Dev Mtg, 2013-12-04  ==Development== * Holly updated the manual rebuild of Elasticsearch for package changes, and to work with AICs...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Artefactual Systems, Internal Archivematica Dev Mtg, 2013-12-04&lt;br /&gt;
&lt;br /&gt;
==Development==&lt;br /&gt;
* Holly updated the manual rebuild of Elasticsearch for package changes, and to work with AICs.  #6034/#5898&lt;br /&gt;
* Holly made Archivematica delete 'unneeded files' like Thumbs.db early in processing.  #6020&lt;br /&gt;
* Holly added the ability to delete AIPs from the SS.  #5872&lt;br /&gt;
* Holly did a rough implementation of NFS automounting.  #5257&lt;br /&gt;
* Holly investigated all the weird characters and encodings and how to handle them in the SS.  #6067&lt;br /&gt;
* Misty submitted AccessData AD1 to PRONOM using the Yale samples and having done a little poking into the files' structure. #5836&lt;br /&gt;
* Misty also spent some time looking at #6067 after Justin's initial report.&lt;br /&gt;
* Misty has also been working on rebasing the transfer metadata UI onto the Archivematica 1.0 branch, with the UI changes requested by courtney. #5900&lt;br /&gt;
* Mike C reworked SWORD server to create new SWORD space per daahboard (issue #5980).&lt;br /&gt;
* Mike C fixed 2 issues with the Archivist Toolkit DIP matcher (issue #6069 and #6070).&lt;br /&gt;
&lt;br /&gt;
==Documentation==&lt;br /&gt;
&lt;br /&gt;
==Community/Training/Other==&lt;br /&gt;
&lt;br /&gt;
[[Category:meetings]]&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Meeting_20131104&amp;diff=9177</id>
		<title>Meeting 20131104</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Meeting_20131104&amp;diff=9177"/>
		<updated>2013-12-04T18:47:07Z</updated>

		<summary type="html">&lt;p&gt;Austin: Created page with &amp;quot;Artefactual Systems, Internal Archivematica Dev Mtg, 2013-10-30  ==Development== * Holly updated the manual rebuild of Elasticsearch for package changes, and to work with AICs...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Artefactual Systems, Internal Archivematica Dev Mtg, 2013-10-30&lt;br /&gt;
&lt;br /&gt;
==Development==&lt;br /&gt;
* Holly updated the manual rebuild of Elasticsearch for package changes, and to work with AICs.  #6034/#5898&lt;br /&gt;
* Holly made Archivematica delete 'unneeded files' like Thumbs.db early in processing.  #6020&lt;br /&gt;
* Holly added the ability to delete AIPs from the SS.  #5872&lt;br /&gt;
* Holly did a rough implementation of NFS automounting.  #5257&lt;br /&gt;
* Holly investigated all the weird characters and encodings and how to handle them in the SS.  #6067&lt;br /&gt;
* Misty submitted AccessData AD1 to PRONOM using the Yale samples and having done a little poking into the files' structure. #5836&lt;br /&gt;
* Misty also spent some time looking at #6067 after Justin's initial report.&lt;br /&gt;
* Misty has also been working on rebasing the transfer metadata UI onto the Archivematica 1.0 branch, with the UI changes requested by courtney. #5900&lt;br /&gt;
* Mike C reworked SWORD server to create new SWORD space per daahboard (issue #5980).&lt;br /&gt;
&lt;br /&gt;
==Documentation==&lt;br /&gt;
&lt;br /&gt;
==Community/Training/Other==&lt;br /&gt;
&lt;br /&gt;
[[Category:meetings]]&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Release_1.0&amp;diff=8871</id>
		<title>Release 1.0</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Release_1.0&amp;diff=8871"/>
		<updated>2013-10-03T21:49:43Z</updated>

		<summary type="html">&lt;p&gt;Austin: Undo revision 8870 by Austin (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; [[Software]] &amp;gt; Release 1.0&lt;br /&gt;
&lt;br /&gt;
Archivematica integrates a suite of free and open-source tools that allows users to process digital objects from ingest to access in compliance with the ISO-OAIS functional model. In addition to the core Archivematica  which is released under AGPL v3 license, the following tools are bundled with Archivematica [[Archivematica_1.0_Release_Notes|1.0]]:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;10&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=90%&lt;br /&gt;
|-&lt;br /&gt;
|- style=&amp;quot;background-color:#cccccc;&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:20%&amp;quot;|'''Tool'''&lt;br /&gt;
!style=&amp;quot;width:10%&amp;quot;|'''Version'''&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|'''Description'''&lt;br /&gt;
!style=&amp;quot;width:40%&amp;quot;|'''License'''&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|[https://github.com/LibraryOfCongress/bagit-java/ BagIt]&lt;br /&gt;
|4.4-ppa0&lt;br /&gt;
|Standard and script to package digital objects and metadata for archival storage&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.clamav.net/ Clam AV (anti-virus)]&lt;br /&gt;
|0.97.5 &lt;br /&gt;
|Anti-virus toolkit for UNIX&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.elasticsearch.org/ ElasticSearch]&lt;br /&gt;
|0.20.6&lt;br /&gt;
|Indexing and search&lt;br /&gt;
|Apache License 2.0&lt;br /&gt;
|-&lt;br /&gt;
|[http://ffmpeg.org/ FFmpeg]&lt;br /&gt;
|0.10.6&lt;br /&gt;
|Converts a wide variety of audio and video formats&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://code.google.com/p/fits/ File Information Tool Set (FITS)]&lt;br /&gt;
|0.6.2&lt;br /&gt;
|File format identification and validation software integration tool&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[https://github.com/openplanets/fido fido]&lt;br /&gt;
|0.6.2&lt;br /&gt;
|Format Identifier for Digital Objects&lt;br /&gt;
|Licensed under the Apache License, Version 2.0 (the &amp;quot;License&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ica-atom.org ICA-AtoM]&lt;br /&gt;
|1.3&lt;br /&gt;
|Web-based archival description and access tool &lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imagemagick.org/script/index.php Imagemagick]&lt;br /&gt;
|0.6.6.9.7&lt;br /&gt;
|Converts a wide variety of bitmap images&lt;br /&gt;
|GPL compatible [http://www.imagemagick.org/script/license.php Imagemagick license]&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.inkscape.org/ Inkscape]&lt;br /&gt;
|0.48.3.1&lt;br /&gt;
|Converts vector images to Scalable Vector Graphic (SVG) format&lt;br /&gt;
|GNU General Public License (GPL) version 2&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.libreoffice.org/ LibreOffice]&lt;br /&gt;
|3.5.4&lt;br /&gt;
| Provides support for Normalization of documents.&lt;br /&gt;
| LGPLv3&lt;br /&gt;
|-&lt;br /&gt;
|[http://linux.about.com/cs/linux101/g/nfscommon.htm NFS-common]&lt;br /&gt;
|1.1.4&lt;br /&gt;
|Network File System Access - allows access to files on network storage devices.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.oooninja.com/2008/02/batch-command-line-file-conversion-with.html PyODConverter Daemon]&lt;br /&gt;
|&lt;br /&gt;
|Provides support for Normalization via Open-Office.&lt;br /&gt;
|Posted by Andrew Z at Wednesday, February 27, 2008 [http://www.artofsolving.com/opensource/pyodconverter LGPG]&lt;br /&gt;
|-&lt;br /&gt;
|[http://pypi.python.org/pypi/poster/0.5 Poster]&lt;br /&gt;
|0.5&lt;br /&gt;
|Provides support for both streaming POST requests as well as multipart/form-data encoding of string or file parameters&lt;br /&gt;
|MIT License&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/python-lxml Python-lxml]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/readpst ReadPST/LibPST]&lt;br /&gt;
|0.6.52&lt;br /&gt;
|convert PST (MS Outlook Personal Folders) files to mbox and other formats&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://us1.samba.org/samba/ Samba/CIFS ]&lt;br /&gt;
|3.3.2&lt;br /&gt;
|Linux to Windows interface; allows applications in the Ubuntu virtual appliance environment to use network storage made available via the Windows CIFS protocol&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://md5deep.sourceforge.net/ md5deep]&lt;br /&gt;
|&lt;br /&gt;
|Sha256 Checksum generation and verification scripts&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/karmic/en/man1/uuid.1.html UUID]&lt;br /&gt;
|1.6.2&lt;br /&gt;
|command line interface (CLI) for the generation of DCE 1.1, ISO/IEC 11578:1996 and IETF RFC-4122 compliant Universally Unique Identifier (UUID).&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ubuntu.org/ Ubuntu Linux]&lt;br /&gt;
|12.04&lt;br /&gt;
|Interface with computing hardware. Ubuntu Linux server edition.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/hardy/man1/zip.1.html Zip]&lt;br /&gt;
|3.0&lt;br /&gt;
|Utility called by Bagit to create AIP package&lt;br /&gt;
|Info-Zip license: &amp;quot;Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.djangoproject.com/ Django]&lt;br /&gt;
|1.4.5&lt;br /&gt;
|Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://gearman.org/ Gearman]&lt;br /&gt;
|0.27&lt;br /&gt;
|Gearman provides a generic application framework to farm out work to other machines or processes that are better suited to do the work.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://p7zip.sourceforge.net/ p7zip]&lt;br /&gt;
|9.20.1&lt;br /&gt;
|7-Zip is a file archiver with a high compression ratio. (LZMA)&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Release_1.0&amp;diff=8870</id>
		<title>Release 1.0</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Release_1.0&amp;diff=8870"/>
		<updated>2013-10-03T21:43:44Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; [[Software]] &amp;gt; Release 1.0&lt;br /&gt;
&lt;br /&gt;
Archivematica integrates a suite of free and open-source tools that allows users to process digital objects from ingest to access in compliance with the ISO-OAIS functional model. In addition to the core Archivematica  which is released under AGPL v3 license, the following tools are bundled with Archivematica [[Archivematica_1.0_Release_Notes|1.0]]:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;10&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=90%&lt;br /&gt;
|-&lt;br /&gt;
|- style=&amp;quot;background-color:#cccccc;&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:20%&amp;quot;|'''Tool'''&lt;br /&gt;
!style=&amp;quot;width:10%&amp;quot;|'''Version'''&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|'''Description'''&lt;br /&gt;
!style=&amp;quot;width:40%&amp;quot;|'''License'''&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|[https://github.com/LibraryOfCongress/bagit-java/ BagIt]&lt;br /&gt;
|4.4-ppa0&lt;br /&gt;
|Standard and script to package digital objects and metadata for archival storage&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.clamav.net/ Clam AV (anti-virus)]&lt;br /&gt;
|0.97.5 &lt;br /&gt;
|Anti-virus toolkit for UNIX&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.elasticsearch.org/ ElasticSearch]&lt;br /&gt;
|0.20.6&lt;br /&gt;
|Indexing and search&lt;br /&gt;
|Apache License 2.0&lt;br /&gt;
|-&lt;br /&gt;
|[http://ffmpeg.org/ FFmpeg]&lt;br /&gt;
|0.10.6&lt;br /&gt;
|Converts a wide variety of audio and video formats&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://code.google.com/p/fits/ File Information Tool Set (FITS)]&lt;br /&gt;
|0.6.2&lt;br /&gt;
|File format identification and validation software integration tool&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[https://github.com/openplanets/fido fido]&lt;br /&gt;
|0.6.2&lt;br /&gt;
|Format Identifier for Digital Objects&lt;br /&gt;
|Licensed under the Apache License, Version 2.0 (the &amp;quot;License&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ica-atom.org ICA-AtoM]&lt;br /&gt;
|1.3&lt;br /&gt;
|Web-based archival description and access tool &lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imagemagick.org/script/index.php Imagemagick]&lt;br /&gt;
|0.6.6.9.7&lt;br /&gt;
|Converts a wide variety of bitmap images&lt;br /&gt;
|GPL compatible [http://www.imagemagick.org/script/license.php Imagemagick license]&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.inkscape.org/ Inkscape]&lt;br /&gt;
|0.48.3.1&lt;br /&gt;
|Converts vector images to Scalable Vector Graphic (SVG) format&lt;br /&gt;
|GNU General Public License (GPL) version 2&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.libreoffice.org/ LibreOffice]&lt;br /&gt;
|3.5.4&lt;br /&gt;
| Provides support for Normalization of documents.&lt;br /&gt;
| LGPLv3&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.oooninja.com/2008/02/batch-command-line-file-conversion-with.html PyODConverter Daemon]&lt;br /&gt;
|&lt;br /&gt;
|Provides support for Normalization via Open-Office.&lt;br /&gt;
|Posted by Andrew Z at Wednesday, February 27, 2008 [http://www.artofsolving.com/opensource/pyodconverter LGPG]&lt;br /&gt;
|-&lt;br /&gt;
|[http://pypi.python.org/pypi/poster/0.5 Poster]&lt;br /&gt;
|0.5&lt;br /&gt;
|Provides support for both streaming POST requests as well as multipart/form-data encoding of string or file parameters&lt;br /&gt;
|MIT License&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/python-lxml Python-lxml]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/readpst ReadPST/LibPST]&lt;br /&gt;
|0.6.52&lt;br /&gt;
|convert PST (MS Outlook Personal Folders) files to mbox and other formats&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://md5deep.sourceforge.net/ md5deep]&lt;br /&gt;
|&lt;br /&gt;
|Sha256 Checksum generation and verification scripts&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/karmic/en/man1/uuid.1.html UUID]&lt;br /&gt;
|1.6.2&lt;br /&gt;
|command line interface (CLI) for the generation of DCE 1.1, ISO/IEC 11578:1996 and IETF RFC-4122 compliant Universally Unique Identifier (UUID).&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ubuntu.org/ Ubuntu Linux]&lt;br /&gt;
|12.04&lt;br /&gt;
|Interface with computing hardware. Ubuntu Linux server edition.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/hardy/man1/zip.1.html Zip]&lt;br /&gt;
|3.0&lt;br /&gt;
|Utility called by Bagit to create AIP package&lt;br /&gt;
|Info-Zip license: &amp;quot;Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.djangoproject.com/ Django]&lt;br /&gt;
|1.4.5&lt;br /&gt;
|Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://gearman.org/ Gearman]&lt;br /&gt;
|0.27&lt;br /&gt;
|Gearman provides a generic application framework to farm out work to other machines or processes that are better suited to do the work.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://p7zip.sourceforge.net/ p7zip]&lt;br /&gt;
|9.20.1&lt;br /&gt;
|7-Zip is a file archiver with a high compression ratio. (LZMA)&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Release_1.0&amp;diff=8869</id>
		<title>Release 1.0</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Release_1.0&amp;diff=8869"/>
		<updated>2013-10-03T21:42:11Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; [[Software]] &amp;gt; Release 1.0&lt;br /&gt;
&lt;br /&gt;
Archivematica integrates a suite of free and open-source tools that allows users to process digital objects from ingest to access in compliance with the ISO-OAIS functional model. In addition to the core Archivematica  which is released under AGPL v3 license, the following tools are bundled with Archivematica [[Archivematica_1.0_Release_Notes|1.0]]:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;10&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=90%&lt;br /&gt;
|-&lt;br /&gt;
|- style=&amp;quot;background-color:#cccccc;&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:20%&amp;quot;|'''Tool'''&lt;br /&gt;
!style=&amp;quot;width:10%&amp;quot;|'''Version'''&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|'''Description'''&lt;br /&gt;
!style=&amp;quot;width:40%&amp;quot;|'''License'''&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|[https://github.com/LibraryOfCongress/bagit-java/ BagIt]&lt;br /&gt;
|4.4-ppa0&lt;br /&gt;
|Standard and script to package digital objects and metadata for archival storage&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.clamav.net/ Clam AV (anti-virus)]&lt;br /&gt;
|0.97.5 &lt;br /&gt;
|Anti-virus toolkit for UNIX&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.elasticsearch.org/ ElasticSearch]&lt;br /&gt;
|0.20.6&lt;br /&gt;
|Indexing and search&lt;br /&gt;
|Apache License 2.0&lt;br /&gt;
|-&lt;br /&gt;
|[http://ffmpeg.org/ FFmpeg]&lt;br /&gt;
|0.10.6&lt;br /&gt;
|Converts a wide variety of audio and video formats&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://code.google.com/p/fits/ File Information Tool Set (FITS)]&lt;br /&gt;
|0.6.2&lt;br /&gt;
|File format identification and validation software integration tool&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[https://github.com/openplanets/fido fido]&lt;br /&gt;
|0.6.2&lt;br /&gt;
|Format Identifier for Digital Objects&lt;br /&gt;
|Licensed under the Apache License, Version 2.0 (the &amp;quot;License&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ica-atom.org ICA-AtoM]&lt;br /&gt;
|1.3&lt;br /&gt;
|Web-based archival description and access tool &lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imagemagick.org/script/index.php Imagemagick]&lt;br /&gt;
|0.6.6.9.7&lt;br /&gt;
|Converts a wide variety of bitmap images&lt;br /&gt;
|GPL compatible [http://www.imagemagick.org/script/license.php Imagemagick license]&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.inkscape.org/ Inkscape]&lt;br /&gt;
|0.48.3.1&lt;br /&gt;
|Converts vector images to Scalable Vector Graphic (SVG) format&lt;br /&gt;
|GNU General Public License (GPL) version 2&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.libreoffice.org/ LibreOffice]&lt;br /&gt;
|3.5.4&lt;br /&gt;
| Provides support for Normalization of documents.&lt;br /&gt;
| LGPLv3&lt;br /&gt;
|-&lt;br /&gt;
|[http://linux.about.com/cs/linux101/g/nfscommon.htm NFS-common]&lt;br /&gt;
|1.1.4&lt;br /&gt;
|Network File System Access - allows access to files on network storage devices.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.oooninja.com/2008/02/batch-command-line-file-conversion-with.html PyODConverter Daemon]&lt;br /&gt;
|&lt;br /&gt;
|Provides support for Normalization via Open-Office.&lt;br /&gt;
|Posted by Andrew Z at Wednesday, February 27, 2008 [http://www.artofsolving.com/opensource/pyodconverter LGPG]&lt;br /&gt;
|-&lt;br /&gt;
|[http://pypi.python.org/pypi/poster/0.5 Poster]&lt;br /&gt;
|0.5&lt;br /&gt;
|Provides support for both streaming POST requests as well as multipart/form-data encoding of string or file parameters&lt;br /&gt;
|MIT License&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/python-lxml Python-lxml]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/readpst ReadPST/LibPST]&lt;br /&gt;
|0.6.52&lt;br /&gt;
|convert PST (MS Outlook Personal Folders) files to mbox and other formats&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://us1.samba.org/samba/ Samba/CIFS ]&lt;br /&gt;
|3.3.2&lt;br /&gt;
|Linux to Windows interface; allows applications in the Ubuntu virtual appliance environment to use network storage made available via the Windows CIFS protocol&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://md5deep.sourceforge.net/ md5deep]&lt;br /&gt;
|&lt;br /&gt;
|Sha256 Checksum generation and verification scripts&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/karmic/en/man1/uuid.1.html UUID]&lt;br /&gt;
|1.6.2&lt;br /&gt;
|command line interface (CLI) for the generation of DCE 1.1, ISO/IEC 11578:1996 and IETF RFC-4122 compliant Universally Unique Identifier (UUID).&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ubuntu.org/ Ubuntu Linux]&lt;br /&gt;
|12.04&lt;br /&gt;
|Interface with computing hardware. Ubuntu Linux server edition.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/hardy/man1/zip.1.html Zip]&lt;br /&gt;
|3.0&lt;br /&gt;
|Utility called by Bagit to create AIP package&lt;br /&gt;
|Info-Zip license: &amp;quot;Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.djangoproject.com/ Django]&lt;br /&gt;
|1.4.5&lt;br /&gt;
|Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://gearman.org/ Gearman]&lt;br /&gt;
|0.27&lt;br /&gt;
|Gearman provides a generic application framework to farm out work to other machines or processes that are better suited to do the work.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://p7zip.sourceforge.net/ p7zip]&lt;br /&gt;
|9.20.1&lt;br /&gt;
|7-Zip is a file archiver with a high compression ratio. (LZMA)&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Release_1.0&amp;diff=8868</id>
		<title>Release 1.0</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Release_1.0&amp;diff=8868"/>
		<updated>2013-10-03T21:38:12Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; [[Software]] &amp;gt; Release 1.0&lt;br /&gt;
&lt;br /&gt;
Archivematica integrates a suite of free and open-source tools that allows users to process digital objects from ingest to access in compliance with the ISO-OAIS functional model. In addition to the core Archivematica  which is released under AGPL v3 license, the following tools are bundled with Archivematica [[Archivematica_1.0_Release_Notes|1.0]]:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;10&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=90%&lt;br /&gt;
|-&lt;br /&gt;
|- style=&amp;quot;background-color:#cccccc;&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:20%&amp;quot;|'''Tool'''&lt;br /&gt;
!style=&amp;quot;width:10%&amp;quot;|'''Version'''&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|'''Description'''&lt;br /&gt;
!style=&amp;quot;width:40%&amp;quot;|'''License'''&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|[https://github.com/LibraryOfCongress/bagit-java/ BagIt]&lt;br /&gt;
|4.4-ppa0&lt;br /&gt;
|Standard and script to package digital objects and metadata for archival storage&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.clamav.net/ Clam AV (anti-virus)]&lt;br /&gt;
|0.97.5 &lt;br /&gt;
|Anti-virus toolkit for UNIX&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://en.wikipedia.org/wiki/Ext4 EXT4 filesystem]&lt;br /&gt;
|12.04&lt;br /&gt;
|Local storage, organization and batch processing of digital objects within the virtual appliance&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.elasticsearch.org/ ElasticSearch]&lt;br /&gt;
|0.20.6&lt;br /&gt;
|Indexing and search&lt;br /&gt;
|Apache License 2.0&lt;br /&gt;
|-&lt;br /&gt;
|[http://ffmpeg.org/ FFmpeg]&lt;br /&gt;
|0.10.6&lt;br /&gt;
|Converts a wide variety of audio and video formats&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://code.google.com/p/fits/ File Information Tool Set (FITS)]&lt;br /&gt;
|0.6.2&lt;br /&gt;
|File format identification and validation software integration tool&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[https://github.com/openplanets/fido fido]&lt;br /&gt;
|0.6.2&lt;br /&gt;
|Format Identifier for Digital Objects&lt;br /&gt;
|Licensed under the Apache License, Version 2.0 (the &amp;quot;License&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ica-atom.org ICA-AtoM]&lt;br /&gt;
|1.3&lt;br /&gt;
|Web-based archival description and access tool &lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imagemagick.org/script/index.php Imagemagick]&lt;br /&gt;
|0.6.6.9.7&lt;br /&gt;
|Converts a wide variety of bitmap images&lt;br /&gt;
|GPL compatible [http://www.imagemagick.org/script/license.php Imagemagick license]&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.inkscape.org/ Inkscape]&lt;br /&gt;
|0.48.3.1&lt;br /&gt;
|Converts vector images to Scalable Vector Graphic (SVG) format&lt;br /&gt;
|GNU General Public License (GPL) version 2&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.libreoffice.org/ LibreOffice]&lt;br /&gt;
|3.5.4&lt;br /&gt;
| Provides support for Normalization of documents.&lt;br /&gt;
| LGPLv3&lt;br /&gt;
|-&lt;br /&gt;
|[http://linux.about.com/cs/linux101/g/nfscommon.htm NFS-common]&lt;br /&gt;
|1.1.4&lt;br /&gt;
|Network File System Access - allows access to files on network storage devices.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.oooninja.com/2008/02/batch-command-line-file-conversion-with.html PyODConverter Daemon]&lt;br /&gt;
|&lt;br /&gt;
|Provides support for Normalization via Open-Office.&lt;br /&gt;
|Posted by Andrew Z at Wednesday, February 27, 2008 [http://www.artofsolving.com/opensource/pyodconverter LGPG]&lt;br /&gt;
|-&lt;br /&gt;
|[http://pypi.python.org/pypi/poster/0.5 Poster]&lt;br /&gt;
|0.5&lt;br /&gt;
|Provides support for both streaming POST requests as well as multipart/form-data encoding of string or file parameters&lt;br /&gt;
|MIT License&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/python-lxml Python-lxml]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/readpst ReadPST/LibPST]&lt;br /&gt;
|0.6.52&lt;br /&gt;
|convert PST (MS Outlook Personal Folders) files to mbox and other formats&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://us1.samba.org/samba/ Samba/CIFS ]&lt;br /&gt;
|3.3.2&lt;br /&gt;
|Linux to Windows interface; allows applications in the Ubuntu virtual appliance environment to use network storage made available via the Windows CIFS protocol&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://md5deep.sourceforge.net/ md5deep]&lt;br /&gt;
|&lt;br /&gt;
|Sha256 Checksum generation and verification scripts&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/karmic/en/man1/uuid.1.html UUID]&lt;br /&gt;
|1.6.2&lt;br /&gt;
|command line interface (CLI) for the generation of DCE 1.1, ISO/IEC 11578:1996 and IETF RFC-4122 compliant Universally Unique Identifier (UUID).&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ubuntu.org/ Ubuntu Linux]&lt;br /&gt;
|12.04&lt;br /&gt;
|Interface with computing hardware. Ubuntu Linux server edition.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/hardy/man1/zip.1.html Zip]&lt;br /&gt;
|3.0&lt;br /&gt;
|Utility called by Bagit to create AIP package&lt;br /&gt;
|Info-Zip license: &amp;quot;Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.djangoproject.com/ Django]&lt;br /&gt;
|1.4.5&lt;br /&gt;
|Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://gearman.org/ Gearman]&lt;br /&gt;
|0.27&lt;br /&gt;
|Gearman provides a generic application framework to farm out work to other machines or processes that are better suited to do the work.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://p7zip.sourceforge.net/ p7zip]&lt;br /&gt;
|9.20.1&lt;br /&gt;
|7-Zip is a file archiver with a high compression ratio. (LZMA)&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Release_1.0&amp;diff=8867</id>
		<title>Release 1.0</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Release_1.0&amp;diff=8867"/>
		<updated>2013-10-03T21:37:31Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; [[Software]] &amp;gt; Release 1.0&lt;br /&gt;
&lt;br /&gt;
Archivematica integrates a suite of free and open-source tools that allows users to process digital objects from ingest to access in compliance with the ISO-OAIS functional model. In addition to the core Archivematica  which is released under AGPL v3 license, the following tools are bundled with Archivematica [[Archivematica_1.0_Release_Notes|1.0]]:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;10&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=90%&lt;br /&gt;
|-&lt;br /&gt;
|- style=&amp;quot;background-color:#cccccc;&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:20%&amp;quot;|'''Tool'''&lt;br /&gt;
!style=&amp;quot;width:10%&amp;quot;|'''Version'''&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|'''Description'''&lt;br /&gt;
!style=&amp;quot;width:40%&amp;quot;|'''License'''&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|[https://github.com/LibraryOfCongress/bagit-java/ BagIt]&lt;br /&gt;
|4.4-ppa0&lt;br /&gt;
|Standard and script to package digital objects and metadata for archival storage&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.clamav.net/ Clam AV (anti-virus)]&lt;br /&gt;
|0.97.5 &lt;br /&gt;
|Anti-virus toolkit for UNIX&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://en.wikipedia.org/wiki/Ext4 EXT4 filesystem]&lt;br /&gt;
|12.04&lt;br /&gt;
|Local storage, organization and batch processing of digital objects within the virtual appliance&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.elasticsearch.org/ ElasticSearch]&lt;br /&gt;
|0.20.6&lt;br /&gt;
|Indexing and search&lt;br /&gt;
|Apache License 2.0&lt;br /&gt;
|-&lt;br /&gt;
|[http://ffmpeg.org/ FFmpeg]&lt;br /&gt;
|0.10.6&lt;br /&gt;
|Converts a wide variety of audio and video formats&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://code.google.com/p/fits/ File Information Tool Set (FITS)]&lt;br /&gt;
|0.6.2&lt;br /&gt;
|File format identification and validation software integration tool&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[https://github.com/openplanets/fido fido]&lt;br /&gt;
|0.6.2&lt;br /&gt;
|Format Identifier for Digital Objects&lt;br /&gt;
|Licensed under the Apache License, Version 2.0 (the &amp;quot;License&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ica-atom.org ICA-AtoM]&lt;br /&gt;
|1.3&lt;br /&gt;
|Web-based archival description and access tool &lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imagemagick.org/script/index.php Imagemagick]&lt;br /&gt;
|0.6.6.9.7&lt;br /&gt;
|Converts a wide variety of bitmap images&lt;br /&gt;
|GPL compatible [http://www.imagemagick.org/script/license.php Imagemagick license]&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.inkscape.org/ Inkscape]&lt;br /&gt;
|0.48.3.1&lt;br /&gt;
|Converts vector images to Scalable Vector Graphic (SVG) format&lt;br /&gt;
|GNU General Public License (GPL) version 2&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.libreoffice.org/ LibreOffice]&lt;br /&gt;
|3.5.4&lt;br /&gt;
| Provides support for Normalization of documents.&lt;br /&gt;
| LGPLv3&lt;br /&gt;
|-&lt;br /&gt;
|[http://linux.about.com/cs/linux101/g/nfscommon.htm NFS-common]&lt;br /&gt;
|1.1.4&lt;br /&gt;
|Network File System Access - allows access to files on network storage devices.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.oooninja.com/2008/02/batch-command-line-file-conversion-with.html PyODConverter Daemon]&lt;br /&gt;
|&lt;br /&gt;
|Provides support for Normalization via Open-Office.&lt;br /&gt;
|Posted by Andrew Z at Wednesday, February 27, 2008 [http://www.artofsolving.com/opensource/pyodconverter LGPG]&lt;br /&gt;
|-&lt;br /&gt;
|[http://pypi.python.org/pypi/poster/0.5 Poster]&lt;br /&gt;
|0.5&lt;br /&gt;
|Provides support for both streaming POST requests as well as multipart/form-data encoding of string or file parameters&lt;br /&gt;
|MIT License&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/python-lxml Python-lxml]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/readpst ReadPST/LibPST]&lt;br /&gt;
|0.6.52&lt;br /&gt;
|convert PST (MS Outlook Personal Folders) files to mbox and other formats&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://us1.samba.org/samba/ Samba/CIFS ]&lt;br /&gt;
|3.3.2&lt;br /&gt;
|Linux to Windows interface; allows applications in the Ubuntu virtual appliance environment to use network storage made available via the Windows CIFS protocol&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/md5deep md5deep]&lt;br /&gt;
|&lt;br /&gt;
|Sha256 Checksum generation and verification scripts&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/karmic/en/man1/uuid.1.html UUID]&lt;br /&gt;
|1.6.2&lt;br /&gt;
|command line interface (CLI) for the generation of DCE 1.1, ISO/IEC 11578:1996 and IETF RFC-4122 compliant Universally Unique Identifier (UUID).&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ubuntu.org/ Ubuntu Linux]&lt;br /&gt;
|12.04&lt;br /&gt;
|Interface with computing hardware. Ubuntu Linux server edition.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/hardy/man1/zip.1.html Zip]&lt;br /&gt;
|3.0&lt;br /&gt;
|Utility called by Bagit to create AIP package&lt;br /&gt;
|Info-Zip license: &amp;quot;Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.djangoproject.com/ Django]&lt;br /&gt;
|1.4.5&lt;br /&gt;
|Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://gearman.org/ Gearman]&lt;br /&gt;
|0.27&lt;br /&gt;
|Gearman provides a generic application framework to farm out work to other machines or processes that are better suited to do the work.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://p7zip.sourceforge.net/ p7zip]&lt;br /&gt;
|9.20.1&lt;br /&gt;
|7-Zip is a file archiver with a high compression ratio. (LZMA)&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Release_1.0&amp;diff=8866</id>
		<title>Release 1.0</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Release_1.0&amp;diff=8866"/>
		<updated>2013-10-03T21:36:56Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; [[Software]] &amp;gt; Release 1.0&lt;br /&gt;
&lt;br /&gt;
Archivematica integrates a suite of free and open-source tools that allows users to process digital objects from ingest to access in compliance with the ISO-OAIS functional model. In addition to the core Archivematica  which is released under AGPL v3 license, the following tools are bundled with Archivematica [[Archivematica_1.0_Release_Notes|1.0]]:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;10&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=90%&lt;br /&gt;
|-&lt;br /&gt;
|- style=&amp;quot;background-color:#cccccc;&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:20%&amp;quot;|'''Tool'''&lt;br /&gt;
!style=&amp;quot;width:10%&amp;quot;|'''Version'''&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|'''Description'''&lt;br /&gt;
!style=&amp;quot;width:40%&amp;quot;|'''License'''&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|[https://github.com/LibraryOfCongress/bagit-java/ BagIt]&lt;br /&gt;
|4.4-ppa0&lt;br /&gt;
|Standard and script to package digital objects and metadata for archival storage&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.clamav.net/ Clam AV (anti-virus)]&lt;br /&gt;
|0.97.5 &lt;br /&gt;
|Anti-virus toolkit for UNIX&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://en.wikipedia.org/wiki/Ext4 EXT4 filesystem]&lt;br /&gt;
|12.04&lt;br /&gt;
|Local storage, organization and batch processing of digital objects within the virtual appliance&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.elasticsearch.org/ ElasticSearch]&lt;br /&gt;
|0.20.6&lt;br /&gt;
|Indexing and search&lt;br /&gt;
|Apache License 2.0&lt;br /&gt;
|-&lt;br /&gt;
|[http://ffmpeg.org/ FFmpeg]&lt;br /&gt;
|0.10.6&lt;br /&gt;
|Converts a wide variety of audio and video formats&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://code.google.com/p/fits/ File Information Tool Set (FITS)]&lt;br /&gt;
|0.6.2&lt;br /&gt;
|File format identification and validation software integration tool&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[https://github.com/openplanets/fido fido]&lt;br /&gt;
|0.6.2&lt;br /&gt;
|Format Identifier for Digital Objects&lt;br /&gt;
|Licensed under the Apache License, Version 2.0 (the &amp;quot;License&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ica-atom.org ICA-AtoM]&lt;br /&gt;
|1.3&lt;br /&gt;
|Web-based archival description and access tool &lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imagemagick.org/script/index.php Imagemagick]&lt;br /&gt;
|0.6.6.9.7&lt;br /&gt;
|Converts a wide variety of bitmap images&lt;br /&gt;
|GPL compatible [http://www.imagemagick.org/script/license.php Imagemagick license]&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.inkscape.org/ Inkscape]&lt;br /&gt;
|0.48.3.1&lt;br /&gt;
|Converts vector images to Scalable Vector Graphic (SVG) format&lt;br /&gt;
|GNU General Public License (GPL) version 2&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.libreoffice.org/ LibreOffice]&lt;br /&gt;
|3.5.4&lt;br /&gt;
| Provides support for Normalization of documents.&lt;br /&gt;
| LGPLv3&lt;br /&gt;
|-&lt;br /&gt;
|[http://en.wikipedia.org/wiki/Md5 MD5]&lt;br /&gt;
|7.4&lt;br /&gt;
|MD5 Checksum generation and verification scripts&lt;br /&gt;
|&amp;quot;This program is a work of the US Government. In accordance with 17 USC 105, copyright protection is not available for any work of the US government. As such this code is considered public domain.&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[http://linux.about.com/cs/linux101/g/nfscommon.htm NFS-common]&lt;br /&gt;
|1.1.4&lt;br /&gt;
|Network File System Access - allows access to files on network storage devices.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.oooninja.com/2008/02/batch-command-line-file-conversion-with.html PyODConverter Daemon]&lt;br /&gt;
|&lt;br /&gt;
|Provides support for Normalization via Open-Office.&lt;br /&gt;
|Posted by Andrew Z at Wednesday, February 27, 2008 [http://www.artofsolving.com/opensource/pyodconverter LGPG]&lt;br /&gt;
|-&lt;br /&gt;
|[http://pypi.python.org/pypi/poster/0.5 Poster]&lt;br /&gt;
|0.5&lt;br /&gt;
|Provides support for both streaming POST requests as well as multipart/form-data encoding of string or file parameters&lt;br /&gt;
|MIT License&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/python-lxml Python-lxml]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/readpst ReadPST/LibPST]&lt;br /&gt;
|0.6.52&lt;br /&gt;
|convert PST (MS Outlook Personal Folders) files to mbox and other formats&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://us1.samba.org/samba/ Samba/CIFS ]&lt;br /&gt;
|3.3.2&lt;br /&gt;
|Linux to Windows interface; allows applications in the Ubuntu virtual appliance environment to use network storage made available via the Windows CIFS protocol&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/md5deep md5deep]&lt;br /&gt;
|&lt;br /&gt;
|Sha256 Checksum generation and verification scripts&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/karmic/en/man1/uuid.1.html UUID]&lt;br /&gt;
|1.6.2&lt;br /&gt;
|command line interface (CLI) for the generation of DCE 1.1, ISO/IEC 11578:1996 and IETF RFC-4122 compliant Universally Unique Identifier (UUID).&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ubuntu.org/ Ubuntu Linux]&lt;br /&gt;
|12.04&lt;br /&gt;
|Interface with computing hardware. Ubuntu Linux server edition.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/hardy/man1/zip.1.html Zip]&lt;br /&gt;
|3.0&lt;br /&gt;
|Utility called by Bagit to create AIP package&lt;br /&gt;
|Info-Zip license: &amp;quot;Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.djangoproject.com/ Django]&lt;br /&gt;
|1.4.5&lt;br /&gt;
|Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://gearman.org/ Gearman]&lt;br /&gt;
|0.27&lt;br /&gt;
|Gearman provides a generic application framework to farm out work to other machines or processes that are better suited to do the work.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://p7zip.sourceforge.net/ p7zip]&lt;br /&gt;
|9.20.1&lt;br /&gt;
|7-Zip is a file archiver with a high compression ratio. (LZMA)&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Release_1.0&amp;diff=8853</id>
		<title>Release 1.0</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Release_1.0&amp;diff=8853"/>
		<updated>2013-10-03T20:03:59Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; [[Software]] &amp;gt; Release 1.0&lt;br /&gt;
&lt;br /&gt;
Archivematica integrates a suite of free and open-source tools that allows users to process digital objects from ingest to access in compliance with the ISO-OAIS functional model. In addition to the core Archivematica  which is released under AGPL v3 license, the following tools are bundled with Archivematica [[Archivematica_1.0_Release_Notes|1.0]]:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;10&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=90%&lt;br /&gt;
|-&lt;br /&gt;
|- style=&amp;quot;background-color:#cccccc;&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:20%&amp;quot;|'''Tool'''&lt;br /&gt;
!style=&amp;quot;width:10%&amp;quot;|'''Version'''&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|'''Description'''&lt;br /&gt;
!style=&amp;quot;width:40%&amp;quot;|'''License'''&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.digitalpreservation.gov/library/challenge/data-transfer.html BagIt]&lt;br /&gt;
|4.4-ppa0&lt;br /&gt;
|Standard and script to package digital objects and metadata for archival storage&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.clamav.net/ Clam AV (anti-virus)]&lt;br /&gt;
|0.97.5 &lt;br /&gt;
|Anti-virus toolkit for UNIX&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://en.wikipedia.org/wiki/Ext4 EXT4 filesystem]&lt;br /&gt;
|12.04&lt;br /&gt;
|Local storage, organization and batch processing of digital objects within the virtual appliance&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.elasticsearch.org/ ElasticSearch]&lt;br /&gt;
|0.20.6&lt;br /&gt;
|Indexing and search&lt;br /&gt;
|Apache License 2.0&lt;br /&gt;
|-&lt;br /&gt;
|[http://ffmpeg.org/ FFmpeg]&lt;br /&gt;
|0.10.6&lt;br /&gt;
|Converts a wide variety of audio and video formats&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://code.google.com/p/fits/ File Information Tool Set (FITS)]&lt;br /&gt;
|0.6.2&lt;br /&gt;
|File format identification and validation software integration tool&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[https://github.com/openplanets/fido fido]&lt;br /&gt;
|0.6.2&lt;br /&gt;
|Format Identifier for Digital Objects&lt;br /&gt;
|Licensed under the Apache License, Version 2.0 (the &amp;quot;License&amp;quot;)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ica-atom.org ICA-AtoM]&lt;br /&gt;
|1.3&lt;br /&gt;
|Web-based archival description and access tool &lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imagemagick.org/script/index.php Imagemagick]&lt;br /&gt;
|0.6.6.9.7&lt;br /&gt;
|Converts a wide variety of bitmap images&lt;br /&gt;
|GPL compatible [http://www.imagemagick.org/script/license.php Imagemagick license]&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.inkscape.org/ Inkscape]&lt;br /&gt;
|0.48.3.1&lt;br /&gt;
|Converts vector images to Scalable Vector Graphic (SVG) format&lt;br /&gt;
|GNU General Public License (GPL) version 2&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.libreoffice.org/ LibreOffice]&lt;br /&gt;
|3.5.4&lt;br /&gt;
| Provides support for Normalization of documents.&lt;br /&gt;
| LGPLv3&lt;br /&gt;
|-&lt;br /&gt;
|[http://en.wikipedia.org/wiki/Md5 MD5]&lt;br /&gt;
|7.4&lt;br /&gt;
|MD5 Checksum generation and verification scripts&lt;br /&gt;
|&amp;quot;This program is a work of the US Government. In accordance with 17 USC 105, copyright protection is not available for any work of the US government. As such this code is considered public domain.&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[http://linux.about.com/cs/linux101/g/nfscommon.htm NFS-common]&lt;br /&gt;
|1.1.4&lt;br /&gt;
|Network File System Access - allows access to files on network storage devices.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.oooninja.com/2008/02/batch-command-line-file-conversion-with.html PyODConverter Daemon]&lt;br /&gt;
|&lt;br /&gt;
|Provides support for Normalization via Open-Office.&lt;br /&gt;
|Posted by Andrew Z at Wednesday, February 27, 2008 [http://www.artofsolving.com/opensource/pyodconverter LGPG]&lt;br /&gt;
|-&lt;br /&gt;
|[http://pypi.python.org/pypi/poster/0.5 Poster]&lt;br /&gt;
|0.5&lt;br /&gt;
|Provides support for both streaming POST requests as well as multipart/form-data encoding of string or file parameters&lt;br /&gt;
|MIT License&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/python-lxml Python-lxml]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/readpst ReadPST/LibPST]&lt;br /&gt;
|0.6.52&lt;br /&gt;
|convert PST (MS Outlook Personal Folders) files to mbox and other formats&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://us1.samba.org/samba/ Samba/CIFS ]&lt;br /&gt;
|3.3.2&lt;br /&gt;
|Linux to Windows interface; allows applications in the Ubuntu virtual appliance environment to use network storage made available via the Windows CIFS protocol&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/md5deep sha256]&lt;br /&gt;
|&lt;br /&gt;
|Sha256 Checksum generation and verification scripts&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/karmic/en/man1/uuid.1.html UUID]&lt;br /&gt;
|1.6.2&lt;br /&gt;
|command line interface (CLI) for the generation of DCE 1.1, ISO/IEC 11578:1996 and IETF RFC-4122 compliant Universally Unique Identifier (UUID).&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ubuntu.org/ Ubuntu Linux]&lt;br /&gt;
|12.04&lt;br /&gt;
|Interface with computing hardware. Ubuntu Linux server edition.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/hardy/man1/zip.1.html Zip]&lt;br /&gt;
|3.0&lt;br /&gt;
|Utility called by Bagit to create AIP package&lt;br /&gt;
|Info-Zip license: &amp;quot;Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.djangoproject.com/ Django]&lt;br /&gt;
|1.4.5&lt;br /&gt;
|Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://gearman.org/ Gearman]&lt;br /&gt;
|0.27&lt;br /&gt;
|Gearman provides a generic application framework to farm out work to other machines or processes that are better suited to do the work.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://p7zip.sourceforge.net/ p7zip]&lt;br /&gt;
|9.20.1&lt;br /&gt;
|7-Zip is a file archiver with a high compression ratio. (LZMA)&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Release_1.0&amp;diff=8852</id>
		<title>Release 1.0</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Release_1.0&amp;diff=8852"/>
		<updated>2013-10-03T19:55:16Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; [[Software]] &amp;gt; Release 1.0&lt;br /&gt;
&lt;br /&gt;
Archivematica integrates a suite of free and open-source tools that allows users to process digital objects from ingest to access in compliance with the ISO-OAIS functional model. In addition to the core Archivematica  which is released under AGPL v3 license, the following tools are bundled with Archivematica [[Archivematica_1.0_Release_Notes|1.0]]:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;10&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=90%&lt;br /&gt;
|-&lt;br /&gt;
|- style=&amp;quot;background-color:#cccccc;&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:20%&amp;quot;|'''Tool'''&lt;br /&gt;
!style=&amp;quot;width:10%&amp;quot;|'''Version'''&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|'''Description'''&lt;br /&gt;
!style=&amp;quot;width:40%&amp;quot;|'''License'''&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.digitalpreservation.gov/library/challenge/data-transfer.html BagIt]&lt;br /&gt;
|4.4-ppa0&lt;br /&gt;
|Standard and script to package digital objects and metadata for archival storage&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.clamav.net/ Clam AV (anti-virus)]&lt;br /&gt;
|0.97.5 &lt;br /&gt;
|Anti-virus toolkit for UNIX&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://en.wikipedia.org/wiki/Ext4 EXT4 filesystem]&lt;br /&gt;
|12.04&lt;br /&gt;
|Local storage, organization and batch processing of digital objects within the virtual appliance&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.elasticsearch.org/ ElasticSearch]&lt;br /&gt;
|0.20.6&lt;br /&gt;
|Indexing and search&lt;br /&gt;
|Apache License 2.0&lt;br /&gt;
|-&lt;br /&gt;
|[http://ffmpeg.org/ FFmpeg]&lt;br /&gt;
|0.10.6&lt;br /&gt;
|Converts a wide variety of audio and video formats&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://code.google.com/p/fits/ File Information Tool Set (FITS)]&lt;br /&gt;
|0.6.1&lt;br /&gt;
|File format identification and validation software integration tool&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ica-atom.org ICA-AtoM]&lt;br /&gt;
|1.3&lt;br /&gt;
|Web-based archival description and access tool &lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imagemagick.org/script/index.php Imagemagick]&lt;br /&gt;
|0.6.6.9.7&lt;br /&gt;
|Converts a wide variety of bitmap images&lt;br /&gt;
|GPL compatible [http://www.imagemagick.org/script/license.php Imagemagick license]&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.inkscape.org/ Inkscape]&lt;br /&gt;
|0.48.3.1&lt;br /&gt;
|Converts vector images to Scalable Vector Graphic (SVG) format&lt;br /&gt;
|GNU General Public License (GPL) version 2&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.libreoffice.org/ LibreOffice]&lt;br /&gt;
|3.5.4&lt;br /&gt;
| Provides support for Normalization of documents.&lt;br /&gt;
| LGPLv3&lt;br /&gt;
|-&lt;br /&gt;
|[http://en.wikipedia.org/wiki/Md5 MD5]&lt;br /&gt;
|7.4&lt;br /&gt;
|MD5 Checksum generation and verification scripts&lt;br /&gt;
|&amp;quot;This program is a work of the US Government. In accordance with 17 USC 105, copyright protection is not available for any work of the US government. As such this code is considered public domain.&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[http://linux.about.com/cs/linux101/g/nfscommon.htm NFS-common]&lt;br /&gt;
|1.1.4&lt;br /&gt;
|Network File System Access - allows access to files on network storage devices.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.oooninja.com/2008/02/batch-command-line-file-conversion-with.html PyODConverter Daemon]&lt;br /&gt;
|&lt;br /&gt;
|Provides support for Normalization via Open-Office.&lt;br /&gt;
|Posted by Andrew Z at Wednesday, February 27, 2008 [http://www.artofsolving.com/opensource/pyodconverter LGPG]&lt;br /&gt;
|-&lt;br /&gt;
|[http://pypi.python.org/pypi/poster/0.5 Poster]&lt;br /&gt;
|0.5&lt;br /&gt;
|Provides support for both streaming POST requests as well as multipart/form-data encoding of string or file parameters&lt;br /&gt;
|MIT License&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/python-lxml Python-lxml]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/readpst ReadPST/LibPST]&lt;br /&gt;
|0.6.52&lt;br /&gt;
|convert PST (MS Outlook Personal Folders) files to mbox and other formats&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://us1.samba.org/samba/ Samba/CIFS ]&lt;br /&gt;
|3.3.2&lt;br /&gt;
|Linux to Windows interface; allows applications in the Ubuntu virtual appliance environment to use network storage made available via the Windows CIFS protocol&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/md5deep sha256]&lt;br /&gt;
|&lt;br /&gt;
|Sha256 Checksum generation and verification scripts&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/karmic/en/man1/uuid.1.html UUID]&lt;br /&gt;
|1.6.2&lt;br /&gt;
|command line interface (CLI) for the generation of DCE 1.1, ISO/IEC 11578:1996 and IETF RFC-4122 compliant Universally Unique Identifier (UUID).&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ubuntu.org/ Ubuntu Linux]&lt;br /&gt;
|12.04&lt;br /&gt;
|Interface with computing hardware. Ubuntu Linux server edition.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/hardy/man1/zip.1.html Zip]&lt;br /&gt;
|3.0&lt;br /&gt;
|Utility called by Bagit to create AIP package&lt;br /&gt;
|Info-Zip license: &amp;quot;Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.djangoproject.com/ Django]&lt;br /&gt;
|1.4.5&lt;br /&gt;
|Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://gearman.org/ Gearman]&lt;br /&gt;
|0.27&lt;br /&gt;
|Gearman provides a generic application framework to farm out work to other machines or processes that are better suited to do the work.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://p7zip.sourceforge.net/ p7zip]&lt;br /&gt;
|9.20.1&lt;br /&gt;
|7-Zip is a file archiver with a high compression ratio. (LZMA)&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Release_1.0&amp;diff=8851</id>
		<title>Release 1.0</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Release_1.0&amp;diff=8851"/>
		<updated>2013-10-03T19:54:55Z</updated>

		<summary type="html">&lt;p&gt;Austin: Created page with &amp;quot;Main Page &amp;gt; Software &amp;gt; Release 1.0  Archivematica integrates a suite of free and open-source tools that allows users to process digital objects from ingest to access i...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; [[Software]] &amp;gt; Release 1.0&lt;br /&gt;
&lt;br /&gt;
Archivematica integrates a suite of free and open-source tools that allows users to process digital objects from ingest to access in compliance with the ISO-OAIS functional model. In addition to the core Archivematica  which is released under AGPL v3 license, the following tools are bundled with Archivematica [[Archivematica_1.0_Release_Notes|1.0]]:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;10&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=90%&lt;br /&gt;
|-&lt;br /&gt;
|- style=&amp;quot;background-color:#cccccc;&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:20%&amp;quot;|'''Tool'''&lt;br /&gt;
!style=&amp;quot;width:10%&amp;quot;|'''Version'''&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|'''Description'''&lt;br /&gt;
!style=&amp;quot;width:40%&amp;quot;|'''License'''&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.digitalpreservation.gov/library/challenge/data-transfer.html BagIt]&lt;br /&gt;
|4.4-ppa0&lt;br /&gt;
|Standard and script to package digital objects and metadata for archival storage&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.clamav.net/ Clam AV (anti-virus)]&lt;br /&gt;
|0.97.5 &lt;br /&gt;
|Anti-virus toolkit for UNIX&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://en.wikipedia.org/wiki/Ext4 EXT4 filesystem]&lt;br /&gt;
|12.04&lt;br /&gt;
|Local storage, organization and batch processing of digital objects within the virtual appliance&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.elasticsearch.org/ ElasticSearch]&lt;br /&gt;
|0.20.6&lt;br /&gt;
|Indexing and search&lt;br /&gt;
|Apache License 2.0&lt;br /&gt;
|-&lt;br /&gt;
|[http://ffmpeg.org/ FFmpeg]&lt;br /&gt;
|0.10.6&lt;br /&gt;
|Converts a wide variety of audio and video formats&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://code.google.com/p/fits/ File Information Tool Set (FITS)]&lt;br /&gt;
|0.6.1&lt;br /&gt;
|File format identification and validation software integration tool&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ica-atom.org ICA-AtoM]&lt;br /&gt;
|1.3&lt;br /&gt;
|Web-based archival description and access tool &lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imagemagick.org/script/index.php Imagemagick]&lt;br /&gt;
|0.6.6.9.7&lt;br /&gt;
|Converts a wide variety of bitmap images&lt;br /&gt;
|GPL compatible [http://www.imagemagick.org/script/license.php Imagemagick license]&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.inkscape.org/ Inkscape]&lt;br /&gt;
|0.48.3.1&lt;br /&gt;
|Converts vector images to Scalable Vector Graphic (SVG) format&lt;br /&gt;
|GNU General Public License (GPL) version 2&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.libreoffice.org/ LibreOffice&lt;br /&gt;
|3.5.4&lt;br /&gt;
| Provides support for Normalization of documents.&lt;br /&gt;
| LGPLv3&lt;br /&gt;
|-&lt;br /&gt;
|[http://en.wikipedia.org/wiki/Md5 MD5]&lt;br /&gt;
|7.4&lt;br /&gt;
|MD5 Checksum generation and verification scripts&lt;br /&gt;
|&amp;quot;This program is a work of the US Government. In accordance with 17 USC 105, copyright protection is not available for any work of the US government. As such this code is considered public domain.&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[http://linux.about.com/cs/linux101/g/nfscommon.htm NFS-common]&lt;br /&gt;
|1.1.4&lt;br /&gt;
|Network File System Access - allows access to files on network storage devices.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.oooninja.com/2008/02/batch-command-line-file-conversion-with.html PyODConverter Daemon]&lt;br /&gt;
|&lt;br /&gt;
|Provides support for Normalization via Open-Office.&lt;br /&gt;
|Posted by Andrew Z at Wednesday, February 27, 2008 [http://www.artofsolving.com/opensource/pyodconverter LGPG]&lt;br /&gt;
|-&lt;br /&gt;
|[http://pypi.python.org/pypi/poster/0.5 Poster]&lt;br /&gt;
|0.5&lt;br /&gt;
|Provides support for both streaming POST requests as well as multipart/form-data encoding of string or file parameters&lt;br /&gt;
|MIT License&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/python-lxml Python-lxml]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/readpst ReadPST/LibPST]&lt;br /&gt;
|0.6.52&lt;br /&gt;
|convert PST (MS Outlook Personal Folders) files to mbox and other formats&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://us1.samba.org/samba/ Samba/CIFS ]&lt;br /&gt;
|3.3.2&lt;br /&gt;
|Linux to Windows interface; allows applications in the Ubuntu virtual appliance environment to use network storage made available via the Windows CIFS protocol&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/md5deep sha256]&lt;br /&gt;
|&lt;br /&gt;
|Sha256 Checksum generation and verification scripts&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/karmic/en/man1/uuid.1.html UUID]&lt;br /&gt;
|1.6.2&lt;br /&gt;
|command line interface (CLI) for the generation of DCE 1.1, ISO/IEC 11578:1996 and IETF RFC-4122 compliant Universally Unique Identifier (UUID).&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ubuntu.org/ Ubuntu Linux]&lt;br /&gt;
|12.04&lt;br /&gt;
|Interface with computing hardware. Ubuntu Linux server edition.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/hardy/man1/zip.1.html Zip]&lt;br /&gt;
|3.0&lt;br /&gt;
|Utility called by Bagit to create AIP package&lt;br /&gt;
|Info-Zip license: &amp;quot;Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.djangoproject.com/ Django]&lt;br /&gt;
|1.4.5&lt;br /&gt;
|Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://gearman.org/ Gearman]&lt;br /&gt;
|0.27&lt;br /&gt;
|Gearman provides a generic application framework to farm out work to other machines or processes that are better suited to do the work.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://p7zip.sourceforge.net/ p7zip]&lt;br /&gt;
|9.20.1&lt;br /&gt;
|7-Zip is a file archiver with a high compression ratio. (LZMA)&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Release_0.10-beta&amp;diff=8620</id>
		<title>Release 0.10-beta</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Release_0.10-beta&amp;diff=8620"/>
		<updated>2013-07-09T19:24:50Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; [[Software]] &amp;gt; Release 0.10-beta&lt;br /&gt;
&lt;br /&gt;
Archivematica integrates a suite of free and open-source tools that allows users to process digital objects from ingest to access in compliance with the ISO-OAIS functional model. In addition to the core Archivematica  which is released under AGPL v3 license, the following tools are bundled with Archivematica [[Archivematica_0.10_Release_Notes|0.10-beta]]:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;10&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=90%&lt;br /&gt;
|-&lt;br /&gt;
|- style=&amp;quot;background-color:#cccccc;&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:20%&amp;quot;|'''Tool'''&lt;br /&gt;
!style=&amp;quot;width:10%&amp;quot;|'''Version'''&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|'''Description'''&lt;br /&gt;
!style=&amp;quot;width:40%&amp;quot;|'''License'''&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.digitalpreservation.gov/library/challenge/data-transfer.html BagIt]&lt;br /&gt;
|4.4-ppa0&lt;br /&gt;
|Standard and script to package digital objects and metadata for archival storage&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.clamav.net/ Clam AV (anti-virus)]&lt;br /&gt;
|0.97.5 &lt;br /&gt;
|Anti-virus toolkit for UNIX&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://en.wikipedia.org/wiki/Ext4 EXT4 filesystem]&lt;br /&gt;
|12.04&lt;br /&gt;
|Local storage, organization and batch processing of digital objects within the virtual appliance&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.elasticsearch.org/ ElasticSearch]&lt;br /&gt;
|0.20.6&lt;br /&gt;
|Indexing and search&lt;br /&gt;
|Apache License 2.0&lt;br /&gt;
|-&lt;br /&gt;
|[http://ffmpeg.org/ FFmpeg]&lt;br /&gt;
|0.10.6&lt;br /&gt;
|Converts a wide variety of audio and video formats&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://code.google.com/p/fits/ File Information Tool Set (FITS)]&lt;br /&gt;
|0.6.1&lt;br /&gt;
|File format identification and validation software integration tool&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ica-atom.org ICA-AtoM]&lt;br /&gt;
|1.3&lt;br /&gt;
|Web-based archival description and access tool &lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imagemagick.org/script/index.php Imagemagick]&lt;br /&gt;
|0.6.6.9.7&lt;br /&gt;
|Converts a wide variety of bitmap images&lt;br /&gt;
|GPL compatible [http://www.imagemagick.org/script/license.php Imagemagick license]&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.inkscape.org/ Inkscape]&lt;br /&gt;
|0.48.3.1&lt;br /&gt;
|Converts vector images to Scalable Vector Graphic (SVG) format&lt;br /&gt;
|GNU General Public License (GPL) version 2&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.libreoffice.org/ LibreOffice&lt;br /&gt;
|3.5.4&lt;br /&gt;
| Provides support for Normalization of documents.&lt;br /&gt;
| LGPLv3&lt;br /&gt;
|-&lt;br /&gt;
|[http://en.wikipedia.org/wiki/Md5 MD5]&lt;br /&gt;
|7.4&lt;br /&gt;
|MD5 Checksum generation and verification scripts&lt;br /&gt;
|&amp;quot;This program is a work of the US Government. In accordance with 17 USC 105, copyright protection is not available for any work of the US government. As such this code is considered public domain.&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[http://linux.about.com/cs/linux101/g/nfscommon.htm NFS-common]&lt;br /&gt;
|1.1.4&lt;br /&gt;
|Network File System Access - allows access to files on network storage devices.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.oooninja.com/2008/02/batch-command-line-file-conversion-with.html PyODConverter Daemon]&lt;br /&gt;
|&lt;br /&gt;
|Provides support for Normalization via Open-Office.&lt;br /&gt;
|Posted by Andrew Z at Wednesday, February 27, 2008 [http://www.artofsolving.com/opensource/pyodconverter LGPG]&lt;br /&gt;
|-&lt;br /&gt;
|[http://pypi.python.org/pypi/poster/0.5 Poster]&lt;br /&gt;
|0.5&lt;br /&gt;
|Provides support for both streaming POST requests as well as multipart/form-data encoding of string or file parameters&lt;br /&gt;
|MIT License&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/python-lxml Python-lxml]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/readpst ReadPST/LibPST]&lt;br /&gt;
|0.6.52&lt;br /&gt;
|convert PST (MS Outlook Personal Folders) files to mbox and other formats&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://us1.samba.org/samba/ Samba/CIFS ]&lt;br /&gt;
|3.3.2&lt;br /&gt;
|Linux to Windows interface; allows applications in the Ubuntu virtual appliance environment to use network storage made available via the Windows CIFS protocol&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/md5deep sha256]&lt;br /&gt;
|&lt;br /&gt;
|Sha256 Checksum generation and verification scripts&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.xfce.org/projects/thunar/ Thunar file manager]&lt;br /&gt;
|1.2.3&lt;br /&gt;
|Graphical file manager interface which end-user can use to move digital objects or trigger processing scripts.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/karmic/en/man1/uuid.1.html UUID]&lt;br /&gt;
|1.6.2&lt;br /&gt;
|command line interface (CLI) for the generation of DCE 1.1, ISO/IEC 11578:1996 and IETF RFC-4122 compliant Universally Unique Identifier (UUID).&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.xubuntu.org/ XUbuntu Linux]&lt;br /&gt;
|12.04&lt;br /&gt;
|Interface with computing hardware. Ubuntu Linux using Xfce desktop.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/hardy/man1/zip.1.html Zip]&lt;br /&gt;
|3.0&lt;br /&gt;
|Utility called by Bagit to create AIP package&lt;br /&gt;
|Info-Zip license: &amp;quot;Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.djangoproject.com/ Django]&lt;br /&gt;
|1.4.5&lt;br /&gt;
|Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://gearman.org/ Gearman]&lt;br /&gt;
|0.27&lt;br /&gt;
|Gearman provides a generic application framework to farm out work to other machines or processes that are better suited to do the work.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://p7zip.sourceforge.net/ p7zip]&lt;br /&gt;
|9.20.1&lt;br /&gt;
|7-Zip is a file archiver with a high compression ratio. (LZMA)&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Release_0.10-beta&amp;diff=8619</id>
		<title>Release 0.10-beta</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Release_0.10-beta&amp;diff=8619"/>
		<updated>2013-07-09T19:21:26Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; [[Software]] &amp;gt; Release 0.10-beta&lt;br /&gt;
&lt;br /&gt;
Archivematica integrates a suite of free and open-source tools that allows users to process digital objects from ingest to access in compliance with the ISO-OAIS functional model. In addition to the core Archivematica  which is released under AGPL v3 license, the following tools are bundled with Archivematica [[Archivematica_0.10_Release_Notes|0.10-beta]]:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;10&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=90%&lt;br /&gt;
|-&lt;br /&gt;
|- style=&amp;quot;background-color:#cccccc;&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:20%&amp;quot;|'''Tool'''&lt;br /&gt;
!style=&amp;quot;width:10%&amp;quot;|'''Version'''&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|'''Description'''&lt;br /&gt;
!style=&amp;quot;width:40%&amp;quot;|'''License'''&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.digitalpreservation.gov/library/challenge/data-transfer.html BagIt]&lt;br /&gt;
|4.4-ppa0&lt;br /&gt;
|Standard and script to package digital objects and metadata for archival storage&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.clamav.net/ Clam AV (anti-virus)]&lt;br /&gt;
|0.97.5 &lt;br /&gt;
|Anti-virus toolkit for UNIX&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://en.wikipedia.org/wiki/Ext4 EXT4 filesystem]&lt;br /&gt;
|12.04&lt;br /&gt;
|Local storage, organization and batch processing of digital objects within the virtual appliance&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.elasticsearch.org/ ElasticSearch]&lt;br /&gt;
|0.19.0&lt;br /&gt;
|Indexing and search&lt;br /&gt;
|Apache License 2.0&lt;br /&gt;
|-&lt;br /&gt;
|[http://ffmpeg.org/ FFmpeg]&lt;br /&gt;
|0.8.3&lt;br /&gt;
|Converts a wide variety of audio and video formats&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://code.google.com/p/fits/ File Information Tool Set (FITS)]&lt;br /&gt;
|0.6.1&lt;br /&gt;
|File format identification and validation software integration tool&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ica-atom.org ICA-AtoM]&lt;br /&gt;
|1.3&lt;br /&gt;
|Web-based archival description and access tool &lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imagemagick.org/script/index.php Imagemagick]&lt;br /&gt;
|0.6.6.9.7&lt;br /&gt;
|Converts a wide variety of bitmap images&lt;br /&gt;
|GPL compatible [http://www.imagemagick.org/script/license.php Imagemagick license]&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.inkscape.org/ Inkscape]&lt;br /&gt;
|0.48.3.1&lt;br /&gt;
|Converts vector images to Scalable Vector Graphic (SVG) format&lt;br /&gt;
|GNU General Public License (GPL) version 2&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.libreoffice.org/ LibreOffice&lt;br /&gt;
|3.5.4&lt;br /&gt;
| Provides support for Normalization of documents.&lt;br /&gt;
| LGPLv3&lt;br /&gt;
|-&lt;br /&gt;
|[http://en.wikipedia.org/wiki/Md5 MD5]&lt;br /&gt;
|7.4&lt;br /&gt;
|MD5 Checksum generation and verification scripts&lt;br /&gt;
|&amp;quot;This program is a work of the US Government. In accordance with 17 USC 105, copyright protection is not available for any work of the US government. As such this code is considered public domain.&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[http://linux.about.com/cs/linux101/g/nfscommon.htm NFS-common]&lt;br /&gt;
|1.1.4&lt;br /&gt;
|Network File System Access - allows access to files on network storage devices.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.oooninja.com/2008/02/batch-command-line-file-conversion-with.html PyODConverter Daemon]&lt;br /&gt;
|&lt;br /&gt;
|Provides support for Normalization via Open-Office.&lt;br /&gt;
|Posted by Andrew Z at Wednesday, February 27, 2008 [http://www.artofsolving.com/opensource/pyodconverter LGPG]&lt;br /&gt;
|-&lt;br /&gt;
|[http://pypi.python.org/pypi/poster/0.5 Poster]&lt;br /&gt;
|0.5&lt;br /&gt;
|Provides support for both streaming POST requests as well as multipart/form-data encoding of string or file parameters&lt;br /&gt;
|MIT License&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/python-lxml Python-lxml]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/readpst ReadPST/LibPST]&lt;br /&gt;
|0.6.52&lt;br /&gt;
|convert PST (MS Outlook Personal Folders) files to mbox and other formats&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://us1.samba.org/samba/ Samba/CIFS ]&lt;br /&gt;
|3.3.2&lt;br /&gt;
|Linux to Windows interface; allows applications in the Ubuntu virtual appliance environment to use network storage made available via the Windows CIFS protocol&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/md5deep sha256]&lt;br /&gt;
|&lt;br /&gt;
|Sha256 Checksum generation and verification scripts&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.xfce.org/projects/thunar/ Thunar file manager]&lt;br /&gt;
|1.2.3&lt;br /&gt;
|Graphical file manager interface which end-user can use to move digital objects or trigger processing scripts.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/karmic/en/man1/uuid.1.html UUID]&lt;br /&gt;
|1.6.2&lt;br /&gt;
|command line interface (CLI) for the generation of DCE 1.1, ISO/IEC 11578:1996 and IETF RFC-4122 compliant Universally Unique Identifier (UUID).&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.xubuntu.org/ XUbuntu Linux]&lt;br /&gt;
|12.04&lt;br /&gt;
|Interface with computing hardware. Ubuntu Linux using Xfce desktop.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/hardy/man1/zip.1.html Zip]&lt;br /&gt;
|3.0&lt;br /&gt;
|Utility called by Bagit to create AIP package&lt;br /&gt;
|Info-Zip license: &amp;quot;Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.djangoproject.com/ Django]&lt;br /&gt;
|1.3.1&lt;br /&gt;
|Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://gearman.org/ Gearman]&lt;br /&gt;
|0.27&lt;br /&gt;
|Gearman provides a generic application framework to farm out work to other machines or processes that are better suited to do the work.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://p7zip.sourceforge.net/ p7zip]&lt;br /&gt;
|9.20.1&lt;br /&gt;
|7-Zip is a file archiver with a high compression ratio. (LZMA)&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Meeting_20130626&amp;diff=8591</id>
		<title>Meeting 20130626</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Meeting_20130626&amp;diff=8591"/>
		<updated>2013-06-26T17:39:43Z</updated>

		<summary type="html">&lt;p&gt;Austin: Created page with &amp;quot;=Archivematica=    ==Development== * Mike C did a lot of work on the Archivists Toolkit gui * Courtney put together some requirements for Digital forensics image ingest: https...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Archivematica=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Development==&lt;br /&gt;
* Mike C did a lot of work on the Archivists Toolkit gui&lt;br /&gt;
* Courtney put together some requirements for Digital forensics image ingest: https://www.archivematica.org/wiki/Digital_forensics_image_ingest&lt;br /&gt;
* JustinS updated RAC's dev instance for testing + lots of dev work on that(rac-dev now has a complete Archivists Toolkit integration deployed)&lt;br /&gt;
* ui will need a few more tweaks when Mike is back next week&lt;br /&gt;
* Joseph did some work trying to finish up the DIP from AIP workflows.&lt;br /&gt;
* Holly worked mostly on storage service and FPR stuff.  #5259 , #4852 &lt;br /&gt;
* Courtney added a couple of new requirementsto the Advanced AIP index search, which is part of the work for Yale's forensic image workflow&lt;br /&gt;
* Holly started working on a snazzier version of the FPR REST API, with lots of help from Justin ( #5272 )&lt;br /&gt;
* Joseph been looking over the requirements for the disk images, and have some concerns I'm looking into. Namely: abilities to extract files when there is encryption...&lt;br /&gt;
* Justin did some work on #5159 - AIP Pointer file&lt;br /&gt;
* Holly did bits of work on getting the storage service aware of NFS (#5256), verifying filesystems exist (#5258) and a GUI for the storage service (#5260)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deployment==&lt;br /&gt;
*Lots of tech support for a lot of different clients&lt;br /&gt;
&lt;br /&gt;
==Documentation==&lt;br /&gt;
*&lt;br /&gt;
*&lt;br /&gt;
*&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Meetings]]&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Install-0.10-beta&amp;diff=8337</id>
		<title>Install-0.10-beta</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Install-0.10-beta&amp;diff=8337"/>
		<updated>2013-05-16T17:15:47Z</updated>

		<summary type="html">&lt;p&gt;Austin: /* Virtual appliance */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; [[Software]] &amp;gt; [[Install]] &amp;gt; Release 0.10-beta&lt;br /&gt;
&lt;br /&gt;
There are multiple ways to install and use Archivematica 0.10-beta. Once it is installed, consult the [[User_Manual| user manual]] for user instructions.&lt;br /&gt;
&lt;br /&gt;
= Virtual appliance =&lt;br /&gt;
&lt;br /&gt;
1. What is a [[wikipedia:Virtual appliance|virtual appliance]]?&lt;br /&gt;
&lt;br /&gt;
2. Download your preferred virtual appliance format (building/uploading in progress):&lt;br /&gt;
&lt;br /&gt;
* VirtualBox, VMware: [https://www.archivematica.org/download/archivematica-0.10-beta.vmdk.tbz archivematica-0.10-beta.vmdk.tbz] (2.3G)&lt;br /&gt;
** European mirror:  archivematica-0.10-beta.vmdk.tbz (soon) (2.3G)&lt;br /&gt;
** Torrent file (soon)&lt;br /&gt;
&lt;br /&gt;
To run a checksum on the .tbz file, select one of the following: ([http://archivematica.org/downloads/sha256.list sha256], [http://archivematica.org/downloads/md5sum.list md5sum]).&lt;br /&gt;
&lt;br /&gt;
3. If you don't already have a virtual machine player, we recommend VirtualBox. See these [[Virtual appliance instructions]] on how to load your Archivematica virtual appliance using VirtualBox.&lt;br /&gt;
&lt;br /&gt;
= Advanced =&lt;br /&gt;
&lt;br /&gt;
This options requires experience in Linux.&lt;br /&gt;
* Install from Packages on Ubuntu Linux&lt;br /&gt;
** Packages allow a user to quickly deploy a multinode environment,  [http://archivematica.org/wiki/index.php?title=Multi_Node_Install How to install packages]&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Install-0.10-beta&amp;diff=8094</id>
		<title>Install-0.10-beta</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Install-0.10-beta&amp;diff=8094"/>
		<updated>2013-05-01T00:06:07Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; [[Software]] &amp;gt; [[Install]] &amp;gt; Release 0.10-beta&lt;br /&gt;
&lt;br /&gt;
There are multiple ways to install and use Archivematica 0.10-beta. Once it is installed, consult the [[User_Manual]] for user instructions.&lt;br /&gt;
&lt;br /&gt;
= Virtual appliance =&lt;br /&gt;
&lt;br /&gt;
1. What is a [[wikipedia:Virtual appliance|virtual appliance]]?&lt;br /&gt;
&lt;br /&gt;
2. Download your preferred virtual appliance format(building/uploading in progress):&lt;br /&gt;
&lt;br /&gt;
* VirtualBox, VMware: archivematica-0.10-beta.vmdk.tbz(soon) (1.8G)&lt;br /&gt;
** European mirror:  archivematica-0.10-beta.vmdk.tbz(soon) (1.8G)&lt;br /&gt;
** Torrent file(soon)&lt;br /&gt;
&lt;br /&gt;
To run a checksum on the .tbz file, select one of the following: ([http://archivematica.org/downloads/sha256.list sha256], [http://archivematica.org/downloads/md5sum.list md5sum]).&lt;br /&gt;
&lt;br /&gt;
3. If you don't already have a virtual machine player, we recommend VirtualBox. See these [[Virtual appliance instructions]] on how to load your Archivematica virtual appliance using VirtualBox.&lt;br /&gt;
&lt;br /&gt;
= Advanced =&lt;br /&gt;
&lt;br /&gt;
This options requires experience in linux&lt;br /&gt;
* Install from Packages on ubuntu&lt;br /&gt;
** Packages allow a user to quickly deploy a multinode environment,  [http://archivematica.org/wiki/index.php?title=Multi_Node_Install How to install packages]&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Install-0.10-beta&amp;diff=8093</id>
		<title>Install-0.10-beta</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Install-0.10-beta&amp;diff=8093"/>
		<updated>2013-05-01T00:02:58Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; [[Software]] &amp;gt; [[Install]] &amp;gt; Release 0.10-beta&lt;br /&gt;
&lt;br /&gt;
There are multiple ways to install and use Archivematica 0.10-beta. Once it is installed, consult the [[User_Manual]] for user instructions.&lt;br /&gt;
&lt;br /&gt;
= Virtual appliance =&lt;br /&gt;
&lt;br /&gt;
1. What is a [[wikipedia:Virtual appliance|virtual appliance]]?&lt;br /&gt;
&lt;br /&gt;
2. Download your preferred virtual appliance format:&lt;br /&gt;
&lt;br /&gt;
* VirtualBox, VMware: [http://archivematica.org/downloads/archivematica-0.10-beta.vmdk.tbz archivematica-0.10-beta.vmdk.tbz] (1.8G)&lt;br /&gt;
** European mirror: [http://europe.artefactual.com/archivematica/archivematica-0.10-beta.vmdk.tbz archivematica-0.10-beta.vmdk.tbz] (1.8G)&lt;br /&gt;
** [http://www.archivematica.org/download/archivematica-0.10-beta.vmdk.torrent Torrent file]&lt;br /&gt;
&lt;br /&gt;
To run a checksum on the .tbz file, select one of the following: ([http://archivematica.org/downloads/sha256.list sha256], [http://archivematica.org/downloads/md5sum.list md5sum]).&lt;br /&gt;
&lt;br /&gt;
3. If you don't already have a virtual machine player, we recommend VirtualBox. See these [[Virtual appliance instructions]] on how to load your Archivematica virtual appliance using VirtualBox.&lt;br /&gt;
&lt;br /&gt;
= Advanced =&lt;br /&gt;
&lt;br /&gt;
This options requires experience in linux&lt;br /&gt;
* Install from Packages on ubuntu&lt;br /&gt;
** Packages allow a user to quickly deploy a multinode environment,  [http://archivematica.org/wiki/index.php?title=Multi_Node_Install How to install packages]&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Install-0.10-beta&amp;diff=8091</id>
		<title>Install-0.10-beta</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Install-0.10-beta&amp;diff=8091"/>
		<updated>2013-05-01T00:02:17Z</updated>

		<summary type="html">&lt;p&gt;Austin: Created page with &amp;quot;Main Page &amp;gt; Software &amp;gt; Install &amp;gt; Release 0.10-beta  There are multiple ways to install and use Archivematica 0.10-beta. Once it is installed, consult the [[User_Ma...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; [[Software]] &amp;gt; [[Install]] &amp;gt; Release 0.10-beta&lt;br /&gt;
&lt;br /&gt;
There are multiple ways to install and use Archivematica 0.10-beta. Once it is installed, consult the [[User_Manual]] for user instructions.&lt;br /&gt;
&lt;br /&gt;
= Virtual appliance =&lt;br /&gt;
&lt;br /&gt;
1. What is a [[wikipedia:Virtual appliance|virtual appliance]]?&lt;br /&gt;
&lt;br /&gt;
2. Download your preferred virtual appliance format:&lt;br /&gt;
&lt;br /&gt;
* VirtualBox, VMware: [http://archivematica.org/downloads/archivematica-0.10-beta.vmdk.tbz archivematica-0.10-beta.vmdk.tbz] (1.8G)&lt;br /&gt;
** European mirror: [http://europe.artefactual.com/archivematica/archivematica-0.10-beta.vmdk.tbz archivematica-0.10-beta.vmdk.tbz] (1.8G)&lt;br /&gt;
** [http://www.archivematica.org/download/archivematica-0.9-beta.vmdk.torrent Torrent file]&lt;br /&gt;
&lt;br /&gt;
To run a checksum on the .tbz file, select one of the following: ([http://archivematica.org/downloads/sha256.list sha256], [http://archivematica.org/downloads/md5sum.list md5sum]).&lt;br /&gt;
&lt;br /&gt;
3. If you don't already have a virtual machine player, we recommend VirtualBox. See these [[Virtual appliance instructions]] on how to load your Archivematica virtual appliance using VirtualBox.&lt;br /&gt;
&lt;br /&gt;
= Advanced =&lt;br /&gt;
&lt;br /&gt;
This options requires experience in linux&lt;br /&gt;
* Install from Packages on ubuntu&lt;br /&gt;
** Packages allow a user to quickly deploy a multinode environment,  [http://archivematica.org/wiki/index.php?title=Multi_Node_Install How to install packages]&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Virtual_appliance_instructions&amp;diff=7688</id>
		<title>Virtual appliance instructions</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Virtual_appliance_instructions&amp;diff=7688"/>
		<updated>2013-02-28T19:33:49Z</updated>

		<summary type="html">&lt;p&gt;Austin: /* Permissions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; Virtual appliance instructions&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Distribution as a Virtual Appliance =&lt;br /&gt;
&lt;br /&gt;
Archivematica is distributed as a [http://en.wikipedia.org/wiki/Virtual_appliance virtual appliance] which integrates a number of software tools into one common virtual machine environment. A virtual appliance is one file containing a minimal operating system and server software. You can &amp;quot;play&amp;quot; this file with a free virtual machine player like VMware Player or Sun VirtualBox.&lt;br /&gt;
&lt;br /&gt;
This allows Archivematica to be run on almost any workstation or server hardware without compromising the host machine's operating system or application software. At the same time, the virtual appliance is able to interact with any number of networked and/or external storage devices to allow for the flexible implementation of an archival storage and backup strategy.&lt;br /&gt;
&lt;br /&gt;
*See the [[software]] page for a full list of the tools used in each system release. &lt;br /&gt;
*See the [[documentation]] page for instructions on how to use the virtual appliance to accomplish the system [[requirements]].&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Minimum hardware requirements=&lt;br /&gt;
&lt;br /&gt;
*Processor: Intel core 2 or AMD Opteron&lt;br /&gt;
*Memory: 1 GB for the virtual appliance ('guest') operating system, i.e: if the 'host' operating system has 2 GB available, 1 GB needs to allocated to the 'guest'. Depending on the operating system, machines with less than 2 GB total memory will likely have trouble running Archivematica. Note that the default allocation setting in Archivematica is 512 MB; however, the more that is allocated the better the system will run. The setting can be changed once Archivematica is running.&lt;br /&gt;
*Hard Drive space: a minimum of 3 GB to test the system on a small scale (i.e. use the available test files or import a small set of test files); 12 GB or more for larger implementations&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Instructions for using the VM image in VirtualBox=&lt;br /&gt;
&lt;br /&gt;
==Install Oracle Virtual Box==&lt;br /&gt;
&lt;br /&gt;
*Archivematica uses the [http://en.wikipedia.org/wiki/Open_Virtualization_Format Open Virtualization Format] and has been tested with the free and open-source [http://www.sun.com/software/products/virtualbox/index.jsp Oracle Virtual Box ] virtualization platform. &lt;br /&gt;
*There are VirtualBox versions available for every major operating system.&lt;br /&gt;
**Download and install Oracle VirtualBox: [http://dlc.sun.com/virtualbox/vboxdownload.html http://dlc.sun.com/virtualbox/vboxdownload.html]. Note that if you are installing VirtualBox on Windows you will have to click through a number of warnings that you are attempting to install non-verified software.&lt;br /&gt;
&lt;br /&gt;
==Download Archivematica ==&lt;br /&gt;
&lt;br /&gt;
*[http://archivematica.org/download Download] the latest version of the Archivematica appliance.&lt;br /&gt;
*Unzip the Archivematica file. This should result in the following file appearing in an Archivematica folder:&lt;br /&gt;
**archivematica-0.9-beta.vmdk&lt;br /&gt;
[[File:extracting_archivmatica-vmdk-tbz.png]]&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;note&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Remember:&amp;lt;/strong&amp;gt;&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
Be sure to take note of what location on your computer you choose to extract the file, so you can browse to it later when setting up the virtual appliance (instructions below).&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Start Archivematica virtual appliance ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Open the Oracle VirtualBox virtual machine.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Click New&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Click Next&amp;lt;/li&amp;gt;&lt;br /&gt;
[[File:new_next_VMWizard.png]]&lt;br /&gt;
&amp;lt;li&amp;gt;Set the name and type OS type (archivematica, linux-ubuntu)&amp;lt;/li&amp;gt;&lt;br /&gt;
[[File:2_VM_Name_OS_type.png]]&lt;br /&gt;
&amp;lt;li&amp;gt;Click Continue / Next&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Set Memory to 1 GB (1024 MB) or higher&amp;lt;/li&amp;gt;&lt;br /&gt;
[[File:3_set_memory.png]]&lt;br /&gt;
&amp;lt;li&amp;gt;Click Continue&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Select 'Use existing hard disk' and browse to and select archivematica-0.9-beta.vmdk&amp;lt;/li&amp;gt;&lt;br /&gt;
[[File:4_use_exist_hardisk_select_archivematica.png]]&lt;br /&gt;
&amp;lt;li&amp;gt;Click Continue. Review Summary and Click Create&amp;lt;/li&amp;gt;&lt;br /&gt;
[[File:5_review_click_create.png]]&lt;br /&gt;
&amp;lt;li&amp;gt;The virtual box will open with Archivematica 0.9-beta listed on the left-hand side (in some cases &amp;quot;archivematica&amp;quot; will be listed on the left-hand side). Select Archivematica 0.9-beta and click Start (the green arrow in the menu).&amp;lt;/li&amp;gt;&lt;br /&gt;
[[File:6_start_archivematica_VM.png]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;note&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;USB Warning at Startup?&amp;lt;/strong&amp;gt;&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
[[File:error_USB_setup.png]]&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Depending on the setup and configuration of your computer peripherals, you may get this warning the first time you try to launch the Archivematica virtual appliance. Don't worry - it has nothing to do with the installation. We suggest simply checking &amp;quot;Don't show this message again,&amp;quot; clicking OK, and proceeding. If you do want some guidance on troubleshooting USB detection in the Virtualbox, you can look at Oracle's troubleshooting instructions for USB detection in Linux [http://www.virtualbox.org/manual/ch12.html#ts_usb-linux here].&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;As the virtual appliance starts, you may have to select your machine from the list of available options. Hit return.&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
[[File:inside_the_VM.png]]&lt;br /&gt;
&amp;lt;li&amp;gt;The image should launch, showing you a Linux Ubuntu desktop Login screen using the user name ''demo'' and the password ''demo''.  (on slower systems hitting return may cause the windows to reset, this is being addressed)&amp;lt;/li&amp;gt;&lt;br /&gt;
[[File:archivematica_virtualapp_login.png]]&lt;br /&gt;
&amp;lt;li&amp;gt;From here it is suggested that you use your external browser to access the archivematica dashboard (see '''Ubuntu login reset issue''', below)&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Log into the Archivematica dashboard using the user name ''demo'' and the password ''demo''. &lt;br /&gt;
* If your mouse pointer does not appear to be working in the virtual machine, click the letter f while holding down the right-hand control button. Do the same thing to switch back to using your mouse pointer outside the virtual box.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;Congratulations, you have a running copy of Archivematica! See [[Documentation]] for instructions on how to use the software.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;note&amp;quot;&amp;gt;&lt;br /&gt;
'''Important:'''&amp;lt;/br&amp;gt; Archivematica may appear to crash when used as a virtual appliance. See Ubuntu login reset issue, below.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Ubuntu login reset issue==&lt;br /&gt;
*Due to an issue with the Ubuntu 12.04.1 desktop, Archivematica may appear to crash when in use. The user will see a brief display of dingbat characters in the terminal, followed by a return to the Ubuntu login. Logging in will restore the dashboard and the user can continue processing. To avoid this issue, you can add settings to allow the Archivematica dashboard and ICA-AtoM to be accessed from your web browser, outside of the virtual machine. The steps are as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; Shut the virtual machine down if it is open.&lt;br /&gt;
&amp;lt;li&amp;gt; In virtualbox select the archivematica virtual machine and click on Settings&lt;br /&gt;
&amp;lt;li&amp;gt; Click the 'Network' tab&lt;br /&gt;
&amp;lt;li&amp;gt; 'Adapter 1' should be set to NAT by default (this allows you to get to the internet); click on 'Adapter 2' tab&lt;br /&gt;
&amp;lt;li&amp;gt; Click enable adapter and set attached to 'host only adapter'&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
[[File:selecting_host_only_adapter.png]]&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; Start the virtual machine&lt;br /&gt;
&amp;lt;li&amp;gt; In your web browser, go to the url http://192.168.56.101/transfer/ (there is no need to login to the Archivematica virtual machine first). For ICA-AtoM, go to http://192.168.56.101/ica-atom/. &lt;br /&gt;
&amp;lt;li&amp;gt;Congratulations! You can now use both Archivematica and ICA-AtoM via your web browser.&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Import files into virtual appliance (optional)==&lt;br /&gt;
If you want to use your own files in addition to the sample data provided, proceed with the following directions:&lt;br /&gt;
&lt;br /&gt;
===Permissions===&lt;br /&gt;
Users that are depositing files via ssh should be added to the archivematica group.  &lt;br /&gt;
&lt;br /&gt;
this can be done with: &lt;br /&gt;
&amp;lt;code&amp;gt;useradd -G archivematica Username&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the Virtual Machine, the demo user is already apart of this group.&lt;br /&gt;
&lt;br /&gt;
===Using SFTP===&lt;br /&gt;
&lt;br /&gt;
It's possible to use [http://en.wikipedia.org/wiki/SSH_File_Transfer_Protocol SSH File Transfer Protocol] (SFTP), through an [http://en.wikipedia.org/wiki/FTP_client FTP client] to upload your own content from your computer to the virtual desktop where Archivematica is running:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; While in virtualbox right click the archivematica virtualmachine and click settings&lt;br /&gt;
&amp;lt;li&amp;gt; Click the 'Network' tab&lt;br /&gt;
&amp;lt;li&amp;gt; 'Adapter 1' should be set to NAT by default(this allows you to get to the internet), click on 'Adapter 2' tab&lt;br /&gt;
&amp;lt;li&amp;gt; Click enable adapter and set attached to 'host only adapter'&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
[[File:Selecting_host_only_adapter.png]]&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; Power up the archivematica virtualmachine&lt;br /&gt;
&amp;lt;li&amp;gt; Once in the xubuntu interface goto Applications &amp;gt; Accessories &amp;gt; Terminal&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;note&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Having trouble locating the Applications menu?&amp;lt;strong&amp;gt;&amp;lt;/br&amp;gt;&lt;br /&gt;
You can find applications by clicking on the little blue logo in the top left-hand corner of the virtual desktop: [[File:applications_menu_icon.png]]. Alternately, you can access the terminal by simply right-clicking anywhere in the virtual desktop, and selecting &amp;quot;Open terminal here.&amp;quot;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:applications_accessories_terminal.png]]&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt; Type the following in terminal  (the password is demo) - this will take a minute and requires internet&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo aptitude install ssh &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;note&amp;quot;&amp;gt; &amp;lt;strong&amp;gt;Update packages?&amp;lt;/strong&amp;gt;&amp;lt;/br&amp;gt;&lt;br /&gt;
If the terminal asks you to update and/or install new packages, do so. Hit &amp;quot;y&amp;quot; and return. &amp;lt;/br&amp;gt;&lt;br /&gt;
[[File:package_updates.png]]&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt; type &amp;quot;ifconfig&amp;quot; in the terminal. You should see an IP address like '192.168.56.101'  (likely eth1 interface) &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ifconfig&lt;br /&gt;
eth1      Link encap:Ethernet  HWaddr fe:54:00:9d:92:64  &lt;br /&gt;
          inet addr:192.168.56.101  Bcast:192.168.56.255  Mask:255.255.255.0&lt;br /&gt;
          inet6 addr: fe80::1c6b:7bff:fe07:ddb6/64 Scope:Link&lt;br /&gt;
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1&lt;br /&gt;
          RX packets:24 errors:0 dropped:0 overruns:0 frame:0&lt;br /&gt;
          TX packets:45 errors:0 dropped:0 overruns:0 carrier:0&lt;br /&gt;
          collisions:0 txqueuelen:0 &lt;br /&gt;
          RX bytes:1400 (1.4 KB)  TX bytes:5815 (5.8 KB)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; From here, your machine should be connectable via SFTP.  Download an SFTP client; a popular open-source option is [http://filezilla-project.org/ FileZilla], which works on Linux and Windows.  If you are using Apple's OSX or higher, [http://cyberduck.ch/ Cyberduck] is reported to be a decent open-source SFTP client. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;note&amp;quot;&amp;gt; &amp;lt;strong&amp;gt;SFTP 101: Whats am I setting up here?&amp;lt;/strong&amp;gt;&amp;lt;/br&amp;gt;&lt;br /&gt;
[http://en.wikipedia.org/wiki/File_Transfer_Protocol File Transfer Protoco]l (FTP) &amp;quot;is a standard network protocol used to transfer files from one host or to another host over a TCP-based network, such as the Internet&amp;quot; (Wikipedia). In this case, you will be using SFTP to transfer your files, which is an FTP protocol that uses a [http://en.wikipedia.org/wiki/Secure_Shell Secure Shell (SSH)] extension for more secure data transmission. When you use FizeZilla or Cyberduck, you are using an [http://en.wikipedia.org/wiki/Comparison_of_FTP_client_software FTP client]that provides a graphical user interface ([http://en.wikipedia.org/wiki/Graphical_user_interface GUI]) to allow you to move files easily from one host (in this case, your computer) to another (the virtual desktop).&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt; The connection information should be as follows&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
username: demo&lt;br /&gt;
password: demo&lt;br /&gt;
IP/Hostname: 192.168.56.101 &amp;lt; results of ifconfig likely '192.168.56.*'&lt;br /&gt;
port: 22&lt;br /&gt;
destination folder:   /home/demo/ &amp;lt; if this is not set you will have to navigate to /home/demo directory &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
* Here is an example of setting up the connection information in &amp;lt;strong&amp;gt;FileZilla&amp;lt;/strong&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
[[File:FileZilla_SFTP.png]]&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Note that the username, password, and host are all input into the top of the FileZilla browser.&lt;br /&gt;
* In FileZilla, your home computer's directory is displayed on the left hand side, while Archivematica's virtual appliance directory is on the right hand side. Once the connection is established, you can drag and drop content from one side to the other to upload content.&lt;br /&gt;
* If you require more support using FileZilla, please visit their documentation wiki [http://wiki.filezilla-project.org/Main_Page here].&lt;br /&gt;
* If you have dragged your content to the  &amp;lt;strong&amp;gt;/home/demo &amp;lt;/strong&amp;gt; folder, you can find  your content in the Archivematica virtual appliance window by clicking on the &amp;quot;Home&amp;quot; icon on the desktop:&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
[[File:home_demo_filezilla.png]]&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
* Here is an example of setting up the connection information in &amp;lt;strong&amp;gt;Cyberduck&amp;lt;/strong&amp;gt;:&lt;br /&gt;
[[File:CDconnect.png]]&lt;br /&gt;
*Cyberduck will only show one directory, so you may have to click on the Action button and select &amp;quot;Upload&amp;quot; to change the display and reveal Archivematica's directory.&lt;br /&gt;
[[File:CDhome-demo.png]]&lt;br /&gt;
*You will need to create a new folder inside an existing Media folder to upload your media files into. For example, double click on the arrow to open the &amp;quot;Pictures&amp;quot; folder and then create new folder in it and upload your digital images.&lt;br /&gt;
[[File:CDuploadfolder.png]]&lt;br /&gt;
*All further actions will occur in the &amp;lt;b&amp;gt;Archivematica dashboard&amp;lt;/b&amp;gt; and instructions can be found in the User Manual under [https://www.archivematica.org/wiki/UM_transfer Transfer].&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Turn off virtual machine==&lt;br /&gt;
*At the end of your session, turn off the VirtualBox virtual machine by going to Machine &amp;gt; Close &amp;gt; and selecting one of the three shutdown options. It is best to choose either &amp;quot;Save the machine state&amp;quot; or &amp;quot;Send the shutdown signal&amp;quot;. &lt;br /&gt;
#:&lt;br /&gt;
[[file:archivematica_shutdown.png]]&lt;br /&gt;
#:&lt;br /&gt;
[[file:archivematica_shutdown2.png]]&lt;br /&gt;
#:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is from the VirtualBox help manual:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;3.4.3. Saving the state of the machine&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;When you click on the &amp;quot;Close&amp;quot; button of your virtual machine window (at the top right of the window, just like you would close any other window on your system) (or press the Host key together with &amp;quot;Q&amp;quot;), VirtualBox asks you whether you want to &amp;quot;save&amp;quot; or &amp;quot;power off&amp;quot; the VM.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;The difference between these three options is crucial. They mean:&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;Save the machine state: With this option, VirtualBox &amp;quot;freezes&amp;quot; the virtual machine by completely saving its state to your local disk. When you later resume the VM (by again clicking the &amp;quot;Start&amp;quot; button in the VirtualBox main window), you will find that the VM continues exactly where it was left off. All your programs will still be open, and your computer resumes operation.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;Saving the state of a virtual machine is thus in some ways similar to suspending a laptop computer (e.g. by closing its lid).&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Send the shutdown signal. This will send an ACPI shutdown signal to the virtual machine, which has the same effect as if you had pressed the power button on a real computer. So long as a fairly modern operating system is installed and running in the VM, this should trigger a proper shutdown mechanism in the VM.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Power off the machine: With this option, VirtualBox also stops running the virtual machine, but without saving its state.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;This is equivalent to pulling the power plug on a real computer without shutting it down properly. If you start the machine again after powering it off, your operating system will have to reboot completely and may begin a lengthy check of its (virtual) system disks.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;As a result, this should not normally be done, since it can potentially cause data loss or an inconsistent state of the guest system on disk.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;The &amp;quot;Discard&amp;quot; button in the main VirtualBox window discards a virtual machine's saved state. This has the same effect as powering it off, and the same warnings apply.&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Virtual_appliance_instructions&amp;diff=7687</id>
		<title>Virtual appliance instructions</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Virtual_appliance_instructions&amp;diff=7687"/>
		<updated>2013-02-28T19:33:33Z</updated>

		<summary type="html">&lt;p&gt;Austin: /* Import files into virtual appliance (optional) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; Virtual appliance instructions&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Distribution as a Virtual Appliance =&lt;br /&gt;
&lt;br /&gt;
Archivematica is distributed as a [http://en.wikipedia.org/wiki/Virtual_appliance virtual appliance] which integrates a number of software tools into one common virtual machine environment. A virtual appliance is one file containing a minimal operating system and server software. You can &amp;quot;play&amp;quot; this file with a free virtual machine player like VMware Player or Sun VirtualBox.&lt;br /&gt;
&lt;br /&gt;
This allows Archivematica to be run on almost any workstation or server hardware without compromising the host machine's operating system or application software. At the same time, the virtual appliance is able to interact with any number of networked and/or external storage devices to allow for the flexible implementation of an archival storage and backup strategy.&lt;br /&gt;
&lt;br /&gt;
*See the [[software]] page for a full list of the tools used in each system release. &lt;br /&gt;
*See the [[documentation]] page for instructions on how to use the virtual appliance to accomplish the system [[requirements]].&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Minimum hardware requirements=&lt;br /&gt;
&lt;br /&gt;
*Processor: Intel core 2 or AMD Opteron&lt;br /&gt;
*Memory: 1 GB for the virtual appliance ('guest') operating system, i.e: if the 'host' operating system has 2 GB available, 1 GB needs to allocated to the 'guest'. Depending on the operating system, machines with less than 2 GB total memory will likely have trouble running Archivematica. Note that the default allocation setting in Archivematica is 512 MB; however, the more that is allocated the better the system will run. The setting can be changed once Archivematica is running.&lt;br /&gt;
*Hard Drive space: a minimum of 3 GB to test the system on a small scale (i.e. use the available test files or import a small set of test files); 12 GB or more for larger implementations&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Instructions for using the VM image in VirtualBox=&lt;br /&gt;
&lt;br /&gt;
==Install Oracle Virtual Box==&lt;br /&gt;
&lt;br /&gt;
*Archivematica uses the [http://en.wikipedia.org/wiki/Open_Virtualization_Format Open Virtualization Format] and has been tested with the free and open-source [http://www.sun.com/software/products/virtualbox/index.jsp Oracle Virtual Box ] virtualization platform. &lt;br /&gt;
*There are VirtualBox versions available for every major operating system.&lt;br /&gt;
**Download and install Oracle VirtualBox: [http://dlc.sun.com/virtualbox/vboxdownload.html http://dlc.sun.com/virtualbox/vboxdownload.html]. Note that if you are installing VirtualBox on Windows you will have to click through a number of warnings that you are attempting to install non-verified software.&lt;br /&gt;
&lt;br /&gt;
==Download Archivematica ==&lt;br /&gt;
&lt;br /&gt;
*[http://archivematica.org/download Download] the latest version of the Archivematica appliance.&lt;br /&gt;
*Unzip the Archivematica file. This should result in the following file appearing in an Archivematica folder:&lt;br /&gt;
**archivematica-0.9-beta.vmdk&lt;br /&gt;
[[File:extracting_archivmatica-vmdk-tbz.png]]&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;note&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Remember:&amp;lt;/strong&amp;gt;&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
Be sure to take note of what location on your computer you choose to extract the file, so you can browse to it later when setting up the virtual appliance (instructions below).&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Start Archivematica virtual appliance ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Open the Oracle VirtualBox virtual machine.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Click New&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Click Next&amp;lt;/li&amp;gt;&lt;br /&gt;
[[File:new_next_VMWizard.png]]&lt;br /&gt;
&amp;lt;li&amp;gt;Set the name and type OS type (archivematica, linux-ubuntu)&amp;lt;/li&amp;gt;&lt;br /&gt;
[[File:2_VM_Name_OS_type.png]]&lt;br /&gt;
&amp;lt;li&amp;gt;Click Continue / Next&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Set Memory to 1 GB (1024 MB) or higher&amp;lt;/li&amp;gt;&lt;br /&gt;
[[File:3_set_memory.png]]&lt;br /&gt;
&amp;lt;li&amp;gt;Click Continue&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Select 'Use existing hard disk' and browse to and select archivematica-0.9-beta.vmdk&amp;lt;/li&amp;gt;&lt;br /&gt;
[[File:4_use_exist_hardisk_select_archivematica.png]]&lt;br /&gt;
&amp;lt;li&amp;gt;Click Continue. Review Summary and Click Create&amp;lt;/li&amp;gt;&lt;br /&gt;
[[File:5_review_click_create.png]]&lt;br /&gt;
&amp;lt;li&amp;gt;The virtual box will open with Archivematica 0.9-beta listed on the left-hand side (in some cases &amp;quot;archivematica&amp;quot; will be listed on the left-hand side). Select Archivematica 0.9-beta and click Start (the green arrow in the menu).&amp;lt;/li&amp;gt;&lt;br /&gt;
[[File:6_start_archivematica_VM.png]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;note&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;USB Warning at Startup?&amp;lt;/strong&amp;gt;&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
[[File:error_USB_setup.png]]&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Depending on the setup and configuration of your computer peripherals, you may get this warning the first time you try to launch the Archivematica virtual appliance. Don't worry - it has nothing to do with the installation. We suggest simply checking &amp;quot;Don't show this message again,&amp;quot; clicking OK, and proceeding. If you do want some guidance on troubleshooting USB detection in the Virtualbox, you can look at Oracle's troubleshooting instructions for USB detection in Linux [http://www.virtualbox.org/manual/ch12.html#ts_usb-linux here].&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;As the virtual appliance starts, you may have to select your machine from the list of available options. Hit return.&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
[[File:inside_the_VM.png]]&lt;br /&gt;
&amp;lt;li&amp;gt;The image should launch, showing you a Linux Ubuntu desktop Login screen using the user name ''demo'' and the password ''demo''.  (on slower systems hitting return may cause the windows to reset, this is being addressed)&amp;lt;/li&amp;gt;&lt;br /&gt;
[[File:archivematica_virtualapp_login.png]]&lt;br /&gt;
&amp;lt;li&amp;gt;From here it is suggested that you use your external browser to access the archivematica dashboard (see '''Ubuntu login reset issue''', below)&amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Log into the Archivematica dashboard using the user name ''demo'' and the password ''demo''. &lt;br /&gt;
* If your mouse pointer does not appear to be working in the virtual machine, click the letter f while holding down the right-hand control button. Do the same thing to switch back to using your mouse pointer outside the virtual box.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;Congratulations, you have a running copy of Archivematica! See [[Documentation]] for instructions on how to use the software.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;note&amp;quot;&amp;gt;&lt;br /&gt;
'''Important:'''&amp;lt;/br&amp;gt; Archivematica may appear to crash when used as a virtual appliance. See Ubuntu login reset issue, below.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Ubuntu login reset issue==&lt;br /&gt;
*Due to an issue with the Ubuntu 12.04.1 desktop, Archivematica may appear to crash when in use. The user will see a brief display of dingbat characters in the terminal, followed by a return to the Ubuntu login. Logging in will restore the dashboard and the user can continue processing. To avoid this issue, you can add settings to allow the Archivematica dashboard and ICA-AtoM to be accessed from your web browser, outside of the virtual machine. The steps are as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; Shut the virtual machine down if it is open.&lt;br /&gt;
&amp;lt;li&amp;gt; In virtualbox select the archivematica virtual machine and click on Settings&lt;br /&gt;
&amp;lt;li&amp;gt; Click the 'Network' tab&lt;br /&gt;
&amp;lt;li&amp;gt; 'Adapter 1' should be set to NAT by default (this allows you to get to the internet); click on 'Adapter 2' tab&lt;br /&gt;
&amp;lt;li&amp;gt; Click enable adapter and set attached to 'host only adapter'&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
[[File:selecting_host_only_adapter.png]]&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; Start the virtual machine&lt;br /&gt;
&amp;lt;li&amp;gt; In your web browser, go to the url http://192.168.56.101/transfer/ (there is no need to login to the Archivematica virtual machine first). For ICA-AtoM, go to http://192.168.56.101/ica-atom/. &lt;br /&gt;
&amp;lt;li&amp;gt;Congratulations! You can now use both Archivematica and ICA-AtoM via your web browser.&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Import files into virtual appliance (optional)==&lt;br /&gt;
If you want to use your own files in addition to the sample data provided, proceed with the following directions:&lt;br /&gt;
&lt;br /&gt;
===Permissions===&lt;br /&gt;
Users that are depositing files via ssh should be added to the archivematica group.  &lt;br /&gt;
&lt;br /&gt;
this can be done with: &lt;br /&gt;
&amp;lt;nowiki&amp;gt;useradd -G archivematica Username&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the Virtual Machine, the demo user is already apart of this group.&lt;br /&gt;
&lt;br /&gt;
===Using SFTP===&lt;br /&gt;
&lt;br /&gt;
It's possible to use [http://en.wikipedia.org/wiki/SSH_File_Transfer_Protocol SSH File Transfer Protocol] (SFTP), through an [http://en.wikipedia.org/wiki/FTP_client FTP client] to upload your own content from your computer to the virtual desktop where Archivematica is running:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; While in virtualbox right click the archivematica virtualmachine and click settings&lt;br /&gt;
&amp;lt;li&amp;gt; Click the 'Network' tab&lt;br /&gt;
&amp;lt;li&amp;gt; 'Adapter 1' should be set to NAT by default(this allows you to get to the internet), click on 'Adapter 2' tab&lt;br /&gt;
&amp;lt;li&amp;gt; Click enable adapter and set attached to 'host only adapter'&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
[[File:Selecting_host_only_adapter.png]]&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; Power up the archivematica virtualmachine&lt;br /&gt;
&amp;lt;li&amp;gt; Once in the xubuntu interface goto Applications &amp;gt; Accessories &amp;gt; Terminal&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;note&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;Having trouble locating the Applications menu?&amp;lt;strong&amp;gt;&amp;lt;/br&amp;gt;&lt;br /&gt;
You can find applications by clicking on the little blue logo in the top left-hand corner of the virtual desktop: [[File:applications_menu_icon.png]]. Alternately, you can access the terminal by simply right-clicking anywhere in the virtual desktop, and selecting &amp;quot;Open terminal here.&amp;quot;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:applications_accessories_terminal.png]]&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt; Type the following in terminal  (the password is demo) - this will take a minute and requires internet&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo aptitude install ssh &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;note&amp;quot;&amp;gt; &amp;lt;strong&amp;gt;Update packages?&amp;lt;/strong&amp;gt;&amp;lt;/br&amp;gt;&lt;br /&gt;
If the terminal asks you to update and/or install new packages, do so. Hit &amp;quot;y&amp;quot; and return. &amp;lt;/br&amp;gt;&lt;br /&gt;
[[File:package_updates.png]]&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt; type &amp;quot;ifconfig&amp;quot; in the terminal. You should see an IP address like '192.168.56.101'  (likely eth1 interface) &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ifconfig&lt;br /&gt;
eth1      Link encap:Ethernet  HWaddr fe:54:00:9d:92:64  &lt;br /&gt;
          inet addr:192.168.56.101  Bcast:192.168.56.255  Mask:255.255.255.0&lt;br /&gt;
          inet6 addr: fe80::1c6b:7bff:fe07:ddb6/64 Scope:Link&lt;br /&gt;
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1&lt;br /&gt;
          RX packets:24 errors:0 dropped:0 overruns:0 frame:0&lt;br /&gt;
          TX packets:45 errors:0 dropped:0 overruns:0 carrier:0&lt;br /&gt;
          collisions:0 txqueuelen:0 &lt;br /&gt;
          RX bytes:1400 (1.4 KB)  TX bytes:5815 (5.8 KB)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; From here, your machine should be connectable via SFTP.  Download an SFTP client; a popular open-source option is [http://filezilla-project.org/ FileZilla], which works on Linux and Windows.  If you are using Apple's OSX or higher, [http://cyberduck.ch/ Cyberduck] is reported to be a decent open-source SFTP client. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;note&amp;quot;&amp;gt; &amp;lt;strong&amp;gt;SFTP 101: Whats am I setting up here?&amp;lt;/strong&amp;gt;&amp;lt;/br&amp;gt;&lt;br /&gt;
[http://en.wikipedia.org/wiki/File_Transfer_Protocol File Transfer Protoco]l (FTP) &amp;quot;is a standard network protocol used to transfer files from one host or to another host over a TCP-based network, such as the Internet&amp;quot; (Wikipedia). In this case, you will be using SFTP to transfer your files, which is an FTP protocol that uses a [http://en.wikipedia.org/wiki/Secure_Shell Secure Shell (SSH)] extension for more secure data transmission. When you use FizeZilla or Cyberduck, you are using an [http://en.wikipedia.org/wiki/Comparison_of_FTP_client_software FTP client]that provides a graphical user interface ([http://en.wikipedia.org/wiki/Graphical_user_interface GUI]) to allow you to move files easily from one host (in this case, your computer) to another (the virtual desktop).&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt; The connection information should be as follows&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
username: demo&lt;br /&gt;
password: demo&lt;br /&gt;
IP/Hostname: 192.168.56.101 &amp;lt; results of ifconfig likely '192.168.56.*'&lt;br /&gt;
port: 22&lt;br /&gt;
destination folder:   /home/demo/ &amp;lt; if this is not set you will have to navigate to /home/demo directory &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
* Here is an example of setting up the connection information in &amp;lt;strong&amp;gt;FileZilla&amp;lt;/strong&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
[[File:FileZilla_SFTP.png]]&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Note that the username, password, and host are all input into the top of the FileZilla browser.&lt;br /&gt;
* In FileZilla, your home computer's directory is displayed on the left hand side, while Archivematica's virtual appliance directory is on the right hand side. Once the connection is established, you can drag and drop content from one side to the other to upload content.&lt;br /&gt;
* If you require more support using FileZilla, please visit their documentation wiki [http://wiki.filezilla-project.org/Main_Page here].&lt;br /&gt;
* If you have dragged your content to the  &amp;lt;strong&amp;gt;/home/demo &amp;lt;/strong&amp;gt; folder, you can find  your content in the Archivematica virtual appliance window by clicking on the &amp;quot;Home&amp;quot; icon on the desktop:&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
[[File:home_demo_filezilla.png]]&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
* Here is an example of setting up the connection information in &amp;lt;strong&amp;gt;Cyberduck&amp;lt;/strong&amp;gt;:&lt;br /&gt;
[[File:CDconnect.png]]&lt;br /&gt;
*Cyberduck will only show one directory, so you may have to click on the Action button and select &amp;quot;Upload&amp;quot; to change the display and reveal Archivematica's directory.&lt;br /&gt;
[[File:CDhome-demo.png]]&lt;br /&gt;
*You will need to create a new folder inside an existing Media folder to upload your media files into. For example, double click on the arrow to open the &amp;quot;Pictures&amp;quot; folder and then create new folder in it and upload your digital images.&lt;br /&gt;
[[File:CDuploadfolder.png]]&lt;br /&gt;
*All further actions will occur in the &amp;lt;b&amp;gt;Archivematica dashboard&amp;lt;/b&amp;gt; and instructions can be found in the User Manual under [https://www.archivematica.org/wiki/UM_transfer Transfer].&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Turn off virtual machine==&lt;br /&gt;
*At the end of your session, turn off the VirtualBox virtual machine by going to Machine &amp;gt; Close &amp;gt; and selecting one of the three shutdown options. It is best to choose either &amp;quot;Save the machine state&amp;quot; or &amp;quot;Send the shutdown signal&amp;quot;. &lt;br /&gt;
#:&lt;br /&gt;
[[file:archivematica_shutdown.png]]&lt;br /&gt;
#:&lt;br /&gt;
[[file:archivematica_shutdown2.png]]&lt;br /&gt;
#:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is from the VirtualBox help manual:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;3.4.3. Saving the state of the machine&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;When you click on the &amp;quot;Close&amp;quot; button of your virtual machine window (at the top right of the window, just like you would close any other window on your system) (or press the Host key together with &amp;quot;Q&amp;quot;), VirtualBox asks you whether you want to &amp;quot;save&amp;quot; or &amp;quot;power off&amp;quot; the VM.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;The difference between these three options is crucial. They mean:&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;Save the machine state: With this option, VirtualBox &amp;quot;freezes&amp;quot; the virtual machine by completely saving its state to your local disk. When you later resume the VM (by again clicking the &amp;quot;Start&amp;quot; button in the VirtualBox main window), you will find that the VM continues exactly where it was left off. All your programs will still be open, and your computer resumes operation.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;Saving the state of a virtual machine is thus in some ways similar to suspending a laptop computer (e.g. by closing its lid).&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Send the shutdown signal. This will send an ACPI shutdown signal to the virtual machine, which has the same effect as if you had pressed the power button on a real computer. So long as a fairly modern operating system is installed and running in the VM, this should trigger a proper shutdown mechanism in the VM.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Power off the machine: With this option, VirtualBox also stops running the virtual machine, but without saving its state.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;This is equivalent to pulling the power plug on a real computer without shutting it down properly. If you start the machine again after powering it off, your operating system will have to reboot completely and may begin a lengthy check of its (virtual) system disks.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;As a result, this should not normally be done, since it can potentially cause data loss or an inconsistent state of the guest system on disk.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;The &amp;quot;Discard&amp;quot; button in the main VirtualBox window discards a virtual machine's saved state. This has the same effect as powering it off, and the same warnings apply.&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Release_0.9-beta&amp;diff=6754</id>
		<title>Release 0.9-beta</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Release_0.9-beta&amp;diff=6754"/>
		<updated>2012-09-19T15:58:47Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; [[Software]] &amp;gt; Release 0.9-beta&lt;br /&gt;
&lt;br /&gt;
Archivematica integrates a suite of free and open-source tools that allows users to process digital objects from ingest to access in compliance with the ISO-OAIS functional model. In addition to the core Archivematica [http://code.google.com/p/archivematica/source/browse/#svn%2Ftags%2Frelease-0.7.1-alpha code] which is released under AGPL v3 license, the following tools are bundled with Archivematica [[Archivematica_0.9_Release_Notes|0.9-beta]]:&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;10&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=90%&lt;br /&gt;
|-&lt;br /&gt;
|- style=&amp;quot;background-color:#cccccc;&amp;quot;&lt;br /&gt;
!style=&amp;quot;width:20%&amp;quot;|'''Tool'''&lt;br /&gt;
!style=&amp;quot;width:10%&amp;quot;|'''Version'''&lt;br /&gt;
!style=&amp;quot;width:50%&amp;quot;|'''Description'''&lt;br /&gt;
!style=&amp;quot;width:40%&amp;quot;|'''License'''&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.digitalpreservation.gov/library/challenge/data-transfer.html BagIt]&lt;br /&gt;
|4.1&lt;br /&gt;
|Standard and script to package digital objects and metadata for archival storage&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.clamav.net/ Clam AV (anti-virus)]&lt;br /&gt;
|0.97.5 &lt;br /&gt;
|Anti-virus toolkit for UNIX&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.digikam.org/drupal/node/373 digiKam DNG Convertor]&lt;br /&gt;
|&lt;br /&gt;
|Converts RAW images to Digital Negative (DNG)&lt;br /&gt;
|GNU General Public License&lt;br /&gt;
|-&lt;br /&gt;
|[http://dcb-gcn.canadiana.org/ Digital Collection Builder]&lt;br /&gt;
|1.0.9&lt;br /&gt;
|Web-based digital collection description and access tool &lt;br /&gt;
|GNU General Public License v2 (GPL2)&lt;br /&gt;
|-&lt;br /&gt;
|[http://en.wikipedia.org/wiki/Ext4 EXT4 filesystem]&lt;br /&gt;
|12.04&lt;br /&gt;
|Local storage, organization and batch processing of digital objects within the virtual appliance&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://ffmpeg.org/ FFmpeg]&lt;br /&gt;
|0.8.3&lt;br /&gt;
|Converts a wide variety of audio and video formats&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://code.google.com/p/fits/ File Information Tool Set (FITS)]&lt;br /&gt;
|0.6.1&lt;br /&gt;
|File format identification and validation software integration tool&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/hardy/man2/flock.2.html flock]&lt;br /&gt;
|2&lt;br /&gt;
|File lock utility used to queu objects through the workflow and prevent processing overload&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.hypermail.org/ Hypermail]&lt;br /&gt;
|2.2.0&lt;br /&gt;
|convert mail archives in UNIX box format to HTML pages&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ica-atom.org ICA-AtoM]&lt;br /&gt;
|1.3&lt;br /&gt;
|Web-based archival description and access tool &lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.imagemagick.org/script/index.php Imagemagick]&lt;br /&gt;
|0.6.6&lt;br /&gt;
|Converts a wide variety of bitmap images&lt;br /&gt;
|GPL compatible [http://www.imagemagick.org/script/license.php Imagemagick license]&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.inkscape.org/ Inkscape]&lt;br /&gt;
|0.48&lt;br /&gt;
|Converts vector images to Scalable Vector Graphic (SVG) format&lt;br /&gt;
|GNU General Public License (GPL) version 2&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.libreoffice.org/ LibreOffice ]&lt;br /&gt;
|3.5&lt;br /&gt;
| Provides support for Normalization of documents.&lt;br /&gt;
| LGPLv3&lt;br /&gt;
|-&lt;br /&gt;
|[http://en.wikipedia.org/wiki/Md5 MD5]&lt;br /&gt;
|7.4&lt;br /&gt;
|MD5 Checksum generation and verification scripts&lt;br /&gt;
|&amp;quot;This program is a work of the US Government. In accordance with 17 USC 105, copyright protection is not available for any work of the US government. As such this code is considered public domain.&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[http://linux.about.com/cs/linux101/g/nfscommon.htm NFS-common]&lt;br /&gt;
|1.1.4&lt;br /&gt;
|Network File System Access - allows access to files on network storage devices.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.openoffice.org OpenOffice.org]&lt;br /&gt;
|3.0.1&lt;br /&gt;
|Office software suite; invoked by py-uno scripts to normalize office documents to ODF&lt;br /&gt;
|GNU Lesser General Public License (LGPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.oooninja.com/2008/02/batch-command-line-file-conversion-with.html PyODConverter Daemon]&lt;br /&gt;
|&lt;br /&gt;
|Provides support for Normalization via Open-Office.&lt;br /&gt;
|Posted by Andrew Z at Wednesday, February 27, 2008 [http://www.artofsolving.com/opensource/pyodconverter LGPG]&lt;br /&gt;
|-&lt;br /&gt;
|[http://pypi.python.org/pypi/poster/0.5 Poster]&lt;br /&gt;
|0.5&lt;br /&gt;
|Provides support for both streaming POST requests as well as multipart/form-data encoding of string or file parameters&lt;br /&gt;
|MIT License&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/python-lxml Python-lxml]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/readpst ReadPST/LibPST]&lt;br /&gt;
|0.6.52&lt;br /&gt;
|convert PST (MS Outlook Personal Folders) files to mbox and other formats&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://us1.samba.org/samba/ Samba/CIFS ]&lt;br /&gt;
|3.3.2&lt;br /&gt;
|Linux to Windows interface; allows applications in the Ubuntu virtual appliance environment to use network storage made available via the Windows CIFS protocol&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://packages.ubuntu.com/lucid/md5deep sha256]&lt;br /&gt;
|&lt;br /&gt;
|Sha256 Checksum generation and verification scripts&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.xfce.org/projects/thunar/ Thunar file manager]&lt;br /&gt;
|1.2.3&lt;br /&gt;
|Graphical file manager interface which end-user can use to move digital objects or trigger processing scripts.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/karmic/en/man1/uuid.1.html UUID]&lt;br /&gt;
|1.6.2&lt;br /&gt;
|command line interface (CLI) for the generation of DCE 1.1, ISO/IEC 11578:1996 and IETF RFC-4122 compliant Universally Unique Identifier (UUID).&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.xubuntu.org/ XUbuntu Linux]&lt;br /&gt;
|12.04&lt;br /&gt;
|Interface with computing hardware. Ubuntu Linux using Xfce desktop.&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|[http://manpages.ubuntu.com/manpages/hardy/man1/zip.1.html Zip]&lt;br /&gt;
|3.0&lt;br /&gt;
|Utility called by Bagit to create AIP package&lt;br /&gt;
|Info-Zip license: &amp;quot;Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.djangoproject.com/ Django]&lt;br /&gt;
|1.3.1&lt;br /&gt;
|Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://gearman.org/ Gearmand]&lt;br /&gt;
|0.27&lt;br /&gt;
|Gearman provides a generic application framework to farm out work to other machines or processes that are better suited to do the work.&lt;br /&gt;
|BSD License&lt;br /&gt;
|-&lt;br /&gt;
|[http://p7zip.sourceforge.net/ p7zip]&lt;br /&gt;
|9.2&lt;br /&gt;
|7-Zip is a file archiver with a high compression ratio. (LZMA)&lt;br /&gt;
|GNU General Public License (GPL)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Virtual_appliance_instructions&amp;diff=6548</id>
		<title>Virtual appliance instructions</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Virtual_appliance_instructions&amp;diff=6548"/>
		<updated>2012-09-05T19:07:34Z</updated>

		<summary type="html">&lt;p&gt;Austin: /* Start Archivematica virtual appliance */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; Virtual appliance instructions&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Distribution as a Virtual Appliance =&lt;br /&gt;
&lt;br /&gt;
Archivematica is distributed as a [http://en.wikipedia.org/wiki/Virtual_appliance virtual appliance] which integrates a number of software tools into one common virtual machine environment. &lt;br /&gt;
&lt;br /&gt;
This allows it to be run on almost any workstation or server hardware without compromising the host machine's operating system or application software. At the same time, the virtual appliance is able to interact with any number of networked and/or external storage devices to allow for the flexible implementation of an archival storage and backup strategy.&lt;br /&gt;
&lt;br /&gt;
*See the [[software]] page for a full list of the tools used in each system release. &lt;br /&gt;
*See the [[documentation]] page for instructions on how to use the virtual appliance to accomplish the system [[requirements]].&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Minimum hardware requirements=&lt;br /&gt;
&lt;br /&gt;
*Processor: Intel core 2 or AMD Opteron&lt;br /&gt;
*Memory: 1 GB for the virtual appliance ('guest') operating system, i.e: if the 'host' operating system has 2 GB available, 1 GB needs to allocated to the 'guest'. Depending on the operating system, machines with less than 2 GB total memory will likely have trouble running Archivematica. Note that the default allocation setting in Archivematica is 512 MB; however, the more that is allocated the better the system will run. The setting can be changed once Archivematica is running.&lt;br /&gt;
*Hard Drive space: a minimum of 3 GB to test the system on a small scale (i.e. use the available test files or import a small set of test files); 12 GB or more for larger implementations&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Instructions for using the VM image in VirtualBox=&lt;br /&gt;
&lt;br /&gt;
==Install Oracle Virtual Box==&lt;br /&gt;
&lt;br /&gt;
*Archivematica uses the [http://en.wikipedia.org/wiki/Open_Virtualization_Format Open Virtualization Format] and has been tested with the free and open-source [http://www.sun.com/software/products/virtualbox/index.jsp Oracle Virtual Box ] virtualization platform. &lt;br /&gt;
*There are VirtualBox versions available for every major operating system.&lt;br /&gt;
**Download and install Oracle VirtualBox: [http://dlc.sun.com/virtualbox/vboxdownload.html http://dlc.sun.com/virtualbox/vboxdownload.html]. Note that if you are installing VirtualBox on Windows you will have to click through a number of warnings that you are attempting to install non-verified software.&lt;br /&gt;
&lt;br /&gt;
==Download Archivematica ==&lt;br /&gt;
&lt;br /&gt;
*[http://archivematica.org/download Download] the latest version of the Archivematica appliance.&lt;br /&gt;
*Unzip the Archivematica file. This should result in the following file appearing in an Archivematica folder:&lt;br /&gt;
**archivematica-0.9-beta.vmdk&lt;br /&gt;
&lt;br /&gt;
==Start Archivematica virtual appliance==&lt;br /&gt;
&lt;br /&gt;
*Open the Oracle VirtualBox virtual machine.&lt;br /&gt;
*Click New&lt;br /&gt;
*Click Next&lt;br /&gt;
*Set the name and type OS type (archivematica, linux-ubuntu)&lt;br /&gt;
*Click Next&lt;br /&gt;
*Set Memory to 1 GB or higher&lt;br /&gt;
*Click Next&lt;br /&gt;
*Select 'Use existing hard disk' and browse to and select archivematica-0.9-beta.vmdk&lt;br /&gt;
*Click Next&lt;br /&gt;
*Click Finish&lt;br /&gt;
*The virtual box will open with Archivematica 0.9-beta listed on the left-hand side. Select Archivematica 0.9-beta and click Start (the green arrow in the menu).&lt;br /&gt;
*The image should launch, showing you a Linux Ubuntu desktop Login screen using the user name ''demo'' and the password ''demo''.  (on slower systems hitting return may cause the windows to reset, this is being addressed)&lt;br /&gt;
*From here it is suggested that you use your external browser to access the archivematica dashboard (often available here http://192.168.56.101/ see: [[Virtual_appliance_instructions#Using_SFTP]])&lt;br /&gt;
**Log into the Archivematica dashboard using the user name ''demo'' and the password ''demo''. &lt;br /&gt;
**If your mouse pointer does not appear to be working in the virtual machine, click the letter f while holding down the right-hand control button. Do the same thing to switch back to using your mouse pointer outside the virtual box.&lt;br /&gt;
*Congratulations, you have a running copy of Archivematica! See [[Documentation]] for instructions on how to use the software.&lt;br /&gt;
&lt;br /&gt;
==Import files into virtual appliance (optional)==&lt;br /&gt;
===Using SFTP===&lt;br /&gt;
&lt;br /&gt;
* While in virtualbox right click the archivematica virtualmachine and click settings&lt;br /&gt;
* Click the 'Network' tab&lt;br /&gt;
* 'Adapter 1' should be set to NAT by default(this allows you to get to the internet), click on 'Adapter 2' tab&lt;br /&gt;
* Click enable adapter and set attached to 'host only adapter'&lt;br /&gt;
* Power up the archivematica virtualmachine&lt;br /&gt;
* Once in the xubuntu interface goto Applications &amp;gt; Accessories &amp;gt; Terminal&lt;br /&gt;
* Type the following in terminal  (the password is demo) - this will take a minute and requires internet&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo aptitude install ssh &amp;lt;/pre&amp;gt;&lt;br /&gt;
* type ifconfig in terminal you should see a IP address like '192.168.56.101'  (likely eth1 interface) &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ifconfig&lt;br /&gt;
eth1      Link encap:Ethernet  HWaddr fe:54:00:9d:92:64  &lt;br /&gt;
          inet addr:192.168.56.101  Bcast:192.168.56.255  Mask:255.255.255.0&lt;br /&gt;
          inet6 addr: fe80::1c6b:7bff:fe07:ddb6/64 Scope:Link&lt;br /&gt;
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1&lt;br /&gt;
          RX packets:24 errors:0 dropped:0 overruns:0 frame:0&lt;br /&gt;
          TX packets:45 errors:0 dropped:0 overruns:0 carrier:0&lt;br /&gt;
          collisions:0 txqueuelen:0 &lt;br /&gt;
          RX bytes:1400 (1.4 KB)  TX bytes:5815 (5.8 KB)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*  From here your machine should be connectable via SFTP.  Download a SFTP client, a popular opensource option is FileZilla, which works on Linux and Windows.  If using OSX cyber duck is reported to be a decent opensource SFTP client. &lt;br /&gt;
&lt;br /&gt;
* the connection information should be as follows&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
username: demo&lt;br /&gt;
password: demo&lt;br /&gt;
IP/Hostname: 192.168.56.101 &amp;lt; results of ifconfig likely '192.168.56.*'&lt;br /&gt;
port: 22&lt;br /&gt;
destination folder:   /home/demo/ &amp;lt; if this is not set you will have to navigate to /home/demo directory &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Using Virtual Box Guest Additions===&lt;br /&gt;
&lt;br /&gt;
#Run Jockey&lt;br /&gt;
#:&amp;lt;pre&amp;gt;sudo jokey-gtk&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Select Guest Additions from available drivers&lt;br /&gt;
#Restart&lt;br /&gt;
&lt;br /&gt;
References&lt;br /&gt;
https://help.ubuntu.com/community/VirtualBox/SharedFolders&lt;br /&gt;
http://www.virtualbox.org/manual/ch04.html#sharedfolders&lt;br /&gt;
&lt;br /&gt;
==Turn off virtual machine==&lt;br /&gt;
*At the end of your session, turn off the VirtualBox virtual machine by going to Machine &amp;gt; Close &amp;gt; and selecting one of the three shutdown options. It is best to choose either &amp;quot;Save the machine state&amp;quot; or &amp;quot;Send the shutdown signal&amp;quot;. This is from the VirtualBox help manual:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;3.4.3. Saving the state of the machine&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;When you click on the &amp;quot;Close&amp;quot; button of your virtual machine window (at the top right of the window, just like you would close any other window on your system) (or press the Host key together with &amp;quot;Q&amp;quot;), VirtualBox asks you whether you want to &amp;quot;save&amp;quot; or &amp;quot;power off&amp;quot; the VM.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;The difference between these three options is crucial. They mean:&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;Save the machine state: With this option, VirtualBox &amp;quot;freezes&amp;quot; the virtual machine by completely saving its state to your local disk. When you later resume the VM (by again clicking the &amp;quot;Start&amp;quot; button in the VirtualBox main window), you will find that the VM continues exactly where it was left off. All your programs will still be open, and your computer resumes operation.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;Saving the state of a virtual machine is thus in some ways similar to suspending a laptop computer (e.g. by closing its lid).&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Send the shutdown signal. This will send an ACPI shutdown signal to the virtual machine, which has the same effect as if you had pressed the power button on a real computer. So long as a fairly modern operating system is installed and running in the VM, this should trigger a proper shutdown mechanism in the VM.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Power off the machine: With this option, VirtualBox also stops running the virtual machine, but without saving its state.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;This is equivalent to pulling the power plug on a real computer without shutting it down properly. If you start the machine again after powering it off, your operating system will have to reboot completely and may begin a lengthy check of its (virtual) system disks.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;As a result, this should not normally be done, since it can potentially cause data loss or an inconsistent state of the guest system on disk.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;The &amp;quot;Discard&amp;quot; button in the main VirtualBox window discards a virtual machine's saved state. This has the same effect as powering it off, and the same warnings apply.&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Virtual_appliance_instructions&amp;diff=6547</id>
		<title>Virtual appliance instructions</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Virtual_appliance_instructions&amp;diff=6547"/>
		<updated>2012-09-05T19:06:57Z</updated>

		<summary type="html">&lt;p&gt;Austin: /* Start Archivematica virtual appliance */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; Virtual appliance instructions&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Distribution as a Virtual Appliance =&lt;br /&gt;
&lt;br /&gt;
Archivematica is distributed as a [http://en.wikipedia.org/wiki/Virtual_appliance virtual appliance] which integrates a number of software tools into one common virtual machine environment. &lt;br /&gt;
&lt;br /&gt;
This allows it to be run on almost any workstation or server hardware without compromising the host machine's operating system or application software. At the same time, the virtual appliance is able to interact with any number of networked and/or external storage devices to allow for the flexible implementation of an archival storage and backup strategy.&lt;br /&gt;
&lt;br /&gt;
*See the [[software]] page for a full list of the tools used in each system release. &lt;br /&gt;
*See the [[documentation]] page for instructions on how to use the virtual appliance to accomplish the system [[requirements]].&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Minimum hardware requirements=&lt;br /&gt;
&lt;br /&gt;
*Processor: Intel core 2 or AMD Opteron&lt;br /&gt;
*Memory: 1 GB for the virtual appliance ('guest') operating system, i.e: if the 'host' operating system has 2 GB available, 1 GB needs to allocated to the 'guest'. Depending on the operating system, machines with less than 2 GB total memory will likely have trouble running Archivematica. Note that the default allocation setting in Archivematica is 512 MB; however, the more that is allocated the better the system will run. The setting can be changed once Archivematica is running.&lt;br /&gt;
*Hard Drive space: a minimum of 3 GB to test the system on a small scale (i.e. use the available test files or import a small set of test files); 12 GB or more for larger implementations&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Instructions for using the VM image in VirtualBox=&lt;br /&gt;
&lt;br /&gt;
==Install Oracle Virtual Box==&lt;br /&gt;
&lt;br /&gt;
*Archivematica uses the [http://en.wikipedia.org/wiki/Open_Virtualization_Format Open Virtualization Format] and has been tested with the free and open-source [http://www.sun.com/software/products/virtualbox/index.jsp Oracle Virtual Box ] virtualization platform. &lt;br /&gt;
*There are VirtualBox versions available for every major operating system.&lt;br /&gt;
**Download and install Oracle VirtualBox: [http://dlc.sun.com/virtualbox/vboxdownload.html http://dlc.sun.com/virtualbox/vboxdownload.html]. Note that if you are installing VirtualBox on Windows you will have to click through a number of warnings that you are attempting to install non-verified software.&lt;br /&gt;
&lt;br /&gt;
==Download Archivematica ==&lt;br /&gt;
&lt;br /&gt;
*[http://archivematica.org/download Download] the latest version of the Archivematica appliance.&lt;br /&gt;
*Unzip the Archivematica file. This should result in the following file appearing in an Archivematica folder:&lt;br /&gt;
**archivematica-0.9-beta.vmdk&lt;br /&gt;
&lt;br /&gt;
==Start Archivematica virtual appliance==&lt;br /&gt;
&lt;br /&gt;
*Open the Oracle VirtualBox virtual machine.&lt;br /&gt;
*Click New&lt;br /&gt;
*Click Next&lt;br /&gt;
*Set the name and type OS type (archivematica, linux-ubuntu)&lt;br /&gt;
*Click Next&lt;br /&gt;
*Set Memory to 1 GB or higher&lt;br /&gt;
*Click Next&lt;br /&gt;
*Select 'Use existing hard disk' and browse to and select archivematica-0.9-beta.vmdk&lt;br /&gt;
*Click Next&lt;br /&gt;
*Click Finish&lt;br /&gt;
*The virtual box will open with Archivematica 0.9-beta listed on the left-hand side. Select Archivematica 0.9-beta and click Start (the green arrow in the menu).&lt;br /&gt;
*The image should launch, showing you a Linux Ubuntu desktop Login screen using the user name ''demo'' and the password ''demo''.&lt;br /&gt;
*From here it is suggested that you use your external browser to access the archivematica dashboard (often available here http://192.168.56.101/ see: [[Virtual_appliance_instructions#Using_SFTP]])&lt;br /&gt;
**Log into the Archivematica dashboard using the user name ''demo'' and the password ''demo''.  (on slower systems hitting return may cause the windows to reset, this is being addressed)&lt;br /&gt;
**If your mouse pointer does not appear to be working in the virtual machine, click the letter f while holding down the right-hand control button. Do the same thing to switch back to using your mouse pointer outside the virtual box.&lt;br /&gt;
*Congratulations, you have a running copy of Archivematica! See [[Documentation]] for instructions on how to use the software.&lt;br /&gt;
&lt;br /&gt;
==Import files into virtual appliance (optional)==&lt;br /&gt;
===Using SFTP===&lt;br /&gt;
&lt;br /&gt;
* While in virtualbox right click the archivematica virtualmachine and click settings&lt;br /&gt;
* Click the 'Network' tab&lt;br /&gt;
* 'Adapter 1' should be set to NAT by default(this allows you to get to the internet), click on 'Adapter 2' tab&lt;br /&gt;
* Click enable adapter and set attached to 'host only adapter'&lt;br /&gt;
* Power up the archivematica virtualmachine&lt;br /&gt;
* Once in the xubuntu interface goto Applications &amp;gt; Accessories &amp;gt; Terminal&lt;br /&gt;
* Type the following in terminal  (the password is demo) - this will take a minute and requires internet&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo aptitude install ssh &amp;lt;/pre&amp;gt;&lt;br /&gt;
* type ifconfig in terminal you should see a IP address like '192.168.56.101'  (likely eth1 interface) &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ifconfig&lt;br /&gt;
eth1      Link encap:Ethernet  HWaddr fe:54:00:9d:92:64  &lt;br /&gt;
          inet addr:192.168.56.101  Bcast:192.168.56.255  Mask:255.255.255.0&lt;br /&gt;
          inet6 addr: fe80::1c6b:7bff:fe07:ddb6/64 Scope:Link&lt;br /&gt;
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1&lt;br /&gt;
          RX packets:24 errors:0 dropped:0 overruns:0 frame:0&lt;br /&gt;
          TX packets:45 errors:0 dropped:0 overruns:0 carrier:0&lt;br /&gt;
          collisions:0 txqueuelen:0 &lt;br /&gt;
          RX bytes:1400 (1.4 KB)  TX bytes:5815 (5.8 KB)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*  From here your machine should be connectable via SFTP.  Download a SFTP client, a popular opensource option is FileZilla, which works on Linux and Windows.  If using OSX cyber duck is reported to be a decent opensource SFTP client. &lt;br /&gt;
&lt;br /&gt;
* the connection information should be as follows&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
username: demo&lt;br /&gt;
password: demo&lt;br /&gt;
IP/Hostname: 192.168.56.101 &amp;lt; results of ifconfig likely '192.168.56.*'&lt;br /&gt;
port: 22&lt;br /&gt;
destination folder:   /home/demo/ &amp;lt; if this is not set you will have to navigate to /home/demo directory &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Using Virtual Box Guest Additions===&lt;br /&gt;
&lt;br /&gt;
#Run Jockey&lt;br /&gt;
#:&amp;lt;pre&amp;gt;sudo jokey-gtk&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Select Guest Additions from available drivers&lt;br /&gt;
#Restart&lt;br /&gt;
&lt;br /&gt;
References&lt;br /&gt;
https://help.ubuntu.com/community/VirtualBox/SharedFolders&lt;br /&gt;
http://www.virtualbox.org/manual/ch04.html#sharedfolders&lt;br /&gt;
&lt;br /&gt;
==Turn off virtual machine==&lt;br /&gt;
*At the end of your session, turn off the VirtualBox virtual machine by going to Machine &amp;gt; Close &amp;gt; and selecting one of the three shutdown options. It is best to choose either &amp;quot;Save the machine state&amp;quot; or &amp;quot;Send the shutdown signal&amp;quot;. This is from the VirtualBox help manual:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;3.4.3. Saving the state of the machine&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;When you click on the &amp;quot;Close&amp;quot; button of your virtual machine window (at the top right of the window, just like you would close any other window on your system) (or press the Host key together with &amp;quot;Q&amp;quot;), VirtualBox asks you whether you want to &amp;quot;save&amp;quot; or &amp;quot;power off&amp;quot; the VM.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;The difference between these three options is crucial. They mean:&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;Save the machine state: With this option, VirtualBox &amp;quot;freezes&amp;quot; the virtual machine by completely saving its state to your local disk. When you later resume the VM (by again clicking the &amp;quot;Start&amp;quot; button in the VirtualBox main window), you will find that the VM continues exactly where it was left off. All your programs will still be open, and your computer resumes operation.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;Saving the state of a virtual machine is thus in some ways similar to suspending a laptop computer (e.g. by closing its lid).&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Send the shutdown signal. This will send an ACPI shutdown signal to the virtual machine, which has the same effect as if you had pressed the power button on a real computer. So long as a fairly modern operating system is installed and running in the VM, this should trigger a proper shutdown mechanism in the VM.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Power off the machine: With this option, VirtualBox also stops running the virtual machine, but without saving its state.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;This is equivalent to pulling the power plug on a real computer without shutting it down properly. If you start the machine again after powering it off, your operating system will have to reboot completely and may begin a lengthy check of its (virtual) system disks.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;As a result, this should not normally be done, since it can potentially cause data loss or an inconsistent state of the guest system on disk.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;The &amp;quot;Discard&amp;quot; button in the main VirtualBox window discards a virtual machine's saved state. This has the same effect as powering it off, and the same warnings apply.&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Virtual_appliance_instructions&amp;diff=6531</id>
		<title>Virtual appliance instructions</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Virtual_appliance_instructions&amp;diff=6531"/>
		<updated>2012-09-04T17:26:54Z</updated>

		<summary type="html">&lt;p&gt;Austin: /* Using Virtual Box Guest Additions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; Virtual appliance instructions&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Distribution as a Virtual Appliance =&lt;br /&gt;
&lt;br /&gt;
Archivematica is distributed as a [http://en.wikipedia.org/wiki/Virtual_appliance virtual appliance] which integrates a number of software tools into one common virtual machine environment. &lt;br /&gt;
&lt;br /&gt;
This allows it to be run on almost any workstation or server hardware without compromising the host machine's operating system or application software. At the same time, the virtual appliance is able to interact with any number of networked and/or external storage devices to allow for the flexible implementation of an archival storage and backup strategy.&lt;br /&gt;
&lt;br /&gt;
*See the [[software]] page for a full list of the tools used in each system release. &lt;br /&gt;
*See the [[documentation]] page for instructions on how to use the virtual appliance to accomplish the system [[requirements]].&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Minimum hardware requirements=&lt;br /&gt;
&lt;br /&gt;
*Processor: Intel core 2 or AMD Opteron&lt;br /&gt;
*Memory: 1 GB for the virtual appliance ('guest') operating system, i.e: if the 'host' operating system has 2 GB available, 1 GB needs to allocated to the 'guest'. Depending on the operating system, machines with less than 2 GB total memory will likely have trouble running Archivematica. Note that the default allocation setting in Archivematica is 512 MB; however, the more that is allocated the better the system will run. The setting can be changed once Archivematica is running.&lt;br /&gt;
*Hard Drive space: a minimum of 3 GB to test the system on a small scale (i.e. use the available test files or import a small set of test files); 12 GB or more for larger implementations&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Instructions for using the VM image in VirtualBox=&lt;br /&gt;
&lt;br /&gt;
==Install Oracle Virtual Box==&lt;br /&gt;
&lt;br /&gt;
*Archivematica uses the [http://en.wikipedia.org/wiki/Open_Virtualization_Format Open Virtualization Format] and has been tested with the free and open-source [http://www.sun.com/software/products/virtualbox/index.jsp Oracle Virtual Box ] virtualization platform. &lt;br /&gt;
*There are VirtualBox versions available for every major operating system.&lt;br /&gt;
**Download and install Oracle VirtualBox: [http://dlc.sun.com/virtualbox/vboxdownload.html http://dlc.sun.com/virtualbox/vboxdownload.html]. Note that if you are installing VirtualBox on Windows you will have to click through a number of warnings that you are attempting to install non-verified software.&lt;br /&gt;
&lt;br /&gt;
==Download Archivematica ==&lt;br /&gt;
&lt;br /&gt;
*[http://archivematica.org/download Download] the latest version of the Archivematica appliance.&lt;br /&gt;
*Unzip the Archivematica file. This should result in the following file appearing in an Archivematica folder:&lt;br /&gt;
**archivematica-0.9-beta.vmdk&lt;br /&gt;
&lt;br /&gt;
==Start Archivematica virtual appliance==&lt;br /&gt;
&lt;br /&gt;
*Open the Oracle VirtualBox virtual machine.&lt;br /&gt;
*Click New&lt;br /&gt;
*Click Next&lt;br /&gt;
*Set the name and type OS type (archivematica, linux-ubuntu)&lt;br /&gt;
*Click Next&lt;br /&gt;
*Set Memory to 1 GB or higher&lt;br /&gt;
*Click Next&lt;br /&gt;
*Select 'Use existing hard disk' and browse to and select archivematica-0.9-beta.vmdk&lt;br /&gt;
*Click Next&lt;br /&gt;
*Click Finish&lt;br /&gt;
*The virtual box will open with Archivematica 0.9-beta listed on the left-hand side. Select Archivematica 0.9-beta and click Start (the green arrow in the menu).&lt;br /&gt;
*The image should launch, showing you a Linux Ubuntu desktop Login screen using the user name ''demo'' and the password ''demo''.&lt;br /&gt;
*From here it is suggested that you use your external browser to access the archivematica dashboard (often available here http://192.168.56.101/ see: [[Virtual_appliance_instructions#Using_SFTP]])&lt;br /&gt;
**Log into the Archivematica dashboard using the user name ''demo'' and the password ''demo''. &lt;br /&gt;
**If your mouse pointer does not appear to be working in the virtual machine, click the letter f while holding down the right-hand control button. Do the same thing to switch back to using your mouse pointer outside the virtual box.&lt;br /&gt;
*Congratulations, you have a running copy of Archivematica! See [[Documentation]] for instructions on how to use the software.&lt;br /&gt;
&lt;br /&gt;
==Import files into virtual appliance (optional)==&lt;br /&gt;
===Using SFTP===&lt;br /&gt;
&lt;br /&gt;
* While in virtualbox right click the archivematica virtualmachine and click settings&lt;br /&gt;
* Click the 'Network' tab&lt;br /&gt;
* 'Adapter 1' should be set to NAT by default(this allows you to get to the internet), click on 'Adapter 2' tab&lt;br /&gt;
* Click enable adapter and set attached to 'host only adapter'&lt;br /&gt;
* Power up the archivematica virtualmachine&lt;br /&gt;
* Once in the xubuntu interface goto Applications &amp;gt; Accessories &amp;gt; Terminal&lt;br /&gt;
* Type the following in terminal  (the password is demo) - this will take a minute and requires internet&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo aptitude install ssh &amp;lt;/pre&amp;gt;&lt;br /&gt;
* type ifconfig in terminal you should see a IP address like '192.168.56.101'  (likely eth1 interface) &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ifconfig&lt;br /&gt;
eth1      Link encap:Ethernet  HWaddr fe:54:00:9d:92:64  &lt;br /&gt;
          inet addr:192.168.56.101  Bcast:192.168.56.255  Mask:255.255.255.0&lt;br /&gt;
          inet6 addr: fe80::1c6b:7bff:fe07:ddb6/64 Scope:Link&lt;br /&gt;
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1&lt;br /&gt;
          RX packets:24 errors:0 dropped:0 overruns:0 frame:0&lt;br /&gt;
          TX packets:45 errors:0 dropped:0 overruns:0 carrier:0&lt;br /&gt;
          collisions:0 txqueuelen:0 &lt;br /&gt;
          RX bytes:1400 (1.4 KB)  TX bytes:5815 (5.8 KB)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*  From here your machine should be connectable via SFTP.  Download a SFTP client, a popular opensource option is FileZilla, which works on Linux and Windows.  If using OSX cyber duck is reported to be a decent opensource SFTP client. &lt;br /&gt;
&lt;br /&gt;
* the connection information should be as follows&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
username: demo&lt;br /&gt;
password: demo&lt;br /&gt;
IP/Hostname: 192.168.56.101 &amp;lt; results of ifconfig likely '192.168.56.*'&lt;br /&gt;
port: 22&lt;br /&gt;
destination folder:   /home/demo/ &amp;lt; if this is not set you will have to navigate to /home/demo directory &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Using Virtual Box Guest Additions===&lt;br /&gt;
&lt;br /&gt;
#Run Jockey&lt;br /&gt;
#:&amp;lt;pre&amp;gt;sudo jokey-gtk&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Select Guest Additions from available drivers&lt;br /&gt;
#Restart&lt;br /&gt;
&lt;br /&gt;
References&lt;br /&gt;
https://help.ubuntu.com/community/VirtualBox/SharedFolders&lt;br /&gt;
http://www.virtualbox.org/manual/ch04.html#sharedfolders&lt;br /&gt;
&lt;br /&gt;
==Turn off virtual machine==&lt;br /&gt;
*At the end of your session, turn off the VirtualBox virtual machine by going to Machine &amp;gt; Close &amp;gt; and selecting one of the three shutdown options. It is best to choose either &amp;quot;Save the machine state&amp;quot; or &amp;quot;Send the shutdown signal&amp;quot;. This is from the VirtualBox help manual:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;3.4.3. Saving the state of the machine&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;When you click on the &amp;quot;Close&amp;quot; button of your virtual machine window (at the top right of the window, just like you would close any other window on your system) (or press the Host key together with &amp;quot;Q&amp;quot;), VirtualBox asks you whether you want to &amp;quot;save&amp;quot; or &amp;quot;power off&amp;quot; the VM.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;The difference between these three options is crucial. They mean:&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;Save the machine state: With this option, VirtualBox &amp;quot;freezes&amp;quot; the virtual machine by completely saving its state to your local disk. When you later resume the VM (by again clicking the &amp;quot;Start&amp;quot; button in the VirtualBox main window), you will find that the VM continues exactly where it was left off. All your programs will still be open, and your computer resumes operation.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;Saving the state of a virtual machine is thus in some ways similar to suspending a laptop computer (e.g. by closing its lid).&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Send the shutdown signal. This will send an ACPI shutdown signal to the virtual machine, which has the same effect as if you had pressed the power button on a real computer. So long as a fairly modern operating system is installed and running in the VM, this should trigger a proper shutdown mechanism in the VM.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Power off the machine: With this option, VirtualBox also stops running the virtual machine, but without saving its state.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;This is equivalent to pulling the power plug on a real computer without shutting it down properly. If you start the machine again after powering it off, your operating system will have to reboot completely and may begin a lengthy check of its (virtual) system disks.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;As a result, this should not normally be done, since it can potentially cause data loss or an inconsistent state of the guest system on disk.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;The &amp;quot;Discard&amp;quot; button in the main VirtualBox window discards a virtual machine's saved state. This has the same effect as powering it off, and the same warnings apply.&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Virtual_appliance_instructions&amp;diff=6530</id>
		<title>Virtual appliance instructions</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Virtual_appliance_instructions&amp;diff=6530"/>
		<updated>2012-09-04T17:26:17Z</updated>

		<summary type="html">&lt;p&gt;Austin: /* Start Archivematica virtual appliance */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; Virtual appliance instructions&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Distribution as a Virtual Appliance =&lt;br /&gt;
&lt;br /&gt;
Archivematica is distributed as a [http://en.wikipedia.org/wiki/Virtual_appliance virtual appliance] which integrates a number of software tools into one common virtual machine environment. &lt;br /&gt;
&lt;br /&gt;
This allows it to be run on almost any workstation or server hardware without compromising the host machine's operating system or application software. At the same time, the virtual appliance is able to interact with any number of networked and/or external storage devices to allow for the flexible implementation of an archival storage and backup strategy.&lt;br /&gt;
&lt;br /&gt;
*See the [[software]] page for a full list of the tools used in each system release. &lt;br /&gt;
*See the [[documentation]] page for instructions on how to use the virtual appliance to accomplish the system [[requirements]].&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Minimum hardware requirements=&lt;br /&gt;
&lt;br /&gt;
*Processor: Intel core 2 or AMD Opteron&lt;br /&gt;
*Memory: 1 GB for the virtual appliance ('guest') operating system, i.e: if the 'host' operating system has 2 GB available, 1 GB needs to allocated to the 'guest'. Depending on the operating system, machines with less than 2 GB total memory will likely have trouble running Archivematica. Note that the default allocation setting in Archivematica is 512 MB; however, the more that is allocated the better the system will run. The setting can be changed once Archivematica is running.&lt;br /&gt;
*Hard Drive space: a minimum of 3 GB to test the system on a small scale (i.e. use the available test files or import a small set of test files); 12 GB or more for larger implementations&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Instructions for using the VM image in VirtualBox=&lt;br /&gt;
&lt;br /&gt;
==Install Oracle Virtual Box==&lt;br /&gt;
&lt;br /&gt;
*Archivematica uses the [http://en.wikipedia.org/wiki/Open_Virtualization_Format Open Virtualization Format] and has been tested with the free and open-source [http://www.sun.com/software/products/virtualbox/index.jsp Oracle Virtual Box ] virtualization platform. &lt;br /&gt;
*There are VirtualBox versions available for every major operating system.&lt;br /&gt;
**Download and install Oracle VirtualBox: [http://dlc.sun.com/virtualbox/vboxdownload.html http://dlc.sun.com/virtualbox/vboxdownload.html]. Note that if you are installing VirtualBox on Windows you will have to click through a number of warnings that you are attempting to install non-verified software.&lt;br /&gt;
&lt;br /&gt;
==Download Archivematica ==&lt;br /&gt;
&lt;br /&gt;
*[http://archivematica.org/download Download] the latest version of the Archivematica appliance.&lt;br /&gt;
*Unzip the Archivematica file. This should result in the following file appearing in an Archivematica folder:&lt;br /&gt;
**archivematica-0.9-beta.vmdk&lt;br /&gt;
&lt;br /&gt;
==Start Archivematica virtual appliance==&lt;br /&gt;
&lt;br /&gt;
*Open the Oracle VirtualBox virtual machine.&lt;br /&gt;
*Click New&lt;br /&gt;
*Click Next&lt;br /&gt;
*Set the name and type OS type (archivematica, linux-ubuntu)&lt;br /&gt;
*Click Next&lt;br /&gt;
*Set Memory to 1 GB or higher&lt;br /&gt;
*Click Next&lt;br /&gt;
*Select 'Use existing hard disk' and browse to and select archivematica-0.9-beta.vmdk&lt;br /&gt;
*Click Next&lt;br /&gt;
*Click Finish&lt;br /&gt;
*The virtual box will open with Archivematica 0.9-beta listed on the left-hand side. Select Archivematica 0.9-beta and click Start (the green arrow in the menu).&lt;br /&gt;
*The image should launch, showing you a Linux Ubuntu desktop Login screen using the user name ''demo'' and the password ''demo''.&lt;br /&gt;
*From here it is suggested that you use your external browser to access the archivematica dashboard (often available here http://192.168.56.101/ see: [[Virtual_appliance_instructions#Using_SFTP]])&lt;br /&gt;
**Log into the Archivematica dashboard using the user name ''demo'' and the password ''demo''. &lt;br /&gt;
**If your mouse pointer does not appear to be working in the virtual machine, click the letter f while holding down the right-hand control button. Do the same thing to switch back to using your mouse pointer outside the virtual box.&lt;br /&gt;
*Congratulations, you have a running copy of Archivematica! See [[Documentation]] for instructions on how to use the software.&lt;br /&gt;
&lt;br /&gt;
==Import files into virtual appliance (optional)==&lt;br /&gt;
===Using SFTP===&lt;br /&gt;
&lt;br /&gt;
* While in virtualbox right click the archivematica virtualmachine and click settings&lt;br /&gt;
* Click the 'Network' tab&lt;br /&gt;
* 'Adapter 1' should be set to NAT by default(this allows you to get to the internet), click on 'Adapter 2' tab&lt;br /&gt;
* Click enable adapter and set attached to 'host only adapter'&lt;br /&gt;
* Power up the archivematica virtualmachine&lt;br /&gt;
* Once in the xubuntu interface goto Applications &amp;gt; Accessories &amp;gt; Terminal&lt;br /&gt;
* Type the following in terminal  (the password is demo) - this will take a minute and requires internet&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo aptitude install ssh &amp;lt;/pre&amp;gt;&lt;br /&gt;
* type ifconfig in terminal you should see a IP address like '192.168.56.101'  (likely eth1 interface) &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ifconfig&lt;br /&gt;
eth1      Link encap:Ethernet  HWaddr fe:54:00:9d:92:64  &lt;br /&gt;
          inet addr:192.168.56.101  Bcast:192.168.56.255  Mask:255.255.255.0&lt;br /&gt;
          inet6 addr: fe80::1c6b:7bff:fe07:ddb6/64 Scope:Link&lt;br /&gt;
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1&lt;br /&gt;
          RX packets:24 errors:0 dropped:0 overruns:0 frame:0&lt;br /&gt;
          TX packets:45 errors:0 dropped:0 overruns:0 carrier:0&lt;br /&gt;
          collisions:0 txqueuelen:0 &lt;br /&gt;
          RX bytes:1400 (1.4 KB)  TX bytes:5815 (5.8 KB)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*  From here your machine should be connectable via SFTP.  Download a SFTP client, a popular opensource option is FileZilla, which works on Linux and Windows.  If using OSX cyber duck is reported to be a decent opensource SFTP client. &lt;br /&gt;
&lt;br /&gt;
* the connection information should be as follows&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
username: demo&lt;br /&gt;
password: demo&lt;br /&gt;
IP/Hostname: 192.168.56.101 &amp;lt; results of ifconfig likely '192.168.56.*'&lt;br /&gt;
port: 22&lt;br /&gt;
destination folder:   /home/demo/ &amp;lt; if this is not set you will have to navigate to /home/demo directory &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Using Virtual Box Guest Additions===&lt;br /&gt;
Instructions contributed by R. Pearce-Moses at http://groups.google.com/group/archivematica/browse_frm/thread/6ee0ef53832706e1?hl=en:&lt;br /&gt;
&lt;br /&gt;
#Run Jockey&lt;br /&gt;
#:&amp;lt;pre&amp;gt;sudo jokey-gtk&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Select Guest Additions from available drivers&lt;br /&gt;
#Restart&lt;br /&gt;
&lt;br /&gt;
References&lt;br /&gt;
https://help.ubuntu.com/community/VirtualBox/SharedFolders&lt;br /&gt;
http://www.virtualbox.org/manual/ch04.html#sharedfolders&lt;br /&gt;
&lt;br /&gt;
==Turn off virtual machine==&lt;br /&gt;
*At the end of your session, turn off the VirtualBox virtual machine by going to Machine &amp;gt; Close &amp;gt; and selecting one of the three shutdown options. It is best to choose either &amp;quot;Save the machine state&amp;quot; or &amp;quot;Send the shutdown signal&amp;quot;. This is from the VirtualBox help manual:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;3.4.3. Saving the state of the machine&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;When you click on the &amp;quot;Close&amp;quot; button of your virtual machine window (at the top right of the window, just like you would close any other window on your system) (or press the Host key together with &amp;quot;Q&amp;quot;), VirtualBox asks you whether you want to &amp;quot;save&amp;quot; or &amp;quot;power off&amp;quot; the VM.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;The difference between these three options is crucial. They mean:&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;Save the machine state: With this option, VirtualBox &amp;quot;freezes&amp;quot; the virtual machine by completely saving its state to your local disk. When you later resume the VM (by again clicking the &amp;quot;Start&amp;quot; button in the VirtualBox main window), you will find that the VM continues exactly where it was left off. All your programs will still be open, and your computer resumes operation.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;Saving the state of a virtual machine is thus in some ways similar to suspending a laptop computer (e.g. by closing its lid).&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Send the shutdown signal. This will send an ACPI shutdown signal to the virtual machine, which has the same effect as if you had pressed the power button on a real computer. So long as a fairly modern operating system is installed and running in the VM, this should trigger a proper shutdown mechanism in the VM.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Power off the machine: With this option, VirtualBox also stops running the virtual machine, but without saving its state.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;This is equivalent to pulling the power plug on a real computer without shutting it down properly. If you start the machine again after powering it off, your operating system will have to reboot completely and may begin a lengthy check of its (virtual) system disks.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;As a result, this should not normally be done, since it can potentially cause data loss or an inconsistent state of the guest system on disk.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;The &amp;quot;Discard&amp;quot; button in the main VirtualBox window discards a virtual machine's saved state. This has the same effect as powering it off, and the same warnings apply.&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Virtual_appliance_instructions&amp;diff=6529</id>
		<title>Virtual appliance instructions</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Virtual_appliance_instructions&amp;diff=6529"/>
		<updated>2012-09-04T17:09:54Z</updated>

		<summary type="html">&lt;p&gt;Austin: /* Start Archivematica virtual appliance */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; Virtual appliance instructions&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Distribution as a Virtual Appliance =&lt;br /&gt;
&lt;br /&gt;
Archivematica is distributed as a [http://en.wikipedia.org/wiki/Virtual_appliance virtual appliance] which integrates a number of software tools into one common virtual machine environment. &lt;br /&gt;
&lt;br /&gt;
This allows it to be run on almost any workstation or server hardware without compromising the host machine's operating system or application software. At the same time, the virtual appliance is able to interact with any number of networked and/or external storage devices to allow for the flexible implementation of an archival storage and backup strategy.&lt;br /&gt;
&lt;br /&gt;
*See the [[software]] page for a full list of the tools used in each system release. &lt;br /&gt;
*See the [[documentation]] page for instructions on how to use the virtual appliance to accomplish the system [[requirements]].&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Minimum hardware requirements=&lt;br /&gt;
&lt;br /&gt;
*Processor: Intel core 2 or AMD Opteron&lt;br /&gt;
*Memory: 1 GB for the virtual appliance ('guest') operating system, i.e: if the 'host' operating system has 2 GB available, 1 GB needs to allocated to the 'guest'. Depending on the operating system, machines with less than 2 GB total memory will likely have trouble running Archivematica. Note that the default allocation setting in Archivematica is 512 MB; however, the more that is allocated the better the system will run. The setting can be changed once Archivematica is running.&lt;br /&gt;
*Hard Drive space: a minimum of 3 GB to test the system on a small scale (i.e. use the available test files or import a small set of test files); 12 GB or more for larger implementations&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Instructions for using the VM image in VirtualBox=&lt;br /&gt;
&lt;br /&gt;
==Install Oracle Virtual Box==&lt;br /&gt;
&lt;br /&gt;
*Archivematica uses the [http://en.wikipedia.org/wiki/Open_Virtualization_Format Open Virtualization Format] and has been tested with the free and open-source [http://www.sun.com/software/products/virtualbox/index.jsp Oracle Virtual Box ] virtualization platform. &lt;br /&gt;
*There are VirtualBox versions available for every major operating system.&lt;br /&gt;
**Download and install Oracle VirtualBox: [http://dlc.sun.com/virtualbox/vboxdownload.html http://dlc.sun.com/virtualbox/vboxdownload.html]. Note that if you are installing VirtualBox on Windows you will have to click through a number of warnings that you are attempting to install non-verified software.&lt;br /&gt;
&lt;br /&gt;
==Download Archivematica ==&lt;br /&gt;
&lt;br /&gt;
*[http://archivematica.org/download Download] the latest version of the Archivematica appliance.&lt;br /&gt;
*Unzip the Archivematica file. This should result in the following file appearing in an Archivematica folder:&lt;br /&gt;
**archivematica-0.9-beta.vmdk&lt;br /&gt;
&lt;br /&gt;
==Start Archivematica virtual appliance==&lt;br /&gt;
&lt;br /&gt;
*Open the Oracle VirtualBox virtual machine.&lt;br /&gt;
*Click New&lt;br /&gt;
*Click Next&lt;br /&gt;
*Set the name and type OS type (archivematica, linux-ubuntu)&lt;br /&gt;
*Click Next&lt;br /&gt;
*Set Memory to 1 GB or higher&lt;br /&gt;
*Click Next&lt;br /&gt;
*Select 'Use existing hard disk' and browse to and select archivematica-0.9-beta.vmdk&lt;br /&gt;
*Click Next&lt;br /&gt;
*Click Finish&lt;br /&gt;
*The virtual box will open with Archivematica 0.9-beta listed on the left-hand side. Select Archivematica 0.9-beta and click Start (the green arrow in the menu).&lt;br /&gt;
*The image should launch, showing you a Linux Ubuntu desktop Login screen using the user name ''demo'' and the password ''demo''.&lt;br /&gt;
*From here it is suggested that you use your external browser to access the archivematica dashboard ([[Virtual_appliance_instructions#Using_SFTP]])&lt;br /&gt;
**Log into the Archivematica dashboard using the user name ''demo'' and the password ''demo''. &lt;br /&gt;
**If your mouse pointer does not appear to be working in the virtual machine, click the letter f while holding down the right-hand control button. Do the same thing to switch back to using your mouse pointer outside the virtual box.&lt;br /&gt;
*Congratulations, you have a running copy of Archivematica! See [[Documentation]] for instructions on how to use the software.&lt;br /&gt;
&lt;br /&gt;
==Import files into virtual appliance (optional)==&lt;br /&gt;
===Using SFTP===&lt;br /&gt;
&lt;br /&gt;
* While in virtualbox right click the archivematica virtualmachine and click settings&lt;br /&gt;
* Click the 'Network' tab&lt;br /&gt;
* 'Adapter 1' should be set to NAT by default(this allows you to get to the internet), click on 'Adapter 2' tab&lt;br /&gt;
* Click enable adapter and set attached to 'host only adapter'&lt;br /&gt;
* Power up the archivematica virtualmachine&lt;br /&gt;
* Once in the xubuntu interface goto Applications &amp;gt; Accessories &amp;gt; Terminal&lt;br /&gt;
* Type the following in terminal  (the password is demo) - this will take a minute and requires internet&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo aptitude install ssh &amp;lt;/pre&amp;gt;&lt;br /&gt;
* type ifconfig in terminal you should see a IP address like '192.168.56.101'  (likely eth1 interface) &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ifconfig&lt;br /&gt;
eth1      Link encap:Ethernet  HWaddr fe:54:00:9d:92:64  &lt;br /&gt;
          inet addr:192.168.56.101  Bcast:192.168.56.255  Mask:255.255.255.0&lt;br /&gt;
          inet6 addr: fe80::1c6b:7bff:fe07:ddb6/64 Scope:Link&lt;br /&gt;
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1&lt;br /&gt;
          RX packets:24 errors:0 dropped:0 overruns:0 frame:0&lt;br /&gt;
          TX packets:45 errors:0 dropped:0 overruns:0 carrier:0&lt;br /&gt;
          collisions:0 txqueuelen:0 &lt;br /&gt;
          RX bytes:1400 (1.4 KB)  TX bytes:5815 (5.8 KB)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*  From here your machine should be connectable via SFTP.  Download a SFTP client, a popular opensource option is FileZilla, which works on Linux and Windows.  If using OSX cyber duck is reported to be a decent opensource SFTP client. &lt;br /&gt;
&lt;br /&gt;
* the connection information should be as follows&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
username: demo&lt;br /&gt;
password: demo&lt;br /&gt;
IP/Hostname: 192.168.56.101 &amp;lt; results of ifconfig likely '192.168.56.*'&lt;br /&gt;
port: 22&lt;br /&gt;
destination folder:   /home/demo/ &amp;lt; if this is not set you will have to navigate to /home/demo directory &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Using Virtual Box Guest Additions===&lt;br /&gt;
Instructions contributed by R. Pearce-Moses at http://groups.google.com/group/archivematica/browse_frm/thread/6ee0ef53832706e1?hl=en:&lt;br /&gt;
&lt;br /&gt;
#Run Jockey&lt;br /&gt;
#:&amp;lt;pre&amp;gt;sudo jokey-gtk&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Select Guest Additions from available drivers&lt;br /&gt;
#Restart&lt;br /&gt;
&lt;br /&gt;
References&lt;br /&gt;
https://help.ubuntu.com/community/VirtualBox/SharedFolders&lt;br /&gt;
http://www.virtualbox.org/manual/ch04.html#sharedfolders&lt;br /&gt;
&lt;br /&gt;
==Turn off virtual machine==&lt;br /&gt;
*At the end of your session, turn off the VirtualBox virtual machine by going to Machine &amp;gt; Close &amp;gt; and selecting one of the three shutdown options. It is best to choose either &amp;quot;Save the machine state&amp;quot; or &amp;quot;Send the shutdown signal&amp;quot;. This is from the VirtualBox help manual:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;3.4.3. Saving the state of the machine&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;When you click on the &amp;quot;Close&amp;quot; button of your virtual machine window (at the top right of the window, just like you would close any other window on your system) (or press the Host key together with &amp;quot;Q&amp;quot;), VirtualBox asks you whether you want to &amp;quot;save&amp;quot; or &amp;quot;power off&amp;quot; the VM.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;The difference between these three options is crucial. They mean:&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;Save the machine state: With this option, VirtualBox &amp;quot;freezes&amp;quot; the virtual machine by completely saving its state to your local disk. When you later resume the VM (by again clicking the &amp;quot;Start&amp;quot; button in the VirtualBox main window), you will find that the VM continues exactly where it was left off. All your programs will still be open, and your computer resumes operation.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;Saving the state of a virtual machine is thus in some ways similar to suspending a laptop computer (e.g. by closing its lid).&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Send the shutdown signal. This will send an ACPI shutdown signal to the virtual machine, which has the same effect as if you had pressed the power button on a real computer. So long as a fairly modern operating system is installed and running in the VM, this should trigger a proper shutdown mechanism in the VM.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Power off the machine: With this option, VirtualBox also stops running the virtual machine, but without saving its state.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;This is equivalent to pulling the power plug on a real computer without shutting it down properly. If you start the machine again after powering it off, your operating system will have to reboot completely and may begin a lengthy check of its (virtual) system disks.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;As a result, this should not normally be done, since it can potentially cause data loss or an inconsistent state of the guest system on disk.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;The &amp;quot;Discard&amp;quot; button in the main VirtualBox window discards a virtual machine's saved state. This has the same effect as powering it off, and the same warnings apply.&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Install-0.9-beta&amp;diff=6527</id>
		<title>Install-0.9-beta</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Install-0.9-beta&amp;diff=6527"/>
		<updated>2012-09-04T06:29:15Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; [[Software]] &amp;gt; [[Install]] &amp;gt; Release 0.9-beta&lt;br /&gt;
&lt;br /&gt;
There are multiple ways to install and use Archivematica 0.9-beta. Once it is installed, consult the [[User_Manual]] for user instructions.&lt;br /&gt;
&lt;br /&gt;
=Virtual appliance=&lt;br /&gt;
&lt;br /&gt;
1. What is a [[wikipedia:Virtual appliance|virtual appliance]]?&lt;br /&gt;
&lt;br /&gt;
2. Download your preferred virtual appliance format ([http://archivematica.org/downloads/sha256.list sha256],[http://archivematica.org/downloads/md5sum.list md5sum]):&lt;br /&gt;
&lt;br /&gt;
* VirtualBox, VMware -  [http://archivematica.org/downloads/archivematica-0.9-beta.vmdk.tbz archivematica-0.9-beta.vmdk.tbz], &lt;br /&gt;
&lt;br /&gt;
3. If you don't already have a virtual machine player, we recommend VirtualBox. See these [[Virtual appliance instructions]] on how to load your Archivematica virtual appliance using VirtualBox.&lt;br /&gt;
&lt;br /&gt;
=Advanced=&lt;br /&gt;
&lt;br /&gt;
These options require experience in linux and/or software development.&lt;br /&gt;
&lt;br /&gt;
*Checkout from Subversion Repository&lt;br /&gt;
**This is an option for developers that want the ability to customize or enhance their own Archivematica installation and/or contribute code back to the Archivematica project. See the [[Development environment]] page for further instructions.&lt;br /&gt;
*Install from Packages on ubuntu&lt;br /&gt;
**Packages allow a user to quickly deploy a multinode environment,  [http://archivematica.org/wiki/index.php?title=Multi_Node_Install How to install packages]&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Virtual_appliance_instructions&amp;diff=6526</id>
		<title>Virtual appliance instructions</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Virtual_appliance_instructions&amp;diff=6526"/>
		<updated>2012-09-04T06:18:05Z</updated>

		<summary type="html">&lt;p&gt;Austin: /* Using Virtual Box Guest Additions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; Virtual appliance instructions&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Distribution as a Virtual Appliance =&lt;br /&gt;
&lt;br /&gt;
Archivematica is distributed as a [http://en.wikipedia.org/wiki/Virtual_appliance virtual appliance] which integrates a number of software tools into one common virtual machine environment. &lt;br /&gt;
&lt;br /&gt;
This allows it to be run on almost any workstation or server hardware without compromising the host machine's operating system or application software. At the same time, the virtual appliance is able to interact with any number of networked and/or external storage devices to allow for the flexible implementation of an archival storage and backup strategy.&lt;br /&gt;
&lt;br /&gt;
*See the [[software]] page for a full list of the tools used in each system release. &lt;br /&gt;
*See the [[documentation]] page for instructions on how to use the virtual appliance to accomplish the system [[requirements]].&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Minimum hardware requirements=&lt;br /&gt;
&lt;br /&gt;
*Processor: Intel core 2 or AMD Opteron&lt;br /&gt;
*Memory: 1 GB for the virtual appliance ('guest') operating system, i.e: if the 'host' operating system has 2 GB available, 1 GB needs to allocated to the 'guest'. Depending on the operating system, machines with less than 2 GB total memory will likely have trouble running Archivematica. Note that the default allocation setting in Archivematica is 512 MB; however, the more that is allocated the better the system will run. The setting can be changed once Archivematica is running.&lt;br /&gt;
*Hard Drive space: a minimum of 3 GB to test the system on a small scale (i.e. use the available test files or import a small set of test files); 12 GB or more for larger implementations&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Instructions for using the VM image in VirtualBox=&lt;br /&gt;
&lt;br /&gt;
==Install Oracle Virtual Box==&lt;br /&gt;
&lt;br /&gt;
*Archivematica uses the [http://en.wikipedia.org/wiki/Open_Virtualization_Format Open Virtualization Format] and has been tested with the free and open-source [http://www.sun.com/software/products/virtualbox/index.jsp Oracle Virtual Box ] virtualization platform. &lt;br /&gt;
*There are VirtualBox versions available for every major operating system.&lt;br /&gt;
**Download and install Oracle VirtualBox: [http://dlc.sun.com/virtualbox/vboxdownload.html http://dlc.sun.com/virtualbox/vboxdownload.html]. Note that if you are installing VirtualBox on Windows you will have to click through a number of warnings that you are attempting to install non-verified software.&lt;br /&gt;
&lt;br /&gt;
==Download Archivematica ==&lt;br /&gt;
&lt;br /&gt;
*[http://archivematica.org/download Download] the latest version of the Archivematica appliance.&lt;br /&gt;
*Unzip the Archivematica file. This should result in the following file appearing in an Archivematica folder:&lt;br /&gt;
**archivematica-0.9-beta.vmdk&lt;br /&gt;
&lt;br /&gt;
==Start Archivematica virtual appliance==&lt;br /&gt;
&lt;br /&gt;
*Open the Oracle VirtualBox virtual machine.&lt;br /&gt;
*Click New&lt;br /&gt;
*Click Next&lt;br /&gt;
*Set the name and type OS type (archivematica, linux-ubuntu)&lt;br /&gt;
*Click Next&lt;br /&gt;
*Set Memory to 1 GB or higher&lt;br /&gt;
*Click Next&lt;br /&gt;
*Select 'Use existing hard disk' and browse to and select archivematica-0.9-beta.vmdk&lt;br /&gt;
*Click Next&lt;br /&gt;
*Click Finish&lt;br /&gt;
*The virtual box will open with Archivematica 0.9-beta listed on the left-hand side. Select Archivematica 0.9-beta and click Start (the green arrow in the menu).&lt;br /&gt;
*The image should launch, showing you a Linux Ubuntu desktop and some of the digital preservation applications which are included in Archivematica 0.9-beta &lt;br /&gt;
**Log into the Archivematica dashboard using the user name ''demo'' and the password ''demo''. &lt;br /&gt;
**If your mouse pointer does not appear to be working in the virtual machine, click the letter f while holding down the right-hand control button. Do the same thing to switch back to using your mouse pointer outside the virtual box.&lt;br /&gt;
*Congratulations, you have a running copy of Archivematica! See [[Documentation]] for instructions on how to use the software.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Import files into virtual appliance (optional)==&lt;br /&gt;
===Using SFTP===&lt;br /&gt;
&lt;br /&gt;
* While in virtualbox right click the archivematica virtualmachine and click settings&lt;br /&gt;
* Click the 'Network' tab&lt;br /&gt;
* 'Adapter 1' should be set to NAT by default(this allows you to get to the internet), click on 'Adapter 2' tab&lt;br /&gt;
* Click enable adapter and set attached to 'host only adapter'&lt;br /&gt;
* Power up the archivematica virtualmachine&lt;br /&gt;
* Once in the xubuntu interface goto Applications &amp;gt; Accessories &amp;gt; Terminal&lt;br /&gt;
* Type the following in terminal  (the password is demo) - this will take a minute and requires internet&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo aptitude install ssh &amp;lt;/pre&amp;gt;&lt;br /&gt;
* type ifconfig in terminal you should see a IP address like '192.168.56.101'  (likely eth1 interface) &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ifconfig&lt;br /&gt;
eth1      Link encap:Ethernet  HWaddr fe:54:00:9d:92:64  &lt;br /&gt;
          inet addr:192.168.56.101  Bcast:192.168.56.255  Mask:255.255.255.0&lt;br /&gt;
          inet6 addr: fe80::1c6b:7bff:fe07:ddb6/64 Scope:Link&lt;br /&gt;
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1&lt;br /&gt;
          RX packets:24 errors:0 dropped:0 overruns:0 frame:0&lt;br /&gt;
          TX packets:45 errors:0 dropped:0 overruns:0 carrier:0&lt;br /&gt;
          collisions:0 txqueuelen:0 &lt;br /&gt;
          RX bytes:1400 (1.4 KB)  TX bytes:5815 (5.8 KB)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*  From here your machine should be connectable via SFTP.  Download a SFTP client, a popular opensource option is FileZilla, which works on Linux and Windows.  If using OSX cyber duck is reported to be a decent opensource SFTP client. &lt;br /&gt;
&lt;br /&gt;
* the connection information should be as follows&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
username: demo&lt;br /&gt;
password: demo&lt;br /&gt;
IP/Hostname: 192.168.56.101 &amp;lt; results of ifconfig likely '192.168.56.*'&lt;br /&gt;
port: 22&lt;br /&gt;
destination folder:   /home/demo/ &amp;lt; if this is not set you will have to navigate to /home/demo directory &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Using Virtual Box Guest Additions===&lt;br /&gt;
Instructions contributed by R. Pearce-Moses at http://groups.google.com/group/archivematica/browse_frm/thread/6ee0ef53832706e1?hl=en:&lt;br /&gt;
&lt;br /&gt;
#Run Jockey&lt;br /&gt;
#:&amp;lt;pre&amp;gt;sudo jokey-gtk&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Select Guest Additions from available drivers&lt;br /&gt;
#Restart&lt;br /&gt;
&lt;br /&gt;
References&lt;br /&gt;
https://help.ubuntu.com/community/VirtualBox/SharedFolders&lt;br /&gt;
http://www.virtualbox.org/manual/ch04.html#sharedfolders&lt;br /&gt;
&lt;br /&gt;
==Turn off virtual machine==&lt;br /&gt;
*At the end of your session, turn off the VirtualBox virtual machine by going to Machine &amp;gt; Close &amp;gt; and selecting one of the three shutdown options. It is best to choose either &amp;quot;Save the machine state&amp;quot; or &amp;quot;Send the shutdown signal&amp;quot;. This is from the VirtualBox help manual:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;3.4.3. Saving the state of the machine&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;When you click on the &amp;quot;Close&amp;quot; button of your virtual machine window (at the top right of the window, just like you would close any other window on your system) (or press the Host key together with &amp;quot;Q&amp;quot;), VirtualBox asks you whether you want to &amp;quot;save&amp;quot; or &amp;quot;power off&amp;quot; the VM.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;The difference between these three options is crucial. They mean:&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;Save the machine state: With this option, VirtualBox &amp;quot;freezes&amp;quot; the virtual machine by completely saving its state to your local disk. When you later resume the VM (by again clicking the &amp;quot;Start&amp;quot; button in the VirtualBox main window), you will find that the VM continues exactly where it was left off. All your programs will still be open, and your computer resumes operation.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;Saving the state of a virtual machine is thus in some ways similar to suspending a laptop computer (e.g. by closing its lid).&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Send the shutdown signal. This will send an ACPI shutdown signal to the virtual machine, which has the same effect as if you had pressed the power button on a real computer. So long as a fairly modern operating system is installed and running in the VM, this should trigger a proper shutdown mechanism in the VM.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Power off the machine: With this option, VirtualBox also stops running the virtual machine, but without saving its state.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;This is equivalent to pulling the power plug on a real computer without shutting it down properly. If you start the machine again after powering it off, your operating system will have to reboot completely and may begin a lengthy check of its (virtual) system disks.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;As a result, this should not normally be done, since it can potentially cause data loss or an inconsistent state of the guest system on disk.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;The &amp;quot;Discard&amp;quot; button in the main VirtualBox window discards a virtual machine's saved state. This has the same effect as powering it off, and the same warnings apply.&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Virtual_appliance_instructions&amp;diff=6525</id>
		<title>Virtual appliance instructions</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Virtual_appliance_instructions&amp;diff=6525"/>
		<updated>2012-09-04T06:04:51Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main Page]] &amp;gt; Virtual appliance instructions&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Distribution as a Virtual Appliance =&lt;br /&gt;
&lt;br /&gt;
Archivematica is distributed as a [http://en.wikipedia.org/wiki/Virtual_appliance virtual appliance] which integrates a number of software tools into one common virtual machine environment. &lt;br /&gt;
&lt;br /&gt;
This allows it to be run on almost any workstation or server hardware without compromising the host machine's operating system or application software. At the same time, the virtual appliance is able to interact with any number of networked and/or external storage devices to allow for the flexible implementation of an archival storage and backup strategy.&lt;br /&gt;
&lt;br /&gt;
*See the [[software]] page for a full list of the tools used in each system release. &lt;br /&gt;
*See the [[documentation]] page for instructions on how to use the virtual appliance to accomplish the system [[requirements]].&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Minimum hardware requirements=&lt;br /&gt;
&lt;br /&gt;
*Processor: Intel core 2 or AMD Opteron&lt;br /&gt;
*Memory: 1 GB for the virtual appliance ('guest') operating system, i.e: if the 'host' operating system has 2 GB available, 1 GB needs to allocated to the 'guest'. Depending on the operating system, machines with less than 2 GB total memory will likely have trouble running Archivematica. Note that the default allocation setting in Archivematica is 512 MB; however, the more that is allocated the better the system will run. The setting can be changed once Archivematica is running.&lt;br /&gt;
*Hard Drive space: a minimum of 3 GB to test the system on a small scale (i.e. use the available test files or import a small set of test files); 12 GB or more for larger implementations&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Instructions for using the VM image in VirtualBox=&lt;br /&gt;
&lt;br /&gt;
==Install Oracle Virtual Box==&lt;br /&gt;
&lt;br /&gt;
*Archivematica uses the [http://en.wikipedia.org/wiki/Open_Virtualization_Format Open Virtualization Format] and has been tested with the free and open-source [http://www.sun.com/software/products/virtualbox/index.jsp Oracle Virtual Box ] virtualization platform. &lt;br /&gt;
*There are VirtualBox versions available for every major operating system.&lt;br /&gt;
**Download and install Oracle VirtualBox: [http://dlc.sun.com/virtualbox/vboxdownload.html http://dlc.sun.com/virtualbox/vboxdownload.html]. Note that if you are installing VirtualBox on Windows you will have to click through a number of warnings that you are attempting to install non-verified software.&lt;br /&gt;
&lt;br /&gt;
==Download Archivematica ==&lt;br /&gt;
&lt;br /&gt;
*[http://archivematica.org/download Download] the latest version of the Archivematica appliance.&lt;br /&gt;
*Unzip the Archivematica file. This should result in the following file appearing in an Archivematica folder:&lt;br /&gt;
**archivematica-0.9-beta.vmdk&lt;br /&gt;
&lt;br /&gt;
==Start Archivematica virtual appliance==&lt;br /&gt;
&lt;br /&gt;
*Open the Oracle VirtualBox virtual machine.&lt;br /&gt;
*Click New&lt;br /&gt;
*Click Next&lt;br /&gt;
*Set the name and type OS type (archivematica, linux-ubuntu)&lt;br /&gt;
*Click Next&lt;br /&gt;
*Set Memory to 1 GB or higher&lt;br /&gt;
*Click Next&lt;br /&gt;
*Select 'Use existing hard disk' and browse to and select archivematica-0.9-beta.vmdk&lt;br /&gt;
*Click Next&lt;br /&gt;
*Click Finish&lt;br /&gt;
*The virtual box will open with Archivematica 0.9-beta listed on the left-hand side. Select Archivematica 0.9-beta and click Start (the green arrow in the menu).&lt;br /&gt;
*The image should launch, showing you a Linux Ubuntu desktop and some of the digital preservation applications which are included in Archivematica 0.9-beta &lt;br /&gt;
**Log into the Archivematica dashboard using the user name ''demo'' and the password ''demo''. &lt;br /&gt;
**If your mouse pointer does not appear to be working in the virtual machine, click the letter f while holding down the right-hand control button. Do the same thing to switch back to using your mouse pointer outside the virtual box.&lt;br /&gt;
*Congratulations, you have a running copy of Archivematica! See [[Documentation]] for instructions on how to use the software.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Import files into virtual appliance (optional)==&lt;br /&gt;
===Using SFTP===&lt;br /&gt;
&lt;br /&gt;
* While in virtualbox right click the archivematica virtualmachine and click settings&lt;br /&gt;
* Click the 'Network' tab&lt;br /&gt;
* 'Adapter 1' should be set to NAT by default(this allows you to get to the internet), click on 'Adapter 2' tab&lt;br /&gt;
* Click enable adapter and set attached to 'host only adapter'&lt;br /&gt;
* Power up the archivematica virtualmachine&lt;br /&gt;
* Once in the xubuntu interface goto Applications &amp;gt; Accessories &amp;gt; Terminal&lt;br /&gt;
* Type the following in terminal  (the password is demo) - this will take a minute and requires internet&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo aptitude install ssh &amp;lt;/pre&amp;gt;&lt;br /&gt;
* type ifconfig in terminal you should see a IP address like '192.168.56.101'  (likely eth1 interface) &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ ifconfig&lt;br /&gt;
eth1      Link encap:Ethernet  HWaddr fe:54:00:9d:92:64  &lt;br /&gt;
          inet addr:192.168.56.101  Bcast:192.168.56.255  Mask:255.255.255.0&lt;br /&gt;
          inet6 addr: fe80::1c6b:7bff:fe07:ddb6/64 Scope:Link&lt;br /&gt;
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1&lt;br /&gt;
          RX packets:24 errors:0 dropped:0 overruns:0 frame:0&lt;br /&gt;
          TX packets:45 errors:0 dropped:0 overruns:0 carrier:0&lt;br /&gt;
          collisions:0 txqueuelen:0 &lt;br /&gt;
          RX bytes:1400 (1.4 KB)  TX bytes:5815 (5.8 KB)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*  From here your machine should be connectable via SFTP.  Download a SFTP client, a popular opensource option is FileZilla, which works on Linux and Windows.  If using OSX cyber duck is reported to be a decent opensource SFTP client. &lt;br /&gt;
&lt;br /&gt;
* the connection information should be as follows&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
username: demo&lt;br /&gt;
password: demo&lt;br /&gt;
IP/Hostname: 192.168.56.101 &amp;lt; results of ifconfig likely '192.168.56.*'&lt;br /&gt;
port: 22&lt;br /&gt;
destination folder:   /home/demo/ &amp;lt; if this is not set you will have to navigate to /home/demo directory &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Using Virtual Box Guest Additions===&lt;br /&gt;
Instructions contributed by R. Pearce-Moses at http://groups.google.com/group/archivematica/browse_frm/thread/6ee0ef53832706e1?hl=en:&lt;br /&gt;
&lt;br /&gt;
#update&lt;br /&gt;
#:&amp;lt;pre&amp;gt;sudo aptitude update&amp;lt;/pre&amp;gt;&lt;br /&gt;
#:&amp;lt;pre&amp;gt;sudo aptitude upgrade&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Determine which linux headers to get using uname -a&lt;br /&gt;
#:&amp;lt;pre&amp;gt;uname -a &amp;lt;/pre&amp;gt;&lt;br /&gt;
#Install the appropriate headers headders&lt;br /&gt;
#:&amp;lt;pre&amp;gt;$apt-get install linux-headers-2.6.32-38-generic&amp;lt;/pre&amp;gt;&lt;br /&gt;
#*Replace version based on info from uname command as necessary&lt;br /&gt;
#install gcc&lt;br /&gt;
#:&amp;lt;pre&amp;gt;sudo apt-get install gcc&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Restart to complete installation of the update.&lt;br /&gt;
#From the VBox Device menu, click Install Guest Additions.&lt;br /&gt;
#Closed the autorun prompt, then&lt;br /&gt;
#:&amp;lt;pre&amp;gt;cd /media/VBOXADDITIONS_4.1.8_75467&amp;lt;/pre&amp;gt;&lt;br /&gt;
#:&amp;lt;pre&amp;gt;sudo ./VBoxLinuxAdditions.run&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Restart&lt;br /&gt;
&lt;br /&gt;
References&lt;br /&gt;
https://help.ubuntu.com/community/VirtualBox/SharedFolders&lt;br /&gt;
http://www.virtualbox.org/manual/ch04.html#sharedfolders&lt;br /&gt;
&lt;br /&gt;
==Turn off virtual machine==&lt;br /&gt;
*At the end of your session, turn off the VirtualBox virtual machine by going to Machine &amp;gt; Close &amp;gt; and selecting one of the three shutdown options. It is best to choose either &amp;quot;Save the machine state&amp;quot; or &amp;quot;Send the shutdown signal&amp;quot;. This is from the VirtualBox help manual:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;3.4.3. Saving the state of the machine&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;When you click on the &amp;quot;Close&amp;quot; button of your virtual machine window (at the top right of the window, just like you would close any other window on your system) (or press the Host key together with &amp;quot;Q&amp;quot;), VirtualBox asks you whether you want to &amp;quot;save&amp;quot; or &amp;quot;power off&amp;quot; the VM.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;The difference between these three options is crucial. They mean:&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;Save the machine state: With this option, VirtualBox &amp;quot;freezes&amp;quot; the virtual machine by completely saving its state to your local disk. When you later resume the VM (by again clicking the &amp;quot;Start&amp;quot; button in the VirtualBox main window), you will find that the VM continues exactly where it was left off. All your programs will still be open, and your computer resumes operation.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
  &lt;br /&gt;
&amp;lt;blockquote&amp;gt;Saving the state of a virtual machine is thus in some ways similar to suspending a laptop computer (e.g. by closing its lid).&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Send the shutdown signal. This will send an ACPI shutdown signal to the virtual machine, which has the same effect as if you had pressed the power button on a real computer. So long as a fairly modern operating system is installed and running in the VM, this should trigger a proper shutdown mechanism in the VM.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Power off the machine: With this option, VirtualBox also stops running the virtual machine, but without saving its state.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;This is equivalent to pulling the power plug on a real computer without shutting it down properly. If you start the machine again after powering it off, your operating system will have to reboot completely and may begin a lengthy check of its (virtual) system disks.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;As a result, this should not normally be done, since it can potentially cause data loss or an inconsistent state of the guest system on disk.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;The &amp;quot;Discard&amp;quot; button in the main VirtualBox window discards a virtual machine's saved state. This has the same effect as powering it off, and the same warnings apply.&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Meeting_20120801&amp;diff=6118</id>
		<title>Meeting 20120801</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Meeting_20120801&amp;diff=6118"/>
		<updated>2012-08-01T17:56:31Z</updated>

		<summary type="html">&lt;p&gt;Austin: /* chat log */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Artefactual Systems, Internal Archivematica Dev Mtg, 2012-03-21&lt;br /&gt;
&lt;br /&gt;
= Development =&lt;br /&gt;
&lt;br /&gt;
* Mike and Courtney are focusing today on finishing up rights template and the bagged transfer issue&lt;br /&gt;
* Mike will be working on rights and AIP search and the zipped bag &lt;br /&gt;
* Joseph and Austin are testing converting pst's to maildirs&lt;br /&gt;
* Sevein helped look at the rights template&lt;br /&gt;
* Austin and Evelyn worked on the elasticsearch upstart&lt;br /&gt;
&lt;br /&gt;
= Deployment =&lt;br /&gt;
&lt;br /&gt;
* Joseph had quite ''the experience'' getting the windows 7 vm running&lt;br /&gt;
&lt;br /&gt;
= Testing =&lt;br /&gt;
* Courtney has been testing AIP indexing with elasticsearch&lt;br /&gt;
* Courtney found a few issues with premis 2.2 conformity,&lt;br /&gt;
* Courtney will test rights template and aip search (not until after SAA next week)&lt;br /&gt;
&lt;br /&gt;
= Documentation =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=chat log=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
(10:38:29 AM) courtney: we have 93 outstanding issues : )&lt;br /&gt;
(10:38:43 AM) Sevein: I wish I'd have only 93&lt;br /&gt;
(10:38:45 AM) Sevein: :P&lt;br /&gt;
(10:38:45 AM) berwin22: total, or for the 0.9?&lt;br /&gt;
(10:38:52 AM) courtney: 0.9&lt;br /&gt;
(10:39:17 AM) courtney: mcantelon and i are focusing today on finishing up rights template and the bagged transfer issue&lt;br /&gt;
(10:39:25 AM) peterVG: so obviously a number (most) of those will have to get bumped to 1.0&lt;br /&gt;
(10:39:28 AM) courtney: yes&lt;br /&gt;
(10:40:10 AM) peterVG: at this point we need to seperate highs from criticals&lt;br /&gt;
(10:40:26 AM) courtney: evelyn took a shot at that with her wiki page&lt;br /&gt;
(10:40:32 AM) mike__: I've got 24 high, 3 critical IIRC.&lt;br /&gt;
(10:40:48 AM) peterVG: i.e. other than fixes to PREMIS template by Friday, decide which are enhancement or non-critical bugs vs 'critical' bugs that break the system&lt;br /&gt;
(10:41:20 AM) courtney: https://www.archivematica.org/wiki/0.9_code_freeze&lt;br /&gt;
(10:41:38 AM) courtney: i think a lot ARTi1's are done, just not indicated as such&lt;br /&gt;
(10:42:00 AM) mike__: I think all my criticals will be done (rights and AIP search are almost good to go and the zipped bag thing I'm thinking will be easy).&lt;br /&gt;
(10:42:00 AM) ARTi1: courtney: Ill go through my list&lt;br /&gt;
(10:42:13 AM) courtney: thanks ARTi1 - i'm a pretty good hinter&lt;br /&gt;
(10:42:18 AM) courtney: : )&lt;br /&gt;
(10:42:20 AM) ARTi1: yeah, :D&lt;br /&gt;
(10:42:37 AM) courtney: mike__: sweet&lt;br /&gt;
(10:43:03 AM) courtney: berwin22: ?&lt;br /&gt;
(10:43:17 AM) berwin22: I've been away last week. But this week I was working on mopping up my issues.&lt;br /&gt;
(10:43:20 AM) berwin22: I've started to try to do some testing converting pst's to maildirs.&lt;br /&gt;
(10:43:22 AM) courtney: great&lt;br /&gt;
(10:43:43 AM) berwin22: I also came across this: http://blog.oxplot.com/2012/06/upload-outlook-archive-pst-to-imap.html&lt;br /&gt;
(10:43:44 AM) berwin22: ARTi have you had a chance to do any testing with it?&lt;br /&gt;
(10:44:21 AM) ARTi1: berwin22: yeah, thanks for your help.  my initial import failed last night.. working on it again today&lt;br /&gt;
(10:44:32 AM) berwin22: k&lt;br /&gt;
(10:45:03 AM) berwin22: I think Sevien gave mark svn access this week?&lt;br /&gt;
(10:45:41 AM) courtney: yes indeed&lt;br /&gt;
(10:46:44 AM) berwin22: I had a hell of a time getting our windows 7 vm running https://projects.artefactual.com/issues/482&lt;br /&gt;
(10:48:14 AM) berwin22: that's it from me&lt;br /&gt;
(10:48:29 AM) courtney: also thanks to Sevein for helping look at the rights template&lt;br /&gt;
(10:48:35 AM) mike__: I've been mainly working on making the rights admin for user friendly and the AIP search.&lt;br /&gt;
(10:49:13 AM) courtney: this is testing - but i'm basically waiting for those two things to finish to text&lt;br /&gt;
(10:49:14 AM) courtney: test&lt;br /&gt;
(10:49:15 AM) ARTi1: I was working on some elasticsearch upstart scripts w/ evelyn,  pretty sure its solved&lt;br /&gt;
(10:49:49 AM) courtney: ARTi1: i've had rogue indexing failures at both aip indexing and transfer indexing&lt;br /&gt;
(10:49:50 AM) mike__: ARTi1: Nice!&lt;br /&gt;
(10:50:20 AM) ARTi1: courtney: you could be having a issue with a old dev installation.  &lt;br /&gt;
(10:50:43 AM) courtney: i have so many issues :-(&lt;br /&gt;
(10:50:53 AM) mike__: courtney: I'll give you some commands to run to delete your indexes.&lt;br /&gt;
(10:51:38 AM) courtney: thanks&lt;br /&gt;
(10:52:13 AM) ARTi1: testing?&lt;br /&gt;
(10:52:39 AM) courtney: i found a few issues with premis 2.2 conformity, but mike__ and berwin22 will clear those up&lt;br /&gt;
(10:53:10 AM) ARTi1: notes so far: https://www.archivematica.org/wiki/Meeting_20120801&lt;br /&gt;
(10:53:11 AM) courtney: i'm waiting on mike__'s work with the rights template and aip search to test those &lt;br /&gt;
(10:54:04 AM) courtney: documentation - i don't see getting any of this done until after SAA next week&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Meeting_20120801&amp;diff=6116</id>
		<title>Meeting 20120801</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Meeting_20120801&amp;diff=6116"/>
		<updated>2012-08-01T17:54:46Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Artefactual Systems, Internal Archivematica Dev Mtg, 2012-03-21&lt;br /&gt;
&lt;br /&gt;
= Development =&lt;br /&gt;
&lt;br /&gt;
* Mike and Courtney are focusing today on finishing up rights template and the bagged transfer issue&lt;br /&gt;
* Mike will be working on rights and AIP search and the zipped bag &lt;br /&gt;
* Joseph and Austin are testing converting pst's to maildirs&lt;br /&gt;
* Sevein helped look at the rights template&lt;br /&gt;
* Austin and Evelyn worked on the elasticsearch upstart&lt;br /&gt;
&lt;br /&gt;
= Deployment =&lt;br /&gt;
&lt;br /&gt;
* Joseph had quite ''the experience'' getting the windows 7 vm running&lt;br /&gt;
&lt;br /&gt;
= Testing =&lt;br /&gt;
* Courtney has been testing AIP indexing with elasticsearch&lt;br /&gt;
* Courtney found a few issues with premis 2.2 conformity,&lt;br /&gt;
* Courtney will test rights template and aip search (not until after SAA next week)&lt;br /&gt;
&lt;br /&gt;
= Documentation =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=chat log=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Meeting_20120801&amp;diff=6114</id>
		<title>Meeting 20120801</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Meeting_20120801&amp;diff=6114"/>
		<updated>2012-08-01T17:53:00Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Artefactual Systems, Internal Archivematica Dev Mtg, 2012-03-21&lt;br /&gt;
&lt;br /&gt;
= Development =&lt;br /&gt;
&lt;br /&gt;
* Mike and Courtney are focusing today on finishing up rights template and the bagged transfer issue&lt;br /&gt;
* Mike will be working on rights and AIP search and the zipped bag &lt;br /&gt;
* Joseph and Austin are testing converting pst's to maildirs&lt;br /&gt;
* Sevein helped look at the rights template&lt;br /&gt;
* Austin and Evelyn worked on the elasticsearch upstart&lt;br /&gt;
&lt;br /&gt;
= Deployment =&lt;br /&gt;
&lt;br /&gt;
* Joseph had quite ''the experience'' getting the windows 7 vm running&lt;br /&gt;
&lt;br /&gt;
= Testing =&lt;br /&gt;
* Courtney has been testing AIP indexing with elasticsearch&lt;br /&gt;
&lt;br /&gt;
= Documentation =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=chat log=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Meeting_20120801&amp;diff=6113</id>
		<title>Meeting 20120801</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Meeting_20120801&amp;diff=6113"/>
		<updated>2012-08-01T17:52:40Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Artefactual Systems, Internal Archivematica Dev Mtg, 2012-03-21&lt;br /&gt;
&lt;br /&gt;
= Development =&lt;br /&gt;
&lt;br /&gt;
* Mike and Courtney are focusing today on finishing up rights template and the bagged transfer issue&lt;br /&gt;
* Mike will be working on rights and AIP search and the zipped bag &lt;br /&gt;
* Joseph and Austin are testing converting pst's to maildirs&lt;br /&gt;
* Sevein helped look at the rights template&lt;br /&gt;
* Austin and Evelyn worked on the elasticsearch upstart&lt;br /&gt;
&lt;br /&gt;
= Deployment =&lt;br /&gt;
&lt;br /&gt;
* Joseph had quite '''the experience''' getting the windows 7 vm running&lt;br /&gt;
&lt;br /&gt;
= Testing =&lt;br /&gt;
* Courtney has been testing AIP indexing with elasticsearch&lt;br /&gt;
&lt;br /&gt;
= Documentation =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=chat log=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Meeting_20120801&amp;diff=6111</id>
		<title>Meeting 20120801</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Meeting_20120801&amp;diff=6111"/>
		<updated>2012-08-01T17:51:45Z</updated>

		<summary type="html">&lt;p&gt;Austin: Created page with &amp;quot;Artefactual Systems, Internal Archivematica Dev Mtg, 2012-03-21  = Development =  * Mike and Courtney are focusing today on finishing up rights template and the bagged transfe...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Artefactual Systems, Internal Archivematica Dev Mtg, 2012-03-21&lt;br /&gt;
&lt;br /&gt;
= Development =&lt;br /&gt;
&lt;br /&gt;
* Mike and Courtney are focusing today on finishing up rights template and the bagged transfer issue&lt;br /&gt;
* Mike will be working on rights and AIP search and the zipped bag &lt;br /&gt;
* Joseph and Austin are testing converting pst's to maildirs&lt;br /&gt;
* Sevein helped look at the rights template&lt;br /&gt;
* Austin and Evelyn worked on the elasticsearch upstart&lt;br /&gt;
&lt;br /&gt;
= Deployment =&lt;br /&gt;
&lt;br /&gt;
* Joseph had '''quite the experience''' getting the windows 7 vm running&lt;br /&gt;
&lt;br /&gt;
= Testing =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Documentation =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=chat log=&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
	<entry>
		<id>https://wiki.archivematica.org/index.php?title=Installation&amp;diff=6050</id>
		<title>Installation</title>
		<link rel="alternate" type="text/html" href="https://wiki.archivematica.org/index.php?title=Installation&amp;diff=6050"/>
		<updated>2012-07-06T21:32:36Z</updated>

		<summary type="html">&lt;p&gt;Austin: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Technical Requirements==&lt;br /&gt;
* Workstation: Dual Core+ CPU, 1GB+ RAM, 7GB HD plus the disk space required for the collection&lt;br /&gt;
* Enabled ports: http, mysqld, gearman, nfs, ssh&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
* [[Install-0.9-beta|Install Release 0.9-beta]]&lt;br /&gt;
&lt;br /&gt;
* [[Install|previous releases]]&lt;/div&gt;</summary>
		<author><name>Austin</name></author>
	</entry>
</feed>