Difference between revisions of "Install-0.7-alpha"

From Archivematica
Jump to navigation Jump to search
Line 4: Line 4:
  
 
==Ubuntu Repository Package==
 
==Ubuntu Repository Package==
'''*EXPLAIN* *LINK*'''
+
A fresh Xubuntu 10.04 is suggested when installing packages,
Archivematica is available through [ PPA]
+
[http://cdimage.ubuntu.com/xubuntu/releases/10.04/release/ Xubuntu Download]
 +
(tested w/ x86 however 64-bit packages are available, testers welcome!)
 +
 
 +
add the archivematica PPAs:
 +
<pre>
 +
sudo add-apt-repository ppa:archivematica/daily
 +
sudo add-apt-repository ppa:archivematica/externals
 +
</pre>
 +
 
 +
install archivematica-shotgun(remember your mysql password):
 +
<pre>
 +
sudo aptitude update
 +
sudo aptitude install archivematica-shotgun
 +
</pre>
 +
 
 +
run vmInstaller-environment.sh(you will be asked for your mysql password):
 +
<pre>
 +
sudo /usr/share/archivematica/vm-includes/vmInstaller-enviroment.sh
 +
</pre>
 +
 
 +
On a machine running Thunar (xubuntu 10.04). Run this to include the right click scripts.
 +
<pre>
 +
/usr/share/archivematica/thunarUCA/addArchivematicaGUIScripts.sh
 +
</pre>
 +
 
 +
Add Crontab for quarantine check
 +
<pre>
 +
sudo crontab -e
 +
</pre>
 +
add the following:
 +
<pre>
 +
* * * * * flock -xn /var/lock/quarantine.lock /usr/lib/archivematica/MCPServer/delay/delay.py 60 "/var/archivematica/sharedDirectory/watchedDirectories/quarantined"
 +
</pre>
 +
 
 +
reboot machine:
 +
<pre>
 +
sudo shutdown -r now
 +
</pre>
  
 
==Virtual appliance==
 
==Virtual appliance==

Revision as of 14:20, 17 February 2011

Main Page > Software > Install > Release 0.7-alpha

There are multiple ways to install and use Archivematica 0.7-alpha.

Ubuntu Repository Package

A fresh Xubuntu 10.04 is suggested when installing packages, Xubuntu Download (tested w/ x86 however 64-bit packages are available, testers welcome!)

add the archivematica PPAs:

sudo add-apt-repository ppa:archivematica/daily
sudo add-apt-repository ppa:archivematica/externals

install archivematica-shotgun(remember your mysql password):

sudo aptitude update
sudo aptitude install archivematica-shotgun

run vmInstaller-environment.sh(you will be asked for your mysql password):

sudo /usr/share/archivematica/vm-includes/vmInstaller-enviroment.sh

On a machine running Thunar (xubuntu 10.04). Run this to include the right click scripts.

/usr/share/archivematica/thunarUCA/addArchivematicaGUIScripts.sh

Add Crontab for quarantine check

sudo crontab -e

add the following:

* * * * * flock -xn /var/lock/quarantine.lock /usr/lib/archivematica/MCPServer/delay/delay.py 60 "/var/archivematica/sharedDirectory/watchedDirectories/quarantined"

reboot machine:

sudo shutdown -r now

Virtual appliance

1. What is a virtual appliance?

2. Download your preferred virtual appliance format (**UPDATE**md5sum.list):

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.

Live USB key

1. Download this .raw file: archivematica-0.7-*UPDATE*.raw (*? GB)

2. Use it to create a Live USB key: Build a Live USB disk

3. See these instructions for getting started with the Live USB key: Use the Live USB

Checkout from Subversion Repository

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.

*EXPLAIN* *LINK* [Development_environment] **UPDATE** **Copy/explain how to checkout the 0.7 release revision.**