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:

85914

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


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: average rating: 1.3 (57 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-06-14
ansilove - 4.2.2
Ebuild name:

media-gfx/ansilove-4.2.2

Description

ANSI and ASCII art to PNG converter (using libansilove)

Added to portage

2026-06-14

asymptote - 3.12
Ebuild name:

media-gfx/asymptote-3.12

Description

A vector graphics language that provides a framework for technical drawing

Added to portage

2026-06-14

cava - 1.0.0
Ebuild name:

media-sound/cava-1.0.0

Description

Console-based Audio Visualizer for Alsa

Added to portage

2026-06-14

cproto - 4.8
Ebuild name:

dev-util/cproto-4.8

Description

Generate C function prototypes from C source code

Added to portage

2026-06-14

easycrypt - 2026.06
Ebuild name:

sci-mathematics/easycrypt-2026.06

Description

Computer-Aided Cryptographic Proofs

Added to portage

2026-06-14

elementpath - 5.1.2
Ebuild name:

dev-python/elementpath-5.1.2

Description

XPath 1.0/2.0 parsers and selectors for ElementTree and lxml

Added to portage

2026-06-14

filelock - 3.29.4
Ebuild name:

dev-python/filelock-3.29.4

Description

A platform independent file lock for Python

Added to portage

2026-06-14

gallery-dl - 1.32.3
Ebuild name:

net-misc/gallery-dl-1.32.3

Description

Download image galleries and collections from several image hosting site

Added to portage

2026-06-14

kismet - 2025.09.1-r1
Ebuild name:

net-wireless/kismet-2025.09.1-r1

Description

IEEE 802.11 wireless LAN sniffer

Added to portage

2026-06-14

man-pages-l10n - 4.30.2
Ebuild name:

app-i18n/man-pages-l10n-4.30.2

Description

A somewhat comprehensive collection of man page translations

Added to portage

2026-06-14

nss - 3.125
Ebuild name:

dev-libs/nss-3.125

Description

Mozilla's Network Security Services library that implements PKI support

Added to portage

2026-06-14

peewee - 4.0.8
Ebuild name:

dev-python/peewee-4.0.8

Description

Small Python ORM

Added to portage

2026-06-14

pygit2 - 1.19.3
Ebuild name:

dev-python/pygit2-1.19.3

Description

Python bindings for libgit2

Added to portage

2026-06-14

pyproject-fmt - 2.24.1
Ebuild name:

dev-python/pyproject-fmt-2.24.1

Description

Format your pyproject.toml file

Added to portage

2026-06-14

pyrate-limiter - 4.3.1
Ebuild name:

dev-python/pyrate-limiter-4.3.1

Description

Python Rate-Limiter using Leaky-Bucket Algorimth Family

Added to portage

2026-06-14

pytest - 9.1.0
Ebuild name:

dev-python/pytest-9.1.0

Description

Simple powerful testing with Python

Added to portage

2026-06-14

pytest-order - 1.5.0
Ebuild name:

dev-python/pytest-order-1.5.0

Description

pytest plugin to run your tests in a specific order

Added to portage

2026-06-14

signxml - 4.5.1
Ebuild name:

dev-python/signxml-4.5.1

Description

Python XML Signature and XAdES library

Added to portage

2026-06-14

sybil - 10.1.0
Ebuild name:

dev-python/sybil-10.1.0

Description

Automated testing for the examples in your documentation

Added to portage

2026-06-14

terminus-font - 4.49.1-r3
Ebuild name:

media-fonts/terminus-font-4.49.1-r3

Description

A clean fixed font for the console and X11

Added to portage

2026-06-14

virtualenv - 21.5.0
Ebuild name:

dev-python/virtualenv-21.5.0

Description

Virtual Python Environment builder

Added to portage

2026-06-14

wine-staging - 11.11
Ebuild name:

app-emulation/wine-staging-11.11

Description

Free implementation of Windows(tm) on Unix, with Wine-Staging patc

Added to portage

2026-06-14

2026-06-13
aioresponses - 0.7.8-r1
Ebuild name:

dev-python/aioresponses-0.7.8-r1

Description

Helper to mock/fake web requests in Python's aiohttp package

Added to portage

2026-06-13

aioresponses - 0.7.8-r2
Ebuild name:

dev-python/aioresponses-0.7.8-r2

Description

Helper to mock/fake web requests in Python's aiohttp package

Added to portage

2026-06-13

asm - 9.10.1
Ebuild name:

dev-java/asm-9.10.1

Description

Bytecode manipulation framework for Java

Added to portage

2026-06-13

attica - 6.27.0
Ebuild name:

kde-frameworks/attica-6.27.0

Description

Framework providing access to Open Collaboration Services

Added to portage

2026-06-13

awscli - 1.45.29
Ebuild name:

app-admin/awscli-1.45.29

Description

Universal Command Line Environment for AWS

Added to portage

2026-06-13

baloo - 6.27.0
Ebuild name:

kde-frameworks/baloo-6.27.0

Description

Framework for searching and managing metadata

Added to portage

2026-06-13

bluez-qt - 6.27.0
Ebuild name:

kde-frameworks/bluez-qt-6.27.0

Description

Qt wrapper for Bluez 5 DBus API

Added to portage

2026-06-13

boto3 - 1.43.29
Ebuild name:

dev-python/boto3-1.43.29

Description

The AWS SDK for Python

Added to portage

2026-06-13

botocore - 1.43.29
Ebuild name:

dev-python/botocore-1.43.29

Description

Low-level, data-driven core of boto 3

Added to portage

2026-06-13

breeze-icons - 6.27.0
Ebuild name:

kde-frameworks/breeze-icons-6.27.0

Description

Breeze SVG icon theme

Added to portage

2026-06-13

byte-buddy - 1.18.10
Ebuild name:

dev-java/byte-buddy-1.18.10

Description

Offers convenience for attaching an agent to the local or a remote VM

Added to portage

2026-06-13

cryptography - 49.0.0
Ebuild name:

dev-python/cryptography-49.0.0

Description

Library providing cryptographic recipes and primitives

Added to portage

2026-06-13

eid-mw - 5.1.31
Ebuild name:

app-crypt/eid-mw-5.1.31

Description

Electronic Identity Card middleware supplied by the Belgian Federal Governm

Added to portage

2026-06-13

extra-cmake-modules - 6.27.0
Ebuild name:

kde-frameworks/extra-cmake-modules-6.27.0

Description

Extra modules and scripts for CMake

Added to portage

2026-06-13

frameworkintegration - 6.27.0
Ebuild name:

kde-frameworks/frameworkintegration-6.27.0

Description

Framework for integrating Qt applications with KDE Plasm

Added to portage

2026-06-13

gcc - 13.4.1_p20260610
Ebuild name:

sys-devel/gcc-13.4.1_p20260610

Description

The GNU Compiler Collection

Added to portage

2026-06-13

gcc - 14.3.1_p20260611
Ebuild name:

sys-devel/gcc-14.3.1_p20260611

Description

The GNU Compiler Collection

Added to portage

2026-06-13

gcc - 15.3.1_p20260612
Ebuild name:

sys-devel/gcc-15.3.1_p20260612

Description

The GNU Compiler Collection

Added to portage

2026-06-13

gdm - 49.2-r1
Ebuild name:

gnome-base/gdm-49.2-r1

Description

GNOME Display Manager for managing graphical display servers and user logins

Added to portage

2026-06-13

gentoo-kernel-modprep - 7.0.12
Ebuild name:

sys-kernel/gentoo-kernel-modprep-7.0.12

Description

Minimal subset of gentoo-kernel-bin for building modules, f

Added to portage

2026-06-13

gentoo-kernel-modprep - 7.0.12-r1
Ebuild name:

sys-kernel/gentoo-kernel-modprep-7.0.12-r1

Description

Minimal subset of gentoo-kernel-bin for building modules

Added to portage

2026-06-13

gnome-session-openrc - 49.2
Ebuild name:

gnome-base/gnome-session-openrc-49.2

Description

Gnome session leader for OpenRC

Added to portage

2026-06-13

google-auth - 2.54.0
Ebuild name:

dev-python/google-auth-2.54.0

Description

Google Authentication Library

Added to portage

2026-06-13

gpxsee - 16.8
Ebuild name:

sci-geosciences/gpxsee-16.8

Description

Viewer and analyzer that supports gpx, tcx, kml, fit, igc and nmea file

Added to portage

2026-06-13

grace - 5.1.25_p18-r1
Ebuild name:

sci-visualization/grace-5.1.25_p18-r1

Description

Motif based XY-plotting tool

Added to portage

2026-06-13

gtkmm - 3.24.11
Ebuild name:

dev-cpp/gtkmm-3.24.11

Description

C++ interface for GTK+

Added to portage

2026-06-13

ibus-skk - 1.4.4
Ebuild name:

app-i18n/ibus-skk-1.4.4

Description

Japanese SKK engine for IBus

Added to portage

2026-06-13

janino - 3.1.12
Ebuild name:

dev-java/janino-3.1.12

Description

An embedded compiler for run-time compilation purposes

Added to portage

2026-06-13

k9scli - 0.51.0
Ebuild name:

sys-cluster/k9scli-0.51.0

Description

terminal based UI to manage kubernetes clusters

Added to portage

2026-06-13

kapidox - 6.27.0
Ebuild name:

kde-frameworks/kapidox-6.27.0

Description

Framework for building KDE API documentation in a standard format and

Added to portage

2026-06-13

karchive - 6.27.0
Ebuild name:

kde-frameworks/karchive-6.27.0

Description

Framework for reading, creation, and manipulation of various archive

Added to portage

2026-06-13

kauth - 6.27.0
Ebuild name:

kde-frameworks/kauth-6.27.0

Description

Framework to let applications perform actions as a privileged user

Added to portage

2026-06-13

kbookmarks - 6.27.0
Ebuild name:

kde-frameworks/kbookmarks-6.27.0

Description

Framework for managing bookmarks stored in XBEL format

Added to portage

2026-06-13

kcalendarcore - 6.27.0
Ebuild name:

kde-frameworks/kcalendarcore-6.27.0

Description

Library for interfacing with calendars

Added to portage

2026-06-13

kcmutils - 6.27.0
Ebuild name:

kde-frameworks/kcmutils-6.27.0

Description

Framework to work with KDE System Settings modules

Added to portage

2026-06-13

kcodecs - 6.27.0
Ebuild name:

kde-frameworks/kcodecs-6.27.0

Description

Framework for manipulating strings using various encodings

Added to portage

2026-06-13

kcolorscheme - 6.27.0
Ebuild name:

kde-frameworks/kcolorscheme-6.27.0

Description

Framework for downloading and sharing additional application dat

Added to portage

2026-06-13

kcompletion - 6.27.0
Ebuild name:

kde-frameworks/kcompletion-6.27.0

Description

Framework for common completion tasks such as filename or URL com

Added to portage

2026-06-13

kconfig - 6.27.0
Ebuild name:

kde-frameworks/kconfig-6.27.0

Description

Framework for reading and writing configuration

Added to portage

2026-06-13

kconfigwidgets - 6.27.0
Ebuild name:

kde-frameworks/kconfigwidgets-6.27.0

Description

Framework providing an assortment of configuration-related wid

Added to portage

2026-06-13

kcontacts - 6.27.0
Ebuild name:

kde-frameworks/kcontacts-6.27.0

Description

Address book API based on KDE Frameworks

Added to portage

2026-06-13

kcoreaddons - 6.27.0
Ebuild name:

kde-frameworks/kcoreaddons-6.27.0

Description

Framework for solving common problems such as caching, randomisat

Added to portage

2026-06-13

kcrash - 6.27.0
Ebuild name:

kde-frameworks/kcrash-6.27.0

Description

Framework for intercepting and handling application crashes

Added to portage

2026-06-13

kdav - 6.27.0
Ebuild name:

kde-frameworks/kdav-6.27.0

Description

DAV protocol implemention with KJobs

Added to portage

2026-06-13

kdbusaddons - 6.27.0
Ebuild name:

kde-frameworks/kdbusaddons-6.27.0

Description

Framework for registering services and applications per freedeskt

Added to portage

2026-06-13

kdeclarative - 6.27.0
Ebuild name:

kde-frameworks/kdeclarative-6.27.0

Description

Framework providing integration of QML and KDE work spaces

Added to portage

2026-06-13

kded - 6.27.0
Ebuild name:

kde-frameworks/kded-6.27.0

Description

Central daemon of KDE workspaces

Added to portage

2026-06-13

kdepim-runtime - 26.04.2-r1
Ebuild name:

kde-apps/kdepim-runtime-26.04.2-r1

Description

Runtime plugin collection to extend the functionality of KDE PIM

Added to portage

2026-06-13

kdesu - 6.27.0
Ebuild name:

kde-frameworks/kdesu-6.27.0

Description

Framework to handle super user actions

Added to portage

2026-06-13

kdnssd - 6.27.0
Ebuild name:

kde-frameworks/kdnssd-6.27.0

Description

Framework for network service discovery using Zeroconf

Added to portage

2026-06-13

kdoctools - 6.27.0
Ebuild name:

kde-frameworks/kdoctools-6.27.0

Description

Tools to generate documentation in various formats from DocBook fil

Added to portage

2026-06-13

kfilemetadata - 6.27.0
Ebuild name:

kde-frameworks/kfilemetadata-6.27.0

Description

Library for extracting file metadata

Added to portage

2026-06-13

kglobalaccel - 6.27.0
Ebuild name:

kde-frameworks/kglobalaccel-6.27.0

Description

Framework to handle global shortcuts

Added to portage

2026-06-13

kguiaddons - 6.27.0
Ebuild name:

kde-frameworks/kguiaddons-6.27.0

Description

Framework providing assorted high-level user interface components

Added to portage

2026-06-13

kholidays - 6.27.0
Ebuild name:

kde-frameworks/kholidays-6.27.0

Description

Library to determine holidays and other special events for a geogra

Added to portage

2026-06-13

ki18n - 6.27.0
Ebuild name:

kde-frameworks/ki18n-6.27.0

Description

Framework based on Gettext for internationalizing user interface text

Added to portage

2026-06-13

kiconthemes - 6.27.0
Ebuild name:

kde-frameworks/kiconthemes-6.27.0

Description

Framework for icon theming and configuration

Added to portage

2026-06-13

kidletime - 6.27.0
Ebuild name:

kde-frameworks/kidletime-6.27.0

Description

Framework for detection and notification of device idle time

Added to portage

2026-06-13

kimageformats - 6.27.0
Ebuild name:

kde-frameworks/kimageformats-6.27.0

Description

Framework providing additional format plugins for Qt's image I/

Added to portage

2026-06-13

kio - 6.27.0
Ebuild name:

kde-frameworks/kio-6.27.0

Description

Framework providing transparent file and data management

Added to portage

2026-06-13

kirigami - 6.27.0
Ebuild name:

kde-frameworks/kirigami-6.27.0

Description

Lightweight user interface framework for mobile and convergent appli

Added to portage

2026-06-13

kitemmodels - 6.27.0
Ebuild name:

kde-frameworks/kitemmodels-6.27.0

Description

Framework providing data models to help with tasks such as sortin

Added to portage

2026-06-13

kitemviews - 6.27.0
Ebuild name:

kde-frameworks/kitemviews-6.27.0

Description

Framework providing additional widgets for item models

Added to portage

2026-06-13

kjobwidgets - 6.27.0
Ebuild name:

kde-frameworks/kjobwidgets-6.27.0

Description

Framework providing assorted widgets for showing the progress of

Added to portage

2026-06-13

kmime - 26.04.2-r1
Ebuild name:

kde-apps/kmime-26.04.2-r1

Description

Library for handling mail messages and newsgroup articles

Added to portage

2026-06-13

kmime - 6.27.0
Ebuild name:

kde-frameworks/kmime-6.27.0

Description

Library for handling mail messages and newsgroup articles

Added to portage

2026-06-13

kmime-common - 26.04.2-r1
Ebuild name:

kde-apps/kmime-common-26.04.2-r1

Description

Common files for

Added to portage

2026-06-13

knewstuff - 6.27.0
Ebuild name:

kde-frameworks/knewstuff-6.27.0

Description

Framework for downloading and sharing additional application data

Added to portage

2026-06-13

knotifications - 6.27.0
Ebuild name:

kde-frameworks/knotifications-6.27.0

Description

Framework for notifying the user of an event

Added to portage

2026-06-13

knotifyconfig - 6.27.0
Ebuild name:

kde-frameworks/knotifyconfig-6.27.0

Description

Framework for configuring desktop notifications

Added to portage

2026-06-13

kpackage - 6.27.0
Ebuild name:

kde-frameworks/kpackage-6.27.0

Description

Framework to install and load packages of non binary content

Added to portage

2026-06-13

kparts - 6.27.0
Ebuild name:

kde-frameworks/kparts-6.27.0

Description

Framework providing elaborate user-interface components

Added to portage

2026-06-13

kpeople - 6.27.0
Ebuild name:

kde-frameworks/kpeople-6.27.0

Description

KDE contact person abstraction library

Added to portage

2026-06-13

kplotting - 6.27.0
Ebuild name:

kde-frameworks/kplotting-6.27.0

Description

Framework providing easy data-plotting functions

Added to portage

2026-06-13

kpty - 6.27.0
Ebuild name:

kde-frameworks/kpty-6.27.0

Description

Framework for pseudo terminal devices and running child processes

Added to portage

2026-06-13

kquickcharts - 6.27.0
Ebuild name:

kde-frameworks/kquickcharts-6.27.0

Description

QtQuick plugin providing high-performance charts

Added to portage

2026-06-13

krunner - 6.27.0
Ebuild name:

kde-frameworks/krunner-6.27.0

Description

Framework for providing different actions given a string query

Added to portage

2026-06-13

ksecretd-services - 6.27.0
Ebuild name:

kde-frameworks/ksecretd-services-6.27.0

Description

D-Bus service files for ksecretd kwallet runtime component

Added to portage

2026-06-13

kservice - 6.27.0
Ebuild name:

kde-frameworks/kservice-6.27.0

Description

Advanced plugin and service introspection

Added to portage

2026-06-13

kstatusnotifieritem - 6.27.0
Ebuild name:

kde-frameworks/kstatusnotifieritem-6.27.0

Description

Implementation of Status Notifier Items

Added to portage

2026-06-13

ksvg - 6.27.0
Ebuild name:

kde-frameworks/ksvg-6.27.0

Description

Components for handling SVGs

Added to portage

2026-06-13

ktexteditor - 6.27.0
Ebuild name:

kde-frameworks/ktexteditor-6.27.0

Description

Framework providing a full text editor component

Added to portage

2026-06-13

ktexttemplate - 6.27.0
Ebuild name:

kde-frameworks/ktexttemplate-6.27.0

Description

Library to allow separating the structure of documents from dat

Added to portage

2026-06-13

ktextwidgets - 6.27.0
Ebuild name:

kde-frameworks/ktextwidgets-6.27.0

Description

Framework providing an assortment of widgets for displaying and

Added to portage

2026-06-13

kunitconversion - 6.27.0
Ebuild name:

kde-frameworks/kunitconversion-6.27.0

Description

Framework for converting units

Added to portage

2026-06-13

kuserfeedback - 6.27.0
Ebuild name:

kde-frameworks/kuserfeedback-6.27.0

Description

Framework to collect user feedback for applications via telemet

Added to portage

2026-06-13

kwallet - 6.27.0
Ebuild name:

kde-frameworks/kwallet-6.27.0

Description

Interface to KWallet Framework providing desktop-wide storage for pas

Added to portage

2026-06-13

kwallet-runtime - 6.27.0
Ebuild name:

kde-frameworks/kwallet-runtime-6.27.0

Description

Framework providing desktop-wide storage for passwords

Added to portage

2026-06-13

kwidgetsaddons - 6.27.0
Ebuild name:

kde-frameworks/kwidgetsaddons-6.27.0

Description

An assortment of high-level widgets for common tasks

Added to portage

2026-06-13

kwindowsystem - 6.27.0
Ebuild name:

kde-frameworks/kwindowsystem-6.27.0

Description

Framework providing access to properties and features of the wi

Added to portage

2026-06-13

kxmlgui - 6.27.0
Ebuild name:

kde-frameworks/kxmlgui-6.27.0

Description

Framework for managing menu and toolbar actions in an abstract way

Added to portage

2026-06-13

libgphoto2 - 2.5.34-r1
Ebuild name:

media-libs/libgphoto2-2.5.34-r1

Description

Library that implements support for numerous digital cameras

Added to portage

2026-06-13

libnss-nis - 3.4
Ebuild name:

sys-auth/libnss-nis-3.4

Description

NSS module to provide NIS support

Added to portage

2026-06-13

libu2f-host - 1.1.10-r1
Ebuild name:

app-crypt/libu2f-host-1.1.10-r1

Description

Yubico Universal 2nd Factor (U2F) Host C Library

Added to portage

2026-06-13

libu2f-server - 1.1.0-r2
Ebuild name:

app-crypt/libu2f-server-1.1.0-r2

Description

Yubico Universal 2nd Factor (U2F) server C Library

Added to portage

2026-06-13

loop-aes-losetup - 2.40.2
Ebuild name:

app-crypt/loop-aes-losetup-2.40.2

Description

Loop-AES losetup utility

Added to portage

2026-06-13

loop-aes-losetup - 2.41.1
Ebuild name:

app-crypt/loop-aes-losetup-2.41.1

Description

Loop-AES losetup utility

Added to portage

2026-06-13

m17n-db - 1.8.12
Ebuild name:

dev-db/m17n-db-1.8.12

Description

Database for the m17n library

Added to portage

2026-06-13

man-pages-ja - 20260515
Ebuild name:

app-i18n/man-pages-ja-20260515

Description

Collection of manual pages translated into Japanese

Added to portage

2026-06-13

mcrypt - 2.6.8-r3
Ebuild name:

app-crypt/mcrypt-2.6.8-r3

Description

Replacement of the old unix crypt(1)

Added to portage

2026-06-13

modemmanager-qt - 6.27.0
Ebuild name:

kde-frameworks/modemmanager-qt-6.27.0

Description

ModemManager bindings for Qt

Added to portage

2026-06-13

molmol - 2k_p2-r11
Ebuild name:

sci-chemistry/molmol-2k_p2-r11

Description

Publication-quality molecular visualization package

Added to portage

2026-06-13

msgraph - 0.3.4
Ebuild name:

net-libs/msgraph-0.3.4

Description

GLib-based library for accessing online serive APIs using MS Graph protocol

Added to portage

2026-06-13

mutt - 2.3.3
Ebuild name:

mail-client/mutt-2.3.3

Description

A small but very powerful text-based mail client

Added to portage

2026-06-13

networkmanager-qt - 6.27.0
Ebuild name:

kde-frameworks/networkmanager-qt-6.27.0

Description

NetworkManager bindings for Qt

Added to portage

2026-06-13

nodejs - 24.16.0-r1
Ebuild name:

net-libs/nodejs-24.16.0-r1

Description

A JavaScript runtime built on Chrome's V8 JavaScript engine

Added to portage

2026-06-13

nodejs - 26.3.0
Ebuild name:

net-libs/nodejs-26.3.0

Description

A JavaScript runtime built on Chrome's V8 JavaScript engine

Added to portage

2026-06-13

oxygen-icons - 6.27.0
Ebuild name:

kde-frameworks/oxygen-icons-6.27.0

Description

Oxygen SVG icon theme

Added to portage

2026-06-13

platyps - 1.0.1
Ebuild name:

app-shells/platyps-1.0.1

Description

Generate PowerShell external help files from Markdown

Added to portage

2026-06-13

prison - 6.27.0
Ebuild name:

kde-frameworks/prison-6.27.0

Description

QRCode and data matrix barcode library

Added to portage

2026-06-13

purpose - 6.27.0
Ebuild name:

kde-frameworks/purpose-6.27.0

Description

Library for providing abstractions to get the developer's purposes fu

Added to portage

2026-06-13

pyopenssl - 26.3.0
Ebuild name:

dev-python/pyopenssl-26.3.0

Description

Python interface to the OpenSSL library

Added to portage

2026-06-13

pytest-describe - 3.2.0
Ebuild name:

dev-python/pytest-describe-3.2.0

Description

Describe-style plugin for pytest

Added to portage

2026-06-13

python - 0.3.13.14
Ebuild name:

dev-lang/python-0.3.13.14

Description

Freethreading (no-GIL) version of Python programming language

Added to portage

2026-06-13

qqc2-desktop-style - 6.27.0
Ebuild name:

kde-frameworks/qqc2-desktop-style-6.27.0

Description

Style for QtQuickControls 2 that uses QWidget's QStyle for

Added to portage

2026-06-13

rocksndiamonds - 4.4.2.1
Ebuild name:

games-arcade/rocksndiamonds-4.4.2.1

Description

A Boulderdash clone

Added to portage

2026-06-13

s6-linux-utils - 2.6.4.1
Ebuild name:

sys-apps/s6-linux-utils-2.6.4.1

Description

Set of tiny linux utilities

Added to portage

2026-06-13

savagewheels - 1.6.1-r3
Ebuild name:

games-arcade/savagewheels-1.6.1-r3

Description

2D car crashing game similar to the old classic Destruction Derb

Added to portage

2026-06-13

sdl-mixer - 1.2.12_p20260511
Ebuild name:

media-libs/sdl-mixer-1.2.12_p20260511

Description

Simple Direct Media Layer Mixer Library

Added to portage

2026-06-13

sdl2-mixer - 2.8.2
Ebuild name:

media-libs/sdl2-mixer-2.8.2

Description

Simple Direct Media Layer Mixer Library

Added to portage

2026-06-13

sdl3-mixer - 3.2.4
Ebuild name:

media-libs/sdl3-mixer-3.2.4

Description

Simple Direct Media Layer Mixer Library

Added to portage

2026-06-13

shell-maker - 0.93.1
Ebuild name:

app-emacs/shell-maker-0.93.1

Description

Interaction mode for making comint shells for GNU Emacs

Added to portage

2026-06-13

shotwell - 0.32.17
Ebuild name:

media-gfx/shotwell-0.32.17

Description

Open source photo manager for GNOME

Added to portage

2026-06-13

solid - 6.27.0
Ebuild name:

kde-frameworks/solid-6.27.0

Description

Provider for platform independent hardware discovery, abstraction and m

Added to portage

2026-06-13

sonnet - 6.27.0
Ebuild name:

kde-frameworks/sonnet-6.27.0

Description

Framework for providing spell-checking through abstraction of popular

Added to portage

2026-06-13

stripe - 15.2.1
Ebuild name:

dev-python/stripe-15.2.1

Description

Stripe Python bindings

Added to portage

2026-06-13

syndication - 6.27.0
Ebuild name:

kde-frameworks/syndication-6.27.0

Description

Library for parsing RSS and Atom feeds

Added to portage

2026-06-13

syntax-highlighting - 6.27.0
Ebuild name:

kde-frameworks/syntax-highlighting-6.27.0

Description

Framework for syntax highlighting

Added to portage

2026-06-13

threadweaver - 6.27.0
Ebuild name:

kde-frameworks/threadweaver-6.27.0

Description

Framework for managing threads using job and queue-based interfa

Added to portage

2026-06-13

untrunc - 0_pre20260605
Ebuild name:

media-video/untrunc-0_pre20260605

Description

Restore truncated mp4/mov files

Added to portage

2026-06-13

urh - 2.10.0-r2
Ebuild name:

net-wireless/urh-2.10.0-r2

Description

Universal Radio Hacker investigate wireless protocols like a boss

Added to portage

2026-06-13

warzone2100 - 4.7.0
Ebuild name:

games-strategy/warzone2100-4.7.0

Description

3D real-time strategy game

Added to portage

2026-06-13

wine-vanilla - 11.11
Ebuild name:

app-emulation/wine-vanilla-11.11

Description

Free implementation of Windows(tm) on Unix, without external patch

Added to portage

2026-06-13

xbae - 4.60.4-r3
Ebuild name:

x11-libs/xbae-4.60.4-r3

Description

Motif-based widget to display a grid of cells as a spreadsheet

Added to portage

2026-06-13

yaml - 1.2.4
Ebuild name:

app-emacs/yaml-1.2.4

Description

YAML parser in Emacs Lisp

Added to portage

2026-06-13

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 72.1 ms