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:

87336

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-08-01
awscli - 1.45.62
Ebuild name:

app-admin/awscli-1.45.62

Description

Universal Command Line Environment for AWS

Added to portage

2026-08-01

boto3 - 1.43.62
Ebuild name:

dev-python/boto3-1.43.62

Description

The AWS SDK for Python

Added to portage

2026-08-01

botocore - 1.43.62
Ebuild name:

dev-python/botocore-1.43.62

Description

Low-level, data-driven core of boto 3

Added to portage

2026-08-01

claude-code - 2.1.220
Ebuild name:

dev-util/claude-code-2.1.220

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-08-01

cli11 - 2.7.1
Ebuild name:

dev-cpp/cli11-2.7.1

Description

Command line parser for C++11

Added to portage

2026-08-01

compat53 - 0.15.1
Ebuild name:

dev-lua/compat53-0.15.1

Description

Compatibility module providing Lua-5.3-style APIs for Lua 5.2 and 5.1

Added to portage

2026-08-01

cryptography - 50.0.0
Ebuild name:

dev-python/cryptography-50.0.0

Description

Library providing cryptographic recipes and primitives

Added to portage

2026-08-01

cutlass - 4.4.2
Ebuild name:

dev-libs/cutlass-4.4.2

Description

CUDA Templates for Linear Algebra Subroutines

Added to portage

2026-08-01

environs - 15.1.0
Ebuild name:

dev-python/environs-15.1.0

Description

Python library for simplified environment variable parsing

Added to portage

2026-08-01

firecracker-bin - 1.16.1
Ebuild name:

app-emulation/firecracker-bin-1.16.1

Description

Secure and fast microVMs for serverless computing (static buil

Added to portage

2026-08-01

guessit - 4.4.0
Ebuild name:

dev-python/guessit-4.4.0

Description

Python library for guessing information from video filenames

Added to portage

2026-08-01

ibus-typing-booster - 2.30.11
Ebuild name:

app-i18n/ibus-typing-booster-2.30.11

Description

Completion input method for IBus

Added to portage

2026-08-01

jupyter-builder - 1.2.1
Ebuild name:

dev-python/jupyter-builder-1.2.1

Description

JupyterLab build tools

Added to portage

2026-08-01

just - 1.57.0
Ebuild name:

dev-build/just-1.57.0

Description

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

Added to portage

2026-08-01

kitty - 0.48.2
Ebuild name:

x11-terms/kitty-0.48.2

Description

Fast, feature-rich, GPU-based terminal

Added to portage

2026-08-01

kitty-shell-integration - 0.48.2
Ebuild name:

x11-terms/kitty-shell-integration-0.48.2

Description

Shell integration scripts for kitty, a GPU-based terminal

Added to portage

2026-08-01

kitty-terminfo - 0.48.2
Ebuild name:

x11-terms/kitty-terminfo-0.48.2

Description

Terminfo for kitty, a GPU-based terminal emulator

Added to portage

2026-08-01

knot - 3.5.5-r2
Ebuild name:

net-dns/knot-3.5.5-r2

Description

High-performance authoritative-only DNS server

Added to portage

2026-08-01

knot - 3.5.6
Ebuild name:

net-dns/knot-3.5.6

Description

High-performance authoritative-only DNS server

Added to portage

2026-08-01

lrzip - 0.7.1
Ebuild name:

app-arch/lrzip-0.7.1

Description

Long Range ZIP or Lzma RZIP optimized for compressing large files

Added to portage

2026-08-01

m17n-db - 1.8.14
Ebuild name:

dev-db/m17n-db-1.8.14

Description

Database for the m17n library

Added to portage

2026-08-01

matlab - 9999
Ebuild name:

app-emacs/matlab-9999

Description

Major modes for MATLAB .m and .tlc files

Added to portage

2026-08-01

mediawiki - 2.3.1
Ebuild name:

app-emacs/mediawiki-2.3.1

Description

MediaWiki client for Emacs

Added to portage

2026-08-01

meson-mode - 0.4
Ebuild name:

app-emacs/meson-mode-0.4

Description

A GNU Emacs major mode for Meson build-system files

Added to portage

2026-08-01

meson-mode - 9999
Ebuild name:

app-emacs/meson-mode-9999

Description

A GNU Emacs major mode for Meson build-system files

Added to portage

2026-08-01

mlterm - 3.9.5
Ebuild name:

x11-terms/mlterm-3.9.5

Description

A multi-lingual terminal emulator

Added to portage

2026-08-01

nginx - 1.29.5-r2
Ebuild name:

www-servers/nginx-1.29.5-r2

Description

Added to portage

2026-08-01

nginx - 1.29.7-r3
Ebuild name:

www-servers/nginx-1.29.7-r3

Description

Added to portage

2026-08-01

nginx - 1.30.0-r2
Ebuild name:

www-servers/nginx-1.30.0-r2

Description

Added to portage

2026-08-01

nginx - 1.30.2-r2
Ebuild name:

www-servers/nginx-1.30.2-r2

Description

Added to portage

2026-08-01

nginx - 1.30.3-r2
Ebuild name:

www-servers/nginx-1.30.3-r2

Description

Added to portage

2026-08-01

nginx - 1.30.4-r1
Ebuild name:

www-servers/nginx-1.30.4-r1

Description

Added to portage

2026-08-01

nginx - 1.31.1-r2
Ebuild name:

www-servers/nginx-1.31.1-r2

Description

Added to portage

2026-08-01

nginx - 1.31.2-r2
Ebuild name:

www-servers/nginx-1.31.2-r2

Description

Added to portage

2026-08-01

nginx - 1.31.3-r1
Ebuild name:

www-servers/nginx-1.31.3-r1

Description

Added to portage

2026-08-01

ngx-acme - 0.3.1-r1
Ebuild name:

www-nginx/ngx-acme-0.3.1-r1

Description

An NGINX module with the implementation of the ACMEv2 protocol

Added to portage

2026-08-01

pebble - 5.2.1-r1
Ebuild name:

dev-python/pebble-5.2.1-r1

Description

Threading and multiprocessing eye-candy

Added to portage

2026-08-01

peewee - 4.3.0
Ebuild name:

dev-python/peewee-4.3.0

Description

Small Python ORM

Added to portage

2026-08-01

php - 8.3.33
Ebuild name:

dev-lang/php-8.3.33

Description

The PHP language runtime engine

Added to portage

2026-08-01

php - 8.4.24
Ebuild name:

dev-lang/php-8.4.24

Description

The PHP language runtime engine

Added to portage

2026-08-01

pkgcheck - 0.10.42
Ebuild name:

dev-util/pkgcheck-0.10.42

Description

pkgcore-based QA utility for ebuild repos

Added to portage

2026-08-01

pkgcore - 0.12.37
Ebuild name:

sys-apps/pkgcore-0.12.37

Description

a framework for package management

Added to portage

2026-08-01

pkgdev - 0.2.16
Ebuild name:

dev-util/pkgdev-0.2.16

Description

Collection of tools for Gentoo development

Added to portage

2026-08-01

pyglet - 2.1.16
Ebuild name:

dev-python/pyglet-2.1.16

Description

Cross-platform windowing and multimedia library for Python

Added to portage

2026-08-01

pysnmp - 7.1.28
Ebuild name:

dev-python/pysnmp-7.1.28

Description

Python SNMP library

Added to portage

2026-08-01

redis-knot - 3.5.6
Ebuild name:

net-dns/redis-knot-3.5.6

Description

Redis module for Knot DNS

Added to portage

2026-08-01

snakeoil - 0.11.3
Ebuild name:

dev-python/snakeoil-0.11.3

Description

misc common functionality and useful optimizations

Added to portage

2026-08-01

yq - 3.4.3-r1
Ebuild name:

app-misc/yq-3.4.3-r1

Description

Command-line YAML processor - jq wrapper for YAML documents

Added to portage

2026-08-01

yq - 4.1.2-r1
Ebuild name:

app-misc/yq-4.1.2-r1

Description

Command-line YAML processor - jq wrapper for YAML documents

Added to portage

2026-08-01

zsnes - 2.2.2
Ebuild name:

games-emulation/zsnes-2.2.2

Description

Fork of the classic Super Nintendo emulator

Added to portage

2026-08-01

2026-07-31
acl - 2.4.0-r2
Ebuild name:

sys-apps/acl-2.4.0-r2

Description

Access control list utilities, libraries, and headers

Added to portage

2026-07-31

aiksaurus - 1.2.1-r4
Ebuild name:

app-text/aiksaurus-1.2.1-r4

Description

A thesaurus lib, tool, and database

Added to portage

2026-07-31

android-studio - 2026.1.3.7
Ebuild name:

dev-util/android-studio-2026.1.3.7

Description

Android development environment based on IntelliJ IDEA

Added to portage

2026-07-31

ansiweather - 1.19.1
Ebuild name:

app-misc/ansiweather-1.19.1

Description

Weather in terminal, with ANSI colors and Unicode symbols

Added to portage

2026-07-31

awscli - 1.45.61
Ebuild name:

app-admin/awscli-1.45.61

Description

Universal Command Line Environment for AWS

Added to portage

2026-07-31

bitarray - 3.10.0
Ebuild name:

dev-python/bitarray-3.10.0

Description

Efficient arrays of booleans -- C extension

Added to portage

2026-07-31

blueprint-compiler - 0.22.2
Ebuild name:

dev-util/blueprint-compiler-0.22.2

Description

Compiler for Blueprint, a markup language for GTK user interface

Added to portage

2026-07-31

boto3 - 1.43.61
Ebuild name:

dev-python/boto3-1.43.61

Description

The AWS SDK for Python

Added to portage

2026-07-31

botocore - 1.43.61
Ebuild name:

dev-python/botocore-1.43.61

Description

Low-level, data-driven core of boto 3

Added to portage

2026-07-31

buildah - 1.45.0
Ebuild name:

app-containers/buildah-1.45.0

Description

A tool that facilitates building OCI images

Added to portage

2026-07-31

cachelib - 0.15.0
Ebuild name:

dev-python/cachelib-0.15.0

Description

Collection of cache libraries in the same API interface. Extracted from

Added to portage

2026-07-31

closure-compiler-bin - 20260726
Ebuild name:

dev-lang/closure-compiler-bin-20260726

Description

JavaScript optimizing compiler

Added to portage

2026-07-31

container-libs - 0.69.0
Ebuild name:

app-containers/container-libs-0.69.0

Description

Several utilities from the containers project

Added to portage

2026-07-31

corsix-th - 0.70.0-r2
Ebuild name:

games-simulation/corsix-th-0.70.0-r2

Description

Open source clone of Theme Hospital

Added to portage

2026-07-31

crystal - 1.21.0
Ebuild name:

dev-lang/crystal-1.21.0

Description

The Crystal Programming Language

Added to portage

2026-07-31

curtail - 1.16.2-r1
Ebuild name:

media-gfx/curtail-1.16.2-r1

Description

Image compressor, supporting PNG, JPEG and WebP

Added to portage

2026-07-31

dotnet-outdated - 4.8.1
Ebuild name:

dev-dotnet/dotnet-outdated-4.8.1

Description

Display and update outdated NuGet packages in a project

Added to portage

2026-07-31

feedparser - 6.0.14
Ebuild name:

dev-python/feedparser-6.0.14

Description

Parse RSS and Atom feeds in Python

Added to portage

2026-07-31

feedparser-sgmllib - 2.0.1
Ebuild name:

dev-python/feedparser-sgmllib-2.0.1

Description

sgmllib from Python 2.7 for feedparser use

Added to portage

2026-07-31

fluidsynth - 2.5.7
Ebuild name:

media-sound/fluidsynth-2.5.7

Description

Software real-time synthesizer based on the Soundfont 2 specifications

Added to portage

2026-07-31

gpgme - 2.0.26
Ebuild name:

dev-ruby/gpgme-2.0.26

Description

Ruby language binding for GnuPG Made Easy

Added to portage

2026-07-31

guessit - 4.3.0
Ebuild name:

dev-python/guessit-4.3.0

Description

Python library for guessing information from video filenames

Added to portage

2026-07-31

hypothesis - 6.164.0
Ebuild name:

dev-python/hypothesis-6.164.0

Description

A library for property based testing

Added to portage

2026-07-31

ipython - 9.16.0
Ebuild name:

dev-python/ipython-9.16.0

Description

Advanced interactive shell for Python

Added to portage

2026-07-31

joplin-desktop - 3.7.9
Ebuild name:

app-office/joplin-desktop-3.7.9

Description

Secure note taking and to-do app with synchronization capabilities

Added to portage

2026-07-31

jupyter-builder - 1.2.0
Ebuild name:

dev-python/jupyter-builder-1.2.0

Description

JupyterLab build tools

Added to portage

2026-07-31

kineto - 0.4.0_p20260603
Ebuild name:

sci-ml/kineto-0.4.0_p20260603

Description

part of the PyTorch Profiler

Added to portage

2026-07-31

kotlin-bin - 2.4.10
Ebuild name:

dev-lang/kotlin-bin-2.4.10

Description

Statically typed language that targets the JVM and JavaScript

Added to portage

2026-07-31

lesscpy - 0.15.2
Ebuild name:

dev-python/lesscpy-0.15.2

Description

A compiler written in Python for the LESS language

Added to portage

2026-07-31

libffado - 2.5.0_p5
Ebuild name:

media-libs/libffado-2.5.0_p5

Description

Driver for IEEE1394 (Firewire) audio interfaces

Added to portage

2026-07-31

limine - 12.5.2
Ebuild name:

sys-boot/limine-12.5.2

Description

Modern, secure, portable, multiprotocol bootloader and boot manager

Added to portage

2026-07-31

llhttp - 9.4.3
Ebuild name:

net-libs/llhttp-9.4.3

Description

Port of http_parser to llparse

Added to portage

2026-07-31

logwatch - 7.15
Ebuild name:

sys-apps/logwatch-7.15

Description

Analyzes and Reports on system logs

Added to portage

2026-07-31

lorcon - 2020.06.06_p20220216-r4
Ebuild name:

net-wireless/lorcon-2020.06.06_p20220216-r4

Description

A generic library for injecting 802.11 frames

Added to portage

2026-07-31

lsprotocol - 2025.0.0-r1
Ebuild name:

dev-python/lsprotocol-2025.0.0-r1

Description

Language Server Protocol types code generator packages

Added to portage

2026-07-31

mame - 0.289
Ebuild name:

games-emulation/mame-0.289

Description

Multiple Arcade Machine Emulator

Added to portage

2026-07-31

markdown - 3.10.3
Ebuild name:

dev-python/markdown-3.10.3

Description

Python implementation of the markdown markup language

Added to portage

2026-07-31

md6sum - 1.0-r3
Ebuild name:

app-crypt/md6sum-1.0-r3

Description

A C implementation of MD6

Added to portage

2026-07-31

metamath-mode - 0_p20221005
Ebuild name:

app-emacs/metamath-mode-0_p20221005

Description

Major GNU Emacs mode for metamath files

Added to portage

2026-07-31

mew - 6.8_p20230203
Ebuild name:

app-emacs/mew-6.8_p20230203

Description

Great MIME mail reader for Emacs/XEmacs

Added to portage

2026-07-31

mhash - 0.9.9.9-r4
Ebuild name:

app-crypt/mhash-0.9.9.9-r4

Description

Library providing a uniform interface to a large number of hash algorith

Added to portage

2026-07-31

mic-paren - 3.15-r1
Ebuild name:

app-emacs/mic-paren-3.15-r1

Description

Advanced highlighting of matching parentheses

Added to portage

2026-07-31

minisign - 0.12
Ebuild name:

app-crypt/minisign-0.12

Description

Dead simple tool to sign files and verify signatures

Added to portage

2026-07-31

mit-krb5 - 1.22.2-r2
Ebuild name:

app-crypt/mit-krb5-1.22.2-r2

Description

MIT Kerberos V

Added to portage

2026-07-31

mit-krb5-appl - 1.0.3-r4
Ebuild name:

app-crypt/mit-krb5-appl-1.0.3-r4

Description

Kerberized applications split from the main MIT Kerberos V distrib

Added to portage

2026-07-31

mit-krb5-appl - 1.0.3-r5
Ebuild name:

app-crypt/mit-krb5-appl-1.0.3-r5

Description

Kerberized applications split from the main MIT Kerberos V distrib

Added to portage

2026-07-31

mkp224o - 1.7.0
Ebuild name:

app-crypt/mkp224o-1.7.0

Description

Vanity address generator for v3 Tor hidden service addresses

Added to portage

2026-07-31

monkeysphere - 0.44-r2
Ebuild name:

app-crypt/monkeysphere-0.44-r2

Description

Leverage the OpenPGP web of trust for OpenSSH and Web authentication

Added to portage

2026-07-31

moolticute - 1.03.0-r2
Ebuild name:

app-crypt/moolticute-1.03.0-r2

Description

Mooltipass crossplatform daemon/tools

Added to portage

2026-07-31

moolticute - 9999
Ebuild name:

app-crypt/moolticute-9999

Description

Mooltipass crossplatform daemon/tools

Added to portage

2026-07-31

naps2 - 8.3.2
Ebuild name:

app-office/naps2-8.3.2

Description

Document scanning application with a focus on simplicity and ease of use

Added to portage

2026-07-31

nasty - 0.6-r2
Ebuild name:

app-crypt/nasty-0.6-r2

Description

Proof-of-concept GPG passphrase recovery tool

Added to portage

2026-07-31

nitrocli - 0.4.1-r2
Ebuild name:

app-crypt/nitrocli-0.4.1-r2

Description

A command line tool for interacting with Nitrokey devices

Added to portage

2026-07-31

nvc - 1.22.0
Ebuild name:

sci-electronics/nvc-1.22.0

Description

NVC is a VHDL compiler and simulator

Added to portage

2026-07-31

ollama - 0.32.5
Ebuild name:

sci-ml/ollama-0.32.5

Description

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

Added to portage

2026-07-31

org-mode - 9.8.8
Ebuild name:

app-emacs/org-mode-9.8.8

Description

An Emacs mode for notes and project planning

Added to portage

2026-07-31

pam_xdg - 0.8.5
Ebuild name:

sys-auth/pam_xdg-0.8.5

Description

PAM module that manages XDG Base Directories

Added to portage

2026-07-31

pambase - 20260730
Ebuild name:

sys-auth/pambase-20260730

Description

PAM base configuration files

Added to portage

2026-07-31

parver - 1.0.1_p0
Ebuild name:

dev-python/parver-1.0.1_p0

Description

Parse and manipulate version numbers

Added to portage

2026-07-31

passt - 2026.07.28
Ebuild name:

net-misc/passt-2026.07.28

Description

User-mode networking daemons for VMs and namespaces, replacement for Slir

Added to portage

2026-07-31

pikepdf - 10.11.0
Ebuild name:

dev-python/pikepdf-10.11.0

Description

Python library to work with pdf files based on qpdf

Added to portage

2026-07-31

psutils - 3.3.15
Ebuild name:

app-text/psutils-3.3.15

Description

Utilities for manipulating PostScript documents

Added to portage

2026-07-31

redis - 8.1.0
Ebuild name:

dev-python/redis-8.1.0

Description

Python client for Redis key-value store

Added to portage

2026-07-31

rrdtool-bindings - 1.10.3
Ebuild name:

dev-ruby/rrdtool-bindings-1.10.3

Description

Ruby bindings for rrdtool

Added to portage

2026-07-31

sbcl - 2.6.7
Ebuild name:

dev-lisp/sbcl-2.6.7

Description

Steel Bank Common Lisp (SBCL) is an implementation of ANSI Common Lisp

Added to portage

2026-07-31

shtab - 1.8.2
Ebuild name:

dev-python/shtab-1.8.2

Description

Automagic shell tab completion for Python CLI applications

Added to portage

2026-07-31

skopeo - 1.24.0
Ebuild name:

app-containers/skopeo-1.24.0

Description

Work with remote container images registries

Added to portage

2026-07-31

sourcegit - 2026.17
Ebuild name:

dev-vcs/sourcegit-2026.17

Description

Open Source Git GUI client using .NET AvaloniaUI

Added to portage

2026-07-31

spectrum2 - 2.2.1_p20260727-r1
Ebuild name:

net-im/spectrum2-2.2.1_p20260727-r1

Description

An open source instant messaging transport

Added to portage

2026-07-31

spyder - 6.1.6
Ebuild name:

dev-python/spyder-6.1.6

Description

The Scientific Python Development Environment

Added to portage

2026-07-31

talk-desktop-bin - 2.2.3
Ebuild name:

net-im/talk-desktop-bin-2.2.3

Description

Nextcloud Talk Desktop client

Added to portage

2026-07-31

tea - 0.15.0
Ebuild name:

dev-util/tea-0.15.0

Description

Command line tool to interact with Gitea server

Added to portage

2026-07-31

texstudio - 4.9.6
Ebuild name:

app-office/texstudio-4.9.6

Description

Free cross-platform LaTeX editor (fork from texmakerX)

Added to portage

2026-07-31

time-machine - 3.2.0-r1
Ebuild name:

dev-python/time-machine-3.2.0-r1

Description

Travel through time in your tests

Added to portage

2026-07-31

toolz - 1.1.0-r1
Ebuild name:

dev-python/toolz-1.1.0-r1

Description

List processing tools and functional utilities

Added to portage

2026-07-31

translate-toolkit - 3.19.16
Ebuild name:

dev-python/translate-toolkit-3.19.16

Description

Toolkit to convert between many translation formats

Added to portage

2026-07-31

ubelt - 1.4.3
Ebuild name:

dev-python/ubelt-1.4.3

Description

A stdlib like feel, and extra batteries. Hashing, Caching, Timing, Progress

Added to portage

2026-07-31

virtualenv - 21.7.1
Ebuild name:

dev-python/virtualenv-21.7.1

Description

Virtual Python Environment builder

Added to portage

2026-07-31

xmlsec - 1.3.17-r1
Ebuild name:

dev-python/xmlsec-1.3.17-r1

Description

Python bindings for the XML Security Library

Added to portage

2026-07-31

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