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:

83016

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-01-30
alembic - 1.18.3
Ebuild name:

dev-python/alembic-1.18.3

Description

Database migrations tool, written by the author of SQLAlchemy

Added to portage

2026-01-30

autopage - 0.6.0
Ebuild name:

dev-python/autopage-0.6.0

Description

A library to provide automatic paging for console output

Added to portage

2026-01-30

aws-sam-translator - 1.107.0
Ebuild name:

dev-python/aws-sam-translator-1.107.0

Description

A library that transform SAM templates into AWS CloudFormatio

Added to portage

2026-01-30

awscli - 1.44.28
Ebuild name:

app-admin/awscli-1.44.28

Description

Universal Command Line Environment for AWS

Added to portage

2026-01-30

bibtexparser - 1.4.4
Ebuild name:

dev-python/bibtexparser-1.4.4

Description

A BibTeX parser written in Python

Added to portage

2026-01-30

boto3 - 1.42.38
Ebuild name:

dev-python/boto3-1.42.38

Description

The AWS SDK for Python

Added to portage

2026-01-30

botocore - 1.42.38
Ebuild name:

dev-python/botocore-1.42.38

Description

Low-level, data-driven core of boto 3

Added to portage

2026-01-30

c-blosc2 - 2.23.0
Ebuild name:

dev-libs/c-blosc2-2.23.0

Description

Blocking, shuffling and lossless compression library

Added to portage

2026-01-30

claude-code - 2.1.23
Ebuild name:

dev-util/claude-code-2.1.23

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-01-30

cloudflared - 2026.1.2
Ebuild name:

net-vpn/cloudflared-2026.1.2

Description

A command-line client and tunneling daemon for Cloudflare Tunnel

Added to portage

2026-01-30

courier - 1.6.0
Ebuild name:

mail-mta/courier-1.6.0

Description

An MTA designed specifically for maildirs

Added to portage

2026-01-30

courier-authlib - 0.72.7
Ebuild name:

net-libs/courier-authlib-0.72.7

Description

Courier authentication library

Added to portage

2026-01-30

courier-unicode - 2.5.0
Ebuild name:

net-libs/courier-unicode-2.5.0

Description

Unicode library used by the courier mail server

Added to portage

2026-01-30

cssselect - 1.4.0
Ebuild name:

dev-python/cssselect-1.4.0

Description

Parse CSS3 Selectors and translate them to XPath 1.0

Added to portage

2026-01-30

deno-bin - 2.6.7
Ebuild name:

dev-lang/deno-bin-2.6.7

Description

Modern runtime for JavaScript and TypeScript

Added to portage

2026-01-30

gimp - 3.0.8-r1
Ebuild name:

media-gfx/gimp-3.0.8-r1

Description

GNU Image Manipulation Program

Added to portage

2026-01-30

nanobind - 2.11.0
Ebuild name:

dev-python/nanobind-2.11.0

Description

Tiny and efficient C++/Python bindings

Added to portage

2026-01-30

nbconvert - 7.17.0
Ebuild name:

dev-python/nbconvert-7.17.0

Description

Converting Jupyter Notebooks

Added to portage

2026-01-30

nvidia-drivers - 580.95.05
Ebuild name:

x11-drivers/nvidia-drivers-580.95.05

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-01-30

nvidia-vaapi-driver - 0.0.15
Ebuild name:

media-libs/nvidia-vaapi-driver-0.0.15

Description

A VA-API implemention using NVIDIA's NVDEC

Added to portage

2026-01-30

openjdk-bin - 25.0.2_p10
Ebuild name:

dev-java/openjdk-bin-25.0.2_p10

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-01-30

org-roam - 9999
Ebuild name:

app-emacs/org-roam-9999

Description

Rudimentary Roam replica with Org-mode

Added to portage

2026-01-30

orjson - 3.11.6
Ebuild name:

dev-python/orjson-3.11.6

Description

Fast, correct Python JSON library supporting dataclasses, datetimes, and n

Added to portage

2026-01-30

pdm-backend - 2.4.7
Ebuild name:

dev-python/pdm-backend-2.4.7

Description

A PEP 517 backend for PDM that supports PEP 621 metadata

Added to portage

2026-01-30

protobuf - 6.33.5
Ebuild name:

dev-python/protobuf-6.33.5

Description

Google's Protocol Buffers - Python bindings

Added to portage

2026-01-30

pytokens - 0.4.1
Ebuild name:

dev-python/pytokens-0.4.1

Description

A fast, spec compliant Python 3.13+ tokenizer that runs on older Pythons

Added to portage

2026-01-30

sphinxcontrib-trio - 1.2.0
Ebuild name:

dev-python/sphinxcontrib-trio-1.2.0

Description

Make Sphinx better at documenting Python functions and methods

Added to portage

2026-01-30

steve - 1.5.0
Ebuild name:

dev-build/steve-1.5.0

Description

A load-balancing jobserver for Gentoo

Added to portage

2026-01-30

talk-desktop-bin - 2.0.5
Ebuild name:

net-im/talk-desktop-bin-2.0.5

Description

Nextcloud Talk Desktop client

Added to portage

2026-01-30

thriftpy2 - 0.6.0_beta1
Ebuild name:

dev-python/thriftpy2-0.6.0_beta1

Description

Pure python approach of Apache Thrift

Added to portage

2026-01-30

tifffile - 2026.1.28
Ebuild name:

dev-python/tifffile-2026.1.28

Description

Read and write TIFF files

Added to portage

2026-01-30

types-psutil - 7.2.2.20260130
Ebuild name:

dev-python/types-psutil-7.2.2.20260130

Description

Typing stubs for psutil

Added to portage

2026-01-30

uv - 0.9.28
Ebuild name:

dev-python/uv-0.9.28

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-01-30

uv-build - 0.9.28
Ebuild name:

dev-python/uv-build-0.9.28

Description

PEP517 uv build backend

Added to portage

2026-01-30

wcwidth - 0.5.2
Ebuild name:

dev-python/wcwidth-0.5.2

Description

Measures number of Terminal column cells of wide-character codes

Added to portage

2026-01-30

yt-dlp - 2026.01.29
Ebuild name:

net-misc/yt-dlp-2026.01.29

Description

youtube-dl fork with additional features and fixes

Added to portage

2026-01-30

yt-dlp-ejs - 0.4.0
Ebuild name:

dev-python/yt-dlp-ejs-0.4.0

Description

External JavaScript for yt-dlp supporting many runtimes

Added to portage

2026-01-30

2026-01-29
absl-py - 2.4.0
Ebuild name:

dev-python/absl-py-2.4.0

Description

Abseil Python Common Libraries

Added to portage

2026-01-29

alembic - 1.18.2
Ebuild name:

dev-python/alembic-1.18.2

Description

Database migrations tool, written by the author of SQLAlchemy

Added to portage

2026-01-29

aspell - 0.60.8.2
Ebuild name:

app-text/aspell-0.60.8.2

Description

Free and Open Source spell checker designed to replace Ispell

Added to portage

2026-01-29

avahi - 0.9_rc3
Ebuild name:

net-dns/avahi-0.9_rc3

Description

System which facilitates service discovery on a local network

Added to portage

2026-01-29

awscli - 1.44.27
Ebuild name:

app-admin/awscli-1.44.27

Description

Universal Command Line Environment for AWS

Added to portage

2026-01-29

babl - 0.1.122
Ebuild name:

media-libs/babl-0.1.122

Description

A dynamic, any to any, pixel format conversion library

Added to portage

2026-01-29

bareos - 25.0.1
Ebuild name:

app-backup/bareos-25.0.1

Description

Featureful client/server network backup suite

Added to portage

2026-01-29

bareos - 25.0.1
Ebuild name:

dev-python/bareos-25.0.1

Description

python bindings for bareos network backup suite

Added to portage

2026-01-29

bcc - 0.36.0
Ebuild name:

dev-util/bcc-0.36.0

Description

Tools for BPF-based Linux IO analysis, networking, monitoring, and more

Added to portage

2026-01-29

bedrock-server - 1.21.132.3
Ebuild name:

games-server/bedrock-server-1.21.132.3

Description

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

Added to portage

2026-01-29

borgmatic - 2.1.1
Ebuild name:

app-backup/borgmatic-2.1.1

Description

Automatically create, prune and verify backups with borgbackup

Added to portage

2026-01-29

boto3 - 1.42.37
Ebuild name:

dev-python/boto3-1.42.37

Description

The AWS SDK for Python

Added to portage

2026-01-29

botocore - 1.42.37
Ebuild name:

dev-python/botocore-1.42.37

Description

Low-level, data-driven core of boto 3

Added to portage

2026-01-29

chrome-binary-plugins - 144.0.7559.109
Ebuild name:

www-plugins/chrome-binary-plugins-144.0.7559.109

Description

Binary plugins from Google Chrome for use in Chrom

Added to portage

2026-01-29

chrome-binary-plugins - 145.0.7632.26_beta
Ebuild name:

www-plugins/chrome-binary-plugins-145.0.7632.26_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-01-29

chrome-binary-plugins - 146.0.7647.3_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-146.0.7647.3_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-01-29

chromedriver-bin - 144.0.7559.109
Ebuild name:

www-apps/chromedriver-bin-144.0.7559.109

Description

WebDriver for Chrome

Added to portage

2026-01-29

chromium - 144.0.7559.109
Ebuild name:

www-client/chromium-144.0.7559.109

Description

Open-source version of Google Chrome web browser

Added to portage

2026-01-29

confuse - 2.2.0
Ebuild name:

dev-python/confuse-2.2.0

Description

Confuse is a configuration library for Python that uses YAML

Added to portage

2026-01-29

dunst - 1.13.1
Ebuild name:

x11-misc/dunst-1.13.1

Description

Lightweight replacement for common notification daemons

Added to portage

2026-01-29

dustrac - 2.2.0
Ebuild name:

games-sports/dustrac-2.2.0

Description

Tile-based, cross-platform 2D racing game

Added to portage

2026-01-29

faudio - 26.01
Ebuild name:

app-emulation/faudio-26.01

Description

Accuracy-focused XAudio reimplementation for open platforms

Added to portage

2026-01-29

firefox - 147.0.2
Ebuild name:

www-client/firefox-147.0.2

Description

Firefox Web Browser

Added to portage

2026-01-29

fotocx - 26.2
Ebuild name:

media-gfx/fotocx-26.2

Description

Program for improving image files made with a digital camera

Added to portage

2026-01-29

gimp - 2.10.38-r4
Ebuild name:

media-gfx/gimp-2.10.38-r4

Description

GNU Image Manipulation Program

Added to portage

2026-01-29

google-chrome - 144.0.7559.109
Ebuild name:

www-client/google-chrome-144.0.7559.109

Description

The web browser from Google

Added to portage

2026-01-29

google-chrome-beta - 145.0.7632.26
Ebuild name:

www-client/google-chrome-beta-145.0.7632.26

Description

The web browser from Google

Added to portage

2026-01-29

google-chrome-unstable - 146.0.7647.3
Ebuild name:

www-client/google-chrome-unstable-146.0.7647.3

Description

The web browser from Google

Added to portage

2026-01-29

hoe - 4.6.0
Ebuild name:

dev-ruby/hoe-4.6.0

Description

Hoe extends rake to provide full project automation

Added to portage

2026-01-29

hypothesis - 6.151.3
Ebuild name:

dev-python/hypothesis-6.151.3

Description

A library for property based testing

Added to portage

2026-01-29

hypothesis - 6.151.4
Ebuild name:

dev-python/hypothesis-6.151.4

Description

A library for property based testing

Added to portage

2026-01-29

intel-vc-intrinsics - 0.24.3
Ebuild name:

dev-libs/intel-vc-intrinsics-0.24.3

Description

A set of new intrinsics on top of core LLVM IR instructions

Added to portage

2026-01-29

io-endpoint - 0.17.1
Ebuild name:

dev-ruby/io-endpoint-0.17.1

Description

Provides a separation of concerns interface for IO endpoints

Added to portage

2026-01-29

js8call - 2.5.2
Ebuild name:

media-radio/js8call-2.5.2

Description

Weak signal ham radio communication

Added to portage

2026-01-29

kscreen - 6.5.5-r1
Ebuild name:

kde-plasma/kscreen-6.5.5-r1

Description

KDE Plasma screen management

Added to portage

2026-01-29

libgcrypt - 1.12.0-r1
Ebuild name:

dev-libs/libgcrypt-1.12.0-r1

Description

General purpose crypto library based on the code used in GnuPG

Added to portage

2026-01-29

libpng - 1.6.54
Ebuild name:

media-libs/libpng-1.6.54

Description

Portable Network Graphics library

Added to portage

2026-01-29

libtsm - 4.4.2
Ebuild name:

dev-libs/libtsm-4.4.2

Description

Terminal Emulator State Machine

Added to portage

2026-01-29

lxqt-config - 2.3.1
Ebuild name:

lxqt-base/lxqt-config-2.3.1

Description

LXQt system configuration control center

Added to portage

2026-01-29

mattermost-desktop-bin - 5.13.4
Ebuild name:

net-im/mattermost-desktop-bin-5.13.4

Description

Mattermost Desktop application

Added to portage

2026-01-29

microsoft-edge - 144.0.3719.92
Ebuild name:

www-client/microsoft-edge-144.0.3719.92

Description

The web browser from Microsoft

Added to portage

2026-01-29

microsoft-edge-beta - 145.0.3800.13
Ebuild name:

www-client/microsoft-edge-beta-145.0.3800.13

Description

The web browser from Microsoft

Added to portage

2026-01-29

microsoft-edge-beta - 145.0.3800.22
Ebuild name:

www-client/microsoft-edge-beta-145.0.3800.22

Description

The web browser from Microsoft

Added to portage

2026-01-29

microsoft-edge-dev - 145.0.3800.10
Ebuild name:

www-client/microsoft-edge-dev-145.0.3800.10

Description

The web browser from Microsoft

Added to portage

2026-01-29

microsoft-edge-dev - 146.0.3818.0
Ebuild name:

www-client/microsoft-edge-dev-146.0.3818.0

Description

The web browser from Microsoft

Added to portage

2026-01-29

netpbm - 11.13.2
Ebuild name:

media-libs/netpbm-11.13.2

Description

A set of utilities for converting to/from the netpbm (and related) format

Added to portage

2026-01-29

netpbm - 11.2.21
Ebuild name:

media-libs/netpbm-11.2.21

Description

A set of utilities for converting to/from the netpbm (and related) format

Added to portage

2026-01-29

openjdk-bin - 21.0.10_p7
Ebuild name:

dev-java/openjdk-bin-21.0.10_p7

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-01-29

openjdk-bin - 26_beta32
Ebuild name:

dev-java/openjdk-bin-26_beta32

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-01-29

openjdk-bin - 27_alpha6
Ebuild name:

dev-java/openjdk-bin-27_alpha6

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-01-29

openpgp-keys-annejan - 20260129
Ebuild name:

sec-keys/openpgp-keys-annejan-20260129

Description

OpenPGP key used by Anne Jan Brouwer (annejan)

Added to portage

2026-01-29

openpgp-keys-roddhjav - 20260129
Ebuild name:

sec-keys/openpgp-keys-roddhjav-20260129

Description

OpenPGP key used by Alexandre Pujol (roddhjav)

Added to portage

2026-01-29

openrct2 - 0.4.30
Ebuild name:

games-simulation/openrct2-0.4.30

Description

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

Added to portage

2026-01-29

opera - 126.0.5750.59
Ebuild name:

www-client/opera-126.0.5750.59

Description

A fast and secure web browser

Added to portage

2026-01-29

opera-developer - 128.0.5790.0
Ebuild name:

www-client/opera-developer-128.0.5790.0

Description

A fast and secure web browser

Added to portage

2026-01-29

org-static-blog - 1.6.0
Ebuild name:

app-emacs/org-static-blog-1.6.0

Description

Static site generator using Emacs's org-mode

Added to portage

2026-01-29

org-static-blog - 1.7.0
Ebuild name:

app-emacs/org-static-blog-1.7.0

Description

Static site generator using Emacs's org-mode

Added to portage

2026-01-29

org-static-blog - 9999
Ebuild name:

app-emacs/org-static-blog-9999

Description

Static site generator using Emacs's org-mode

Added to portage

2026-01-29

org-superstar-mode - 1.5.0
Ebuild name:

app-emacs/org-superstar-mode-1.5.0

Description

Prettify headings and plain lists in Org mode (use UTF8 bullets)

Added to portage

2026-01-29

osm - 1.9
Ebuild name:

app-emacs/osm-1.9

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-29

osm - 2.0
Ebuild name:

app-emacs/osm-2.0

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-29

osm - 2.1
Ebuild name:

app-emacs/osm-2.1

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-29

osm - 2.2
Ebuild name:

app-emacs/osm-2.2

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-29

osm - 9999
Ebuild name:

app-emacs/osm-9999

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-29

pass-import - 3.5-r1
Ebuild name:

app-admin/pass-import-3.5-r1

Description

pass extension for importing data from most existing password managers

Added to portage

2026-01-29

pass-update - 2.2.1-r1
Ebuild name:

app-admin/pass-update-2.2.1-r1

Description

pass extension that provides an easy flow for updating passwords

Added to portage

2026-01-29

pbs-installer - 2026.1.27
Ebuild name:

dev-python/pbs-installer-2026.1.27

Description

Installer for Python Build Standalone

Added to portage

2026-01-29

picard - 3.0.0_alpha1
Ebuild name:

media-sound/picard-3.0.0_alpha1

Description

Cross-platform music tagger

Added to portage

2026-01-29

prism - 1.9.0
Ebuild name:

dev-ruby/prism-1.9.0

Description

Prism Ruby parser

Added to portage

2026-01-29

psutil - 7.2.2
Ebuild name:

dev-python/psutil-7.2.2

Description

Retrieve information on running processes and system utilization

Added to portage

2026-01-29

pykeepass - 4.1.1_p1
Ebuild name:

dev-python/pykeepass-4.1.1_p1

Description

Python library to interact with keepass databases (supports KDBX3 and

Added to portage

2026-01-29

qdirstat - 2.0
Ebuild name:

sys-apps/qdirstat-2.0

Description

Qt-based directory statistics

Added to portage

2026-01-29

qtpass - 1.4.0-r3
Ebuild name:

app-admin/qtpass-1.4.0-r3

Description

Multi-platform GUI for pass, the standard unix password manager

Added to portage

2026-01-29

stress-ng - 0.20.00
Ebuild name:

app-benchmarks/stress-ng-0.20.00

Description

Stress test for a computer system with various selectable ways

Added to portage

2026-01-29

stripe - 14.3.0
Ebuild name:

dev-python/stripe-14.3.0

Description

Stripe Python bindings

Added to portage

2026-01-29

thunderbird - 140.7.1
Ebuild name:

mail-client/thunderbird-140.7.1

Description

Thunderbird Mail Client

Added to portage

2026-01-29

thunderbird - 147.0.1
Ebuild name:

mail-client/thunderbird-147.0.1

Description

Thunderbird Mail Client

Added to portage

2026-01-29

thunderbird-bin - 140.7.1
Ebuild name:

mail-client/thunderbird-bin-140.7.1

Description

Thunderbird Mail Client

Added to portage

2026-01-29

thunderbird-bin - 147.0.1
Ebuild name:

mail-client/thunderbird-bin-147.0.1

Description

Thunderbird Mail Client

Added to portage

2026-01-29

tmuxp - 1.64.0
Ebuild name:

app-misc/tmuxp-1.64.0

Description

tmux session manager. built on libtmux

Added to portage

2026-01-29

tomcat - 10.1.52
Ebuild name:

www-servers/tomcat-10.1.52

Description

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

Added to portage

2026-01-29

tor - 0.4.8.22
Ebuild name:

net-vpn/tor-0.4.8.22

Description

Anonymizing overlay network for TCP

Added to portage

2026-01-29

transient - 0.11.0-r1
Ebuild name:

app-emacs/transient-0.11.0-r1

Description

Transient commands abstraction for GNU Emacs

Added to portage

2026-01-29

transient - 0.12.0-r1
Ebuild name:

app-emacs/transient-0.12.0-r1

Description

Transient commands abstraction for GNU Emacs

Added to portage

2026-01-29

ttl - 0.15.2
Ebuild name:

net-analyzer/ttl-0.15.2

Description

Modern traceroute/mtr-style TUI with hop stats and optional ASN/geo enrichm

Added to portage

2026-01-29

virtualbox - 7.1.16
Ebuild name:

app-emulation/virtualbox-7.1.16

Description

Family of powerful x86 virtualization products for enterprise and h

Added to portage

2026-01-29

virtualbox - 7.2.6
Ebuild name:

app-emulation/virtualbox-7.2.6

Description

Family of powerful x86 virtualization products for enterprise and ho

Added to portage

2026-01-29

virtualbox-additions - 7.1.16
Ebuild name:

app-emulation/virtualbox-additions-7.1.16

Description

CD image containing guest additions for VirtualBox

Added to portage

2026-01-29

virtualbox-additions - 7.2.6
Ebuild name:

app-emulation/virtualbox-additions-7.2.6

Description

CD image containing guest additions for VirtualBox

Added to portage

2026-01-29

virtualbox-extpack-oracle - 7.1.16
Ebuild name:

app-emulation/virtualbox-extpack-oracle-7.1.16

Description

PUEL extensions for VirtualBox

Added to portage

2026-01-29

virtualbox-extpack-oracle - 7.2.6
Ebuild name:

app-emulation/virtualbox-extpack-oracle-7.2.6

Description

PUEL extensions for VirtualBox

Added to portage

2026-01-29

virtualbox-guest-additions - 7.1.16
Ebuild name:

app-emulation/virtualbox-guest-additions-7.1.16

Description

VirtualBox kernel modules and user-space tools for

Added to portage

2026-01-29

virtualbox-guest-additions - 7.2.6
Ebuild name:

app-emulation/virtualbox-guest-additions-7.2.6

Description

VirtualBox kernel modules and user-space tools for G

Added to portage

2026-01-29

virtualbox-guest-modules - 7.1.16
Ebuild name:

app-emulation/virtualbox-guest-modules-7.1.16

Description

Kernel Modules for Virtualbox Guest Additions

Added to portage

2026-01-29

virtualbox-guest-modules - 7.2.6
Ebuild name:

app-emulation/virtualbox-guest-modules-7.2.6

Description

Kernel Modules for Virtualbox Guest Additions

Added to portage

2026-01-29

virtualbox-kvm - 7.1.16_pre20251103
Ebuild name:

app-emulation/virtualbox-kvm-7.1.16_pre20251103

Description

Family of powerful x86 virtualization products for

Added to portage

2026-01-29

virtualbox-modules - 7.1.16
Ebuild name:

app-emulation/virtualbox-modules-7.1.16

Description

Kernel Modules for Virtualbox

Added to portage

2026-01-29

virtualbox-modules - 7.2.6
Ebuild name:

app-emulation/virtualbox-modules-7.2.6

Description

Kernel Modules for Virtualbox

Added to portage

2026-01-29

xarray - 2026.1.0
Ebuild name:

dev-python/xarray-2026.1.0

Description

N-D labeled arrays and datasets in Python

Added to portage

2026-01-29

zxcvbn - 4.5.0
Ebuild name:

dev-python/zxcvbn-4.5.0

Description

Realistic password strength estimator

Added to portage

2026-01-29

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