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:

88300

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.3 (57 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-09-11
akonadi - 26.08.1
Ebuild name:

kde-apps/akonadi-26.08.1

Description

Storage service for PIM data and libraries for PIM apps

Added to portage

2026-09-11

akonadi-calendar - 26.08.1
Ebuild name:

kde-apps/akonadi-calendar-26.08.1

Description

Library for akonadi calendar integration

Added to portage

2026-09-11

akonadi-calendar-tools-common - 26.08.1
Ebuild name:

kde-apps/akonadi-calendar-tools-common-26.08.1

Description

Common files for

Added to portage

2026-09-11

akonadi-contacts - 26.08.1
Ebuild name:

kde-apps/akonadi-contacts-26.08.1

Description

Library for akonadi contact integration

Added to portage

2026-09-11

akonadi-import-wizard - 26.08.1
Ebuild name:

kde-apps/akonadi-import-wizard-26.08.1

Description

Assistant to import PIM data from other applications into Ak

Added to portage

2026-09-11

akonadi-mime - 26.08.1
Ebuild name:

kde-apps/akonadi-mime-26.08.1

Description

Library for akonadi mime types

Added to portage

2026-09-11

akonadi-search - 26.08.1
Ebuild name:

kde-apps/akonadi-search-26.08.1

Description

Libraries and daemons to implement searching in Akonadi

Added to portage

2026-09-11

akonadiconsole - 26.08.1
Ebuild name:

kde-apps/akonadiconsole-26.08.1

Description

Application for debugging Akonadi Resources

Added to portage

2026-09-11

akregator - 26.08.1
Ebuild name:

kde-apps/akregator-26.08.1

Description

News feed aggregator

Added to portage

2026-09-11

analitza - 26.08.1
Ebuild name:

kde-apps/analitza-26.08.1

Description

KDE library for mathematical features

Added to portage

2026-09-11

ark - 26.08.1
Ebuild name:

kde-apps/ark-26.08.1

Description

File archiver by KDE

Added to portage

2026-09-11

artikulate - 26.08.1
Ebuild name:

kde-apps/artikulate-26.08.1

Description

Language learning application that helps improving pronunciation skills

Added to portage

2026-09-11

audiocd-kio - 26.08.1
Ebuild name:

kde-apps/audiocd-kio-26.08.1

Description

KIO worker for accessing audio CDs

Added to portage

2026-09-11

baloo-widgets - 26.08.1
Ebuild name:

kde-apps/baloo-widgets-26.08.1

Description

Widget library for baloo

Added to portage

2026-09-11

blinken - 26.08.1
Ebuild name:

kde-apps/blinken-26.08.1

Description

Memory enhancement game based on KDE Frameworks

Added to portage

2026-09-11

bomber - 26.08.1
Ebuild name:

kde-apps/bomber-26.08.1

Description

Single player arcade bombing game

Added to portage

2026-09-11

bovo - 26.08.1
Ebuild name:

kde-apps/bovo-26.08.1

Description

Five-in-a-row Board Game

Added to portage

2026-09-11

calendarjanitor - 26.08.1
Ebuild name:

kde-apps/calendarjanitor-26.08.1

Description

Tool to scan calendar data for buggy instances

Added to portage

2026-09-11

calendarsupport - 26.08.1
Ebuild name:

kde-apps/calendarsupport-26.08.1

Description

Calendar support library

Added to portage

2026-09-11

cantor - 26.08.1
Ebuild name:

kde-apps/cantor-26.08.1

Description

Interface for doing mathematics and scientific computing

Added to portage

2026-09-11

containerd - 2.3.5
Ebuild name:

app-containers/containerd-2.3.5

Description

A daemon to control runC

Added to portage

2026-09-11

cri-o - 1.36.5
Ebuild name:

app-containers/cri-o-1.36.5

Description

OCI-based implementation of Kubernetes Container Runtime Interface

Added to portage

2026-09-11

cri-tools - 1.37.0
Ebuild name:

app-containers/cri-tools-1.37.0

Description

CLI and validation tools for Kubelet Container Runtime (CRI)

Added to portage

2026-09-11

cxx-rust-cssparser - 1.1.0
Ebuild name:

dev-libs/cxx-rust-cssparser-1.1.0

Description

C++ library for parsing CSS that uses the Rust cssparser crate in

Added to portage

2026-09-11

dolphin - 26.08.1
Ebuild name:

kde-apps/dolphin-26.08.1

Description

Plasma filemanager focusing on usability

Added to portage

2026-09-11

dolphin-plugins-common - 26.08.1
Ebuild name:

kde-apps/dolphin-plugins-common-26.08.1

Description

Common files for

Added to portage

2026-09-11

dolphin-plugins-dropbox - 26.08.1
Ebuild name:

kde-apps/dolphin-plugins-dropbox-26.08.1

Description

Dolphin plugin for Dropbox service integration

Added to portage

2026-09-11

dolphin-plugins-git - 26.08.1
Ebuild name:

kde-apps/dolphin-plugins-git-26.08.1

Description

Dolphin plugin for Git integration

Added to portage

2026-09-11

dolphin-plugins-makefileactions - 26.08.1
Ebuild name:

dev-build/dolphin-plugins-makefileactions-26.08.1

Description

Dolphin plugin for Makefile targets integration

Added to portage

2026-09-11

dolphin-plugins-mercurial - 26.08.1
Ebuild name:

kde-apps/dolphin-plugins-mercurial-26.08.1

Description

Dolphin plugin for Mercurial integration

Added to portage

2026-09-11

dolphin-plugins-mountiso - 26.08.1
Ebuild name:

app-cdr/dolphin-plugins-mountiso-26.08.1

Description

Dolphin plugin for ISO loopback device mounting

Added to portage

2026-09-11

dolphin-plugins-subversion - 26.08.1
Ebuild name:

kde-apps/dolphin-plugins-subversion-26.08.1

Description

Dolphin plugin for Subversion integration

Added to portage

2026-09-11

francis - 26.08.1
Ebuild name:

app-misc/francis-26.08.1

Description

Productivity application using the well-known pomodoro technique

Added to portage

2026-09-11

isoimagewriter - 26.08.1
Ebuild name:

app-cdr/isoimagewriter-26.08.1

Description

Write hybrid ISO files onto a USB disk

Added to portage

2026-09-11

kdevelop - 26.08.1
Ebuild name:

dev-util/kdevelop-26.08.1

Description

Integrated Development Environment, supporting KF6/Qt, C/C++ and much mor

Added to portage

2026-09-11

kdevelop-php - 26.08.1
Ebuild name:

dev-util/kdevelop-php-26.08.1

Description

PHP plugin for KDevelop

Added to portage

2026-09-11

kdevelop-python - 26.08.1
Ebuild name:

dev-util/kdevelop-python-26.08.1

Description

Python plugin for KDevelop

Added to portage

2026-09-11

kio-admin - 26.08.1
Ebuild name:

app-admin/kio-admin-26.08.1

Description

Manage files as administrator using the admin KIO protocol

Added to portage

2026-09-11

kio-perldoc - 26.08.1
Ebuild name:

dev-util/kio-perldoc-26.08.1

Description

KIO worker interface to browse Perl documentation

Added to portage

2026-09-11

kontrast - 26.08.1
Ebuild name:

app-accessibility/kontrast-26.08.1

Description

Tool to check contrast for colors to verify they are correctly a

Added to portage

2026-09-11

kopeninghours - 26.08.1
Ebuild name:

dev-libs/kopeninghours-26.08.1

Description

Library for parsing and evaluating OSM opening hours expressions

Added to portage

2026-09-11

kosmindoormap - 26.08.1
Ebuild name:

dev-libs/kosmindoormap-26.08.1

Description

Data Model and Extraction System for Travel Reservation information

Added to portage

2026-09-11

kpublictransport - 26.08.1
Ebuild name:

dev-libs/kpublictransport-26.08.1

Description

Library for accessing public transport timetables and other infor

Added to portage

2026-09-11

kweathercore - 26.08.1
Ebuild name:

dev-libs/kweathercore-26.08.1

Description

Library for retrieval of weather information including forecasts and

Added to portage

2026-09-11

massif-visualizer - 26.08.1
Ebuild name:

dev-util/massif-visualizer-26.08.1

Description

Tool visualising massif data

Added to portage

2026-09-11

merkuro - 26.08.1
Ebuild name:

app-office/merkuro-26.08.1

Description

Calendar application using Akonadi

Added to portage

2026-09-11

nerdctl - 2.3.5
Ebuild name:

app-containers/nerdctl-2.3.5

Description

Docker-compatible CLI for containerd, with support for Compose

Added to portage

2026-09-11

plasma-wayland-protocols - 1.22.0
Ebuild name:

dev-libs/plasma-wayland-protocols-1.22.0

Description

Plasma Specific Protocols for Wayland

Added to portage

2026-09-11

skladnik - 26.08.1
Ebuild name:

games-puzzle/skladnik-26.08.1

Description

The Japanese warehouse keeper sokoban game

Added to portage

2026-09-11

upterm - 0.25.1
Ebuild name:

app-misc/upterm-0.25.1

Description

Instant Terminal Sharing

Added to portage

2026-09-11

2026-09-10
3proxy - 0.9.9.0
Ebuild name:

net-proxy/3proxy-0.9.9.0

Description

Really tiny cross-platform proxy servers set

Added to portage

2026-09-10

ast-serialize - 0.11.1
Ebuild name:

dev-python/ast-serialize-0.11.1

Description

Python bindings for mypy AST serialization

Added to portage

2026-09-10

babl - 0.1.128
Ebuild name:

media-libs/babl-0.1.128

Description

A dynamic, any to any, pixel format conversion library

Added to portage

2026-09-10

bcc - 0.37.0
Ebuild name:

dev-util/bcc-0.37.0

Description

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

Added to portage

2026-09-10

bear - 4.2.2
Ebuild name:

dev-util/bear-4.2.2

Description

A tool that generates a compilation database for clang tooling

Added to portage

2026-09-10

beets - 2.14.0
Ebuild name:

media-sound/beets-2.14.0

Description

Media library management system for obsessive music geeks

Added to portage

2026-09-10

blender-bin - 4.5.12
Ebuild name:

media-gfx/blender-bin-4.5.12

Description

3D Creation/Animation/Publishing System

Added to portage

2026-09-10

blender-bin - 5.2.1
Ebuild name:

media-gfx/blender-bin-5.2.1

Description

3D Creation/Animation/Publishing System

Added to portage

2026-09-10

boto3 - 1.43.91
Ebuild name:

dev-python/boto3-1.43.91

Description

The AWS SDK for Python

Added to portage

2026-09-10

botocore - 1.43.91
Ebuild name:

dev-python/botocore-1.43.91

Description

Low-level, data-driven core of boto 3

Added to portage

2026-09-10

bpftrace - 0.27.0
Ebuild name:

dev-debug/bpftrace-0.27.0

Description

High-level tracing language for eBPF

Added to portage

2026-09-10

cfn-lint - 1.56.2
Ebuild name:

dev-python/cfn-lint-1.56.2

Description

CloudFormation Linter

Added to portage

2026-09-10

chrome-binary-plugins - 153.0.8010.36
Ebuild name:

www-plugins/chrome-binary-plugins-153.0.8010.36

Description

Binary plugins from Google Chrome for use in Chromi

Added to portage

2026-09-10

chrome-binary-plugins - 154.0.8037.17_beta
Ebuild name:

www-plugins/chrome-binary-plugins-154.0.8037.17_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-09-10

chrome-binary-plugins - 155.0.8040.2_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-155.0.8040.2_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-09-10

chromedriver-bin - 153.0.8010.36
Ebuild name:

www-apps/chromedriver-bin-153.0.8010.36

Description

WebDriver for Chrome

Added to portage

2026-09-10

chrony - 4.9
Ebuild name:

net-misc/chrony-4.9

Description

NTP client and server programs

Added to portage

2026-09-10

cinnamon - 6.6.9
Ebuild name:

gnome-extra/cinnamon-6.6.9

Description

A fork of GNOME Shell with layout similar to GNOME 2

Added to portage

2026-09-10

cinnamon-session - 6.6.4
Ebuild name:

gnome-extra/cinnamon-session-6.6.4

Description

Cinnamon session manager

Added to portage

2026-09-10

cjs - 140.1
Ebuild name:

gnome-extra/cjs-140.1

Description

Linux Mint's fork of gjs for Cinnamon

Added to portage

2026-09-10

corsix-th - 0.70.1
Ebuild name:

games-simulation/corsix-th-0.70.1

Description

Open source clone of Theme Hospital

Added to portage

2026-09-10

cudnn - 9.25.1.1
Ebuild name:

dev-libs/cudnn-9.25.1.1

Description

NVIDIA Accelerated Deep Learning on GPU library

Added to portage

2026-09-10

cudnn-frontend - 1.28.0
Ebuild name:

sci-ml/cudnn-frontend-1.28.0

Description

A c++ wrapper for the cudnn backend API

Added to portage

2026-09-10

delve - 1.27.2
Ebuild name:

dev-go/delve-1.27.2

Description

A source-level debugger for the Go programming language

Added to portage

2026-09-10

diffoscope - 329
Ebuild name:

dev-util/diffoscope-329

Description

Will try to get to the bottom of what makes files or directories different

Added to portage

2026-09-10

elasticsearch - 9.5.1
Ebuild name:

dev-python/elasticsearch-9.5.1

Description

Official Elasticsearch client library for Python

Added to portage

2026-09-10

electrum-ecc - 0.0.8
Ebuild name:

dev-python/electrum-ecc-0.0.8

Description

Pure python ctypes wrapper for libsecp256k1

Added to portage

2026-09-10

element-desktop-bin - 1.12.26
Ebuild name:

net-im/element-desktop-bin-1.12.26

Description

A glossy Matrix collaboration client for desktop (binary package

Added to portage

2026-09-10

fish - 4.9.2
Ebuild name:

app-shells/fish-4.9.2

Description

Friendly Interactive SHell

Added to portage

2026-09-10

gamescope - 3.16.28
Ebuild name:

gui-wm/gamescope-3.16.28

Description

Efficient micro-compositor for running games

Added to portage

2026-09-10

gerbv - 2.13.0
Ebuild name:

sci-electronics/gerbv-2.13.0

Description

A RS-274X (Gerber) and NC drill (Excellon) file viewer

Added to portage

2026-09-10

gif2png - 3.0.5
Ebuild name:

media-gfx/gif2png-3.0.5

Description

Converts images from GIF format to PNG format

Added to portage

2026-09-10

glycin-loaders - 2.2.0
Ebuild name:

media-libs/glycin-loaders-2.2.0

Description

Loaders for glycin clients (glycin crate or libglycin)

Added to portage

2026-09-10

google-auth - 2.58.0
Ebuild name:

dev-python/google-auth-2.58.0

Description

Google Authentication Library

Added to portage

2026-09-10

google-chrome - 153.0.8010.36
Ebuild name:

www-client/google-chrome-153.0.8010.36

Description

The web browser from Google

Added to portage

2026-09-10

google-chrome-beta - 154.0.8037.17
Ebuild name:

www-client/google-chrome-beta-154.0.8037.17

Description

The web browser from Google

Added to portage

2026-09-10

google-chrome-unstable - 155.0.8040.2
Ebuild name:

www-client/google-chrome-unstable-155.0.8040.2

Description

The web browser from Google

Added to portage

2026-09-10

groonga - 16.1.0
Ebuild name:

app-text/groonga-16.1.0

Description

Embeddable Fulltext Search Engine

Added to portage

2026-09-10

gst-plugins-libnice - 0.1.24
Ebuild name:

media-plugins/gst-plugins-libnice-0.1.24

Description

GStreamer plugin for ICE (RFC 5245) support

Added to portage

2026-09-10

gumbo - 0.14.0
Ebuild name:

dev-libs/gumbo-0.14.0

Description

The HTML5 parsing algorithm implemented as a pure C99 library

Added to portage

2026-09-10

ig - 0.56.0
Ebuild name:

app-admin/ig-0.56.0

Description

Tools and framework for data collection and system inspection using eBPF

Added to portage

2026-09-10

incus - 7.4-r1
Ebuild name:

app-containers/incus-7.4-r1

Description

Modern, secure and powerful system container and virtual machine manage

Added to portage

2026-09-10

inspircd - 4.12.0
Ebuild name:

net-irc/inspircd-4.12.0

Description

Inspire IRCd - The Stable, High-Performance Modular IRCd

Added to portage

2026-09-10

intune-portal - 1.2607.4-r1
Ebuild name:

sys-apps/intune-portal-1.2607.4-r1

Description

Microsoft Intune Company Portal to access a corporate environmen

Added to portage

2026-09-10

jacksum - 4.0.0
Ebuild name:

app-crypt/jacksum-4.0.0

Description

Java utility for working with checksums, CRCs, and message digests (hashes)

Added to portage

2026-09-10

just - 1.58.0
Ebuild name:

dev-build/just-1.58.0

Description

Just a command runner (with syntax inspired by 'make')

Added to portage

2026-09-10

key-chord - 0.8.2
Ebuild name:

app-emacs/key-chord-0.8.2

Description

Map pairs of simultaneously pressed keys to commands

Added to portage

2026-09-10

keymap-popup - 0.3.0
Ebuild name:

app-emacs/keymap-popup-0.3.0

Description

Described keymaps with popup help

Added to portage

2026-09-10

keywiz - 1.4
Ebuild name:

app-emacs/keywiz-1.4

Description

Emacs key sequence quiz

Added to portage

2026-09-10

kind-icon - 0.2.2
Ebuild name:

app-emacs/kind-icon-0.2.2

Description

Completion kind icons

Added to portage

2026-09-10

knot - 3.5.8
Ebuild name:

net-dns/knot-3.5.8

Description

High-performance authoritative-only DNS server

Added to portage

2026-09-10

libass - 0.17.5
Ebuild name:

media-libs/libass-0.17.5

Description

Library for SSA/ASS subtitles rendering

Added to portage

2026-09-10

libebml - 1.4.7
Ebuild name:

dev-libs/libebml-1.4.7

Description

Extensible binary format library (kinda like XML)

Added to portage

2026-09-10

libkate - 0.4.3
Ebuild name:

media-libs/libkate-0.4.3

Description

Codec for karaoke and text encapsulation for Ogg

Added to portage

2026-09-10

libmatroska - 1.7.2
Ebuild name:

media-libs/libmatroska-1.7.2

Description

Extensible multimedia container format based on EBML

Added to portage

2026-09-10

libnice - 0.1.24
Ebuild name:

net-libs/libnice-0.1.24

Description

Implementation of the Interactive Connectivity Establishment standard (ICE)

Added to portage

2026-09-10

libopenmpt - 0.8.9
Ebuild name:

media-libs/libopenmpt-0.8.9

Description

Library to decode tracked music files (modules)

Added to portage

2026-09-10

libtorrent - 0.16.22
Ebuild name:

net-libs/libtorrent-0.16.22

Description

BitTorrent library written in C++ for *nix

Added to portage

2026-09-10

lxc - 7.0.0-r1
Ebuild name:

app-containers/lxc-7.0.0-r1

Description

A userspace interface for the Linux kernel containment features

Added to portage

2026-09-10

mathematica - 15.0.1
Ebuild name:

sci-mathematics/mathematica-15.0.1

Description

Wolfram Mathematica

Added to portage

2026-09-10

microsoft-edge - 152.0.4191.66
Ebuild name:

www-client/microsoft-edge-152.0.4191.66

Description

The web browser from Microsoft

Added to portage

2026-09-10

microsoft-edge-beta - 153.0.4234.13
Ebuild name:

www-client/microsoft-edge-beta-153.0.4234.13

Description

The web browser from Microsoft

Added to portage

2026-09-10

microsoft-edge-beta - 153.0.4234.19
Ebuild name:

www-client/microsoft-edge-beta-153.0.4234.19

Description

The web browser from Microsoft

Added to portage

2026-09-10

microsoft-edge-beta - 154.0.4258.9
Ebuild name:

www-client/microsoft-edge-beta-154.0.4258.9

Description

The web browser from Microsoft

Added to portage

2026-09-10

microsoft-edge-dev - 154.0.4238.0
Ebuild name:

www-client/microsoft-edge-dev-154.0.4238.0

Description

The web browser from Microsoft

Added to portage

2026-09-10

microsoft-edge-dev - 154.0.4251.0
Ebuild name:

www-client/microsoft-edge-dev-154.0.4251.0

Description

The web browser from Microsoft

Added to portage

2026-09-10

microsoft-edge-dev - 155.0.4268.0
Ebuild name:

www-client/microsoft-edge-dev-155.0.4268.0

Description

The web browser from Microsoft

Added to portage

2026-09-10

microsoft-identity-broker - 3.0.2-r1
Ebuild name:

sys-auth/microsoft-identity-broker-3.0.2-r1

Description

Microsoft Authentication Broker to access a corporate e

Added to portage

2026-09-10

mkvtoolnix - 101.0
Ebuild name:

media-video/mkvtoolnix-101.0

Description

Tools to create, alter, and inspect Matroska files

Added to portage

2026-09-10

multidict - 6.8.0
Ebuild name:

dev-python/multidict-6.8.0

Description

multidict implementation

Added to portage

2026-09-10

mupdf - 1.28.2
Ebuild name:

app-text/mupdf-1.28.2

Description

A lightweight PDF viewer and toolkit written in portable C

Added to portage

2026-09-10

musescore - 4.7.5
Ebuild name:

media-sound/musescore-4.7.5

Description

WYSIWYG Music Score Typesetter

Added to portage

2026-09-10

mysql-connector-c++ - 26.7.0
Ebuild name:

dev-db/mysql-connector-c++-26.7.0

Description

MySQL database connector for C++ (mimics JDBC 4.0 API)

Added to portage

2026-09-10

networkmanager - 1.58.1
Ebuild name:

net-misc/networkmanager-1.58.1

Description

A set of co-operative tools that make networking simple and straight

Added to portage

2026-09-10

nsd - 4.15.2
Ebuild name:

net-dns/nsd-4.15.2

Description

An authoritative only, high performance, open source name server

Added to portage

2026-09-10

nsight-compute - 2026.3.0.13
Ebuild name:

dev-util/nsight-compute-2026.3.0.13

Description

performance analysis tool designed to visualize an application'

Added to portage

2026-09-10

nsight-systems - 2026.5.1
Ebuild name:

dev-util/nsight-systems-2026.5.1

Description

performance analysis tool designed to visualize an application's a

Added to portage

2026-09-10

nss - 3.129
Ebuild name:

dev-libs/nss-3.129

Description

Mozilla's Network Security Services library that implements PKI support

Added to portage

2026-09-10

nvidia-cuda-toolkit - 13.4.1
Ebuild name:

dev-util/nvidia-cuda-toolkit-13.4.1

Description

NVIDIA CUDA Toolkit (compiler and friends)

Added to portage

2026-09-10

ollama - 0.34.0
Ebuild name:

sci-ml/ollama-0.34.0

Description

Get up and running with Llama 3, Mistral, Gemma, and other language models

Added to portage

2026-09-10

opencl-icd-loader - 2026.05.29
Ebuild name:

dev-libs/opencl-icd-loader-2026.05.29

Description

Official Khronos OpenCL ICD Loader

Added to portage

2026-09-10

openmpt123 - 0.8.9
Ebuild name:

media-sound/openmpt123-0.8.9

Description

libopenmpt-based command line player for tracked music files (modules)

Added to portage

2026-09-10

opera - 135.0.5973.123
Ebuild name:

www-client/opera-135.0.5973.123

Description

A fast and secure web browser

Added to portage

2026-09-10

opera-developer - 136.0.6001.0
Ebuild name:

www-client/opera-developer-136.0.6001.0

Description

A fast and secure web browser

Added to portage

2026-09-10

opera-developer - 137.0.6010.1
Ebuild name:

www-client/opera-developer-137.0.6010.1

Description

A fast and secure web browser

Added to portage

2026-09-10

opera-developer - 137.0.6015.0
Ebuild name:

www-client/opera-developer-137.0.6015.0

Description

A fast and secure web browser

Added to portage

2026-09-10

photoqt - 5.4.1
Ebuild name:

media-gfx/photoqt-5.4.1

Description

Simple but powerful Qt-based image viewer

Added to portage

2026-09-10

photoqt-extensions - 5.4.1
Ebuild name:

media-plugins/photoqt-extensions-5.4.1

Description

Official extensions for PhotoQt

Added to portage

2026-09-10

psycopg - 2.9.13
Ebuild name:

dev-python/psycopg-2.9.13

Description

PostgreSQL database adapter for Python

Added to portage

2026-09-10

pwvucontrol - 0.5.3-r1
Ebuild name:

media-sound/pwvucontrol-0.5.3-r1

Description

Volume control applet for Pipewire

Added to portage

2026-09-10

pygobject - 3.58.0
Ebuild name:

dev-python/pygobject-3.58.0

Description

Python bindings for GObject Introspection

Added to portage

2026-09-10

qtbase - 6.11.2-r2
Ebuild name:

dev-qt/qtbase-6.11.2-r2

Description

Cross-platform application development framework

Added to portage

2026-09-10

rdma-core - 65.0
Ebuild name:

sys-cluster/rdma-core-65.0

Description

Userspace components for the Linux Kernel's drivers/infiniband subsystem

Added to portage

2026-09-10

redis-knot - 3.5.8
Ebuild name:

net-dns/redis-knot-3.5.8

Description

Redis module for Knot DNS

Added to portage

2026-09-10

regex - 2026.9.10
Ebuild name:

dev-python/regex-2026.9.10

Description

Alternative regular expression module to replace re

Added to portage

2026-09-10

rtorrent - 0.16.22
Ebuild name:

net-p2p/rtorrent-0.16.22

Description

BitTorrent Client using libtorrent

Added to portage

2026-09-10

rutorrent - 5.3.14
Ebuild name:

www-apps/rutorrent-5.3.14

Description

ruTorrent is a front-end for the popular Bittorrent client rTorrent

Added to portage

2026-09-10

sandbox - 2.51
Ebuild name:

sys-apps/sandbox-2.51

Description

sandbox'd LD_PRELOAD hack

Added to portage

2026-09-10

selenium - 4.49.0
Ebuild name:

dev-python/selenium-4.49.0

Description

Python language binding for Selenium Remote Control

Added to portage

2026-09-10

selenium-manager - 4.49.0
Ebuild name:

dev-util/selenium-manager-4.49.0

Description

CLI tool that manages the browser/driver infrastructure required b

Added to portage

2026-09-10

strawberry - 1.2.29
Ebuild name:

media-sound/strawberry-1.2.29

Description

Modern music player and library organizer based on Clementine and Qt

Added to portage

2026-09-10

thunderbird - 155.0.1
Ebuild name:

mail-client/thunderbird-155.0.1

Description

Thunderbird Mail Client

Added to portage

2026-09-10

thunderbird-bin - 155.0.1
Ebuild name:

mail-client/thunderbird-bin-155.0.1

Description

Thunderbird Mail Client

Added to portage

2026-09-10

thunderbird-l10n - 155.0.1
Ebuild name:

mail-client/thunderbird-l10n-155.0.1

Description

Thunderbird mail client's translation files

Added to portage

2026-09-10

tinyssh - 20260906
Ebuild name:

net-misc/tinyssh-20260906

Description

A small SSH server with state-of-the-art cryptography

Added to portage

2026-09-10

torchdata - 0.11.0-r1
Ebuild name:

sci-ml/torchdata-0.11.0-r1

Description

A repo for data loading and utilities on PyTorch domain libraries

Added to portage

2026-09-10

tox - 4.61.4
Ebuild name:

dev-python/tox-4.61.4

Description

virtualenv-based automation of test activities

Added to portage

2026-09-10

tqsl - 2.8.6
Ebuild name:

media-radio/tqsl-2.8.6

Description

ARRL Logbook of the World

Added to portage

2026-09-10

tree-sitter - 0.27.0
Ebuild name:

dev-libs/tree-sitter-0.27.0

Description

Tree-sitter is a parser generator tool and an incremental parsing libra

Added to portage

2026-09-10

tree-sitter-cli - 0.27.0
Ebuild name:

dev-util/tree-sitter-cli-0.27.0

Description

Command-line tool for creating and testing tree-sitter grammars

Added to portage

2026-09-10

uv - 0.12.12
Ebuild name:

dev-python/uv-0.12.12

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-09-10

uv-build - 0.12.12
Ebuild name:

dev-python/uv-build-0.12.12

Description

PEP517 uv build backend

Added to portage

2026-09-10

vorbis-tools - 1.4.3
Ebuild name:

media-sound/vorbis-tools-1.4.3

Description

Tools for using the Ogg Vorbis sound file format

Added to portage

2026-09-10

vpnc-scripts - 20250727
Ebuild name:

net-vpn/vpnc-scripts-20250727

Description

Connect scripts for use with vpnc and openconnect (and similar client

Added to portage

2026-09-10

wireless-regdb - 20260903
Ebuild name:

net-wireless/wireless-regdb-20260903

Description

Wireless Regulatory database for Linux

Added to portage

2026-09-10

wpa_supplicant - 2.12
Ebuild name:

net-wireless/wpa_supplicant-2.12

Description

IEEE 802.1X/WPA supplicant for secure wireless transfers

Added to portage

2026-09-10

xapp - 3.2.3
Ebuild name:

x11-libs/xapp-3.2.3

Description

Cross-desktop libraries and common resources

Added to portage

2026-09-10

xpdf - 4.06
Ebuild name:

app-text/xpdf-4.06

Description

PDF viewer and toolkit

Added to portage

2026-09-10

xyzservices - 2026.9.1
Ebuild name:

sci-geosciences/xyzservices-2026.9.1

Description

Source of XYZ tiles providers

Added to portage

2026-09-10

zedis - 0.9.0
Ebuild name:

dev-db/zedis-0.9.0

Description

Blazing-fast native Redis GUI built with Rust and GPUI

Added to portage

2026-09-10

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