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:

67234

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
2024-04-24
asciicast-tools - 0.0_pre20220524-r1
Ebuild name:

app-misc/asciicast-tools-0.0_pre20220524-r1

Description

Tools for creating recordings of console sessions

Added to portage

2024-04-24

awscli - 1.32.90
Ebuild name:

app-admin/awscli-1.32.90

Description

Universal Command Line Environment for AWS

Added to portage

2024-04-24

blender - 4.1.1
Ebuild name:

media-gfx/blender-4.1.1

Description

3D Creation/Animation/Publishing System

Added to portage

2024-04-24

dbus-broker - 36
Ebuild name:

sys-apps/dbus-broker-36

Description

Linux D-Bus Message Broker

Added to portage

2024-04-24

dealii - 9.4.2-r1
Ebuild name:

sci-libs/dealii-9.4.2-r1

Description

Solving partial differential equations with the finite element method

Added to portage

2024-04-24

dealii - 9.5.2-r1
Ebuild name:

sci-libs/dealii-9.5.2-r1

Description

Solving partial differential equations with the finite element method

Added to portage

2024-04-24

exabgp - 4.2.21-r1
Ebuild name:

net-misc/exabgp-4.2.21-r1

Description

The BGP swiss army knife of networking

Added to portage

2024-04-24

flann - 1.9.1-r6
Ebuild name:

sci-libs/flann-1.9.1-r6

Description

Fast approximate nearest neighbor searches in high dimensional spaces

Added to portage

2024-04-24

geant - 4.11.2.0-r1
Ebuild name:

sci-physics/geant-4.11.2.0-r1

Description

Toolkit for simulation of passage of particles through matter

Added to portage

2024-04-24

geant - 4.11.2.1-r1
Ebuild name:

sci-physics/geant-4.11.2.1-r1

Description

Toolkit for simulation of passage of particles through matter

Added to portage

2024-04-24

gmsh - 4.11.1-r2
Ebuild name:

sci-libs/gmsh-4.11.1-r2

Description

Three-dimensional finite element mesh generator

Added to portage

2024-04-24

gmsh - 4.12.2-r1
Ebuild name:

sci-libs/gmsh-4.12.2-r1

Description

Three-dimensional finite element mesh generator

Added to portage

2024-04-24

gnu-efi - 3.0.18
Ebuild name:

sys-boot/gnu-efi-3.0.18

Description

Library for build EFI Applications

Added to portage

2024-04-24

google-authenticator - 1.10
Ebuild name:

sys-auth/google-authenticator-1.10

Description

PAM Module for two step verification via mobile platform

Added to portage

2024-04-24

graphicsmagick - 1.3.43
Ebuild name:

media-gfx/graphicsmagick-1.3.43

Description

Collection of tools and libraries for many image formats

Added to portage

2024-04-24

gwyddion - 2.61-r1
Ebuild name:

sci-visualization/gwyddion-2.61-r1

Description

Framework for Scanning Mode Microscopy data analysis

Added to portage

2024-04-24

gwyddion - 2.62-r2
Ebuild name:

sci-visualization/gwyddion-2.62-r2

Description

Framework for Scanning Mode Microscopy data analysis

Added to portage

2024-04-24

gwyddion - 2.62-r3
Ebuild name:

sci-visualization/gwyddion-2.62-r3

Description

Framework for Scanning Mode Microscopy data analysis

Added to portage

2024-04-24

h5part - 1.6.6-r1
Ebuild name:

sci-libs/h5part-1.6.6-r1

Description

Portable High Performance Parallel Data Interface to HDF5

Added to portage

2024-04-24

jsonnet - 0.20.0-r1
Ebuild name:

dev-lang/jsonnet-0.20.0-r1

Description

A data templating language for app and tool developers

Added to portage

2024-04-24

libcbor - 0.11.0
Ebuild name:

dev-libs/libcbor-0.11.0

Description

CBOR protocol implementation for C and others

Added to portage

2024-04-24

libevdev - 1.13.1-r1
Ebuild name:

dev-libs/libevdev-1.13.1-r1

Description

Handler library for evdev events

Added to portage

2024-04-24

libpy - 0.2.5-r3
Ebuild name:

dev-libs/libpy-0.2.5-r3

Description

Utilities for writing C++ extension modules

Added to portage

2024-04-24

libupnp - 1.14.19
Ebuild name:

net-libs/libupnp-1.14.19

Description

An Portable Open Source UPnP Development Kit

Added to portage

2024-04-24

mathgl - 8.0.1-r1
Ebuild name:

sci-libs/mathgl-8.0.1-r1

Description

Math Graphics Library

Added to portage

2024-04-24

mimalloc - 2.1.4
Ebuild name:

dev-libs/mimalloc-2.1.4

Description

A compact general purpose allocator with excellent performance

Added to portage

2024-04-24

minecraft-server - 1.20.5
Ebuild name:

games-server/minecraft-server-1.20.5

Description

The official server for the sandbox video game

Added to portage

2024-04-24

mxml - 4.0.3
Ebuild name:

dev-libs/mxml-4.0.3

Description

A small XML parsing library that you can use to read XML data files or strings

Added to portage

2024-04-24

nginx - 1.26.0
Ebuild name:

www-servers/nginx-1.26.0

Description

Robust, small and high performance http and reverse proxy server

Added to portage

2024-04-24

petsc - 3.16.0-r2
Ebuild name:

sci-mathematics/petsc-3.16.0-r2

Description

Portable, Extensible Toolkit for Scientific Computation

Added to portage

2024-04-24

petsc - 3.17.1-r2
Ebuild name:

sci-mathematics/petsc-3.17.1-r2

Description

Portable, Extensible Toolkit for Scientific Computation

Added to portage

2024-04-24

petsc - 3.18.2-r1
Ebuild name:

sci-mathematics/petsc-3.18.2-r1

Description

Portable, Extensible Toolkit for Scientific Computation

Added to portage

2024-04-24

petsc - 3.19.1-r1
Ebuild name:

sci-mathematics/petsc-3.19.1-r1

Description

Portable, Extensible Toolkit for Scientific Computation

Added to portage

2024-04-24

petsc - 3.19.2-r1
Ebuild name:

sci-mathematics/petsc-3.19.2-r1

Description

Portable, Extensible Toolkit for Scientific Computation

Added to portage

2024-04-24

petsc - 3.19.4-r1
Ebuild name:

sci-mathematics/petsc-3.19.4-r1

Description

Portable, Extensible Toolkit for Scientific Computation

Added to portage

2024-04-24

petsc - 3.20.5-r1
Ebuild name:

sci-mathematics/petsc-3.20.5-r1

Description

Portable, Extensible Toolkit for Scientific Computation

Added to portage

2024-04-24

pv - 1.8.9
Ebuild name:

sys-apps/pv-1.8.9

Description

Pipe Viewer a tool for monitoring the progress of data through a pipe

Added to portage

2024-04-24

raku-mode - 0.2.1_p20211121
Ebuild name:

app-emacs/raku-mode-0.2.1_p20211121

Description

Major mode for editing Raku code

Added to portage

2024-04-24

reazon - 0.4.1
Ebuild name:

app-emacs/reazon-0.4.1

Description

GNU Emacs implementation of miniKanren, logic programming language

Added to portage

2024-04-24

redo+ - 1.19
Ebuild name:

app-emacs/redo+-1.19

Description

Redo/undo system for Emacs

Added to portage

2024-04-24

reformatter - 0.6
Ebuild name:

app-emacs/reformatter-0.6

Description

Define commands which run reformatters on the Emacs buffers

Added to portage

2024-04-24

reformatter - 0.7
Ebuild name:

app-emacs/reformatter-0.7

Description

Define commands which run reformatters on the Emacs buffers

Added to portage

2024-04-24

rendercheck - 1.6
Ebuild name:

x11-misc/rendercheck-1.6

Description

Tests for compliance with X RENDER extension

Added to portage

2024-04-24

rendercheck - 9999
Ebuild name:

x11-misc/rendercheck-9999

Description

Tests for compliance with X RENDER extension

Added to portage

2024-04-24

scalapack - 2.1.0-r1
Ebuild name:

sci-libs/scalapack-2.1.0-r1

Description

Subset of LAPACK routines redesigned for heterogenous (MPI) computing

Added to portage

2024-04-24

silo - 4.11-r2
Ebuild name:

sci-libs/silo-4.11-r2

Description

A mesh and field I/O library and scientific database

Added to portage

2024-04-24

silo - 4.11.1-r1
Ebuild name:

sci-libs/silo-4.11.1-r1

Description

A mesh and field I/O library and scientific database

Added to portage

2024-04-24

synapse - 1.105.1
Ebuild name:

net-im/synapse-1.105.1

Description

Reference implementation of Matrix homeserver

Added to portage

2024-04-24

trace-cmd - 3.2-r3
Ebuild name:

dev-util/trace-cmd-3.2-r3

Description

User-space front-end for Ftrace

Added to portage

2024-04-24

votca - 2022.1-r1
Ebuild name:

sci-chemistry/votca-2022.1-r1

Description

Versatile Object-oriented Toolkit for Coarse-graining Applications

Added to portage

2024-04-24

2024-04-23
apispec - 6.6.1
Ebuild name:

dev-python/apispec-6.6.1

Description

A pluggable API specification generator

Added to portage

2024-04-23

argyllcms - 3.2.0
Ebuild name:

media-gfx/argyllcms-3.2.0

Description

Open source, ICC compatible color management system

Added to portage

2024-04-23

awscli - 1.32.89
Ebuild name:

app-admin/awscli-1.32.89

Description

Universal Command Line Environment for AWS

Added to portage

2024-04-23

bash - 5.3_alpha
Ebuild name:

app-shells/bash-5.3_alpha

Description

The standard GNU Bourne again shell

Added to portage

2024-04-23

bitstring - 4.2.0
Ebuild name:

dev-python/bitstring-4.2.0

Description

A pure Python module for creation and analysis of binary data

Added to portage

2024-04-23

boost - 1.85.0
Ebuild name:

dev-libs/boost-1.85.0

Description

Boost Libraries for C++

Added to portage

2024-04-23

boto3 - 1.34.89
Ebuild name:

dev-python/boto3-1.34.89

Description

The AWS SDK for Python

Added to portage

2024-04-23

botocore - 1.34.89
Ebuild name:

dev-python/botocore-1.34.89

Description

Low-level, data-driven core of boto 3

Added to portage

2024-04-23

cadabra - 2.4.5.7
Ebuild name:

sci-mathematics/cadabra-2.4.5.7

Description

Field-theory motivated approach to computer algebra

Added to portage

2024-04-23

catch - 3.5.4
Ebuild name:

dev-cpp/catch-3.5.4

Description

Modern C++ header-only framework for unit-tests

Added to portage

2024-04-23

cfn-lint - 0.86.4
Ebuild name:

dev-python/cfn-lint-0.86.4

Description

CloudFormation Linter

Added to portage

2024-04-23

cheroot - 10.0.1
Ebuild name:

dev-python/cheroot-10.0.1

Description

High-performance, pure-Python HTTP server used by CherryPy

Added to portage

2024-04-23

croc - 9.6.15
Ebuild name:

net-misc/croc-9.6.15

Description

Easily and securely send things from one computer to another

Added to portage

2024-04-23

csharp-language-server - 0.12.0
Ebuild name:

dev-dotnet/csharp-language-server-0.12.0

Description

Roslyn-based LSP language server for C

Added to portage

2024-04-23

devcontainer - 0.59.1
Ebuild name:

app-containers/devcontainer-0.59.1

Description

Reference implementation of the Development Containers specifica

Added to portage

2024-04-23

discord - 0.0.51
Ebuild name:

net-im/discord-0.0.51

Description

All-in-one voice and text chat for gamers

Added to portage

2024-04-23

dissembler - 0.9-r2
Ebuild name:

dev-util/dissembler-0.9-r2

Description

polymorphs bytecode to a printable ASCII string

Added to portage

2024-04-23

dropwatch - 1.5.4
Ebuild name:

dev-util/dropwatch-1.5.4

Description

Monitor for dropped network packets

Added to portage

2024-04-23

fastfetch - 2.10.2
Ebuild name:

app-misc/fastfetch-2.10.2

Description

Fast neofetch-like system information tool

Added to portage

2024-04-23

filelight - 23.08.5-r1
Ebuild name:

kde-apps/filelight-23.08.5-r1

Description

Visualise disk usage with interactive map of concentric, segmented ri

Added to portage

2024-04-23

firefox - 125.0.2
Ebuild name:

www-client/firefox-125.0.2

Description

Firefox Web Browser

Added to portage

2024-04-23

firefox-bin - 125.0.2
Ebuild name:

www-client/firefox-bin-125.0.2

Description

Firefox Web Browser

Added to portage

2024-04-23

frr - 9.1
Ebuild name:

net-misc/frr-9.1

Description

The FRRouting Protocol Suite

Added to portage

2024-04-23

fsautocomplete - 0.71.0
Ebuild name:

dev-dotnet/fsautocomplete-0.71.0

Description

F language server using the Language Server Protocol

Added to portage

2024-04-23

fvwm - 2.7.0-r4
Ebuild name:

x11-wm/fvwm-2.7.0-r4

Description

An extremely powerful ICCCM-compliant multiple virtual desktop window manager

Added to portage

2024-04-23

genkernel - 4.3.11
Ebuild name:

sys-kernel/genkernel-4.3.11

Description

Gentoo automatic kernel building scripts

Added to portage

2024-04-23

gfloat - 0.0.5
Ebuild name:

dev-python/gfloat-0.0.5

Description

Generic floating-point types in Python

Added to portage

2024-04-23

hiredict - 1.3.1
Ebuild name:

dev-libs/hiredict-1.3.1

Description

Minimalistic C client library for the Redict database

Added to portage

2024-04-23

i2c-tools - 4.3-r1
Ebuild name:

sys-apps/i2c-tools-4.3-r1

Description

I2C tools for bus probing, chip dumping, EEPROM decoding, and more

Added to portage

2024-04-23

incus - 6.0.0-r1
Ebuild name:

app-containers/incus-6.0.0-r1

Description

Modern, secure and powerful system container and virtual machine mana

Added to portage

2024-04-23

indilib - 2.0.7
Ebuild name:

sci-libs/indilib-2.0.7

Description

INDI Astronomical Control Protocol library

Added to portage

2024-04-23

jupyterlab-server - 2.27.1
Ebuild name:

dev-python/jupyterlab-server-2.27.1

Description

Server components for JupyterLab and JupyterLab like applicatio

Added to portage

2024-04-23

kitty-shell-integration - 0.34.1-r1
Ebuild name:

x11-terms/kitty-shell-integration-0.34.1-r1

Description

Shell integration scripts for kitty, a GPU-based termin

Added to portage

2024-04-23

kstars - 3.7.0
Ebuild name:

sci-astronomy/kstars-3.7.0

Description

Desktop Planetarium

Added to portage

2024-04-23

kwin - 6.0.4.1
Ebuild name:

kde-plasma/kwin-6.0.4.1

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2024-04-23

libetpan - 1.9.4-r2
Ebuild name:

net-libs/libetpan-1.9.4-r2

Description

A portable, efficient middleware for different kinds of mail access

Added to portage

2024-04-23

libical - 3.0.18
Ebuild name:

dev-libs/libical-3.0.18

Description

Implementation of basic iCAL protocols

Added to portage

2024-04-23

libquotient - 0.8.2
Ebuild name:

net-libs/libquotient-0.8.2

Description

Qt-based SDK to develop applications for Matrix

Added to portage

2024-04-23

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

media-libs/libva-intel-media-driver-24.2.1

Description

Intel Media Driver for VA-API (iHD)

Added to portage

2024-04-23

ml-dtypes - 0.3.2-r1
Ebuild name:

dev-python/ml-dtypes-0.3.2-r1

Description

A stand-alone implementation of several NumPy dtype extensions

Added to portage

2024-04-23

ml-dtypes - 0.4.0
Ebuild name:

dev-python/ml-dtypes-0.4.0

Description

A stand-alone implementation of several NumPy dtype extensions

Added to portage

2024-04-23

moodle - 4.2.7
Ebuild name:

www-apps/moodle-4.2.7

Description

The Moodle Course Management System

Added to portage

2024-04-23

moodle - 4.3.4
Ebuild name:

www-apps/moodle-4.3.4

Description

The Moodle Course Management System

Added to portage

2024-04-23

moodle - 4.4
Ebuild name:

www-apps/moodle-4.4

Description

The Moodle Course Management System

Added to portage

2024-04-23

opensc - 0.25.1
Ebuild name:

dev-libs/opensc-0.25.1

Description

Libraries and applications to access smartcards

Added to portage

2024-04-23

postfix - 3.10_pre20240422
Ebuild name:

mail-mta/postfix-3.10_pre20240422

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2024-04-23

pulseaudio-qt - 1.4.0-r2
Ebuild name:

media-libs/pulseaudio-qt-1.4.0-r2

Description

Qt bindings for libpulse

Added to portage

2024-04-23

pydantic - 2.7.1
Ebuild name:

dev-python/pydantic-2.7.1

Description

Data parsing and validation using Python type hints

Added to portage

2024-04-23

pydantic-core - 2.18.2
Ebuild name:

dev-python/pydantic-core-2.18.2

Description

Core validation logic for pydantic written in Rust

Added to portage

2024-04-23

readline - 8.3_alpha
Ebuild name:

sys-libs/readline-8.3_alpha

Description

Another cute console display library

Added to portage

2024-04-23

redict - 0
Ebuild name:

acct-group/redict-0

Description

Redict program group

Added to portage

2024-04-23

redict - 0
Ebuild name:

acct-user/redict-0

Description

Redict program user

Added to portage

2024-04-23

redict - 7.3.0
Ebuild name:

dev-db/redict-7.3.0

Description

A persistent caching system, key-value, and data structures database

Added to portage

2024-04-23

regress - 1.5.1
Ebuild name:

app-emacs/regress-1.5.1

Description

Regression test harness for Emacs Lisp code

Added to portage

2024-04-23

remember - 2.0-r1
Ebuild name:

app-emacs/remember-2.0-r1

Description

Simplify writing short notes in emacs

Added to portage

2024-04-23

repology - 1.2.3
Ebuild name:

app-emacs/repology-1.2.3

Description

Repology API access via Emacs Lisp

Added to portage

2024-04-23

rst-linker - 2.5.0
Ebuild name:

dev-python/rst-linker-2.5.0

Description

Sphinx plugin to add links and timestamps to the changelog

Added to portage

2024-04-23

ssh-audit - 3.2.0
Ebuild name:

net-analyzer/ssh-audit-3.2.0

Description

SSH server auditing (banner, key exchange, encryption, mac, compressio

Added to portage

2024-04-23

stellarsolver - 2.5-r1
Ebuild name:

sci-libs/stellarsolver-2.5-r1

Description

Cross-platform Sextractor and Astrometry.net-Based internal astrometr

Added to portage

2024-04-23

sybil - 6.1.0
Ebuild name:

dev-python/sybil-6.1.0

Description

Automated testing for the examples in your documentation

Added to portage

2024-04-23

tatt - 0.11-r1
Ebuild name:

app-portage/tatt-0.11-r1

Description

Arch testing tool

Added to portage

2024-04-23

texlive-context - 2023_p69108-r2
Ebuild name:

dev-texlive/texlive-context-2023_p69108-r2

Description

TeXLive ConTeXt and packages

Added to portage

2024-04-23

thepeg - 2.2.3-r1
Ebuild name:

sci-physics/thepeg-2.2.3-r1

Description

Toolkit for High Energy Physics Event Generation

Added to portage

2024-04-23

thepeg - 2.3.0
Ebuild name:

sci-physics/thepeg-2.3.0

Description

Toolkit for High Energy Physics Event Generation

Added to portage

2024-04-23

tinycss2 - 1.3.0
Ebuild name:

dev-python/tinycss2-1.3.0

Description

A complete yet simple CSS parser for Python

Added to portage

2024-04-23

translate-toolkit - 3.13.0
Ebuild name:

dev-python/translate-toolkit-3.13.0

Description

Toolkit to convert between many translation formats

Added to portage

2024-04-23

types-docutils - 0.21.0.20240423
Ebuild name:

dev-python/types-docutils-0.21.0.20240423

Description

Typing stubs for docutils

Added to portage

2024-04-23

types-psutil - 5.9.5.20240423
Ebuild name:

dev-python/types-psutil-5.9.5.20240423

Description

Typing stubs for psutil

Added to portage

2024-04-23

types-setuptools - 69.5.0.20240423
Ebuild name:

dev-python/types-setuptools-69.5.0.20240423

Description

Typing stubs for setuptools

Added to portage

2024-04-23

urwid - 2.6.11
Ebuild name:

dev-python/urwid-2.6.11

Description

Curses-based user interface library for Python

Added to portage

2024-04-23

urwidtrees - 1.0.3-r2
Ebuild name:

dev-python/urwidtrees-1.0.3-r2

Description

Tree widgets for urwid

Added to portage

2024-04-23

uv - 0.1.36
Ebuild name:

dev-python/uv-0.1.36

Description

A Python package installer and resolver, written in Rust

Added to portage

2024-04-23

wine-mono - 9.1.0
Ebuild name:

app-emulation/wine-mono-9.1.0

Description

Replacement for the .NET runtime and class libraries in Wine

Added to portage

2024-04-23

xboxdrv - 0.8.8_p20190118-r3
Ebuild name:

games-util/xboxdrv-0.8.8_p20190118-r3

Description

Userspace Xbox 360 Controller driver

Added to portage

2024-04-23

xmrig - 6.21.3
Ebuild name:

net-misc/xmrig-6.21.3

Description

RandomX, CryptoNight, KawPow, AstroBWT, and Argon2 CPU/GPU miner

Added to portage

2024-04-23

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: 67.2 ms