Jenkins (Hudson) on Ubuntu 10.04 LTS
This is VERY simple. Don't be afraid of using this alternate repo for your Ubuntu Server. As of now, it doesn't seem to update any other software other than Jenkins itself. However, I would still recommend firing up a Virtual Machine to test it real quick before you begin deploying on a mission critical server.
The first step is to add the Jenkins key to your apt.
wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add -
Then add the repo to your sources list (/et/apt/sources.list). I just added it to the bottom with a quick #comment to let others know what it is:
#Jenkins CI Server Repo
deb http://pkg.jenkins-ci.org/debian binary
Now update and install with aptitude:
sudo aptitude update sudo aptitude install jenkins
Warning:
When I first started. I installed Tomcat during the Ubuntu setup. I had read that would be the preferred way to deploy Hudson (Hudson was renamed Jenkins due to a trademark dispute with Oracle). Don't do this!! If you do, just aptitude remove tomcat6
and service restart jenkins.