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:

75796

userrating:

average rating: 1.2 (8 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.0 (7 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-05-31
base64 - 0.3.0
Ebuild name:

dev-ruby/base64-0.3.0

Description

Support for encoding and decoding binary data using a Base64 representation.

Added to portage

2025-05-31

bash - 5.3_rc1_p20250530
Ebuild name:

app-shells/bash-5.3_rc1_p20250530

Description

The standard GNU Bourne again shell

Added to portage

2025-05-31

bcc - 0.35.0
Ebuild name:

dev-util/bcc-0.35.0

Description

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

Added to portage

2025-05-31

benchmark - 0.4.1
Ebuild name:

dev-ruby/benchmark-0.4.1

Description

A performance benchmarking library

Added to portage

2025-05-31

cinnamon - 6.2.9-r1
Ebuild name:

gnome-extra/cinnamon-6.2.9-r1

Description

A fork of GNOME Shell with layout similar to GNOME 2

Added to portage

2025-05-31

cinnamon - 6.4.8-r1
Ebuild name:

gnome-extra/cinnamon-6.4.8-r1

Description

A fork of GNOME Shell with layout similar to GNOME 2

Added to portage

2025-05-31

dia - 0.97.3-r4
Ebuild name:

app-office/dia-0.97.3-r4

Description

Diagram/flowchart creation program

Added to portage

2025-05-31

evince - 46.3.1-r1
Ebuild name:

app-text/evince-46.3.1-r1

Description

Simple document viewer for GNOME

Added to portage

2025-05-31

evince - 48.0-r1
Ebuild name:

app-text/evince-48.0-r1

Description

Simple document viewer for GNOME

Added to portage

2025-05-31

evolution-data-server - 3.52.4-r3
Ebuild name:

gnome-extra/evolution-data-server-3.52.4-r3

Description

Evolution groupware backend

Added to portage

2025-05-31

evolution-data-server - 3.54.3-r1
Ebuild name:

gnome-extra/evolution-data-server-3.54.3-r1

Description

Evolution groupware backend

Added to portage

2025-05-31

evolution-ews - 3.52.4-r1
Ebuild name:

gnome-extra/evolution-ews-3.52.4-r1

Description

Evolution module for connecting to Microsoft Exchange Web Servi

Added to portage

2025-05-31

evolution-ews - 3.54.3.0-r1
Ebuild name:

gnome-extra/evolution-ews-3.54.3.0-r1

Description

Evolution module for connecting to Microsoft Exchange Web Ser

Added to portage

2025-05-31

gentoo-elections - 0_p20240831
Ebuild name:

app-misc/gentoo-elections-0_p20240831

Description

Gentoo election control data and scripts

Added to portage

2025-05-31

glade - 3.40.0-r2
Ebuild name:

dev-util/glade-3.40.0-r2

Description

A user interface designer for GTK+ and GNOME

Added to portage

2025-05-31

gnome-applets - 3.46.0-r1
Ebuild name:

gnome-base/gnome-applets-3.46.0-r1

Description

Applets for the GNOME Flashback Panel

Added to portage

2025-05-31

gnome-applets - 3.50.0-r1
Ebuild name:

gnome-base/gnome-applets-3.50.0-r1

Description

Applets for the GNOME Flashback Panel

Added to portage

2025-05-31

gnome-applets - 3.52.0-r1
Ebuild name:

gnome-base/gnome-applets-3.52.0-r1

Description

Applets for the GNOME Flashback Panel

Added to portage

2025-05-31

gnome-applets - 3.54.0-r1
Ebuild name:

gnome-base/gnome-applets-3.54.0-r1

Description

Applets for the GNOME Flashback Panel

Added to portage

2025-05-31

gnome-builder - 46.3-r1
Ebuild name:

dev-util/gnome-builder-46.3-r1

Description

An IDE for writing GNOME-based software

Added to portage

2025-05-31

gnome-builder - 47.2-r1
Ebuild name:

dev-util/gnome-builder-47.2-r1

Description

An IDE for writing GNOME-based software

Added to portage

2025-05-31

gnome-control-center - 46.4-r2
Ebuild name:

gnome-base/gnome-control-center-46.4-r2

Description

GNOME's main interface to configure various aspects of the

Added to portage

2025-05-31

gnome-control-center - 47.3-r1
Ebuild name:

gnome-base/gnome-control-center-47.3-r1

Description

GNOME's main interface to configure various aspects of the

Added to portage

2025-05-31

gnome-shell - 46.7-r1
Ebuild name:

gnome-base/gnome-shell-46.7-r1

Description

Provides core UI functions for the GNOME desktop

Added to portage

2025-05-31

gnome-shell - 47.3-r2
Ebuild name:

gnome-base/gnome-shell-47.3-r2

Description

Provides core UI functions for the GNOME desktop

Added to portage

2025-05-31

gnumeric - 1.12.57-r1
Ebuild name:

app-office/gnumeric-1.12.57-r1

Description

The GNOME Spreadsheet

Added to portage

2025-05-31

gnumeric - 1.12.59-r1
Ebuild name:

app-office/gnumeric-1.12.59-r1

Description

The GNOME Spreadsheet

Added to portage

2025-05-31

gtk-doc - 1.33.2-r2
Ebuild name:

dev-util/gtk-doc-1.33.2-r2

Description

GTK+ Documentation Generator

Added to portage

2025-05-31

gtk-doc - 1.34.0-r1
Ebuild name:

dev-util/gtk-doc-1.34.0-r1

Description

GTK+ Documentation Generator

Added to portage

2025-05-31

gtranslator - 46.1-r1
Ebuild name:

app-text/gtranslator-46.1-r1

Description

GNOME Translation Editor

Added to portage

2025-05-31

gtranslator - 47.1-r1
Ebuild name:

app-text/gtranslator-47.1-r1

Description

GNOME Translation Editor

Added to portage

2025-05-31

gvfs - 1.52.3-r2
Ebuild name:

gnome-base/gvfs-1.52.3-r2

Description

Virtual filesystem implementation for GIO

Added to portage

2025-05-31

gvfs - 1.56.1-r2
Ebuild name:

gnome-base/gvfs-1.56.1-r2

Description

Virtual filesystem implementation for GIO

Added to portage

2025-05-31

libgepub - 0.7.1-r1
Ebuild name:

app-text/libgepub-0.7.1-r1

Description

GObject based library for handling and rendering epub documents

Added to portage

2025-05-31

libglade - 2.6.4-r5
Ebuild name:

gnome-base/libglade-2.6.4-r5

Description

Library to construct graphical interfaces at runtime

Added to portage

2025-05-31

libgweather - 4.4.2-r1
Ebuild name:

dev-libs/libgweather-4.4.2-r1

Description

Location and timezone database and weather-lookup library

Added to portage

2025-05-31

libmateweather - 1.28.0-r1
Ebuild name:

dev-libs/libmateweather-1.28.0-r1

Description

MATE library to access weather information from online services

Added to portage

2025-05-31

librsvg - 2.40.21-r1
Ebuild name:

gnome-base/librsvg-2.40.21-r1

Description

Scalable Vector Graphics (SVG) rendering library

Added to portage

2025-05-31

librsvg - 2.57.3-r3
Ebuild name:

gnome-base/librsvg-2.57.3-r3

Description

Scalable Vector Graphics (SVG) rendering library

Added to portage

2025-05-31

librsvg - 2.58.2-r3
Ebuild name:

gnome-base/librsvg-2.58.2-r3

Description

Scalable Vector Graphics (SVG) rendering library

Added to portage

2025-05-31

librsvg - 2.58.5-r1
Ebuild name:

gnome-base/librsvg-2.58.5-r1

Description

Scalable Vector Graphics (SVG) rendering library

Added to portage

2025-05-31

libxslt - 1.1.43-r1
Ebuild name:

dev-libs/libxslt-1.1.43-r1

Description

XSLT libraries and tools

Added to portage

2025-05-31

planner - 0.14.91-r1
Ebuild name:

app-office/planner-0.14.91-r1

Description

Project manager for Gnome

Added to portage

2025-05-31

planner - 0.14.92-r1
Ebuild name:

app-office/planner-0.14.92-r1

Description

Project manager for Gnome

Added to portage

2025-05-31

process_executer - 3.2.4
Ebuild name:

dev-ruby/process_executer-3.2.4

Description

An API for executing commands in a subprocess

Added to portage

2025-05-31

rake - 13.3.0
Ebuild name:

dev-ruby/rake-13.3.0

Description

Make-like scripting in Ruby

Added to portage

2025-05-31

tracker - 3.6.0-r2
Ebuild name:

app-misc/tracker-3.6.0-r2

Description

A tagging metadata database, search tool and indexer

Added to portage

2025-05-31

tracker-miners - 3.6.2-r2
Ebuild name:

app-misc/tracker-miners-3.6.2-r2

Description

Collection of data extractors for Tracker/Nepomuk

Added to portage

2025-05-31

uncrustify - 0.81.0
Ebuild name:

dev-util/uncrustify-0.81.0

Description

C/C++/C/D/Java/Pawn code indenter and beautifier

Added to portage

2025-05-31

yelp-tools - 42.1-r1
Ebuild name:

app-text/yelp-tools-42.1-r1

Description

Collection of tools for building and converting documentation

Added to portage

2025-05-31

2025-05-30
0ad - 0.27.0-r2
Ebuild name:

games-strategy/0ad-0.27.0-r2

Description

A free, real-time strategy game

Added to portage

2025-05-30

accerciser - 3.46.2
Ebuild name:

app-accessibility/accerciser-3.46.2

Description

Interactive Python accessibility explorer

Added to portage

2025-05-30

alacarte - 3.56.0
Ebuild name:

x11-misc/alacarte-3.56.0

Description

Simple GNOME menu editor

Added to portage

2025-05-30

armagetronad - 0.2.9.2.3-r1
Ebuild name:

games-action/armagetronad-0.2.9.2.3-r1

Description

Fast-paced 3D lightcycle game based on Tron

Added to portage

2025-05-30

awscli - 1.40.25
Ebuild name:

app-admin/awscli-1.40.25

Description

Universal Command Line Environment for AWS

Added to portage

2025-05-30

benchmark - 1.9.4
Ebuild name:

dev-cpp/benchmark-1.9.4

Description

A microbenchmark support library

Added to portage

2025-05-30

bigdecimal - 3.2.0
Ebuild name:

dev-ruby/bigdecimal-3.2.0

Description

Arbitrary-precision decimal floating-point number library for Ruby

Added to portage

2025-05-30

bind - 9.20.7-r2
Ebuild name:

net-dns/bind-9.20.7-r2

Description

Berkeley Internet Name Domain - Name Server

Added to portage

2025-05-30

boto3 - 1.38.26
Ebuild name:

dev-python/boto3-1.38.26

Description

The AWS SDK for Python

Added to portage

2025-05-30

botocore - 1.38.26
Ebuild name:

dev-python/botocore-1.38.26

Description

Low-level, data-driven core of boto 3

Added to portage

2025-05-30

candy - 6.0.1
Ebuild name:

net-vpn/candy-6.0.1

Description

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

Added to portage

2025-05-30

canto-curses - 0.9.9-r1
Ebuild name:

net-news/canto-curses-0.9.9-r1

Description

The ncurses client for canto-daemon

Added to portage

2025-05-30

clang - 20.1.6
Ebuild name:

dev-python/clang-20.1.6

Description

Python bindings for llvm-core/clang

Added to portage

2025-05-30

clang - 20.1.6
Ebuild name:

llvm-core/clang-20.1.6

Description

C language family frontend for LLVM

Added to portage

2025-05-30

clang-common - 20.1.6
Ebuild name:

llvm-core/clang-common-20.1.6

Description

Common files shared between multiple slots of clang

Added to portage

2025-05-30

clang-runtime - 20.1.6
Ebuild name:

llvm-core/clang-runtime-20.1.6

Description

Meta-ebuild for clang runtime libraries

Added to portage

2025-05-30

compiler-rt - 20.1.6
Ebuild name:

llvm-runtimes/compiler-rt-20.1.6

Description

Compiler runtime library for clang (built-in part)

Added to portage

2025-05-30

compiler-rt-sanitizers - 20.1.6
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-20.1.6

Description

Compiler runtime libraries for clang (sanitizers & xray

Added to portage

2025-05-30

conan - 2.14.0-r1
Ebuild name:

dev-util/conan-2.14.0-r1

Description

Distributed C/C++ package manager

Added to portage

2025-05-30

conan - 2.17.0
Ebuild name:

dev-util/conan-2.17.0

Description

Distributed C/C++ package manager

Added to portage

2025-05-30

containerd - 2.1.1
Ebuild name:

app-containers/containerd-2.1.1

Description

A daemon to control runC

Added to portage

2025-05-30

curl - 8.14.0
Ebuild name:

net-misc/curl-8.14.0

Description

A Client that groks URLs

Added to portage

2025-05-30

dist-kernel - 6.12.31
Ebuild name:

virtual/dist-kernel-6.12.31

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-05-30

dist-kernel - 6.14.9
Ebuild name:

virtual/dist-kernel-6.14.9

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-05-30

dokuwiki - 20250514a
Ebuild name:

www-apps/dokuwiki-20250514a

Description

DokuWiki is a simple to use Wiki aimed at a small company's documentati

Added to portage

2025-05-30

epiar - 0.5.1-r2
Ebuild name:

games-arcade/epiar-0.5.1-r2

Description

Space adventure/combat game

Added to portage

2025-05-30

eternal-lands - 1.9.5.8-r1
Ebuild name:

games-rpg/eternal-lands-1.9.5.8-r1

Description

A 3D fantasy MMORPG written in C and SDL

Added to portage

2025-05-30

eternal-lands - 1.9.6.1-r1
Ebuild name:

games-rpg/eternal-lands-1.9.6.1-r1

Description

3D fantasy MMORPG written in C and SDL

Added to portage

2025-05-30

extract-xiso - 2.7.1_p202505152050
Ebuild name:

app-cdr/extract-xiso-2.7.1_p202505152050

Description

Tool for extracting and creating optimised Xbox ISO images

Added to portage

2025-05-30

firefox - 139.0.1
Ebuild name:

www-client/firefox-139.0.1

Description

Firefox Web Browser

Added to portage

2025-05-30

firefox-bin - 139.0.1
Ebuild name:

www-client/firefox-bin-139.0.1

Description

Firefox Web Browser

Added to portage

2025-05-30

foliate - 3.3.0
Ebuild name:

app-text/foliate-3.3.0

Description

gtk ebook reader built with gjs

Added to portage

2025-05-30

fpylll - 0.6.4
Ebuild name:

dev-python/fpylll-0.6.4

Description

Python bindings for sci-libs/fplll

Added to portage

2025-05-30

fractal - 11.1
Ebuild name:

net-im/fractal-11.1

Description

Matrix messaging app for GNOME written in Rust

Added to portage

2025-05-30

fstrm - 0.6.1-r1
Ebuild name:

dev-libs/fstrm-0.6.1-r1

Description

Frame Streams implementation in C

Added to portage

2025-05-30

gcc - 12.4.1_p20250528
Ebuild name:

sys-devel/gcc-12.4.1_p20250528

Description

The GNU Compiler Collection

Added to portage

2025-05-30

gcc - 13.3.1_p20250529
Ebuild name:

sys-devel/gcc-13.3.1_p20250529

Description

The GNU Compiler Collection

Added to portage

2025-05-30

gentoo-kernel - 6.12.31
Ebuild name:

sys-kernel/gentoo-kernel-6.12.31

Description

Linux kernel built with Gentoo patches

Added to portage

2025-05-30

gentoo-kernel - 6.14.9
Ebuild name:

sys-kernel/gentoo-kernel-6.14.9

Description

Linux kernel built with Gentoo patches

Added to portage

2025-05-30

gentoo-kernel-bin - 6.12.31
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.31

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-05-30

gentoo-kernel-bin - 6.14.9
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.14.9

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-05-30

gentoo-sources - 6.14.9-r1
Ebuild name:

sys-kernel/gentoo-sources-6.14.9-r1

Description

Full sources including the Gentoo patchset for the . kernel tre

Added to portage

2025-05-30

gpt-image - 0.9.1
Ebuild name:

dev-python/gpt-image-0.9.1

Description

Tool to create GPT disk image files

Added to portage

2025-05-30

headsetcontrol - 3.1.0-r1
Ebuild name:

media-sound/headsetcontrol-3.1.0-r1

Description

A tool to control certain aspects of USB-connected headsets on

Added to portage

2025-05-30

htpdate - 2.0.0
Ebuild name:

net-misc/htpdate-2.0.0

Description

Synchronize local workstation with time offered by remote webservers

Added to portage

2025-05-30

hypothesis - 6.131.31
Ebuild name:

dev-python/hypothesis-6.131.31

Description

A library for property based testing

Added to portage

2025-05-30

indexed-gzip - 1.9.5
Ebuild name:

dev-python/indexed-gzip-1.9.5

Description

Fast random access of gzip files in Python

Added to portage

2025-05-30

iniparse - 0.5.1_p20250425
Ebuild name:

dev-python/iniparse-0.5.1_p20250425

Description

Better INI parser for Python

Added to portage

2025-05-30

libb64 - 2.0.0.1-r1
Ebuild name:

dev-libs/libb64-2.0.0.1-r1

Description

Fast Base64 encoding/decoding routines

Added to portage

2025-05-30

libcap - 2.76
Ebuild name:

sys-libs/libcap-2.76

Description

POSIX 1003.1e capabilities

Added to portage

2025-05-30

libclc - 20.1.6
Ebuild name:

llvm-core/libclc-20.1.6

Description

OpenCL C library

Added to portage

2025-05-30

libcxx - 20.1.6
Ebuild name:

llvm-runtimes/libcxx-20.1.6

Description

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

Added to portage

2025-05-30

libcxxabi - 20.1.6
Ebuild name:

llvm-runtimes/libcxxabi-20.1.6

Description

Low level support for a standard C++ library

Added to portage

2025-05-30

libebml - 1.4.5-r1
Ebuild name:

dev-libs/libebml-1.4.5-r1

Description

Extensible binary format library (kinda like XML)

Added to portage

2025-05-30

libevdev - 0.12
Ebuild name:

dev-python/libevdev-0.12

Description

Python wrappers for the libevdev library

Added to portage

2025-05-30

libffi - 3.4.8-r2
Ebuild name:

dev-libs/libffi-3.4.8-r2

Description

Portable, high level programming interface to various calling conventions

Added to portage

2025-05-30

libgcc - 20.1.6
Ebuild name:

llvm-runtimes/libgcc-20.1.6

Description

Compiler runtime library for clang, compatible with libgcc_s

Added to portage

2025-05-30

libmaitretarot - 0.1.98-r3
Ebuild name:

dev-games/libmaitretarot-0.1.98-r3

Description

backend library for the maitretarot games

Added to portage

2025-05-30

libmatroska - 1.7.1-r1
Ebuild name:

media-libs/libmatroska-1.7.1-r1

Description

Extensible multimedia container format based on EBML

Added to portage

2025-05-30

libmt_client - 0.1.98-r2
Ebuild name:

dev-games/libmt_client-0.1.98-r2

Description

backend library for the maitretarot clients

Added to portage

2025-05-30

libunwind - 20.1.6
Ebuild name:

llvm-runtimes/libunwind-20.1.6

Description

C++ runtime stack unwinder from LLVM

Added to portage

2025-05-30

liburing - 2.10
Ebuild name:

sys-libs/liburing-2.10

Description

Efficient I/O with io_uring

Added to portage

2025-05-30

lincity-ng - 2.9_beta-r1
Ebuild name:

games-simulation/lincity-ng-2.9_beta-r1

Description

City simulation game

Added to portage

2025-05-30

lit - 20.1.6
Ebuild name:

dev-python/lit-20.1.6

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2025-05-30

lld - 20.1.6
Ebuild name:

llvm-core/lld-20.1.6

Description

The LLVM linker (link editor)

Added to portage

2025-05-30

lldb - 20.1.6
Ebuild name:

llvm-core/lldb-20.1.6

Description

The LLVM debugger

Added to portage

2025-05-30

llvm - 20.1.6
Ebuild name:

dev-ml/llvm-20.1.6

Description

OCaml bindings for LLVM

Added to portage

2025-05-30

llvm - 20.1.6
Ebuild name:

llvm-core/llvm-20.1.6

Description

Low Level Virtual Machine

Added to portage

2025-05-30

llvm-common - 20.1.6
Ebuild name:

llvm-core/llvm-common-20.1.6

Description

Common files shared between multiple slots of LLVM

Added to portage

2025-05-30

loki_patch - 20091105-r2
Ebuild name:

games-util/loki_patch-20091105-r2

Description

Loki Software binary patch tool

Added to portage

2025-05-30

mac - 11.14
Ebuild name:

media-sound/mac-11.14

Description

Monkey's Audio Codecs

Added to portage

2025-05-30

magic-wormhole - 0.19.1
Ebuild name:

dev-python/magic-wormhole-0.19.1

Description

Get Things From One Computer To Another, Safely

Added to portage

2025-05-30

maitretarot - 0.1.98-r4
Ebuild name:

games-board/maitretarot-0.1.98-r4

Description

Server for the french tarot game maitretarot

Added to portage

2025-05-30

manaplus - 1.9.3.23-r2
Ebuild name:

games-rpg/manaplus-1.9.3.23-r2

Description

OpenSource 2D MMORPG client for Evol Online and The Mana World

Added to portage

2025-05-30

mattermost-desktop-bin - 5.12.1
Ebuild name:

net-im/mattermost-desktop-bin-5.12.1

Description

Mattermost Desktop application

Added to portage

2025-05-30

mechanicalsoup - 1.4.0
Ebuild name:

dev-python/mechanicalsoup-1.4.0

Description

A Python library for automating interaction with websites

Added to portage

2025-05-30

megaglest - 3.13.0-r4
Ebuild name:

games-strategy/megaglest-3.13.0-r4

Description

Added to portage

2025-05-30

mod_h2 - 2.0.32
Ebuild name:

www-apache/mod_h2-2.0.32

Description

HTTP/2 module for Apache

Added to portage

2025-05-30

mscgen - 0.20-r1
Ebuild name:

media-gfx/mscgen-0.20-r1

Description

Message sequence chart generator

Added to portage

2025-05-30

mt_dolphin_ia - 0.1.98-r3
Ebuild name:

games-board/mt_dolphin_ia-0.1.98-r3

Description

client for the french tarot game maitretarot

Added to portage

2025-05-30

mt_ncurses_client - 0.1.98-r3
Ebuild name:

games-board/mt_ncurses_client-0.1.98-r3

Description

client for the french tarot game maitretarot

Added to portage

2025-05-30

mypy - 1.16.0
Ebuild name:

dev-python/mypy-1.16.0

Description

Optional static typing for Python

Added to portage

2025-05-30

naev - 0.12.4-r1
Ebuild name:

games-strategy/naev-0.12.4-r1

Description

2D space trading and combat game, in a similar vein to Escape Velocit

Added to portage

2025-05-30

netmask - 2.4.4
Ebuild name:

net-misc/netmask-2.4.4

Description

An IP address formatting tool

Added to portage

2025-05-30

networkx - 3.5
Ebuild name:

dev-python/networkx-3.5

Description

Python tools to manipulate graphs and complex networks

Added to portage

2025-05-30

nextcloud-client - 3.16.4
Ebuild name:

net-misc/nextcloud-client-3.16.4

Description

Desktop Syncing Client for Nextcloud

Added to portage

2025-05-30

nuitka - 2.7.5
Ebuild name:

dev-python/nuitka-2.7.5

Description

Python to native compiler

Added to portage

2025-05-30

offload - 20.1.6
Ebuild name:

llvm-runtimes/offload-20.1.6

Description

OpenMP offloading support

Added to portage

2025-05-30

openhab-bin - 4.3.5
Ebuild name:

app-misc/openhab-bin-4.3.5

Description

An open-source automation software for your home

Added to portage

2025-05-30

openmp - 20.1.6
Ebuild name:

llvm-runtimes/openmp-20.1.6

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2025-05-30

po-mode - 0.22
Ebuild name:

app-emacs/po-mode-0.22

Description

Major mode for GNU gettext PO files

Added to portage

2025-05-30

polly - 20.1.6
Ebuild name:

llvm-core/polly-20.1.6

Description

Polyhedral optimizations for LLVM

Added to portage

2025-05-30

portend - 3.2.1
Ebuild name:

dev-python/portend-3.2.1

Description

TCP port monitoring utilities

Added to portage

2025-05-30

pyaml - 25.5.0
Ebuild name:

dev-python/pyaml-25.5.0

Description

PyYAML-based module to produce pretty and readable YAML-serialized data

Added to portage

2025-05-30

pybind11 - 3.0.0_rc2
Ebuild name:

dev-python/pybind11-3.0.0_rc2

Description

AST-based Python refactoring library

Added to portage

2025-05-30

pynvim - 0.5.2-r1
Ebuild name:

dev-python/pynvim-0.5.2-r1

Description

Python client for Neovim

Added to portage

2025-05-30

pytest-datadir - 1.7.0
Ebuild name:

dev-python/pytest-datadir-1.7.0

Description

Pytest plugin for manipulating test data directories and files

Added to portage

2025-05-30

radamsa - 0.7-r1
Ebuild name:

app-forensics/radamsa-0.7-r1

Description

A general-purpose fuzzer

Added to portage

2025-05-30

railway - 2.8.1
Ebuild name:

gui-apps/railway-2.8.1

Description

Travel with all your train information in one place

Added to portage

2025-05-30

rencode - 1.0.8
Ebuild name:

dev-python/rencode-1.0.8

Description

Serialization similar to bencode from the BitTorrent project

Added to portage

2025-05-30

ripgrep-all - 0.10.9
Ebuild name:

sys-apps/ripgrep-all-0.10.9

Description

Like ripgrep, but also search in PDFs, E-Books, Office documents, archi

Added to portage

2025-05-30

rofi - 1.7.9.1
Ebuild name:

x11-misc/rofi-1.7.9.1

Description

A window switcher, run dialog and dmenu replacement

Added to portage

2025-05-30

ruamel-yaml - 0.18.12
Ebuild name:

dev-python/ruamel-yaml-0.18.12

Description

YAML parser/emitter that supports roundtrip comment preservation

Added to portage

2025-05-30

scala-cli-bin - 1.8.0
Ebuild name:

dev-java/scala-cli-bin-1.8.0

Description

CLI to interact with Scala and Java

Added to portage

2025-05-30

spiped - 1.6.4
Ebuild name:

net-misc/spiped-1.6.4

Description

secure pipe daemon

Added to portage

2025-05-30

sqlglot - 26.24.0
Ebuild name:

dev-python/sqlglot-26.24.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2025-05-30

starlette - 0.47.0
Ebuild name:

dev-python/starlette-0.47.0

Description

The little ASGI framework that shines

Added to portage

2025-05-30

stig - 0.13.0a_p0
Ebuild name:

net-p2p/stig-0.13.0a_p0

Description

TUI and CLI for the BitTorrent client Transmission

Added to portage

2025-05-30

strace - 6.15
Ebuild name:

dev-debug/strace-6.15

Description

Useful diagnostic, instructional, and debugging tool

Added to portage

2025-05-30

t4k-common - 0.1.1-r3
Ebuild name:

dev-games/t4k-common-0.1.1-r3

Description

Library of code shared between tuxmath and tuxtype

Added to portage

2025-05-30

toluapp - 1.0.93_p20190513-r101
Ebuild name:

dev-lua/toluapp-1.0.93_p20190513-r101

Description

Tool to integrate C/C++ code with Lua

Added to portage

2025-05-30

towbowl-tactics - 0.5-r2
Ebuild name:

games-action/towbowl-tactics-0.5-r2

Description

Tow Bowl Tactics is a game based on Games Workshop's Blood Bowl

Added to portage

2025-05-30

trippy - 0.13.0
Ebuild name:

net-analyzer/trippy-0.13.0

Description

A network diagnostic tool

Added to portage

2025-05-30

tt-rss - 20250417
Ebuild name:

www-apps/tt-rss-20250417

Description

Tiny Tiny RSS - A web-based news feed (RSS/Atom) aggregator using AJAX

Added to portage

2025-05-30

tuxmath - 2.0.3-r3
Ebuild name:

games-kids/tuxmath-2.0.3-r3

Description

Educational arcade game where you have to solve maths problems

Added to portage

2025-05-30

twolame - 0.4.0-r1
Ebuild name:

media-sound/twolame-0.4.0-r1

Description

An optimised MPEG Audio Layer 2 (MP2) encoder

Added to portage

2025-05-30

ubuntu-keyring - 2020.02.11.2
Ebuild name:

app-crypt/ubuntu-keyring-2020.02.11.2

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2025-05-30

ubuntu-keyring - 2020.06.17.1
Ebuild name:

app-crypt/ubuntu-keyring-2020.06.17.1

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2025-05-30

uwsm - 0.21.5-r1
Ebuild name:

gui-apps/uwsm-0.21.5-r1

Description

Universal Wayland Session Manager

Added to portage

2025-05-30

vanilla-kernel - 6.12.31
Ebuild name:

sys-kernel/vanilla-kernel-6.12.31

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-05-30

vanilla-kernel - 6.14.9
Ebuild name:

sys-kernel/vanilla-kernel-6.14.9

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-05-30

virtme-ng - 1.36
Ebuild name:

sys-kernel/virtme-ng-1.36

Description

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

Added to portage

2025-05-30

virtualbox - 7.2.0_beta1
Ebuild name:

app-emulation/virtualbox-7.2.0_beta1

Description

Family of powerful x86 virtualization products for enterprise

Added to portage

2025-05-30

virtualbox-additions - 7.2.0_beta1
Ebuild name:

app-emulation/virtualbox-additions-7.2.0_beta1

Description

CD image containing guest additions for VirtualBox

Added to portage

2025-05-30

virtualbox-extpack-oracle - 7.2.0_beta1
Ebuild name:

app-emulation/virtualbox-extpack-oracle-7.2.0_beta1

Description

PUEL extensions for VirtualBox

Added to portage

2025-05-30

virtualbox-guest-additions - 7.1.8-r1
Ebuild name:

app-emulation/virtualbox-guest-additions-7.1.8-r1

Description

VirtualBox kernel modules and user-space tools fo

Added to portage

2025-05-30

virtualbox-guest-additions - 7.2.0_beta1
Ebuild name:

app-emulation/virtualbox-guest-additions-7.2.0_beta1

Description

VirtualBox kernel modules and user-space tools

Added to portage

2025-05-30

vivaldi - 7.4.3684.43
Ebuild name:

www-client/vivaldi-7.4.3684.43

Description

A browser for our friends

Added to portage

2025-05-30

warmux - 11.04.1-r3
Ebuild name:

games-strategy/warmux-11.04.1-r3

Description

A free Worms clone

Added to portage

2025-05-30

xmoto - 0.6.1-r101
Ebuild name:

games-sports/xmoto-0.6.1-r101

Description

A challenging 2D motocross platform game, where physics play an impor

Added to portage

2025-05-30

xscreensaver - 6.10.1
Ebuild name:

x11-misc/xscreensaver-6.10.1

Description

Modular screen saver and locker for the X Window System

Added to portage

2025-05-30

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 52.0 ms