Update CentOS 5.4 to CentOS 5.5

Posted on Tue 19 April 2011 in Linux • Tagged with CentOS

How to update CentOS 5.3 to CentOS 5.4

It's done.

CentOS 5.4 was released on 22. Oct 2009

If you wan to update, first verify there are no known problems or version conflicts with your software.

Be sure you have a backup and take a snapshot if …


Continue reading

Install Tor on Fedora

Posted on Tue 19 April 2011 in Fedora • Tagged with Fedora, Tor

This tutorial explains how to install Tor on a Fedora system. If you are looking for an easy to use solution check you this new all in one package here.

There is a Fedora package of Tor. We need to install 2 packages:

  • tor
  • privoxy

(if you don't install tor …


Continue reading

Install ntop on CentOS

Posted on Tue 19 April 2011 in CentOS • Tagged with CentOS, ntop

Install rpmforge repository: http://wiki.centos.org/AdditionalResources/Repositories/RPMForge

There is an ntop rpm in the rpmforge repository:

yum install ntop

There is a bug in the /etc/init.d/ntop startscript we need to fix. Open the file in your favorite editor for example vim:

vim /etc/init …

Continue reading

Automatic updates on CentOS

Posted on Tue 19 April 2011 in CentOS • Tagged with CentOS

If you want to be sure all security updates are installed automatic you can use yum-cron. Be sure you have configured your yum correctly not to update wrong things from different repositories.

  1. Install yum-cron
yum install yum-cron
  1. add yum-cron to your runlevels
chkconfig --levels 35 yum-cron on
  1. start yum-cron
service …

Continue reading

Setup bridge device on CentOS

Posted on Tue 19 April 2011 in misc • Tagged with CentOS, KVM

Howto setup a bridge device on CentOS or Fedora.

If you need to bring your KVM VM's into the same local area network like your host is in you need to configure a bridge device.

  1. Install all needed packages:

    yum install bridge-utils

    yum install tunctl

  2. Disable NetworkManager and enable network …


Continue reading

Install ejabberd on CentOS

Posted on Tue 19 April 2011 in CentOS • Tagged with CentOS, Jabber

ejabberd is one of the most popular jabber servers. This howto explains how to run your own jabber server on CentOS using ejabberd.

Installation

First you need to activate EPEL-Repository on your CentOS machine.

install it via yum:

yum install ejabberd

Configuration

configure your firewall to allow following default ports …


Continue reading

Build Squid with --enable-ssl on Debian

Posted on Tue 19 April 2011 in Debian • Tagged with Debian, Squid, Linux

If you need an SSL-proxy connection via squid on Debian/Linux you need to recompile the squid-2.7 package with --enable-ssl option.

Here a short step by step  tutorial how to rebuild a squid .deb package with --enable-ssl option.

Enable source repository on your buildmachine. To describe it in words …


Continue reading

Install Tor bridge on FreeBSD

Posted on Tue 19 April 2011 in FreeBSD • Tagged with FreeBSD, Tor

If you want to run tor on FreeBSD 8.0 you first have to update your port tree. If you not used with port please see the FreeBSD documentation.

This should fetch and install the newsest port tree:

portsnap fetch
portsnap extract

Now we need to install openssl from port …


Continue reading

Install Eclipse CDT on Windows 7

Posted on Tue 19 April 2011 in Development • Tagged with C++, Eclipse, mingw, minsys, Windows

How to install Eclipse CDT on Windows 7.

First of all we need a c++ compiler for Windows. The most popular c++ compiler is mingw. You can download it on the sourceforge project page.

We need 2 packages from this page.

1. mingw installer

2. minsys installer

First step is …


Continue reading

Install Git plugin for Eclipse

Posted on Tue 19 April 2011 in Development • Tagged with Eclipse, Git

Git became one of the most popular distributed revision control system. It was developed by the linux kernel maintainer Linus Torvalds and has a big community. To include Git in your workflow or make it possible to review a repository you are working on it's nice to have it included …


Continue reading