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:

84328

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 (33 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-04-10
afflib - 3.7.22
Ebuild name:

app-forensics/afflib-3.7.22

Description

Library that implements the AFF image standard

Added to portage

2026-04-10

awscli - 1.44.77
Ebuild name:

app-admin/awscli-1.44.77

Description

Universal Command Line Environment for AWS

Added to portage

2026-04-10

ayatana-ido - 0.10.4-r1
Ebuild name:

dev-libs/ayatana-ido-0.10.4-r1

Description

Ayatana Application Indicators (Shared Library)

Added to portage

2026-04-10

babl - 0.1.126
Ebuild name:

media-libs/babl-0.1.126

Description

A dynamic, any to any, pixel format conversion library

Added to portage

2026-04-10

boto3 - 1.42.87
Ebuild name:

dev-python/boto3-1.42.87

Description

The AWS SDK for Python

Added to portage

2026-04-10

botocore - 1.42.87
Ebuild name:

dev-python/botocore-1.42.87

Description

Low-level, data-driven core of boto 3

Added to portage

2026-04-10

capyt - 1.2.2
Ebuild name:

app-text/capyt-1.2.2

Description

A python3 CLI utility to interface with cpy.pt

Added to portage

2026-04-10

chromium - 147.0.7727.55
Ebuild name:

www-client/chromium-147.0.7727.55

Description

Open-source version of Google Chrome web browser

Added to portage

2026-04-10

delve - 1.26.1
Ebuild name:

dev-go/delve-1.26.1

Description

A source-level debugger for the Go programming language

Added to portage

2026-04-10

deno-bin - 2.7.12
Ebuild name:

dev-lang/deno-bin-2.7.12

Description

Modern runtime for JavaScript and TypeScript

Added to portage

2026-04-10

evisum - 1.2.2
Ebuild name:

sys-process/evisum-1.2.2

Description

System and process monitor written with EFL

Added to portage

2026-04-10

fakeredis - 2.35.0
Ebuild name:

dev-python/fakeredis-2.35.0

Description

Fake implementation of redis API for testing purposes

Added to portage

2026-04-10

gdl - 1.1.3
Ebuild name:

dev-lang/gdl-1.1.3

Description

GNU Data Language

Added to portage

2026-04-10

glib - 2.84.4-r5
Ebuild name:

dev-libs/glib-2.84.4-r5

Description

The GLib library of C routines

Added to portage

2026-04-10

glib - 2.86.5-r1
Ebuild name:

dev-libs/glib-2.86.5-r1

Description

The GLib library of C routines

Added to portage

2026-04-10

glib - 2.88.0-r1
Ebuild name:

dev-libs/glib-2.88.0-r1

Description

The GLib library of C routines

Added to portage

2026-04-10

google-api-core - 2.30.3
Ebuild name:

dev-python/google-api-core-2.30.3

Description

Core Library for Google Client Libraries

Added to portage

2026-04-10

google-auth - 2.49.2
Ebuild name:

dev-python/google-auth-2.49.2

Description

Google Authentication Library

Added to portage

2026-04-10

librt - 0.9.0
Ebuild name:

dev-python/librt-0.9.0

Description

Mypyc runtime library

Added to portage

2026-04-10

more-itertools - 11.0.2
Ebuild name:

dev-python/more-itertools-11.0.2

Description

More routines for operating on iterables, beyond itertools

Added to portage

2026-04-10

multi-term - 1.4-r1
Ebuild name:

app-emacs/multi-term-1.4-r1

Description

Manage multiple terminal buffers in Emacs

Added to portage

2026-04-10

multiple-cursors - 1.5.0
Ebuild name:

app-emacs/multiple-cursors-1.5.0

Description

Multiple cursors for Emacs

Added to portage

2026-04-10

multiple-cursors - 1.5.0
Ebuild name:

app-emacs/multiple-cursors-1.5.0

Description

Multiple cursors for Emacs

Added to portage

2026-04-10

plotly - 6.7.0
Ebuild name:

dev-python/plotly-6.7.0

Description

Browser-based graphing library for Python

Added to portage

2026-04-10

prometheus-client - 0.25.0
Ebuild name:

dev-python/prometheus-client-0.25.0

Description

Python client for the Prometheus monitoring system

Added to portage

2026-04-10

pyacoustid - 1.3.1
Ebuild name:

dev-python/pyacoustid-1.3.1

Description

Python bindings for Chromaprint and the AcoustID web service

Added to portage

2026-04-10

pysnmp - 7.1.23
Ebuild name:

dev-python/pysnmp-7.1.23

Description

Python SNMP library

Added to portage

2026-04-10

pytest-httpx - 0.36.2
Ebuild name:

dev-python/pytest-httpx-0.36.2

Description

Send responses to HTTPX using pytest

Added to portage

2026-04-10

python - 0.3.15.0_alpha8-r1
Ebuild name:

dev-lang/python-0.3.15.0_alpha8-r1

Description

Freethreading (no-GIL) version of Python programming language

Added to portage

2026-04-10

python - 3.15.0_alpha8-r1
Ebuild name:

dev-lang/python-3.15.0_alpha8-r1

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2026-04-10

pytools - 2026.1
Ebuild name:

dev-python/pytools-2026.1

Description

Collection of tools missing from the Python standard library

Added to portage

2026-04-10

raspberrypi-firmware - 1.20260408
Ebuild name:

sys-boot/raspberrypi-firmware-1.20260408

Description

Raspberry Pi (all versions) bootloader and GPU firmware

Added to portage

2026-04-10

raspberrypi-image - 6.12.75_p20260408
Ebuild name:

sys-kernel/raspberrypi-image-6.12.75_p20260408

Description

Raspberry Pi (all versions) kernel and modules

Added to portage

2026-04-10

raspberrypi-sources - 6.12.75_p20260408
Ebuild name:

sys-kernel/raspberrypi-sources-6.12.75_p20260408

Description

Raspberry Pi kernel sources

Added to portage

2026-04-10

restart-services - 1.6
Ebuild name:

app-admin/restart-services-1.6

Description

Tool to manage OpenRC and systemd services that need to be restarted

Added to portage

2026-04-10

selenium - 4.42.0
Ebuild name:

dev-python/selenium-4.42.0

Description

Python language binding for Selenium Remote Control

Added to portage

2026-04-10

selenium-manager - 4.42.0
Ebuild name:

dev-util/selenium-manager-4.42.0

Description

CLI tool that manages the browser/driver infrastructure required b

Added to portage

2026-04-10

smbus2 - 0.6.1
Ebuild name:

dev-python/smbus2-0.6.1

Description

A drop-in replacement for smbus-cffi/smbus-python in pure Python

Added to portage

2026-04-10

sphinx-autodoc-typehints - 3.10.0
Ebuild name:

dev-python/sphinx-autodoc-typehints-3.10.0

Description

Type hints support for the Sphinx autodoc extension

Added to portage

2026-04-10

spidermonkey - 140.9.1
Ebuild name:

dev-lang/spidermonkey-140.9.1

Description

Mozilla's JavaScript engine written in C and C++

Added to portage

2026-04-10

spotify - 1.2.86
Ebuild name:

media-sound/spotify-1.2.86

Description

Spotify is a social music platform

Added to portage

2026-04-10

tox - 4.52.1
Ebuild name:

dev-python/tox-4.52.1

Description

virtualenv-based automation of test activities

Added to portage

2026-04-10

translate-toolkit - 3.19.4
Ebuild name:

dev-python/translate-toolkit-3.19.4

Description

Toolkit to convert between many translation formats

Added to portage

2026-04-10

uv - 0.11.6
Ebuild name:

dev-python/uv-0.11.6

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-04-10

uv-build - 0.11.6
Ebuild name:

dev-python/uv-build-0.11.6

Description

PEP517 uv build backend

Added to portage

2026-04-10

virtualenv - 21.2.1
Ebuild name:

dev-python/virtualenv-21.2.1

Description

Virtual Python Environment builder

Added to portage

2026-04-10

wrapt - 2.2.0_rc2
Ebuild name:

dev-python/wrapt-2.2.0_rc2

Description

Module for decorators, wrappers and monkey patching

Added to portage

2026-04-10

2026-04-09
Sys-Virt - 12.2.0
Ebuild name:

dev-perl/Sys-Virt-12.2.0

Description

API for using the libvirt library from Perl

Added to portage

2026-04-09

aws-sam-translator - 1.109.0
Ebuild name:

dev-python/aws-sam-translator-1.109.0

Description

A library that transform SAM templates into AWS CloudFormatio

Added to portage

2026-04-09

awscli - 1.44.76
Ebuild name:

app-admin/awscli-1.44.76

Description

Universal Command Line Environment for AWS

Added to portage

2026-04-09

bitcoin-core - 31.0_rc4
Ebuild name:

net-p2p/bitcoin-core-31.0_rc4

Description

Reference implementation of the Bitcoin cryptocurrency

Added to portage

2026-04-09

bitwarden-desktop-bin - 2026.2.1
Ebuild name:

app-admin/bitwarden-desktop-bin-2026.2.1

Description

Bitwarden password manager desktop client

Added to portage

2026-04-09

boto3 - 1.42.86
Ebuild name:

dev-python/boto3-1.42.86

Description

The AWS SDK for Python

Added to portage

2026-04-09

botocore - 1.42.86
Ebuild name:

dev-python/botocore-1.42.86

Description

Low-level, data-driven core of boto 3

Added to portage

2026-04-09

certbot - 5.5.0
Ebuild name:

app-crypt/certbot-5.5.0

Description

Let's Encrypt client to automate deployment of X.509 certificates

Added to portage

2026-04-09

chemex - 2026.4.0
Ebuild name:

sci-chemistry/chemex-2026.4.0

Description

Program to fit chemical exchange induced shift and relaxation data

Added to portage

2026-04-09

chrome-binary-plugins - 147.0.7727.55
Ebuild name:

www-plugins/chrome-binary-plugins-147.0.7727.55

Description

Binary plugins from Google Chrome for use in Chromi

Added to portage

2026-04-09

chrome-binary-plugins - 148.0.7778.5_beta
Ebuild name:

www-plugins/chrome-binary-plugins-148.0.7778.5_beta

Description

Binary plugins from Google Chrome for use in Ch

Added to portage

2026-04-09

chromedriver-bin - 147.0.7727.55
Ebuild name:

www-apps/chromedriver-bin-147.0.7727.55

Description

WebDriver for Chrome

Added to portage

2026-04-09

claude-code - 2.1.96
Ebuild name:

dev-util/claude-code-2.1.96

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-04-09

cliff - 4.13.3
Ebuild name:

dev-python/cliff-4.13.3

Description

Command Line Interface Formulation Framework

Added to portage

2026-04-09

containerd - 2.2.2
Ebuild name:

app-containers/containerd-2.2.2

Description

A daemon to control runC

Added to portage

2026-04-09

cryptography - 46.0.7
Ebuild name:

dev-python/cryptography-46.0.7

Description

Library providing cryptographic recipes and primitives

Added to portage

2026-04-09

discord - 0.0.132
Ebuild name:

net-im/discord-0.0.132

Description

All-in-one voice and text chat for gamers

Added to portage

2026-04-09

dos2unix - 7.5.5
Ebuild name:

app-text/dos2unix-7.5.5

Description

Convert DOS or MAC text files to UNIX format or vice versa

Added to portage

2026-04-09

element-desktop-bin - 1.12.15
Ebuild name:

net-im/element-desktop-bin-1.12.15

Description

A glossy Matrix collaboration client for desktop (binary package

Added to portage

2026-04-09

eventmachine - 1.2.7-r5
Ebuild name:

dev-ruby/eventmachine-1.2.7-r5

Description

EventMachine is a fast, simple event-processing library for Ruby pro

Added to portage

2026-04-09

firefox - 140.9.1
Ebuild name:

www-client/firefox-140.9.1

Description

Firefox Web Browser

Added to portage

2026-04-09

firefox-bin - 140.9.1
Ebuild name:

www-client/firefox-bin-140.9.1

Description

Firefox Web Browser

Added to portage

2026-04-09

gelemental - 2.0.2-r1
Ebuild name:

sci-chemistry/gelemental-2.0.2-r1

Description

Periodic table viewer with detailed information on the chemical e

Added to portage

2026-04-09

git-cola - 4.18.2
Ebuild name:

dev-vcs/git-cola-4.18.2

Description

The highly caffeinated git GUI

Added to portage

2026-04-09

golangci-lint - 2.11.4
Ebuild name:

dev-go/golangci-lint-2.11.4

Description

Fast linters runner for Go

Added to portage

2026-04-09

google-api-python-client - 2.194.0
Ebuild name:

dev-python/google-api-python-client-2.194.0

Description

Google API Client for Python

Added to portage

2026-04-09

google-chrome - 147.0.7727.55
Ebuild name:

www-client/google-chrome-147.0.7727.55

Description

The web browser from Google

Added to portage

2026-04-09

google-chrome-beta - 148.0.7778.5
Ebuild name:

www-client/google-chrome-beta-148.0.7778.5

Description

The web browser from Google

Added to portage

2026-04-09

gpxsee - 16.1-r1
Ebuild name:

sci-geosciences/gpxsee-16.1-r1

Description

Viewer and analyzer that supports gpx, tcx, kml, fit, igc and nmea f

Added to portage

2026-04-09

greenlet - 3.4.0
Ebuild name:

dev-python/greenlet-3.4.0

Description

Lightweight in-process concurrent programming

Added to portage

2026-04-09

gtk-layer-shell - 0.10.1
Ebuild name:

gui-libs/gtk-layer-shell-0.10.1

Description

Library to create desktop components for Wayland using the Layer Sh

Added to portage

2026-04-09

hypothesis - 6.151.12
Ebuild name:

dev-python/hypothesis-6.151.12

Description

A library for property based testing

Added to portage

2026-04-09

ig - 0.51.0
Ebuild name:

app-admin/ig-0.51.0

Description

Tools and framework for data collection and system inspection using eBPF

Added to portage

2026-04-09

libmrss - 0.19.4
Ebuild name:

net-libs/libmrss-0.19.4

Description

A C-library for parsing and writing RSS 0.91/0.92/1.0/2.0 files or streams

Added to portage

2026-04-09

libnetfilter_queue - 1.0.5-r1
Ebuild name:

net-libs/libnetfilter_queue-1.0.5-r1

Description

API to packets that have been queued by the kernel packet filt

Added to portage

2026-04-09

libnxml - 0.18.5
Ebuild name:

net-libs/libnxml-0.18.5

Description

A C-library for parsing and writing XML 1.0/1.1 files or streams

Added to portage

2026-04-09

libpng - 1.6.57
Ebuild name:

media-libs/libpng-1.6.57

Description

Portable Network Graphics library

Added to portage

2026-04-09

libvirt - 12.2.0
Ebuild name:

app-emulation/libvirt-12.2.0

Description

C toolkit to manipulate virtual machines

Added to portage

2026-04-09

libvirt-python - 12.2.0
Ebuild name:

dev-python/libvirt-python-12.2.0

Description

libvirt Python bindings

Added to portage

2026-04-09

mattermost-desktop-bin - 6.1.1
Ebuild name:

net-im/mattermost-desktop-bin-6.1.1

Description

Mattermost Desktop application

Added to portage

2026-04-09

maturin - 1.13.1
Ebuild name:

dev-util/maturin-1.13.1

Description

Build and publish crates with pyo3, rust-cpython and cffi bindings

Added to portage

2026-04-09

microsoft-edge-beta - 147.0.3912.51
Ebuild name:

www-client/microsoft-edge-beta-147.0.3912.51

Description

The web browser from Microsoft

Added to portage

2026-04-09

microsoft-edge-beta - 147.0.3912.55
Ebuild name:

www-client/microsoft-edge-beta-147.0.3912.55

Description

The web browser from Microsoft

Added to portage

2026-04-09

microsoft-edge-dev - 148.0.3956.0
Ebuild name:

www-client/microsoft-edge-dev-148.0.3956.0

Description

The web browser from Microsoft

Added to portage

2026-04-09

mirrorselect - 2.6.3
Ebuild name:

app-portage/mirrorselect-2.6.3

Description

Tool to help select distfiles mirrors for Gentoo

Added to portage

2026-04-09

mlmmj - 1.8.0
Ebuild name:

net-mail/mlmmj-1.8.0

Description

Mailing list managing made joyful

Added to portage

2026-04-09

msgspec - 0.21.0
Ebuild name:

dev-python/msgspec-0.21.0

Description

Fast serialization and validation library, with builtin support for many

Added to portage

2026-04-09

muse - 0.9.2_p20161002-r1
Ebuild name:

media-sound/muse-0.9.2_p20161002-r1

Description

Multiple Streaming Engine, an icecast source streamer

Added to portage

2026-04-09

muse - 3.20.2
Ebuild name:

app-emacs/muse-3.20.2

Description

An authoring and publishing environment for Emacs

Added to portage

2026-04-09

nxml-libvirt-schemas - 12.2.0
Ebuild name:

app-emacs/nxml-libvirt-schemas-12.2.0

Description

Extension for nxml-mode with libvirt schemas

Added to portage

2026-04-09

nzbget - 26.1
Ebuild name:

net-nntp/nzbget-26.1

Description

A command-line based binary newsgrabber supporting .nzb files

Added to portage

2026-04-09

octave-kernel - 1.0.3
Ebuild name:

dev-python/octave-kernel-1.0.3

Description

Jupyter kernel for octave

Added to portage

2026-04-09

oidc-agent - 5.3.5
Ebuild name:

net-misc/oidc-agent-5.3.5

Description

Agent and tools for managing OpenID Connect tokens on the command line

Added to portage

2026-04-09

openpgp-keys-gentoo-developers - 20260406
Ebuild name:

sec-keys/openpgp-keys-gentoo-developers-20260406

Description

Gentoo Authority Keys (GLEP 79)

Added to portage

2026-04-09

openpgp-keys-plexmediaserver - 20240120
Ebuild name:

sec-keys/openpgp-keys-plexmediaserver-20240120

Description

OpenPGP keys used by Plex Inc.

Added to portage

2026-04-09

openssl - 3.0.20
Ebuild name:

dev-libs/openssl-3.0.20

Description

Robust, full-featured Open Source Toolkit for the Transport Layer Security

Added to portage

2026-04-09

openssl - 3.3.7
Ebuild name:

dev-libs/openssl-3.3.7

Description

Robust, full-featured Open Source Toolkit for the Transport Layer Security (

Added to portage

2026-04-09

openssl - 3.4.5
Ebuild name:

dev-libs/openssl-3.4.5

Description

Robust, full-featured Open Source Toolkit for the Transport Layer Security (

Added to portage

2026-04-09

openssl - 3.5.6
Ebuild name:

dev-libs/openssl-3.5.6

Description

Robust, full-featured Open Source Toolkit for the Transport Layer Security (

Added to portage

2026-04-09

openssl - 3.6.2
Ebuild name:

dev-libs/openssl-3.6.2

Description

Robust, full-featured Open Source Toolkit for the Transport Layer Security (

Added to portage

2026-04-09

opera - 130.0.5847.12
Ebuild name:

www-client/opera-130.0.5847.12

Description

A fast and secure web browser

Added to portage

2026-04-09

oslo-utils - 10.0.1
Ebuild name:

dev-python/oslo-utils-10.0.1

Description

Oslo Utility library

Added to portage

2026-04-09

pbs-installer - 2026.4.7
Ebuild name:

dev-python/pbs-installer-2026.4.7

Description

Installer for Python Build Standalone

Added to portage

2026-04-09

pipewire - 1.6.3
Ebuild name:

media-video/pipewire-1.6.3

Description

Multimedia processing graphs

Added to portage

2026-04-09

pixi - 0.67.0
Ebuild name:

dev-util/pixi-0.67.0

Description

A package management and workflow tool

Added to portage

2026-04-09

platformdirs - 4.9.6
Ebuild name:

dev-python/platformdirs-4.9.6

Description

A small Python module for determining appropriate platform-specific d

Added to portage

2026-04-09

plex-media-server - 1.43.1.10576
Ebuild name:

media-tv/plex-media-server-1.43.1.10576

Description

Free media library that is intended for use with a plex cli

Added to portage

2026-04-09

poco - 1.15.1
Ebuild name:

dev-libs/poco-1.15.1

Description

C++ libraries for building network-based applications

Added to portage

2026-04-09

puremagic - 2.2.0
Ebuild name:

dev-python/puremagic-2.2.0

Description

Pure python implementation of magic file detection

Added to portage

2026-04-09

respx - 0.23.1
Ebuild name:

dev-python/respx-0.23.1

Description

Mock HTTPX with awesome request patterns and response side effects

Added to portage

2026-04-09

rfc3161-client - 1.0.6
Ebuild name:

dev-python/rfc3161-client-1.0.6

Description

An Opinionated Python RFC3161 Client

Added to portage

2026-04-09

ruff - 0.15.10
Ebuild name:

dev-util/ruff-0.15.10

Description

An extremely fast Python linter, written in Rust

Added to portage

2026-04-09

safeeyes - 3.3.3
Ebuild name:

x11-misc/safeeyes-3.3.3

Description

Linux alternative to EyeLeo

Added to portage

2026-04-09

samba - 4.22.9
Ebuild name:

net-fs/samba-4.22.9

Description

Samba Suite Version 4

Added to portage

2026-04-09

signal-desktop-bin - 8.6.0
Ebuild name:

net-im/signal-desktop-bin-8.6.0

Description

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

Added to portage

2026-04-09

skopeo - 1.22.0
Ebuild name:

app-containers/skopeo-1.22.0

Description

Work with remote container images registries

Added to portage

2026-04-09

slack - 4.49.81
Ebuild name:

net-im/slack-4.49.81

Description

Team collaboration tool

Added to portage

2026-04-09

sqlglot - 30.4.2
Ebuild name:

dev-python/sqlglot-30.4.2

Description

An easily customizable SQL parser and transpiler

Added to portage

2026-04-09

stellarium - 26.1
Ebuild name:

sci-astronomy/stellarium-26.1

Description

3D photo-realistic skies in real time

Added to portage

2026-04-09

synapse - 1.151.0
Ebuild name:

net-im/synapse-1.151.0

Description

Reference implementation of Matrix homeserver

Added to portage

2026-04-09

tavern - 3.3.3
Ebuild name:

dev-python/tavern-3.3.3

Description

A tool, library, and Pytest plugin for testing RESTful APIs

Added to portage

2026-04-09

telegram-desktop-bin - 6.7.5
Ebuild name:

net-im/telegram-desktop-bin-6.7.5

Description

Official desktop client for Telegram (binary package)

Added to portage

2026-04-09

thunderbird - 140.9.1
Ebuild name:

mail-client/thunderbird-140.9.1

Description

Thunderbird Mail Client

Added to portage

2026-04-09

thunderbird - 149.0.2
Ebuild name:

mail-client/thunderbird-149.0.2

Description

Thunderbird Mail Client

Added to portage

2026-04-09

thunderbird-bin - 140.9.1
Ebuild name:

mail-client/thunderbird-bin-140.9.1

Description

Thunderbird Mail Client

Added to portage

2026-04-09

thunderbird-bin - 149.0.2
Ebuild name:

mail-client/thunderbird-bin-149.0.2

Description

Thunderbird Mail Client

Added to portage

2026-04-09

types-docutils - 0.22.3.20260408
Ebuild name:

dev-python/types-docutils-0.22.3.20260408

Description

Typing stubs for docutils

Added to portage

2026-04-09

types-gdb - 16.3.0.20260408
Ebuild name:

dev-python/types-gdb-16.3.0.20260408

Description

Typing stubs for gdb

Added to portage

2026-04-09

types-psutil - 7.2.2.20260408
Ebuild name:

dev-python/types-psutil-7.2.2.20260408

Description

Typing stubs for psutil

Added to portage

2026-04-09

types-python-dateutil - 2.9.0.20260408
Ebuild name:

dev-python/types-python-dateutil-2.9.0.20260408

Description

Typing stubs for python-dateutil

Added to portage

2026-04-09

types-setuptools - 82.0.0.20260408
Ebuild name:

dev-python/types-setuptools-82.0.0.20260408

Description

Typing stubs for setuptools

Added to portage

2026-04-09

uv - 0.11.5
Ebuild name:

dev-python/uv-0.11.5

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-04-09

uv-build - 0.11.5
Ebuild name:

dev-python/uv-build-0.11.5

Description

PEP517 uv build backend

Added to portage

2026-04-09

vamp-plugin-sdk - 2.10-r1
Ebuild name:

media-libs/vamp-plugin-sdk-2.10-r1

Description

Audio processing system for plugins to extract information from

Added to portage

2026-04-09

virtme-ng - 1.41
Ebuild name:

sys-kernel/virtme-ng-1.41

Description

Quickly build and run kernels inside a virtualized snapshot of your live

Added to portage

2026-04-09

winbox - 4.1_rc3
Ebuild name:

app-admin/winbox-4.1_rc3

Description

Management Software for MikroTik RouterOS

Added to portage

2026-04-09

wvstreams - 4.6.1_p14-r3
Ebuild name:

net-libs/wvstreams-4.6.1_p14-r3

Description

A network programming library in C++

Added to portage

2026-04-09

xdg-user-dirs - 0.19
Ebuild name:

x11-misc/xdg-user-dirs-0.19

Description

Tool to help manage 'well known' user directories

Added to portage

2026-04-09

xdg-user-dirs-gtk - 0.16
Ebuild name:

x11-misc/xdg-user-dirs-gtk-0.16

Description

Integrates xdg-user-dirs into the Gnome desktop and Gtk+ applicatio

Added to portage

2026-04-09

xpadneo - 0.10.2
Ebuild name:

games-util/xpadneo-0.10.2

Description

Advanced Linux Driver for Xbox One Wireless Controller

Added to portage

2026-04-09

zynaddsubfx - 3.0.6-r7
Ebuild name:

media-sound/zynaddsubfx-3.0.6-r7

Description

Software synthesizer capable of making a countless number of instr

Added to portage

2026-04-09

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