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

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
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: 81.9 ms
system status display
Stellenangebote
Ärger mit Freenet.de