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:

88266

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-09-10
babl - 0.1.128
Ebuild name:

media-libs/babl-0.1.128

Description

A dynamic, any to any, pixel format conversion library

Added to portage

2026-09-10

bear - 4.2.2
Ebuild name:

dev-util/bear-4.2.2

Description

A tool that generates a compilation database for clang tooling

Added to portage

2026-09-10

beets - 2.14.0
Ebuild name:

media-sound/beets-2.14.0

Description

Media library management system for obsessive music geeks

Added to portage

2026-09-10

blender-bin - 4.5.12
Ebuild name:

media-gfx/blender-bin-4.5.12

Description

3D Creation/Animation/Publishing System

Added to portage

2026-09-10

blender-bin - 5.2.1
Ebuild name:

media-gfx/blender-bin-5.2.1

Description

3D Creation/Animation/Publishing System

Added to portage

2026-09-10

cinnamon - 6.6.9
Ebuild name:

gnome-extra/cinnamon-6.6.9

Description

A fork of GNOME Shell with layout similar to GNOME 2

Added to portage

2026-09-10

cinnamon-session - 6.6.4
Ebuild name:

gnome-extra/cinnamon-session-6.6.4

Description

Cinnamon session manager

Added to portage

2026-09-10

cjs - 140.1
Ebuild name:

gnome-extra/cjs-140.1

Description

Linux Mint's fork of gjs for Cinnamon

Added to portage

2026-09-10

corsix-th - 0.70.1
Ebuild name:

games-simulation/corsix-th-0.70.1

Description

Open source clone of Theme Hospital

Added to portage

2026-09-10

cudnn - 9.25.1.1
Ebuild name:

dev-libs/cudnn-9.25.1.1

Description

NVIDIA Accelerated Deep Learning on GPU library

Added to portage

2026-09-10

delve - 1.27.2
Ebuild name:

dev-go/delve-1.27.2

Description

A source-level debugger for the Go programming language

Added to portage

2026-09-10

diffoscope - 329
Ebuild name:

dev-util/diffoscope-329

Description

Will try to get to the bottom of what makes files or directories different

Added to portage

2026-09-10

fish - 4.9.2
Ebuild name:

app-shells/fish-4.9.2

Description

Friendly Interactive SHell

Added to portage

2026-09-10

gamescope - 3.16.28
Ebuild name:

gui-wm/gamescope-3.16.28

Description

Efficient micro-compositor for running games

Added to portage

2026-09-10

gerbv - 2.13.0
Ebuild name:

sci-electronics/gerbv-2.13.0

Description

A RS-274X (Gerber) and NC drill (Excellon) file viewer

Added to portage

2026-09-10

gif2png - 3.0.5
Ebuild name:

media-gfx/gif2png-3.0.5

Description

Converts images from GIF format to PNG format

Added to portage

2026-09-10

groonga - 16.1.0
Ebuild name:

app-text/groonga-16.1.0

Description

Embeddable Fulltext Search Engine

Added to portage

2026-09-10

gst-plugins-libnice - 0.1.24
Ebuild name:

media-plugins/gst-plugins-libnice-0.1.24

Description

GStreamer plugin for ICE (RFC 5245) support

Added to portage

2026-09-10

gumbo - 0.14.0
Ebuild name:

dev-libs/gumbo-0.14.0

Description

The HTML5 parsing algorithm implemented as a pure C99 library

Added to portage

2026-09-10

intune-portal - 1.2607.4-r1
Ebuild name:

sys-apps/intune-portal-1.2607.4-r1

Description

Microsoft Intune Company Portal to access a corporate environmen

Added to portage

2026-09-10

jacksum - 4.0.0
Ebuild name:

app-crypt/jacksum-4.0.0

Description

Java utility for working with checksums, CRCs, and message digests (hashes)

Added to portage

2026-09-10

just - 1.58.0
Ebuild name:

dev-build/just-1.58.0

Description

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

Added to portage

2026-09-10

keymap-popup - 0.3.0
Ebuild name:

app-emacs/keymap-popup-0.3.0

Description

Described keymaps with popup help

Added to portage

2026-09-10

keywiz - 1.4
Ebuild name:

app-emacs/keywiz-1.4

Description

Emacs key sequence quiz

Added to portage

2026-09-10

kind-icon - 0.2.2
Ebuild name:

app-emacs/kind-icon-0.2.2

Description

Completion kind icons

Added to portage

2026-09-10

libass - 0.17.5
Ebuild name:

media-libs/libass-0.17.5

Description

Library for SSA/ASS subtitles rendering

Added to portage

2026-09-10

libebml - 1.4.7
Ebuild name:

dev-libs/libebml-1.4.7

Description

Extensible binary format library (kinda like XML)

Added to portage

2026-09-10

libkate - 0.4.3
Ebuild name:

media-libs/libkate-0.4.3

Description

Codec for karaoke and text encapsulation for Ogg

Added to portage

2026-09-10

libmatroska - 1.7.2
Ebuild name:

media-libs/libmatroska-1.7.2

Description

Extensible multimedia container format based on EBML

Added to portage

2026-09-10

libopenmpt - 0.8.9
Ebuild name:

media-libs/libopenmpt-0.8.9

Description

Library to decode tracked music files (modules)

Added to portage

2026-09-10

microsoft-identity-broker - 3.0.2-r1
Ebuild name:

sys-auth/microsoft-identity-broker-3.0.2-r1

Description

Microsoft Authentication Broker to access a corporate e

Added to portage

2026-09-10

mupdf - 1.28.2
Ebuild name:

app-text/mupdf-1.28.2

Description

A lightweight PDF viewer and toolkit written in portable C

Added to portage

2026-09-10

mysql-connector-c++ - 26.7.0
Ebuild name:

dev-db/mysql-connector-c++-26.7.0

Description

MySQL database connector for C++ (mimics JDBC 4.0 API)

Added to portage

2026-09-10

nsight-compute - 2026.3.0.13
Ebuild name:

dev-util/nsight-compute-2026.3.0.13

Description

performance analysis tool designed to visualize an application'

Added to portage

2026-09-10

nsight-systems - 2026.5.1
Ebuild name:

dev-util/nsight-systems-2026.5.1

Description

performance analysis tool designed to visualize an application's a

Added to portage

2026-09-10

nvidia-cuda-toolkit - 13.4.1
Ebuild name:

dev-util/nvidia-cuda-toolkit-13.4.1

Description

NVIDIA CUDA Toolkit (compiler and friends)

Added to portage

2026-09-10

opencl-icd-loader - 2026.05.29
Ebuild name:

dev-libs/opencl-icd-loader-2026.05.29

Description

Official Khronos OpenCL ICD Loader

Added to portage

2026-09-10

openmpt123 - 0.8.9
Ebuild name:

media-sound/openmpt123-0.8.9

Description

libopenmpt-based command line player for tracked music files (modules)

Added to portage

2026-09-10

photoqt - 5.4.1
Ebuild name:

media-gfx/photoqt-5.4.1

Description

Simple but powerful Qt-based image viewer

Added to portage

2026-09-10

photoqt-extensions - 5.4.1
Ebuild name:

media-plugins/photoqt-extensions-5.4.1

Description

Official extensions for PhotoQt

Added to portage

2026-09-10

pygobject - 3.58.0
Ebuild name:

dev-python/pygobject-3.58.0

Description

Python bindings for GObject Introspection

Added to portage

2026-09-10

sandbox - 2.51
Ebuild name:

sys-apps/sandbox-2.51

Description

sandbox'd LD_PRELOAD hack

Added to portage

2026-09-10

strawberry - 1.2.29
Ebuild name:

media-sound/strawberry-1.2.29

Description

Modern music player and library organizer based on Clementine and Qt

Added to portage

2026-09-10

torchdata - 0.11.0-r1
Ebuild name:

sci-ml/torchdata-0.11.0-r1

Description

A repo for data loading and utilities on PyTorch domain libraries

Added to portage

2026-09-10

tqsl - 2.8.6
Ebuild name:

media-radio/tqsl-2.8.6

Description

ARRL Logbook of the World

Added to portage

2026-09-10

tree-sitter - 0.27.0
Ebuild name:

dev-libs/tree-sitter-0.27.0

Description

Tree-sitter is a parser generator tool and an incremental parsing libra

Added to portage

2026-09-10

tree-sitter-cli - 0.27.0
Ebuild name:

dev-util/tree-sitter-cli-0.27.0

Description

Command-line tool for creating and testing tree-sitter grammars

Added to portage

2026-09-10

vpnc-scripts - 20250727
Ebuild name:

net-vpn/vpnc-scripts-20250727

Description

Connect scripts for use with vpnc and openconnect (and similar client

Added to portage

2026-09-10

xpdf - 4.06
Ebuild name:

app-text/xpdf-4.06

Description

PDF viewer and toolkit

Added to portage

2026-09-10

zedis - 0.9.0
Ebuild name:

dev-db/zedis-0.9.0

Description

Blazing-fast native Redis GUI built with Rust and GPUI

Added to portage

2026-09-10

2026-09-09
aiostream - 0.7.2
Ebuild name:

dev-python/aiostream-0.7.2

Description

Generator-based operators for asynchronous iteration

Added to portage

2026-09-09

ast-serialize - 0.11.0
Ebuild name:

dev-python/ast-serialize-0.11.0

Description

Python bindings for mypy AST serialization

Added to portage

2026-09-09

aurorae - 6.7.5
Ebuild name:

kde-plasma/aurorae-6.7.5

Description

Themeable window decoration for KWin

Added to portage

2026-09-09

bcachefs-tools - 1.39.5
Ebuild name:

sys-fs/bcachefs-tools-1.39.5

Description

Tools for bcachefs

Added to portage

2026-09-09

bibtexparser - 2.0.0
Ebuild name:

dev-python/bibtexparser-2.0.0

Description

A BibTeX parser written in Python

Added to portage

2026-09-09

bluedevil - 6.7.5
Ebuild name:

kde-plasma/bluedevil-6.7.5

Description

Bluetooth stack for KDE Plasma

Added to portage

2026-09-09

boto3 - 1.43.90
Ebuild name:

dev-python/boto3-1.43.90

Description

The AWS SDK for Python

Added to portage

2026-09-09

botocore - 1.43.90
Ebuild name:

dev-python/botocore-1.43.90

Description

Low-level, data-driven core of boto 3

Added to portage

2026-09-09

breeze - 6.7.5
Ebuild name:

kde-plasma/breeze-6.7.5

Description

Breeze visual style for the Plasma desktop

Added to portage

2026-09-09

breeze-grub - 6.7.5
Ebuild name:

kde-plasma/breeze-grub-6.7.5

Description

Breeze theme for GRUB

Added to portage

2026-09-09

breeze-gtk - 6.7.5
Ebuild name:

kde-plasma/breeze-gtk-6.7.5

Description

Official GTK+ port of Plasma's Breeze widget style

Added to portage

2026-09-09

breeze-plymouth - 6.7.5
Ebuild name:

kde-plasma/breeze-plymouth-6.7.5

Description

Breeze theme for Plymouth

Added to portage

2026-09-09

cargo-nextest - 0.9.143
Ebuild name:

dev-util/cargo-nextest-0.9.143

Description

Next-generation test runner for Rust

Added to portage

2026-09-09

cattrs - 26.2.0-r1
Ebuild name:

dev-python/cattrs-26.2.0-r1

Description

Composable complex class support for attrs and dataclasses

Added to portage

2026-09-09

cfn-lint - 1.56.1
Ebuild name:

dev-python/cfn-lint-1.56.1

Description

CloudFormation Linter

Added to portage

2026-09-09

clang - 23.1.1
Ebuild name:

dev-python/clang-23.1.1

Description

Python bindings for llvm-core/clang

Added to portage

2026-09-09

clang - 23.1.1
Ebuild name:

llvm-core/clang-23.1.1

Description

C language family frontend for LLVM

Added to portage

2026-09-09

clang-common - 23.1.1
Ebuild name:

llvm-core/clang-common-23.1.1

Description

Common files shared between multiple slots of clang

Added to portage

2026-09-09

cmd2 - 4.2.4
Ebuild name:

dev-python/cmd2-4.2.4

Description

Extra features for standard library's cmd module

Added to portage

2026-09-09

codespell - 2.4.3
Ebuild name:

dev-util/codespell-2.4.3

Description

Check text files for common misspellings

Added to portage

2026-09-09

compiler-rt - 23.1.1
Ebuild name:

llvm-runtimes/compiler-rt-23.1.1

Description

Compiler runtime library for clang (built-in part)

Added to portage

2026-09-09

compiler-rt-sanitizers - 23.1.1
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-23.1.1

Description

Compiler runtime libraries for clang (sanitizers & xray

Added to portage

2026-09-09

discover - 6.7.5
Ebuild name:

kde-plasma/discover-6.7.5

Description

KDE Plasma resources management GUI

Added to portage

2026-09-09

drkonqi - 6.7.5
Ebuild name:

kde-plasma/drkonqi-6.7.5

Description

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

Added to portage

2026-09-09

fakeredis - 2.38.0
Ebuild name:

dev-python/fakeredis-2.38.0

Description

Fake implementation of redis API for testing purposes

Added to portage

2026-09-09

filelock - 3.32.6
Ebuild name:

dev-python/filelock-3.32.6

Description

A platform independent file lock for Python

Added to portage

2026-09-09

flang - 23.1.1
Ebuild name:

llvm-core/flang-23.1.1

Description

LLVM's Fortran frontend

Added to portage

2026-09-09

flang-rt - 23.1.1
Ebuild name:

llvm-runtimes/flang-rt-23.1.1

Description

LLVM's Fortran runtime

Added to portage

2026-09-09

flatpak-kcm - 6.7.5
Ebuild name:

kde-plasma/flatpak-kcm-6.7.5

Description

Flatpak Permissions Management KCM

Added to portage

2026-09-09

fotocx - 26.8
Ebuild name:

media-gfx/fotocx-26.8

Description

Program for improving image files made with a digital camera

Added to portage

2026-09-09

fuse - 3.18.3
Ebuild name:

sys-fs/fuse-3.18.3

Description

An interface for filesystems implemented in userspace

Added to portage

2026-09-09

hypothesis - 6.168.0
Ebuild name:

dev-python/hypothesis-6.168.0

Description

A library for property based testing

Added to portage

2026-09-09

isl - 0.28
Ebuild name:

dev-libs/isl-0.28

Description

A library for manipulating integer points bounded by linear constraints

Added to portage

2026-09-09

kactivitymanagerd - 6.7.5
Ebuild name:

kde-plasma/kactivitymanagerd-6.7.5

Description

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

Added to portage

2026-09-09

kde-cli-tools - 6.7.5
Ebuild name:

kde-plasma/kde-cli-tools-6.7.5

Description

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

Added to portage

2026-09-09

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

kde-plasma/kde-cli-tools-common-6.7.5

Description

Common files for

Added to portage

2026-09-09

kde-gtk-config - 6.7.5
Ebuild name:

kde-plasma/kde-gtk-config-6.7.5

Description

Syncs KDE Plasma theme settings to GTK applications

Added to portage

2026-09-09

kdecoration - 6.7.5
Ebuild name:

kde-plasma/kdecoration-6.7.5

Description

Plugin based library to create window decorations

Added to portage

2026-09-09

kdeplasma-addons - 6.7.5
Ebuild name:

kde-plasma/kdeplasma-addons-6.7.5

Description

Extra Plasma applets and engines

Added to portage

2026-09-09

kdesu-gui - 6.7.5
Ebuild name:

kde-plasma/kdesu-gui-6.7.5

Description

Graphical frontend for KDE Frameworks' kdesu

Added to portage

2026-09-09

keditfiletype - 6.7.5
Ebuild name:

kde-plasma/keditfiletype-6.7.5

Description

File Type Editor

Added to portage

2026-09-09

kgamma - 6.7.5
Ebuild name:

kde-plasma/kgamma-6.7.5

Description

Screen gamma values kcontrol module

Added to portage

2026-09-09

kglobalacceld - 6.7.5
Ebuild name:

kde-plasma/kglobalacceld-6.7.5

Description

Daemon providing Global Keyboard Shortcut (Accelerator) functionalit

Added to portage

2026-09-09

kinfocenter - 6.7.5
Ebuild name:

kde-plasma/kinfocenter-6.7.5

Description

Utility providing information about the computer hardware

Added to portage

2026-09-09

kmenuedit - 6.7.5
Ebuild name:

kde-plasma/kmenuedit-6.7.5

Description

KDE Plasma menu editor

Added to portage

2026-09-09

knighttime - 6.7.5
Ebuild name:

kde-plasma/knighttime-6.7.5

Description

Helpers for scheduling the dark-light cycle

Added to portage

2026-09-09

kpipewire - 6.7.5
Ebuild name:

kde-plasma/kpipewire-6.7.5

Description

Components relating to Flatpak pipewire use in Plasma

Added to portage

2026-09-09

krdp - 6.7.5
Ebuild name:

kde-plasma/krdp-6.7.5

Description

Library and examples for creating an RDP server

Added to portage

2026-09-09

kscreen - 6.7.5
Ebuild name:

kde-plasma/kscreen-6.7.5

Description

KDE Plasma screen management

Added to portage

2026-09-09

kscreenlocker - 6.7.5
Ebuild name:

kde-plasma/kscreenlocker-6.7.5

Description

Library and components for secure lock screen architecture

Added to portage

2026-09-09

ksshaskpass - 6.7.5
Ebuild name:

kde-plasma/ksshaskpass-6.7.5

Description

Implementation of ssh-askpass with KDE Wallet integration

Added to portage

2026-09-09

ksystemstats - 6.7.5
Ebuild name:

kde-plasma/ksystemstats-6.7.5

Description

Plugin-based system monitoring daemon

Added to portage

2026-09-09

ktorrent - 26.04.3-r1
Ebuild name:

net-p2p/ktorrent-26.04.3-r1

Description

Powerful BitTorrent client based on KDE Frameworks

Added to portage

2026-09-09

ktorrent - 26.08.0-r1
Ebuild name:

net-p2p/ktorrent-26.08.0-r1

Description

Powerful BitTorrent client based on KDE Frameworks

Added to portage

2026-09-09

kwallet-pam - 6.7.5
Ebuild name:

kde-plasma/kwallet-pam-6.7.5

Description

PAM module to not enter KWallet password again after login

Added to portage

2026-09-09

kwayland - 6.7.5
Ebuild name:

kde-plasma/kwayland-6.7.5

Description

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

Added to portage

2026-09-09

kwin - 6.7.5
Ebuild name:

kde-plasma/kwin-6.7.5

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2026-09-09

kwin-x11 - 6.7.5
Ebuild name:

kde-plasma/kwin-x11-6.7.5

Description

Flexible, composited X window manager

Added to portage

2026-09-09

kwrited - 6.7.5
Ebuild name:

kde-plasma/kwrited-6.7.5

Description

KDE Plasma daemon listening for wall and write messages

Added to portage

2026-09-09

layer-shell-qt - 6.7.5
Ebuild name:

kde-plasma/layer-shell-qt-6.7.5

Description

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

Added to portage

2026-09-09

libclc - 23.1.1
Ebuild name:

llvm-runtimes/libclc-23.1.1

Description

OpenCL C library

Added to portage

2026-09-09

libcxx - 23.1.1
Ebuild name:

llvm-runtimes/libcxx-23.1.1

Description

New implementation of the C++ standard library, targeting C++11

Added to portage

2026-09-09

libcxxabi - 23.1.1
Ebuild name:

llvm-runtimes/libcxxabi-23.1.1

Description

Low level support for a standard C++ library

Added to portage

2026-09-09

libgcc - 23.1.1
Ebuild name:

llvm-runtimes/libgcc-23.1.1

Description

Compiler runtime library for clang, compatible with libgcc_s

Added to portage

2026-09-09

libkscreen - 6.7.5
Ebuild name:

kde-plasma/libkscreen-6.7.5

Description

Plasma screen management library

Added to portage

2026-09-09

libksysguard - 6.7.5
Ebuild name:

kde-plasma/libksysguard-6.7.5

Description

Task management and system monitoring library

Added to portage

2026-09-09

libpcap - 1.10.7
Ebuild name:

net-libs/libpcap-1.10.7

Description

A system-independent library for user-level network packet capture

Added to portage

2026-09-09

libplasma - 6.7.5
Ebuild name:

kde-plasma/libplasma-6.7.5

Description

Plasma library and runtime components based upon KF6 and Qt6

Added to portage

2026-09-09

libunwind - 23.1.1-r1
Ebuild name:

llvm-runtimes/libunwind-23.1.1-r1

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-09-09

lit - 23.1.1
Ebuild name:

dev-python/lit-23.1.1

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-09-09

lld - 23.1.1
Ebuild name:

llvm-core/lld-23.1.1

Description

The LLVM linker (link editor)

Added to portage

2026-09-09

lldb - 23.1.1
Ebuild name:

llvm-core/lldb-23.1.1

Description

The LLVM debugger

Added to portage

2026-09-09

llvm - 23.1.1
Ebuild name:

dev-ml/llvm-23.1.1

Description

OCaml bindings for LLVM

Added to portage

2026-09-09

llvm - 23.1.1
Ebuild name:

llvm-core/llvm-23.1.1

Description

Low Level Virtual Machine

Added to portage

2026-09-09

llvm-common - 23.1.1
Ebuild name:

llvm-core/llvm-common-23.1.1

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-09-09

lmod - 9.4
Ebuild name:

sys-cluster/lmod-9.4

Description

Environment Module System based on Lua

Added to portage

2026-09-09

log4cxx - 1.8.0
Ebuild name:

dev-libs/log4cxx-1.8.0

Description

Library of C++ classes for logging to files, syslog and other destinations

Added to portage

2026-09-09

mapbox-earcut - 2.1.0
Ebuild name:

dev-python/mapbox-earcut-2.1.0

Description

Python bindings to the mapbox earcut C++ library

Added to portage

2026-09-09

milou - 6.7.5
Ebuild name:

kde-plasma/milou-6.7.5

Description

Dedicated search application built on top of Baloo

Added to portage

2026-09-09

mlir - 23.1.1
Ebuild name:

llvm-core/mlir-23.1.1

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-09-09

narwhals - 2.26.0
Ebuild name:

dev-python/narwhals-2.26.0

Description

Extremely lightweight compatibility layer between dataframe libraries

Added to portage

2026-09-09

nvidia-drivers - 615.71.09
Ebuild name:

x11-drivers/nvidia-drivers-615.71.09

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-09-09

ocean-sound-theme - 6.7.5
Ebuild name:

kde-plasma/ocean-sound-theme-6.7.5

Description

Ocean Sound Theme for Plasma

Added to portage

2026-09-09

openmp - 23.1.1
Ebuild name:

llvm-runtimes/openmp-23.1.1

Description

OpenMP runtime libraries for LLVM/clang compiler

Added to portage

2026-09-09

openmp-amdgcn-amd-amdhsa - 23.1.1
Ebuild name:

llvm-runtimes/openmp-amdgcn-amd-amdhsa-23.1.1

Description

OpenMP target library for amdgcn devices

Added to portage

2026-09-09

openmp-nvptx64-nvidia-cuda - 23.1.1
Ebuild name:

llvm-runtimes/openmp-nvptx64-nvidia-cuda-23.1.1

Description

OpenMP target library for nvptx64 devices

Added to portage

2026-09-09

openmp-spirv64-intel - 23.1.1
Ebuild name:

llvm-runtimes/openmp-spirv64-intel-23.1.1

Description

OpenMP target library for spirv64 Intel devices

Added to portage

2026-09-09

openpgp-keys-tcpdump - 20260908
Ebuild name:

sec-keys/openpgp-keys-tcpdump-20260908

Description

OpenPGP keys used to sign tcpdump releases

Added to portage

2026-09-09

oxygen - 6.7.5
Ebuild name:

kde-plasma/oxygen-6.7.5

Description

Oxygen visual style for the Plasma desktop

Added to portage

2026-09-09

oxygen-sounds - 6.7.5
Ebuild name:

kde-plasma/oxygen-sounds-6.7.5

Description

Oxygen sound theme for the Plasma desktop

Added to portage

2026-09-09

packer - 1.16.0
Ebuild name:

dev-util/packer-1.16.0

Description

A tool to create identical machine images for multiple platforms

Added to portage

2026-09-09

pcmanfm-qt - 2.4.1
Ebuild name:

x11-misc/pcmanfm-qt-2.4.1

Description

Qt GUI Tabbed Filemanager

Added to portage

2026-09-09

plasma-activities - 6.7.5
Ebuild name:

kde-plasma/plasma-activities-6.7.5

Description

Core components for KDE's Activities System

Added to portage

2026-09-09

plasma-activities-stats - 6.7.5
Ebuild name:

kde-plasma/plasma-activities-stats-6.7.5

Description

Library for accessing usage data collected by the activiti

Added to portage

2026-09-09

plasma-bigscreen - 6.7.5
Ebuild name:

kde-plasma/plasma-bigscreen-6.7.5

Description

Plasma shell for TVs

Added to portage

2026-09-09

plasma-browser-integration - 6.7.5
Ebuild name:

kde-plasma/plasma-browser-integration-6.7.5

Description

Integrate Chrome/Firefox better into Plasma through bro

Added to portage

2026-09-09

plasma-desktop - 6.7.5
Ebuild name:

kde-plasma/plasma-desktop-6.7.5

Description

KDE Plasma desktop

Added to portage

2026-09-09

plasma-disks - 6.7.5
Ebuild name:

kde-plasma/plasma-disks-6.7.5

Description

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

Added to portage

2026-09-09

plasma-firewall - 6.7.5
Ebuild name:

kde-plasma/plasma-firewall-6.7.5

Description

Plasma frontend for Firewalld or UFW

Added to portage

2026-09-09

plasma-integration - 6.7.5
Ebuild name:

kde-plasma/plasma-integration-6.7.5

Description

Qt Platform Theme integration plugins for the Plasma workspaces

Added to portage

2026-09-09

plasma-keyboard - 6.7.5
Ebuild name:

kde-plasma/plasma-keyboard-6.7.5

Description

Virtual keyboard based on Qt Virtual Keyboard

Added to portage

2026-09-09

plasma-login-manager - 6.7.5
Ebuild name:

kde-plasma/plasma-login-manager-6.7.5

Description

Plasma Login Manager

Added to portage

2026-09-09

plasma-login-sessions - 6.7.5
Ebuild name:

kde-plasma/plasma-login-sessions-6.7.5

Description

KDE Plasma login sessions

Added to portage

2026-09-09

plasma-meta - 6.7.5
Ebuild name:

kde-plasma/plasma-meta-6.7.5

Description

Merge this to pull in all Plasma 6 packages

Added to portage

2026-09-09

plasma-nano - 6.7.5
Ebuild name:

kde-plasma/plasma-nano-6.7.5

Description

Minimal Plasma shell package

Added to portage

2026-09-09

plasma-nm - 6.7.5
Ebuild name:

kde-plasma/plasma-nm-6.7.5

Description

KDE Plasma applet for NetworkManager

Added to portage

2026-09-09

plasma-pa - 6.7.5
Ebuild name:

kde-plasma/plasma-pa-6.7.5

Description

Plasma applet for audio volume management using PulseAudio

Added to portage

2026-09-09

plasma-sdk - 6.7.5
Ebuild name:

kde-plasma/plasma-sdk-6.7.5

Description

Useful applications for Plasma development

Added to portage

2026-09-09

plasma-systemmonitor - 6.7.5
Ebuild name:

kde-plasma/plasma-systemmonitor-6.7.5

Description

Monitor system sensors, process information and other system

Added to portage

2026-09-09

plasma-thunderbolt - 6.7.5
Ebuild name:

kde-plasma/plasma-thunderbolt-6.7.5

Description

Plasma integration for controlling Thunderbolt devices

Added to portage

2026-09-09

plasma-vault - 6.7.5
Ebuild name:

kde-plasma/plasma-vault-6.7.5

Description

Plasma applet and services for creating encrypted vaults

Added to portage

2026-09-09

plasma-welcome - 6.7.5
Ebuild name:

kde-plasma/plasma-welcome-6.7.5

Description

Friendly onboarding wizard for Plasma

Added to portage

2026-09-09

plasma-workspace - 6.7.5
Ebuild name:

kde-plasma/plasma-workspace-6.7.5

Description

KDE Plasma workspace

Added to portage

2026-09-09

plasma-workspace-wallpapers - 6.7.5
Ebuild name:

kde-plasma/plasma-workspace-wallpapers-6.7.5

Description

Wallpapers for the Plasma workspace

Added to portage

2026-09-09

plasma5support - 6.7.5
Ebuild name:

kde-plasma/plasma5support-6.7.5

Description

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

Added to portage

2026-09-09

platformdirs - 4.11.8
Ebuild name:

dev-python/platformdirs-4.11.8

Description

A small Python module for determining appropriate platform-specific

Added to portage

2026-09-09

plymouth-kcm - 6.7.5
Ebuild name:

kde-plasma/plymouth-kcm-6.7.5

Description

KDE Plasma control module for Plymouth

Added to portage

2026-09-09

polkit-kde-agent - 6.7.5
Ebuild name:

kde-plasma/polkit-kde-agent-6.7.5

Description

PolKit agent module for KDE Plasma

Added to portage

2026-09-09

polly - 23.1.1
Ebuild name:

llvm-core/polly-23.1.1

Description

Polyhedral optimizations for LLVM

Added to portage

2026-09-09

postfix - 3.11.7
Ebuild name:

mail-mta/postfix-3.11.7

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2026-09-09

postfix - 3.12_pre20260902
Ebuild name:

mail-mta/postfix-3.12_pre20260902

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2026-09-09

powerdevil - 6.7.5
Ebuild name:

kde-plasma/powerdevil-6.7.5

Description

Power management for KDE Plasma Shell

Added to portage

2026-09-09

print-manager - 6.7.5
Ebuild name:

kde-plasma/print-manager-6.7.5

Description

Manage CUPS print jobs and printers in Plasma

Added to portage

2026-09-09

pylatexenc - 2.11
Ebuild name:

dev-python/pylatexenc-2.11

Description

Simple LaTeX parser providing latex-to-unicode and unicode-to-latex conv

Added to portage

2026-09-09

pytest-env - 1.7.1
Ebuild name:

dev-python/pytest-env-1.7.1

Description

pytest plugin that allows you to add environment variables

Added to portage

2026-09-09

python-lsp-ruff - 2.3.4
Ebuild name:

dev-python/python-lsp-ruff-2.3.4

Description

Ruff linting plugin for the Python LSP Server

Added to portage

2026-09-09

python-slugify - 9.0.0
Ebuild name:

dev-python/python-slugify-9.0.0

Description

A Python Slugify application that handles Unicode

Added to portage

2026-09-09

python-socks - 3.1.1
Ebuild name:

dev-python/python-socks-3.1.1

Description

SOCKS4, SOCKS5, HTTP tunneling functionality for Python

Added to portage

2026-09-09

qqc2-breeze-style - 6.7.5
Ebuild name:

kde-plasma/qqc2-breeze-style-6.7.5

Description

Breeze inspired QQC2 Style

Added to portage

2026-09-09

samba - 4.23.12
Ebuild name:

net-fs/samba-4.23.12

Description

Samba Suite Version 4

Added to portage

2026-09-09

sccache - 0.17.0
Ebuild name:

dev-util/sccache-0.17.0

Description

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

Added to portage

2026-09-09

sddm-kcm - 6.7.5
Ebuild name:

kde-plasma/sddm-kcm-6.7.5

Description

KDE Plasma control module for SDDM

Added to portage

2026-09-09

seafile - 9.0.21
Ebuild name:

net-misc/seafile-9.0.21

Description

File syncing and sharing software with file encryption and group sharing

Added to portage

2026-09-09

seafile-client - 9.0.21
Ebuild name:

net-misc/seafile-client-9.0.21

Description

Seafile desktop client

Added to portage

2026-09-09

signal-desktop-bin - 8.26.0
Ebuild name:

net-im/signal-desktop-bin-8.26.0

Description

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

Added to portage

2026-09-09

siphash24 - 1.9
Ebuild name:

dev-python/siphash24-1.9

Description

Streaming-capable SipHash-1-3 and SipHash-2-4 Implementation

Added to portage

2026-09-09

skim - 5.6.6
Ebuild name:

app-misc/skim-5.6.6

Description

Command-line fuzzy finder

Added to portage

2026-09-09

spectacle - 6.7.5
Ebuild name:

kde-plasma/spectacle-6.7.5

Description

Screenshot capture utility

Added to portage

2026-09-09

sphinx-autodoc-typehints - 3.13.6
Ebuild name:

dev-python/sphinx-autodoc-typehints-3.13.6

Description

Type hints support for the Sphinx autodoc extension

Added to portage

2026-09-09

systemd - 262_rc2
Ebuild name:

sys-apps/systemd-262_rc2

Description

System and service manager for Linux

Added to portage

2026-09-09

systemsettings - 6.7.5
Ebuild name:

kde-plasma/systemsettings-6.7.5

Description

Control Center to configure KDE Plasma desktop

Added to portage

2026-09-09

tifffile - 2026.9.9
Ebuild name:

dev-python/tifffile-2026.9.9

Description

Read and write TIFF files

Added to portage

2026-09-09

time-machine - 3.5.1
Ebuild name:

dev-python/time-machine-3.5.1

Description

Travel through time in your tests

Added to portage

2026-09-09

tor - 0.4.9.12
Ebuild name:

net-vpn/tor-0.4.9.12

Description

Anonymizing overlay network for TCP

Added to portage

2026-09-09

torchvision - 0.29.0-r2
Ebuild name:

sci-ml/torchvision-0.29.0-r2

Description

Datasets, transforms and models to specific to computer vision

Added to portage

2026-09-09

tox - 4.61.3
Ebuild name:

dev-python/tox-4.61.3

Description

virtualenv-based automation of test activities

Added to portage

2026-09-09

tree-sitter - 0.26.13
Ebuild name:

dev-libs/tree-sitter-0.26.13

Description

Tree-sitter is a parser generator tool and an incremental parsing libr

Added to portage

2026-09-09

union - 6.7.5
Ebuild name:

kde-plasma/union-6.7.5

Description

Style engine providing a unified style description to separate output styles

Added to portage

2026-09-09

uv - 0.12.11
Ebuild name:

dev-python/uv-0.12.11

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-09-09

uv-build - 0.12.11
Ebuild name:

dev-python/uv-build-0.12.11

Description

PEP517 uv build backend

Added to portage

2026-09-09

virtualenv - 21.7.9
Ebuild name:

dev-python/virtualenv-21.7.9

Description

Virtual Python Environment builder

Added to portage

2026-09-09

wacomtablet - 6.7.5
Ebuild name:

kde-plasma/wacomtablet-6.7.5

Description

Wacom system settings module that supports different button/pen layout

Added to portage

2026-09-09

weasyprint - 70.0
Ebuild name:

dev-python/weasyprint-70.0

Description

Visual rendering engine for HTML and CSS that can export to PDF

Added to portage

2026-09-09

winbox - 4.4_rc1
Ebuild name:

app-admin/winbox-4.4_rc1

Description

Management Software for MikroTik RouterOS

Added to portage

2026-09-09

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

kde-plasma/xdg-desktop-portal-kde-6.7.5

Description

Backend implementation for xdg-desktop-portal that is using

Added to portage

2026-09-09

xz-utils - 5.8.4
Ebuild name:

app-arch/xz-utils-5.8.4

Description

Utils for managing LZMA compressed files

Added to portage

2026-09-09

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