This is a guide to install Redmine (svn trunk) on Ubuntu 9.10.
The assumed location of Redmine is /srv/redmine
Phase 1: Setup Redmine
Step 1
Install required packages.
$ sudo apt-get install ruby rake ruby-dev rubygems libmysqlclient-dev libopenssl-ruby
Step 2
Check out Redmine trunk.
$ cd /srv
$ sudo svn co http://redmine.rubyforge.org/svn/trunk redmine
Step 3
Install required ruby gems:
$ sudo gem install rails mongrel mongrel_cluster daemons mysql actionmailer
Note 1: We may ... read more ...
12.23.2009 // Continue Reading »
In Linux, files which name start by a dot ‘.’ are hidden by default in most file managers. However, there are cases when we want to hide dot-file from our view. For examples:
Desktop folder in our home folder.
Dropbox
lost+found directory at the partition root
…
In Nautilus (default GNOME file manager) there’s a way. Add a file named
.hidden
with each line is the ... read more ...
09.16.2009 // Continue Reading »
The GNOME-Colors is a project that aims to make the GNOME desktop as elegant, consistent and colorful as possible.
The current goal is to allow full color customization of themes, icons, GDM logins and splash screens. There are already five full color-schemes available; Brave (Blue), Human (Orange), Wine (Red), Noble (Purple) and Wise (Green).
GNOME-Colors is mostly inspired/based on Tango, GNOME, Elementary, ... read more ...
06.10.2009 // Continue Reading »
If you want to update all the packages other than one package in your Ubuntu system follow this procedure
There are three ways of holding back packages, with dpkg, aptitude or with dselect.
Using dpkg
Put a package on hold
sudo echo “package hold” | dpkg --set-selections
Example
sudo echo “apache2 hold” | dpkg --set-selections
Remove the hold
sudo echo “package install” | dpkg --set-selections
Example
sudo echo “apache2 install”
... read more ...
06.09.2009 // Continue Reading »