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:

82766

userrating:

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


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

Gentoo udev Guide


1. What is udev?


The /dev Directory


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


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

namedev


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

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

libsysfs


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

udev


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

2. Using udev on Gentoo


Requirements


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

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

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

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

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

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

Configuration


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

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

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

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

3. Known Issues


Missing device node files at boot


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

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

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

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

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

udev and nvidia


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

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

LVM2 Names Disappear


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

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

No Consistent Naming between DevFS and udev


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

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

Other issues


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

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

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

4. Resources & Acknowledgements


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

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

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

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-01-10
attica - 6.22.0
Ebuild name:

kde-frameworks/attica-6.22.0

Description

Framework providing access to Open Collaboration Services

Added to portage

2026-01-10

baloo - 6.22.0
Ebuild name:

kde-frameworks/baloo-6.22.0

Description

Framework for searching and managing metadata

Added to portage

2026-01-10

bluez-qt - 6.22.0
Ebuild name:

kde-frameworks/bluez-qt-6.22.0

Description

Qt wrapper for Bluez 5 DBus API

Added to portage

2026-01-10

breeze-icons - 6.22.0
Ebuild name:

kde-frameworks/breeze-icons-6.22.0

Description

Breeze SVG icon theme

Added to portage

2026-01-10

extra-cmake-modules - 6.22.0
Ebuild name:

kde-frameworks/extra-cmake-modules-6.22.0

Description

Extra modules and scripts for CMake

Added to portage

2026-01-10

filelock - 3.20.3
Ebuild name:

dev-python/filelock-3.20.3

Description

A platform independent file lock for Python

Added to portage

2026-01-10

frameworkintegration - 6.22.0
Ebuild name:

kde-frameworks/frameworkintegration-6.22.0

Description

Framework for integrating Qt applications with KDE Plasm

Added to portage

2026-01-10

fsspec - 2026.1.0
Ebuild name:

dev-python/fsspec-2026.1.0

Description

A specification that python filesystems should adhere to

Added to portage

2026-01-10

kapidox - 6.22.0
Ebuild name:

kde-frameworks/kapidox-6.22.0

Description

Framework for building KDE API documentation in a standard format and

Added to portage

2026-01-10

karchive - 6.22.0
Ebuild name:

kde-frameworks/karchive-6.22.0

Description

Framework for reading, creation, and manipulation of various archive

Added to portage

2026-01-10

kauth - 6.22.0
Ebuild name:

kde-frameworks/kauth-6.22.0

Description

Framework to let applications perform actions as a privileged user

Added to portage

2026-01-10

kbookmarks - 6.22.0
Ebuild name:

kde-frameworks/kbookmarks-6.22.0

Description

Framework for managing bookmarks stored in XBEL format

Added to portage

2026-01-10

kcalendarcore - 6.22.0
Ebuild name:

kde-frameworks/kcalendarcore-6.22.0

Description

Library for interfacing with calendars

Added to portage

2026-01-10

kcmutils - 6.22.0
Ebuild name:

kde-frameworks/kcmutils-6.22.0

Description

Framework to work with KDE System Settings modules

Added to portage

2026-01-10

kcodecs - 6.22.0
Ebuild name:

kde-frameworks/kcodecs-6.22.0

Description

Framework for manipulating strings using various encodings

Added to portage

2026-01-10

kcolorscheme - 6.22.0
Ebuild name:

kde-frameworks/kcolorscheme-6.22.0

Description

Framework for downloading and sharing additional application dat

Added to portage

2026-01-10

kcompletion - 6.22.0
Ebuild name:

kde-frameworks/kcompletion-6.22.0

Description

Framework for common completion tasks such as filename or URL com

Added to portage

2026-01-10

kconfig - 6.22.0
Ebuild name:

kde-frameworks/kconfig-6.22.0

Description

Framework for reading and writing configuration

Added to portage

2026-01-10

kconfigwidgets - 6.22.0
Ebuild name:

kde-frameworks/kconfigwidgets-6.22.0

Description

Framework providing an assortment of configuration-related wid

Added to portage

2026-01-10

kcontacts - 6.22.0
Ebuild name:

kde-frameworks/kcontacts-6.22.0

Description

Address book API based on KDE Frameworks

Added to portage

2026-01-10

kcoreaddons - 6.22.0
Ebuild name:

kde-frameworks/kcoreaddons-6.22.0

Description

Framework for solving common problems such as caching, randomisat

Added to portage

2026-01-10

kcrash - 6.22.0
Ebuild name:

kde-frameworks/kcrash-6.22.0

Description

Framework for intercepting and handling application crashes

Added to portage

2026-01-10

kdav - 6.22.0
Ebuild name:

kde-frameworks/kdav-6.22.0

Description

DAV protocol implemention with KJobs

Added to portage

2026-01-10

kdbusaddons - 6.22.0
Ebuild name:

kde-frameworks/kdbusaddons-6.22.0

Description

Framework for registering services and applications per freedeskt

Added to portage

2026-01-10

kdeclarative - 6.22.0
Ebuild name:

kde-frameworks/kdeclarative-6.22.0

Description

Framework providing integration of QML and KDE work spaces

Added to portage

2026-01-10

kded - 6.22.0
Ebuild name:

kde-frameworks/kded-6.22.0

Description

Central daemon of KDE workspaces

Added to portage

2026-01-10

kdesu - 6.22.0
Ebuild name:

kde-frameworks/kdesu-6.22.0

Description

Framework to handle super user actions

Added to portage

2026-01-10

kdnssd - 6.22.0
Ebuild name:

kde-frameworks/kdnssd-6.22.0

Description

Framework for network service discovery using Zeroconf

Added to portage

2026-01-10

kdoctools - 6.22.0
Ebuild name:

kde-frameworks/kdoctools-6.22.0

Description

Tools to generate documentation in various formats from DocBook fil

Added to portage

2026-01-10

kfilemetadata - 6.22.0
Ebuild name:

kde-frameworks/kfilemetadata-6.22.0

Description

Library for extracting file metadata

Added to portage

2026-01-10

kglobalaccel - 6.22.0
Ebuild name:

kde-frameworks/kglobalaccel-6.22.0

Description

Framework to handle global shortcuts

Added to portage

2026-01-10

kguiaddons - 6.22.0
Ebuild name:

kde-frameworks/kguiaddons-6.22.0

Description

Framework providing assorted high-level user interface components

Added to portage

2026-01-10

kholidays - 6.22.0
Ebuild name:

kde-frameworks/kholidays-6.22.0

Description

Library to determine holidays and other special events for a geogra

Added to portage

2026-01-10

ki18n - 6.22.0
Ebuild name:

kde-frameworks/ki18n-6.22.0

Description

Framework based on Gettext for internationalizing user interface text

Added to portage

2026-01-10

kiconthemes - 6.22.0
Ebuild name:

kde-frameworks/kiconthemes-6.22.0

Description

Framework for icon theming and configuration

Added to portage

2026-01-10

kidletime - 6.22.0
Ebuild name:

kde-frameworks/kidletime-6.22.0

Description

Framework for detection and notification of device idle time

Added to portage

2026-01-10

kimageformats - 6.22.0
Ebuild name:

kde-frameworks/kimageformats-6.22.0

Description

Framework providing additional format plugins for Qt's image I/

Added to portage

2026-01-10

kio - 6.22.0
Ebuild name:

kde-frameworks/kio-6.22.0

Description

Framework providing transparent file and data management

Added to portage

2026-01-10

pathspec - 1.0.3
Ebuild name:

dev-python/pathspec-1.0.3

Description

Utility library for gitignore style pattern matching of file paths

Added to portage

2026-01-10

pypdf - 6.6.0
Ebuild name:

dev-python/pypdf-6.6.0

Description

Python library to work with PDF files

Added to portage

2026-01-10

pytest-regressions - 2.9.1
Ebuild name:

dev-python/pytest-regressions-2.9.1

Description

Easy to use fixtures to write regression tests

Added to portage

2026-01-10

sbctl - 0.15.4
Ebuild name:

app-crypt/sbctl-0.15.4

Description

Secure Boot key manager

Added to portage

2026-01-10

sbctl - 0.16
Ebuild name:

app-crypt/sbctl-0.16

Description

Secure Boot key manager

Added to portage

2026-01-10

sbctl - 0.18
Ebuild name:

app-crypt/sbctl-0.18

Description

Secure Boot key manager

Added to portage

2026-01-10

sbsigntools - 0.9.5
Ebuild name:

app-crypt/sbsigntools-0.9.5

Description

Utilities for signing and verifying files for UEFI Secure Boot

Added to portage

2026-01-10

sddm-gentoo-config - 0
Ebuild name:

gui-apps/sddm-gentoo-config-0

Description

Gentoo defaults for SDDM (Simple Desktop Display Manager)

Added to portage

2026-01-10

tox - 4.34.1
Ebuild name:

dev-python/tox-4.34.1

Description

virtualenv-based automation of test activities

Added to portage

2026-01-10

translate-toolkit - 3.18.0
Ebuild name:

dev-python/translate-toolkit-3.18.0

Description

Toolkit to convert between many translation formats

Added to portage

2026-01-10

virtualenv - 20.36.1
Ebuild name:

dev-python/virtualenv-20.36.1

Description

Virtual Python Environment builder

Added to portage

2026-01-10

zope-interface - 8.2
Ebuild name:

dev-python/zope-interface-8.2

Description

Interfaces for Python

Added to portage

2026-01-10

2026-01-09
build - 1.4.0
Ebuild name:

dev-python/build-1.4.0

Description

A simple, correct PEP517 package builder

Added to portage

2026-01-09

closure-compiler-bin - 20260106
Ebuild name:

dev-lang/closure-compiler-bin-20260106

Description

JavaScript optimizing compiler

Added to portage

2026-01-09

confuse - 2.1.0
Ebuild name:

dev-python/confuse-2.1.0

Description

Confuse is a configuration library for Python that uses YAML

Added to portage

2026-01-09

django-polymorphic - 4.8.0
Ebuild name:

dev-python/django-polymorphic-4.8.0

Description

Seamless Polymorphic Inheritance for Django Models

Added to portage

2026-01-09

dry-inflector - 1.3.0
Ebuild name:

dev-ruby/dry-inflector-1.3.0

Description

String inflections for dry-rb

Added to portage

2026-01-09

dry-types - 1.9.0
Ebuild name:

dev-ruby/dry-types-1.9.0

Description

Type system for Ruby supporting coercions, constraints and complex types.

Added to portage

2026-01-09

etcd - 3.5.26
Ebuild name:

dev-db/etcd-3.5.26

Description

Highly-available key value store for shared configuration and service discovery

Added to portage

2026-01-09

etcd - 3.6.7
Ebuild name:

dev-db/etcd-3.6.7

Description

Highly-available key value store for shared configuration and service discovery

Added to portage

2026-01-09

exo - 1.90.0
Ebuild name:

app-admin/exo-1.90.0

Description

Command-line tool for everything at Exoscale compute, storage, dns

Added to portage

2026-01-09

hcloud - 2.14.0
Ebuild name:

dev-python/hcloud-2.14.0

Description

Official Hetzner Cloud python library

Added to portage

2026-01-09

icinga2 - 2.15.0-r2
Ebuild name:

net-analyzer/icinga2-2.15.0-r2

Description

Distributed, general purpose, network monitoring engine

Added to portage

2026-01-09

image_processing - 1.14.0-r1
Ebuild name:

dev-ruby/image_processing-1.14.0-r1

Description

High-level image processing helper methods with libvips and Ima

Added to portage

2026-01-09

intellij-idea - 2025.3.1.1
Ebuild name:

dev-util/intellij-idea-2025.3.1.1

Description

A complete toolset for web, mobile and enterprise development

Added to portage

2026-01-09

iterable-io - 1.0.1
Ebuild name:

dev-python/iterable-io-1.0.1

Description

Adapt generators and other iterables to a file-like interface

Added to portage

2026-01-09

jj - 0.37.0
Ebuild name:

dev-vcs/jj-0.37.0

Description

Jujutsu - an experimental version control system

Added to portage

2026-01-09

jupyter-client - 8.8.0
Ebuild name:

dev-python/jupyter-client-8.8.0

Description

Jupyter protocol implementation and client libraries

Added to portage

2026-01-09

krita - 6.0.0_alpha_pre20260108
Ebuild name:

media-gfx/krita-6.0.0_alpha_pre20260108

Description

Free digital painting application. Digital Painting, Creati

Added to portage

2026-01-09

maturin - 1.11.5
Ebuild name:

dev-util/maturin-1.11.5

Description

Build and publish crates with pyo3, rust-cpython and cffi bindings

Added to portage

2026-01-09

multi_xml - 0.8.1
Ebuild name:

dev-ruby/multi_xml-0.8.1

Description

A generic swappable back-end for XML parsing

Added to portage

2026-01-09

nss - 3.120
Ebuild name:

dev-libs/nss-3.120

Description

Mozilla's Network Security Services library that implements PKI support

Added to portage

2026-01-09

oslo-concurrency - 7.3.0
Ebuild name:

dev-python/oslo-concurrency-7.3.0

Description

Oslo Concurrency library

Added to portage

2026-01-09

oslo-config - 10.2.0
Ebuild name:

dev-python/oslo-config-10.2.0

Description

Oslo Configuration API

Added to portage

2026-01-09

pathspec - 1.0.2
Ebuild name:

dev-python/pathspec-1.0.2

Description

Utility library for gitignore style pattern matching of file paths

Added to portage

2026-01-09

pdf-tools - 1.3.0
Ebuild name:

app-emacs/pdf-tools-1.3.0

Description

Emacs Lisp support library for PDF documents

Added to portage

2026-01-09

pdm - 2.26.4
Ebuild name:

dev-python/pdm-2.26.4

Description

Python package and dependency manager supporting the latest PEP standards

Added to portage

2026-01-09

puremd5 - 2.1.4
Ebuild name:

dev-haskell/puremd5-2.1.4

Description

A Haskell-only implementation of the MD5 digest (hash) algorithm

Added to portage

2026-01-09

pyqt6 - 6.10.2
Ebuild name:

dev-python/pyqt6-6.10.2

Description

Python bindings for the Qt framework

Added to portage

2026-01-09

pyside - 6.10.1-r5
Ebuild name:

dev-python/pyside-6.10.1-r5

Description

Python bindings for the Qt framework

Added to portage

2026-01-09

pytest-regressions - 2.9.0
Ebuild name:

dev-python/pytest-regressions-2.9.0

Description

Easy to use fixtures to write regression tests

Added to portage

2026-01-09

python-neutronclient - 11.7.0
Ebuild name:

dev-python/python-neutronclient-11.7.0

Description

A client for the OpenStack Quantum API

Added to portage

2026-01-09

python-openstackclient - 8.3.0
Ebuild name:

dev-python/python-openstackclient-8.3.0

Description

A client for the OpenStack APIs

Added to portage

2026-01-09

qiskit - 2.3.0
Ebuild name:

dev-python/qiskit-2.3.0

Description

An open-source SDK for working with quantum computers

Added to portage

2026-01-09

rotix - 0.83-r3
Ebuild name:

app-crypt/rotix-0.83-r3

Description

Rotix allows you to generate rotational obfuscations

Added to portage

2026-01-09

rpm-sequoia - 1.10.0
Ebuild name:

app-crypt/rpm-sequoia-1.10.0

Description

Implementation of the RPM PGP interface using Sequoia

Added to portage

2026-01-09

rpm-sequoia - 1.9.0
Ebuild name:

app-crypt/rpm-sequoia-1.9.0

Description

Implementation of the RPM PGP interface using Sequoia

Added to portage

2026-01-09

rspamd - 3.14.3
Ebuild name:

mail-filter/rspamd-3.14.3

Description

Rapid spam filtering system

Added to portage

2026-01-09

sabctools - 9.3.0
Ebuild name:

dev-python/sabctools-9.3.0

Description

Module providing raw yEnc encoding/decoding for SABnzbd

Added to portage

2026-01-09

solaar - 1.1.19
Ebuild name:

app-misc/solaar-1.1.19

Description

Linux Device Manager for Logitech Unifying Receivers and Paired Devices

Added to portage

2026-01-09

telegram-desktop-bin - 6.4.1
Ebuild name:

net-im/telegram-desktop-bin-6.4.1

Description

Official desktop client for Telegram (binary package)

Added to portage

2026-01-09

tox - 4.34.0
Ebuild name:

dev-python/tox-4.34.0

Description

virtualenv-based automation of test activities

Added to portage

2026-01-09

transient - 0.12.0
Ebuild name:

app-emacs/transient-0.12.0

Description

Transient commands abstraction for GNU Emacs

Added to portage

2026-01-09

types-gdb - 16.3.0.20260109
Ebuild name:

dev-python/types-gdb-16.3.0.20260109

Description

Typing stubs for gdb

Added to portage

2026-01-09

upterm - 0.21.1
Ebuild name:

app-misc/upterm-0.21.1

Description

Instant Terminal Sharing

Added to portage

2026-01-09

werkzeug - 3.1.5
Ebuild name:

dev-python/werkzeug-3.1.5

Description

Collection of various utilities for WSGI applications

Added to portage

2026-01-09

with-editor - 3.4.8
Ebuild name:

app-emacs/with-editor-3.4.8

Description

Use the Emacsclient as the of child processes

Added to portage

2026-01-09

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