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:

85001

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-06
amd - 3.3.4
Ebuild name:

sci-libs/amd-3.3.4

Description

Library to order a sparse matrix prior to Cholesky factorization

Added to portage

2026-05-06

android-studio - 2025.3.4.7
Ebuild name:

dev-util/android-studio-2025.3.4.7

Description

Android development environment based on IntelliJ IDEA

Added to portage

2026-05-06

apsw - 3.53.1.0
Ebuild name:

dev-python/apsw-3.53.1.0

Description

APSW - Another Python SQLite Wrapper

Added to portage

2026-05-06

awscli - 1.45.4
Ebuild name:

app-admin/awscli-1.45.4

Description

Universal Command Line Environment for AWS

Added to portage

2026-05-06

b2sdk - 2.12.0
Ebuild name:

dev-python/b2sdk-2.12.0

Description

Library to access Backblaze B2 cloud storage

Added to portage

2026-05-06

boto3 - 1.43.4
Ebuild name:

dev-python/boto3-1.43.4

Description

The AWS SDK for Python

Added to portage

2026-05-06

botocore - 1.43.4
Ebuild name:

dev-python/botocore-1.43.4

Description

Low-level, data-driven core of boto 3

Added to portage

2026-05-06

btf - 2.3.3
Ebuild name:

sci-libs/btf-2.3.3

Description

Algorithm for matrix permutation into block triangular form

Added to portage

2026-05-06

camd - 3.3.5
Ebuild name:

sci-libs/camd-3.3.5

Description

Library to order a sparse matrix prior to Cholesky factorization

Added to portage

2026-05-06

ccolamd - 3.3.5
Ebuild name:

sci-libs/ccolamd-3.3.5

Description

Constrained Column approximate minimum degree ordering algorithm

Added to portage

2026-05-06

cholmod - 5.3.4
Ebuild name:

sci-libs/cholmod-5.3.4

Description

Sparse Cholesky factorization and update/downdate library

Added to portage

2026-05-06

chromium - 148.0.7778.96
Ebuild name:

www-client/chromium-148.0.7778.96

Description

Open-source version of Google Chrome web browser

Added to portage

2026-05-06

chromium - 149.0.7815.2
Ebuild name:

www-client/chromium-149.0.7815.2

Description

Open-source version of Google Chrome web browser

Added to portage

2026-05-06

cinnamon - 6.6.8
Ebuild name:

gnome-extra/cinnamon-6.6.8

Description

A fork of GNOME Shell with layout similar to GNOME 2

Added to portage

2026-05-06

cinnamon-settings-daemon - 6.6.4
Ebuild name:

gnome-extra/cinnamon-settings-daemon-6.6.4

Description

Cinnamon's settings daemon

Added to portage

2026-05-06

colamd - 3.3.5
Ebuild name:

sci-libs/colamd-3.3.5

Description

Column approximate minimum degree ordering algorithm

Added to portage

2026-05-06

cryptography - 48.0.0
Ebuild name:

dev-python/cryptography-48.0.0

Description

Library providing cryptographic recipes and primitives

Added to portage

2026-05-06

cryptominisat - 5.11.21-r3
Ebuild name:

sci-mathematics/cryptominisat-5.11.21-r3

Description

Advanced SAT solver with C++ and command-line interfaces

Added to portage

2026-05-06

cxsparse - 4.4.2
Ebuild name:

sci-libs/cxsparse-4.4.2

Description

Extended sparse matrix package

Added to portage

2026-05-06

denaro - 2024.2.0-r1
Ebuild name:

app-office/denaro-2024.2.0-r1

Description

A personal finance manager

Added to portage

2026-05-06

django - 5.2.14
Ebuild name:

dev-python/django-5.2.14

Description

High-level Python web framework

Added to portage

2026-05-06

django - 6.0.5
Ebuild name:

dev-python/django-6.0.5

Description

High-level Python web framework

Added to portage

2026-05-06

elastic-transport - 9.4.0
Ebuild name:

dev-python/elastic-transport-9.4.0

Description

Transport classes and utilities shared among Python Elastic clie

Added to portage

2026-05-06

elsw - 1.0.1-r1
Ebuild name:

app-portage/elsw-1.0.1-r1

Description

Tool providing a nice way to view the Portage world file

Added to portage

2026-05-06

gitea - 1.26.1
Ebuild name:

www-apps/gitea-1.26.1

Description

A painless self-hosted Git service

Added to portage

2026-05-06

guestfs-tools - 1.55.6
Ebuild name:

app-emulation/guestfs-tools-1.55.6

Description

Tools for accessing, inspecting, and modifying virtual machine (

Added to portage

2026-05-06

jupyter-server - 2.18.1
Ebuild name:

dev-python/jupyter-server-2.18.1

Description

Core services, APIs, and REST endpoints to Jupyter web application

Added to portage

2026-05-06

klu - 2.3.6
Ebuild name:

sci-libs/klu-2.3.6

Description

Sparse LU factorization for circuit simulation

Added to portage

2026-05-06

ldl - 3.3.3
Ebuild name:

sci-libs/ldl-3.3.3

Description

Simple but educational LDL^T matrix factorization algorithm

Added to portage

2026-05-06

libfilezilla - 0.55.5
Ebuild name:

dev-libs/libfilezilla-0.55.5

Description

C++ library offering some basic functionality for platform-independent

Added to portage

2026-05-06

libguestfs - 1.58.1
Ebuild name:

app-emulation/libguestfs-1.58.1

Description

Tools for accessing, inspecting, and modifying virtual machine (VM)

Added to portage

2026-05-06

libguestfs-appliance - 1.58.1
Ebuild name:

app-emulation/libguestfs-appliance-1.58.1

Description

VM appliance disk image used in libguestfs package

Added to portage

2026-05-06

librt - 0.10.0
Ebuild name:

dev-python/librt-0.10.0

Description

Mypyc runtime library

Added to portage

2026-05-06

magic-wormhole - 0.24.0
Ebuild name:

dev-python/magic-wormhole-0.24.0

Description

Get Things From One Computer To Another, Safely

Added to portage

2026-05-06

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-06

osc-lib - 4.6.0
Ebuild name:

dev-python/osc-lib-4.6.0

Description

A package of common support modules for writing OSC plugins

Added to portage

2026-05-06

pbs-installer - 2026.5.4
Ebuild name:

dev-python/pbs-installer-2026.5.4

Description

Installer for Python Build Standalone

Added to portage

2026-05-06

python-discovery - 1.3.0
Ebuild name:

dev-python/python-discovery-1.3.0

Description

Python interpreter discovery

Added to portage

2026-05-06

rapidjson - 1.1.0_p20250205
Ebuild name:

dev-libs/rapidjson-1.1.0_p20250205

Description

A fast JSON parser/generator for C++ with both SAX/DOM style API

Added to portage

2026-05-06

razer-cli - 2.3.0-r1
Ebuild name:

sys-apps/razer-cli-2.3.0-r1

Description

Command line interface for controlling Razer devices on Linux

Added to portage

2026-05-06

razercommander - 1.2.1.2-r5
Ebuild name:

sys-apps/razercommander-1.2.1.2-r5

Description

GTK contol center for managing Razer peripherals on Linux

Added to portage

2026-05-06

slack - 4.49.89
Ebuild name:

net-im/slack-4.49.89

Description

Team collaboration tool

Added to portage

2026-05-06

snapper - 0.13.1
Ebuild name:

app-backup/snapper-0.13.1

Description

Command-line program for btrfs and lvm snapshot management

Added to portage

2026-05-06

sphinxcontrib-mermaid - 2.0.2
Ebuild name:

dev-python/sphinxcontrib-mermaid-2.0.2

Description

Sphinx spelling extension

Added to portage

2026-05-06

spqr - 4.3.6
Ebuild name:

sci-libs/spqr-4.3.6

Description

Multithreaded multifrontal sparse QR factorization library

Added to portage

2026-05-06

stp - 2.3.4-r1
Ebuild name:

sci-mathematics/stp-2.3.4-r1

Description

Simple Theorem Prover, an efficient SMT solver for bitvectors

Added to portage

2026-05-06

suitesparseconfig - 7.12.2
Ebuild name:

sci-libs/suitesparseconfig-7.12.2

Description

Common configurations for all packages in suitesparse

Added to portage

2026-05-06

tempora - 5.9.0
Ebuild name:

dev-python/tempora-5.9.0

Description

Objects and routines pertaining to date and time

Added to portage

2026-05-06

umfpack - 6.3.7
Ebuild name:

sci-libs/umfpack-6.3.7

Description

Unsymmetric multifrontal sparse LU factorization library

Added to portage

2026-05-06

virt-v2v - 2.10.0
Ebuild name:

app-emulation/virt-v2v-2.10.0

Description

Tool to convert guests from foreign hypervisors to run on KVM

Added to portage

2026-05-06

2026-05-05
ansible - 13.6.0
Ebuild name:

app-admin/ansible-13.6.0

Description

Model-driven deployment, config management, and command execution framewor

Added to portage

2026-05-05

ansible-core - 2.20.5
Ebuild name:

app-admin/ansible-core-2.20.5

Description

Model-driven deployment, config management, and command execution fra

Added to portage

2026-05-05

apache - 2.4.67
Ebuild name:

www-servers/apache-2.4.67

Description

The Apache Web Server

Added to portage

2026-05-05

apache-tools - 2.4.67
Ebuild name:

app-admin/apache-tools-2.4.67

Description

Useful Apache tools - htdigest, htpasswd, ab, htdbm

Added to portage

2026-05-05

apsw - 3.53.0.0
Ebuild name:

dev-python/apsw-3.53.0.0

Description

APSW - Another Python SQLite Wrapper

Added to portage

2026-05-05

authlib - 1.7.1
Ebuild name:

dev-python/authlib-1.7.1

Description

A Python library in building OAuth and OpenID Connect servers and clients

Added to portage

2026-05-05

awscli - 1.45.3
Ebuild name:

app-admin/awscli-1.45.3

Description

Universal Command Line Environment for AWS

Added to portage

2026-05-05

bitcoin-core - 31.0
Ebuild name:

net-p2p/bitcoin-core-31.0

Description

Reference implementation of the Bitcoin cryptocurrency

Added to portage

2026-05-05

blessed - 1.39.0
Ebuild name:

dev-python/blessed-1.39.0

Description

Library for making terminal apps using colors, keyboard input and positio

Added to portage

2026-05-05

boto3 - 1.43.3
Ebuild name:

dev-python/boto3-1.43.3

Description

The AWS SDK for Python

Added to portage

2026-05-05

botocore - 1.43.3
Ebuild name:

dev-python/botocore-1.43.3

Description

Low-level, data-driven core of boto 3

Added to portage

2026-05-05

btop - 1.4.7
Ebuild name:

sys-process/btop-1.4.7

Description

A monitor of resources

Added to portage

2026-05-05

c-blosc2 - 3.0.2
Ebuild name:

dev-libs/c-blosc2-3.0.2

Description

Blocking, shuffling and lossless compression library

Added to portage

2026-05-05

candy - 6.1.6-r1
Ebuild name:

net-vpn/candy-6.1.6-r1

Description

A reliable, low-latency, and anti-censorship virtual private network

Added to portage

2026-05-05

candy - 6.1.7
Ebuild name:

net-vpn/candy-6.1.7

Description

A reliable, low-latency, and anti-censorship virtual private network

Added to portage

2026-05-05

checkpolicy - 3.10
Ebuild name:

sys-apps/checkpolicy-3.10

Description

SELinux policy compiler

Added to portage

2026-05-05

chez - 10.4.0
Ebuild name:

dev-scheme/chez-10.4.0

Description

A programming language based on R6RS

Added to portage

2026-05-05

chrome-binary-plugins - 148.0.7778.96_beta
Ebuild name:

www-plugins/chrome-binary-plugins-148.0.7778.96_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-05-05

chrome-binary-plugins - 149.0.7815.2_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-149.0.7815.2_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-05-05

clion - 2025.3.4
Ebuild name:

dev-util/clion-2025.3.4

Description

A complete toolset for C and C++ development

Added to portage

2026-05-05

clion - 2026.1
Ebuild name:

dev-util/clion-2026.1

Description

A complete toolset for C and C++ development

Added to portage

2026-05-05

crash - 9.0.2
Ebuild name:

dev-util/crash-9.0.2

Description

Red Hat crash utility; used for analyzing kernel core dumps

Added to portage

2026-05-05

derper - 1.96.5
Ebuild name:

net-vpn/derper-1.96.5

Description

DERP server for tailscale network

Added to portage

2026-05-05

earthly - 0.8.16-r1
Ebuild name:

app-containers/earthly-0.8.16-r1

Description

Build automation tool that executes in containers

Added to portage

2026-05-05

ensurepip-pip - 26.1.1
Ebuild name:

dev-python/ensurepip-pip-26.1.1

Description

Shared pip wheel for ensurepip Python module

Added to portage

2026-05-05

ffmpeg - 7.1.4
Ebuild name:

media-video/ffmpeg-7.1.4

Description

Complete solution to record/convert/stream audio and video

Added to portage

2026-05-05

ffmpeg-compat - 7.1.4
Ebuild name:

media-video/ffmpeg-compat-7.1.4

Description

Complete solution to record/convert/stream audio and video

Added to portage

2026-05-05

framework_tool - 0.6.2
Ebuild name:

app-laptop/framework_tool-0.6.2

Description

Tool to control Framework Computer systems

Added to portage

2026-05-05

gallery-dl - 1.32.1
Ebuild name:

net-misc/gallery-dl-1.32.1

Description

Download image galleries and collections from several image hosting site

Added to portage

2026-05-05

gdm-greeter - 1-r1
Ebuild name:

acct-user/gdm-greeter-1-r1

Description

User for GDM greeter specialized for elogind

Added to portage

2026-05-05

gmp - 6.3.0-r2
Ebuild name:

dev-libs/gmp-6.3.0-r2

Description

Library for arbitrary-precision arithmetic on different type of numbers

Added to portage

2026-05-05

golangci-lint - 2.12.1
Ebuild name:

dev-go/golangci-lint-2.12.1

Description

Fast linters runner for Go

Added to portage

2026-05-05

google-chrome-beta - 148.0.7778.96
Ebuild name:

www-client/google-chrome-beta-148.0.7778.96

Description

The web browser from Google

Added to portage

2026-05-05

google-chrome-unstable - 149.0.7815.2
Ebuild name:

www-client/google-chrome-unstable-149.0.7815.2

Description

The web browser from Google

Added to portage

2026-05-05

gtk - 4.20.4
Ebuild name:

gui-libs/gtk-4.20.4

Description

GTK is a multi-platform toolkit for creating graphical user interfaces

Added to portage

2026-05-05

intune-portal - 1.2604.13
Ebuild name:

sys-apps/intune-portal-1.2604.13

Description

Microsoft Intune Company Portal to access a corporate environment

Added to portage

2026-05-05

iproute2 - 7.0.0
Ebuild name:

sys-apps/iproute2-7.0.0

Description

kernel routing and traffic control utilities

Added to portage

2026-05-05

jenkins-bin - 2.555.1
Ebuild name:

dev-util/jenkins-bin-2.555.1

Description

The leading open source automation server

Added to portage

2026-05-05

jenkins-bin - 2.561
Ebuild name:

dev-util/jenkins-bin-2.561

Description

The leading open source automation server

Added to portage

2026-05-05

jupyter-server - 2.18.0
Ebuild name:

dev-python/jupyter-server-2.18.0

Description

Core services, APIs, and REST endpoints to Jupyter web application

Added to portage

2026-05-05

keepassxc - 2.8.0_pre20260504
Ebuild name:

app-admin/keepassxc-2.8.0_pre20260504

Description

KeePassXC - KeePass Cross-platform Community Edition

Added to portage

2026-05-05

kubectl - 1.36.0
Ebuild name:

sys-cluster/kubectl-1.36.0

Description

CLI to run commands against Kubernetes clusters

Added to portage

2026-05-05

libdrm - 2.4.133
Ebuild name:

x11-libs/libdrm-2.4.133

Description

X.Org libdrm library

Added to portage

2026-05-05

libgit2 - 1.9.3
Ebuild name:

dev-libs/libgit2-1.9.3

Description

A linkable library for Git

Added to portage

2026-05-05

libpfm - 4.13.0_p20260328
Ebuild name:

dev-libs/libpfm-4.13.0_p20260328

Description

Hardware-based performance monitoring interface for Linux

Added to portage

2026-05-05

libpfm - 9999
Ebuild name:

dev-libs/libpfm-9999

Description

Hardware-based performance monitoring interface for Linux

Added to portage

2026-05-05

libselinux - 3.10
Ebuild name:

sys-libs/libselinux-3.10

Description

SELinux userland library

Added to portage

2026-05-05

libsemanage - 3.10
Ebuild name:

sys-libs/libsemanage-3.10

Description

SELinux kernel and policy management library

Added to portage

2026-05-05

libsepol - 3.10
Ebuild name:

sys-libs/libsepol-3.10

Description

SELinux binary policy representation library

Added to portage

2026-05-05

mako - 1.11.0
Ebuild name:

gui-apps/mako-1.11.0

Description

A lightweight notification daemon for Wayland. Works on Sway

Added to portage

2026-05-05

mcstrans - 3.10
Ebuild name:

sys-apps/mcstrans-3.10

Description

SELinux context translation to human readable names

Added to portage

2026-05-05

md4c - 0.5.3
Ebuild name:

dev-libs/md4c-0.5.3

Description

C Markdown parser. Fast, SAX-like interface, CommonMark Compliant

Added to portage

2026-05-05

microsoft-edge - 147.0.3912.98
Ebuild name:

www-client/microsoft-edge-147.0.3912.98

Description

The web browser from Microsoft

Added to portage

2026-05-05

microsoft-edge-beta - 148.0.3967.42
Ebuild name:

www-client/microsoft-edge-beta-148.0.3967.42

Description

The web browser from Microsoft

Added to portage

2026-05-05

mit-krb5 - 1.22.2
Ebuild name:

app-crypt/mit-krb5-1.22.2

Description

MIT Kerberos V

Added to portage

2026-05-05

mit-krb5 - 1.22.2-r1
Ebuild name:

app-crypt/mit-krb5-1.22.2-r1

Description

MIT Kerberos V

Added to portage

2026-05-05

mit-krb5-appl - 1.0.3-r4
Ebuild name:

app-crypt/mit-krb5-appl-1.0.3-r4

Description

Kerberized applications split from the main MIT Kerberos V distrib

Added to portage

2026-05-05

mit-krb5-appl - 1.0.3-r5
Ebuild name:

app-crypt/mit-krb5-appl-1.0.3-r5

Description

Kerberized applications split from the main MIT Kerberos V distrib

Added to portage

2026-05-05

mkp224o - 1.7.0
Ebuild name:

app-crypt/mkp224o-1.7.0

Description

Vanity address generator for v3 Tor hidden service addresses

Added to portage

2026-05-05

monkeysphere - 0.44-r2
Ebuild name:

app-crypt/monkeysphere-0.44-r2

Description

Leverage the OpenPGP web of trust for OpenSSH and Web authentication

Added to portage

2026-05-05

moolticute - 1.03.0-r2
Ebuild name:

app-crypt/moolticute-1.03.0-r2

Description

Mooltipass crossplatform daemon/tools

Added to portage

2026-05-05

musepack-tools - 495-r1
Ebuild name:

media-sound/musepack-tools-495-r1

Description

Musepack SV8 libraries and utilities

Added to portage

2026-05-05

nethack - 5.0.0
Ebuild name:

games-roguelike/nethack-5.0.0

Description

The ultimate old-school single player dungeon exploration game

Added to portage

2026-05-05

nprolog - 5.18
Ebuild name:

dev-lang/nprolog-5.18

Description

Interpreter and compiler to be compatible with Arity/Prolog32

Added to portage

2026-05-05

oct2py - 6.0.2
Ebuild name:

dev-python/oct2py-6.0.2

Description

Python to GNU Octave bridge

Added to portage

2026-05-05

openjdk-jre-bin - 11.0.31_p11
Ebuild name:

dev-java/openjdk-jre-bin-11.0.31_p11

Description

Prebuilt Java JRE binaries provided by Eclipse Temurin

Added to portage

2026-05-05

openjdk-jre-bin - 17.0.19_p10
Ebuild name:

dev-java/openjdk-jre-bin-17.0.19_p10

Description

Prebuilt Java JRE binaries provided by Eclipse Temurin

Added to portage

2026-05-05

openjdk-jre-bin - 21.0.11_p10
Ebuild name:

dev-java/openjdk-jre-bin-21.0.11_p10

Description

Prebuilt Java JRE binaries provided by Eclipse Temurin

Added to portage

2026-05-05

openjdk-jre-bin - 25.0.3_p9
Ebuild name:

dev-java/openjdk-jre-bin-25.0.3_p9

Description

Prebuilt Java JRE binaries provided by Eclipse Temurin

Added to portage

2026-05-05

openjdk-jre-bin - 8.492_p09
Ebuild name:

dev-java/openjdk-jre-bin-8.492_p09

Description

Prebuilt Java JRE binaries provided by Eclipse Temurin

Added to portage

2026-05-05

openvswitch - 2.17.12-r1
Ebuild name:

net-misc/openvswitch-2.17.12-r1

Description

Production quality, multilayer virtual switch

Added to portage

2026-05-05

openvswitch - 3.3.8-r1
Ebuild name:

net-misc/openvswitch-3.3.8-r1

Description

Production quality, multilayer virtual switch

Added to portage

2026-05-05

opera - 131.0.5877.5
Ebuild name:

www-client/opera-131.0.5877.5

Description

A fast and secure web browser

Added to portage

2026-05-05

opera-developer - 132.0.5883.0
Ebuild name:

www-client/opera-developer-132.0.5883.0

Description

A fast and secure web browser

Added to portage

2026-05-05

pip - 26.1.1
Ebuild name:

dev-python/pip-26.1.1

Description

The PyPA recommended tool for installing Python packages

Added to portage

2026-05-05

pkgdev - 0.2.14
Ebuild name:

dev-util/pkgdev-0.2.14

Description

Collection of tools for Gentoo development

Added to portage

2026-05-05

policycoreutils - 3.10
Ebuild name:

sys-apps/policycoreutils-3.10

Description

SELinux core utilities

Added to portage

2026-05-05

pycharm-professional - 2025.3.4
Ebuild name:

dev-util/pycharm-professional-2025.3.4

Description

Intelligent Python IDE with unique code assistance and analy

Added to portage

2026-05-05

pycharm-professional - 2026.1
Ebuild name:

dev-util/pycharm-professional-2026.1

Description

Intelligent Python IDE with unique code assistance and analysi

Added to portage

2026-05-05

pyopenssl - 26.2.0
Ebuild name:

dev-python/pyopenssl-26.2.0

Description

Python interface to the OpenSSL library

Added to portage

2026-05-05

pyproject-fmt - 2.21.2
Ebuild name:

dev-python/pyproject-fmt-2.21.2

Description

Format your pyproject.toml file

Added to portage

2026-05-05

python - 0.3.14.5_rc1
Ebuild name:

dev-lang/python-0.3.14.5_rc1

Description

Freethreading (no-GIL) version of Python programming language

Added to portage

2026-05-05

python - 3.14.5_rc1
Ebuild name:

dev-lang/python-3.14.5_rc1

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2026-05-05

python-subunit - 1.4.6
Ebuild name:

dev-python/python-subunit-1.4.6

Description

A streaming protocol for test results

Added to portage

2026-05-05

python-tests - 0.3.14.5_rc1
Ebuild name:

dev-python/python-tests-0.3.14.5_rc1

Description

Test modules from dev-lang/python

Added to portage

2026-05-05

python-tests - 3.14.5_rc1
Ebuild name:

dev-python/python-tests-3.14.5_rc1

Description

Test modules from dev-lang/python

Added to portage

2026-05-05

rclone - 1.73.2-r1
Ebuild name:

net-misc/rclone-1.73.2-r1

Description

A program to sync files to and from various cloud storage providers

Added to portage

2026-05-05

rclone - 1.73.3-r1
Ebuild name:

net-misc/rclone-1.73.3-r1

Description

A program to sync files to and from various cloud storage providers

Added to portage

2026-05-05

rclone - 1.73.5-r1
Ebuild name:

net-misc/rclone-1.73.5-r1

Description

A program to sync files to and from various cloud storage providers

Added to portage

2026-05-05

rclone - 1.74.0-r1
Ebuild name:

net-misc/rclone-1.74.0-r1

Description

A program to sync files to and from various cloud storage providers

Added to portage

2026-05-05

restorecond - 3.10
Ebuild name:

sys-apps/restorecond-3.10

Description

Daemon to watch for creation and set default SELinux fcontexts

Added to portage

2026-05-05

secilc - 3.10
Ebuild name:

sys-apps/secilc-3.10

Description

SELinux Common Intermediate Language (CIL) Compiler

Added to portage

2026-05-05

selinux-base-policy - 2.20250213_p1-r1
Ebuild name:

sec-policy/selinux-base-policy-2.20250213_p1-r1

Description

SELinux policy for core modules

Added to portage

2026-05-05

selinux-base-policy - 2.20250618_p1-r1
Ebuild name:

sec-policy/selinux-base-policy-2.20250618_p1-r1

Description

SELinux policy for core modules

Added to portage

2026-05-05

selinux-matrixd - 2.20250213_p1-r1
Ebuild name:

sec-policy/selinux-matrixd-2.20250213_p1-r1

Description

SELinux policy for matrixd

Added to portage

2026-05-05

selinux-matrixd - 2.20250618_p1-r1
Ebuild name:

sec-policy/selinux-matrixd-2.20250618_p1-r1

Description

SELinux policy for matrixd

Added to portage

2026-05-05

selinux-openvswitch - 2.20250618_p1
Ebuild name:

sec-policy/selinux-openvswitch-2.20250618_p1

Description

SELinux policy for openvswitch

Added to portage

2026-05-05

selinux-openvswitch - 9999
Ebuild name:

sec-policy/selinux-openvswitch-9999

Description

SELinux policy for openvswitch

Added to portage

2026-05-05

selinux-python - 3.10
Ebuild name:

sys-apps/selinux-python-3.10

Description

SELinux core utilities

Added to portage

2026-05-05

semodule-utils - 3.10
Ebuild name:

sys-apps/semodule-utils-3.10

Description

SELinux policy module utilities

Added to portage

2026-05-05

siril - 1.4.2
Ebuild name:

sci-astronomy/siril-1.4.2

Description

A free astronomical image processing software

Added to portage

2026-05-05

sqlglot - 30.7.0
Ebuild name:

dev-python/sqlglot-30.7.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2026-05-05

sqlite - 3.53.1
Ebuild name:

dev-db/sqlite-3.53.1

Description

SQL database engine

Added to portage

2026-05-05

swaybg - 1.2.2
Ebuild name:

gui-apps/swaybg-1.2.2

Description

A wallpaper utility for Wayland

Added to portage

2026-05-05

swaylock - 1.8.5
Ebuild name:

gui-apps/swaylock-1.8.5

Description

Screen locker for Wayland

Added to portage

2026-05-05

syslog-ng - 4.11.0
Ebuild name:

app-admin/syslog-ng-4.11.0

Description

syslog replacement with advanced filtering features

Added to portage

2026-05-05

tea - 0.14.0-r1
Ebuild name:

dev-util/tea-0.14.0-r1

Description

Command line tool to interact with Gitea server

Added to portage

2026-05-05

tibs - 0.7.0
Ebuild name:

dev-python/tibs-0.7.0

Description

A sleek Python library for your binary data

Added to portage

2026-05-05

tomoyo-tools - 2.6.1_p20250707
Ebuild name:

sys-apps/tomoyo-tools-2.6.1_p20250707

Description

TOMOYO Linux userspace tools

Added to portage

2026-05-05

tree-sitter-markdown-inline - 0.2.3-r1
Ebuild name:

dev-libs/tree-sitter-markdown-inline-0.2.3-r1

Description

Markdown-inline grammar for Tree-sitter

Added to portage

2026-05-05

tree-sitter-markdown-inline - 0.3.2-r1
Ebuild name:

dev-libs/tree-sitter-markdown-inline-0.3.2-r1

Description

Markdown-inline grammar for Tree-sitter

Added to portage

2026-05-05

upterm - 0.23.0
Ebuild name:

app-misc/upterm-0.23.0

Description

Instant Terminal Sharing

Added to portage

2026-05-05

virtualenv - 21.3.1
Ebuild name:

dev-python/virtualenv-21.3.1

Description

Virtual Python Environment builder

Added to portage

2026-05-05

vivaldi - 7.9.3970.60
Ebuild name:

www-client/vivaldi-7.9.3970.60

Description

A browser for our friends

Added to portage

2026-05-05

vivaldi-snapshot - 7.10.4023.3
Ebuild name:

www-client/vivaldi-snapshot-7.10.4023.3

Description

A browser for our friends

Added to portage

2026-05-05

voacapl - 0.7.7
Ebuild name:

sci-electronics/voacapl-0.7.7

Description

HF propagation prediction tool

Added to portage

2026-05-05

wireshark - 4.6.5-r1
Ebuild name:

net-analyzer/wireshark-4.6.5-r1

Description

Network protocol analyzer (sniffer)

Added to portage

2026-05-05

with-editor - 3.5.0
Ebuild name:

app-emacs/with-editor-3.5.0

Description

Use the Emacsclient as the of child processes

Added to portage

2026-05-05

wl-clipboard - 2.3.0
Ebuild name:

gui-apps/wl-clipboard-2.3.0

Description

Wayland clipboard utilities

Added to portage

2026-05-05

zedis - 0.3.4
Ebuild name:

dev-db/zedis-0.3.4

Description

Blazing-fast native Redis GUI built with Rust and GPUI

Added to portage

2026-05-05

zellij - 0.44.2
Ebuild name:

app-misc/zellij-0.44.2

Description

A terminal workspace with batteries included

Added to portage

2026-05-05

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