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:

81782

userrating:

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


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

Gentoo udev Guide


1. What is udev?


The /dev Directory


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


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

namedev


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

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

libsysfs


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

udev


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

2. Using udev on Gentoo


Requirements


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

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

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

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

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

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

Configuration


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

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

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

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

3. Known Issues


Missing device node files at boot


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

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

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

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

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

udev and nvidia


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

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

LVM2 Names Disappear


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

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

No Consistent Naming between DevFS and udev


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

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

Other issues


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

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

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

4. Resources & Acknowledgements


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

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

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

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-10-31
android-studio - 2025.2.1.7
Ebuild name:

dev-util/android-studio-2025.2.1.7

Description

Android development environment based on IntelliJ IDEA

Added to portage

2025-10-31

bareos - 24.0.7
Ebuild name:

app-backup/bareos-24.0.7

Description

Featureful client/server network backup suite

Added to portage

2025-10-31

bitcoin-core - 29.2
Ebuild name:

net-p2p/bitcoin-core-29.2

Description

Reference implementation of the Bitcoin cryptocurrency

Added to portage

2025-10-31

bitcoin-core - 30.0
Ebuild name:

net-p2p/bitcoin-core-30.0

Description

Reference implementation of the Bitcoin cryptocurrency

Added to portage

2025-10-31

cantera - 3.1.0-r1
Ebuild name:

sci-libs/cantera-3.1.0-r1

Description

Object-oriented tool suite for chemical kinetics, thermodynamics, and tra

Added to portage

2025-10-31

chez - 10.3.0
Ebuild name:

dev-scheme/chez-10.3.0

Description

A programming language based on R6RS

Added to portage

2025-10-31

chrome-binary-plugins - 142.0.7444.59
Ebuild name:

www-plugins/chrome-binary-plugins-142.0.7444.59

Description

Binary plugins from Google Chrome for use in Chromi

Added to portage

2025-10-31

chrome-binary-plugins - 143.0.7499.4_beta
Ebuild name:

www-plugins/chrome-binary-plugins-143.0.7499.4_beta

Description

Binary plugins from Google Chrome for use in Ch

Added to portage

2025-10-31

chrome-binary-plugins - 144.0.7500.2_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-144.0.7500.2_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2025-10-31

chromedriver-bin - 142.0.7444.59
Ebuild name:

www-apps/chromedriver-bin-142.0.7444.59

Description

WebDriver for Chrome

Added to portage

2025-10-31

duplicati - 2.2.0.0.2025.10.23
Ebuild name:

app-backup/duplicati-2.2.0.0.2025.10.23

Description

Backup client that securely stores encrypted, incremental,

Added to portage

2025-10-31

fsautocomplete - 0.80.1
Ebuild name:

dev-dotnet/fsautocomplete-0.80.1

Description

F language server using the Language Server Protocol

Added to portage

2025-10-31

geogebra-bin - 6.0.804.0-r1
Ebuild name:

sci-mathematics/geogebra-bin-6.0.804.0-r1

Description

Mathematics software for geometry

Added to portage

2025-10-31

google-chrome - 142.0.7444.59
Ebuild name:

www-client/google-chrome-142.0.7444.59

Description

The web browser from Google

Added to portage

2025-10-31

google-chrome-beta - 143.0.7499.4
Ebuild name:

www-client/google-chrome-beta-143.0.7499.4

Description

The web browser from Google

Added to portage

2025-10-31

google-chrome-unstable - 144.0.7500.2
Ebuild name:

www-client/google-chrome-unstable-144.0.7500.2

Description

The web browser from Google

Added to portage

2025-10-31

joplin-desktop - 3.5.6
Ebuild name:

app-office/joplin-desktop-3.5.6

Description

Secure note taking and to-do app with synchronization capabilities

Added to portage

2025-10-31

julia-bin - 1.12.1
Ebuild name:

dev-lang/julia-bin-1.12.1

Description

High-performance programming language for technical computing

Added to portage

2025-10-31

limine - 10.2.1
Ebuild name:

sys-boot/limine-10.2.1

Description

Limine is a modern, advanced, and portable BIOS/UEFI multiprotocol bootloade

Added to portage

2025-10-31

loksh - 7.8
Ebuild name:

app-shells/loksh-7.8

Description

Linux port of OpenBSD's ksh

Added to portage

2025-10-31

microsoft-edge - 141.0.3537.99
Ebuild name:

www-client/microsoft-edge-141.0.3537.99

Description

The web browser from Microsoft

Added to portage

2025-10-31

microsoft-edge-beta - 142.0.3595.33
Ebuild name:

www-client/microsoft-edge-beta-142.0.3595.33

Description

The web browser from Microsoft

Added to portage

2025-10-31

microsoft-edge-beta - 142.0.3595.41
Ebuild name:

www-client/microsoft-edge-beta-142.0.3595.41

Description

The web browser from Microsoft

Added to portage

2025-10-31

microsoft-edge-beta - 142.0.3595.51
Ebuild name:

www-client/microsoft-edge-beta-142.0.3595.51

Description

The web browser from Microsoft

Added to portage

2025-10-31

microsoft-edge-dev - 143.0.3614.1-r1
Ebuild name:

www-client/microsoft-edge-dev-143.0.3614.1-r1

Description

The web browser from Microsoft

Added to portage

2025-10-31

microsoft-edge-dev - 143.0.3624.0
Ebuild name:

www-client/microsoft-edge-dev-143.0.3624.0

Description

The web browser from Microsoft

Added to portage

2025-10-31

microsoft-edge-dev - 143.0.3638.1
Ebuild name:

www-client/microsoft-edge-dev-143.0.3638.1

Description

The web browser from Microsoft

Added to portage

2025-10-31

opera - 123.0.5669.23
Ebuild name:

www-client/opera-123.0.5669.23

Description

A fast and secure web browser

Added to portage

2025-10-31

opera-beta - 123.0.5669.18
Ebuild name:

www-client/opera-beta-123.0.5669.18

Description

A fast and secure web browser

Added to portage

2025-10-31

opera-developer - 124.0.5691.0
Ebuild name:

www-client/opera-developer-124.0.5691.0

Description

A fast and secure web browser

Added to portage

2025-10-31

opera-developer - 124.0.5701.1
Ebuild name:

www-client/opera-developer-124.0.5701.1

Description

A fast and secure web browser

Added to portage

2025-10-31

pdns - 5.0.1
Ebuild name:

net-dns/pdns-5.0.1

Description

The PowerDNS Daemon

Added to portage

2025-10-31

psgml - 1.4.1
Ebuild name:

app-emacs/psgml-1.4.1

Description

A GNU Emacs Major Mode for editing SGML and XML coded documents

Added to portage

2025-10-31

puppet-mode - 0.4
Ebuild name:

app-emacs/puppet-mode-0.4

Description

Emacs major mode for editing Puppet manifests

Added to portage

2025-10-31

rust - 1.91.0
Ebuild name:

dev-lang/rust-1.91.0

Description

Systems programming language originally developed by Mozilla

Added to portage

2025-10-31

rust-bin - 1.91.0
Ebuild name:

dev-lang/rust-bin-1.91.0

Description

Added to portage

2025-10-31

sequoia-chameleon-gnupg - 0.13.1-r2
Ebuild name:

app-crypt/sequoia-chameleon-gnupg-0.13.1-r2

Description

Sequoia's reimplementation of the GnuPG interface

Added to portage

2025-10-31

syd - 3.41.4
Ebuild name:

sys-apps/syd-3.41.4

Description

seccomp and landlock based application sandbox with support for namespaces

Added to portage

2025-10-31

timescaledb - 2.23.0
Ebuild name:

dev-db/timescaledb-2.23.0

Description

Open-source time-series SQL database

Added to portage

2025-10-31

2025-10-30
File-Slurper - 0.14.0-r1
Ebuild name:

dev-perl/File-Slurper-0.14.0-r1

Description

A simple, sane and efficient module to slurp a file

Added to portage

2025-10-30

actioncable - 7.1.6
Ebuild name:

dev-ruby/actioncable-7.1.6

Description

Integrated WebSockets for Rails

Added to portage

2025-10-30

actionmailbox - 7.1.6
Ebuild name:

dev-ruby/actionmailbox-7.1.6

Description

Framework for designing email-service layers

Added to portage

2025-10-30

actionmailer - 7.1.6
Ebuild name:

dev-ruby/actionmailer-7.1.6

Description

Framework for designing email-service layers

Added to portage

2025-10-30

actionpack - 7.1.6
Ebuild name:

dev-ruby/actionpack-7.1.6

Description

Eases web-request routing, handling, and response

Added to portage

2025-10-30

actiontext - 7.1.6
Ebuild name:

dev-ruby/actiontext-7.1.6

Description

Edit and display rich text in Rails applications

Added to portage

2025-10-30

actionview - 7.1.6
Ebuild name:

dev-ruby/actionview-7.1.6

Description

Simple, battle-tested conventions and helpers for building web pages

Added to portage

2025-10-30

activejob - 7.1.6
Ebuild name:

dev-ruby/activejob-7.1.6

Description

Job framework with pluggable queues

Added to portage

2025-10-30

activemodel - 7.1.6
Ebuild name:

dev-ruby/activemodel-7.1.6

Description

Toolkit for building modeling frameworks like Active Record and Active R

Added to portage

2025-10-30

activerecord - 7.1.6
Ebuild name:

dev-ruby/activerecord-7.1.6

Description

Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM

Added to portage

2025-10-30

activestorage - 7.1.6
Ebuild name:

dev-ruby/activestorage-7.1.6

Description

Attach cloud and local files in Rails applications

Added to portage

2025-10-30

activesupport - 7.1.6
Ebuild name:

dev-ruby/activesupport-7.1.6

Description

Utility Classes and Extension to the Standard Library

Added to portage

2025-10-30

aegisub - 3.4.2-r2
Ebuild name:

media-video/aegisub-3.4.2-r2

Description

Advanced subtitle editor

Added to portage

2025-10-30

ansible - 12.1.0
Ebuild name:

app-admin/ansible-12.1.0

Description

Model-driven deployment, config management, and command execution framewor

Added to portage

2025-10-30

ansible-core - 2.19.3
Ebuild name:

app-admin/ansible-core-2.19.3

Description

Model-driven deployment, config management, and command execution fra

Added to portage

2025-10-30

aws-xray-sdk - 2.15.0
Ebuild name:

dev-python/aws-xray-sdk-2.15.0

Description

AWS X-Ray SDK for Python

Added to portage

2025-10-30

awscli - 1.42.62
Ebuild name:

app-admin/awscli-1.42.62

Description

Universal Command Line Environment for AWS

Added to portage

2025-10-30

boto3 - 1.40.62
Ebuild name:

dev-python/boto3-1.40.62

Description

The AWS SDK for Python

Added to portage

2025-10-30

botocore - 1.40.62
Ebuild name:

dev-python/botocore-1.40.62

Description

Low-level, data-driven core of boto 3

Added to portage

2025-10-30

branca - 0.8.2
Ebuild name:

sci-libs/branca-0.8.2

Description

spinoff from folium, host the non-map-specific features

Added to portage

2025-10-30

colorful - 0.5.8
Ebuild name:

dev-python/colorful-0.5.8

Description

Terminal string styling done right, in Python

Added to portage

2025-10-30

deno-bin - 2.5.6
Ebuild name:

dev-lang/deno-bin-2.5.6

Description

Modern runtime for JavaScript and TypeScript

Added to portage

2025-10-30

deprecated - 1.3.1
Ebuild name:

dev-python/deprecated-1.3.1

Description

Python @deprecated decorator to deprecate old API

Added to portage

2025-10-30

dist-kernel - 5.10.246
Ebuild name:

virtual/dist-kernel-5.10.246

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-10-30

dist-kernel - 5.15.196
Ebuild name:

virtual/dist-kernel-5.15.196

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-10-30

dist-kernel - 6.1.158
Ebuild name:

virtual/dist-kernel-6.1.158

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-10-30

dist-kernel - 6.12.56
Ebuild name:

virtual/dist-kernel-6.12.56

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-10-30

dist-kernel - 6.17.6
Ebuild name:

virtual/dist-kernel-6.17.6

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-10-30

dist-kernel - 6.6.115
Ebuild name:

virtual/dist-kernel-6.6.115

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-10-30

dragon - 25.08.2-r1
Ebuild name:

kde-apps/dragon-25.08.2-r1

Description

Simple video player

Added to portage

2025-10-30

driftnet - 1.6.0
Ebuild name:

net-analyzer/driftnet-1.6.0

Description

Watches network traffic and displays media from TCP streams observed

Added to portage

2025-10-30

dulwich - 0.24.8
Ebuild name:

dev-python/dulwich-0.24.8

Description

Pure-Python implementation of the Git file formats and protocols

Added to portage

2025-10-30

environs - 14.4.0
Ebuild name:

dev-python/environs-14.4.0

Description

Python library for simplified environment variable parsing

Added to portage

2025-10-30

fileutils - 1.8.0
Ebuild name:

dev-ruby/fileutils-1.8.0

Description

Several file utility methods for copying, moving, removing, etc

Added to portage

2025-10-30

gdal - 3.11.4-r1
Ebuild name:

sci-libs/gdal-3.11.4-r1

Description

Translator library for raster geospatial data formats (includes OGR support

Added to portage

2025-10-30

gentoo-kernel - 5.10.246
Ebuild name:

sys-kernel/gentoo-kernel-5.10.246

Description

Linux kernel built with Gentoo patches

Added to portage

2025-10-30

gentoo-kernel - 5.15.196
Ebuild name:

sys-kernel/gentoo-kernel-5.15.196

Description

Linux kernel built with Gentoo patches

Added to portage

2025-10-30

gentoo-kernel - 6.1.158
Ebuild name:

sys-kernel/gentoo-kernel-6.1.158

Description

Linux kernel built with Gentoo patches

Added to portage

2025-10-30

gentoo-kernel - 6.12.56
Ebuild name:

sys-kernel/gentoo-kernel-6.12.56

Description

Linux kernel built with Gentoo patches

Added to portage

2025-10-30

gentoo-kernel - 6.17.6
Ebuild name:

sys-kernel/gentoo-kernel-6.17.6

Description

Linux kernel built with Gentoo patches

Added to portage

2025-10-30

gentoo-kernel - 6.6.115
Ebuild name:

sys-kernel/gentoo-kernel-6.6.115

Description

Linux kernel built with Gentoo patches

Added to portage

2025-10-30

gentoo-kernel-bin - 5.10.246
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.246

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-10-30

gentoo-kernel-bin - 5.15.196
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.196

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-10-30

gentoo-kernel-bin - 6.1.158
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.158

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-10-30

gentoo-kernel-bin - 6.12.56
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.56

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-10-30

gentoo-kernel-bin - 6.17.6
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.17.6

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-10-30

gentoo-kernel-bin - 6.6.115
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.115

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-10-30

gentoo-sources - 5.10.246
Ebuild name:

sys-kernel/gentoo-sources-5.10.246

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-10-30

gentoo-sources - 5.15.196
Ebuild name:

sys-kernel/gentoo-sources-5.15.196

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-10-30

gentoo-sources - 6.1.158
Ebuild name:

sys-kernel/gentoo-sources-6.1.158

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-10-30

gentoo-sources - 6.12.56
Ebuild name:

sys-kernel/gentoo-sources-6.12.56

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-10-30

gentoo-sources - 6.17.6
Ebuild name:

sys-kernel/gentoo-sources-6.17.6

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-10-30

gentoo-sources - 6.6.115
Ebuild name:

sys-kernel/gentoo-sources-6.6.115

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-10-30

kwin - 6.5.1-r1
Ebuild name:

kde-plasma/kwin-6.5.1-r1

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2025-10-30

libdecor - 0.2.4
Ebuild name:

gui-libs/libdecor-0.2.4

Description

A client-side decorations library for Wayland clients

Added to portage

2025-10-30

libsdl2 - 2.32.58
Ebuild name:

media-libs/libsdl2-2.32.58

Description

Simple Direct Media Layer

Added to portage

2025-10-30

libsdl3 - 3.2.26
Ebuild name:

media-libs/libsdl3-3.2.26

Description

Simple Direct Media Layer

Added to portage

2025-10-30

lidarr-bin - 3.0.1.4866
Ebuild name:

www-apps/lidarr-bin-3.0.1.4866

Description

Looks and smells like Sonarr but made for music

Added to portage

2025-10-30

locale-gen - 3.9
Ebuild name:

sys-apps/locale-gen-3.9

Description

Generate locales based upon the config file /etc/locale.gen

Added to portage

2025-10-30

mesa - 25.2.6
Ebuild name:

media-libs/mesa-25.2.6

Description

OpenGL-like graphic library for Linux

Added to portage

2025-10-30

mesa_clc - 25.2.6
Ebuild name:

dev-util/mesa_clc-25.2.6

Description

mesa_clc tool used for building OpenCL C to SPIR-V

Added to portage

2025-10-30

openimageio - 3.0.8.1-r1
Ebuild name:

media-libs/openimageio-3.0.8.1-r1

Description

A library for reading and writing images

Added to portage

2025-10-30

openmw - 0.50.0
Ebuild name:

games-engines/openmw-0.50.0

Description

Open source reimplementation of TES III Morrowind

Added to portage

2025-10-30

openscenegraph-openmw - 3.6_p20251012
Ebuild name:

dev-games/openscenegraph-openmw-3.6_p20251012

Description

OpenMW-specific fork of OpenSceneGraph

Added to portage

2025-10-30

pdm - 2.26.1
Ebuild name:

dev-python/pdm-2.26.1

Description

Python package and dependency manager supporting the latest PEP standards

Added to portage

2025-10-30

pixi - 0.59.0
Ebuild name:

dev-util/pixi-0.59.0

Description

A package management and workflow tool

Added to portage

2025-10-30

pymacs - 0.26-r6
Ebuild name:

app-emacs/pymacs-0.26-r6

Description

A tool that allows both-side communication between Python and Emacs Lisp

Added to portage

2025-10-30

pyscard - 2.3.1
Ebuild name:

dev-python/pyscard-2.3.1

Description

Smart card support in python

Added to portage

2025-10-30

python-mode - 6.3.1
Ebuild name:

app-emacs/python-mode-6.3.1

Description

An Emacs major mode for editing Python source

Added to portage

2025-10-30

pyvenv - 1.21
Ebuild name:

app-emacs/pyvenv-1.21

Description

Python virtual environment interface for Emacs

Added to portage

2025-10-30

qt-creator - 18.0.0
Ebuild name:

dev-qt/qt-creator-18.0.0

Description

Lightweight IDE for C++/QML development centering around Qt

Added to portage

2025-10-30

rails - 7.1.6
Ebuild name:

dev-ruby/rails-7.1.6

Description

ruby on rails is a web-application and persistence framework

Added to portage

2025-10-30

railties - 7.1.6
Ebuild name:

dev-ruby/railties-7.1.6

Description

Tools for creating, working with, and running Rails applications

Added to portage

2025-10-30

rocBLAS - 7.0.2-r1
Ebuild name:

sci-libs/rocBLAS-7.0.2-r1

Description

AMD's library for BLAS on ROCm

Added to portage

2025-10-30

rocSOLVER - 7.0.2-r1
Ebuild name:

sci-libs/rocSOLVER-7.0.2-r1

Description

Implementation of a subset of LAPACK functionality on the ROCm platform

Added to portage

2025-10-30

setuptools-gettext - 0.1.16
Ebuild name:

dev-python/setuptools-gettext-0.1.16

Description

Setuptools plugin for building mo files

Added to portage

2025-10-30

snapraid - 13.0
Ebuild name:

sys-fs/snapraid-13.0

Description

Backup program with disk array for cold data on existing filesystems

Added to portage

2025-10-30

sonarr-bin - 4.0.16.2942
Ebuild name:

www-apps/sonarr-bin-4.0.16.2942

Description

Sonarr is a Smart PVR for newsgroup and bittorrent users

Added to portage

2025-10-30

sqlglot - 27.29.0
Ebuild name:

dev-python/sqlglot-27.29.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2025-10-30

stripe - 13.1.0
Ebuild name:

dev-python/stripe-13.1.0

Description

Stripe Python bindings

Added to portage

2025-10-30

tellico - 4.1.4
Ebuild name:

kde-misc/tellico-4.1.4

Description

Collection manager based on KDE Frameworks

Added to portage

2025-10-30

testfixtures - 10.0.0
Ebuild name:

dev-python/testfixtures-10.0.0

Description

A collection of helpers and mock objects for unit tests and doc test

Added to portage

2025-10-30

uv - 0.9.6
Ebuild name:

dev-python/uv-0.9.6

Description

A Python package installer and resolver, written in Rust

Added to portage

2025-10-30

uv-build - 0.9.6
Ebuild name:

dev-python/uv-build-0.9.6

Description

PEP517 uv build backend

Added to portage

2025-10-30

vanilla-kernel - 5.10.246
Ebuild name:

sys-kernel/vanilla-kernel-5.10.246

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-10-30

vanilla-kernel - 5.15.196
Ebuild name:

sys-kernel/vanilla-kernel-5.15.196

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-10-30

vanilla-kernel - 6.1.158
Ebuild name:

sys-kernel/vanilla-kernel-6.1.158

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-10-30

vanilla-kernel - 6.12.56
Ebuild name:

sys-kernel/vanilla-kernel-6.12.56

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-10-30

vanilla-kernel - 6.17.6
Ebuild name:

sys-kernel/vanilla-kernel-6.17.6

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-10-30

vanilla-kernel - 6.6.115
Ebuild name:

sys-kernel/vanilla-kernel-6.6.115

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-10-30

vanilla-sources - 5.10.246
Ebuild name:

sys-kernel/vanilla-sources-5.10.246

Description

Full sources for the Linux kernel

Added to portage

2025-10-30

vanilla-sources - 5.15.196
Ebuild name:

sys-kernel/vanilla-sources-5.15.196

Description

Full sources for the Linux kernel

Added to portage

2025-10-30

vanilla-sources - 5.4.301
Ebuild name:

sys-kernel/vanilla-sources-5.4.301

Description

Full sources for the Linux kernel

Added to portage

2025-10-30

vanilla-sources - 6.1.158
Ebuild name:

sys-kernel/vanilla-sources-6.1.158

Description

Full sources for the Linux kernel

Added to portage

2025-10-30

vanilla-sources - 6.12.56
Ebuild name:

sys-kernel/vanilla-sources-6.12.56

Description

Full sources for the Linux kernel

Added to portage

2025-10-30

vanilla-sources - 6.17.6
Ebuild name:

sys-kernel/vanilla-sources-6.17.6

Description

Full sources for the Linux kernel

Added to portage

2025-10-30

vanilla-sources - 6.6.115
Ebuild name:

sys-kernel/vanilla-sources-6.6.115

Description

Full sources for the Linux kernel

Added to portage

2025-10-30

vips - 8.17.3
Ebuild name:

media-libs/vips-8.17.3

Description

VIPS Image Processing Library

Added to portage

2025-10-30

virtualenv - 20.35.4
Ebuild name:

dev-python/virtualenv-20.35.4

Description

Virtual Python Environment builder

Added to portage

2025-10-30

wsjtx_improved - 3.0.0-r1
Ebuild name:

media-radio/wsjtx_improved-3.0.0-r1

Description

Weak signal ham radio communication with improvements

Added to portage

2025-10-30

wxpython - 4.2.4
Ebuild name:

dev-python/wxpython-4.2.4

Description

A blending of the wxWindows C++ class library with Python

Added to portage

2025-10-30

yt-dlp - 2025.10.30_pre
Ebuild name:

net-misc/yt-dlp-2025.10.30_pre

Description

Added to portage

2025-10-30

yt-dlp-ejs - 0.3.0
Ebuild name:

dev-python/yt-dlp-ejs-0.3.0

Description

External JavaScript for yt-dlp supporting many runtimes

Added to portage

2025-10-30

z3 - 4.15.4
Ebuild name:

sci-mathematics/z3-4.15.4

Description

An efficient theorem prover

Added to portage

2025-10-30

zabbix - 7.0.20
Ebuild name:

net-analyzer/zabbix-7.0.20

Description

ZABBIX is software for monitoring of your applications, network and serv

Added to portage

2025-10-30

zabbix - 7.2.14
Ebuild name:

net-analyzer/zabbix-7.2.14

Description

ZABBIX is software for monitoring of your applications, network and serv

Added to portage

2025-10-30

zabbix - 7.4.4
Ebuild name:

net-analyzer/zabbix-7.4.4

Description

ZABBIX is software for monitoring of your applications, network and serve

Added to portage

2025-10-30

zope-i18nmessageid - 8.1
Ebuild name:

dev-python/zope-i18nmessageid-8.1

Description

Zope support for i18nmessageid (tagging source of i18n strings)

Added to portage

2025-10-30

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