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:

84399

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 (33 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-04-13
asterisk - 20.19.0
Ebuild name:

net-misc/asterisk-20.19.0

Description

Asterisk A Modular Open Source PBX System

Added to portage

2026-04-13

asterisk - 22.9.0
Ebuild name:

net-misc/asterisk-22.9.0

Description

Asterisk A Modular Open Source PBX System

Added to portage

2026-04-13

ccache - 4.13.3
Ebuild name:

dev-util/ccache-4.13.3

Description

Fast compiler cache

Added to portage

2026-04-13

converseen - 0.15.2.2
Ebuild name:

media-gfx/converseen-0.15.2.2

Description

Batch image converter and resizer based on ImageMagick

Added to portage

2026-04-13

fakeredis - 2.35.1
Ebuild name:

dev-python/fakeredis-2.35.1

Description

Fake implementation of redis API for testing purposes

Added to portage

2026-04-13

gcc - 16.0.1_p20260412
Ebuild name:

sys-devel/gcc-16.0.1_p20260412

Description

The GNU Compiler Collection

Added to portage

2026-04-13

gsm - 1.0.24-r1
Ebuild name:

media-sound/gsm-1.0.24-r1

Description

Lossy speech compression library and tool

Added to portage

2026-04-13

importlib-resources - 7.1.0
Ebuild name:

dev-python/importlib-resources-7.1.0

Description

Read resources from Python packages

Added to portage

2026-04-13

libmbim - 1.34.0
Ebuild name:

net-libs/libmbim-1.34.0

Description

Mobile Broadband Interface Model (MBIM) modem protocol helper library

Added to portage

2026-04-13

libqrtr-glib - 1.4.0
Ebuild name:

net-libs/libqrtr-glib-1.4.0

Description

Qualcomm IPC Router protocol helper library

Added to portage

2026-04-13

libwacom - 2.18.0
Ebuild name:

dev-libs/libwacom-2.18.0

Description

Library for identifying Wacom tablets and their model-specific features

Added to portage

2026-04-13

lxml - 6.0.4
Ebuild name:

dev-python/lxml-6.0.4

Description

A Pythonic binding for the libxml2 and libxslt libraries

Added to portage

2026-04-13

mitmproxy - 12.2.2
Ebuild name:

net-proxy/mitmproxy-12.2.2

Description

An interactive, SSL-capable, man-in-the-middle HTTP proxy

Added to portage

2026-04-13

mocker - 0.5.0
Ebuild name:

app-emacs/mocker-0.5.0

Description

Simple mocking framework for Emacs

Added to portage

2026-04-13

msgspec - 0.21.1
Ebuild name:

dev-python/msgspec-0.21.1

Description

Fast serialization and validation library, with builtin support for many

Added to portage

2026-04-13

mypy - 1.20.1
Ebuild name:

dev-python/mypy-1.20.1

Description

Optional static typing for Python

Added to portage

2026-04-13

nfdump - 1.7.7-r1
Ebuild name:

net-analyzer/nfdump-1.7.7-r1

Description

A set of tools to collect and process netflow data

Added to portage

2026-04-13

poetry - 2.3.4
Ebuild name:

dev-python/poetry-2.3.4

Description

A frontend for poetry - a python dependency management and packaging tool

Added to portage

2026-04-13

qwt - 6.3.0-r1
Ebuild name:

x11-libs/qwt-6.3.0-r1

Description

2D plotting library for Qt

Added to portage

2026-04-13

radicale - 3.7.1
Ebuild name:

www-apps/radicale-3.7.1

Description

A simple CalDAV calendar server

Added to portage

2026-04-13

sogo - 5.12.7
Ebuild name:

gnustep-apps/sogo-5.12.7

Description

Groupware server built around OpenGroupware.org and the SOPE application s

Added to portage

2026-04-13

sope - 5.12.7
Ebuild name:

gnustep-libs/sope-5.12.7

Description

A set of frameworks forming a complete Web application server environment

Added to portage

2026-04-13

tuxedo-drivers - 4.22.1
Ebuild name:

app-laptop/tuxedo-drivers-4.22.1

Description

Kernel modules for TUXEDO laptops

Added to portage

2026-04-13

ubelt - 1.4.2
Ebuild name:

dev-python/ubelt-1.4.2

Description

A stdlib like feel, and extra batteries. Hashing, Caching, Timing, Progress

Added to portage

2026-04-13

xdp-tools - 1.6.3-r1
Ebuild name:

net-libs/xdp-tools-1.6.3-r1

Description

The libxdp library and various tools for use with XDP

Added to portage

2026-04-13

2026-04-12
attica - 6.25.0
Ebuild name:

kde-frameworks/attica-6.25.0

Description

Framework providing access to Open Collaboration Services

Added to portage

2026-04-12

baloo - 6.25.0
Ebuild name:

kde-frameworks/baloo-6.25.0

Description

Framework for searching and managing metadata

Added to portage

2026-04-12

bat - 0.23.0-r3
Ebuild name:

sys-apps/bat-0.23.0-r3

Description

cat(1) clone with syntax highlighting and Git integration

Added to portage

2026-04-12

bat - 0.24.0-r3
Ebuild name:

sys-apps/bat-0.24.0-r3

Description

cat(1) clone with syntax highlighting and Git integration

Added to portage

2026-04-12

bat - 0.25.0-r1
Ebuild name:

sys-apps/bat-0.25.0-r1

Description

cat(1) clone with syntax highlighting and Git integration

Added to portage

2026-04-12

bat - 0.26.1-r1
Ebuild name:

sys-apps/bat-0.26.1-r1

Description

cat(1) clone with syntax highlighting and Git integration

Added to portage

2026-04-12

bluez-qt - 6.25.0
Ebuild name:

kde-frameworks/bluez-qt-6.25.0

Description

Qt wrapper for Bluez 5 DBus API

Added to portage

2026-04-12

bpftool - 7.6.0-r1
Ebuild name:

dev-util/bpftool-7.6.0-r1

Description

Tool for inspection and simple manipulation of eBPF programs and maps

Added to portage

2026-04-12

bpftool - 7.7.0-r1
Ebuild name:

dev-util/bpftool-7.7.0-r1

Description

Tool for inspection and simple manipulation of eBPF programs and maps

Added to portage

2026-04-12

breeze-icons - 6.25.0
Ebuild name:

kde-frameworks/breeze-icons-6.25.0

Description

Breeze SVG icon theme

Added to portage

2026-04-12

brscan5 - 1.5.1.0
Ebuild name:

media-gfx/brscan5-1.5.1.0

Description

SANE driver for Brother scanners (brscan5)

Added to portage

2026-04-12

dist-kernel - 6.1.168
Ebuild name:

virtual/dist-kernel-6.1.168

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-04-12

dist-kernel - 6.12.81
Ebuild name:

virtual/dist-kernel-6.12.81

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-04-12

dist-kernel - 6.18.22
Ebuild name:

virtual/dist-kernel-6.18.22

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-04-12

dist-kernel - 6.19.12
Ebuild name:

virtual/dist-kernel-6.19.12

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-04-12

dist-kernel - 6.6.134
Ebuild name:

virtual/dist-kernel-6.6.134

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-04-12

extra-cmake-modules - 6.25.0
Ebuild name:

kde-frameworks/extra-cmake-modules-6.25.0

Description

Extra modules and scripts for CMake

Added to portage

2026-04-12

feh - 3.12.1
Ebuild name:

media-gfx/feh-3.12.1

Description

A fast, lightweight imageviewer using imlib2

Added to portage

2026-04-12

frameworkintegration - 6.25.0
Ebuild name:

kde-frameworks/frameworkintegration-6.25.0

Description

Framework for integrating Qt applications with KDE Plasm

Added to portage

2026-04-12

fwupd - 2.1.1-r2
Ebuild name:

sys-apps/fwupd-2.1.1-r2

Description

Aims to make updating firmware on Linux automatic, safe and reliable

Added to portage

2026-04-12

gcc - 15.2.1_p20260411
Ebuild name:

sys-devel/gcc-15.2.1_p20260411

Description

The GNU Compiler Collection

Added to portage

2026-04-12

gdal - 3.12.3
Ebuild name:

sci-libs/gdal-3.12.3

Description

Translator library for raster geospatial data formats (includes OGR support)

Added to portage

2026-04-12

gentoo-kernel - 6.1.168
Ebuild name:

sys-kernel/gentoo-kernel-6.1.168

Description

Linux kernel built with Gentoo patches

Added to portage

2026-04-12

gentoo-kernel - 6.12.81
Ebuild name:

sys-kernel/gentoo-kernel-6.12.81

Description

Linux kernel built with Gentoo patches

Added to portage

2026-04-12

gentoo-kernel - 6.18.22
Ebuild name:

sys-kernel/gentoo-kernel-6.18.22

Description

Linux kernel built with Gentoo patches

Added to portage

2026-04-12

gentoo-kernel - 6.19.12
Ebuild name:

sys-kernel/gentoo-kernel-6.19.12

Description

Linux kernel built with Gentoo patches

Added to portage

2026-04-12

gentoo-kernel - 6.6.134
Ebuild name:

sys-kernel/gentoo-kernel-6.6.134

Description

Linux kernel built with Gentoo patches

Added to portage

2026-04-12

gentoo-kernel-bin - 6.1.168
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.168

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-04-12

gentoo-kernel-bin - 6.12.81
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.81

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-04-12

gentoo-kernel-bin - 6.18.22
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.22

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-04-12

gentoo-kernel-bin - 6.19.12
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.19.12

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-04-12

gentoo-kernel-bin - 6.6.134
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.134

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-04-12

gentoo-sources - 6.1.168
Ebuild name:

sys-kernel/gentoo-sources-6.1.168

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-04-12

gentoo-sources - 6.12.81
Ebuild name:

sys-kernel/gentoo-sources-6.12.81

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-04-12

gentoo-sources - 6.18.22
Ebuild name:

sys-kernel/gentoo-sources-6.18.22

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-04-12

gentoo-sources - 6.19.12
Ebuild name:

sys-kernel/gentoo-sources-6.19.12

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-04-12

gentoo-sources - 6.6.134
Ebuild name:

sys-kernel/gentoo-sources-6.6.134

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-04-12

gitea - 1.25.5
Ebuild name:

www-apps/gitea-1.25.5

Description

A painless self-hosted Git service

Added to portage

2026-04-12

gitg - 44-r4
Ebuild name:

dev-vcs/gitg-44-r4

Description

git repository viewer for GNOME

Added to portage

2026-04-12

gnome-builder - 48.2-r2
Ebuild name:

dev-util/gnome-builder-48.2-r2

Description

An IDE for writing GNOME-based software

Added to portage

2026-04-12

gpyutils - 0.15.5
Ebuild name:

app-portage/gpyutils-0.15.5

Description

Utitilies for maintaining Python packages

Added to portage

2026-04-12

imageio - 2.37.3-r1
Ebuild name:

dev-python/imageio-2.37.3-r1

Description

Python library for reading and writing image data

Added to portage

2026-04-12

importlib-resources - 7.0.0
Ebuild name:

dev-python/importlib-resources-7.0.0

Description

Read resources from Python packages

Added to portage

2026-04-12

jemalloc - 5.3.0-r3
Ebuild name:

dev-libs/jemalloc-5.3.0-r3

Description

Jemalloc is a general-purpose scalable concurrent allocator

Added to portage

2026-04-12

kapidox - 6.25.0
Ebuild name:

kde-frameworks/kapidox-6.25.0

Description

Framework for building KDE API documentation in a standard format and

Added to portage

2026-04-12

karchive - 6.25.0
Ebuild name:

kde-frameworks/karchive-6.25.0

Description

Framework for reading, creation, and manipulation of various archive

Added to portage

2026-04-12

kauth - 6.25.0
Ebuild name:

kde-frameworks/kauth-6.25.0

Description

Framework to let applications perform actions as a privileged user

Added to portage

2026-04-12

kbookmarks - 6.25.0
Ebuild name:

kde-frameworks/kbookmarks-6.25.0

Description

Framework for managing bookmarks stored in XBEL format

Added to portage

2026-04-12

kcalendarcore - 6.25.0
Ebuild name:

kde-frameworks/kcalendarcore-6.25.0

Description

Library for interfacing with calendars

Added to portage

2026-04-12

kcmutils - 6.25.0
Ebuild name:

kde-frameworks/kcmutils-6.25.0

Description

Framework to work with KDE System Settings modules

Added to portage

2026-04-12

kcodecs - 6.25.0
Ebuild name:

kde-frameworks/kcodecs-6.25.0

Description

Framework for manipulating strings using various encodings

Added to portage

2026-04-12

kcolorscheme - 6.25.0
Ebuild name:

kde-frameworks/kcolorscheme-6.25.0

Description

Framework for downloading and sharing additional application dat

Added to portage

2026-04-12

kcompletion - 6.25.0
Ebuild name:

kde-frameworks/kcompletion-6.25.0

Description

Framework for common completion tasks such as filename or URL com

Added to portage

2026-04-12

kconfig - 6.25.0
Ebuild name:

kde-frameworks/kconfig-6.25.0

Description

Framework for reading and writing configuration

Added to portage

2026-04-12

kconfigwidgets - 6.25.0
Ebuild name:

kde-frameworks/kconfigwidgets-6.25.0

Description

Framework providing an assortment of configuration-related wid

Added to portage

2026-04-12

kcontacts - 6.25.0
Ebuild name:

kde-frameworks/kcontacts-6.25.0

Description

Address book API based on KDE Frameworks

Added to portage

2026-04-12

kcoreaddons - 6.25.0
Ebuild name:

kde-frameworks/kcoreaddons-6.25.0

Description

Framework for solving common problems such as caching, randomisat

Added to portage

2026-04-12

kcrash - 6.25.0
Ebuild name:

kde-frameworks/kcrash-6.25.0

Description

Framework for intercepting and handling application crashes

Added to portage

2026-04-12

kdav - 6.25.0
Ebuild name:

kde-frameworks/kdav-6.25.0

Description

DAV protocol implemention with KJobs

Added to portage

2026-04-12

kdbusaddons - 6.25.0
Ebuild name:

kde-frameworks/kdbusaddons-6.25.0

Description

Framework for registering services and applications per freedeskt

Added to portage

2026-04-12

kdeclarative - 6.25.0
Ebuild name:

kde-frameworks/kdeclarative-6.25.0

Description

Framework providing integration of QML and KDE work spaces

Added to portage

2026-04-12

kded - 6.25.0
Ebuild name:

kde-frameworks/kded-6.25.0

Description

Central daemon of KDE workspaces

Added to portage

2026-04-12

kdesu - 6.25.0
Ebuild name:

kde-frameworks/kdesu-6.25.0

Description

Framework to handle super user actions

Added to portage

2026-04-12

kdnssd - 6.25.0
Ebuild name:

kde-frameworks/kdnssd-6.25.0

Description

Framework for network service discovery using Zeroconf

Added to portage

2026-04-12

kdoctools - 6.25.0
Ebuild name:

kde-frameworks/kdoctools-6.25.0

Description

Tools to generate documentation in various formats from DocBook fil

Added to portage

2026-04-12

kfilemetadata - 6.25.0
Ebuild name:

kde-frameworks/kfilemetadata-6.25.0

Description

Library for extracting file metadata

Added to portage

2026-04-12

kglobalaccel - 6.25.0
Ebuild name:

kde-frameworks/kglobalaccel-6.25.0

Description

Framework to handle global shortcuts

Added to portage

2026-04-12

kguiaddons - 6.25.0
Ebuild name:

kde-frameworks/kguiaddons-6.25.0

Description

Framework providing assorted high-level user interface components

Added to portage

2026-04-12

kholidays - 6.25.0
Ebuild name:

kde-frameworks/kholidays-6.25.0

Description

Library to determine holidays and other special events for a geogra

Added to portage

2026-04-12

ki18n - 6.25.0
Ebuild name:

kde-frameworks/ki18n-6.25.0

Description

Framework based on Gettext for internationalizing user interface text

Added to portage

2026-04-12

kiconthemes - 6.25.0
Ebuild name:

kde-frameworks/kiconthemes-6.25.0

Description

Framework for icon theming and configuration

Added to portage

2026-04-12

kidletime - 6.25.0
Ebuild name:

kde-frameworks/kidletime-6.25.0

Description

Framework for detection and notification of device idle time

Added to portage

2026-04-12

kimageformats - 6.25.0
Ebuild name:

kde-frameworks/kimageformats-6.25.0

Description

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

Added to portage

2026-04-12

kio - 6.25.0
Ebuild name:

kde-frameworks/kio-6.25.0

Description

Framework providing transparent file and data management

Added to portage

2026-04-12

kirigami - 6.25.0
Ebuild name:

kde-frameworks/kirigami-6.25.0

Description

Lightweight user interface framework for mobile and convergent appli

Added to portage

2026-04-12

kitemmodels - 6.25.0
Ebuild name:

kde-frameworks/kitemmodels-6.25.0

Description

Framework providing data models to help with tasks such as sortin

Added to portage

2026-04-12

kitemviews - 6.25.0
Ebuild name:

kde-frameworks/kitemviews-6.25.0

Description

Framework providing additional widgets for item models

Added to portage

2026-04-12

kjobwidgets - 6.25.0
Ebuild name:

kde-frameworks/kjobwidgets-6.25.0

Description

Framework providing assorted widgets for showing the progress of

Added to portage

2026-04-12

knewstuff - 6.25.0
Ebuild name:

kde-frameworks/knewstuff-6.25.0

Description

Framework for downloading and sharing additional application data

Added to portage

2026-04-12

knotifications - 6.25.0
Ebuild name:

kde-frameworks/knotifications-6.25.0

Description

Framework for notifying the user of an event

Added to portage

2026-04-12

knotifyconfig - 6.25.0
Ebuild name:

kde-frameworks/knotifyconfig-6.25.0

Description

Framework for configuring desktop notifications

Added to portage

2026-04-12

kpackage - 6.25.0
Ebuild name:

kde-frameworks/kpackage-6.25.0

Description

Framework to install and load packages of non binary content

Added to portage

2026-04-12

kparts - 6.25.0
Ebuild name:

kde-frameworks/kparts-6.25.0

Description

Framework providing elaborate user-interface components

Added to portage

2026-04-12

kpeople - 6.25.0
Ebuild name:

kde-frameworks/kpeople-6.25.0

Description

KDE contact person abstraction library

Added to portage

2026-04-12

kplotting - 6.25.0
Ebuild name:

kde-frameworks/kplotting-6.25.0

Description

Framework providing easy data-plotting functions

Added to portage

2026-04-12

kpty - 6.25.0
Ebuild name:

kde-frameworks/kpty-6.25.0

Description

Framework for pseudo terminal devices and running child processes

Added to portage

2026-04-12

kquickcharts - 6.25.0
Ebuild name:

kde-frameworks/kquickcharts-6.25.0

Description

QtQuick plugin providing high-performance charts

Added to portage

2026-04-12

krunner - 6.25.0
Ebuild name:

kde-frameworks/krunner-6.25.0

Description

Framework for providing different actions given a string query

Added to portage

2026-04-12

ksecretd-services - 6.25.0
Ebuild name:

kde-frameworks/ksecretd-services-6.25.0

Description

D-Bus service files for ksecretd kwallet runtime component

Added to portage

2026-04-12

kservice - 6.25.0
Ebuild name:

kde-frameworks/kservice-6.25.0

Description

Advanced plugin and service introspection

Added to portage

2026-04-12

kstatusnotifieritem - 6.25.0
Ebuild name:

kde-frameworks/kstatusnotifieritem-6.25.0

Description

Implementation of Status Notifier Items

Added to portage

2026-04-12

ksvg - 6.25.0
Ebuild name:

kde-frameworks/ksvg-6.25.0

Description

Components for handling SVGs

Added to portage

2026-04-12

ktexteditor - 6.25.0
Ebuild name:

kde-frameworks/ktexteditor-6.25.0

Description

Framework providing a full text editor component

Added to portage

2026-04-12

ktexttemplate - 6.25.0
Ebuild name:

kde-frameworks/ktexttemplate-6.25.0

Description

Library to allow separating the structure of documents from dat

Added to portage

2026-04-12

ktextwidgets - 6.25.0
Ebuild name:

kde-frameworks/ktextwidgets-6.25.0

Description

Framework providing an assortment of widgets for displaying and

Added to portage

2026-04-12

kunitconversion - 6.25.0
Ebuild name:

kde-frameworks/kunitconversion-6.25.0

Description

Framework for converting units

Added to portage

2026-04-12

kuserfeedback - 6.25.0
Ebuild name:

kde-frameworks/kuserfeedback-6.25.0

Description

Framework to collect user feedback for applications via telemet

Added to portage

2026-04-12

kwallet - 6.25.0
Ebuild name:

kde-frameworks/kwallet-6.25.0

Description

Interface to KWallet Framework providing desktop-wide storage for pas

Added to portage

2026-04-12

kwallet-runtime - 6.25.0
Ebuild name:

kde-frameworks/kwallet-runtime-6.25.0

Description

Framework providing desktop-wide storage for passwords

Added to portage

2026-04-12

kwidgetsaddons - 6.25.0
Ebuild name:

kde-frameworks/kwidgetsaddons-6.25.0

Description

An assortment of high-level widgets for common tasks

Added to portage

2026-04-12

kwindowsystem - 6.25.0
Ebuild name:

kde-frameworks/kwindowsystem-6.25.0

Description

Framework providing access to properties and features of the wi

Added to portage

2026-04-12

kxmlgui - 6.25.0
Ebuild name:

kde-frameworks/kxmlgui-6.25.0

Description

Framework for managing menu and toolbar actions in an abstract way

Added to portage

2026-04-12

libgpiod - 2.2.4
Ebuild name:

dev-libs/libgpiod-2.2.4

Description

C library and tools for interacting with the linux GPIO character device

Added to portage

2026-04-12

libverto - 0.3.2-r1
Ebuild name:

dev-libs/libverto-0.3.2-r1

Description

Main event loop abstraction library

Added to portage

2026-04-12

mocker - 0.5.0
Ebuild name:

app-emacs/mocker-0.5.0

Description

Simple mocking framework for Emacs

Added to portage

2026-04-12

modemmanager-qt - 6.25.0
Ebuild name:

kde-frameworks/modemmanager-qt-6.25.0

Description

ModemManager bindings for Qt

Added to portage

2026-04-12

modus-themes - 5.1.0
Ebuild name:

app-emacs/modus-themes-5.1.0

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-04-12

modus-themes - 5.2.0
Ebuild name:

app-emacs/modus-themes-5.2.0

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-04-12

modus-themes - 9999
Ebuild name:

app-emacs/modus-themes-9999

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-04-12

moolticute - 1.03.0-r2
Ebuild name:

app-crypt/moolticute-1.03.0-r2

Description

Mooltipass crossplatform daemon/tools

Added to portage

2026-04-12

mysql-workbench - 8.0.46
Ebuild name:

dev-db/mysql-workbench-8.0.46

Description

MySQL Workbench

Added to portage

2026-04-12

netevent - 2.2.3
Ebuild name:

net-misc/netevent-2.2.3

Description

Tool to share Linux event devices with other machines

Added to portage

2026-04-12

networkmanager-qt - 6.25.0
Ebuild name:

kde-frameworks/networkmanager-qt-6.25.0

Description

NetworkManager bindings for Qt

Added to portage

2026-04-12

openpgp-keys-gdal - 20260412
Ebuild name:

sec-keys/openpgp-keys-gdal-20260412

Description

OpenPGP keys used to sign GDAL

Added to portage

2026-04-12

pinta - 3.1.2
Ebuild name:

media-gfx/pinta-3.1.2

Description

Pinta is a free, open source program for drawing and image editing

Added to portage

2026-04-12

polkit-qt - 0.201.1
Ebuild name:

sys-auth/polkit-qt-0.201.1

Description

Qt wrapper around polkit-1 client libraries

Added to portage

2026-04-12

prison - 6.25.0
Ebuild name:

kde-frameworks/prison-6.25.0

Description

QRCode and data matrix barcode library

Added to portage

2026-04-12

purpose - 6.25.0
Ebuild name:

kde-frameworks/purpose-6.25.0

Description

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

Added to portage

2026-04-12

pyfakefs - 6.2.0
Ebuild name:

dev-python/pyfakefs-6.2.0

Description

A fake file system that mocks the Python file system modules

Added to portage

2026-04-12

pyrss2gen - 1.1-r3
Ebuild name:

dev-python/pyrss2gen-1.1-r3

Description

RSS feed generator written in Python

Added to portage

2026-04-12

pysmi - 1.6.3-r1
Ebuild name:

dev-python/pysmi-1.6.3-r1

Description

Pure-Python implementation of SNMP/SMI MIB parsing and conversion library

Added to portage

2026-04-12

pysvn - 1.9.25
Ebuild name:

dev-python/pysvn-1.9.25

Description

Object-oriented python bindings for subversion

Added to portage

2026-04-12

qdmr - 0.14.1
Ebuild name:

net-wireless/qdmr-0.14.1

Description

GUI application for configuring and programming cheap DMR radios

Added to portage

2026-04-12

qqc2-desktop-style - 6.25.0
Ebuild name:

kde-frameworks/qqc2-desktop-style-6.25.0

Description

Style for QtQuickControls 2 that uses QWidget's QStyle for

Added to portage

2026-04-12

qrca - 25.12.3-r2
Ebuild name:

media-gfx/qrca-25.12.3-r2

Description

Simple barcode scanner and QR code generator

Added to portage

2026-04-12

rich - 15.0.0
Ebuild name:

dev-python/rich-15.0.0

Description

Python library for rendering rich text, tables, etc. to the terminal

Added to portage

2026-04-12

rspamd - 4.0.1
Ebuild name:

mail-filter/rspamd-4.0.1

Description

Rapid spam filtering system

Added to portage

2026-04-12

scikit-image - 0.26.0-r1
Ebuild name:

dev-python/scikit-image-0.26.0-r1

Description

Image processing routines for SciPy

Added to portage

2026-04-12

solid - 6.25.0
Ebuild name:

kde-frameworks/solid-6.25.0

Description

Provider for platform independent hardware discovery, abstraction and m

Added to portage

2026-04-12

sonnet - 6.25.0
Ebuild name:

kde-frameworks/sonnet-6.25.0

Description

Framework for providing spell-checking through abstraction of popular

Added to portage

2026-04-12

syndication - 6.25.0
Ebuild name:

kde-frameworks/syndication-6.25.0

Description

Library for parsing RSS and Atom feeds

Added to portage

2026-04-12

syntax-highlighting - 6.25.0
Ebuild name:

kde-frameworks/syntax-highlighting-6.25.0

Description

Framework for syntax highlighting

Added to portage

2026-04-12

threadweaver - 6.25.0
Ebuild name:

kde-frameworks/threadweaver-6.25.0

Description

Framework for managing threads using job and queue-based interfa

Added to portage

2026-04-12

tifffile - 2026.4.11
Ebuild name:

dev-python/tifffile-2026.4.11

Description

Read and write TIFF files

Added to portage

2026-04-12

udis86 - 1.7.2-r2
Ebuild name:

dev-libs/udis86-1.7.2-r2

Description

Disassembler library for the x86/-64 architecture sets

Added to portage

2026-04-12

vanilla-kernel - 6.1.168
Ebuild name:

sys-kernel/vanilla-kernel-6.1.168

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-04-12

vanilla-kernel - 6.12.81
Ebuild name:

sys-kernel/vanilla-kernel-6.12.81

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-04-12

vanilla-kernel - 6.18.22
Ebuild name:

sys-kernel/vanilla-kernel-6.18.22

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-04-12

vanilla-kernel - 6.19.12
Ebuild name:

sys-kernel/vanilla-kernel-6.19.12

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-04-12

vanilla-kernel - 6.6.134
Ebuild name:

sys-kernel/vanilla-kernel-6.6.134

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-04-12

vaultwarden - 1.35.4-r3
Ebuild name:

app-admin/vaultwarden-1.35.4-r3

Description

Unofficial Bitwarden compatible password manager

Added to portage

2026-04-12

waylandpp - 1.0.1-r1
Ebuild name:

dev-cpp/waylandpp-1.0.1-r1

Description

Wayland C++ bindings

Added to portage

2026-04-12

wrapt - 2.2.0_rc5
Ebuild name:

dev-python/wrapt-2.2.0_rc5

Description

Module for decorators, wrappers and monkey patching

Added to portage

2026-04-12

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