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:

86028

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-18
amarok - 3.3.3
Ebuild name:

media-sound/amarok-3.3.3

Description

Advanced audio player based on KDE Frameworks

Added to portage

2026-06-18

android-studio - 2026.1.1.10
Ebuild name:

dev-util/android-studio-2026.1.1.10

Description

Android development environment based on IntelliJ IDEA

Added to portage

2026-06-18

awscli - 1.45.32
Ebuild name:

app-admin/awscli-1.45.32

Description

Universal Command Line Environment for AWS

Added to portage

2026-06-18

bitarray - 3.8.2
Ebuild name:

dev-python/bitarray-3.8.2

Description

Efficient arrays of booleans -- C extension

Added to portage

2026-06-18

boto3 - 1.43.32
Ebuild name:

dev-python/boto3-1.43.32

Description

The AWS SDK for Python

Added to portage

2026-06-18

botocore - 1.43.32
Ebuild name:

dev-python/botocore-1.43.32

Description

Low-level, data-driven core of boto 3

Added to portage

2026-06-18

c-blosc2 - 3.1.4
Ebuild name:

dev-libs/c-blosc2-3.1.4

Description

Blocking, shuffling and lossless compression library

Added to portage

2026-06-18

chrome-binary-plugins - 149.0.7827.155
Ebuild name:

www-plugins/chrome-binary-plugins-149.0.7827.155

Description

Binary plugins from Google Chrome for use in Chrom

Added to portage

2026-06-18

chrome-binary-plugins - 150.0.7871.24_beta
Ebuild name:

www-plugins/chrome-binary-plugins-150.0.7871.24_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-06-18

chrome-binary-plugins - 151.0.7886.2_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-151.0.7886.2_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-06-18

chromedriver-bin - 149.0.7827.155
Ebuild name:

www-apps/chromedriver-bin-149.0.7827.155

Description

WebDriver for Chrome

Added to portage

2026-06-18

chromium - 149.0.7827.155
Ebuild name:

www-client/chromium-149.0.7827.155

Description

Open-source version of Google Chrome web browser

Added to portage

2026-06-18

dbeaver-bin - 26.1.0
Ebuild name:

dev-db/dbeaver-bin-26.1.0

Description

Free universal database tool (community edition)

Added to portage

2026-06-18

freecell-solver - 6.16.0
Ebuild name:

dev-games/freecell-solver-6.16.0

Description

C library for automatically solving Freecell and some other solita

Added to portage

2026-06-18

geoclue - 2.8.1
Ebuild name:

app-misc/geoclue-2.8.1

Description

Location information D-Bus service

Added to portage

2026-06-18

github-cli - 2.94.0
Ebuild name:

dev-util/github-cli-2.94.0

Description

GitHub CLI

Added to portage

2026-06-18

google-chrome - 149.0.7827.155
Ebuild name:

www-client/google-chrome-149.0.7827.155

Description

The web browser from Google

Added to portage

2026-06-18

google-chrome-beta - 150.0.7871.24
Ebuild name:

www-client/google-chrome-beta-150.0.7871.24

Description

The web browser from Google

Added to portage

2026-06-18

google-chrome-unstable - 151.0.7886.2
Ebuild name:

www-client/google-chrome-unstable-151.0.7886.2

Description

The web browser from Google

Added to portage

2026-06-18

libabw - 0.1.4
Ebuild name:

app-text/libabw-0.1.4

Description

Library parsing abiword documents

Added to portage

2026-06-18

libcdr - 0.1.9
Ebuild name:

media-libs/libcdr-0.1.9

Description

Library parsing the Corel cdr documents

Added to portage

2026-06-18

libcdr - 9999
Ebuild name:

media-libs/libcdr-9999

Description

Library parsing the Corel cdr documents

Added to portage

2026-06-18

libcmis - 0.6.3
Ebuild name:

dev-cpp/libcmis-0.6.3

Description

C++ client library for the CMIS interface

Added to portage

2026-06-18

libexttextcat - 3.4.8-r1
Ebuild name:

app-text/libexttextcat-3.4.8-r1

Description

Library implementing N-gram-based text categorization

Added to portage

2026-06-18

libfreehand - 0.1.3
Ebuild name:

media-libs/libfreehand-0.1.3

Description

Library for import of FreeHand drawings

Added to portage

2026-06-18

libfreehand - 9999
Ebuild name:

media-libs/libfreehand-9999

Description

Library for import of FreeHand drawings

Added to portage

2026-06-18

libmspub - 0.1.5
Ebuild name:

app-text/libmspub-0.1.5

Description

Library parsing Microsoft Publisher documents

Added to portage

2026-06-18

libmspub - 9999
Ebuild name:

app-text/libmspub-9999

Description

Library parsing Microsoft Publisher documents

Added to portage

2026-06-18

libqxp - 0.0.3
Ebuild name:

app-text/libqxp-0.0.3

Description

Library parsing QuarkXpress documents

Added to portage

2026-06-18

libvisio - 0.1.11
Ebuild name:

media-libs/libvisio-0.1.11

Description

Library parsing the file format of MS Visio documents

Added to portage

2026-06-18

libvisio - 9999
Ebuild name:

media-libs/libvisio-9999

Description

Library parsing the file format of MS Visio documents

Added to portage

2026-06-18

libwacom - 2.19.0
Ebuild name:

dev-libs/libwacom-2.19.0

Description

Library for identifying Wacom tablets and their model-specific features

Added to portage

2026-06-18

marginalia - 2.10
Ebuild name:

app-emacs/marginalia-2.10

Description

Marginalia in the minibuffer

Added to portage

2026-06-18

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-18

md5deep - 4.4
Ebuild name:

app-crypt/md5deep-4.4

Description

Expanded md5sum program with recursive and comparison options

Added to portage

2026-06-18

md6sum - 1.0-r3
Ebuild name:

app-crypt/md6sum-1.0-r3

Description

A C implementation of MD6

Added to portage

2026-06-18

mhash - 0.9.9.9-r4
Ebuild name:

app-crypt/mhash-0.9.9.9-r4

Description

Library providing a uniform interface to a large number of hash algorith

Added to portage

2026-06-18

microsoft-edge - 149.0.4022.69
Ebuild name:

www-client/microsoft-edge-149.0.4022.69

Description

The web browser from Microsoft

Added to portage

2026-06-18

microsoft-edge-beta - 150.0.4078.13
Ebuild name:

www-client/microsoft-edge-beta-150.0.4078.13

Description

The web browser from Microsoft

Added to portage

2026-06-18

microsoft-edge-dev - 151.0.4091.0
Ebuild name:

www-client/microsoft-edge-dev-151.0.4091.0

Description

The web browser from Microsoft

Added to portage

2026-06-18

mongodb-compass-bin - 1.49.8
Ebuild name:

dev-db/mongodb-compass-bin-1.49.8

Description

GUI for MongoDB

Added to portage

2026-06-18

mythes - 1.2.6
Ebuild name:

app-text/mythes-1.2.6

Description

Simple thesaurus for LibreOffice

Added to portage

2026-06-18

opera - 132.0.5905.73
Ebuild name:

www-client/opera-132.0.5905.73

Description

A fast and secure web browser

Added to portage

2026-06-18

opera-developer - 133.0.5931.0
Ebuild name:

www-client/opera-developer-133.0.5931.0

Description

A fast and secure web browser

Added to portage

2026-06-18

pecl-uuid - 1.3.0
Ebuild name:

dev-php/pecl-uuid-1.3.0

Description

A wrapper around libuuid

Added to portage

2026-06-18

terraform - 1.15.6
Ebuild name:

app-admin/terraform-1.15.6

Description

A tool for building, changing, and combining infrastructure safely

Added to portage

2026-06-18

vivaldi - 8.0.4033.48
Ebuild name:

www-client/vivaldi-8.0.4033.48

Description

A browser for our friends

Added to portage

2026-06-18

vivaldi - 8.0.4033.50
Ebuild name:

www-client/vivaldi-8.0.4033.50

Description

A browser for our friends

Added to portage

2026-06-18

vivaldi-snapshot - 8.1.4070.3
Ebuild name:

www-client/vivaldi-snapshot-8.1.4070.3

Description

A browser for our friends

Added to portage

2026-06-18

vivaldi-snapshot - 8.1.4076.4
Ebuild name:

www-client/vivaldi-snapshot-8.1.4076.4

Description

A browser for our friends

Added to portage

2026-06-18

2026-06-17
aurorae - 6.7.0
Ebuild name:

kde-plasma/aurorae-6.7.0

Description

Themeable window decoration for KWin

Added to portage

2026-06-17

awscli - 1.45.31
Ebuild name:

app-admin/awscli-1.45.31

Description

Universal Command Line Environment for AWS

Added to portage

2026-06-17

b2 - 5.4.2-r1
Ebuild name:

dev-build/b2-5.4.2-r1

Description

A system for large project software construction, simple to use and powerful

Added to portage

2026-06-17

bitcoin-core - 29.3-r1
Ebuild name:

net-p2p/bitcoin-core-29.3-r1

Description

Reference implementation of the Bitcoin cryptocurrency

Added to portage

2026-06-17

bitcoin-core - 30.2-r1
Ebuild name:

net-p2p/bitcoin-core-30.2-r1

Description

Reference implementation of the Bitcoin cryptocurrency

Added to portage

2026-06-17

bluedevil - 6.7.0
Ebuild name:

kde-plasma/bluedevil-6.7.0

Description

Bluetooth stack for KDE Plasma

Added to portage

2026-06-17

boto3 - 1.43.31
Ebuild name:

dev-python/boto3-1.43.31

Description

The AWS SDK for Python

Added to portage

2026-06-17

botocore - 1.43.31
Ebuild name:

dev-python/botocore-1.43.31

Description

Low-level, data-driven core of boto 3

Added to portage

2026-06-17

braintree - 4.45.0
Ebuild name:

dev-python/braintree-4.45.0

Description

Braintree Python Library

Added to portage

2026-06-17

breeze - 6.7.0
Ebuild name:

kde-plasma/breeze-6.7.0

Description

Breeze visual style for the Plasma desktop

Added to portage

2026-06-17

breeze-grub - 6.7.0
Ebuild name:

kde-plasma/breeze-grub-6.7.0

Description

Breeze theme for GRUB

Added to portage

2026-06-17

breeze-gtk - 6.7.0
Ebuild name:

kde-plasma/breeze-gtk-6.7.0

Description

Official GTK+ port of Plasma's Breeze widget style

Added to portage

2026-06-17

breeze-plymouth - 6.7.0
Ebuild name:

kde-plasma/breeze-plymouth-6.7.0

Description

Breeze theme for Plymouth

Added to portage

2026-06-17

ceph - 20.2.1-r3
Ebuild name:

sys-cluster/ceph-20.2.1-r3

Description

Ceph distributed filesystem

Added to portage

2026-06-17

cereal - 1.3.2-r3
Ebuild name:

dev-libs/cereal-1.3.2-r3

Description

Header-only C++11 serialization library

Added to portage

2026-06-17

commons-csv - 1.14.1-r2
Ebuild name:

dev-java/commons-csv-1.14.1-r2

Description

Simple interface for reading and writing CSV files of various types

Added to portage

2026-06-17

crossdev - 20260617
Ebuild name:

sys-devel/crossdev-20260617

Description

Gentoo Cross-toolchain generator

Added to portage

2026-06-17

discover - 6.7.0
Ebuild name:

kde-plasma/discover-6.7.0

Description

KDE Plasma resources management GUI

Added to portage

2026-06-17

drkonqi - 6.7.0
Ebuild name:

kde-plasma/drkonqi-6.7.0

Description

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

Added to portage

2026-06-17

elastic-transport - 9.4.2
Ebuild name:

dev-python/elastic-transport-9.4.2

Description

Transport classes and utilities shared among Python Elastic clie

Added to portage

2026-06-17

enchant - 2.8.16
Ebuild name:

app-text/enchant-2.8.16

Description

Spellchecker wrapping library

Added to portage

2026-06-17

ffmpeg - 8.1.2
Ebuild name:

media-video/ffmpeg-8.1.2

Description

Complete solution to record/convert/stream audio and video

Added to portage

2026-06-17

firewalld - 2.4.2
Ebuild name:

net-firewall/firewalld-2.4.2

Description

Firewall daemon with D-Bus interface providing a dynamic firewall

Added to portage

2026-06-17

flatpak-kcm - 6.7.0
Ebuild name:

kde-plasma/flatpak-kcm-6.7.0

Description

Flatpak Permissions Management KCM

Added to portage

2026-06-17

freerdp - 3.27.1
Ebuild name:

net-misc/freerdp-3.27.1

Description

Free implementation of the Remote Desktop Protocol

Added to portage

2026-06-17

gdm - 49.2-r2
Ebuild name:

gnome-base/gdm-49.2-r2

Description

GNOME Display Manager for managing graphical display servers and user logins

Added to portage

2026-06-17

httpbin - 0.10.4
Ebuild name:

dev-python/httpbin-0.10.4

Description

HTTP Request and Response Service

Added to portage

2026-06-17

ig - 0.53.2
Ebuild name:

app-admin/ig-0.53.2

Description

Tools and framework for data collection and system inspection using eBPF

Added to portage

2026-06-17

jcommander - 1.83-r1
Ebuild name:

dev-java/jcommander-1.83-r1

Description

Command line parsing framework for Java

Added to portage

2026-06-17

jol-core - 0.17-r1
Ebuild name:

dev-java/jol-core-0.17-r1

Description

Java Object Layout Core

Added to portage

2026-06-17

kactivitymanagerd - 6.7.0
Ebuild name:

kde-plasma/kactivitymanagerd-6.7.0

Description

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

Added to portage

2026-06-17

kde-cli-tools - 6.7.0
Ebuild name:

kde-plasma/kde-cli-tools-6.7.0

Description

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

Added to portage

2026-06-17

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

kde-plasma/kde-cli-tools-common-6.7.0

Description

Common files for

Added to portage

2026-06-17

kde-gtk-config - 6.7.0
Ebuild name:

kde-plasma/kde-gtk-config-6.7.0

Description

Syncs KDE Plasma theme settings to GTK applications

Added to portage

2026-06-17

kdecoration - 6.7.0
Ebuild name:

kde-plasma/kdecoration-6.7.0

Description

Plugin based library to create window decorations

Added to portage

2026-06-17

kdeplasma-addons - 6.7.0
Ebuild name:

kde-plasma/kdeplasma-addons-6.7.0

Description

Extra Plasma applets and engines

Added to portage

2026-06-17

kdesu-gui - 6.7.0
Ebuild name:

kde-plasma/kdesu-gui-6.7.0

Description

Graphical frontend for KDE Frameworks' kdesu

Added to portage

2026-06-17

keditfiletype - 6.7.0
Ebuild name:

kde-plasma/keditfiletype-6.7.0

Description

File Type Editor

Added to portage

2026-06-17

kgamma - 6.7.0
Ebuild name:

kde-plasma/kgamma-6.7.0

Description

Screen gamma values kcontrol module

Added to portage

2026-06-17

kglobalacceld - 6.7.0
Ebuild name:

kde-plasma/kglobalacceld-6.7.0

Description

Daemon providing Global Keyboard Shortcut (Accelerator) functionalit

Added to portage

2026-06-17

kinfocenter - 6.7.0
Ebuild name:

kde-plasma/kinfocenter-6.7.0

Description

Utility providing information about the computer hardware

Added to portage

2026-06-17

kmenuedit - 6.7.0
Ebuild name:

kde-plasma/kmenuedit-6.7.0

Description

KDE Plasma menu editor

Added to portage

2026-06-17

knighttime - 6.7.0
Ebuild name:

kde-plasma/knighttime-6.7.0

Description

Helpers for scheduling the dark-light cycle

Added to portage

2026-06-17

kpipewire - 6.7.0
Ebuild name:

kde-plasma/kpipewire-6.7.0

Description

Components relating to Flatpak pipewire use in Plasma

Added to portage

2026-06-17

krdp - 6.7.0
Ebuild name:

kde-plasma/krdp-6.7.0

Description

Library and examples for creating an RDP server

Added to portage

2026-06-17

kscreen - 6.7.0
Ebuild name:

kde-plasma/kscreen-6.7.0

Description

KDE Plasma screen management

Added to portage

2026-06-17

kscreenlocker - 6.7.0
Ebuild name:

kde-plasma/kscreenlocker-6.7.0

Description

Library and components for secure lock screen architecture

Added to portage

2026-06-17

ksshaskpass - 6.7.0
Ebuild name:

kde-plasma/ksshaskpass-6.7.0

Description

Implementation of ssh-askpass with KDE Wallet integration

Added to portage

2026-06-17

ksystemstats - 6.7.0
Ebuild name:

kde-plasma/ksystemstats-6.7.0

Description

Plugin-based system monitoring daemon

Added to portage

2026-06-17

kwallet-pam - 6.7.0
Ebuild name:

kde-plasma/kwallet-pam-6.7.0

Description

PAM module to not enter KWallet password again after login

Added to portage

2026-06-17

kwayland - 6.7.0
Ebuild name:

kde-plasma/kwayland-6.7.0

Description

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

Added to portage

2026-06-17

kwin - 6.6.5-r2
Ebuild name:

kde-plasma/kwin-6.6.5-r2

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2026-06-17

kwin - 6.7.0
Ebuild name:

kde-plasma/kwin-6.7.0

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2026-06-17

kwin-x11 - 6.7.0
Ebuild name:

kde-plasma/kwin-x11-6.7.0

Description

Flexible, composited X window manager

Added to portage

2026-06-17

kwrited - 6.7.0
Ebuild name:

kde-plasma/kwrited-6.7.0

Description

KDE Plasma daemon listening for wall and write messages

Added to portage

2026-06-17

layer-shell-qt - 6.7.0
Ebuild name:

kde-plasma/layer-shell-qt-6.7.0

Description

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

Added to portage

2026-06-17

libidn - 1.44
Ebuild name:

net-dns/libidn-1.44

Description

Internationalized Domain Names (IDN) implementation

Added to portage

2026-06-17

libkscreen - 6.7.0
Ebuild name:

kde-plasma/libkscreen-6.7.0

Description

Plasma screen management library

Added to portage

2026-06-17

libksysguard - 6.7.0
Ebuild name:

kde-plasma/libksysguard-6.7.0

Description

Task management and system monitoring library

Added to portage

2026-06-17

libplasma - 6.7.0
Ebuild name:

kde-plasma/libplasma-6.7.0

Description

Plasma library and runtime components based upon KF6 and Qt6

Added to portage

2026-06-17

librime - 1.17.0
Ebuild name:

app-i18n/librime-1.17.0

Description

RIME (Rime Input Method Engine) core library

Added to portage

2026-06-17

libtmux - 0.58.1
Ebuild name:

dev-python/libtmux-0.58.1

Description

Typed library that provides an ORM wrapper for tmux, a terminal multiplex

Added to portage

2026-06-17

libtorrent - 0.16.14
Ebuild name:

net-libs/libtorrent-0.16.14

Description

BitTorrent library written in C++ for *nix

Added to portage

2026-06-17

lighttpd - 1.4.83
Ebuild name:

www-servers/lighttpd-1.4.83

Description

Lightweight high-performance web server

Added to portage

2026-06-17

limine - 12.3.3
Ebuild name:

sys-boot/limine-12.3.3

Description

Modern, secure, portable, multiprotocol bootloader and boot manager.

Added to portage

2026-06-17

magit-popup - 2.13.3-r1
Ebuild name:

app-emacs/magit-popup-2.13.3-r1

Description

Define prefix-infix-suffix command combos

Added to portage

2026-06-17

mailcrypt - 3.5.9-r3
Ebuild name:

app-emacs/mailcrypt-3.5.9-r3

Description

Provides a simple interface to public key cryptography with OpenPGP

Added to portage

2026-06-17

maim - 5.8.2
Ebuild name:

media-gfx/maim-5.8.2

Description

Commandline tool to take screenshots of the desktop

Added to portage

2026-06-17

milou - 6.7.0
Ebuild name:

kde-plasma/milou-6.7.0

Description

Dedicated search application built on top of Baloo

Added to portage

2026-06-17

nxml-gentoo-schemas - 20260616
Ebuild name:

app-emacs/nxml-gentoo-schemas-20260616

Description

Extension for nxml-mode with Gentoo-specific schemas

Added to portage

2026-06-17

ocean-sound-theme - 6.7.0
Ebuild name:

kde-plasma/ocean-sound-theme-6.7.0

Description

Ocean Sound Theme for Plasma

Added to portage

2026-06-17

open-supaplex - 7.2.2
Ebuild name:

games-arcade/open-supaplex-7.2.2

Description

OSS reimplementation of Supaplex in C and SDL

Added to portage

2026-06-17

openafs - 1.8.16
Ebuild name:

net-fs/openafs-1.8.16

Description

The OpenAFS distributed file system

Added to portage

2026-06-17

openconnect - 9.21
Ebuild name:

net-vpn/openconnect-9.21

Description

Free client for Cisco AnyConnect SSL VPN software

Added to portage

2026-06-17

openpgp-keys-kde - 20260523
Ebuild name:

sec-keys/openpgp-keys-kde-20260523

Description

OpenPGP keys used for KDE releases

Added to portage

2026-06-17

openpgp-keys-libidn - 20260617
Ebuild name:

sec-keys/openpgp-keys-libidn-20260617

Description

OpenPGP keys used to sign libidn releases

Added to portage

2026-06-17

openpgp-keys-openssl - 20260617
Ebuild name:

sec-keys/openpgp-keys-openssl-20260617

Description

OpenPGP keys used by OpenSSL

Added to portage

2026-06-17

oxygen - 6.7.0
Ebuild name:

kde-plasma/oxygen-6.7.0

Description

Oxygen visual style for the Plasma desktop

Added to portage

2026-06-17

oxygen-sounds - 6.7.0
Ebuild name:

kde-plasma/oxygen-sounds-6.7.0

Description

Oxygen sound theme for the Plasma desktop

Added to portage

2026-06-17

peewee - 4.1.0
Ebuild name:

dev-python/peewee-4.1.0

Description

Small Python ORM

Added to portage

2026-06-17

plasma-activities - 6.7.0
Ebuild name:

kde-plasma/plasma-activities-6.7.0

Description

Core components for KDE's Activities System

Added to portage

2026-06-17

plasma-activities-stats - 6.7.0
Ebuild name:

kde-plasma/plasma-activities-stats-6.7.0

Description

Library for accessing usage data collected by the activiti

Added to portage

2026-06-17

plasma-bigscreen - 6.7.0
Ebuild name:

kde-plasma/plasma-bigscreen-6.7.0

Description

Plasma shell for TVs

Added to portage

2026-06-17

plasma-browser-integration - 6.7.0
Ebuild name:

kde-plasma/plasma-browser-integration-6.7.0

Description

Integrate Chrome/Firefox better into Plasma through bro

Added to portage

2026-06-17

plasma-desktop - 6.6.5-r2
Ebuild name:

kde-plasma/plasma-desktop-6.6.5-r2

Description

KDE Plasma desktop

Added to portage

2026-06-17

plasma-desktop - 6.7.0
Ebuild name:

kde-plasma/plasma-desktop-6.7.0

Description

KDE Plasma desktop

Added to portage

2026-06-17

plasma-disks - 6.7.0
Ebuild name:

kde-plasma/plasma-disks-6.7.0

Description

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

Added to portage

2026-06-17

plasma-firewall - 6.7.0
Ebuild name:

kde-plasma/plasma-firewall-6.7.0

Description

Plasma frontend for Firewalld or UFW

Added to portage

2026-06-17

plasma-integration - 6.7.0
Ebuild name:

kde-plasma/plasma-integration-6.7.0

Description

Qt Platform Theme integration plugins for the Plasma workspaces

Added to portage

2026-06-17

plasma-keyboard - 6.7.0
Ebuild name:

kde-plasma/plasma-keyboard-6.7.0

Description

Virtual keyboard based on Qt Virtual Keyboard

Added to portage

2026-06-17

plasma-login-manager - 6.7.0
Ebuild name:

kde-plasma/plasma-login-manager-6.7.0

Description

Plasma Login Manager

Added to portage

2026-06-17

plasma-login-sessions - 6.7.0
Ebuild name:

kde-plasma/plasma-login-sessions-6.7.0

Description

KDE Plasma login sessions

Added to portage

2026-06-17

plasma-meta - 6.7.0
Ebuild name:

kde-plasma/plasma-meta-6.7.0

Description

Merge this to pull in all Plasma 6 packages

Added to portage

2026-06-17

plasma-nano - 6.7.0
Ebuild name:

kde-plasma/plasma-nano-6.7.0

Description

Minimal Plasma shell package

Added to portage

2026-06-17

plasma-nm - 6.7.0
Ebuild name:

kde-plasma/plasma-nm-6.7.0

Description

KDE Plasma applet for NetworkManager

Added to portage

2026-06-17

plasma-pa - 6.7.0
Ebuild name:

kde-plasma/plasma-pa-6.7.0

Description

Plasma applet for audio volume management using PulseAudio

Added to portage

2026-06-17

plasma-sdk - 6.7.0
Ebuild name:

kde-plasma/plasma-sdk-6.7.0

Description

Useful applications for Plasma development

Added to portage

2026-06-17

plasma-systemmonitor - 6.7.0
Ebuild name:

kde-plasma/plasma-systemmonitor-6.7.0

Description

Monitor system sensors, process information and other system

Added to portage

2026-06-17

plasma-thunderbolt - 6.7.0
Ebuild name:

kde-plasma/plasma-thunderbolt-6.7.0

Description

Plasma integration for controlling Thunderbolt devices

Added to portage

2026-06-17

plasma-vault - 6.7.0
Ebuild name:

kde-plasma/plasma-vault-6.7.0

Description

Plasma applet and services for creating encrypted vaults

Added to portage

2026-06-17

plasma-welcome - 6.7.0
Ebuild name:

kde-plasma/plasma-welcome-6.7.0

Description

Friendly onboarding wizard for Plasma

Added to portage

2026-06-17

plasma-workspace - 6.7.0
Ebuild name:

kde-plasma/plasma-workspace-6.7.0

Description

KDE Plasma workspace

Added to portage

2026-06-17

plasma-workspace-wallpapers - 6.7.0
Ebuild name:

kde-plasma/plasma-workspace-wallpapers-6.7.0

Description

Wallpapers for the Plasma workspace

Added to portage

2026-06-17

plasma5support - 6.7.0
Ebuild name:

kde-plasma/plasma5support-6.7.0

Description

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

Added to portage

2026-06-17

plymouth-kcm - 6.7.0
Ebuild name:

kde-plasma/plymouth-kcm-6.7.0

Description

KDE Plasma control module for Plymouth

Added to portage

2026-06-17

polkit-kde-agent - 6.7.0
Ebuild name:

kde-plasma/polkit-kde-agent-6.7.0

Description

PolKit agent module for KDE Plasma

Added to portage

2026-06-17

portage - 3.0.80
Ebuild name:

sys-apps/portage-3.0.80

Description

The package management and distribution system for Gentoo

Added to portage

2026-06-17

powerdevil - 6.7.0
Ebuild name:

kde-plasma/powerdevil-6.7.0

Description

Power management for KDE Plasma Shell

Added to portage

2026-06-17

print-manager - 6.7.0
Ebuild name:

kde-plasma/print-manager-6.7.0

Description

Manage CUPS print jobs and printers in Plasma

Added to portage

2026-06-17

pulsectl-asyncio - 1.3.0
Ebuild name:

dev-python/pulsectl-asyncio-1.3.0

Description

Asyncio frontend for pulsectl, Python bindings of libpulse

Added to portage

2026-06-17

qdox - 2.2.0-r2
Ebuild name:

dev-java/qdox-2.2.0-r2

Description

Parser for extracting class/interface/method definitions

Added to portage

2026-06-17

qqc2-breeze-style - 6.7.0
Ebuild name:

kde-plasma/qqc2-breeze-style-6.7.0

Description

Breeze inspired QQC2 Style

Added to portage

2026-06-17

qt-creator - 20.0.0
Ebuild name:

dev-qt/qt-creator-20.0.0

Description

Lightweight IDE for C++/QML development centering around Qt

Added to portage

2026-06-17

qttasktree - 6.11.1
Ebuild name:

dev-qt/qttasktree-6.11.1

Description

Module to compose and execute asynchronous task workflows for the Qt6 fram

Added to portage

2026-06-17

qttasktree - 6.11.9999
Ebuild name:

dev-qt/qttasktree-6.11.9999

Description

Module to compose and execute asynchronous task workflows for the Qt6 f

Added to portage

2026-06-17

qttasktree - 6.12.9999
Ebuild name:

dev-qt/qttasktree-6.12.9999

Description

Module to compose and execute asynchronous task workflows for the Qt6 f

Added to portage

2026-06-17

qttasktree - 6.9999
Ebuild name:

dev-qt/qttasktree-6.9999

Description

Module to compose and execute asynchronous task workflows for the Qt6 fram

Added to portage

2026-06-17

radicale - 3.7.5
Ebuild name:

www-apps/radicale-3.7.5

Description

A simple CalDAV calendar server

Added to portage

2026-06-17

restic - 0.19.0
Ebuild name:

app-backup/restic-0.19.0

Description

A backup program that is fast, efficient and secure

Added to portage

2026-06-17

rmg - 0.9.0
Ebuild name:

games-emulation/rmg-0.9.0

Description

Rosalie's Mupen GUI

Added to portage

2026-06-17

rtorrent - 0.16.14
Ebuild name:

net-p2p/rtorrent-0.16.14

Description

BitTorrent Client using libtorrent

Added to portage

2026-06-17

rutorrent - 5.3.2
Ebuild name:

www-apps/rutorrent-5.3.2

Description

ruTorrent is a front-end for the popular Bittorrent client rTorrent

Added to portage

2026-06-17

s3transfer - 0.19.0
Ebuild name:

dev-python/s3transfer-0.19.0

Description

An Amazon S3 Transfer Manager

Added to portage

2026-06-17

sddm-kcm - 6.7.0
Ebuild name:

kde-plasma/sddm-kcm-6.7.0

Description

KDE Plasma control module for SDDM

Added to portage

2026-06-17

selenium - 4.45.0
Ebuild name:

dev-python/selenium-4.45.0

Description

Python language binding for Selenium Remote Control

Added to portage

2026-06-17

selenium-manager - 4.45.0
Ebuild name:

dev-util/selenium-manager-4.45.0

Description

CLI tool that manages the browser/driver infrastructure required b

Added to portage

2026-06-17

signal-desktop-bin - 8.14.0
Ebuild name:

net-im/signal-desktop-bin-8.14.0

Description

Allows you to send and receive messages of Signal Messenger on you

Added to portage

2026-06-17

spectacle - 6.7.0
Ebuild name:

kde-plasma/spectacle-6.7.0

Description

Screenshot capture utility

Added to portage

2026-06-17

sphinxcontrib-programoutput - 0.20
Ebuild name:

dev-python/sphinxcontrib-programoutput-0.20

Description

Extension to sphinx to include program output

Added to portage

2026-06-17

stalwart-mail - 0.16.9
Ebuild name:

net-mail/stalwart-mail-0.16.9

Description

Stalwart Mail Server

Added to portage

2026-06-17

strongswan - 6.0.7
Ebuild name:

net-vpn/strongswan-6.0.7

Description

IPsec-based VPN solution, supporting IKEv1/IKEv2 and MOBIKE

Added to portage

2026-06-17

svglib - 2.0.0
Ebuild name:

dev-python/svglib-2.0.0

Description

Pure-Python library for reading and converting SVG

Added to portage

2026-06-17

systemsettings - 6.7.0
Ebuild name:

kde-plasma/systemsettings-6.7.0

Description

Control Center to configure KDE Plasma desktop

Added to portage

2026-06-17

texstudio - 4.9.5
Ebuild name:

app-office/texstudio-4.9.5

Description

Free cross-platform LaTeX editor (fork from texmakerX)

Added to portage

2026-06-17

thunderbird - 140.12.0
Ebuild name:

mail-client/thunderbird-140.12.0

Description

Thunderbird Mail Client

Added to portage

2026-06-17

thunderbird - 152.0
Ebuild name:

mail-client/thunderbird-152.0

Description

Thunderbird Mail Client

Added to portage

2026-06-17

thunderbird-bin - 140.12.0
Ebuild name:

mail-client/thunderbird-bin-140.12.0

Description

Thunderbird Mail Client

Added to portage

2026-06-17

thunderbird-bin - 152.0
Ebuild name:

mail-client/thunderbird-bin-152.0

Description

Thunderbird Mail Client

Added to portage

2026-06-17

thunderbird-l10n - 152.0
Ebuild name:

mail-client/thunderbird-l10n-152.0

Description

Thunderbird mail client's translation files

Added to portage

2026-06-17

tzlocal - 5.4.3
Ebuild name:

dev-python/tzlocal-5.4.3

Description

tzinfo object for the local timezone

Added to portage

2026-06-17

union - 6.7.0
Ebuild name:

kde-plasma/union-6.7.0

Description

Style engine providing a unified style description to separate output styles

Added to portage

2026-06-17

util-linux - 2.41.5
Ebuild name:

sys-apps/util-linux-2.41.5

Description

Various useful Linux utilities

Added to portage

2026-06-17

util-linux - 2.42.2
Ebuild name:

sys-apps/util-linux-2.42.2

Description

Various useful Linux utilities

Added to portage

2026-06-17

vcrpy - 8.2.1
Ebuild name:

dev-python/vcrpy-8.2.1

Description

Automatically mock your HTTP interactions to simplify and speed up testing

Added to portage

2026-06-17

virtualenv - 21.5.1
Ebuild name:

dev-python/virtualenv-21.5.1

Description

Virtual Python Environment builder

Added to portage

2026-06-17

wacomtablet - 6.7.0
Ebuild name:

kde-plasma/wacomtablet-6.7.0

Description

Wacom system settings module that supports different button/pen layout

Added to portage

2026-06-17

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

kde-plasma/xdg-desktop-portal-kde-6.7.0

Description

Backend implementation for xdg-desktop-portal that is using

Added to portage

2026-06-17

xmlrpc-c - 1.64.03
Ebuild name:

dev-libs/xmlrpc-c-1.64.03

Description

A lightweight RPC library based on XML and HTTP

Added to portage

2026-06-17

zen-sources - 7.0.12
Ebuild name:

sys-kernel/zen-sources-7.0.12

Description

The Zen Kernel Live Sources

Added to portage

2026-06-17

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