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:

85522

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.3 (57 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-06-03
Cpanel-JSON-XS - 4.410.0
Ebuild name:

dev-perl/Cpanel-JSON-XS-4.410.0

Description

cPanel fork of JSON fast and correct serializing

Added to portage

2026-06-03

MIME-tools - 5.517.0
Ebuild name:

dev-perl/MIME-tools-5.517.0

Description

A Perl module for parsing and creating MIME entities

Added to portage

2026-06-03

Sereal-Decoder - 5.6.0
Ebuild name:

dev-perl/Sereal-Decoder-5.6.0

Description

Fast, compact, powerful binary deserialization

Added to portage

2026-06-03

Sereal-Encoder - 5.6.0
Ebuild name:

dev-perl/Sereal-Encoder-5.6.0

Description

Fast, compact, powerful binary serialization

Added to portage

2026-06-03

Text-CSV_XS - 1.620.0
Ebuild name:

dev-perl/Text-CSV_XS-1.620.0

Description

Comma-separated values manipulation routines

Added to portage

2026-06-03

fontconfig - 2.18.1
Ebuild name:

media-libs/fontconfig-2.18.1

Description

A library for configuring and customizing font access

Added to portage

2026-06-03

freeipmi - 1.6.18
Ebuild name:

sys-libs/freeipmi-1.6.18

Description

Provides Remote-Console and System Management Software as per IPMI v1.5/2.

Added to portage

2026-06-03

indilib - 2.2.2
Ebuild name:

sci-libs/indilib-2.2.2

Description

INDI Astronomical Control Protocol library

Added to portage

2026-06-03

krita - 6.0.2.1
Ebuild name:

media-gfx/krita-6.0.2.1

Description

Free digital painting application. Digital Painting, Creative Freedom

Added to portage

2026-06-03

kstars - 3.8.3
Ebuild name:

sci-astronomy/kstars-3.8.3

Description

Desktop Planetarium

Added to portage

2026-06-03

libdrm - 2.4.134
Ebuild name:

x11-libs/libdrm-2.4.134

Description

X.Org libdrm library

Added to portage

2026-06-03

libva-intel-media-driver - 26.2.1
Ebuild name:

media-libs/libva-intel-media-driver-26.2.1

Description

Intel Media Driver for VA-API (iHD)

Added to portage

2026-06-03

libxkbcommon - 1.13.2
Ebuild name:

x11-libs/libxkbcommon-1.13.2

Description

Keymap handling library for toolkits and window systems

Added to portage

2026-06-03

mit-krb5 - 1.22.2-r1
Ebuild name:

app-crypt/mit-krb5-1.22.2-r1

Description

MIT Kerberos V

Added to portage

2026-06-03

qrupdate - 1.1.5
Ebuild name:

sci-libs/qrupdate-1.1.5

Description

Library for updating of QR and Cholesky decompositions

Added to portage

2026-06-03

radicale - 3.7.4
Ebuild name:

www-apps/radicale-3.7.4

Description

A simple CalDAV calendar server

Added to portage

2026-06-03

seedfiles - 1.5.1
Ebuild name:

sys-apps/seedfiles-1.5.1

Description

Portable drop-in reimplementation of systemd-tmpfiles

Added to portage

2026-06-03

spectre-meltdown-checker - 26.36.0602723
Ebuild name:

app-admin/spectre-meltdown-checker-26.36.0602723

Description

Spectre & Meltdown vulnerability/mitigation ch

Added to portage

2026-06-03

sysprof - 50.0
Ebuild name:

dev-util/sysprof-50.0

Description

System-wide Linux Profiler

Added to portage

2026-06-03

sysprof-capture - 50.0
Ebuild name:

dev-util/sysprof-capture-50.0

Description

Static library for sysprof capture data generation

Added to portage

2026-06-03

sysprof-common - 50.0
Ebuild name:

dev-util/sysprof-common-50.0

Description

Static library for sysprof capture data generation

Added to portage

2026-06-03

xlsclients - 1.1.6
Ebuild name:

x11-apps/xlsclients-1.1.6

Description

X.Org xlsclients application

Added to portage

2026-06-03

xorg-server - 21.1.23
Ebuild name:

x11-base/xorg-server-21.1.23

Description

X.Org X servers

Added to portage

2026-06-03

xwayland - 24.1.12
Ebuild name:

x11-base/xwayland-24.1.12

Description

Standalone X server running under Wayland

Added to portage

2026-06-03

2026-06-02
aiohttp - 3.14.0
Ebuild name:

dev-python/aiohttp-3.14.0

Description

HTTP client/server for asyncio

Added to portage

2026-06-02

alsa-lib - 1.2.16
Ebuild name:

media-libs/alsa-lib-1.2.16

Description

Advanced Linux Sound Architecture Library

Added to portage

2026-06-02

alsa-ucm-conf - 1.2.16
Ebuild name:

media-libs/alsa-ucm-conf-1.2.16

Description

ALSA ucm configuration files

Added to portage

2026-06-02

alsa-utils - 1.2.16
Ebuild name:

media-sound/alsa-utils-1.2.16

Description

Advanced Linux Sound Architecture Utils (alsactl, alsamixer, etc.)

Added to portage

2026-06-02

awscli - 1.45.19
Ebuild name:

app-admin/awscli-1.45.19

Description

Universal Command Line Environment for AWS

Added to portage

2026-06-02

borgmatic - 2.1.6
Ebuild name:

app-backup/borgmatic-2.1.6

Description

Automatically create, prune and verify backups with borgbackup

Added to portage

2026-06-02

boto3 - 1.43.19
Ebuild name:

dev-python/boto3-1.43.19

Description

The AWS SDK for Python

Added to portage

2026-06-02

botocore - 1.43.19
Ebuild name:

dev-python/botocore-1.43.19

Description

Low-level, data-driven core of boto 3

Added to portage

2026-06-02

bpftrace - 0.26.1
Ebuild name:

dev-debug/bpftrace-0.26.1

Description

High-level tracing language for eBPF

Added to portage

2026-06-02

clang - 22.1.7
Ebuild name:

dev-python/clang-22.1.7

Description

Python bindings for llvm-core/clang

Added to portage

2026-06-02

clang - 22.1.7
Ebuild name:

llvm-core/clang-22.1.7

Description

C language family frontend for LLVM

Added to portage

2026-06-02

clang-common - 22.1.7
Ebuild name:

llvm-core/clang-common-22.1.7

Description

Common files shared between multiple slots of clang

Added to portage

2026-06-02

claude-code - 2.1.159
Ebuild name:

dev-util/claude-code-2.1.159

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-06-02

cloudflared - 2026.5.2
Ebuild name:

net-vpn/cloudflared-2026.5.2

Description

A command-line client and tunneling daemon for Cloudflare Tunnel

Added to portage

2026-06-02

compiler-rt - 22.1.7
Ebuild name:

llvm-runtimes/compiler-rt-22.1.7

Description

Compiler runtime library for clang (built-in part)

Added to portage

2026-06-02

compiler-rt-sanitizers - 22.1.7
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-22.1.7

Description

Compiler runtime libraries for clang (sanitizers & xray

Added to portage

2026-06-02

dist-kernel - 5.10.258
Ebuild name:

virtual/dist-kernel-5.10.258

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-06-02

dist-kernel - 5.15.209
Ebuild name:

virtual/dist-kernel-5.15.209

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-06-02

dist-kernel - 6.1.175
Ebuild name:

virtual/dist-kernel-6.1.175

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-06-02

dist-kernel - 6.12.92
Ebuild name:

virtual/dist-kernel-6.12.92

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-06-02

dist-kernel - 6.18.34
Ebuild name:

virtual/dist-kernel-6.18.34

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-06-02

dist-kernel - 6.6.142
Ebuild name:

virtual/dist-kernel-6.6.142

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-06-02

dist-kernel - 7.0.11
Ebuild name:

virtual/dist-kernel-7.0.11

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-06-02

docker-compose - 5.0.1-r2
Ebuild name:

app-containers/docker-compose-5.0.1-r2

Description

Multi-container orchestration for Docker

Added to portage

2026-06-02

docker-compose - 5.1.4-r1
Ebuild name:

app-containers/docker-compose-5.1.4-r1

Description

Multi-container orchestration for Docker

Added to portage

2026-06-02

element - 1.12.20
Ebuild name:

www-apps/element-1.12.20

Description

A glossy Matrix collaboration client for the web

Added to portage

2026-06-02

elogind - 255.26
Ebuild name:

sys-auth/elogind-255.26

Description

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

Added to portage

2026-06-02

elogind - 257.14-r1
Ebuild name:

sys-auth/elogind-257.14-r1

Description

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

Added to portage

2026-06-02

elogind - 257.15
Ebuild name:

sys-auth/elogind-257.15

Description

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

Added to portage

2026-06-02

faker - 40.20.0
Ebuild name:

dev-python/faker-40.20.0

Description

A Python package that generates fake data for you

Added to portage

2026-06-02

fakeredis - 2.36.0
Ebuild name:

dev-python/fakeredis-2.36.0

Description

Fake implementation of redis API for testing purposes

Added to portage

2026-06-02

flang - 22.1.7
Ebuild name:

llvm-core/flang-22.1.7

Description

LLVM's Fortran frontend

Added to portage

2026-06-02

flang-rt - 22.1.7
Ebuild name:

llvm-runtimes/flang-rt-22.1.7

Description

LLVM's Fortran runtime

Added to portage

2026-06-02

gentoo-kernel - 5.10.258
Ebuild name:

sys-kernel/gentoo-kernel-5.10.258

Description

Linux kernel built with Gentoo patches

Added to portage

2026-06-02

gentoo-kernel - 5.15.209
Ebuild name:

sys-kernel/gentoo-kernel-5.15.209

Description

Linux kernel built with Gentoo patches

Added to portage

2026-06-02

gentoo-kernel - 6.1.175
Ebuild name:

sys-kernel/gentoo-kernel-6.1.175

Description

Linux kernel built with Gentoo patches

Added to portage

2026-06-02

gentoo-kernel - 6.12.92
Ebuild name:

sys-kernel/gentoo-kernel-6.12.92

Description

Linux kernel built with Gentoo patches

Added to portage

2026-06-02

gentoo-kernel - 6.18.34
Ebuild name:

sys-kernel/gentoo-kernel-6.18.34

Description

Linux kernel built with Gentoo patches

Added to portage

2026-06-02

gentoo-kernel - 6.6.142
Ebuild name:

sys-kernel/gentoo-kernel-6.6.142

Description

Linux kernel built with Gentoo patches

Added to portage

2026-06-02

gentoo-kernel - 7.0.11
Ebuild name:

sys-kernel/gentoo-kernel-7.0.11

Description

Linux kernel built with Gentoo patches

Added to portage

2026-06-02

gentoo-kernel-bin - 5.10.258
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.258

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-06-02

gentoo-kernel-bin - 5.15.209
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.209

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-06-02

gentoo-kernel-bin - 6.1.175
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.175

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-06-02

gentoo-kernel-bin - 6.12.92
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.92

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-06-02

gentoo-kernel-bin - 6.18.34
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.34

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-06-02

gentoo-kernel-bin - 6.6.142
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.142

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-06-02

gentoo-kernel-bin - 7.0.11
Ebuild name:

sys-kernel/gentoo-kernel-bin-7.0.11

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-06-02

gentoo-kernel-modprep - 7.0.11
Ebuild name:

sys-kernel/gentoo-kernel-modprep-7.0.11

Description

Minimal subset of gentoo-kernel-bin for building modules, f

Added to portage

2026-06-02

gentoo-sources - 5.10.258
Ebuild name:

sys-kernel/gentoo-sources-5.10.258

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-06-02

gentoo-sources - 5.15.209
Ebuild name:

sys-kernel/gentoo-sources-5.15.209

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-06-02

gentoo-sources - 6.1.175
Ebuild name:

sys-kernel/gentoo-sources-6.1.175

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-06-02

gentoo-sources - 6.12.92
Ebuild name:

sys-kernel/gentoo-sources-6.12.92

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-06-02

gentoo-sources - 6.18.34
Ebuild name:

sys-kernel/gentoo-sources-6.18.34

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-06-02

gentoo-sources - 6.6.142
Ebuild name:

sys-kernel/gentoo-sources-6.6.142

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-06-02

gentoo-sources - 7.0.11
Ebuild name:

sys-kernel/gentoo-sources-7.0.11

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-06-02

gr-paint - 0.0_p20250824-r1
Ebuild name:

net-wireless/gr-paint-0.0_p20250824-r1

Description

Paints monochrome images into the waterfall of a receiver

Added to portage

2026-06-02

grpcio - 1.81.0
Ebuild name:

dev-python/grpcio-1.81.0

Description

HTTP/2-based RPC framework

Added to portage

2026-06-02

grpcio-status - 1.81.0
Ebuild name:

dev-python/grpcio-status-1.81.0

Description

Reference package for GRPC Python status proto mapping

Added to portage

2026-06-02

hatchling - 1.30.1
Ebuild name:

dev-python/hatchling-1.30.1

Description

Modern, extensible Python build backend

Added to portage

2026-06-02

libclc - 22.1.7
Ebuild name:

llvm-core/libclc-22.1.7

Description

OpenCL C library

Added to portage

2026-06-02

libcxx - 22.1.7
Ebuild name:

llvm-runtimes/libcxx-22.1.7

Description

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

Added to portage

2026-06-02

libcxxabi - 22.1.7
Ebuild name:

llvm-runtimes/libcxxabi-22.1.7

Description

Low level support for a standard C++ library

Added to portage

2026-06-02

libgcc - 22.1.7
Ebuild name:

llvm-runtimes/libgcc-22.1.7

Description

Compiler runtime library for clang, compatible with libgcc_s

Added to portage

2026-06-02

liblastfm - 1.1.0_pre20250726
Ebuild name:

media-libs/liblastfm-1.1.0_pre20250726

Description

Collection of libraries to integrate Last.fm services

Added to portage

2026-06-02

libunwind - 22.1.7
Ebuild name:

llvm-runtimes/libunwind-22.1.7

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-06-02

lidarr-bin - 3.1.3.4968
Ebuild name:

www-apps/lidarr-bin-3.1.3.4968

Description

Looks and smells like Sonarr but made for music

Added to portage

2026-06-02

linux-docs - 6.18.33
Ebuild name:

sys-kernel/linux-docs-6.18.33

Description

Developer documentation generated from the Linux kernel

Added to portage

2026-06-02

lit - 22.1.7
Ebuild name:

dev-python/lit-22.1.7

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-06-02

lld - 22.1.7
Ebuild name:

llvm-core/lld-22.1.7

Description

The LLVM linker (link editor)

Added to portage

2026-06-02

lldb - 22.1.7
Ebuild name:

llvm-core/lldb-22.1.7

Description

The LLVM debugger

Added to portage

2026-06-02

llvm - 22.1.7
Ebuild name:

dev-ml/llvm-22.1.7

Description

OCaml bindings for LLVM

Added to portage

2026-06-02

llvm - 22.1.7
Ebuild name:

llvm-core/llvm-22.1.7

Description

Low Level Virtual Machine

Added to portage

2026-06-02

llvm-common - 22.1.7
Ebuild name:

llvm-core/llvm-common-22.1.7

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-06-02

lxqt-panel - 2.4.1
Ebuild name:

lxqt-base/lxqt-panel-2.4.1

Description

LXQt desktop panel and plugins

Added to portage

2026-06-02

mariadb - 11.8.3-r5
Ebuild name:

dev-db/mariadb-11.8.3-r5

Description

An enhanced, drop-in replacement for MySQL

Added to portage

2026-06-02

mariadb - 11.8.5-r2
Ebuild name:

dev-db/mariadb-11.8.5-r2

Description

An enhanced, drop-in replacement for MySQL

Added to portage

2026-06-02

mariadb - 11.8.6
Ebuild name:

dev-db/mariadb-11.8.6

Description

An enhanced, drop-in replacement for MySQL

Added to portage

2026-06-02

mariadb - 12.0.2-r3
Ebuild name:

dev-db/mariadb-12.0.2-r3

Description

An enhanced, drop-in replacement for MySQL

Added to portage

2026-06-02

mgorny-dev-scripts - 74
Ebuild name:

app-portage/mgorny-dev-scripts-74

Description

Handy scripts for ebuild development and more

Added to portage

2026-06-02

mgorny-dev-scripts - 76
Ebuild name:

app-portage/mgorny-dev-scripts-76

Description

Handy scripts for ebuild development and more

Added to portage

2026-06-02

mlir - 22.1.7
Ebuild name:

llvm-core/mlir-22.1.7

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-06-02

moccur-edit - 2.16
Ebuild name:

app-emacs/moccur-edit-2.16

Description

An improved interface to color-moccur for editing

Added to portage

2026-06-02

mod_h2 - 2.0.42
Ebuild name:

www-apache/mod_h2-2.0.42

Description

HTTP/2 module for Apache

Added to portage

2026-06-02

nextcloud - 32.0.10
Ebuild name:

www-apps/nextcloud-32.0.10

Description

Personal cloud that runs on your own server

Added to portage

2026-06-02

nextcloud - 33.0.4
Ebuild name:

www-apps/nextcloud-33.0.4

Description

Personal cloud that runs on your own server

Added to portage

2026-06-02

nghttp3 - 1.16.0
Ebuild name:

net-libs/nghttp3-1.16.0

Description

HTTP/3 library written in C

Added to portage

2026-06-02

ngtcp2 - 1.23.0
Ebuild name:

net-libs/ngtcp2-1.23.0

Description

Implementation of the IETF QUIC Protocol

Added to portage

2026-06-02

offload - 22.1.7
Ebuild name:

llvm-runtimes/offload-22.1.7

Description

OpenMP offloading support

Added to portage

2026-06-02

openmp - 22.1.7
Ebuild name:

llvm-runtimes/openmp-22.1.7

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2026-06-02

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

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

Description

OpenMP target library for amdgcn devices

Added to portage

2026-06-02

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

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

Description

OpenMP target library for nvptx64 devices

Added to portage

2026-06-02

polly - 22.1.7
Ebuild name:

llvm-core/polly-22.1.7

Description

Polyhedral optimizations for LLVM

Added to portage

2026-06-02

postsrsd - 2.0.11-r6
Ebuild name:

mail-filter/postsrsd-2.0.11-r6

Description

Postfix Sender Rewriting Scheme daemon

Added to portage

2026-06-02

prowlarr-bin - 2.4.0.5391
Ebuild name:

www-apps/prowlarr-bin-2.4.0.5391

Description

An indexer manager/proxy to integrate with your various PVR apps

Added to portage

2026-06-02

proxytunnel - 1.13.0
Ebuild name:

net-misc/proxytunnel-1.13.0

Description

Connect stdin and stdout to a server via an HTTPS proxy

Added to portage

2026-06-02

pypy - 3.11.7.3.20_p2-r1
Ebuild name:

dev-lang/pypy-3.11.7.3.20_p2-r1

Description

A fast, compliant alternative implementation of the Python () langu

Added to portage

2026-06-02

pypy - 3.11.7.3.22-r1
Ebuild name:

dev-lang/pypy-3.11.7.3.22-r1

Description

A fast, compliant alternative implementation of the Python () language

Added to portage

2026-06-02

pypy - 3.11.7.3.23-r1
Ebuild name:

dev-lang/pypy-3.11.7.3.23-r1

Description

A fast, compliant alternative implementation of the Python () language

Added to portage

2026-06-02

pyrate-limiter - 4.2.0
Ebuild name:

dev-python/pyrate-limiter-4.2.0

Description

Python Rate-Limiter using Leaky-Bucket Algorimth Family

Added to portage

2026-06-02

python - 0.3.13.13_p1-r1
Ebuild name:

dev-lang/python-0.3.13.13_p1-r1

Description

Freethreading (no-GIL) version of Python programming language

Added to portage

2026-06-02

python - 3.11.15-r1
Ebuild name:

dev-lang/python-3.11.15-r1

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2026-06-02

quiche - 0.29.1
Ebuild name:

net-libs/quiche-0.29.1

Description

Implementation of the QUIC transport protocol and HTTP/3

Added to portage

2026-06-02

radarr-bin - 6.2.1.10437
Ebuild name:

www-apps/radarr-bin-6.2.1.10437

Description

A fork of Sonarr to work with movies a la Couchpotato

Added to portage

2026-06-02

rdma-core - 57.0-r1
Ebuild name:

sys-cluster/rdma-core-57.0-r1

Description

Userspace components for the Linux Kernel's drivers/infiniband subsys

Added to portage

2026-06-02

rdma-core - 59.0-r1
Ebuild name:

sys-cluster/rdma-core-59.0-r1

Description

Userspace components for the Linux Kernel's drivers/infiniband subsys

Added to portage

2026-06-02

rdma-core - 63.0
Ebuild name:

sys-cluster/rdma-core-63.0

Description

Userspace components for the Linux Kernel's drivers/infiniband subsystem

Added to portage

2026-06-02

stalonetray - 9999
Ebuild name:

x11-misc/stalonetray-9999

Description

System tray utility including support for KDE system tray icons

Added to portage

2026-06-02

syrupy - 5.3.1
Ebuild name:

dev-python/syrupy-5.3.1

Description

The sweeter pytest snapshot plugin

Added to portage

2026-06-02

tibs - 0.9.2
Ebuild name:

dev-python/tibs-0.9.2

Description

A sleek Python library for your binary data

Added to portage

2026-06-02

tor - 0.4.9.9
Ebuild name:

net-vpn/tor-0.4.9.9

Description

Anonymizing overlay network for TCP

Added to portage

2026-06-02

translate-toolkit - 3.19.11
Ebuild name:

dev-python/translate-toolkit-3.19.11

Description

Toolkit to convert between many translation formats

Added to portage

2026-06-02

trove-classifiers - 2026.6.1.19
Ebuild name:

dev-python/trove-classifiers-2026.6.1.19

Description

Canonical source for classifiers on PyPI (pypi.org)

Added to portage

2026-06-02

txtorcon - 26.6.0
Ebuild name:

dev-python/txtorcon-26.6.0

Description

Twisted-based Tor controller client, with state-tracking abstractions

Added to portage

2026-06-02

typer - 0.26.5
Ebuild name:

dev-python/typer-0.26.5

Description

Build great CLIs. Easy to code. Based on Python type hints

Added to portage

2026-06-02

urh - 2.10.0-r1
Ebuild name:

net-wireless/urh-2.10.0-r1

Description

Universal Radio Hacker investigate wireless protocols like a boss

Added to portage

2026-06-02

uv - 0.11.18
Ebuild name:

dev-python/uv-0.11.18

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-06-02

uv-build - 0.11.18
Ebuild name:

dev-python/uv-build-0.11.18

Description

PEP517 uv build backend

Added to portage

2026-06-02

valkey - 6.1.1
Ebuild name:

dev-python/valkey-6.1.1

Description

Python client for Valkey forked from redis-py

Added to portage

2026-06-02

vanilla-kernel - 5.10.258
Ebuild name:

sys-kernel/vanilla-kernel-5.10.258

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-06-02

vanilla-kernel - 5.15.209
Ebuild name:

sys-kernel/vanilla-kernel-5.15.209

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-06-02

vanilla-kernel - 6.1.175
Ebuild name:

sys-kernel/vanilla-kernel-6.1.175

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-06-02

vanilla-kernel - 6.12.92
Ebuild name:

sys-kernel/vanilla-kernel-6.12.92

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-06-02

vanilla-kernel - 6.18.34
Ebuild name:

sys-kernel/vanilla-kernel-6.18.34

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-06-02

vanilla-kernel - 6.6.142
Ebuild name:

sys-kernel/vanilla-kernel-6.6.142

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-06-02

vanilla-kernel - 7.0.11
Ebuild name:

sys-kernel/vanilla-kernel-7.0.11

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-06-02

vanilla-sources - 5.10.258
Ebuild name:

sys-kernel/vanilla-sources-5.10.258

Description

Full sources for the Linux kernel

Added to portage

2026-06-02

vanilla-sources - 5.15.209
Ebuild name:

sys-kernel/vanilla-sources-5.15.209

Description

Full sources for the Linux kernel

Added to portage

2026-06-02

vanilla-sources - 6.1.175
Ebuild name:

sys-kernel/vanilla-sources-6.1.175

Description

Full sources for the Linux kernel

Added to portage

2026-06-02

vanilla-sources - 6.12.92
Ebuild name:

sys-kernel/vanilla-sources-6.12.92

Description

Full sources for the Linux kernel

Added to portage

2026-06-02

vanilla-sources - 6.18.34
Ebuild name:

sys-kernel/vanilla-sources-6.18.34

Description

Full sources for the Linux kernel

Added to portage

2026-06-02

vanilla-sources - 6.6.142
Ebuild name:

sys-kernel/vanilla-sources-6.6.142

Description

Full sources for the Linux kernel

Added to portage

2026-06-02

vanilla-sources - 7.0.11
Ebuild name:

sys-kernel/vanilla-sources-7.0.11

Description

Full sources for the Linux kernel

Added to portage

2026-06-02

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