Linux Setup: Difference between revisions
Line 143: | Line 143: | ||
</pre> | </pre> | ||
== | ==Tomcat== | ||
Several of these systems require additional programs from apt-get in addition to specific file downloads. At this time the process semms to work fine with the packages install in the general section above, the main required package will have been: '''openjdk-7-jdk'''. | Several of these systems require additional programs from apt-get in addition to specific file downloads. At this time the process semms to work fine with the packages install in the general section above, the main required package will have been: '''openjdk-7-jdk'''. | ||
* The Tomcat binaries can be downloaded directly from their [http://tomcat.apache.org/ website]. I downloaded the newest '''core''' binary, which at the time of writing was [http://mirror.catn.com/pub/apache/tomcat/tomcat-7/v7.0.27/bin/apache-tomcat-7.0.27.tar.gz apache-tomcat-7.0.27.tar.gz]. | * The Tomcat binaries can be downloaded directly from their [http://tomcat.apache.org/ website]. I downloaded the newest '''core''' binary, which at the time of writing was [http://mirror.catn.com/pub/apache/tomcat/tomcat-7/v7.0.27/bin/apache-tomcat-7.0.27.tar.gz apache-tomcat-7.0.27.tar.gz]. |
Revision as of 17:11, 14 May 2012
Ubuntu Setup
When setting up new workstations with the Ubuntu Linux system the following pieces of software, plus their dependencies are installed. In addition to installing the listed packages some additional work needs to be done at this time to ensure ODBC/FreeTDS can talk to SQL Server 2005.
Linux Working with Multiple Names and Services
National Gallery Digital Documentation
Current Version
This page is currently set up for Ubuntu 11.10, Oneiric Ocelot Jpadfield 20:23, 6 November 2011 (UTC)
Need the following to install gnome:
- sudo apt-get install gnome-session-fallback
With the upgrade to Ubuntu 11.10:
General:
- sudo apt-get install bison flex automake1.10 make libfftw3-dev libxml2-dev libpango1.0-dev libfreetype6-dev g++ libatk1.0-dev intltool imagemagick libmagick++-dev indent gpp openexr libopenexr-dev libgtk-3-dev libgsl0-dev openssh-server python-dev liboil0.3-dev swig libimage-exiftool-perl libtiff-tools libtool samba smbfs libdatetime-perl subversion libmatio-dev openjdk-7-jdk libgoffice-0.8-dev pngtools gimp liborc-0.4-dev libcfitsio3-dev synaptic gobject-introspection geany geany-plugin-spellcheck geany-plugin-extrasel geany-plugin-addons ia32-libs
- 32-bit machine will not need the ia32-libs packages.
Google Chrome from PPA
- wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
- sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
- sudo apt-get update
- sudo apt-get install google-chrome-stable
LAMP
Additional steps need to be defines for setting up the security issues.
- sudo apt-get install apache2 php5 mysql-server libapache2-mod-auth-mysql php5-mysql php5-gd phpmyadmin libapache2-mod-fastcgi mysql-workbench php5-cli php5-sybase php5-curl
phpMyAdmin
To set up under Apache all you need to do is include the following line in /etc/apache2/apache2.conf.
Include /etc/phpmyadmin/apache.conf
And then restart apache:
sudo /etc/init.d/apache2 restart
Vips
For basic install just get it from the debian repository:
- sudo apt-get install nip2 libvips-tools libvips-dev libvips-doc python-vipscc
To build from the source code:
- Download and build the latest source code for vips and nip2 from the Vips website.
Preparations
Ensure something simliar to the following is in your .basrc file:
export VIPSHOME=/usr/local/vips export MANPATH=$MANPATH:$VIPSHOME/man export PATH=$VIPSHOME/bin:"${PATH}" export LD_LIBRARY_PATH=/usr/local/lib:$VIPSHOME/lib export PKG_CONFIG_PATH=/usr/lib/pkgconfig:/usr/lib32/pkgconfig:/usr/share/pkgconfig:$VIPSHOME/lib/pkgconfig:
- sudo mkdir /usr/local/vips-X.XX
- sudo ln -s /usr/local/vips-X.XX /usr/local/vips
cd into vips source code dir
- ./configure --prefix=/usr/local/vips-X.XX
- make
- sudo make install
cd into nip2 source code dir
- ./configure --prefix=/usr/local/vips-X.XX
- make
- sudo make install
Optional Extras
Nvidia
- Not been checked for 12.04
To install the latest Nvidia drivers:
sudo apt-add-repository ppa:ubuntu-x-swat/x-updates sudo apt-get update sudo apt-get install nvidia-current
VPN
- Not been checked for 12.04
sudo apt-get install pptpd pptp-linux network-manager-pptp bcrelay
You also need to add new key refuse-eap in the network-manager configuration, this can be done through the gconf-editor, for more details please see the following webpage.
ODBC/TDS
- Not been checked for 12.04
sudo apt-get install unixodbc unixodbc-bin unixodbc-dev tdsodbc libdbd-odbc-perl php5-odbc freetds-dev sqlrelay-freetds sqsh
Configuration
Add server details to the /etc/freetds/freetds.conf file, for example:
[name] host = name.full.server.address.com port = 1433 tds version = 8.0 client charset = CP1252
Add server details to the /etc/odbc.ini file, for example:
[name] Description = Driver = TDS Servername = name Database = dbname UID = USERNAME PWD = PASSWORD Port= 1433
Set system details to the /etc/odbcinst.ini file, for example:
[ODBC] Trace = No TraceFile = /tmp/sql.log ForceTrace = No Pooling = No [TDS] Description = Freetds.org Driver = /usr/lib/odbc/libtdsodbc.so Setup = /usr/lib/odbc/libtdsS.so FileUsage = 1 CPTimeout = CPReuse =
Tomcat
Several of these systems require additional programs from apt-get in addition to specific file downloads. At this time the process semms to work fine with the packages install in the general section above, the main required package will have been: openjdk-7-jdk.
- The Tomcat binaries can be downloaded directly from their website. I downloaded the newest core binary, which at the time of writing was apache-tomcat-7.0.27.tar.gz.
- Unpack the software directory from the downloaded file and move it to a good location, such as /usr/local/. I also set up a version free symbolic link to the downloaded folder, though I am not sure it will be needed.
tar xzvf apache-tomcat-7.0.27.tar.gz sudo mv apache-tomcat-7.0.27 /usr/local/. sudo ln -s /usr/local/apache-tomcat-7.0.27 /usr/local/apache-tomcat
- The Tomcat service can then started up:
/usr/local/apache-tomcat/bin/startup.sh
- Or shut down using:
/usr/local/apache-tomcat/bin/shutdown.sh
- After startup, the default web applications included with Tomcat will be available by visiting http://localhost:8080/.
- To make use of the Application Manager you will need to add user details to the /usr/local/apache-tomcat/conf/tomcat-users.xml file. For example adding lines similar to:
<role rolename="manager-gui"/> <role rolename="manager-script"/> <role rolename="manager-jmx"/> <role rolename="manager-status"/> <user username="AdminUsername" password="XXXXXXXXXXX" roles="manager-gui,manager-script,manager-jmx,manager-status"/>
For further information about configuration and setup see the documentation section of the Tomcat website.
Redirecting Tomcat services
- Not been checked for 12.04
- Install apache module:
sudo apt-get install libapache2-mod-jk
- Update/etc/libapache2-mod-jk workers.properties to add lines similar to:
workers.tomcat_home=/usr/local/apache-tomcat workers.java_home=/usr/lib/jvm/java-6-openjdk worker.list=worker1, worker2 worker.worker1.port=8009 worker.worker1.host=localhost worker.worker1.type=ajp13 worker.worker2.port=8009 worker.worker2.host=localhost worker.worker2.type=ajp13
- Update /etc/apache2/mods-enabled/jk.load to:
LoadModule jk_module /usr/lib/apache2/modules/mod_jk.so JkWorkersFile /etc/libapache2-mod-jk/workers.properties JkLogFile /var/log/apache2/mod_jk.log JkLogLevel error
- Restart apache2.
- Restart tomcat.
Auto Startup
- Not been checked for 12.04
Create a new text file:
sudo gedit /etc/init.d/tomcat
Copy and paste the following code into the new file and save it.
#!/bin/sh case "$1" in 'start') /usr/local/apache-tomcat/bin/startup.sh ;; 'stop') /usr/local/apache-tomcat/bin/shutdown.sh ;; *) echo "Usage: $0 { start | stop }" ;; esac exit 0
The Tomcat server will now automatically start/shutdown up on Boot/Shutdown. It can also be manually started and shutdown using the following commands:
sudo /etc/init.d/tomcat start
sudo /etc/init.d/tomcat stop
MediaWiki
Tex support requires:
sudo apt-get install ocaml dvipng cjk-latex texlive-math-extra
Perlwikipedia:
sudo apt-get install libwww-mechanize-perl libxml-simple-perl
- Then download the build the package from here.