from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

8190

userrating:

no votes yet


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Installation Guides

Summary

This text describes the installation and configuration of a heavy duty internet server running a gentoo linux distribution. The server will have to run 24/7 with minimum downtime for maintenance and is connected to a 100MBit Internet backbone. I choose gentoo as distribution because of the really fast availability of new versions and security patches for all installed packages. Everything will be compiled for the special needs of this maschine with various security enhancement features which ship with the available glibc/gcc versions (like stack smashing protections).

Changelog

Previous versions used to split the swap space across the raid harddiscs and not to mirror it. In case of a hard disc failure your system might(will) crash. This is not intended... (Thanks to Nick Rosier to point this out).

Note

This howto is NOT suited for users who run their first linux (or gentoo) install. Previous linux knowledge is needed, not every detail will be explained here.

System descriptions

Hardware

The system is a dual Xeon 2.66 Ghz with 512KB cache size and enabled hyperthreading.

System storage will be 2 80 GB HDDs running in a raid 1 with network backup every night. The filesystem will be XFS on a software raid 1 (mirroring) system.

Memory: 1GB, build in network card, no sound used, onboard graphics.

The machine will have an UPS and external cooling and will be mounted in a 19" rack.

Software

The system will be a heavy duty webserver running at least the following services/daemons:

  • Apache 2 as webserver (with many virtual hosts)
  • openLDAP for authentication for smtp/imap/pop3 and other login services, but not for system login
  • postfix with sasl2 support as MTA (Mail Transfer Agent)
  • courier-imap for imap access
  • courier-pop3
  • mysql as database backend
  • php (hardened) for various web frontends
  • LeopardCMS (a highspeed content management system written in C) for websites
  • ldapphpadmin for administrating the ldap server
  • squirrelmail as webmail service
  • awstats for website statistics

Installation

The basic installation is explained in the wonderful gentoo installation handbook.

I will only describe the modification on each step.

I will use a stage 1 installation with the minimal boot CD.

Installation in quick style (refer to the handbook if you don't know how to do the individual step(s))

Booting:

  • Boot from the CD, load the right network drivers
  • Change root password to something we know.
  • Configure the network with the given ip address dns servers etc.
  • Start sshd (optional)

Partitioning the hdd(s)

I'm using fdisk to partition the hdds, use whatever you like best.

Attention: To be able to use the raid 1, both hdds must be partitioned exactly identical, so write down the setting when partitioning.

My HDD layout :

/dev/hda1 boot partition 10 MB,  partition type: fd (Linux raid autodetect)
/dev/hda2 swap partition 250 MB, partition type: 82 (Linux swap)
/dev/hda3 root partition remaining space, partition type: fd (Linux raid autodetect)
The same applies to the 2nd HDD.

Setting up the raid 1

edit/create the file /etc/raidtab and enter the following (adjust the devices if neccessary)

raiddev         /dev/md0
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda1
raid-disk       0
device          /dev/hdc1
raid-disk       1

raiddev         /dev/md2
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda3
raid-disk       0
device          /dev/hdc3
raid-disk       1

In case you want to mirror the swap:

raiddev         /dev/md1
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda2
raid-disk       0
device          /dev/hdc2
raid-disk       1

Note: I do not use a raid for the swap, I will explain the swap setup a bit later.
Please also see the comment at the bottom of this page, why this may cause trouble on a harddisk failure.

start the raid by running

raidstart --all
enter "cat /proc/mdstat"

You should see something like this:

Personalities : [raid1]
md0 : active raid1 hda1[1] hdc1[1]
      XXX blocks [2/2] [UU]
md2 : active raid1 hda3[1] hdc3[1]
      YYY blocks [2/2] [UU]

Now, after your raid is up and running, don't think about touching /dev/hda or /dev/hdc directly again. Only use /dev/md0 or /dev/md2.

Applying a Filesystem to a Partition

create your filesystems like it is described in the handbook, only use /dev/md0 and /dev/md2 for the target devices.

Activate the Swap Partitions

Because we are using 2 identical hdds, we have 2 swap partitions that we enable both.

Later in the /etc/fstab config we can tune a bit to make our swap faster.

Mounting

Now we follow the handbook a bit for mounting and downloading the needed stage 1 tarball. Remember, use /dev/mdX as partitions.

Configuring the Compile Options

I prefer to to use the full make.conf.default for configuration, so I copy it over before editing.

cp /mnt/gentoo/etc/make.conf.default /mnt/gentoo/etc/make.conf
now we edit the file
nano -w /mnt/gentoo/etc/make.conf

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

CFLAGS="-march=pentium4 -O2 -pipe" be careful, if you enable the hardened toolchain, never use more than -O2 for compiling.

If you have an AMD cpu, or a pentium2/3 change the -march setting to your cpu.

I set the MAKEOPTS to -j5 (number of CPUs plus one) (2 x Xeon with HT enabled makes 4 virtual CPUs)

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

USE="-X -gtk -gnome -alsa mysql apache2 ssl ssh openldap\
sasl2 pam pic pie hardened hardenedphp xml vhosts"
I don't want X, gtk, gnome or alsa. (This is a server)

But I want mysql, apache, a.s.o.

The flags pic, pie and hardened are used with the hardened toolchain provided by gentoo.

These make the executables less vulnerable to buffer overflow and other programming mistakes. As of the writing of this howto, the flags "pic, pie and hardened" cause some problems with some packages. Manual patching and fiddling may be needed.

UPDATE: I installed another server lately (Nov. 2005), no patching was needed any more.

Follow the installation manual including the Stage1 to Stage2 section.

It is always useful to download the packages first and after that, start the real bootstrapping process. There is nothing better than having a bootstrap failing after 60+ mins on the last package because the file was damaged on the ftp mirror.

Proceed from stage2 to stage3 the documented way.

This will take a while, in my case 71 packages will be installed.

Just keep yourself occupied with something, like writing a howto or something ;)

Now its time to configure the kernel as described in the manual

  • set the timezone
  • install a kernel. I used a hardened-sources kernel (version 2.6.7-r7)
  • check the symlink /usr/src/linnux
  • configure the kernel with make menuconfig
  • make sure to check SMP support in case of a multiple CPU machine.
  • If you use XFS and like to not loose parts of your filesystem data, disable preemptible kernel.
  • Think twice before enabling power management functions like software suspend.
  • You really don't want that your server goes into suspend mode during the night.
  • Warning: If you use MySQL, do not enable the PaX feature "Disallow ELF text relocations". Enabling this makes you unable to compile and run MySQL. *sniff*
  • compile the kernel (remember to use the -j5 flag like in the MAKEOPTS line).
  • install the kernel.

configuring /etc/fstab

enter the data as described in the manual, but use /dev/md0 and /dev/md2

for the swap line use the following 2 lines

/dev/hda2  none swap sw,pri=2 0 0
/dev/hdc2  none swap sw,pri=2 0 0
This way the kernel uses both hdds for swap with the same priority, this means some data will be swapped to one hdd, some to the other and both could be read/written at the same time. This gives a speed boost when you need swap (which should never happen on normal conditions...).
Or use
/dev/md2  none swap sw,pri=2 0 0
in case of a mirrored swap partion.

Enter the networking information as described in the handbook (ip, domainname, ...)

Continue with the installation manual until you got through the manual and

have the basic system running as you want.

While writing this howto, it was planned to have a part 2 to describe the installation of additional software like apache, postfix and others.

But since they are installed exactly as on a "normal" gentoo distribution, a part 2 is not really needed.

comments

Nick Rosier wrote in an email:
I just read this setup. IMHO there's a little flaw in the setup. Goal is to have as little downtime as possible. To gain maybe a bit more performance the author decided not to mirror swap. This is a bad idea. In case of a hard-disk failure part of your swapspace will be unavailable/corrupted meaning your system will possibly crash. I doubt that is what one wants.
Nick has a valid point.
In this setup I use ide harddisks. (yes, I know, SCSI would be better...)
If one of the hdds dies, its very likely that the system crashes any way. This is my experience with ide hdds.
If you use SCSI or SATA-drives, the situation might change. On those drives it might be better to use raid on the swap, too.
rate this article:
current rating: average rating: 2.2 (4 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back
Please read "Why adblockers are bad".



other Ads
Stellenangebote
Stellenangebote
für Fach- und
Führungskräfte
www.nachoben.com
Trace My Cash
Wenn Sie sich schon immer mal gefragt haben, wo eigentlich Ihr geliebtes Bargeld geblieben ist, finden Sie hier vielleicht die Antwort.
www.tracemycash.com
Other free services
toURL.org
Shorten long
URLs to short
links like
http://tourl.org/2
tourl.org
.
FeedCollector
Combine various newsfeeds to one customized webpage
www.feedcollector.org
.
Reverse DNS lookup
Find out which hostname(s)
resolve to a
given IP or other hostnames for the server
www.reversednslookup.org

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2010-03-16
arptables - 0.0.3.4
Ebuild name:

net-firewall/arptables-0.0.3.4

Description

set up, maintain, and inspect the tables of ARP rules in the Linux k

Added to portage

2010-03-16

capistrano - 2.5.18
Ebuild name:

dev-ruby/capistrano-2.5.18

Description

A distributed application deployment system

Added to portage

2010-03-16

dejagnu - 1.4.4-r2
Ebuild name:

dev-util/dejagnu-1.4.4-r2

Description

framework for testing other programs

Added to portage

2010-03-16

ebtables - 2.0.9.2
Ebuild name:

net-firewall/ebtables-2.0.9.2

Description

Utility that enables basic Ethernet frame filtering on a Linux bridge

Added to portage

2010-03-16

font-alias - 1.0.2
Ebuild name:

media-fonts/font-alias-1.0.2

Description

X.Org font aliases

Added to portage

2010-03-16

font-arabic-misc - 1.0.1
Ebuild name:

media-fonts/font-arabic-misc-1.0.1

Description

X.Org arabic bitmap fonts

Added to portage

2010-03-16

font-bh-100dpi - 1.0.1
Ebuild name:

media-fonts/font-bh-100dpi-1.0.1

Description

X.Org Bigelow & Holmes bitmap fonts

Added to portage

2010-03-16

font-bh-75dpi - 1.0.1
Ebuild name:

media-fonts/font-bh-75dpi-1.0.1

Description

X.Org Bigelow & Holmes bitmap fonts

Added to portage

2010-03-16

font-bh-lucidatypewriter-100dpi - 1.0.1
Ebuild name:

media-fonts/font-bh-lucidatypewriter-100dpi-1.0.1

Description

X.Org Bigelow & Holmes Lucida bitmap fonts

Added to portage

2010-03-16

font-bh-lucidatypewriter-75dpi - 1.0.1
Ebuild name:

media-fonts/font-bh-lucidatypewriter-75dpi-1.0.1

Description

X.Org Bigelow & Holmes Lucida bitmap fonts

Added to portage

2010-03-16

font-bh-ttf - 1.0.1
Ebuild name:

media-fonts/font-bh-ttf-1.0.1

Description

X.Org Bigelow & Holmes TrueType fonts

Added to portage

2010-03-16

font-bh-type1 - 1.0.1
Ebuild name:

media-fonts/font-bh-type1-1.0.1

Description

X.Org Bigelow & Holmes Type 1 fonts

Added to portage

2010-03-16

font-bitstream-100dpi - 1.0.1
Ebuild name:

media-fonts/font-bitstream-100dpi-1.0.1

Description

X.Org Bitstream bitmap fonts

Added to portage

2010-03-16

font-bitstream-75dpi - 1.0.1
Ebuild name:

media-fonts/font-bitstream-75dpi-1.0.1

Description

X.Org Bitstream bitmap fonts

Added to portage

2010-03-16

font-bitstream-speedo - 1.0.1
Ebuild name:

media-fonts/font-bitstream-speedo-1.0.1

Description

Bitstream Speedo fonts

Added to portage

2010-03-16

font-bitstream-type1 - 1.0.1
Ebuild name:

media-fonts/font-bitstream-type1-1.0.1

Description

X.Org Bitstream Type 1 fonts

Added to portage

2010-03-16

font-cronyx-cyrillic - 1.0.1
Ebuild name:

media-fonts/font-cronyx-cyrillic-1.0.1

Description

X.Org Cronyx cyrillic fonts

Added to portage

2010-03-16

font-cursor-misc - 1.0.1
Ebuild name:

media-fonts/font-cursor-misc-1.0.1

Description

X.Org cursor font

Added to portage

2010-03-16

font-daewoo-misc - 1.0.1
Ebuild name:

media-fonts/font-daewoo-misc-1.0.1

Description

X.Org Daewoo fonts

Added to portage

2010-03-16

font-dec-misc - 1.0.1
Ebuild name:

media-fonts/font-dec-misc-1.0.1

Description

X.Org DEC fonts

Added to portage

2010-03-16

font-ibm-type1 - 1.0.1
Ebuild name:

media-fonts/font-ibm-type1-1.0.1

Description

X.Org IBM Courier font

Added to portage

2010-03-16

font-isas-misc - 1.0.1
Ebuild name:

media-fonts/font-isas-misc-1.0.1

Description

X.Org the Institute of Software, Academia Sinica (chinese) fonts

Added to portage

2010-03-16

font-jis-misc - 1.0.1
Ebuild name:

media-fonts/font-jis-misc-1.0.1

Description

X.Org JIS (japanese) fonts

Added to portage

2010-03-16

font-micro-misc - 1.0.1
Ebuild name:

media-fonts/font-micro-misc-1.0.1

Description

X.Org micro-misc font

Added to portage

2010-03-16

font-misc-cyrillic - 1.0.1
Ebuild name:

media-fonts/font-misc-cyrillic-1.0.1

Description

X.Org misc-cyrillic fonts

Added to portage

2010-03-16

font-misc-ethiopic - 1.0.1
Ebuild name:

media-fonts/font-misc-ethiopic-1.0.1

Description

Miscellaneous Ethiopic fonts

Added to portage

2010-03-16

font-misc-meltho - 1.0.1
Ebuild name:

media-fonts/font-misc-meltho-1.0.1

Description

X.Org Syriac fonts

Added to portage

2010-03-16

font-misc-misc - 1.1.0
Ebuild name:

media-fonts/font-misc-misc-1.1.0

Description

X.Org miscellaneous fonts

Added to portage

2010-03-16

font-mutt-misc - 1.0.1
Ebuild name:

media-fonts/font-mutt-misc-1.0.1

Description

X.Org ClearlyU fonts

Added to portage

2010-03-16

font-schumacher-misc - 1.1.0
Ebuild name:

media-fonts/font-schumacher-misc-1.1.0

Description

X.Org Schumacher fonts

Added to portage

2010-03-16

font-screen-cyrillic - 1.0.2
Ebuild name:

media-fonts/font-screen-cyrillic-1.0.2

Description

X.Org Screen cyrillic fonts

Added to portage

2010-03-16

font-sony-misc - 1.0.1
Ebuild name:

media-fonts/font-sony-misc-1.0.1

Description

X.Org Sony fonts

Added to portage

2010-03-16

font-sun-misc - 1.0.1
Ebuild name:

media-fonts/font-sun-misc-1.0.1

Description

X.Org Sun fonts

Added to portage

2010-03-16

font-util - 1.1.1-r1
Ebuild name:

media-fonts/font-util-1.1.1-r1

Description

X.Org font utilities

Added to portage

2010-03-16

font-winitzki-cyrillic - 1.0.1
Ebuild name:

media-fonts/font-winitzki-cyrillic-1.0.1

Description

X.Org Winitzki cyrillic font

Added to portage

2010-03-16

font-xfree86-type1 - 1.0.2
Ebuild name:

media-fonts/font-xfree86-type1-1.0.2

Description

X.Org XFree86 Type 1 font

Added to portage

2010-03-16

googleearth - 4.2.205.5730
Ebuild name:

sci-geosciences/googleearth-4.2.205.5730

Description

A 3D interface to the planet

Added to portage

2010-03-16

googleearth - 4.3.7284.3916
Ebuild name:

sci-geosciences/googleearth-4.3.7284.3916

Description

A 3D interface to the planet

Added to portage

2010-03-16

googleearth - 5.0.11733.9347
Ebuild name:

sci-geosciences/googleearth-5.0.11733.9347

Description

A 3D interface to the planet

Added to portage

2010-03-16

googleearth - 5.1.3533.1731-r1
Ebuild name:

sci-geosciences/googleearth-5.1.3533.1731-r1

Description

A 3D interface to the planet

Added to portage

2010-03-16

jabref - 2.6_beta3
Ebuild name:

app-text/jabref-2.6_beta3

Description

GUI frontend for BibTeX, written in Java

Added to portage

2010-03-16

libXt - 1.0.8
Ebuild name:

x11-libs/libXt-1.0.8

Description

X.Org Xt library

Added to portage

2010-03-16

lxde-meta - 0.5.0-r2
Ebuild name:

lxde-base/lxde-meta-0.5.0-r2

Description

Meta ebuild for LXDE, the Lightweight X11 Desktop Environment

Added to portage

2010-03-16

mod_wsgi - 3.2
Ebuild name:

www-apache/mod_wsgi-3.2

Description

An Apache2 module for running Python WSGI applications.

Added to portage

2010-03-16

pkgcore - 0.5.11.2
Ebuild name:

sys-apps/pkgcore-0.5.11.2

Description

pkgcore package manager

Added to portage

2010-03-16

scidavis - 0.2.4
Ebuild name:

sci-visualization/scidavis-0.2.4

Description

Scientific Data Analysis and Visualization

Added to portage

2010-03-16

taskcoach - 0.78.4
Ebuild name:

app-office/taskcoach-0.78.4

Description

Simple personal tasks and todo lists manager

Added to portage

2010-03-16

xine-lib - 1.1.18.1
Ebuild name:

media-libs/xine-lib-1.1.18.1

Description

Core libraries for Xine movie player

Added to portage

2010-03-16

xinput - 1.5.1
Ebuild name:

x11-apps/xinput-1.5.1

Description

Utility to set XInput device parameters

Added to portage

2010-03-16

zlib - 1.2.4
Ebuild name:

sys-libs/zlib-1.2.4

Description

Standard (de)compression library

Added to portage

2010-03-16

2010-03-15
AnyEvent - 5.2.5.1
Ebuild name:

dev-perl/AnyEvent-5.2.5.1

Description

provide framework for multiple event loops

Added to portage

2010-03-15

Audio-Wav - 0.11
Ebuild name:

dev-perl/Audio-Wav-0.11

Description

Modules for reading & writing Microsoft WAV files.

Added to portage

2010-03-15

Authen-SASL - 2.14
Ebuild name:

dev-perl/Authen-SASL-2.14

Description

A Perl SASL interface

Added to portage

2010-03-15

BSD-Resource - 1.29.04
Ebuild name:

dev-perl/BSD-Resource-1.29.04

Description

Perl module for BSD process resource limit and priority functions

Added to portage

2010-03-15

BerkeleyDB - 0.42
Ebuild name:

dev-perl/BerkeleyDB-0.42

Description

This module provides Berkeley DB interface for Perl.

Added to portage

2010-03-15

DateTime - 0.54
Ebuild name:

dev-perl/DateTime-0.54

Description

A date and time object

Added to portage

2010-03-15

DateTime-Format-Builder - 0.79.01
Ebuild name:

dev-perl/DateTime-Format-Builder-0.79.01

Description

Create DateTime parser classes and objects

Added to portage

2010-03-15

DateTime-Format-Builder - 0.80
Ebuild name:

dev-perl/DateTime-Format-Builder-0.80

Description

Create DateTime parser classes and objects

Added to portage

2010-03-15

DateTime-Format-Flexible - 0.15
Ebuild name:

dev-perl/DateTime-Format-Flexible-0.15

Description

Flexibly parse strings and turn them into DateTime objects

Added to portage

2010-03-15

DateTime-Format-Natural - 0.85
Ebuild name:

dev-perl/DateTime-Format-Natural-0.85

Description

Create machine readable date/time with natural parsing logic

Added to portage

2010-03-15

FreezeThaw - 0.50
Ebuild name:

dev-perl/FreezeThaw-0.50

Description

converting Perl structures to strings and back

Added to portage

2010-03-15

Getopt-Long-Descriptive - 0.085
Ebuild name:

dev-perl/Getopt-Long-Descriptive-0.085

Description

Getopt with usage text

Added to portage

2010-03-15

Graph - 0.94
Ebuild name:

dev-perl/Graph-0.94

Description

Data structure and ops for directed graphs

Added to portage

2010-03-15

Net-Twitter - 3.11012
Ebuild name:

dev-perl/Net-Twitter-3.11012

Description

A perl interface to the Twitter API

Added to portage

2010-03-15

URI - 1.53
Ebuild name:

dev-perl/URI-1.53

Description

A URI Perl Module

Added to portage

2010-03-15

amarok - 2.3.0
Ebuild name:

media-sound/amarok-2.3.0

Description

Advanced audio player based on KDE framework.

Added to portage

2010-03-15

amarok-utils - 2.3.0
Ebuild name:

media-sound/amarok-utils-2.3.0

Description

Various utility programs for Amarok.

Added to portage

2010-03-15

ansi-terminal - 0.5.0
Ebuild name:

dev-haskell/ansi-terminal-0.5.0

Description

Simple ANSI terminal support, with Windows compatibility

Added to portage

2010-03-15

ansi-wl-pprint - 0.5.1
Ebuild name:

dev-haskell/ansi-wl-pprint-0.5.1

Description

The Wadler/Leijen Pretty Printer for colored ANSI terminal output

Added to portage

2010-03-15

asterisk - 1.6.2.6
Ebuild name:

net-misc/asterisk-1.6.2.6

Description

Asterisk A Modular Open Source PBX System

Added to portage

2010-03-15

aufs2 - 0_p20100308
Ebuild name:

sys-fs/aufs2-0_p20100308

Description

An entirely re-designed and re-implemented Unionfs

Added to portage

2010-03-15

busybox - 1.16.0
Ebuild name:

sys-apps/busybox-1.16.0

Description

Utilities for rescue and embedded systems

Added to portage

2010-03-15

chrony - 1.24
Ebuild name:

net-misc/chrony-1.24

Description

NTP client and server programs

Added to portage

2010-03-15

cpio - 2.11
Ebuild name:

app-arch/cpio-2.11

Description

A file archival tool which can also read and write tar files

Added to portage

2010-03-15

cssutils - 0.9.7_alpha3
Ebuild name:

dev-python/cssutils-0.9.7_alpha3

Description

CSS Cascading Style Sheets parser and library for Python

Added to portage

2010-03-15

evolution-exchange - 2.28.3
Ebuild name:

gnome-extra/evolution-exchange-2.28.3

Description

Evolution module for connecting to Microsoft Exchange

Added to portage

2010-03-15

fbzx - 2.4.1
Ebuild name:

games-emulation/fbzx-2.4.1

Description

A Sinclair Spectrum emulator, designed to work at full screen using the

Added to portage

2010-03-15

festival-ru - 0.5
Ebuild name:

app-accessibility/festival-ru-0.5

Description

Russian voices for Festival.

Added to portage

2010-03-15

freepv - 0.3.0-r3
Ebuild name:

media-gfx/freepv-0.3.0-r3

Description

Panorama viewer (Quicktime, PangeaVR, GLPanoView formats)

Added to portage

2010-03-15

git-sources - 2.6.34_rc1-r5
Ebuild name:

sys-kernel/git-sources-2.6.34_rc1-r5

Description

The very latest -git version of the Linux kernel

Added to portage

2010-03-15

git-sources - 2.6.34_rc1-r6
Ebuild name:

sys-kernel/git-sources-2.6.34_rc1-r6

Description

The very latest -git version of the Linux kernel

Added to portage

2010-03-15

glabels - 2.2.7
Ebuild name:

app-office/glabels-2.2.7

Description

Program for creating labels and business cards

Added to portage

2010-03-15

gnumeric - 1.10.1
Ebuild name:

app-office/gnumeric-1.10.1

Description

Gnumeric, the GNOME Spreadsheet

Added to portage

2010-03-15

gwibber - 2.29.92.1
Ebuild name:

net-misc/gwibber-2.29.92.1

Description

Gwibber is an open source microblogging client for GNOME developed with

Added to portage

2010-03-15

irrlicht - 1.7.1
Ebuild name:

dev-games/irrlicht-1.7.1

Description

open source high performance realtime 3D engine written in C++

Added to portage

2010-03-15

kaddressbook - 4.3.5-r1
Ebuild name:

kde-base/kaddressbook-4.3.5-r1

Description

The KDE Address Book

Added to portage

2010-03-15

kaddressbook - 4.4.0-r1
Ebuild name:

kde-base/kaddressbook-4.4.0-r1

Description

The KDE Address Book

Added to portage

2010-03-15

kaddressbook - 4.4.1-r1
Ebuild name:

kde-base/kaddressbook-4.4.1-r1

Description

The KDE Address Book

Added to portage

2010-03-15

kmid - 2.2.2
Ebuild name:

media-sound/kmid-2.2.2

Description

a MIDI/Karaoke player for KDE

Added to portage

2010-03-15

kportagetray - 0.2.1
Ebuild name:

app-portage/kportagetray-0.2.1

Description

Graphical application for Portage's daily tasks

Added to portage

2010-03-15

kshutdown - 2.0_beta9
Ebuild name:

kde-misc/kshutdown-2.0_beta9

Description

A shutdown manager for KDE

Added to portage

2010-03-15

libarchive - 2.8.3
Ebuild name:

app-arch/libarchive-2.8.3

Description

BSD tar command

Added to portage

2010-03-15

libsdl - 1.2.14-r1
Ebuild name:

media-libs/libsdl-1.2.14-r1

Description

Simple Direct Media Layer

Added to portage

2010-03-15

lighttpd - 1.4.26-r1
Ebuild name:

www-servers/lighttpd-1.4.26-r1

Description

Lightweight high-performance web server

Added to portage

2010-03-15

lrzip - 0.44
Ebuild name:

app-arch/lrzip-0.44

Description

Long Range ZIP or Lzma RZIP

Added to portage

2010-03-15

lxsession - 0.4.2
Ebuild name:

lxde-base/lxsession-0.4.2

Description

LXDE session manager (lite version)

Added to portage

2010-03-15

lxterminal - 0.1.7
Ebuild name:

lxde-base/lxterminal-0.1.7

Description

Lightweight vte-based tabbed terminal emulator for LXDE

Added to portage

2010-03-15

mariadb - 5.1.42
Ebuild name:

dev-db/mariadb-5.1.42

Description

Based on the eclass

Added to portage

2010-03-15

pam-pgsql - 0.7_p20100311-r1
Ebuild name:

sys-auth/pam-pgsql-0.7_p20100311-r1

Description

pam_pgsql is a module for pam to authenticate users with Postgr

Added to portage

2010-03-15

perl-ldap - 0.40
Ebuild name:

dev-perl/perl-ldap-0.40

Description

A collection of perl modules which provide an object-oriented interface to

Added to portage

2010-03-15

qmpdclient - 1.1.2-r2
Ebuild name:

media-sound/qmpdclient-1.1.2-r2

Description

QMPDClient with NBL additions, such as lyrics' display

Added to portage

2010-03-15

recoverjpeg - 2.0
Ebuild name:

media-gfx/recoverjpeg-2.0

Description

Recover JPEG pictures from a possibly corrupted disk image

Added to portage

2010-03-15

sdl-mixer - 1.2.11-r1
Ebuild name:

media-libs/sdl-mixer-1.2.11-r1

Description

Simple Direct Media Layer Mixer Library

Added to portage

2010-03-15

simpleagenda - 0.41
Ebuild name:

gnustep-apps/simpleagenda-0.41

Description

a simple calendar and agenda application

Added to portage

2010-03-15

snakeoil - 0.3.6.3
Ebuild name:

dev-python/snakeoil-0.3.6.3

Description

Miscellaneous python utility code.

Added to portage

2010-03-15

snes9x - 1.52
Ebuild name:

games-emulation/snes9x-1.52

Description

Super Nintendo Entertainment System (SNES) emulator

Added to portage

2010-03-15

tangogps - 0.99.3
Ebuild name:

sci-geosciences/tangogps-0.99.3

Description

tangogps is an easy to use, fast and lightweight mapping applicatio

Added to portage

2010-03-15

teamspeak-client-bin - 3.0.0_beta17
Ebuild name:

media-sound/teamspeak-client-bin-3.0.0_beta17

Description

TeamSpeak Client - Voice Communication Software

Added to portage

2010-03-15

teamspeak-server-bin - 3.0.0_beta20
Ebuild name:

media-sound/teamspeak-server-bin-3.0.0_beta20

Description

TeamSpeak Server - Voice Communication Software

Added to portage

2010-03-15

term-ansicolor - 1.0.5
Ebuild name:

dev-ruby/term-ansicolor-1.0.5

Description

Small Ruby library that colors strings using ANSI escape sequences.

Added to portage

2010-03-15

unetbootin - 419
Ebuild name:

sys-boot/unetbootin-419

Description

Universal Netboot Installer creates Live USB systems for various OS distrib

Added to portage

2010-03-15

util-macros - 1.6.1
Ebuild name:

x11-misc/util-macros-1.6.1

Description

X.Org autotools utility macros

Added to portage

2010-03-15

uzbl - 2010.03.14
Ebuild name:

www-client/uzbl-2010.03.14

Description

A keyboard controlled (modal vim-like bindings, or with modifierkeys) br

Added to portage

2010-03-15

violetland - 0.2.9
Ebuild name:

games-action/violetland-0.2.9

Description

Help a girl by name of Violet to struggle with hordes of monsters.

Added to portage

2010-03-15

weave - 1.1
Ebuild name:

www-plugins/weave-1.1

Description

Synchronize your bookmarks, history, tabs and passwords with Firefox

Added to portage

2010-03-15

wesnoth - 1.7.15
Ebuild name:

games-strategy/wesnoth-1.7.15

Description

Battle for Wesnoth - A fantasy turn-based strategy game

Added to portage

2010-03-15

x2vnc - 1.7.2-r1
Ebuild name:

x11-misc/x2vnc-1.7.2-r1

Description

Control a remote computer running VNC from X

Added to portage

2010-03-15

xf86-video-intel - 2.10.0-r1
Ebuild name:

x11-drivers/xf86-video-intel-2.10.0-r1

Description

X.Org driver for Intel cards

Added to portage

2010-03-15

xmountains - 2.8
Ebuild name:

x11-misc/xmountains-2.8

Description

Fractal terrains of snow-capped mountains near water

Added to portage

2010-03-15

xorg-server - 1.7.5.902
Ebuild name:

x11-base/xorg-server-1.7.5.902

Description

X.Org X servers

Added to portage

2010-03-15

zope-publisher - 3.12.1
Ebuild name:

net-zope/zope-publisher-3.12.1

Description

The Zope publisher publishes Python objects on the web.

Added to portage

2010-03-15

zope-testbrowser - 3.8.0
Ebuild name:

net-zope/zope-testbrowser-3.8.0

Description

Programmable browser for functional black-box tests

Added to portage

2010-03-15

zope-testing - 3.9.2
Ebuild name:

net-zope/zope-testing-3.9.2

Description

Zope testing framework, including the testrunner script.

Added to portage

2010-03-15

zziplib - 0.13.58-r1
Ebuild name:

dev-libs/zziplib-0.13.58-r1

Description

Lightweight library used to easily extract data from files archived in

Added to portage

2010-03-15

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004 S&P Softwaredesign
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 384.5 ms
system status display
Stellenangebote
Ärger mit Freenet.de