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:

8187

userrating:

no votes yet


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

Speeding up the boot process (next generation)

The idea is to preload the useful files into kernel buffer cache before they are needed. Since I/O can happen parallel to the other CPU intensive tasks during bootup, this leads to faster bootup and faster startup time for your chosen applications. Other projects use static lists to preload the files.

This tutorial uses an automated process of generating the "useful" prefetch database.

This is /etc/init.d/my-readahead.
Code:

#!/sbin/runscript
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

depend() {
        before syslog-ng
}

start() {
        ebegin "Starting readahead ROYALE"
        cat /etc/conf.d/* > /dev/null 2>&1 &
        cat /usr/lib/gconv/gconv-modules.cache > /dev/null 2>&1 &
        cat /usr/share/icons/gnome/icon-theme.cache > /dev/null 2>&1 &
        cat /usr/share/icons/hicolor/icon-theme.cache > /dev/null 2>&1 &
        cat `cat /etc/conf.d/sofile-list.load` > /dev/null 2>&1 &
        if [ -f /forcesampler ];then
                /usr/sbin/sample-init-process /etc/conf.d/sofile-list.load &
                rm -f /forcesampler
        fi 
        eend 0
}

stop() {
        eend 0
}

The executable shell script /usr/sbin/sample-init-process:
Code:

 #!/bin/bash
final_db="$1"

# total number of lists to keep in /etc/conf.d/
total_to_keep=4

# total number of samples to make in /forcesampler boot.
# It will take twice this amount of seconds to finish sampling.
total_samples_per_boot=200

# touch empty file if not there
[ ! -f "$final_db" ] && touch "$final_db"

let i=0
while [ "$i" -ne "$total_to_keep" ] ; do
        if [ ! -f "$final_db$i" ] ; then
                break;
        else
                j=$((i+1))
                if [ "$j" = "$total_to_keep" ] ;then
                        j=0
                fi
                if [ -f "$final_db$j" -a "$final_db$i" -nt "$final_db$j" ];then
                        i=$((j))
                        break;
                fi
        fi
        i=$((i+1))
done
if [ "$i" = "$total_to_keep" ] ;then
        i=0
fi

slot="$i"
cp "$final_db" "$final_db$i"

function collect_sample()
{
        lsof | awk '{if ($5=="REG") {if (match($9,".so") || match($9,".conf") \
        || match($9,"/bin/") || match($9,"ttf") || match($9,"libexec")) \
        print $9}}' | sort | uniq >> $1
}

collect_sample /tmp/init_sample1

i=0 
while [ "$i" -ne "$total_samples_per_boot" ] ; do
        collect_sample /tmp/init_sample2
        cat /tmp/init_sample1 /tmp/init_sample2 | sort | uniq > /tmp/init_sample3
        mv /tmp/init_sample3 /tmp/init_sample1
        sleep 1
        i=$((i+1))
done

cat /tmp/init_sample1 "$final_db$slot" | sort | uniq > "$final_db"

rm -f /tmp/init_sample[123]
And then do this:
Code:
chmod +x /usr/sbin/sample-init-process
rc-update add my-readahead default
touch /forcesampler

What you have done is asked my-readahead to create a sampler process which samples what files (fonts, binaries, libraries, configs) are in use, every second. It collects 200 samples (will be busy for at least 10 minutes after boot) and keeps updating the database with a list of useful files.

Once you boot after this the first time, you will probably see a slow down because its collecting samples for use on the next and subsequent boots. Use your system as you normally would. Open firefox, gaim, OO or whatever. Once the sampler script has finished ('ps -aef|grep sample-init-process' will tell you if its running), reboot. Now this and all subsequent boots will be much faster.

If it takes too long for the sample-init-process to finish, reduce the total_samples_per_boot variable in the sampler script to 100 and try again by touching /forcesampler.

In future, whenever you feel like updating the prefetch database, just 'touch /forcesampler' and database will be updated on next reboot.

based on http://forums.gentoo.org/viewtopic-t-478491.html, some script modifications done.


rate this article:
current rating: no votes yet
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
encodings - 1.0.3-r1
Ebuild name:

media-fonts/encodings-1.0.3-r1

Description

X.Org font encodings

Added to portage

2010-03-16

fish-fillets - 0.9.3
Ebuild name:

games-puzzle/fish-fillets-0.9.3

Description

Underwater puzzle game - find a safe way out

Added to portage

2010-03-16

font-adobe-100dpi - 1.0.1
Ebuild name:

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

Description

X.Org Adobe bitmap fonts

Added to portage

2010-03-16

font-adobe-75dpi - 1.0.1
Ebuild name:

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

Description

X.Org Adobe bitmap fonts

Added to portage

2010-03-16

font-adobe-utopia-100dpi - 1.0.2
Ebuild name:

media-fonts/font-adobe-utopia-100dpi-1.0.2

Description

X.Org Adobe Utopia bitmap fonts

Added to portage

2010-03-16

font-adobe-utopia-75dpi - 1.0.2
Ebuild name:

media-fonts/font-adobe-utopia-75dpi-1.0.2

Description

X.Org Adobe Utopia bitmap fonts

Added to portage

2010-03-16

font-adobe-utopia-type1 - 1.0.2
Ebuild name:

media-fonts/font-adobe-utopia-type1-1.0.2

Description

X.Org Adobe Utopia Type 1 fonts

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

gnash - 0.8.7
Ebuild name:

www-plugins/gnash-0.8.7

Description

GNU Flash movie player that supports many SWF v7,8,9 features

Added to portage

2010-03-16

jbigkit - 2.0-r1
Ebuild name:

media-libs/jbigkit-2.0-r1

Description

data compression algorithm for bi-level high-resolution images

Added to portage

2010-03-16

layman - 1.3.2-r2
Ebuild name:

app-portage/layman-1.3.2-r2

Description

A python script for retrieving gentoo overlays.

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

scidavis - 0.2.4
Ebuild name:

sci-visualization/scidavis-0.2.4

Description

Scientific Data Analysis and Visualization

Added to portage

2010-03-16

vanilla-sources - 2.6.32.10
Ebuild name:

sys-kernel/vanilla-sources-2.6.32.10

Description

Full sources for the Linux kernel

Added to portage

2010-03-16

vanilla-sources - 2.6.33.1
Ebuild name:

sys-kernel/vanilla-sources-2.6.33.1

Description

Full sources for the Linux kernel

Added to portage

2010-03-16

wmfire - 1.2.4
Ebuild name:

x11-plugins/wmfire-1.2.4

Description

Load monitoring dockapp displaying dancing flame.

Added to portage

2010-03-16

xf86-video-ati - 6.12.192
Ebuild name:

x11-drivers/xf86-video-ati-6.12.192

Description

ATI video driver

Added to portage

2010-03-16

xf86-video-ati - 6.12.6
Ebuild name:

x11-drivers/xf86-video-ati-6.12.6

Description

ATI video driver

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

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

pkgcore - 0.5.11
Ebuild name:

sys-apps/pkgcore-0.5.11

Description

pkgcore package manager

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: 80.9 ms
system status display
Stellenangebote
Ärger mit Freenet.de