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:

85159

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-15
corrosion - 0.6.1
Ebuild name:

dev-build/corrosion-0.6.1

Description

Marrying Rust and CMake - Easy Rust and C/C++ Integration

Added to portage

2026-05-15

dist-kernel - 5.10.255_p3
Ebuild name:

virtual/dist-kernel-5.10.255_p3

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dist-kernel - 5.15.206_p3
Ebuild name:

virtual/dist-kernel-5.15.206_p3

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dist-kernel - 6.1.172_p3
Ebuild name:

virtual/dist-kernel-6.1.172_p3

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dist-kernel - 6.12.88
Ebuild name:

virtual/dist-kernel-6.12.88

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dist-kernel - 6.18.30
Ebuild name:

virtual/dist-kernel-6.18.30

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dist-kernel - 6.6.138_p3
Ebuild name:

virtual/dist-kernel-6.6.138_p3

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dist-kernel - 7.0.7
Ebuild name:

virtual/dist-kernel-7.0.7

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

erlang - 26.2.5.20
Ebuild name:

dev-lang/erlang-26.2.5.20

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2026-05-15

erlang - 27.3.4.11
Ebuild name:

dev-lang/erlang-27.3.4.11

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2026-05-15

erlang - 28.5
Ebuild name:

dev-lang/erlang-28.5

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2026-05-15

erlang - 29.0
Ebuild name:

dev-lang/erlang-29.0

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2026-05-15

framework_tool - 0.6.3
Ebuild name:

app-laptop/framework_tool-0.6.3

Description

Tool to control Framework Computer systems

Added to portage

2026-05-15

gentoo-kernel - 5.10.255_p3
Ebuild name:

sys-kernel/gentoo-kernel-5.10.255_p3

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel - 5.15.206_p3
Ebuild name:

sys-kernel/gentoo-kernel-5.15.206_p3

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel - 6.1.172_p3
Ebuild name:

sys-kernel/gentoo-kernel-6.1.172_p3

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel - 6.12.88
Ebuild name:

sys-kernel/gentoo-kernel-6.12.88

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel - 6.18.30
Ebuild name:

sys-kernel/gentoo-kernel-6.18.30

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel - 6.6.138_p3
Ebuild name:

sys-kernel/gentoo-kernel-6.6.138_p3

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel - 7.0.7
Ebuild name:

sys-kernel/gentoo-kernel-7.0.7

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 5.10.255_p3
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.255_p3

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 5.15.206_p3
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.206_p3

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 6.1.172_p3
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.172_p3

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 6.12.88
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.88

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 6.18.30
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.30

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 6.6.138_p3
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.138_p3

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 7.0.7
Ebuild name:

sys-kernel/gentoo-kernel-bin-7.0.7

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

lldpd - 1.0.22
Ebuild name:

net-misc/lldpd-1.0.22

Description

Implementation of IEEE 802.1ab (LLDP)

Added to portage

2026-05-15

prek - 0.4.0
Ebuild name:

dev-util/prek-0.4.0

Description

Better `pre-commit`, re-engineered in Rust

Added to portage

2026-05-15

pyside - 6.11.1
Ebuild name:

dev-python/pyside-6.11.1

Description

Python bindings for the Qt framework

Added to portage

2026-05-15

python-distutils-extra - 3.3
Ebuild name:

dev-python/python-distutils-extra-3.3

Description

Gettext support, themed icons and scrollkeeper-based document

Added to portage

2026-05-15

ruff - 0.15.13
Ebuild name:

dev-util/ruff-0.15.13

Description

An extremely fast Python linter, written in Rust

Added to portage

2026-05-15

synapse - 1.152.1
Ebuild name:

net-im/synapse-1.152.1

Description

Reference implementation of Matrix homeserver

Added to portage

2026-05-15

telegram-desktop - 6.8.2
Ebuild name:

net-im/telegram-desktop-6.8.2

Description

Official desktop client for Telegram

Added to portage

2026-05-15

telegram-desktop-bin - 6.8.2
Ebuild name:

net-im/telegram-desktop-bin-6.8.2

Description

Official desktop client for Telegram (binary package)

Added to portage

2026-05-15

tuned - 2.27.0-r2
Ebuild name:

sys-apps/tuned-2.27.0-r2

Description

Daemon for monitoring and adaptive tuning of system devices

Added to portage

2026-05-15

vanilla-kernel - 6.12.88
Ebuild name:

sys-kernel/vanilla-kernel-6.12.88

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-15

vanilla-kernel - 6.18.30
Ebuild name:

sys-kernel/vanilla-kernel-6.18.30

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-15

vanilla-kernel - 7.0.7
Ebuild name:

sys-kernel/vanilla-kernel-7.0.7

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-15

2026-05-14
awl - 0.65
Ebuild name:

dev-php/awl-0.65

Description

Andrew McMillan's Web Libraries

Added to portage

2026-05-14

awscli - 1.45.7
Ebuild name:

app-admin/awscli-1.45.7

Description

Universal Command Line Environment for AWS

Added to portage

2026-05-14

ballerburg - 1.2.3
Ebuild name:

games-misc/ballerburg-1.2.3

Description

Linux port of the classical Atari ST game Ballerburg

Added to portage

2026-05-14

bedrock-server - 1.26.20.5
Ebuild name:

games-server/bedrock-server-1.26.20.5

Description

The official bedrock (non-java) based server for the sandbox

Added to portage

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

boto3 - 1.43.7
Ebuild name:

dev-python/boto3-1.43.7

Description

The AWS SDK for Python

Added to portage

2026-05-14

botocore - 1.43.7
Ebuild name:

dev-python/botocore-1.43.7

Description

Low-level, data-driven core of boto 3

Added to portage

2026-05-14

brial - 1.2.15
Ebuild name:

sci-libs/brial-1.2.15

Description

A C++ library for polynomials over boolean rings

Added to portage

2026-05-14

busybox - 1.38.0
Ebuild name:

sys-apps/busybox-1.38.0

Description

Utilities for rescue and embedded systems

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

cliff - 4.14.0
Ebuild name:

dev-python/cliff-4.14.0

Description

Command Line Interface Formulation Framework

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

cpuid - 20260503
Ebuild name:

sys-apps/cpuid-20260503

Description

Linux tool to dump x86 CPUID information about the CPUs

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

dkjson - 2.10
Ebuild name:

dev-lua/dkjson-2.10

Description

David Kolf's JSON module for Lua

Added to portage

2026-05-14

e3-testsuite - 26.0-r3
Ebuild name:

dev-ada/e3-testsuite-26.0-r3

Description

Generic testsuite framework in Python

Added to portage

2026-05-14

exim - 4.99.3
Ebuild name:

mail-mta/exim-4.99.3

Description

A highly configurable, drop-in replacement for sendmail

Added to portage

2026-05-14

fastfetch - 2.63.1
Ebuild name:

app-misc/fastfetch-2.63.1

Description

Fast neofetch-like system information tool

Added to portage

2026-05-14

faudio - 26.05
Ebuild name:

app-emulation/faudio-26.05

Description

Accuracy-focused XAudio reimplementation for open platforms

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.12.88
Ebuild name:

sys-kernel/gentoo-sources-6.12.88

Description

Full sources including the Gentoo patchset for the . kernel tree

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.18.30
Ebuild name:

sys-kernel/gentoo-sources-6.18.30

Description

Full sources including the Gentoo patchset for the . kernel tree

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

gentoo-sources - 7.0.7
Ebuild name:

sys-kernel/gentoo-sources-7.0.7

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-05-14

gnome-shell-extension-weather-oclock - 50.3
Ebuild name:

gnome-extra/gnome-shell-extension-weather-oclock-50.3

Description

Display the current weather inside the pill n

Added to portage

2026-05-14

gnome-weather - 50.0
Ebuild name:

gnome-extra/gnome-weather-50.0

Description

A weather application for GNOME

Added to portage

2026-05-14

gnupg - 2.5.20
Ebuild name:

app-crypt/gnupg-2.5.20

Description

The GNU Privacy Guard, a GPL OpenPGP implementation

Added to portage

2026-05-14

hypothesis - 6.152.7
Ebuild name:

dev-python/hypothesis-6.152.7

Description

A library for property based testing

Added to portage

2026-05-14

intel-compute-runtime - 24.35.30872.32-r3
Ebuild name:

dev-libs/intel-compute-runtime-24.35.30872.32-r3

Description

Intel Graphics Compute Runtime for oneAPI Level Ze

Added to portage

2026-05-14

intel-compute-runtime - 24.35.30872.36-r1
Ebuild name:

dev-libs/intel-compute-runtime-24.35.30872.36-r1

Description

Intel Graphics Compute Runtime for oneAPI Level Ze

Added to portage

2026-05-14

intel-compute-runtime - 26.18.38308.1
Ebuild name:

dev-libs/intel-compute-runtime-26.18.38308.1

Description

Intel Graphics Compute Runtime for oneAPI Level Zero a

Added to portage

2026-05-14

intel-graphics-compiler - 2.35.2
Ebuild name:

dev-util/intel-graphics-compiler-2.35.2

Description

LLVM-based OpenCL compiler for OpenCL targetting Intel Gen

Added to portage

2026-05-14

intel-graphics-compiler-bin - 1.0.17791.9
Ebuild name:

dev-util/intel-graphics-compiler-bin-1.0.17791.9

Description

LLVM-based OpenCL compiler for OpenCL targetting I

Added to portage

2026-05-14

intel-graphics-system-controller - 1.2.0
Ebuild name:

dev-util/intel-graphics-system-controller-1.2.0

Description

Intel graphics system controller firmware update li

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

keystoneauth1 - 5.14.0
Ebuild name:

dev-python/keystoneauth1-5.14.0

Description

This package contains tools for authenticating to an OpenStack-base

Added to portage

2026-05-14

kicad - 10.0.0-r1
Ebuild name:

sci-electronics/kicad-10.0.0-r1

Description

Electronic Schematic and PCB design tools

Added to portage

2026-05-14

kicad - 10.0.2
Ebuild name:

sci-electronics/kicad-10.0.2

Description

Electronic Schematic and PCB design tools

Added to portage

2026-05-14

kicad - 9.0.9
Ebuild name:

sci-electronics/kicad-9.0.9

Description

Electronic Schematic and PCB design tools

Added to portage

2026-05-14

kicad-footprints - 10.0.2
Ebuild name:

sci-electronics/kicad-footprints-10.0.2

Description

Electronic Schematic and PCB design tools footprint librari

Added to portage

2026-05-14

kicad-footprints - 9.0.9
Ebuild name:

sci-electronics/kicad-footprints-9.0.9

Description

Electronic Schematic and PCB design tools footprint librarie

Added to portage

2026-05-14

kicad-meta - 10.0.2
Ebuild name:

sci-electronics/kicad-meta-10.0.2

Description

Electronic Schematic and PCB design tools (meta package)

Added to portage

2026-05-14

kicad-meta - 9.0.9
Ebuild name:

sci-electronics/kicad-meta-9.0.9

Description

Electronic Schematic and PCB design tools (meta package)

Added to portage

2026-05-14

kicad-packages3d - 10.0.2
Ebuild name:

sci-electronics/kicad-packages3d-10.0.2

Description

Electronic Schematic and PCB design tools 3D package librar

Added to portage

2026-05-14

kicad-packages3d - 9.0.9
Ebuild name:

sci-electronics/kicad-packages3d-9.0.9

Description

Electronic Schematic and PCB design tools 3D package librari

Added to portage

2026-05-14

kicad-symbols - 10.0.2
Ebuild name:

sci-electronics/kicad-symbols-10.0.2

Description

Electronic Schematic and PCB design tools symbol libraries

Added to portage

2026-05-14

kicad-symbols - 9.0.9
Ebuild name:

sci-electronics/kicad-symbols-9.0.9

Description

Electronic Schematic and PCB design tools symbol libraries

Added to portage

2026-05-14

kicad-templates - 10.0.2
Ebuild name:

sci-electronics/kicad-templates-10.0.2

Description

Electronic Schematic and PCB design tools project templates

Added to portage

2026-05-14

kicad-templates - 9.0.9
Ebuild name:

sci-electronics/kicad-templates-9.0.9

Description

Electronic Schematic and PCB design tools project templates

Added to portage

2026-05-14

lanes - 4.0.0
Ebuild name:

dev-lua/lanes-4.0.0

Description

Lightweight, native, lazy evaluating multithreading library

Added to portage

2026-05-14

langkit - 26.0.0-r1
Ebuild name:

dev-ada/langkit-26.0.0-r1

Description

A Python framework to generate language parsers

Added to portage

2026-05-14

lego - 5.0.3
Ebuild name:

app-crypt/lego-5.0.3

Description

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

Added to portage

2026-05-14

level-zero - 1.28.6
Ebuild name:

dev-libs/level-zero-1.28.6

Description

oneAPI Level Zero headers, loader and validation layer

Added to portage

2026-05-14

libburn - 1.5.8-r2
Ebuild name:

dev-libs/libburn-1.5.8-r2

Description

Open-source library for reading, mastering and writing optical discs

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

libisoburn - 1.5.8-r2
Ebuild name:

dev-libs/libisoburn-1.5.8-r2

Description

Creation/expansion of ISO-9660 filesystems on CD/DVD media supported b

Added to portage

2026-05-14

libisofs - 1.5.8_p1-r1
Ebuild name:

dev-libs/libisofs-1.5.8_p1-r1

Description

Open-source library for reading, mastering and writing optical discs

Added to portage

2026-05-14

linode-metadata - 0.3.5
Ebuild name:

dev-python/linode-metadata-0.3.5

Description

Python bindings for the Linode Metadata Service

Added to portage

2026-05-14

matplotlib - 3.11.0_rc2
Ebuild name:

dev-python/matplotlib-3.11.0_rc2

Description

Pure python plotting library with matlab like syntax

Added to portage

2026-05-14

mattermost-desktop-bin - 5.13.6
Ebuild name:

net-im/mattermost-desktop-bin-5.13.6

Description

Mattermost Desktop application

Added to portage

2026-05-14

mdit-py-plugins - 0.6.1
Ebuild name:

dev-python/mdit-py-plugins-0.6.1

Description

Collection of plugins for markdown-it-py

Added to portage

2026-05-14

metee - 6.2.3
Ebuild name:

dev-libs/metee-6.2.3

Description

Cross-platform access library for Intel CSME HECI interface

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

mgorny-dev-scripts - 71
Ebuild name:

app-portage/mgorny-dev-scripts-71

Description

Handy scripts for ebuild development and more

Added to portage

2026-05-14

mongodb_exporter - 0.51.0
Ebuild name:

app-metrics/mongodb_exporter-0.51.0

Description

Prometheus exporter for MongoDB

Added to portage

2026-05-14

myst-parser - 5.1.0
Ebuild name:

dev-python/myst-parser-5.1.0

Description

Extended commonmark compliant parser, with bridges to Sphinx

Added to portage

2026-05-14

navi2ch - 1.8.4-r2
Ebuild name:

app-emacs/navi2ch-1.8.4-r2

Description

A navigator for the Japanese textboard 2ch

Added to portage

2026-05-14

nerd-icons - 0.1.0
Ebuild name:

app-emacs/nerd-icons-0.1.0

Description

Emacs Nerd Font Icons Library

Added to portage

2026-05-14

nginx - 1.30.1
Ebuild name:

www-servers/nginx-1.30.1

Description

Added to portage

2026-05-14

nginx-mode - 1.1.10
Ebuild name:

app-emacs/nginx-mode-1.1.10

Description

Emacs editing mode for Nginx config files

Added to portage

2026-05-14

nim-mode - 0.4.2_p20231101
Ebuild name:

app-emacs/nim-mode-0.4.2_p20231101

Description

Emacs major mode for the Nim programming language support

Added to portage

2026-05-14

ninja-mode - 1.11.1-r2
Ebuild name:

app-emacs/ninja-mode-1.11.1-r2

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-05-14

ninja-mode - 1.12.0
Ebuild name:

app-emacs/ninja-mode-1.12.0

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-05-14

ninja-mode - 1.12.1
Ebuild name:

app-emacs/ninja-mode-1.12.1

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-05-14

nix-mode - 1.5.0
Ebuild name:

app-emacs/nix-mode-1.5.0

Description

GNU Emacs major mode for editing Nix expressions

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

opencl-clang - 16.0.11
Ebuild name:

dev-libs/opencl-clang-16.0.11

Description

OpenCL-oriented thin wrapper library around clang

Added to portage

2026-05-14

opencl-clang - 17.0.6
Ebuild name:

dev-libs/opencl-clang-17.0.6

Description

OpenCL-oriented thin wrapper library around clang

Added to portage

2026-05-14

openrct2 - 0.5.0
Ebuild name:

games-simulation/openrct2-0.5.0

Description

An open source re-implementation of Chris Sawyer's RollerCoaster Ty

Added to portage

2026-05-14

pandora_box - 0.21.0
Ebuild name:

sys-apps/pandora_box-0.21.0

Description

Syd's log inspector & profile writer

Added to portage

2026-05-14

plasma-wayland-protocols - 1.21.0
Ebuild name:

dev-libs/plasma-wayland-protocols-1.21.0

Description

Plasma Specific Protocols for Wayland

Added to portage

2026-05-14

postgres_exporter - 0.19.1
Ebuild name:

app-metrics/postgres_exporter-0.19.1

Description

PostgreSQL stats exporter for Prometheus

Added to portage

2026-05-14

postgresql - 14.23
Ebuild name:

dev-db/postgresql-14.23

Description

PostgreSQL RDBMS

Added to portage

2026-05-14

postgresql - 15.18
Ebuild name:

dev-db/postgresql-15.18

Description

PostgreSQL RDBMS

Added to portage

2026-05-14

postgresql - 16.14
Ebuild name:

dev-db/postgresql-16.14

Description

PostgreSQL RDBMS

Added to portage

2026-05-14

postgresql - 17.10
Ebuild name:

dev-db/postgresql-17.10

Description

PostgreSQL RDBMS

Added to portage

2026-05-14

postgresql - 18.4
Ebuild name:

dev-db/postgresql-18.4

Description

PostgreSQL RDBMS

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

pymdown-extensions - 10.21.3
Ebuild name:

dev-python/pymdown-extensions-10.21.3

Description

Extensions for Python Markdown

Added to portage

2026-05-14

pytest-rerunfailures - 16.2
Ebuild name:

dev-python/pytest-rerunfailures-16.2

Description

pytest plugin to re-run tests to eliminate flaky failures

Added to portage

2026-05-14

python-neutronclient - 12.0.0
Ebuild name:

dev-python/python-neutronclient-12.0.0

Description

A client for the OpenStack Quantum API

Added to portage

2026-05-14

python-novaclient - 18.13.0
Ebuild name:

dev-python/python-novaclient-18.13.0

Description

A client for the OpenStack Nova API

Added to portage

2026-05-14

qemu-guest-agent - 10.2.2
Ebuild name:

app-emulation/qemu-guest-agent-10.2.2

Description

QEMU Guest Agent (qemu-ga) for use when running inside a VM

Added to portage

2026-05-14

qt-creator - 19.0.2
Ebuild name:

dev-qt/qt-creator-19.0.2

Description

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

Added to portage

2026-05-14

quickjs-ng - 0.14.0
Ebuild name:

dev-libs/quickjs-ng-0.14.0

Description

QuickJS, the Next Generation a mighty JavaScript engine

Added to portage

2026-05-14

rar - 7.22
Ebuild name:

app-arch/rar-7.22

Description

RAR compressor/uncompressor

Added to portage

2026-05-14

requests - 2.34.1
Ebuild name:

dev-python/requests-2.34.1

Description

HTTP library for human beings

Added to portage

2026-05-14

sen - 0.8.1
Ebuild name:

app-containers/sen-0.8.1

Description

Terminal User Interface for docker engine

Added to portage

2026-05-14

spf-engine - 3.1.0-r1
Ebuild name:

mail-filter/spf-engine-3.1.0-r1

Description

Policy daemon for Postfix SPF verification

Added to portage

2026-05-14

spirv-llvm-translator - 16.0.24
Ebuild name:

dev-util/spirv-llvm-translator-16.0.24

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-05-14

spirv-llvm-translator - 17.0.23
Ebuild name:

dev-util/spirv-llvm-translator-17.0.23

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-05-14

spirv-llvm-translator - 18.1.23
Ebuild name:

dev-util/spirv-llvm-translator-18.1.23

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-05-14

spirv-llvm-translator - 19.1.18
Ebuild name:

dev-util/spirv-llvm-translator-19.1.18

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-05-14

spirv-llvm-translator - 20.1.13
Ebuild name:

dev-util/spirv-llvm-translator-20.1.13

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-05-14

spirv-llvm-translator - 21.1.7
Ebuild name:

dev-util/spirv-llvm-translator-21.1.7

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-05-14

spirv-llvm-translator - 22.1.2
Ebuild name:

dev-util/spirv-llvm-translator-22.1.2

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-05-14

sqlglot - 30.8.0
Ebuild name:

dev-python/sqlglot-30.8.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2026-05-14

stress-ng - 0.21.01
Ebuild name:

app-benchmarks/stress-ng-0.21.01

Description

Stress test for a computer system with various selectable ways

Added to portage

2026-05-14

syd - 3.53.0
Ebuild name:

sys-apps/syd-3.53.0

Description

seccomp and landlock based application sandbox with support for namespaces

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

vanilla-sources - 6.12.88
Ebuild name:

sys-kernel/vanilla-sources-6.12.88

Description

Full sources for the Linux kernel

Added to portage

2026-05-14

vanilla-sources - 6.18.30
Ebuild name:

sys-kernel/vanilla-sources-6.18.30

Description

Full sources for the Linux kernel

Added to portage

2026-05-14

vanilla-sources - 7.0.7
Ebuild name:

sys-kernel/vanilla-sources-7.0.7

Description

Full sources for the Linux kernel

Added to portage

2026-05-14

virtualenv - 21.3.3
Ebuild name:

dev-python/virtualenv-21.3.3

Description

Virtual Python Environment builder

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

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