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:

86257

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-25
File-Temp - 0.231.200
Ebuild name:

perl-core/File-Temp-0.231.200

Description

File can be used to create and open temporary files in a safe way

Added to portage

2026-06-25

aioresponses - 0.7.9
Ebuild name:

dev-python/aioresponses-0.7.9

Description

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

Added to portage

2026-06-25

awscli - 1.45.36
Ebuild name:

app-admin/awscli-1.45.36

Description

Universal Command Line Environment for AWS

Added to portage

2026-06-25

beets - 2.12.0
Ebuild name:

media-sound/beets-2.12.0

Description

Media library management system for obsessive music geeks

Added to portage

2026-06-25

bgrep - 0.3
Ebuild name:

app-misc/bgrep-0.3

Description

Grep-like tool to search for binary strings

Added to portage

2026-06-25

boto3 - 1.43.36
Ebuild name:

dev-python/boto3-1.43.36

Description

The AWS SDK for Python

Added to portage

2026-06-25

botocore - 1.43.36
Ebuild name:

dev-python/botocore-1.43.36

Description

Low-level, data-driven core of boto 3

Added to portage

2026-06-25

cargo-nextest - 0.9.138
Ebuild name:

dev-util/cargo-nextest-0.9.138

Description

Next-generation test runner for Rust

Added to portage

2026-06-25

cfn-lint - 1.52.0
Ebuild name:

dev-python/cfn-lint-1.52.0

Description

CloudFormation Linter

Added to portage

2026-06-25

containerd - 2.3.2
Ebuild name:

app-containers/containerd-2.3.2

Description

A daemon to control runC

Added to portage

2026-06-25

curl - 8.21.0
Ebuild name:

net-misc/curl-8.21.0

Description

A Client that groks URLs

Added to portage

2026-06-25

digraphs - 1.14.0-r1
Ebuild name:

dev-gap/digraphs-1.14.0-r1

Description

Graphs, digraphs, and multidigraphs in GAP

Added to portage

2026-06-25

eza - 0.23.4-r1
Ebuild name:

sys-apps/eza-0.23.4-r1

Description

A modern, maintained replacement for ls

Added to portage

2026-06-25

generically - 0.1.1-r4
Ebuild name:

dev-haskell/generically-0.1.1-r4

Description

Generically newtype to use with DerivingVia

Added to portage

2026-06-25

gmpy2 - 2.3.1
Ebuild name:

dev-python/gmpy2-2.3.1

Description

Python bindings for GMP, MPC, MPFR and MPIR libraries

Added to portage

2026-06-25

hpack - 4.2.0
Ebuild name:

dev-python/hpack-4.2.0

Description

Pure-Python HPACK header compression

Added to portage

2026-06-25

icalendar - 7.2.0
Ebuild name:

dev-python/icalendar-7.2.0

Description

RFC 5545 compatible parser and generator of iCalendar files

Added to portage

2026-06-25

libarchive - 3.8.8
Ebuild name:

app-arch/libarchive-3.8.8

Description

Multi-format archive and compression library

Added to portage

2026-06-25

libxmlb - 0.3.27
Ebuild name:

dev-libs/libxmlb-0.3.27

Description

Library to help create and query binary XML blobs

Added to portage

2026-06-25

mkp224o - 1.7.0
Ebuild name:

app-crypt/mkp224o-1.7.0

Description

Vanity address generator for v3 Tor hidden service addresses

Added to portage

2026-06-25

monkeysphere - 0.44-r2
Ebuild name:

app-crypt/monkeysphere-0.44-r2

Description

Leverage the OpenPGP web of trust for OpenSSH and Web authentication

Added to portage

2026-06-25

moolticute - 1.03.0-r2
Ebuild name:

app-crypt/moolticute-1.03.0-r2

Description

Mooltipass crossplatform daemon/tools

Added to portage

2026-06-25

moolticute - 9999
Ebuild name:

app-crypt/moolticute-9999

Description

Mooltipass crossplatform daemon/tools

Added to portage

2026-06-25

node-semver - 0.9.1
Ebuild name:

dev-python/node-semver-0.9.1

Description

Python version of node-semver, the semantic versioner for npm

Added to portage

2026-06-25

openpgp-keys-gentoo-developers - 20260622
Ebuild name:

sec-keys/openpgp-keys-gentoo-developers-20260622

Description

Gentoo Authority Keys (GLEP 79)

Added to portage

2026-06-25

pdm - 2.28.0
Ebuild name:

dev-python/pdm-2.28.0

Description

Python package and dependency manager supporting the latest PEP standards

Added to portage

2026-06-25

pecl-ssh2 - 1.5.0
Ebuild name:

dev-php/pecl-ssh2-1.5.0

Description

PHP bindings for the libssh2 library

Added to portage

2026-06-25

pecl-uploadprogress - 2.0.2-r3
Ebuild name:

dev-php/pecl-uploadprogress-2.0.2-r3

Description

An extension to track progress of a file upload

Added to portage

2026-06-25

pkgcheck - 0.10.40-r1
Ebuild name:

dev-util/pkgcheck-0.10.40-r1

Description

pkgcore-based QA utility for ebuild repos

Added to portage

2026-06-25

planarity - 5.0.0.0-r1
Ebuild name:

sci-mathematics/planarity-5.0.0.0-r1

Description

The edge addition planarity suite of graph algorithms

Added to portage

2026-06-25

pymdown-extensions - 11.0
Ebuild name:

dev-python/pymdown-extensions-11.0

Description

Extensions for Python Markdown

Added to portage

2026-06-25

pypdf - 6.14.2
Ebuild name:

dev-python/pypdf-6.14.2

Description

Python library to work with PDF files

Added to portage

2026-06-25

python-socks - 2.8.2
Ebuild name:

dev-python/python-socks-2.8.2

Description

SOCKS4, SOCKS5, HTTP tunneling functionality for Python

Added to portage

2026-06-25

pyzotero - 1.13.2
Ebuild name:

dev-python/pyzotero-1.13.2

Description

A Python client for the Zotero API

Added to portage

2026-06-25

redis - 8.0.1
Ebuild name:

dev-python/redis-8.0.1

Description

Python client for Redis key-value store

Added to portage

2026-06-25

rescrobbled - 0.10.0
Ebuild name:

media-sound/rescrobbled-0.10.0

Description

MPRIS music scrobbler daemon

Added to portage

2026-06-25

rssguard - 5.2.0
Ebuild name:

net-news/rssguard-5.2.0

Description

Simple (yet powerful) news feed reader

Added to portage

2026-06-25

runc - 1.4.3
Ebuild name:

app-containers/runc-1.4.3

Description

CLI tool for spawning and running containers

Added to portage

2026-06-25

scala-ts-mode - 1.0.0_p20250418
Ebuild name:

app-emacs/scala-ts-mode-1.0.0_p20250418

Description

Emacs Scala Mode via Tree-Sitter

Added to portage

2026-06-25

scikit-build - 0.19.1
Ebuild name:

dev-python/scikit-build-0.19.1

Description

Improved build system generator for Python C/C++/Fortran/Cython exte

Added to portage

2026-06-25

setools - 4.7.0
Ebuild name:

app-admin/setools-4.7.0

Description

Policy Analysis Tools for SELinux

Added to portage

2026-06-25

signxml - 5.0.1
Ebuild name:

dev-python/signxml-5.0.1

Description

Python XML Signature and XAdES library

Added to portage

2026-06-25

spidermonkey - 140.12.0
Ebuild name:

dev-lang/spidermonkey-140.12.0

Description

Mozilla's JavaScript engine written in C and C++

Added to portage

2026-06-25

spyder-kernels - 3.1.5
Ebuild name:

dev-python/spyder-kernels-3.1.5

Description

Kernels used by spyder on its ipython console

Added to portage

2026-06-25

systemdgenie - 0.100.0_pre20260624
Ebuild name:

app-admin/systemdgenie-0.100.0_pre20260624

Description

Systemd managment utility

Added to portage

2026-06-25

tor - 0.4.9.10
Ebuild name:

net-vpn/tor-0.4.9.10

Description

Anonymizing overlay network for TCP

Added to portage

2026-06-25

tox - 4.56.0
Ebuild name:

dev-python/tox-4.56.0

Description

virtualenv-based automation of test activities

Added to portage

2026-06-25

uv - 0.11.24
Ebuild name:

dev-python/uv-0.11.24

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-06-25

uv-build - 0.11.24
Ebuild name:

dev-python/uv-build-0.11.24

Description

PEP517 uv build backend

Added to portage

2026-06-25

vcs-versioning - 2.1.2
Ebuild name:

dev-python/vcs-versioning-2.1.2

Description

Core VCS versioning functionality from setuptools-scm

Added to portage

2026-06-25

2026-06-24
alsa-firmware - 1.2.4-r3
Ebuild name:

sys-firmware/alsa-firmware-1.2.4-r3

Description

Advanced Linux Sound Architecture firmware

Added to portage

2026-06-24

ant-ivy - 2.5.3
Ebuild name:

dev-java/ant-ivy-2.5.3

Description

Ivy is a free java based dependency manager

Added to portage

2026-06-24

assertj-core - 3.27.7
Ebuild name:

dev-java/assertj-core-3.27.7

Description

Rich and fluent assertions for testing for Java

Added to portage

2026-06-24

asymptote - 3.11-r1
Ebuild name:

media-gfx/asymptote-3.11-r1

Description

A vector graphics language that provides a framework for technical draw

Added to portage

2026-06-24

asymptote - 3.12-r2
Ebuild name:

media-gfx/asymptote-3.12-r2

Description

A vector graphics language that provides a framework for technical draw

Added to portage

2026-06-24

audacious - 4.6.1
Ebuild name:

media-sound/audacious-4.6.1

Description

Lightweight and versatile audio player

Added to portage

2026-06-24

audacious-plugins - 4.6.1
Ebuild name:

media-plugins/audacious-plugins-4.6.1

Description

Lightweight and versatile audio player

Added to portage

2026-06-24

aurorae - 6.7.1
Ebuild name:

kde-plasma/aurorae-6.7.1

Description

Themeable window decoration for KWin

Added to portage

2026-06-24

awscli - 1.45.35
Ebuild name:

app-admin/awscli-1.45.35

Description

Universal Command Line Environment for AWS

Added to portage

2026-06-24

b4 - 0.15.2-r1
Ebuild name:

net-mail/b4-0.15.2-r1

Description

Utility for fetching patchsets from public-inbox

Added to portage

2026-06-24

bcachefs-tools - 1.38.6
Ebuild name:

sys-fs/bcachefs-tools-1.38.6

Description

Tools for bcachefs

Added to portage

2026-06-24

bcmail - 1.84
Ebuild name:

dev-java/bcmail-1.84

Description

The Bouncy Castle Java S/MIME APIs for handling S/MIME protocols

Added to portage

2026-06-24

bcpg - 1.84
Ebuild name:

dev-java/bcpg-1.84

Description

Java cryptography APIs

Added to portage

2026-06-24

bcpkix - 1.84
Ebuild name:

dev-java/bcpkix-1.84

Description

Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, and certificate generation

Added to portage

2026-06-24

bcprov - 1.84
Ebuild name:

dev-java/bcprov-1.84

Description

Java cryptography APIs

Added to portage

2026-06-24

bcutil - 1.84
Ebuild name:

dev-java/bcutil-1.84

Description

Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctl

Added to portage

2026-06-24

bear - 4.1.4
Ebuild name:

dev-util/bear-4.1.4

Description

A tool that generates a compilation database for clang tooling

Added to portage

2026-06-24

blake3 - 1.0.9
Ebuild name:

dev-python/blake3-1.0.9

Description

Python bindings for the BLAKE3 cryptographic hash function

Added to portage

2026-06-24

bluedevil - 6.7.1
Ebuild name:

kde-plasma/bluedevil-6.7.1

Description

Bluetooth stack for KDE Plasma

Added to portage

2026-06-24

boto3 - 1.43.35
Ebuild name:

dev-python/boto3-1.43.35

Description

The AWS SDK for Python

Added to portage

2026-06-24

botocore - 1.43.35
Ebuild name:

dev-python/botocore-1.43.35

Description

Low-level, data-driven core of boto 3

Added to portage

2026-06-24

breeze - 6.7.1
Ebuild name:

kde-plasma/breeze-6.7.1

Description

Breeze visual style for the Plasma desktop

Added to portage

2026-06-24

breeze-grub - 6.7.1
Ebuild name:

kde-plasma/breeze-grub-6.7.1

Description

Breeze theme for GRUB

Added to portage

2026-06-24

breeze-gtk - 6.7.1
Ebuild name:

kde-plasma/breeze-gtk-6.7.1

Description

Official GTK+ port of Plasma's Breeze widget style

Added to portage

2026-06-24

breeze-plymouth - 6.7.1
Ebuild name:

kde-plasma/breeze-plymouth-6.7.1

Description

Breeze theme for Plymouth

Added to portage

2026-06-24

coverage - 7.14.3
Ebuild name:

dev-python/coverage-7.14.3

Description

Code coverage measurement for Python

Added to portage

2026-06-24

crossdev - 20260623
Ebuild name:

sys-devel/crossdev-20260623

Description

Gentoo Cross-toolchain generator

Added to portage

2026-06-24

curl - 8.20.0-r1
Ebuild name:

net-misc/curl-8.20.0-r1

Description

A Client that groks URLs

Added to portage

2026-06-24

cutechess - 1.5.1
Ebuild name:

games-board/cutechess-1.5.1

Description

Cross-platform tools for working with chess engines

Added to portage

2026-06-24

deepmerge - 2.1.0
Ebuild name:

dev-python/deepmerge-2.1.0

Description

Tools to handle merging of nested data structures in python

Added to portage

2026-06-24

desktop-file-utils - 0.28-r1
Ebuild name:

dev-util/desktop-file-utils-0.28-r1

Description

Command line utilities to work with desktop menu entries

Added to portage

2026-06-24

discord - 1.0.144
Ebuild name:

net-im/discord-1.0.144

Description

All-in-one voice and text chat for gamers

Added to portage

2026-06-24

discover - 6.7.1
Ebuild name:

kde-plasma/discover-6.7.1

Description

KDE Plasma resources management GUI

Added to portage

2026-06-24

drkonqi - 6.7.1
Ebuild name:

kde-plasma/drkonqi-6.7.1

Description

Plasma crash handler, gives the user feedback if a program crashed

Added to portage

2026-06-24

duckdb - 1.5.4
Ebuild name:

dev-db/duckdb-1.5.4

Description

high-performance analytical database system

Added to portage

2026-06-24

fcron - 3.4.1
Ebuild name:

sys-process/fcron-3.4.1

Description

A command scheduler with extended capabilities over cron and anacron

Added to portage

2026-06-24

fgl - 5.8.3.1
Ebuild name:

dev-haskell/fgl-5.8.3.1

Description

Martin Erwig's Functional Graph Library

Added to portage

2026-06-24

firefox - 152.0.2
Ebuild name:

www-client/firefox-152.0.2

Description

Firefox Web Browser

Added to portage

2026-06-24

firefox-bin - 152.0.2
Ebuild name:

www-client/firefox-bin-152.0.2

Description

Firefox Web Browser

Added to portage

2026-06-24

firefox-l10n - 152.0.2
Ebuild name:

www-client/firefox-l10n-152.0.2

Description

Firefox Web Browser's translation files

Added to portage

2026-06-24

flatpak-kcm - 6.7.1
Ebuild name:

kde-plasma/flatpak-kcm-6.7.1

Description

Flatpak Permissions Management KCM

Added to portage

2026-06-24

gallery-dl - 1.32.4
Ebuild name:

net-misc/gallery-dl-1.32.4

Description

Download image galleries and collections from several image hosting site

Added to portage

2026-06-24

gdal - 3.13.1
Ebuild name:

sci-libs/gdal-3.13.1

Description

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

Added to portage

2026-06-24

gentoo-dtd - 20260615
Ebuild name:

app-text/gentoo-dtd-20260615

Description

Document Type Definition for Gentoo-related XML files

Added to portage

2026-06-24

gnome-commander - 2.0.3
Ebuild name:

gnome-extra/gnome-commander-2.0.3

Description

A graphical, full featured, twin-panel file manager

Added to portage

2026-06-24

gnu-regexp - 1.1.4-r5
Ebuild name:

dev-java/gnu-regexp-1.1.4-r5

Description

GNU regular expression package for Java

Added to portage

2026-06-24

hspec-contrib - 0.5.2
Ebuild name:

dev-haskell/hspec-contrib-0.5.2

Description

Contributed functionality for Hspec

Added to portage

2026-06-24

jackcess - 4.0.10
Ebuild name:

dev-java/jackcess-4.0.10

Description

A pure Java library for reading from and writing to MS Access databases

Added to portage

2026-06-24

just - 1.52.0
Ebuild name:

dev-build/just-1.52.0

Description

Just a command runner (with syntax inspired by 'make')

Added to portage

2026-06-24

kactivitymanagerd - 6.7.1
Ebuild name:

kde-plasma/kactivitymanagerd-6.7.1

Description

System service to manage user's activities, track the usage patt

Added to portage

2026-06-24

kde-cli-tools - 6.7.1
Ebuild name:

kde-plasma/kde-cli-tools-6.7.1

Description

Tools based on KDE Frameworks 6 to better interact with the system

Added to portage

2026-06-24

kde-cli-tools-common - 6.7.1
Ebuild name:

kde-plasma/kde-cli-tools-common-6.7.1

Description

Common files for

Added to portage

2026-06-24

kde-gtk-config - 6.7.1
Ebuild name:

kde-plasma/kde-gtk-config-6.7.1

Description

Syncs KDE Plasma theme settings to GTK applications

Added to portage

2026-06-24

kdecoration - 6.7.1
Ebuild name:

kde-plasma/kdecoration-6.7.1

Description

Plugin based library to create window decorations

Added to portage

2026-06-24

kdeplasma-addons - 6.7.1
Ebuild name:

kde-plasma/kdeplasma-addons-6.7.1

Description

Extra Plasma applets and engines

Added to portage

2026-06-24

kdesu-gui - 6.7.1
Ebuild name:

kde-plasma/kdesu-gui-6.7.1

Description

Graphical frontend for KDE Frameworks' kdesu

Added to portage

2026-06-24

kea - 3.0.3-r1
Ebuild name:

net-misc/kea-3.0.3-r1

Description

High-performance production grade DHCPv4 & DHCPv6 server

Added to portage

2026-06-24

keditfiletype - 6.7.1
Ebuild name:

kde-plasma/keditfiletype-6.7.1

Description

File Type Editor

Added to portage

2026-06-24

kgamma - 6.7.1
Ebuild name:

kde-plasma/kgamma-6.7.1

Description

Screen gamma values kcontrol module

Added to portage

2026-06-24

kglobalacceld - 6.7.1
Ebuild name:

kde-plasma/kglobalacceld-6.7.1

Description

Daemon providing Global Keyboard Shortcut (Accelerator) functionalit

Added to portage

2026-06-24

kinfocenter - 6.7.1
Ebuild name:

kde-plasma/kinfocenter-6.7.1

Description

Utility providing information about the computer hardware

Added to portage

2026-06-24

kmenuedit - 6.7.1
Ebuild name:

kde-plasma/kmenuedit-6.7.1

Description

KDE Plasma menu editor

Added to portage

2026-06-24

knighttime - 6.7.1
Ebuild name:

kde-plasma/knighttime-6.7.1

Description

Helpers for scheduling the dark-light cycle

Added to portage

2026-06-24

kpipewire - 6.7.1
Ebuild name:

kde-plasma/kpipewire-6.7.1

Description

Components relating to Flatpak pipewire use in Plasma

Added to portage

2026-06-24

krdp - 6.7.1
Ebuild name:

kde-plasma/krdp-6.7.1

Description

Library and examples for creating an RDP server

Added to portage

2026-06-24

kscreen - 6.7.1
Ebuild name:

kde-plasma/kscreen-6.7.1

Description

KDE Plasma screen management

Added to portage

2026-06-24

kscreenlocker - 6.7.1
Ebuild name:

kde-plasma/kscreenlocker-6.7.1

Description

Library and components for secure lock screen architecture

Added to portage

2026-06-24

ksshaskpass - 6.7.1
Ebuild name:

kde-plasma/ksshaskpass-6.7.1

Description

Implementation of ssh-askpass with KDE Wallet integration

Added to portage

2026-06-24

ksystemstats - 6.7.1
Ebuild name:

kde-plasma/ksystemstats-6.7.1

Description

Plugin-based system monitoring daemon

Added to portage

2026-06-24

kwallet-pam - 6.7.1
Ebuild name:

kde-plasma/kwallet-pam-6.7.1

Description

PAM module to not enter KWallet password again after login

Added to portage

2026-06-24

kwayland - 6.7.1
Ebuild name:

kde-plasma/kwayland-6.7.1

Description

Qt-style API to interact with the wayland-client API

Added to portage

2026-06-24

kwin - 6.7.1
Ebuild name:

kde-plasma/kwin-6.7.1

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2026-06-24

kwin-x11 - 6.7.1
Ebuild name:

kde-plasma/kwin-x11-6.7.1

Description

Flexible, composited X window manager

Added to portage

2026-06-24

kwrited - 6.7.1
Ebuild name:

kde-plasma/kwrited-6.7.1

Description

KDE Plasma daemon listening for wall and write messages

Added to portage

2026-06-24

layer-shell-qt - 6.7.1
Ebuild name:

kde-plasma/layer-shell-qt-6.7.1

Description

Qt component to allow applications make use of Wayland wl-layer-she

Added to portage

2026-06-24

libclc - 16.0.6
Ebuild name:

llvm-runtimes/libclc-16.0.6

Description

OpenCL C library

Added to portage

2026-06-24

libclc - 17.0.6
Ebuild name:

llvm-runtimes/libclc-17.0.6

Description

OpenCL C library

Added to portage

2026-06-24

libclc - 18.1.8
Ebuild name:

llvm-runtimes/libclc-18.1.8

Description

OpenCL C library

Added to portage

2026-06-24

libclc - 19.1.7
Ebuild name:

llvm-runtimes/libclc-19.1.7

Description

OpenCL C library

Added to portage

2026-06-24

libclc - 20.1.8
Ebuild name:

llvm-runtimes/libclc-20.1.8

Description

OpenCL C library

Added to portage

2026-06-24

libclc - 21.1.8
Ebuild name:

llvm-runtimes/libclc-21.1.8

Description

OpenCL C library

Added to portage

2026-06-24

libclc - 22.1.8
Ebuild name:

llvm-runtimes/libclc-22.1.8

Description

OpenCL C library

Added to portage

2026-06-24

libclc - 23.0.0.9999
Ebuild name:

llvm-runtimes/libclc-23.0.0.9999

Description

OpenCL C library

Added to portage

2026-06-24

libclc - 23.0.0_pre20260605
Ebuild name:

llvm-runtimes/libclc-23.0.0_pre20260605

Description

OpenCL C library

Added to portage

2026-06-24

libkscreen - 6.7.1
Ebuild name:

kde-plasma/libkscreen-6.7.1

Description

Plasma screen management library

Added to portage

2026-06-24

libksysguard - 6.7.1
Ebuild name:

kde-plasma/libksysguard-6.7.1

Description

Task management and system monitoring library

Added to portage

2026-06-24

libplasma - 6.7.1
Ebuild name:

kde-plasma/libplasma-6.7.1

Description

Plasma library and runtime components based upon KF6 and Qt6

Added to portage

2026-06-24

log4j-12-api - 2.26.0
Ebuild name:

dev-java/log4j-12-api-2.26.0

Description

The Apache Log4j 1.x Compatibility API

Added to portage

2026-06-24

log4j-api - 2.26.0
Ebuild name:

dev-java/log4j-api-2.26.0

Description

The Apache Log4j API

Added to portage

2026-06-24

log4j-core - 2.26.0
Ebuild name:

dev-java/log4j-core-2.26.0

Description

The Apache Log4j Implementation

Added to portage

2026-06-24

mailshears - 0.2.0
Ebuild name:

net-mail/mailshears-0.2.0

Description

Mangle your mail garden

Added to portage

2026-06-24

mattermost-desktop-bin - 6.2.2
Ebuild name:

net-im/mattermost-desktop-bin-6.2.2

Description

Mattermost Desktop application

Added to portage

2026-06-24

milou - 6.7.1
Ebuild name:

kde-plasma/milou-6.7.1

Description

Dedicated search application built on top of Baloo

Added to portage

2026-06-24

mistune - 3.3.2
Ebuild name:

dev-python/mistune-3.3.2

Description

The fastest markdown parser in pure Python

Added to portage

2026-06-24

mutagen - 1.48.0
Ebuild name:

media-libs/mutagen-1.48.0

Description

Audio metadata tag reader and writer implemented in pure Python

Added to portage

2026-06-24

ocean-sound-theme - 6.7.1
Ebuild name:

kde-plasma/ocean-sound-theme-6.7.1

Description

Ocean Sound Theme for Plasma

Added to portage

2026-06-24

openpgp-keys-apache-ant - 20260402
Ebuild name:

sec-keys/openpgp-keys-apache-ant-20260402

Description

OpenPGP keys used by ant.apache.org

Added to portage

2026-06-24

openpgp-keys-apache-poi - 20240421
Ebuild name:

sec-keys/openpgp-keys-apache-poi-20240421

Description

OpenPGP keys used by poi.apache.org

Added to portage

2026-06-24

oxygen - 6.7.1
Ebuild name:

kde-plasma/oxygen-6.7.1

Description

Oxygen visual style for the Plasma desktop

Added to portage

2026-06-24

oxygen-sounds - 6.7.1
Ebuild name:

kde-plasma/oxygen-sounds-6.7.1

Description

Oxygen sound theme for the Plasma desktop

Added to portage

2026-06-24

perl - 5.44.0_rc1
Ebuild name:

dev-lang/perl-5.44.0_rc1

Description

Larry Wall's Practical Extraction and Report Language

Added to portage

2026-06-24

perl-Archive-Tar - 3.120.0
Ebuild name:

virtual/perl-Archive-Tar-3.120.0

Description

Virtual for

Added to portage

2026-06-24

perl-Carp - 1.540.0-r3
Ebuild name:

virtual/perl-Carp-1.540.0-r3

Description

Virtual for

Added to portage

2026-06-24

perl-Compress-Raw-Bzip2 - 2.218.0
Ebuild name:

virtual/perl-Compress-Raw-Bzip2-2.218.0

Description

Virtual for

Added to portage

2026-06-24

perl-autodie - 2.370.0-r2
Ebuild name:

virtual/perl-autodie-2.370.0-r2

Description

Virtual for

Added to portage

2026-06-24

phonenumbers - 9.0.33
Ebuild name:

dev-python/phonenumbers-9.0.33

Description

Python port of Google's libphonenumber

Added to portage

2026-06-24

plasma-activities - 6.7.1
Ebuild name:

kde-plasma/plasma-activities-6.7.1

Description

Core components for KDE's Activities System

Added to portage

2026-06-24

plasma-activities-stats - 6.7.1
Ebuild name:

kde-plasma/plasma-activities-stats-6.7.1

Description

Library for accessing usage data collected by the activiti

Added to portage

2026-06-24

plasma-bigscreen - 6.7.1
Ebuild name:

kde-plasma/plasma-bigscreen-6.7.1

Description

Plasma shell for TVs

Added to portage

2026-06-24

plasma-browser-integration - 6.7.1
Ebuild name:

kde-plasma/plasma-browser-integration-6.7.1

Description

Integrate Chrome/Firefox better into Plasma through bro

Added to portage

2026-06-24

plasma-desktop - 6.7.1
Ebuild name:

kde-plasma/plasma-desktop-6.7.1

Description

KDE Plasma desktop

Added to portage

2026-06-24

plasma-disks - 6.7.1
Ebuild name:

kde-plasma/plasma-disks-6.7.1

Description

Monitors S.M.A.R.T. capable devices for imminent failure

Added to portage

2026-06-24

plasma-firewall - 6.7.1
Ebuild name:

kde-plasma/plasma-firewall-6.7.1

Description

Plasma frontend for Firewalld or UFW

Added to portage

2026-06-24

plasma-integration - 6.7.1
Ebuild name:

kde-plasma/plasma-integration-6.7.1

Description

Qt Platform Theme integration plugins for the Plasma workspaces

Added to portage

2026-06-24

plasma-keyboard - 6.7.1
Ebuild name:

kde-plasma/plasma-keyboard-6.7.1

Description

Virtual keyboard based on Qt Virtual Keyboard

Added to portage

2026-06-24

plasma-login-manager - 6.7.1
Ebuild name:

kde-plasma/plasma-login-manager-6.7.1

Description

Plasma Login Manager

Added to portage

2026-06-24

plasma-login-sessions - 6.7.1
Ebuild name:

kde-plasma/plasma-login-sessions-6.7.1

Description

KDE Plasma login sessions

Added to portage

2026-06-24

plasma-meta - 6.7.1
Ebuild name:

kde-plasma/plasma-meta-6.7.1

Description

Merge this to pull in all Plasma 6 packages

Added to portage

2026-06-24

plasma-nano - 6.7.1
Ebuild name:

kde-plasma/plasma-nano-6.7.1

Description

Minimal Plasma shell package

Added to portage

2026-06-24

plasma-nm - 6.7.1
Ebuild name:

kde-plasma/plasma-nm-6.7.1

Description

KDE Plasma applet for NetworkManager

Added to portage

2026-06-24

plasma-pa - 6.7.1
Ebuild name:

kde-plasma/plasma-pa-6.7.1

Description

Plasma applet for audio volume management using PulseAudio

Added to portage

2026-06-24

plasma-sdk - 6.7.1
Ebuild name:

kde-plasma/plasma-sdk-6.7.1

Description

Useful applications for Plasma development

Added to portage

2026-06-24

plasma-systemmonitor - 6.7.1
Ebuild name:

kde-plasma/plasma-systemmonitor-6.7.1

Description

Monitor system sensors, process information and other system

Added to portage

2026-06-24

plasma-thunderbolt - 6.7.1
Ebuild name:

kde-plasma/plasma-thunderbolt-6.7.1

Description

Plasma integration for controlling Thunderbolt devices

Added to portage

2026-06-24

plasma-vault - 6.7.1
Ebuild name:

kde-plasma/plasma-vault-6.7.1

Description

Plasma applet and services for creating encrypted vaults

Added to portage

2026-06-24

plasma-welcome - 6.7.1
Ebuild name:

kde-plasma/plasma-welcome-6.7.1

Description

Friendly onboarding wizard for Plasma

Added to portage

2026-06-24

plasma-workspace - 6.6.5-r2
Ebuild name:

kde-plasma/plasma-workspace-6.6.5-r2

Description

KDE Plasma workspace

Added to portage

2026-06-24

plasma-workspace - 6.7.1
Ebuild name:

kde-plasma/plasma-workspace-6.7.1

Description

KDE Plasma workspace

Added to portage

2026-06-24

plasma-workspace-wallpapers - 6.7.1
Ebuild name:

kde-plasma/plasma-workspace-wallpapers-6.7.1

Description

Wallpapers for the Plasma workspace

Added to portage

2026-06-24

plasma5support - 6.7.1
Ebuild name:

kde-plasma/plasma5support-6.7.1

Description

Support components for porting from KF5/Qt5 to KF6/Qt6

Added to portage

2026-06-24

plymouth-kcm - 6.7.1
Ebuild name:

kde-plasma/plymouth-kcm-6.7.1

Description

KDE Plasma control module for Plymouth

Added to portage

2026-06-24

poi - 5.5.1
Ebuild name:

dev-java/poi-5.5.1

Description

Java API to access Mocrosoft format files

Added to portage

2026-06-24

polkit-kde-agent - 6.7.1
Ebuild name:

kde-plasma/polkit-kde-agent-6.7.1

Description

PolKit agent module for KDE Plasma

Added to portage

2026-06-24

portage - 3.0.81
Ebuild name:

sys-apps/portage-3.0.81

Description

The package management and distribution system for Gentoo

Added to portage

2026-06-24

powerdevil - 6.7.1
Ebuild name:

kde-plasma/powerdevil-6.7.1

Description

Power management for KDE Plasma Shell

Added to portage

2026-06-24

prettytable - 3.18.0
Ebuild name:

dev-python/prettytable-3.18.0

Description

Easily displaying tabular data in a visually appealing ASCII table fo

Added to portage

2026-06-24

print-manager - 6.7.1
Ebuild name:

kde-plasma/print-manager-6.7.1

Description

Manage CUPS print jobs and printers in Plasma

Added to portage

2026-06-24

pyfuse3 - 3.5.0
Ebuild name:

dev-python/pyfuse3-3.5.0

Description

Python 3 bindings for libfuse 3 with asynchronous API

Added to portage

2026-06-24

pypdf - 6.14.0
Ebuild name:

dev-python/pypdf-6.14.0

Description

Python library to work with PDF files

Added to portage

2026-06-24

python - 0.3.15.0_beta3
Ebuild name:

dev-lang/python-0.3.15.0_beta3

Description

Freethreading (no-GIL) version of Python programming language

Added to portage

2026-06-24

python - 3.15.0_beta3
Ebuild name:

dev-lang/python-3.15.0_beta3

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2026-06-24

python-tests - 0.3.15.0_beta3
Ebuild name:

dev-python/python-tests-0.3.15.0_beta3

Description

Test modules from dev-lang/python

Added to portage

2026-06-24

python-tests - 3.15.0_beta3
Ebuild name:

dev-python/python-tests-3.15.0_beta3

Description

Test modules from dev-lang/python

Added to portage

2026-06-24

qqc2-breeze-style - 6.7.1
Ebuild name:

kde-plasma/qqc2-breeze-style-6.7.1

Description

Breeze inspired QQC2 Style

Added to portage

2026-06-24

sabnzbd - 5.0.3
Ebuild name:

net-nntp/sabnzbd-5.0.3

Description

Binary newsgrabber with web-interface

Added to portage

2026-06-24

sccache - 0.16.0
Ebuild name:

dev-util/sccache-0.16.0

Description

ccache/distcc like tool with support for rust and cloud storage

Added to portage

2026-06-24

sddm-kcm - 6.7.1
Ebuild name:

kde-plasma/sddm-kcm-6.7.1

Description

KDE Plasma control module for SDDM

Added to portage

2026-06-24

setuptools-scm - 10.1.1
Ebuild name:

dev-python/setuptools-scm-10.1.1

Description

Manage versions by scm tags via setuptools

Added to portage

2026-06-24

setuptools-scm - 10.1.2
Ebuild name:

dev-python/setuptools-scm-10.1.2

Description

Manage versions by scm tags via setuptools

Added to portage

2026-06-24

shellcheck - 0.11.0
Ebuild name:

dev-util/shellcheck-0.11.0

Description

Shell script analysis tool

Added to portage

2026-06-24

shelltestrunner - 1.11
Ebuild name:

dev-util/shelltestrunner-1.11

Description

Easy, repeatable testing of CLI programs/commands

Added to portage

2026-06-24

siril - 1.4.4
Ebuild name:

sci-astronomy/siril-1.4.4

Description

A free astronomical image processing software

Added to portage

2026-06-24

spectacle - 6.7.1
Ebuild name:

kde-plasma/spectacle-6.7.1

Description

Screenshot capture utility

Added to portage

2026-06-24

sqlmap - 1.10.6
Ebuild name:

dev-db/sqlmap-1.10.6

Description

An automatic SQL injection and database takeover tool

Added to portage

2026-06-24

stalwart-mail - 0.16.10
Ebuild name:

net-mail/stalwart-mail-0.16.10

Description

Stalwart Mail Server

Added to portage

2026-06-24

strawberry - 1.2.20
Ebuild name:

media-sound/strawberry-1.2.20

Description

Modern music player and library organizer based on Clementine and Qt

Added to portage

2026-06-24

systemsettings - 6.7.1
Ebuild name:

kde-plasma/systemsettings-6.7.1

Description

Control Center to configure KDE Plasma desktop

Added to portage

2026-06-24

trang - 20241231-r1
Ebuild name:

app-text/trang-20241231-r1

Description

Multi-format schema converter based on RELAX NG

Added to portage

2026-06-24

translate-toolkit - 3.19.12
Ebuild name:

dev-python/translate-toolkit-3.19.12

Description

Toolkit to convert between many translation formats

Added to portage

2026-06-24

union - 6.7.1
Ebuild name:

kde-plasma/union-6.7.1

Description

Style engine providing a unified style description to separate output styles

Added to portage

2026-06-24

unison-lang-bin - 1.3.0-r1
Ebuild name:

dev-lang/unison-lang-bin-1.3.0-r1

Description

A friendly programming language from the future

Added to portage

2026-06-24

vcs-versioning - 2.1.0
Ebuild name:

dev-python/vcs-versioning-2.1.0

Description

Core VCS versioning functionality from setuptools-scm

Added to portage

2026-06-24

wacomtablet - 6.7.1
Ebuild name:

kde-plasma/wacomtablet-6.7.1

Description

Wacom system settings module that supports different button/pen layout

Added to portage

2026-06-24

xdg-desktop-portal-kde - 6.7.1
Ebuild name:

kde-plasma/xdg-desktop-portal-kde-6.7.1

Description

Backend implementation for xdg-desktop-portal that is using

Added to portage

2026-06-24

yara-x - 1.18.0
Ebuild name:

app-forensics/yara-x-1.18.0

Description

A malware identification and classification tool

Added to portage

2026-06-24

zeroconf - 0.150.0
Ebuild name:

dev-python/zeroconf-0.150.0

Description

Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi comp

Added to portage

2026-06-24

znc-clientbuffer - 1.0.53
Ebuild name:

net-irc/znc-clientbuffer-1.0.53

Description

ZNC module which provides client specific buffers

Added to portage

2026-06-24

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