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:

85557

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-06-04
atuin - 18.16.1
Ebuild name:

app-shells/atuin-18.16.1

Description

Shell history manager supporting encrypted synchronisation

Added to portage

2026-06-04

autoconf - 2.13-r9
Ebuild name:

dev-build/autoconf-2.13-r9

Description

Used to create autoconfiguration files

Added to portage

2026-06-04

autoconf - 2.69-r11
Ebuild name:

dev-build/autoconf-2.69-r11

Description

Used to create autoconfiguration files

Added to portage

2026-06-04

autoconf - 2.71-r9
Ebuild name:

dev-build/autoconf-2.71-r9

Description

Used to create autoconfiguration files

Added to portage

2026-06-04

autoconf - 2.72-r7
Ebuild name:

dev-build/autoconf-2.72-r7

Description

Used to create autoconfiguration files

Added to portage

2026-06-04

autoconf - 2.73-r2
Ebuild name:

dev-build/autoconf-2.73-r2

Description

Used to create autoconfiguration files

Added to portage

2026-06-04

autoconf-vanilla - 2.13-r1
Ebuild name:

dev-build/autoconf-vanilla-2.13-r1

Description

Used to create autoconfiguration files

Added to portage

2026-06-04

autoconf-vanilla - 2.69-r2
Ebuild name:

dev-build/autoconf-vanilla-2.69-r2

Description

Used to create autoconfiguration files

Added to portage

2026-06-04

autoconf-vanilla - 2.71-r2
Ebuild name:

dev-build/autoconf-vanilla-2.71-r2

Description

Used to create autoconfiguration files

Added to portage

2026-06-04

autoconf-vanilla - 2.72-r2
Ebuild name:

dev-build/autoconf-vanilla-2.72-r2

Description

Used to create autoconfiguration files

Added to portage

2026-06-04

automake - 1.11.6-r5
Ebuild name:

dev-build/automake-1.11.6-r5

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-06-04

automake - 1.17-r3
Ebuild name:

dev-build/automake-1.17-r3

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-06-04

automake - 1.18.1-r1
Ebuild name:

dev-build/automake-1.18.1-r1

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-06-04

automake-vanilla - 1.11.6-r1
Ebuild name:

dev-build/automake-vanilla-1.11.6-r1

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-06-04

automake-vanilla - 1.15.1-r1
Ebuild name:

dev-build/automake-vanilla-1.15.1-r1

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-06-04

automake-vanilla - 1.16.5-r1
Ebuild name:

dev-build/automake-vanilla-1.16.5-r1

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-06-04

automake-vanilla - 1.17-r1
Ebuild name:

dev-build/automake-vanilla-1.17-r1

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-06-04

automake-vanilla - 1.18.1-r1
Ebuild name:

dev-build/automake-vanilla-1.18.1-r1

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-06-04

lwip - 2.2.1_p5
Ebuild name:

net-libs/lwip-2.2.1_p5

Description

Small independent implementation of the TCP/IP protocol suite

Added to portage

2026-06-04

lwip - 9999
Ebuild name:

net-libs/lwip-9999

Description

Small independent implementation of the TCP/IP protocol suite

Added to portage

2026-06-04

nextcloud - 33.0.5
Ebuild name:

www-apps/nextcloud-33.0.5

Description

Personal cloud that runs on your own server

Added to portage

2026-06-04

nextcloud-client - 33.0.5
Ebuild name:

net-misc/nextcloud-client-33.0.5

Description

Desktop Syncing Client for Nextcloud

Added to portage

2026-06-04

pdns - 5.1.0
Ebuild name:

net-dns/pdns-5.1.0

Description

The PowerDNS Daemon

Added to portage

2026-06-04

2026-06-03
Cpanel-JSON-XS - 4.410.0
Ebuild name:

dev-perl/Cpanel-JSON-XS-4.410.0

Description

cPanel fork of JSON fast and correct serializing

Added to portage

2026-06-03

MIME-tools - 5.517.0
Ebuild name:

dev-perl/MIME-tools-5.517.0

Description

A Perl module for parsing and creating MIME entities

Added to portage

2026-06-03

Sereal-Decoder - 5.6.0
Ebuild name:

dev-perl/Sereal-Decoder-5.6.0

Description

Fast, compact, powerful binary deserialization

Added to portage

2026-06-03

Sereal-Encoder - 5.6.0
Ebuild name:

dev-perl/Sereal-Encoder-5.6.0

Description

Fast, compact, powerful binary serialization

Added to portage

2026-06-03

Text-CSV_XS - 1.620.0
Ebuild name:

dev-perl/Text-CSV_XS-1.620.0

Description

Comma-separated values manipulation routines

Added to portage

2026-06-03

antimicrox - 3.6.1
Ebuild name:

games-util/antimicrox-3.6.1

Description

Graphical program used to map keyboard buttons and mouse controls to a

Added to portage

2026-06-03

awscli - 1.45.20
Ebuild name:

app-admin/awscli-1.45.20

Description

Universal Command Line Environment for AWS

Added to portage

2026-06-03

boto3 - 1.43.20
Ebuild name:

dev-python/boto3-1.43.20

Description

The AWS SDK for Python

Added to portage

2026-06-03

botocore - 1.43.20
Ebuild name:

dev-python/botocore-1.43.20

Description

Low-level, data-driven core of boto 3

Added to portage

2026-06-03

cadabra - 2.5.14_p1-r1
Ebuild name:

sci-mathematics/cadabra-2.5.14_p1-r1

Description

Field-theory motivated approach to computer algebra

Added to portage

2026-06-03

cbor2 - 6.1.2
Ebuild name:

dev-python/cbor2-6.1.2

Description

CBOR (de)serializer with extensive tag support

Added to portage

2026-06-03

cfn-lint - 1.51.3
Ebuild name:

dev-python/cfn-lint-1.51.3

Description

CloudFormation Linter

Added to portage

2026-06-03

closure-compiler-bin - 20260531
Ebuild name:

dev-lang/closure-compiler-bin-20260531

Description

JavaScript optimizing compiler

Added to portage

2026-06-03

cyme - 3.0.0
Ebuild name:

sys-apps/cyme-3.0.0

Description

List system USB buses and devices; a modern cross-platform `lsusb`

Added to portage

2026-06-03

datovka - 4.29.0
Ebuild name:

app-misc/datovka-4.29.0

Description

GUI to access the Czech data box e-government system

Added to portage

2026-06-03

dbus-fast - 5.0.17
Ebuild name:

dev-python/dbus-fast-5.0.17

Description

A faster version of dbus-next

Added to portage

2026-06-03

deno-bin - 2.8.2
Ebuild name:

dev-lang/deno-bin-2.8.2

Description

Modern runtime for JavaScript and TypeScript

Added to portage

2026-06-03

discord - 1.0.141
Ebuild name:

net-im/discord-1.0.141

Description

All-in-one voice and text chat for gamers

Added to portage

2026-06-03

distlib - 0.4.1
Ebuild name:

dev-python/distlib-0.4.1

Description

Low-level components of distutils2/packaging

Added to portage

2026-06-03

django-polymorphic - 4.11.5
Ebuild name:

dev-python/django-polymorphic-4.11.5

Description

Seamless Polymorphic Inheritance for Django Models

Added to portage

2026-06-03

django-redis - 7.0.0
Ebuild name:

dev-python/django-redis-7.0.0

Description

Full featured redis cache backend for Django

Added to portage

2026-06-03

dropbox - 254.4.2518
Ebuild name:

net-misc/dropbox-254.4.2518

Description

Dropbox daemon (pretends to be GUI-less)

Added to portage

2026-06-03

elogind - 255.27
Ebuild name:

sys-auth/elogind-255.27

Description

The systemd project's logind, extracted to a standalone package

Added to portage

2026-06-03

elogind - 257.16
Ebuild name:

sys-auth/elogind-257.16

Description

The systemd project's logind, extracted to a standalone package

Added to portage

2026-06-03

exim - 4.99.4-r1
Ebuild name:

mail-mta/exim-4.99.4-r1

Description

A highly configurable, drop-in replacement for sendmail

Added to portage

2026-06-03

faker - 40.21.0
Ebuild name:

dev-python/faker-40.21.0

Description

A Python package that generates fake data for you

Added to portage

2026-06-03

firefox - 151.0.3
Ebuild name:

www-client/firefox-151.0.3

Description

Firefox Web Browser

Added to portage

2026-06-03

firefox-bin - 151.0.3
Ebuild name:

www-client/firefox-bin-151.0.3

Description

Firefox Web Browser

Added to portage

2026-06-03

firefox-l10n - 151.0.3
Ebuild name:

www-client/firefox-l10n-151.0.3

Description

Firefox Web Browser's translation files

Added to portage

2026-06-03

fontconfig - 2.18.1
Ebuild name:

media-libs/fontconfig-2.18.1

Description

A library for configuring and customizing font access

Added to portage

2026-06-03

freeipmi - 1.6.18
Ebuild name:

sys-libs/freeipmi-1.6.18

Description

Provides Remote-Console and System Management Software as per IPMI v1.5/2.

Added to portage

2026-06-03

getmail - 6.19.12
Ebuild name:

net-mail/getmail-6.19.12

Description

A mail retriever with reliable Maildir and mbox delivery

Added to portage

2026-06-03

graphviz - 15.0.0
Ebuild name:

media-gfx/graphviz-15.0.0

Description

Open Source Graph Visualization Software

Added to portage

2026-06-03

idna - 3.18
Ebuild name:

dev-python/idna-3.18

Description

Internationalized Domain Names in Applications (IDNA)

Added to portage

2026-06-03

include-what-you-use - 0.26
Ebuild name:

dev-util/include-what-you-use-0.26

Description

Find unused include directives in C/C++ programs

Added to portage

2026-06-03

indilib - 2.2.2
Ebuild name:

sci-libs/indilib-2.2.2

Description

INDI Astronomical Control Protocol library

Added to portage

2026-06-03

krita - 6.0.2.1
Ebuild name:

media-gfx/krita-6.0.2.1

Description

Free digital painting application. Digital Painting, Creative Freedom

Added to portage

2026-06-03

kstars - 3.8.3
Ebuild name:

sci-astronomy/kstars-3.8.3

Description

Desktop Planetarium

Added to portage

2026-06-03

libdatovka - 0.7.3
Ebuild name:

app-misc/libdatovka-0.7.3

Description

Client library for accessing ISDS SOAP services

Added to portage

2026-06-03

libdrm - 2.4.134
Ebuild name:

x11-libs/libdrm-2.4.134

Description

X.Org libdrm library

Added to portage

2026-06-03

libunibreak - 7.0
Ebuild name:

dev-libs/libunibreak-7.0

Description

Line and word breaking library

Added to portage

2026-06-03

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

media-libs/libva-intel-media-driver-26.2.1

Description

Intel Media Driver for VA-API (iHD)

Added to portage

2026-06-03

libxkbcommon - 1.13.2
Ebuild name:

x11-libs/libxkbcommon-1.13.2

Description

Keymap handling library for toolkits and window systems

Added to portage

2026-06-03

mesa - 26.1.2
Ebuild name:

media-libs/mesa-26.1.2

Description

OpenGL-like graphic library for Linux

Added to portage

2026-06-03

mesa_clc - 26.1.2
Ebuild name:

dev-util/mesa_clc-26.1.2

Description

mesa_clc tool used for building OpenCL C to SPIR-V

Added to portage

2026-06-03

mmm-mode - 0.5.11
Ebuild name:

app-emacs/mmm-mode-0.5.11

Description

Enables the user to edit different parts of a file in different major mod

Added to portage

2026-06-03

mod_wsgi - 6.0.2
Ebuild name:

www-apache/mod_wsgi-6.0.2

Description

An Apache2 module for running Python WSGI applications

Added to portage

2026-06-03

notion - 4.0.5
Ebuild name:

x11-wm/notion-4.0.5

Description

Notion is a tiling, tabbed window manager for the X window system

Added to portage

2026-06-03

numpy - 2.5.0_rc1
Ebuild name:

dev-python/numpy-2.5.0_rc1

Description

Fast array and numerical python library

Added to portage

2026-06-03

openpgp-keys-zsh - 2026.05.31
Ebuild name:

sec-keys/openpgp-keys-zsh-2026.05.31

Description

PGP keys used to sign ZSH releases

Added to portage

2026-06-03

openvpn - 2.7.4
Ebuild name:

net-vpn/openvpn-2.7.4

Description

Robust and highly flexible tunneling application compatible with many OSes

Added to portage

2026-06-03

pdfarranger - 1.14.0
Ebuild name:

app-text/pdfarranger-1.14.0

Description

Merge or split pdfs; rearrange, rotate, crop pages

Added to portage

2026-06-03

postfix - 3.12_pre20260602
Ebuild name:

mail-mta/postfix-3.12_pre20260602

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2026-06-03

python - 0.3.15.0_beta2
Ebuild name:

dev-lang/python-0.3.15.0_beta2

Description

Freethreading (no-GIL) version of Python programming language

Added to portage

2026-06-03

python - 3.15.0_beta2
Ebuild name:

dev-lang/python-3.15.0_beta2

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2026-06-03

python-tests - 0.3.15.0_beta2
Ebuild name:

dev-python/python-tests-0.3.15.0_beta2

Description

Test modules from dev-lang/python

Added to portage

2026-06-03

python-tests - 3.15.0_beta2
Ebuild name:

dev-python/python-tests-3.15.0_beta2

Description

Test modules from dev-lang/python

Added to portage

2026-06-03

qrupdate - 1.1.5
Ebuild name:

sci-libs/qrupdate-1.1.5

Description

Library for updating of QR and Cholesky decompositions

Added to portage

2026-06-03

qt3d - 6.12.9999
Ebuild name:

dev-qt/qt3d-6.12.9999

Description

3D rendering module for the Qt6 framework

Added to portage

2026-06-03

qt5compat - 6.12.9999
Ebuild name:

dev-qt/qt5compat-6.12.9999

Description

Qt module containing the unsupported Qt 5 APIs

Added to portage

2026-06-03

qtbase - 6.12.9999
Ebuild name:

dev-qt/qtbase-6.12.9999

Description

Cross-platform application development framework

Added to portage

2026-06-03

qtcharts - 6.12.9999
Ebuild name:

dev-qt/qtcharts-6.12.9999

Description

Chart component library for the Qt6 framework

Added to portage

2026-06-03

qtconnectivity - 6.12.9999
Ebuild name:

dev-qt/qtconnectivity-6.12.9999

Description

Bluetooth and NFC support library for the Qt6 framework

Added to portage

2026-06-03

qtdeclarative - 6.12.9999
Ebuild name:

dev-qt/qtdeclarative-6.12.9999

Description

Qt Declarative (Quick 2)

Added to portage

2026-06-03

qtgraphs - 6.12.9999
Ebuild name:

dev-qt/qtgraphs-6.12.9999

Description

Graphs component library for the Qt6 framework

Added to portage

2026-06-03

qthttpserver - 6.12.9999
Ebuild name:

dev-qt/qthttpserver-6.12.9999

Description

HTTP server functionality for the Qt6 framework

Added to portage

2026-06-03

qtimageformats - 6.12.9999
Ebuild name:

dev-qt/qtimageformats-6.12.9999

Description

Additional format plugins for the Qt image I/O system

Added to portage

2026-06-03

qtlanguageserver - 6.12.9999
Ebuild name:

dev-qt/qtlanguageserver-6.12.9999

Description

Implementation of the Language Server Protocol for Qt

Added to portage

2026-06-03

qtlocation - 6.12.9999
Ebuild name:

dev-qt/qtlocation-6.12.9999

Description

Location (places, maps, navigation) library for the Qt6 framework

Added to portage

2026-06-03

qtmultimedia - 6.12.9999
Ebuild name:

dev-qt/qtmultimedia-6.12.9999

Description

Multimedia (audio, video, radio, camera) library for the Qt6 framewor

Added to portage

2026-06-03

qtnetworkauth - 6.12.9999
Ebuild name:

dev-qt/qtnetworkauth-6.12.9999

Description

Network authorization library for the Qt6 framework

Added to portage

2026-06-03

qtpositioning - 6.12.9999
Ebuild name:

dev-qt/qtpositioning-6.12.9999

Description

Physical position determination library for the Qt6 framework

Added to portage

2026-06-03

qtquick3d - 6.12.9999
Ebuild name:

dev-qt/qtquick3d-6.12.9999

Description

Qt module and API for defining 3D content in Qt QuickTools

Added to portage

2026-06-03

qtquicktimeline - 6.12.9999
Ebuild name:

dev-qt/qtquicktimeline-6.12.9999

Description

Qt module for keyframe-based timeline construction

Added to portage

2026-06-03

qtremoteobjects - 6.12.9999
Ebuild name:

dev-qt/qtremoteobjects-6.12.9999

Description

Inter-Process Communication (IPC) library for the Qt6 framework

Added to portage

2026-06-03

qtscxml - 6.12.9999
Ebuild name:

dev-qt/qtscxml-6.12.9999

Description

State Chart XML (SCXML) support library for the Qt6 framework

Added to portage

2026-06-03

qtsensors - 6.12.9999
Ebuild name:

dev-qt/qtsensors-6.12.9999

Description

Hardware sensor access library for the Qt6 framework

Added to portage

2026-06-03

qtserialbus - 6.12.9999
Ebuild name:

dev-qt/qtserialbus-6.12.9999

Description

Qt module to access CAN, ModBus, and other industrial serial buses and

Added to portage

2026-06-03

qtserialport - 6.12.9999
Ebuild name:

dev-qt/qtserialport-6.12.9999

Description

Serial port abstraction library for the Qt6 framework

Added to portage

2026-06-03

qtshadertools - 6.12.9999
Ebuild name:

dev-qt/qtshadertools-6.12.9999

Description

Qt APIs and Tools for Graphics Pipelines

Added to portage

2026-06-03

qtspeech - 6.12.9999
Ebuild name:

dev-qt/qtspeech-6.12.9999

Description

Text-to-speech library for the Qt6 framework

Added to portage

2026-06-03

qtsvg - 6.12.9999
Ebuild name:

dev-qt/qtsvg-6.12.9999

Description

SVG rendering library for the Qt6 framework

Added to portage

2026-06-03

qttools - 6.12.9999
Ebuild name:

dev-qt/qttools-6.12.9999

Description

Qt Tools Collection

Added to portage

2026-06-03

qttranslations - 6.12.9999
Ebuild name:

dev-qt/qttranslations-6.12.9999

Description

Translation files for the Qt6 framework

Added to portage

2026-06-03

qtvirtualkeyboard - 6.12.9999
Ebuild name:

dev-qt/qtvirtualkeyboard-6.12.9999

Description

Customizable input framework and virtual keyboard for Qt

Added to portage

2026-06-03

qtwayland - 6.12.9999
Ebuild name:

dev-qt/qtwayland-6.12.9999

Description

Toolbox for making Qt based Wayland compositors

Added to portage

2026-06-03

qtwebchannel - 6.12.9999
Ebuild name:

dev-qt/qtwebchannel-6.12.9999

Description

Qt WebChannel

Added to portage

2026-06-03

qtwebengine - 6.12.9999
Ebuild name:

dev-qt/qtwebengine-6.12.9999

Description

Library for rendering dynamic web content in Qt6 C++ and QML applicati

Added to portage

2026-06-03

qtwebsockets - 6.12.9999
Ebuild name:

dev-qt/qtwebsockets-6.12.9999

Description

Implementation of the WebSocket protocol for the Qt6 framework

Added to portage

2026-06-03

qtwebview - 6.12.9999
Ebuild name:

dev-qt/qtwebview-6.12.9999

Description

Module for displaying web content in a QML application using the Qt6 fra

Added to portage

2026-06-03

radicale - 3.7.4
Ebuild name:

www-apps/radicale-3.7.4

Description

A simple CalDAV calendar server

Added to portage

2026-06-03

scikit-learn - 1.9.0
Ebuild name:

dev-python/scikit-learn-1.9.0

Description

Machine learning library for Python

Added to portage

2026-06-03

seedfiles - 1.5.1
Ebuild name:

sys-apps/seedfiles-1.5.1

Description

Portable drop-in reimplementation of systemd-tmpfiles

Added to portage

2026-06-03

snowballstemmer - 3.1.1
Ebuild name:

dev-python/snowballstemmer-3.1.1

Description

Stemmer algorithms generated from Snowball algorithms

Added to portage

2026-06-03

spectre-meltdown-checker - 26.36.0602723
Ebuild name:

app-admin/spectre-meltdown-checker-26.36.0602723

Description

Spectre & Meltdown vulnerability/mitigation checke

Added to portage

2026-06-03

sysprof - 50.0
Ebuild name:

dev-util/sysprof-50.0

Description

System-wide Linux Profiler

Added to portage

2026-06-03

sysprof-capture - 50.0
Ebuild name:

dev-util/sysprof-capture-50.0

Description

Static library for sysprof capture data generation

Added to portage

2026-06-03

sysprof-common - 50.0
Ebuild name:

dev-util/sysprof-common-50.0

Description

Static library for sysprof capture data generation

Added to portage

2026-06-03

transmission - 4.1.2
Ebuild name:

net-p2p/transmission-4.1.2

Description

A fast, easy, and free BitTorrent client

Added to portage

2026-06-03

typer - 0.26.6
Ebuild name:

dev-python/typer-0.26.6

Description

Build great CLIs. Easy to code. Based on Python type hints

Added to portage

2026-06-03

urwid - 4.0.2
Ebuild name:

dev-python/urwid-4.0.2

Description

Curses-based user interface library for Python

Added to portage

2026-06-03

weasyprint - 69.0
Ebuild name:

dev-python/weasyprint-69.0

Description

Visual rendering engine for HTML and CSS that can export to PDF

Added to portage

2026-06-03

webob - 1.8.10
Ebuild name:

dev-python/webob-1.8.10

Description

WSGI request and response object

Added to portage

2026-06-03

xlsclients - 1.1.6
Ebuild name:

x11-apps/xlsclients-1.1.6

Description

X.Org xlsclients application

Added to portage

2026-06-03

xorg-server - 21.1.23
Ebuild name:

x11-base/xorg-server-21.1.23

Description

X.Org X servers

Added to portage

2026-06-03

xwayland - 24.1.12
Ebuild name:

x11-base/xwayland-24.1.12

Description

Standalone X server running under Wayland

Added to portage

2026-06-03

zsh - 5.9.1
Ebuild name:

app-shells/zsh-5.9.1

Description

UNIX Shell similar to the Korn shell

Added to portage

2026-06-03

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