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:

82289

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
2025-12-03
ansible-compat - 25.12.0
Ebuild name:

dev-python/ansible-compat-25.12.0

Description

Contains functions that facilitate working with various versions

Added to portage

2025-12-03

aws-sam-translator - 1.105.0
Ebuild name:

dev-python/aws-sam-translator-1.105.0

Description

A library that transform SAM templates into AWS CloudFormatio

Added to portage

2025-12-03

awscli - 1.43.7
Ebuild name:

app-admin/awscli-1.43.7

Description

Universal Command Line Environment for AWS

Added to portage

2025-12-03

borgbackup - 1.4.3
Ebuild name:

app-backup/borgbackup-1.4.3

Description

Deduplicating backup program with compression and authenticated encrypt

Added to portage

2025-12-03

boto3 - 1.42.1
Ebuild name:

dev-python/boto3-1.42.1

Description

The AWS SDK for Python

Added to portage

2025-12-03

botocore - 1.42.1
Ebuild name:

dev-python/botocore-1.42.1

Description

Low-level, data-driven core of boto 3

Added to portage

2025-12-03

django - 4.2.27
Ebuild name:

dev-python/django-4.2.27

Description

High-level Python web framework

Added to portage

2025-12-03

django - 5.1.15
Ebuild name:

dev-python/django-5.1.15

Description

High-level Python web framework

Added to portage

2025-12-03

django - 5.2.9
Ebuild name:

dev-python/django-5.2.9

Description

High-level Python web framework

Added to portage

2025-12-03

gentoo-sources - 6.18.0
Ebuild name:

sys-kernel/gentoo-sources-6.18.0

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-12-03

icaclient - 25.05.0.44-r1
Ebuild name:

net-misc/icaclient-25.05.0.44-r1

Description

ICA Client for Citrix Presentation servers

Added to portage

2025-12-03

libsdl2 - 2.32.60
Ebuild name:

media-libs/libsdl2-2.32.60

Description

Simple Direct Media Layer

Added to portage

2025-12-03

libsdl3 - 3.2.28
Ebuild name:

media-libs/libsdl3-3.2.28

Description

Simple Direct Media Layer

Added to portage

2025-12-03

linux-docs - 6.18
Ebuild name:

sys-kernel/linux-docs-6.18

Description

Developer documentation generated from the Linux kernel

Added to portage

2025-12-03

numpydoc - 1.10.0
Ebuild name:

dev-python/numpydoc-1.10.0

Description

Sphinx extension to support docstrings in Numpy format

Added to portage

2025-12-03

openhab-bin - 5.0.2-r1
Ebuild name:

app-misc/openhab-bin-5.0.2-r1

Description

An open-source automation software for your home

Added to portage

2025-12-03

openhab-bin - 5.0.3-r1
Ebuild name:

app-misc/openhab-bin-5.0.3-r1

Description

An open-source automation software for your home

Added to portage

2025-12-03

pecl-mongodb - 1.16.2-r1
Ebuild name:

dev-php/pecl-mongodb-1.16.2-r1

Description

MongoDB database driver for PHP

Added to portage

2025-12-03

php-mode - 9999
Ebuild name:

app-emacs/php-mode-9999

Description

GNU Emacs major mode for editing PHP code

Added to portage

2025-12-03

pinentry - 0.1_p20250408
Ebuild name:

app-emacs/pinentry-0.1_p20250408

Description

GnuPG Pinentry server implementation for Emacs

Added to portage

2025-12-03

pkg-info - 0.6
Ebuild name:

app-emacs/pkg-info-0.6

Description

Provide information about Emacs packages

Added to portage

2025-12-03

planner - 3.42-r1
Ebuild name:

app-emacs/planner-3.42-r1

Description

Maintain a local Wiki using Emacs-friendly markup

Added to portage

2025-12-03

psycopg - 3.3.1
Ebuild name:

dev-python/psycopg-3.3.1

Description

PostgreSQL database adapter for Python

Added to portage

2025-12-03

pydyf - 0.12.1
Ebuild name:

dev-python/pydyf-0.12.1

Description

A low-level PDF generator

Added to portage

2025-12-03

pymongo - 4.15.5
Ebuild name:

dev-python/pymongo-4.15.5

Description

Python driver for MongoDB

Added to portage

2025-12-03

pyside - 6.10.1-r1
Ebuild name:

dev-python/pyside-6.10.1-r1

Description

Python bindings for the Qt framework

Added to portage

2025-12-03

pytest-httpx - 0.36.0
Ebuild name:

dev-python/pytest-httpx-0.36.0

Description

Send responses to HTTPX using pytest

Added to portage

2025-12-03

python - 0.3.13.10
Ebuild name:

dev-lang/python-0.3.13.10

Description

Freethreading (no-GIL) version of Python programming language

Added to portage

2025-12-03

python - 0.3.14.1
Ebuild name:

dev-lang/python-0.3.14.1

Description

Freethreading (no-GIL) version of Python programming language

Added to portage

2025-12-03

python - 3.13.10
Ebuild name:

dev-lang/python-3.13.10

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2025-12-03

python - 3.14.1
Ebuild name:

dev-lang/python-3.14.1

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2025-12-03

python-tests - 0.3.13.10
Ebuild name:

dev-python/python-tests-0.3.13.10

Description

Test modules from dev-lang/python

Added to portage

2025-12-03

python-tests - 0.3.14.1
Ebuild name:

dev-python/python-tests-0.3.14.1

Description

Test modules from dev-lang/python

Added to portage

2025-12-03

python-tests - 3.13.10
Ebuild name:

dev-python/python-tests-3.13.10

Description

Test modules from dev-lang/python

Added to portage

2025-12-03

python-tests - 3.14.1
Ebuild name:

dev-python/python-tests-3.14.1

Description

Test modules from dev-lang/python

Added to portage

2025-12-03

pyzotero - 1.7.6
Ebuild name:

dev-python/pyzotero-1.7.6

Description

A Python client for the Zotero API

Added to portage

2025-12-03

ruff - 0.14.7
Ebuild name:

dev-util/ruff-0.14.7

Description

An extremely fast Python linter, written in Rust

Added to portage

2025-12-03

sabctools - 9.0.0
Ebuild name:

dev-python/sabctools-9.0.0

Description

Module providing raw yEnc encoding/decoding for SABnzbd

Added to portage

2025-12-03

safetensors - 0.7.0
Ebuild name:

sci-ml/safetensors-0.7.0

Description

Simple, safe way to store and distribute tensors

Added to portage

2025-12-03

sphinx-gallery - 0.20.0
Ebuild name:

dev-python/sphinx-gallery-0.20.0

Description

Sphinx extension to automatically generate an examples gallery

Added to portage

2025-12-03

sqlglot - 28.1.0
Ebuild name:

dev-python/sqlglot-28.1.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2025-12-03

sybil - 9.3.0
Ebuild name:

dev-python/sybil-9.3.0

Description

Automated testing for the examples in your documentation

Added to portage

2025-12-03

syncthing - 2.0.12
Ebuild name:

net-p2p/syncthing-2.0.12

Description

Open Source Continuous File Synchronization

Added to portage

2025-12-03

tmuxp - 1.59.0
Ebuild name:

app-misc/tmuxp-1.59.0

Description

tmux session manager. built on libtmux

Added to portage

2025-12-03

urwid - 3.0.4
Ebuild name:

dev-python/urwid-3.0.4

Description

Curses-based user interface library for Python

Added to portage

2025-12-03

uv - 0.9.15
Ebuild name:

dev-python/uv-0.9.15

Description

A Python package installer and resolver, written in Rust

Added to portage

2025-12-03

uv-build - 0.9.15
Ebuild name:

dev-python/uv-build-0.9.15

Description

PEP517 uv build backend

Added to portage

2025-12-03

weasyprint - 67.0
Ebuild name:

dev-python/weasyprint-67.0

Description

Visual rendering engine for HTML and CSS that can export to PDF

Added to portage

2025-12-03

wordpress - 6.9
Ebuild name:

www-apps/wordpress-6.9

Description

Wordpress PHP and MySQL based content management system (CMS)

Added to portage

2025-12-03

zlib-ng - 2.3.2
Ebuild name:

sys-libs/zlib-ng-2.3.2

Description

Fork of the zlib data compression library

Added to portage

2025-12-03

2025-12-02
astmanproxy - 1.30.0
Ebuild name:

net-misc/astmanproxy-1.30.0

Description

Proxy for the Asterisk manager interface

Added to portage

2025-12-02

aws-c-auth - 0.9.2
Ebuild name:

dev-libs/aws-c-auth-0.9.2

Description

AWS C Auth C99 library implementation of AWS client-side authentication.

Added to portage

2025-12-02

aws-c-cal - 0.9.13
Ebuild name:

dev-libs/aws-c-cal-0.9.13

Description

Crypto Abstraction Layer Cross-Platform C99 wrapper for cryptography prim

Added to portage

2025-12-02

aws-c-common - 0.12.6
Ebuild name:

dev-libs/aws-c-common-0.12.6

Description

Core c99 package for AWS SDK for C.

Added to portage

2025-12-02

aws-c-s3 - 0.11.2
Ebuild name:

dev-libs/aws-c-s3-0.11.2

Description

AWS C S3 async library.

Added to portage

2025-12-02

awscli - 1.43.6
Ebuild name:

app-admin/awscli-1.43.6

Description

Universal Command Line Environment for AWS

Added to portage

2025-12-02

boto3 - 1.42.0
Ebuild name:

dev-python/boto3-1.42.0

Description

The AWS SDK for Python

Added to portage

2025-12-02

botocore - 1.41.6
Ebuild name:

dev-python/botocore-1.41.6

Description

Low-level, data-driven core of boto 3

Added to portage

2025-12-02

calibre - 8.15.0
Ebuild name:

app-text/calibre-8.15.0

Description

Ebook management application

Added to portage

2025-12-02

clang - 21.1.7
Ebuild name:

dev-python/clang-21.1.7

Description

Python bindings for llvm-core/clang

Added to portage

2025-12-02

clang - 21.1.7
Ebuild name:

llvm-core/clang-21.1.7

Description

C language family frontend for LLVM

Added to portage

2025-12-02

clang-common - 21.1.7
Ebuild name:

llvm-core/clang-common-21.1.7

Description

Common files shared between multiple slots of clang

Added to portage

2025-12-02

clang-runtime - 21.1.7
Ebuild name:

llvm-runtimes/clang-runtime-21.1.7

Description

Meta-ebuild for clang runtime libraries

Added to portage

2025-12-02

claude-code - 2.0.55
Ebuild name:

dev-util/claude-code-2.0.55

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2025-12-02

claude-code - 2.0.56
Ebuild name:

dev-util/claude-code-2.0.56

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2025-12-02

cmdliner - 2.1.0
Ebuild name:

dev-ml/cmdliner-2.1.0

Description

Declarative definition of command line interfaces for OCaml

Added to portage

2025-12-02

compiler-rt - 21.1.7
Ebuild name:

llvm-runtimes/compiler-rt-21.1.7

Description

Compiler runtime library for clang (built-in part)

Added to portage

2025-12-02

compiler-rt-sanitizers - 21.1.7
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-21.1.7

Description

Compiler runtime libraries for clang (sanitizers & xray

Added to portage

2025-12-02

cryptsetup - 2.8.1-r1
Ebuild name:

sys-fs/cryptsetup-2.8.1-r1

Description

Tool to setup encrypted devices with dm-crypt

Added to portage

2025-12-02

dbeaver-bin - 25.3.0
Ebuild name:

dev-db/dbeaver-bin-25.3.0

Description

Free universal database tool (community edition)

Added to portage

2025-12-02

dist-kernel - 6.12.60
Ebuild name:

virtual/dist-kernel-6.12.60

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-12-02

dist-kernel - 6.17.10
Ebuild name:

virtual/dist-kernel-6.17.10

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-12-02

dist-kernel - 6.6.118
Ebuild name:

virtual/dist-kernel-6.6.118

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-12-02

dtrx - 8.7.1
Ebuild name:

app-arch/dtrx-8.7.1

Description

Do The Right eXtraction - extracts archives of different formats

Added to portage

2025-12-02

egl-wayland2 - 1.0.1_pre20251124
Ebuild name:

gui-libs/egl-wayland2-1.0.1_pre20251124

Description

NVIDIA wayland EGL external platform library, version 2

Added to portage

2025-12-02

egl-x11 - 1.0.4_pre20251111
Ebuild name:

gui-libs/egl-x11-1.0.4_pre20251111

Description

NVIDIA X11/XCB EGL external platform library

Added to portage

2025-12-02

flang - 21.1.7
Ebuild name:

llvm-core/flang-21.1.7

Description

LLVM's Fortran frontend

Added to portage

2025-12-02

flang-rt - 21.1.7
Ebuild name:

llvm-runtimes/flang-rt-21.1.7

Description

LLVM's Fortran runtime

Added to portage

2025-12-02

fwupd - 2.0.18
Ebuild name:

sys-apps/fwupd-2.0.18

Description

Aims to make updating firmware on Linux automatic, safe and reliable

Added to portage

2025-12-02

gentoo-kernel - 6.12.60
Ebuild name:

sys-kernel/gentoo-kernel-6.12.60

Description

Linux kernel built with Gentoo patches

Added to portage

2025-12-02

gentoo-kernel - 6.17.10
Ebuild name:

sys-kernel/gentoo-kernel-6.17.10

Description

Linux kernel built with Gentoo patches

Added to portage

2025-12-02

gentoo-kernel - 6.6.118
Ebuild name:

sys-kernel/gentoo-kernel-6.6.118

Description

Linux kernel built with Gentoo patches

Added to portage

2025-12-02

gentoo-kernel-bin - 6.12.60
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.60

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-12-02

gentoo-kernel-bin - 6.17.10
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.17.10

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-12-02

gentoo-kernel-bin - 6.6.118
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.118

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-12-02

gentoo-sources - 6.12.60
Ebuild name:

sys-kernel/gentoo-sources-6.12.60

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-12-02

gentoo-sources - 6.17.10
Ebuild name:

sys-kernel/gentoo-sources-6.17.10

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-12-02

gentoo-sources - 6.6.118
Ebuild name:

sys-kernel/gentoo-sources-6.6.118

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-12-02

glibc - 2.41-r7
Ebuild name:

sys-libs/glibc-2.41-r7

Description

GNU libc C library

Added to portage

2025-12-02

grass - 8.4.2
Ebuild name:

sci-geosciences/grass-8.4.2

Description

Free GIS with raster and vector functionality, as well as 3D vizualizat

Added to portage

2025-12-02

huggingface_hub - 1.1.6
Ebuild name:

sci-ml/huggingface_hub-1.1.6

Description

a client library to interact with the Hugging Face Hub

Added to portage

2025-12-02

hypothesis - 6.148.5
Ebuild name:

dev-python/hypothesis-6.148.5

Description

A library for property based testing

Added to portage

2025-12-02

joplin-desktop - 3.5.7
Ebuild name:

app-office/joplin-desktop-3.5.7

Description

Secure note taking and to-do app with synchronization capabilities

Added to portage

2025-12-02

kmscon - 9.2.0
Ebuild name:

sys-apps/kmscon-9.2.0

Description

KMS/DRM based virtual Console Emulator

Added to portage

2025-12-02

kodi - 21.3
Ebuild name:

media-tv/kodi-21.3

Description

A free and open source media-player and entertainment hub

Added to portage

2025-12-02

kodi - 22.0_alpha2
Ebuild name:

media-tv/kodi-22.0_alpha2

Description

A free and open source media-player and entertainment hub

Added to portage

2025-12-02

libarchive - 3.8.4
Ebuild name:

app-arch/libarchive-3.8.4

Description

Multi-format archive and compression library

Added to portage

2025-12-02

libclc - 21.1.7
Ebuild name:

llvm-core/libclc-21.1.7

Description

OpenCL C library

Added to portage

2025-12-02

libcxx - 21.1.7
Ebuild name:

llvm-runtimes/libcxx-21.1.7

Description

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

Added to portage

2025-12-02

libcxxabi - 21.1.7
Ebuild name:

llvm-runtimes/libcxxabi-21.1.7

Description

Low level support for a standard C++ library

Added to portage

2025-12-02

libevdev - 1.13.6
Ebuild name:

dev-libs/libevdev-1.13.6

Description

Handler library for evdev events

Added to portage

2025-12-02

libgcc - 21.1.7
Ebuild name:

llvm-runtimes/libgcc-21.1.7

Description

Compiler runtime library for clang, compatible with libgcc_s

Added to portage

2025-12-02

libqalculate - 5.8.2
Ebuild name:

sci-libs/libqalculate-5.8.2

Description

A modern multi-purpose calculator library

Added to portage

2025-12-02

libunwind - 21.1.7
Ebuild name:

llvm-runtimes/libunwind-21.1.7

Description

C++ runtime stack unwinder from LLVM

Added to portage

2025-12-02

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

media-libs/libva-intel-media-driver-25.4.5

Description

Intel Media Driver for VA-API (iHD)

Added to portage

2025-12-02

lit - 21.1.7
Ebuild name:

dev-python/lit-21.1.7

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2025-12-02

lld - 21.1.7
Ebuild name:

llvm-core/lld-21.1.7

Description

The LLVM linker (link editor)

Added to portage

2025-12-02

lldb - 21.1.7
Ebuild name:

llvm-core/lldb-21.1.7

Description

The LLVM debugger

Added to portage

2025-12-02

llvm - 21.1.7
Ebuild name:

dev-ml/llvm-21.1.7

Description

OCaml bindings for LLVM

Added to portage

2025-12-02

llvm - 21.1.7
Ebuild name:

llvm-core/llvm-21.1.7

Description

Low Level Virtual Machine

Added to portage

2025-12-02

llvm-common - 21.1.7
Ebuild name:

llvm-core/llvm-common-21.1.7

Description

Common files shared between multiple slots of LLVM

Added to portage

2025-12-02

mariadb-connector-odbc - 3.2.7-r1
Ebuild name:

dev-db/mariadb-connector-odbc-3.2.7-r1

Description

MariaDB Connector/ODBC

Added to portage

2025-12-02

meson - 1.10.0_rc2
Ebuild name:

dev-build/meson-1.10.0_rc2

Description

Open source build system

Added to portage

2025-12-02

mlir - 21.1.7
Ebuild name:

llvm-core/mlir-21.1.7

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2025-12-02

mozc - 2.32.5994.102
Ebuild name:

app-i18n/mozc-2.32.5994.102

Description

Mozc - Japanese input method editor.

Added to portage

2025-12-02

narwhals - 2.13.0
Ebuild name:

dev-python/narwhals-2.13.0

Description

Extremely lightweight compatibility layer between dataframe libraries

Added to portage

2025-12-02

nginx - 1.28.0-r5
Ebuild name:

www-servers/nginx-1.28.0-r5

Description

Added to portage

2025-12-02

nginx - 1.29.3-r3
Ebuild name:

www-servers/nginx-1.29.3-r3

Description

Added to portage

2025-12-02

nvc - 1.18.2
Ebuild name:

sci-electronics/nvc-1.18.2

Description

NVC is a VHDL compiler and simulator

Added to portage

2025-12-02

nvidia-drivers - 590.44.01
Ebuild name:

x11-drivers/nvidia-drivers-590.44.01

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2025-12-02

offload - 21.1.7
Ebuild name:

llvm-runtimes/offload-21.1.7

Description

OpenMP offloading support

Added to portage

2025-12-02

openmp - 21.1.7
Ebuild name:

llvm-runtimes/openmp-21.1.7

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2025-12-02

opera-developer - 126.0.5734.0
Ebuild name:

www-client/opera-developer-126.0.5734.0

Description

A fast and secure web browser

Added to portage

2025-12-02

pandoc-bin - 3.8.3
Ebuild name:

app-text/pandoc-bin-3.8.3

Description

Conversion between markup formats (binary package)

Added to portage

2025-12-02

picard - 3.0_pre20251117
Ebuild name:

media-sound/picard-3.0_pre20251117

Description

Cross-platform music tagger

Added to portage

2025-12-02

piwigo - 16.0.0
Ebuild name:

www-apps/piwigo-16.0.0

Description

a photo gallery software for the web

Added to portage

2025-12-02

polly - 21.1.7
Ebuild name:

llvm-core/polly-21.1.7

Description

Polyhedral optimizations for LLVM

Added to portage

2025-12-02

postfix - 3.11_pre20251201
Ebuild name:

mail-mta/postfix-3.11_pre20251201

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2025-12-02

psycopg - 3.3.0
Ebuild name:

dev-python/psycopg-3.3.0

Description

PostgreSQL database adapter for Python

Added to portage

2025-12-02

pyclipper - 1.4.0
Ebuild name:

dev-python/pyclipper-1.4.0

Description

Cython wrapper for the C++ translation of the Angus Johnson's Clipper li

Added to portage

2025-12-02

qalculate-gtk - 5.8.2
Ebuild name:

sci-calculators/qalculate-gtk-5.8.2

Description

Modern multi-purpose calculator

Added to portage

2025-12-02

qalculate-qt - 5.8.2
Ebuild name:

sci-calculators/qalculate-qt-5.8.2

Description

Qt-based UI for libqalculate

Added to portage

2025-12-02

reason - 3.17.2
Ebuild name:

dev-ml/reason-3.17.2

Description

Simple, fast & type safe language that leverages JavaScript and OCaml

Added to portage

2025-12-02

rpl - 2.0.4
Ebuild name:

app-text/rpl-2.0.4

Description

Intelligent recursive search/replace utility

Added to portage

2025-12-02

rspamd - 3.14.1
Ebuild name:

mail-filter/rspamd-3.14.1

Description

Rapid spam filtering system

Added to portage

2025-12-02

s3transfer - 0.16.0
Ebuild name:

dev-python/s3transfer-0.16.0

Description

An Amazon S3 Transfer Manager

Added to portage

2025-12-02

sigil - 2.7.0
Ebuild name:

app-text/sigil-2.7.0

Description

Multi-platform WYSIWYG ebook editor for ePub format

Added to portage

2025-12-02

sipp - 3.7.5
Ebuild name:

net-misc/sipp-3.7.5

Description

A free Open Source test tool / traffic generator for the SIP protocol

Added to portage

2025-12-02

sphinx - 9.0.1
Ebuild name:

dev-python/sphinx-9.0.1

Description

Python documentation generator

Added to portage

2025-12-02

topkg - 1.1.1
Ebuild name:

dev-ml/topkg-1.1.1

Description

The transitory OCaml software packager

Added to portage

2025-12-02

trove-classifiers - 2025.12.1.14
Ebuild name:

dev-python/trove-classifiers-2025.12.1.14

Description

Canonical source for classifiers on PyPI (pypi.org)

Added to portage

2025-12-02

types-psutil - 7.1.3.20251202
Ebuild name:

dev-python/types-psutil-7.1.3.20251202

Description

Typing stubs for psutil

Added to portage

2025-12-02

udev-hid-bpf - 2.2.0_p20251121
Ebuild name:

sys-kernel/udev-hid-bpf-2.2.0_p20251121

Description

Automatic HID-BPF loader based on udev events for device wo

Added to portage

2025-12-02

unison - 2.53.8
Ebuild name:

net-misc/unison-2.53.8

Description

Two-way cross-platform file synchronizer

Added to portage

2025-12-02

urh - 2.9.8_p20251123
Ebuild name:

net-wireless/urh-2.9.8_p20251123

Description

Universal Radio Hacker investigate wireless protocols like a boss

Added to portage

2025-12-02

uv - 0.9.14
Ebuild name:

dev-python/uv-0.9.14

Description

A Python package installer and resolver, written in Rust

Added to portage

2025-12-02

uv-build - 0.9.14
Ebuild name:

dev-python/uv-build-0.9.14

Description

PEP517 uv build backend

Added to portage

2025-12-02

vanilla-kernel - 6.12.60
Ebuild name:

sys-kernel/vanilla-kernel-6.12.60

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-12-02

vanilla-kernel - 6.17.10
Ebuild name:

sys-kernel/vanilla-kernel-6.17.10

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-12-02

vanilla-kernel - 6.6.118
Ebuild name:

sys-kernel/vanilla-kernel-6.6.118

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-12-02

vanilla-sources - 6.12.60
Ebuild name:

sys-kernel/vanilla-sources-6.12.60

Description

Full sources for the Linux kernel

Added to portage

2025-12-02

vanilla-sources - 6.17.10
Ebuild name:

sys-kernel/vanilla-sources-6.17.10

Description

Full sources for the Linux kernel

Added to portage

2025-12-02

vanilla-sources - 6.6.118
Ebuild name:

sys-kernel/vanilla-sources-6.6.118

Description

Full sources for the Linux kernel

Added to portage

2025-12-02

wine-mono - 10.4.0
Ebuild name:

app-emulation/wine-mono-10.4.0

Description

Replacement for the .NET runtime and class libraries in Wine

Added to portage

2025-12-02

xv - 6.1.0
Ebuild name:

media-gfx/xv-6.1.0

Description

Interactive image manipulation program supporting a wide variety of formats

Added to portage

2025-12-02

ytmusicapi - 1.11.3
Ebuild name:

dev-python/ytmusicapi-1.11.3

Description

Unofficial API for YouTube Music

Added to portage

2025-12-02

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