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:

84741

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-05-01
eog - 49.3
Ebuild name:

media-gfx/eog-49.3

Description

The Eye of GNOME image viewer

Added to portage

2026-05-01

gdm - 49.2
Ebuild name:

gnome-base/gdm-49.2

Description

GNOME Display Manager for managing graphical display servers and user logins

Added to portage

2026-05-01

gdm-greeter - 0
Ebuild name:

acct-user/gdm-greeter-0

Description

User for GDM greeter specialized for elogind

Added to portage

2026-05-01

gjs - 1.88.0
Ebuild name:

dev-libs/gjs-1.88.0

Description

Javascript bindings for GNOME

Added to portage

2026-05-01

glycin - 2.1.1-r1
Ebuild name:

media-libs/glycin-2.1.1-r1

Description

Sandboxed and extendable image loading library

Added to portage

2026-05-01

gnome-control-center - 49.7
Ebuild name:

gnome-base/gnome-control-center-49.7

Description

GNOME's main interface to configure various aspects of the des

Added to portage

2026-05-01

gnome-mahjongg - 49.1.1
Ebuild name:

games-board/gnome-mahjongg-49.1.1

Description

Disassemble a pile of tiles by removing matching pairs

Added to portage

2026-05-01

gnome-maps - 49.5
Ebuild name:

sci-geosciences/gnome-maps-49.5

Description

A map application for GNOME

Added to portage

2026-05-01

gnome-remote-desktop - 49.3
Ebuild name:

net-misc/gnome-remote-desktop-49.3

Description

Remote desktop server which allows you to connect to your machin

Added to portage

2026-05-01

gnome-session - 49.2
Ebuild name:

gnome-base/gnome-session-49.2

Description

Gnome session manager

Added to portage

2026-05-01

gnome-session-openrc - 49.0
Ebuild name:

gnome-base/gnome-session-openrc-49.0

Description

Gnome session leader for OpenRC

Added to portage

2026-05-01

gnome-settings-daemon - 49.1
Ebuild name:

gnome-base/gnome-settings-daemon-49.1

Description

Gnome Settings Daemon

Added to portage

2026-05-01

gnome-shell - 49.6
Ebuild name:

gnome-base/gnome-shell-49.6

Description

Provides core UI functions for the GNOME desktop

Added to portage

2026-05-01

gnome-shell-extension-bing-wallpaper - 53
Ebuild name:

gnome-extra/gnome-shell-extension-bing-wallpaper-53

Description

Change your wallpaper daily to the bing.com bac

Added to portage

2026-05-01

gnome-shell-extension-pop-shell - 1.2.0_p20260331
Ebuild name:

gnome-extra/gnome-shell-extension-pop-shell-1.2.0_p20260331

Description

Keyboard-driven layer for GNOME Shell w

Added to portage

2026-05-01

gnome-shell-extensions - 49.0
Ebuild name:

gnome-extra/gnome-shell-extensions-49.0

Description

JavaScript extensions for GNOME Shell

Added to portage

2026-05-01

gnome-sudoku - 49.5
Ebuild name:

games-puzzle/gnome-sudoku-49.5

Description

Test your logic skills in this number grid puzzle

Added to portage

2026-05-01

gnome-user-docs - 49.5
Ebuild name:

gnome-extra/gnome-user-docs-49.5

Description

GNOME end user documentation

Added to portage

2026-05-01

gnote - 49.4
Ebuild name:

app-misc/gnote-49.4

Description

Desktop note-taking application

Added to portage

2026-05-01

gsettings-desktop-schemas - 49.1
Ebuild name:

gnome-base/gsettings-desktop-schemas-49.1

Description

Collection of GSettings schemas for GNOME desktop

Added to portage

2026-05-01

h5utils - 1.13.2
Ebuild name:

sci-misc/h5utils-1.13.2

Description

Utilities for visualization and conversion of HDF5 files

Added to portage

2026-05-01

installkernel - 68
Ebuild name:

sys-kernel/installkernel-68

Description

Gentoo fork of installkernel script from debianutils

Added to portage

2026-05-01

ipyparallel - 9.1.0-r1
Ebuild name:

dev-python/ipyparallel-9.1.0-r1

Description

Interactive Parallel Computing with IPython

Added to portage

2026-05-01

mold - 2.41.0
Ebuild name:

sys-devel/mold-2.41.0

Description

A Modern Linker

Added to portage

2026-05-01

mutter - 49.5
Ebuild name:

x11-wm/mutter-49.5

Description

GNOME compositing window manager based on Clutter

Added to portage

2026-05-01

nautilus - 49.6
Ebuild name:

gnome-base/nautilus-49.6

Description

Default file manager for the GNOME desktop

Added to portage

2026-05-01

nim-mode - 0.4.2_p20231101
Ebuild name:

app-emacs/nim-mode-0.4.2_p20231101

Description

Emacs major mode for the Nim programming language support

Added to portage

2026-05-01

orca - 49.7
Ebuild name:

app-accessibility/orca-49.7

Description

Extensible screen reader that provides access to the desktop

Added to portage

2026-05-01

papers - 49.6
Ebuild name:

app-text/papers-49.6

Description

A document viewer for the GNOME desktop

Added to portage

2026-05-01

paperwork-backend - 2.2.5-r1
Ebuild name:

app-text/paperwork-backend-2.2.5-r1

Description

Backend part of Paperwork (Python API, no UI)

Added to portage

2026-05-01

pch-session - 49.0
Ebuild name:

gnome-extra/pch-session-49.0

Description

Unofficial gnome based session with different default settings and ext

Added to portage

2026-05-01

ptyxis - 49.3
Ebuild name:

x11-terms/ptyxis-49.3

Description

A terminal for a container-oriented desktop

Added to portage

2026-05-01

quadrapassel - 49.3
Ebuild name:

games-puzzle/quadrapassel-49.3

Description

Fit falling blocks together

Added to portage

2026-05-01

zsdx - 1.13.0_p20240219
Ebuild name:

games-rpg/zsdx-1.13.0_p20240219

Description

Free 2D Zelda fangame

Added to portage

2026-05-01

zsxd - 1.13.0_p20251108
Ebuild name:

games-rpg/zsxd-1.13.0_p20251108

Description

Free 2D Zelda fangame parody

Added to portage

2026-05-01

2026-04-30
AusweisApp - 2.5.1
Ebuild name:

sys-auth/AusweisApp-2.5.1

Description

Official authentication app for German ID cards and residence permits

Added to portage

2026-04-30

acme-sh - 3.1.3
Ebuild name:

app-crypt/acme-sh-3.1.3

Description

A pure Unix shell script implementing ACME client protocol

Added to portage

2026-04-30

asahi-sources - 6.19.14_p1
Ebuild name:

sys-kernel/asahi-sources-6.19.14_p1

Description

Asahi Linux kernel sources

Added to portage

2026-04-30

awscli - 1.45.0
Ebuild name:

app-admin/awscli-1.45.0

Description

Universal Command Line Environment for AWS

Added to portage

2026-04-30

bedrock-server - 1.26.14.1
Ebuild name:

games-server/bedrock-server-1.26.14.1

Description

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

Added to portage

2026-04-30

boto3 - 1.43.0
Ebuild name:

dev-python/boto3-1.43.0

Description

The AWS SDK for Python

Added to portage

2026-04-30

botocore - 1.43.0
Ebuild name:

dev-python/botocore-1.43.0

Description

Low-level, data-driven core of boto 3

Added to portage

2026-04-30

build - 1.5.0
Ebuild name:

dev-python/build-1.5.0

Description

A simple, correct PEP517 package builder

Added to portage

2026-04-30

c-blosc2 - 3.0.1
Ebuild name:

dev-libs/c-blosc2-3.0.1

Description

Blocking, shuffling and lossless compression library

Added to portage

2026-04-30

cargo-pgrx - 0.18.0
Ebuild name:

dev-util/cargo-pgrx-0.18.0

Description

pgrx A Rust framework for creating Postgres extensions

Added to portage

2026-04-30

cfn-lint - 1.50.1
Ebuild name:

dev-python/cfn-lint-1.50.1

Description

CloudFormation Linter

Added to portage

2026-04-30

chafa - 1.18.2
Ebuild name:

media-gfx/chafa-1.18.2

Description

versatile and fast Unicode/ASCII/ANSI graphics renderer

Added to portage

2026-04-30

cryptmount - 6.4.0
Ebuild name:

sys-fs/cryptmount-6.4.0

Description

A utility for management and user-mode mounting of encrypted filesystems

Added to portage

2026-04-30

crystal - 1.20.0-r1
Ebuild name:

dev-lang/crystal-1.20.0-r1

Description

The Crystal Programming Language

Added to portage

2026-04-30

crystal - 1.20.1
Ebuild name:

dev-lang/crystal-1.20.1

Description

The Crystal Programming Language

Added to portage

2026-04-30

dhcpcd - 10.3.2
Ebuild name:

net-misc/dhcpcd-10.3.2

Description

A fully featured, yet light weight RFC2131 compliant DHCP client

Added to portage

2026-04-30

discord - 0.0.135
Ebuild name:

net-im/discord-0.0.135

Description

All-in-one voice and text chat for gamers

Added to portage

2026-04-30

dist-kernel - 5.10.253_p1
Ebuild name:

virtual/dist-kernel-5.10.253_p1

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-04-30

dist-kernel - 5.15.203_p1
Ebuild name:

virtual/dist-kernel-5.15.203_p1

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-04-30

dist-kernel - 6.1.169_p1
Ebuild name:

virtual/dist-kernel-6.1.169_p1

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-04-30

dist-kernel - 6.12.84_p1
Ebuild name:

virtual/dist-kernel-6.12.84_p1

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-04-30

dist-kernel - 6.6.136_p1
Ebuild name:

virtual/dist-kernel-6.6.136_p1

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-04-30

distrobox - 1.8.2.5
Ebuild name:

app-containers/distrobox-1.8.2.5

Description

Use any Linux distribution inside your terminal (powered by docker

Added to portage

2026-04-30

dkjson - 2.9
Ebuild name:

dev-lua/dkjson-2.9

Description

David Kolf's JSON module for Lua

Added to portage

2026-04-30

dulwich - 1.2.1
Ebuild name:

dev-python/dulwich-1.2.1

Description

Pure-Python implementation of the Git file formats and protocols

Added to portage

2026-04-30

findpython - 0.8.0
Ebuild name:

dev-python/findpython-0.8.0

Description

A utility to find python versions on your system

Added to portage

2026-04-30

frr - 10.1.4-r2
Ebuild name:

net-misc/frr-10.1.4-r2

Description

The FRRouting Protocol Suite

Added to portage

2026-04-30

frr - 10.1.5-r1
Ebuild name:

net-misc/frr-10.1.5-r1

Description

The FRRouting Protocol Suite

Added to portage

2026-04-30

frr - 10.2.5-r2
Ebuild name:

net-misc/frr-10.2.5-r2

Description

The FRRouting Protocol Suite

Added to portage

2026-04-30

frr - 10.3.3-r2
Ebuild name:

net-misc/frr-10.3.3-r2

Description

The FRRouting Protocol Suite

Added to portage

2026-04-30

frr - 10.3.4-r1
Ebuild name:

net-misc/frr-10.3.4-r1

Description

The FRRouting Protocol Suite

Added to portage

2026-04-30

frr - 10.4.3-r2
Ebuild name:

net-misc/frr-10.4.3-r2

Description

The FRRouting Protocol Suite

Added to portage

2026-04-30

frr - 10.4.4-r1
Ebuild name:

net-misc/frr-10.4.4-r1

Description

The FRRouting Protocol Suite

Added to portage

2026-04-30

frr - 10.5.3-r2
Ebuild name:

net-misc/frr-10.5.3-r2

Description

The FRRouting Protocol Suite

Added to portage

2026-04-30

frr - 10.5.4-r1
Ebuild name:

net-misc/frr-10.5.4-r1

Description

The FRRouting Protocol Suite

Added to portage

2026-04-30

frr - 10.6.1-r1
Ebuild name:

net-misc/frr-10.6.1-r1

Description

The FRRouting Protocol Suite

Added to portage

2026-04-30

fsspec - 2026.4.0
Ebuild name:

dev-python/fsspec-2026.4.0

Description

A specification that python filesystems should adhere to

Added to portage

2026-04-30

gcc - 16.1.0
Ebuild name:

sys-devel/gcc-16.1.0

Description

The GNU Compiler Collection

Added to portage

2026-04-30

gcc - 16.2.9999
Ebuild name:

sys-devel/gcc-16.2.9999

Description

The GNU Compiler Collection

Added to portage

2026-04-30

geekbench - 6.7.1
Ebuild name:

app-benchmarks/geekbench-6.7.1

Description

A Cross-Platform Benchmark for Android, iOS, Linux, MacOS and Window

Added to portage

2026-04-30

gentoo-kernel - 5.10.253_p1
Ebuild name:

sys-kernel/gentoo-kernel-5.10.253_p1

Description

Linux kernel built with Gentoo patches

Added to portage

2026-04-30

gentoo-kernel - 5.15.203_p1
Ebuild name:

sys-kernel/gentoo-kernel-5.15.203_p1

Description

Linux kernel built with Gentoo patches

Added to portage

2026-04-30

gentoo-kernel - 6.1.169_p1
Ebuild name:

sys-kernel/gentoo-kernel-6.1.169_p1

Description

Linux kernel built with Gentoo patches

Added to portage

2026-04-30

gentoo-kernel - 6.12.84_p1
Ebuild name:

sys-kernel/gentoo-kernel-6.12.84_p1

Description

Linux kernel built with Gentoo patches

Added to portage

2026-04-30

gentoo-kernel - 6.6.136_p1
Ebuild name:

sys-kernel/gentoo-kernel-6.6.136_p1

Description

Linux kernel built with Gentoo patches

Added to portage

2026-04-30

gentoo-kernel-bin - 5.10.253_p1
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.253_p1

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-04-30

gentoo-kernel-bin - 5.15.203_p1
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.203_p1

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-04-30

gentoo-kernel-bin - 6.1.169_p1
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.169_p1

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-04-30

gentoo-kernel-bin - 6.12.84_p1
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.84_p1

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-04-30

gentoo-kernel-bin - 6.6.136_p1
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.136_p1

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-04-30

gentoo-sources - 5.10.254
Ebuild name:

sys-kernel/gentoo-sources-5.10.254

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-04-30

gentoo-sources - 5.15.204
Ebuild name:

sys-kernel/gentoo-sources-5.15.204

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-04-30

gentoo-sources - 6.1.170
Ebuild name:

sys-kernel/gentoo-sources-6.1.170

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-04-30

gentoo-sources - 6.12.85
Ebuild name:

sys-kernel/gentoo-sources-6.12.85

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-04-30

gentoo-sources - 6.18.26
Ebuild name:

sys-kernel/gentoo-sources-6.18.26

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-04-30

gentoo-sources - 6.6.137
Ebuild name:

sys-kernel/gentoo-sources-6.6.137

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-04-30

gentoo-sources - 7.0.3
Ebuild name:

sys-kernel/gentoo-sources-7.0.3

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-04-30

gnutls - 3.8.13
Ebuild name:

net-libs/gnutls-3.8.13

Description

Secure communications library implementing the SSL, TLS and DTLS protocols

Added to portage

2026-04-30

h5utils - 1.13.1-r1
Ebuild name:

sci-misc/h5utils-1.13.1-r1

Description

Utilities for visualization and conversion of HDF5 files

Added to portage

2026-04-30

ibus-table - 1.17.18
Ebuild name:

app-i18n/ibus-table-1.17.18

Description

Tables engines for IBus

Added to portage

2026-04-30

ibus-typing-booster - 2.30.7
Ebuild name:

app-i18n/ibus-typing-booster-2.30.7

Description

Completion input method for IBus

Added to portage

2026-04-30

inetutils - 2.8
Ebuild name:

net-misc/inetutils-2.8

Description

Collection of common network programs

Added to portage

2026-04-30

joplin-desktop - 3.6.10
Ebuild name:

app-office/joplin-desktop-3.6.10

Description

Secure note taking and to-do app with synchronization capabilities

Added to portage

2026-04-30

jupyterlab - 4.5.7
Ebuild name:

dev-python/jupyterlab-4.5.7

Description

JupyterLab computational environment

Added to portage

2026-04-30

keepsecret - 1.1.0
Ebuild name:

app-crypt/keepsecret-1.1.0

Description

Password manager GUI for SecretService providers

Added to portage

2026-04-30

lcms - 2.19
Ebuild name:

media-libs/lcms-2.19

Description

A lightweight, speed optimized color management engine

Added to portage

2026-04-30

level-zero - 1.28.3
Ebuild name:

dev-libs/level-zero-1.28.3

Description

oneAPI Level Zero headers, loader and validation layer

Added to portage

2026-04-30

libmacaroons - 0.3.0-r3
Ebuild name:

dev-libs/libmacaroons-0.3.0-r3

Description

C library for generation and use of macaroons authorization credenti

Added to portage

2026-04-30

libupnp - 1.14.31
Ebuild name:

net-libs/libupnp-1.14.31

Description

An Portable Open Source UPnP Development Kit

Added to portage

2026-04-30

libupnp - 1.18.5
Ebuild name:

net-libs/libupnp-1.18.5

Description

An Portable Open Source UPnP Development Kit

Added to portage

2026-04-30

luasystem - 0.7.1
Ebuild name:

dev-lua/luasystem-0.7.1

Description

Platform independent system calls for Lua

Added to portage

2026-04-30

mattermost-desktop-bin - 5.13.6_rc1
Ebuild name:

net-im/mattermost-desktop-bin-5.13.6_rc1

Description

Mattermost Desktop application

Added to portage

2026-04-30

mesa - 26.0.5-r1
Ebuild name:

media-libs/mesa-26.0.5-r1

Description

OpenGL-like graphic library for Linux

Added to portage

2026-04-30

microsoft-identity-broker - 3.0.2
Ebuild name:

sys-auth/microsoft-identity-broker-3.0.2

Description

Microsoft Authentication Broker to access a corporate envi

Added to portage

2026-04-30

ninja-mode - 1.11.1-r2
Ebuild name:

app-emacs/ninja-mode-1.11.1-r2

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-04-30

ninja-mode - 1.12.0
Ebuild name:

app-emacs/ninja-mode-1.12.0

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-04-30

ninja-mode - 1.12.1
Ebuild name:

app-emacs/ninja-mode-1.12.1

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-04-30

nix-mode - 1.5.0
Ebuild name:

app-emacs/nix-mode-1.5.0

Description

GNU Emacs major mode for editing Nix expressions

Added to portage

2026-04-30

no-littering - 1.8.5
Ebuild name:

app-emacs/no-littering-1.8.5

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-04-30

no-littering - 1.8.6
Ebuild name:

app-emacs/no-littering-1.8.6

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-04-30

plotly - 6.7.0-r1
Ebuild name:

dev-python/plotly-6.7.0-r1

Description

Browser-based graphing library for Python

Added to portage

2026-04-30

polkit - 126-r3
Ebuild name:

sys-auth/polkit-126-r3

Description

Policy framework for controlling privileges for system-wide services

Added to portage

2026-04-30

postfix - 3.12_pre20260429
Ebuild name:

mail-mta/postfix-3.12_pre20260429

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2026-04-30

prosody - 13.0.5
Ebuild name:

net-im/prosody-13.0.5

Description

Prosody is a modern XMPP communication server

Added to portage

2026-04-30

pure-ftpd - 1.0.54
Ebuild name:

net-ftp/pure-ftpd-1.0.54

Description

Fast, production-quality, standard-conformant FTP server

Added to portage

2026-04-30

pycurl - 7.46.0
Ebuild name:

dev-python/pycurl-7.46.0

Description

Python bindings for curl/libcurl

Added to portage

2026-04-30

qtdeclarative - 6.10.3-r1
Ebuild name:

dev-qt/qtdeclarative-6.10.3-r1

Description

Qt Declarative (Quick 2)

Added to portage

2026-04-30

rar - 7.21
Ebuild name:

app-arch/rar-7.21

Description

RAR compressor/uncompressor

Added to portage

2026-04-30

rkward - 0.8.3
Ebuild name:

sci-mathematics/rkward-0.8.3

Description

IDE for the R-project

Added to portage

2026-04-30

s3transfer - 0.17.0
Ebuild name:

dev-python/s3transfer-0.17.0

Description

An Amazon S3 Transfer Manager

Added to portage

2026-04-30

twisted - 26.4.0_rc2
Ebuild name:

dev-python/twisted-26.4.0_rc2

Description

An asynchronous networking framework written in Python

Added to portage

2026-04-30

unifi - 10.3.58
Ebuild name:

net-wireless/unifi-10.3.58

Description

A Management Controller for Ubiquiti Networks UniFi APs

Added to portage

2026-04-30

unrar - 7.2.6
Ebuild name:

app-arch/unrar-7.2.6

Description

Uncompress rar files

Added to portage

2026-04-30

vanilla-sources - 5.10.254
Ebuild name:

sys-kernel/vanilla-sources-5.10.254

Description

Full sources for the Linux kernel

Added to portage

2026-04-30

vanilla-sources - 5.15.204
Ebuild name:

sys-kernel/vanilla-sources-5.15.204

Description

Full sources for the Linux kernel

Added to portage

2026-04-30

vanilla-sources - 6.1.170
Ebuild name:

sys-kernel/vanilla-sources-6.1.170

Description

Full sources for the Linux kernel

Added to portage

2026-04-30

vanilla-sources - 6.12.85
Ebuild name:

sys-kernel/vanilla-sources-6.12.85

Description

Full sources for the Linux kernel

Added to portage

2026-04-30

vanilla-sources - 6.18.26
Ebuild name:

sys-kernel/vanilla-sources-6.18.26

Description

Full sources for the Linux kernel

Added to portage

2026-04-30

vanilla-sources - 6.6.137
Ebuild name:

sys-kernel/vanilla-sources-6.6.137

Description

Full sources for the Linux kernel

Added to portage

2026-04-30

vanilla-sources - 7.0.3
Ebuild name:

sys-kernel/vanilla-sources-7.0.3

Description

Full sources for the Linux kernel

Added to portage

2026-04-30

weston - 15.0.1
Ebuild name:

dev-libs/weston-15.0.1

Description

Wayland reference compositor

Added to portage

2026-04-30

wireshark - 4.6.5
Ebuild name:

net-analyzer/wireshark-4.6.5

Description

Network protocol analyzer (sniffer)

Added to portage

2026-04-30

ytmusicapi - 1.12.0
Ebuild name:

dev-python/ytmusicapi-1.12.0

Description

Unofficial API for YouTube Music

Added to portage

2026-04-30

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