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:

85147

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-05-14
bnd - 7.2.3
Ebuild name:

dev-java/bnd-7.2.3

Description

bndlib A Swiss Army Knife for OSGi

Added to portage

2026-05-14

bnd-annotation - 7.2.3
Ebuild name:

dev-java/bnd-annotation-7.2.3

Description

bnd Annotations Library

Added to portage

2026-05-14

bnd-ant - 7.2.3
Ebuild name:

dev-java/bnd-ant-7.2.3

Description

Bnd Ant Tasks

Added to portage

2026-05-14

bnd-util - 7.2.3
Ebuild name:

dev-java/bnd-util-7.2.3

Description

AQute Bnd Utilities

Added to portage

2026-05-14

bndlib - 7.2.3
Ebuild name:

dev-java/bndlib-7.2.3

Description

bndlib A Swiss Army Knife for OSGi

Added to portage

2026-05-14

claude-code - 2.1.140
Ebuild name:

dev-util/claude-code-2.1.140

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-05-14

cloudflare-warp - 2026.4.1350.0
Ebuild name:

net-vpn/cloudflare-warp-2026.4.1350.0

Description

Cloudflare Warp Client

Added to portage

2026-05-14

dist-kernel - 5.10.255_p2
Ebuild name:

virtual/dist-kernel-5.10.255_p2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-14

dist-kernel - 5.15.206_p2
Ebuild name:

virtual/dist-kernel-5.15.206_p2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-14

dist-kernel - 6.1.172_p2
Ebuild name:

virtual/dist-kernel-6.1.172_p2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-14

dist-kernel - 6.12.87_p2
Ebuild name:

virtual/dist-kernel-6.12.87_p2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-14

dist-kernel - 6.18.29_p2
Ebuild name:

virtual/dist-kernel-6.18.29_p2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-14

dist-kernel - 6.6.138_p2
Ebuild name:

virtual/dist-kernel-6.6.138_p2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-14

dist-kernel - 7.0.6_p2
Ebuild name:

virtual/dist-kernel-7.0.6_p2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-14

gentoo-kernel - 5.10.255_p2
Ebuild name:

sys-kernel/gentoo-kernel-5.10.255_p2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel - 5.15.206_p2
Ebuild name:

sys-kernel/gentoo-kernel-5.15.206_p2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel - 6.1.172_p2
Ebuild name:

sys-kernel/gentoo-kernel-6.1.172_p2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel - 6.12.87_p2
Ebuild name:

sys-kernel/gentoo-kernel-6.12.87_p2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel - 6.18.29_p2
Ebuild name:

sys-kernel/gentoo-kernel-6.18.29_p2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel - 6.6.138_p2
Ebuild name:

sys-kernel/gentoo-kernel-6.6.138_p2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel - 7.0.6_p2
Ebuild name:

sys-kernel/gentoo-kernel-7.0.6_p2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel-bin - 5.10.255_p2
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.255_p2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel-bin - 5.15.206_p2
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.206_p2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel-bin - 6.1.172_p2
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.172_p2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel-bin - 6.12.87_p2
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.87_p2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel-bin - 6.18.29_p2
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.29_p2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel-bin - 6.6.138_p2
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.138_p2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel-bin - 7.0.6_p2
Ebuild name:

sys-kernel/gentoo-kernel-bin-7.0.6_p2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-14

gentoo-sources - 5.10.255-r1
Ebuild name:

sys-kernel/gentoo-sources-5.10.255-r1

Description

Full sources including the Gentoo patchset for the . kernel t

Added to portage

2026-05-14

gentoo-sources - 5.15.206-r2
Ebuild name:

sys-kernel/gentoo-sources-5.15.206-r2

Description

Full sources including the Gentoo patchset for the . kernel t

Added to portage

2026-05-14

gentoo-sources - 6.1.172-r2
Ebuild name:

sys-kernel/gentoo-sources-6.1.172-r2

Description

Full sources including the Gentoo patchset for the . kernel tr

Added to portage

2026-05-14

gentoo-sources - 6.12.87-r1
Ebuild name:

sys-kernel/gentoo-sources-6.12.87-r1

Description

Full sources including the Gentoo patchset for the . kernel tr

Added to portage

2026-05-14

gentoo-sources - 6.18.29-r1
Ebuild name:

sys-kernel/gentoo-sources-6.18.29-r1

Description

Full sources including the Gentoo patchset for the . kernel tr

Added to portage

2026-05-14

gentoo-sources - 6.6.138-r1
Ebuild name:

sys-kernel/gentoo-sources-6.6.138-r1

Description

Full sources including the Gentoo patchset for the . kernel tr

Added to portage

2026-05-14

gentoo-sources - 7.0.6-r1
Ebuild name:

sys-kernel/gentoo-sources-7.0.6-r1

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-05-14

intel-microcode - 20260512_p20260513
Ebuild name:

sys-firmware/intel-microcode-20260512_p20260513

Description

Intel IA32/IA64 microcode update data

Added to portage

2026-05-14

jdbc-postgresql - 42.7.11
Ebuild name:

dev-java/jdbc-postgresql-42.7.11

Description

Java JDBC 4.2 (JRE 8+) driver for PostgreSQL database

Added to portage

2026-05-14

libg - 7.2.3
Ebuild name:

dev-java/libg-7.2.3

Description

A library to be statically linked. Contains many small utilities

Added to portage

2026-05-14

mgorny-dev-scripts - 70
Ebuild name:

app-portage/mgorny-dev-scripts-70

Description

Handy scripts for ebuild development and more

Added to portage

2026-05-14

no-littering - 1.8.6
Ebuild name:

app-emacs/no-littering-1.8.6

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-05-14

no-littering - 1.8.7
Ebuild name:

app-emacs/no-littering-1.8.7

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-05-14

noflet - 0.0.15_p20141102-r1
Ebuild name:

app-emacs/noflet-0.0.15_p20141102-r1

Description

Dynamic, local advice for Emacs-Lisp code

Added to portage

2026-05-14

ppx_yojson_conv_lib - 0.17.0
Ebuild name:

dev-ml/ppx_yojson_conv_lib-0.17.0

Description

Runtime lib for ppx_yojson_conv

Added to portage

2026-05-14

tomcat - 10.1.55
Ebuild name:

www-servers/tomcat-10.1.55

Description

Tomcat Servlet-6.0/JSP-3.1/EL-5.0/WebSocket-2.1/JASPIC-3.0 Container

Added to portage

2026-05-14

tomcat - 11.0.22
Ebuild name:

www-servers/tomcat-11.0.22

Description

Tomcat Servlet-6.1/JSP-4.0/EL-6.0/WebSocket-2.2/JASPIC-3.1 Container

Added to portage

2026-05-14

tomcat - 9.0.118
Ebuild name:

www-servers/tomcat-9.0.118

Description

Tomcat Servlet-4.0/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container

Added to portage

2026-05-14

vanilla-kernel - 5.15.206
Ebuild name:

sys-kernel/vanilla-kernel-5.15.206

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-14

vanilla-kernel - 6.1.172
Ebuild name:

sys-kernel/vanilla-kernel-6.1.172

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-14

wsdl4j - 1.6.3-r1
Ebuild name:

dev-java/wsdl4j-1.6.3-r1

Description

Web Services Description Language for Java Toolkit (WSDL4J)

Added to portage

2026-05-14

xz-java - 1.12
Ebuild name:

dev-java/xz-java-1.12

Description

Implementation of xz data compression in pure java

Added to portage

2026-05-14

2026-05-13
ardour - 9.2.0
Ebuild name:

media-sound/ardour-9.2.0

Description

Digital Audio Workstation

Added to portage

2026-05-13

aurorae - 6.6.5
Ebuild name:

kde-plasma/aurorae-6.6.5

Description

Themeable window decoration for KWin

Added to portage

2026-05-13

bind - 9.18.48
Ebuild name:

net-dns/bind-9.18.48

Description

Berkeley Internet Name Domain - Name Server

Added to portage

2026-05-13

bind - 9.20.22
Ebuild name:

net-dns/bind-9.20.22

Description

Berkeley Internet Name Domain - Name Server

Added to portage

2026-05-13

bluedevil - 6.6.5
Ebuild name:

kde-plasma/bluedevil-6.6.5

Description

Bluetooth stack for KDE Plasma

Added to portage

2026-05-13

breeze - 6.6.5
Ebuild name:

kde-plasma/breeze-6.6.5

Description

Breeze visual style for the Plasma desktop

Added to portage

2026-05-13

breeze-grub - 6.6.5
Ebuild name:

kde-plasma/breeze-grub-6.6.5

Description

Breeze theme for GRUB

Added to portage

2026-05-13

breeze-gtk - 6.6.5
Ebuild name:

kde-plasma/breeze-gtk-6.6.5

Description

Official GTK+ port of Plasma's Breeze widget style

Added to portage

2026-05-13

breeze-plymouth - 6.6.5
Ebuild name:

kde-plasma/breeze-plymouth-6.6.5

Description

Breeze theme for Plymouth

Added to portage

2026-05-13

cbor2 - 6.1.0
Ebuild name:

dev-python/cbor2-6.1.0

Description

CBOR (de)serializer with extensive tag support

Added to portage

2026-05-13

cfn-lint - 1.51.0
Ebuild name:

dev-python/cfn-lint-1.51.0

Description

CloudFormation Linter

Added to portage

2026-05-13

chemex - 2026.5.0
Ebuild name:

sci-chemistry/chemex-2026.5.0

Description

Program to fit chemical exchange induced shift and relaxation data

Added to portage

2026-05-13

chez - 10.4.1
Ebuild name:

dev-scheme/chez-10.4.1

Description

A programming language based on R6RS

Added to portage

2026-05-13

chrome-binary-plugins - 148.0.7778.167
Ebuild name:

www-plugins/chrome-binary-plugins-148.0.7778.167

Description

Binary plugins from Google Chrome for use in Chrom

Added to portage

2026-05-13

chrome-binary-plugins - 149.0.7827.14_beta
Ebuild name:

www-plugins/chrome-binary-plugins-149.0.7827.14_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-05-13

chrome-binary-plugins - 149.0.7827.3_beta
Ebuild name:

www-plugins/chrome-binary-plugins-149.0.7827.3_beta

Description

Binary plugins from Google Chrome for use in Ch

Added to portage

2026-05-13

chrome-binary-plugins - 150.0.7828.2_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-150.0.7828.2_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-05-13

chromedriver-bin - 148.0.7778.167
Ebuild name:

www-apps/chromedriver-bin-148.0.7778.167

Description

WebDriver for Chrome

Added to portage

2026-05-13

chromium - 148.0.7778.167
Ebuild name:

www-client/chromium-148.0.7778.167

Description

Open-source version of Google Chrome web browser

Added to portage

2026-05-13

deluge - 2.2.0-r2
Ebuild name:

net-p2p/deluge-2.2.0-r2

Description

BitTorrent client with a client/server model

Added to portage

2026-05-13

discover - 6.6.5
Ebuild name:

kde-plasma/discover-6.6.5

Description

KDE Plasma resources management GUI

Added to portage

2026-05-13

dnsmasq - 2.92_p2
Ebuild name:

net-dns/dnsmasq-2.92_p2

Description

Small forwarding DNS server

Added to portage

2026-05-13

dovecot - 2.4.4
Ebuild name:

net-mail/dovecot-2.4.4

Description

An IMAP and POP3 server written with security primarily in mind

Added to portage

2026-05-13

drkonqi - 6.6.5
Ebuild name:

kde-plasma/drkonqi-6.6.5

Description

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

Added to portage

2026-05-13

element - 1.12.18
Ebuild name:

www-apps/element-1.12.18

Description

A glossy Matrix collaboration client for the web

Added to portage

2026-05-13

elogind - 255.25
Ebuild name:

sys-auth/elogind-255.25

Description

The systemd project's logind, extracted to a standalone package

Added to portage

2026-05-13

firefox - 150.0.3
Ebuild name:

www-client/firefox-150.0.3

Description

Firefox Web Browser

Added to portage

2026-05-13

firefox-bin - 150.0.3
Ebuild name:

www-client/firefox-bin-150.0.3

Description

Firefox Web Browser

Added to portage

2026-05-13

firefox-l10n - 150.0.3
Ebuild name:

www-client/firefox-l10n-150.0.3

Description

Firefox Web Browser's translation files

Added to portage

2026-05-13

flatpak-kcm - 6.6.5
Ebuild name:

kde-plasma/flatpak-kcm-6.6.5

Description

Flatpak Permissions Management KCM

Added to portage

2026-05-13

free42 - 3.3.12
Ebuild name:

app-emulation/free42-3.3.12

Description

An HP-42S Calculator Simulator

Added to portage

2026-05-13

geoipyupdate - 0.0.5
Ebuild name:

net-misc/geoipyupdate-0.0.5

Description

Simple python replacement for the MaxMind geoipupdate program

Added to portage

2026-05-13

google-chrome - 148.0.7778.167
Ebuild name:

www-client/google-chrome-148.0.7778.167

Description

The web browser from Google

Added to portage

2026-05-13

google-chrome-beta - 149.0.7827.14
Ebuild name:

www-client/google-chrome-beta-149.0.7827.14

Description

The web browser from Google

Added to portage

2026-05-13

google-chrome-beta - 149.0.7827.3
Ebuild name:

www-client/google-chrome-beta-149.0.7827.3

Description

The web browser from Google

Added to portage

2026-05-13

google-chrome-unstable - 150.0.7828.2
Ebuild name:

www-client/google-chrome-unstable-150.0.7828.2

Description

The web browser from Google

Added to portage

2026-05-13

idna - 3.15
Ebuild name:

dev-python/idna-3.15

Description

Internationalized Domain Names in Applications (IDNA)

Added to portage

2026-05-13

inline-snapshot - 0.33.0
Ebuild name:

dev-python/inline-snapshot-0.33.0

Description

Create and update inline snapshots in your Python tests

Added to portage

2026-05-13

ipyparallel - 9.2.0
Ebuild name:

dev-python/ipyparallel-9.2.0

Description

Interactive Parallel Computing with IPython

Added to portage

2026-05-13

kactivitymanagerd - 6.6.5
Ebuild name:

kde-plasma/kactivitymanagerd-6.6.5

Description

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

Added to portage

2026-05-13

kde-cli-tools - 6.6.5
Ebuild name:

kde-plasma/kde-cli-tools-6.6.5

Description

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

Added to portage

2026-05-13

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

kde-plasma/kde-cli-tools-common-6.6.5

Description

Added to portage

2026-05-13

kde-gtk-config - 6.6.5
Ebuild name:

kde-plasma/kde-gtk-config-6.6.5

Description

Syncs KDE Plasma theme settings to GTK applications

Added to portage

2026-05-13

kdecoration - 6.6.5
Ebuild name:

kde-plasma/kdecoration-6.6.5

Description

Plugin based library to create window decorations

Added to portage

2026-05-13

kdeplasma-addons - 6.6.5
Ebuild name:

kde-plasma/kdeplasma-addons-6.6.5

Description

Extra Plasma applets and engines

Added to portage

2026-05-13

kdesu-gui - 6.6.5
Ebuild name:

kde-plasma/kdesu-gui-6.6.5

Description

Graphical frontend for KDE Frameworks' kdesu

Added to portage

2026-05-13

keditfiletype - 6.6.5
Ebuild name:

kde-plasma/keditfiletype-6.6.5

Description

File Type Editor

Added to portage

2026-05-13

kgamma - 6.6.5
Ebuild name:

kde-plasma/kgamma-6.6.5

Description

Screen gamma values kcontrol module

Added to portage

2026-05-13

kglobalacceld - 6.6.5
Ebuild name:

kde-plasma/kglobalacceld-6.6.5

Description

Daemon providing Global Keyboard Shortcut (Accelerator) functionalit

Added to portage

2026-05-13

kinfocenter - 6.6.5
Ebuild name:

kde-plasma/kinfocenter-6.6.5

Description

Utility providing information about the computer hardware

Added to portage

2026-05-13

klayout - 0.30.8
Ebuild name:

sci-electronics/klayout-0.30.8

Description

Viewer and editor for GDS and OASIS integrated circuit layouts

Added to portage

2026-05-13

kmenuedit - 6.6.5
Ebuild name:

kde-plasma/kmenuedit-6.6.5

Description

KDE Plasma menu editor

Added to portage

2026-05-13

knighttime - 6.6.5
Ebuild name:

kde-plasma/knighttime-6.6.5

Description

Helpers for scheduling the dark-light cycle

Added to portage

2026-05-13

kpipewire - 6.6.5
Ebuild name:

kde-plasma/kpipewire-6.6.5

Description

Components relating to Flatpak pipewire use in Plasma

Added to portage

2026-05-13

krdp - 6.6.5
Ebuild name:

kde-plasma/krdp-6.6.5

Description

Library and examples for creating an RDP server

Added to portage

2026-05-13

kscreen - 6.6.5
Ebuild name:

kde-plasma/kscreen-6.6.5

Description

KDE Plasma screen management

Added to portage

2026-05-13

kscreenlocker - 6.6.5
Ebuild name:

kde-plasma/kscreenlocker-6.6.5

Description

Library and components for secure lock screen architecture

Added to portage

2026-05-13

ksshaskpass - 6.6.5
Ebuild name:

kde-plasma/ksshaskpass-6.6.5

Description

Implementation of ssh-askpass with KDE Wallet integration

Added to portage

2026-05-13

ksystemstats - 6.6.5
Ebuild name:

kde-plasma/ksystemstats-6.6.5

Description

Plugin-based system monitoring daemon

Added to portage

2026-05-13

kwallet-pam - 6.6.5
Ebuild name:

kde-plasma/kwallet-pam-6.6.5

Description

PAM module to not enter KWallet password again after login

Added to portage

2026-05-13

kwayland - 6.6.5
Ebuild name:

kde-plasma/kwayland-6.6.5

Description

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

Added to portage

2026-05-13

kwin - 6.6.5
Ebuild name:

kde-plasma/kwin-6.6.5

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2026-05-13

kwin-x11 - 6.6.5
Ebuild name:

kde-plasma/kwin-x11-6.6.5

Description

Flexible, composited X window manager

Added to portage

2026-05-13

kwrited - 6.6.5
Ebuild name:

kde-plasma/kwrited-6.6.5

Description

KDE Plasma daemon listening for wall and write messages

Added to portage

2026-05-13

layer-shell-qt - 6.6.5
Ebuild name:

kde-plasma/layer-shell-qt-6.6.5

Description

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

Added to portage

2026-05-13

lego - 5.0.2
Ebuild name:

app-crypt/lego-5.0.2

Description

Let's Encrypt/ACME client (like certbot or acme.sh) and library written in Go

Added to portage

2026-05-13

libksba - 1.8.0
Ebuild name:

dev-libs/libksba-1.8.0

Description

X.509 and CMS (PKCS7) library

Added to portage

2026-05-13

libkscreen - 6.6.5
Ebuild name:

kde-plasma/libkscreen-6.6.5

Description

Plasma screen management library

Added to portage

2026-05-13

libksysguard - 6.6.5
Ebuild name:

kde-plasma/libksysguard-6.6.5

Description

Task management and system monitoring library

Added to portage

2026-05-13

libplasma - 6.6.5
Ebuild name:

kde-plasma/libplasma-6.6.5

Description

Plasma library and runtime components based upon KF6 and Qt6

Added to portage

2026-05-13

microsoft-edge - 148.0.3967.54
Ebuild name:

www-client/microsoft-edge-148.0.3967.54

Description

The web browser from Microsoft

Added to portage

2026-05-13

microsoft-edge-beta - 148.0.3967.52
Ebuild name:

www-client/microsoft-edge-beta-148.0.3967.52

Description

The web browser from Microsoft

Added to portage

2026-05-13

microsoft-edge-beta - 148.0.3967.54
Ebuild name:

www-client/microsoft-edge-beta-148.0.3967.54

Description

The web browser from Microsoft

Added to portage

2026-05-13

microsoft-edge-dev - 149.0.4009.0
Ebuild name:

www-client/microsoft-edge-dev-149.0.4009.0

Description

The web browser from Microsoft

Added to portage

2026-05-13

microsoft-edge-dev - 149.0.4022.4
Ebuild name:

www-client/microsoft-edge-dev-149.0.4022.4

Description

The web browser from Microsoft

Added to portage

2026-05-13

milou - 6.6.5
Ebuild name:

kde-plasma/milou-6.6.5

Description

Dedicated search application built on top of Baloo

Added to portage

2026-05-13

mitmproxy - 12.2.3
Ebuild name:

net-proxy/mitmproxy-12.2.3

Description

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

Added to portage

2026-05-13

noflet - 0.0.15_p20141102-r1
Ebuild name:

app-emacs/noflet-0.0.15_p20141102-r1

Description

Dynamic, local advice for Emacs-Lisp code

Added to portage

2026-05-13

ocean-sound-theme - 6.6.5
Ebuild name:

kde-plasma/ocean-sound-theme-6.6.5

Description

Ocean Sound Theme for Plasma

Added to portage

2026-05-13

openpgp-keys-simonkelley - 20260512
Ebuild name:

sec-keys/openpgp-keys-simonkelley-20260512

Description

OpenPGP key used by Simon Kelley

Added to portage

2026-05-13

opera-developer - 132.0.5889.0
Ebuild name:

www-client/opera-developer-132.0.5889.0

Description

A fast and secure web browser

Added to portage

2026-05-13

oxygen - 6.6.5
Ebuild name:

kde-plasma/oxygen-6.6.5

Description

Oxygen visual style for the Plasma desktop

Added to portage

2026-05-13

oxygen-sounds - 6.6.5
Ebuild name:

kde-plasma/oxygen-sounds-6.6.5

Description

Oxygen sound theme for the Plasma desktop

Added to portage

2026-05-13

pillow - 12.2.0-r1
Ebuild name:

dev-python/pillow-12.2.0-r1

Description

Python Imaging Library (fork)

Added to portage

2026-05-13

pjproject - 2.17
Ebuild name:

net-libs/pjproject-2.17

Description

Open source SIP, Media, and NAT Traversal Library

Added to portage

2026-05-13

plasma-activities - 6.6.5
Ebuild name:

kde-plasma/plasma-activities-6.6.5

Description

Core components for KDE's Activities System

Added to portage

2026-05-13

plasma-activities-stats - 6.6.5
Ebuild name:

kde-plasma/plasma-activities-stats-6.6.5

Description

Library for accessing usage data collected by the activiti

Added to portage

2026-05-13

plasma-browser-integration - 6.6.5
Ebuild name:

kde-plasma/plasma-browser-integration-6.6.5

Description

Integrate Chrome/Firefox better into Plasma through bro

Added to portage

2026-05-13

plasma-desktop - 6.6.5
Ebuild name:

kde-plasma/plasma-desktop-6.6.5

Description

KDE Plasma desktop

Added to portage

2026-05-13

plasma-disks - 6.6.5
Ebuild name:

kde-plasma/plasma-disks-6.6.5

Description

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

Added to portage

2026-05-13

plasma-firewall - 6.6.5
Ebuild name:

kde-plasma/plasma-firewall-6.6.5

Description

Plasma frontend for Firewalld or UFW

Added to portage

2026-05-13

plasma-integration - 6.6.5
Ebuild name:

kde-plasma/plasma-integration-6.6.5

Description

Qt Platform Theme integration plugins for the Plasma workspaces

Added to portage

2026-05-13

plasma-keyboard - 6.6.5
Ebuild name:

kde-plasma/plasma-keyboard-6.6.5

Description

Virtual keyboard based on Qt Virtual Keyboard

Added to portage

2026-05-13

plasma-login-manager - 6.6.5
Ebuild name:

kde-plasma/plasma-login-manager-6.6.5

Description

Plasma Login Manager

Added to portage

2026-05-13

plasma-login-sessions - 6.6.5
Ebuild name:

kde-plasma/plasma-login-sessions-6.6.5

Description

KDE Plasma login sessions

Added to portage

2026-05-13

plasma-meta - 6.6.5
Ebuild name:

kde-plasma/plasma-meta-6.6.5

Description

Merge this to pull in all Plasma 6 packages

Added to portage

2026-05-13

plasma-nm - 6.6.5
Ebuild name:

kde-plasma/plasma-nm-6.6.5

Description

KDE Plasma applet for NetworkManager

Added to portage

2026-05-13

plasma-pa - 6.6.5
Ebuild name:

kde-plasma/plasma-pa-6.6.5

Description

Plasma applet for audio volume management using PulseAudio

Added to portage

2026-05-13

plasma-sdk - 6.6.5
Ebuild name:

kde-plasma/plasma-sdk-6.6.5

Description

Useful applications for Plasma development

Added to portage

2026-05-13

plasma-systemmonitor - 6.6.5
Ebuild name:

kde-plasma/plasma-systemmonitor-6.6.5

Description

Monitor system sensors, process information and other system

Added to portage

2026-05-13

plasma-thunderbolt - 6.6.5
Ebuild name:

kde-plasma/plasma-thunderbolt-6.6.5

Description

Plasma integration for controlling Thunderbolt devices

Added to portage

2026-05-13

plasma-vault - 6.6.5
Ebuild name:

kde-plasma/plasma-vault-6.6.5

Description

Plasma applet and services for creating encrypted vaults

Added to portage

2026-05-13

plasma-welcome - 6.6.5
Ebuild name:

kde-plasma/plasma-welcome-6.6.5

Description

Friendly onboarding wizard for Plasma

Added to portage

2026-05-13

plasma-workspace - 6.6.5
Ebuild name:

kde-plasma/plasma-workspace-6.6.5

Description

KDE Plasma workspace

Added to portage

2026-05-13

plasma-workspace-wallpapers - 6.6.5
Ebuild name:

kde-plasma/plasma-workspace-wallpapers-6.6.5

Description

Wallpapers for the Plasma workspace

Added to portage

2026-05-13

plasma5support - 6.6.5
Ebuild name:

kde-plasma/plasma5support-6.6.5

Description

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

Added to portage

2026-05-13

plus42 - 1.3.15
Ebuild name:

app-emulation/plus42-1.3.15

Description

An Enhanced HP-42S Calculator Simulator

Added to portage

2026-05-13

plymouth-kcm - 6.6.5
Ebuild name:

kde-plasma/plymouth-kcm-6.6.5

Description

KDE Plasma control module for Plymouth

Added to portage

2026-05-13

polkit-kde-agent - 6.6.5
Ebuild name:

kde-plasma/polkit-kde-agent-6.6.5

Description

PolKit agent module for KDE Plasma

Added to portage

2026-05-13

polymode - 0.2.2_p20260505
Ebuild name:

app-emacs/polymode-0.2.2_p20260505

Description

Framework for Multiple Major Modes in Emacs

Added to portage

2026-05-13

powerdevil - 6.6.5
Ebuild name:

kde-plasma/powerdevil-6.6.5

Description

Power management for KDE Plasma Shell

Added to portage

2026-05-13

print-manager - 6.6.5
Ebuild name:

kde-plasma/print-manager-6.6.5

Description

Manage CUPS print jobs and printers in Plasma

Added to portage

2026-05-13

pygobject - 3.52.4
Ebuild name:

dev-python/pygobject-3.52.4

Description

Python bindings for GObject Introspection

Added to portage

2026-05-13

pymacs - 0.26-r7
Ebuild name:

app-emacs/pymacs-0.26-r7

Description

A tool that allows both-side communication between Python and Emacs Lisp

Added to portage

2026-05-13

python-discovery - 1.3.1
Ebuild name:

dev-python/python-discovery-1.3.1

Description

Python interpreter discovery

Added to portage

2026-05-13

qqc2-breeze-style - 6.6.5
Ebuild name:

kde-plasma/qqc2-breeze-style-6.6.5

Description

Breeze inspired QQC2 Style

Added to portage

2026-05-13

raqm - 0.10.5
Ebuild name:

media-libs/raqm-0.10.5

Description

A library for complex text layout

Added to portage

2026-05-13

reportlab - 4.5.1
Ebuild name:

dev-python/reportlab-4.5.1

Description

Tools for generating printable PDF documents from any data source

Added to portage

2026-05-13

ruby - 4.0.4
Ebuild name:

dev-lang/ruby-4.0.4

Description

An object-oriented scripting language

Added to portage

2026-05-13

sddm-kcm - 6.6.5
Ebuild name:

kde-plasma/sddm-kcm-6.6.5

Description

KDE Plasma control module for SDDM

Added to portage

2026-05-13

selenium - 4.44.0
Ebuild name:

dev-python/selenium-4.44.0

Description

Python language binding for Selenium Remote Control

Added to portage

2026-05-13

selenium-manager - 4.44.0
Ebuild name:

dev-util/selenium-manager-4.44.0

Description

CLI tool that manages the browser/driver infrastructure required b

Added to portage

2026-05-13

shell-maker - 0.91.2
Ebuild name:

app-emacs/shell-maker-0.91.2

Description

Interaction mode for making comint shells for GNU Emacs

Added to portage

2026-05-13

simpleagenda - 0.48
Ebuild name:

gnustep-apps/simpleagenda-0.48

Description

a simple calendar and agenda application

Added to portage

2026-05-13

skrooge - 26.4.0
Ebuild name:

app-office/skrooge-26.4.0

Description

Personal finances manager, aiming at being simple and intuitive

Added to portage

2026-05-13

spectacle - 6.6.5
Ebuild name:

kde-plasma/spectacle-6.6.5

Description

Screenshot capture utility

Added to portage

2026-05-13

stalwart-cli - 1.0.6
Ebuild name:

net-mail/stalwart-cli-1.0.6

Description

Stalwart Mail Server command line utility

Added to portage

2026-05-13

stalwart-mail - 0.16.5
Ebuild name:

net-mail/stalwart-mail-0.16.5

Description

Stalwart Mail Server

Added to portage

2026-05-13

systemsettings - 6.6.5
Ebuild name:

kde-plasma/systemsettings-6.6.5

Description

Control Center to configure KDE Plasma desktop

Added to portage

2026-05-13

taglib - 2.3
Ebuild name:

media-libs/taglib-2.3

Description

Library for reading and editing audio meta data

Added to portage

2026-05-13

tox - 4.54.0
Ebuild name:

dev-python/tox-4.54.0

Description

virtualenv-based automation of test activities

Added to portage

2026-05-13

uv - 0.11.14
Ebuild name:

dev-python/uv-0.11.14

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-05-13

uv-build - 0.11.14
Ebuild name:

dev-python/uv-build-0.11.14

Description

PEP517 uv build backend

Added to portage

2026-05-13

virtualenv - 21.3.2
Ebuild name:

dev-python/virtualenv-21.3.2

Description

Virtual Python Environment builder

Added to portage

2026-05-13

vivaldi - 7.9.3970.64
Ebuild name:

www-client/vivaldi-7.9.3970.64

Description

A browser for our friends

Added to portage

2026-05-13

vivaldi-snapshot - 7.10.4029.3
Ebuild name:

www-client/vivaldi-snapshot-7.10.4029.3

Description

A browser for our friends

Added to portage

2026-05-13

vivaldi-snapshot - 7.10.4030.3
Ebuild name:

www-client/vivaldi-snapshot-7.10.4030.3

Description

A browser for our friends

Added to portage

2026-05-13

wacomtablet - 6.6.5
Ebuild name:

kde-plasma/wacomtablet-6.6.5

Description

Wacom system settings module that supports different button/pen layout

Added to portage

2026-05-13

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

kde-plasma/xdg-desktop-portal-kde-6.6.5

Description

Backend implementation for xdg-desktop-portal that is using

Added to portage

2026-05-13

xfsdump - 3.3.0
Ebuild name:

sys-fs/xfsdump-3.3.0

Description

XFS dump/restore utilities

Added to portage

2026-05-13

xournalpp - 1.3.4
Ebuild name:

app-text/xournalpp-1.3.4

Description

Handwriting notetaking software with PDF annotation support

Added to portage

2026-05-13

zabbix - 6.0.46
Ebuild name:

net-analyzer/zabbix-6.0.46

Description

ZABBIX is software for monitoring of your applications, network and serv

Added to portage

2026-05-13

zabbix - 7.0.26
Ebuild name:

net-analyzer/zabbix-7.0.26

Description

ZABBIX is software for monitoring of your applications, network and serv

Added to portage

2026-05-13

zabbix - 7.4.10
Ebuild name:

net-analyzer/zabbix-7.4.10

Description

ZABBIX is software for monitoring of your applications, network and serv

Added to portage

2026-05-13

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