|
The most recent URD version is 1.0.1. The easiest way of installing is by using the ubuntu package: Alternatively, you can install from source: See below for information on installing URD. The following versions are outdated and shouldn't be used, but for nostalgic purposes are still available here: (Not hyperlinked on purpose) - http://urdland.com/urd_1.0.1-1_all.deb
- http://urdland.com/urd-1.0.1.tar.gz
- http://urdland.com/urd_0.6.2-2_all.deb
- http://urdland.com/urd-0.6.2-1.tar.gz
- http://urdland.com/urd_0.6.2-1_all.deb
- http://urdland.com/urd-0.6.2.tar.gz
- http://urdland.com/urd_0.6.1-1_all.deb
- http://urdland.com/urd-0.6.1.tar.gz
- http://urdland.com/urd_0.6.0-1_all.deb
- http://urdland.com/urd-0.6.0.tar.gz
- http://urdland.com/urd_0.5.5-1_all.deb
- http://urdland.com/urd-0.5.5.tar.gz
- http://urdland.com/urd-0.5.4.tar.gz
- http://urdland.com/urd-0.5.3.tar.gz
- http://urdland.com/urd-0.5.2.tar.gz
- http://urdland.com/urd-0.5.1.tar.gz
- http://urdland.com/urd-0.5.0.tar.gz
- http://urdland.com/urd-0.4.1.tar.gz
- http://urdland.com/urd-0.4.tar.gz
- http://urdland.com/urd-0.4.tar.gz
- http://urdland.com/urd-0.3.1.tar.gz
- http://urdland.com/urd-0.3.tar.gz
- http://urdland.com/urd-0.2.tar.gz
- http://urdland.com/urd-0.1.tar.gz
Installation(See below for information with regards to updating an existing URD) From the debian package:Download to your debian-based (e.g. Debian or Ubuntu) linux PC. Doubleclick on the file to install, or alternatively run: # sudo dpkg -i urd_1.0.1-1_all.deb (This will install URD in /usr/share/urd, and add an apache alias for /urd to that directory) Change PHP's max memory usage: # sudo vi /etc/php5/cli/php.ini memory_limit = 128M Uncomment the include path (for Smarty): # sudo vi /etc/php5/apache2/php.ini include_path = ".:/usr/share/php" Then go to http://localhost/urd/ and follow the installation instructions. From source:
Arie was so nice to make a quick installation manual for Ubuntu 7.10, which should be similar for newer versions as well. With a bit of tweaking these are the steps: Installing the web server, database server, and script processor: # sudo apt-get update # sudo apt-get upgrade # sudo apt-get install apache2 php5 mysql-server # sudo apt-get install php5-cli php5-mysql php5-xmlrpc php5-curl # sudo apt-get install yydecode unrar par2 trickle smarty Change PHP's max memory usage: # sudo vi /etc/php5/cli/php.ini memory_limit = 128M Uncomment the include path (for Smarty): # sudo vi /etc/php5/apache2/php.ini include_path = ".:/usr/share/php"
Restart Apache: # /etc/init.d/apache2 restart Download the webcomponents and change permissions: # sudo cd /var/www/ # wget urdland.com/urd-1.0.1.tar.gz # sudo tar zxf urd-1.0.1.tar.gz # mv urd-1.0.1 urd # sudo chown -R www-data:www-data urd/ # sudo chmod -R u+w urd/
Optionally create urd user for dropping privileges to: # sudo ./install.sh (This is only needed if you tend to run ./urdd.sh manually and as root) URD configuration and installation: Now you can start the installation by accessing the URD website address! (http://[YOUR IP-ADDRESS OR HOSTNAME]/urd/) UpdatingIf you are already running URD and wish to update it to the latest version, this is what you should do: From the debian package:Download to your debian-based (e.g. Debian or Ubuntu) linux PC. Doubleclick on the file to install, or alternatively run: # sudo dpkg -i urd_1.0.1-1_all.deb That should be all! From source:
Download the webcomponents and change permissions: # sudo cd /var/www/ # wget urdland.com/urd-1.0.1.tar.gz # sudo tar zxf urd-1.0.1.tar.gz # sudo cp -rf urd-1.0.1 urd # sudo chown -R www-data:www-data urd/ # sudo chmod -R u+w urd/ # cd install # sudo ./update.sh This should upgrade your old database, while keeping the settings etc!
|