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:

67243

userrating:

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


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

Gentoo udev Guide


1. What is udev?


The /dev Directory


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


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

namedev


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

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

libsysfs


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

udev


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

2. Using udev on Gentoo


Requirements


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

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

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

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

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

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

Configuration


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

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

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

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

3. Known Issues


Missing device node files at boot


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

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

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

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

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

udev and nvidia


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

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

LVM2 Names Disappear


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

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

No Consistent Naming between DevFS and udev


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

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

Other issues


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

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

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

4. Resources & Acknowledgements


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

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

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

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2024-04-27
anydesk - 6.3.2
Ebuild name:

net-misc/anydesk-6.3.2

Description

Feature rich multi-platform remote desktop application

Added to portage

2024-04-27

dask-expr - 1.0.13
Ebuild name:

dev-python/dask-expr-1.0.13

Description

High Level Expressions for Dask

Added to portage

2024-04-27

funtools - 1.4.8
Ebuild name:

sci-astronomy/funtools-1.4.8

Description

FITS library and utlities for astronomical images

Added to portage

2024-04-27

gcc - 13.2.1_p20240426
Ebuild name:

sys-devel/gcc-13.2.1_p20240426

Description

The GNU Compiler Collection

Added to portage

2024-04-27

ipython - 8.24.0
Ebuild name:

dev-python/ipython-8.24.0

Description

Advanced interactive shell for Python

Added to portage

2024-04-27

jupyterlab - 4.1.7
Ebuild name:

dev-python/jupyterlab-4.1.7

Description

JupyterLab computational environment

Added to portage

2024-04-27

keyring - 25.2.0
Ebuild name:

dev-python/keyring-25.2.0

Description

Provides access to the system keyring service

Added to portage

2024-04-27

libarchive - 3.7.4
Ebuild name:

app-arch/libarchive-3.7.4

Description

Multi-format archive and compression library

Added to portage

2024-04-27

libgit2 - 1.8.0-r1
Ebuild name:

dev-libs/libgit2-1.8.0-r1

Description

A linkable library for Git

Added to portage

2024-04-27

mechanize - 0.4.10
Ebuild name:

dev-python/mechanize-0.4.10

Description

Stateful programmatic web browsing in Python

Added to portage

2024-04-27

npadmin - 0.8.7-r2
Ebuild name:

net-print/npadmin-0.8.7-r2

Description

Network printer command-line administration tool

Added to portage

2024-04-27

pgplot - 5.2.2-r8
Ebuild name:

sci-libs/pgplot-5.2.2-r8

Description

FORTRAN/C device-independent scientific graphic library

Added to portage

2024-04-27

pptpd - 1.4.0-r4
Ebuild name:

net-vpn/pptpd-1.4.0-r4

Description

Linux Point-to-Point Tunnelling Protocol Server

Added to portage

2024-04-27

puremagic - 1.22
Ebuild name:

dev-python/puremagic-1.22

Description

Pure python implementation of magic file detection

Added to portage

2024-04-27

pytest - 8.1.2
Ebuild name:

dev-python/pytest-8.1.2

Description

Simple powerful testing with Python

Added to portage

2024-04-27

python-mode - 6.3.0
Ebuild name:

app-emacs/python-mode-6.3.0

Description

An Emacs major mode for editing Python source

Added to portage

2024-04-27

pyvenv - 1.21
Ebuild name:

app-emacs/pyvenv-1.21

Description

Python virtual environment interface for Emacs

Added to portage

2024-04-27

quack - 0.48
Ebuild name:

app-emacs/quack-0.48

Description

Enhances Emacs support for Scheme

Added to portage

2024-04-27

queue - 0.2
Ebuild name:

app-emacs/queue-0.2

Description

Queue data structure

Added to portage

2024-04-27

sentry-sdk - 2.0.1
Ebuild name:

dev-python/sentry-sdk-2.0.1

Description

Python client for Sentry

Added to portage

2024-04-27

setuptools - 69.2.0-r2
Ebuild name:

dev-python/setuptools-69.2.0-r2

Description

Collection of extensions to Distutils

Added to portage

2024-04-27

setuptools - 69.5.1-r1
Ebuild name:

dev-python/setuptools-69.5.1-r1

Description

Collection of extensions to Distutils

Added to portage

2024-04-27

snapd-glib - 1.65-r1
Ebuild name:

sys-libs/snapd-glib-1.65-r1

Description

glib library for communicating with snapd

Added to portage

2024-04-27

valgrind - 3.23.0
Ebuild name:

dev-debug/valgrind-3.23.0

Description

An open-source memory debugger for GNU/Linux

Added to portage

2024-04-27

vivaldi - 6.7.3329.17
Ebuild name:

www-client/vivaldi-6.7.3329.17

Description

A browser for our friends

Added to portage

2024-04-27

weston - 13.0.1
Ebuild name:

dev-libs/weston-13.0.1

Description

Wayland reference compositor

Added to portage

2024-04-27

2024-04-26
Faker - 24.14.0
Ebuild name:

dev-python/Faker-24.14.0

Description

A Python package that generates fake data for you

Added to portage

2024-04-26

PyQt6 - 6.7.0
Ebuild name:

dev-python/PyQt6-6.7.0

Description

Python bindings for the Qt framework

Added to portage

2024-04-26

PyQt6-WebEngine - 6.7.0
Ebuild name:

dev-python/PyQt6-WebEngine-6.7.0

Description

Python bindings for QtWebEngine

Added to portage

2024-04-26

amdgpu-pro-amf - 1.4.33.1718238
Ebuild name:

media-video/amdgpu-pro-amf-1.4.33.1718238

Description

AMD's closed source Advanced Media Framework (AMF) driver

Added to portage

2024-04-26

amdgpu-pro-vulkan - 23.40.0.1718238
Ebuild name:

media-libs/amdgpu-pro-vulkan-23.40.0.1718238

Description

AMD's closed source vulkan driver, from Radeon Softwar

Added to portage

2024-04-26

amf-headers - 1.4.33
Ebuild name:

media-libs/amf-headers-1.4.33

Description

The Advanced Media Framework (AMF) SDK

Added to portage

2024-04-26

awscli - 1.32.92
Ebuild name:

app-admin/awscli-1.32.92

Description

Universal Command Line Environment for AWS

Added to portage

2024-04-26

beagle - 3.0.3-r2
Ebuild name:

sci-libs/beagle-3.0.3-r2

Description

Open BEAGLE, a versatile EC/GA/GP framework

Added to portage

2024-04-26

black - 24.4.2
Ebuild name:

dev-python/black-24.4.2

Description

The uncompromising Python code formatter

Added to portage

2024-04-26

boto3 - 1.34.92
Ebuild name:

dev-python/boto3-1.34.92

Description

The AWS SDK for Python

Added to portage

2024-04-26

botocore - 1.34.92
Ebuild name:

dev-python/botocore-1.34.92

Description

Low-level, data-driven core of boto 3

Added to portage

2024-04-26

calibre - 7.7.0-r1
Ebuild name:

app-text/calibre-7.7.0-r1

Description

Ebook management application

Added to portage

2024-04-26

calibre - 7.8.0-r1
Ebuild name:

app-text/calibre-7.8.0-r1

Description

Ebook management application

Added to portage

2024-04-26

calibre - 7.9.0
Ebuild name:

app-text/calibre-7.9.0

Description

Ebook management application

Added to portage

2024-04-26

connman-ui - 0_p20150622-r1
Ebuild name:

net-misc/connman-ui-0_p20150622-r1

Description

A full-featured GTK based trayicon UI for ConnMan

Added to portage

2024-04-26

containerd - 1.7.15
Ebuild name:

app-containers/containerd-1.7.15

Description

A daemon to control runC

Added to portage

2024-04-26

curl - 8.7.1-r4
Ebuild name:

net-misc/curl-8.7.1-r4

Description

A Client that groks URLs

Added to portage

2024-04-26

curses - 1.4.5
Ebuild name:

dev-ruby/curses-1.4.5

Description

Ruby binding for curses, ncurses, and PDCurses

Added to portage

2024-04-26

discover - 6.0.4-r1
Ebuild name:

kde-plasma/discover-6.0.4-r1

Description

KDE Plasma resources management GUI

Added to portage

2024-04-26

docker - 26.1.0
Ebuild name:

app-containers/docker-26.1.0

Description

The core functions you need to create Docker images and run Docker con

Added to portage

2024-04-26

docker-cli - 26.1.0
Ebuild name:

app-containers/docker-cli-26.1.0

Description

the command line binary for docker

Added to portage

2024-04-26

earthly - 0.8.9
Ebuild name:

app-containers/earthly-0.8.9

Description

Build automation tool that executes in containers

Added to portage

2024-04-26

flask-compress - 1.15
Ebuild name:

dev-python/flask-compress-1.15

Description

Compress responses in your Flask app with gzip

Added to portage

2024-04-26

foot - 1.17.2
Ebuild name:

gui-apps/foot-1.17.2

Description

Fast, lightweight and minimalistic Wayland terminal emulator

Added to portage

2024-04-26

foot-terminfo - 1.17.2
Ebuild name:

gui-apps/foot-terminfo-1.17.2

Description

Terminfo for foot, a fast, lightweight and minimal Wayland terminal e

Added to portage

2024-04-26

gcc - 11.4.1_p20240425
Ebuild name:

sys-devel/gcc-11.4.1_p20240425

Description

The GNU Compiler Collection

Added to portage

2024-04-26

gcc - 15.0.9999
Ebuild name:

sys-devel/gcc-15.0.9999

Description

The GNU Compiler Collection

Added to portage

2024-04-26

genkernel - 4.3.12
Ebuild name:

sys-kernel/genkernel-4.3.12

Description

Gentoo automatic kernel building scripts

Added to portage

2024-04-26

gentoolkit - 0.6.6
Ebuild name:

app-portage/gentoolkit-0.6.6

Description

Collection of administration scripts for Gentoo

Added to portage

2024-04-26

git-credential-manager - 2.5.0
Ebuild name:

dev-vcs/git-credential-manager-2.5.0

Description

Secure Git credential storage supporing GitHub, Azure Repos, a

Added to portage

2024-04-26

glibc - 2.38-r13
Ebuild name:

sys-libs/glibc-2.38-r13

Description

GNU libc C library

Added to portage

2024-04-26

glibc - 2.39-r4
Ebuild name:

sys-libs/glibc-2.39-r4

Description

GNU libc C library

Added to portage

2024-04-26

gnofract4d - 4.3_p20240324
Ebuild name:

media-gfx/gnofract4d-4.3_p20240324

Description

A program for drawing beautiful mathematically-based images know

Added to portage

2024-04-26

gtk - 4.12.5-r1
Ebuild name:

gui-libs/gtk-4.12.5-r1

Description

GTK is a multi-platform toolkit for creating graphical user interfaces

Added to portage

2024-04-26

idnkit - 2.3-r1
Ebuild name:

net-dns/idnkit-2.3-r1

Description

Toolkit for Internationalized Domain Names (IDN)

Added to portage

2024-04-26

intune-portal - 1.2402.12
Ebuild name:

sys-apps/intune-portal-1.2402.12

Description

Microsoft Intune Company Portal to access a corporate environment

Added to portage

2024-04-26

iosevka - 29.2.1
Ebuild name:

media-fonts/iosevka-29.2.1

Description

Slender typeface for code, from code

Added to portage

2024-04-26

kdenetwork-meta - 23.08.5-r1
Ebuild name:

kde-apps/kdenetwork-meta-23.08.5-r1

Description

kdenetwork - merge this to pull in all kdenetwork-derived packa

Added to portage

2024-04-26

kdenetwork-meta - 24.02.2-r1
Ebuild name:

kde-apps/kdenetwork-meta-24.02.2-r1

Description

kdenetwork - merge this to pull in all kdenetwork-derived packa

Added to portage

2024-04-26

libgpg-error - 1.49
Ebuild name:

dev-libs/libgpg-error-1.49

Description

Contains error handling functions used by GnuPG software

Added to portage

2024-04-26

libtifiles2 - 1.1.7-r1
Ebuild name:

sci-libs/libtifiles2-1.1.7-r1

Description

Library for TI calculator files

Added to portage

2024-04-26

libucl - 0.9.2
Ebuild name:

dev-libs/libucl-0.9.2

Description

Universal configuration library parser

Added to portage

2024-04-26

lxml-html-clean - 0.1.1
Ebuild name:

dev-python/lxml-html-clean-0.1.1

Description

Separate project for HTML cleaning functionalities copied from lxm

Added to portage

2024-04-26

mailbox-count - 0.0.8
Ebuild name:

net-mail/mailbox-count-0.0.8

Description

Count mailboxes in a SQL database

Added to portage

2024-04-26

microsoft-identity-broker - 0
Ebuild name:

acct-group/microsoft-identity-broker-0

Description

Group for sys-auth/microsoft-identity-broker

Added to portage

2024-04-26

microsoft-identity-broker - 0
Ebuild name:

acct-user/microsoft-identity-broker-0

Description

User for sys-auth/microsoft-identity-broker

Added to portage

2024-04-26

microsoft-identity-broker - 2.0.0
Ebuild name:

sys-auth/microsoft-identity-broker-2.0.0

Description

Microsoft Authentication Broker to access a corporate envi

Added to portage

2024-04-26

midentd - 2.3.1-r3
Ebuild name:

net-misc/midentd-2.3.1-r3

Description

ident daemon with masquerading and fake replies support

Added to portage

2024-04-26

mkdocs-material - 9.5.19
Ebuild name:

dev-python/mkdocs-material-9.5.19

Description

A Material Design theme for MkDocs

Added to portage

2024-04-26

moddb - 0.11.0
Ebuild name:

dev-python/moddb-0.11.0

Description

Python scrapper to access ModDB mods, games and more as objects

Added to portage

2024-04-26

mycli - 1.27.2
Ebuild name:

dev-db/mycli-1.27.2

Description

CLI for MySQL Database with auto-completion and syntax highlighting

Added to portage

2024-04-26

netevent - 2.2.2
Ebuild name:

net-misc/netevent-2.2.2

Description

Tool to share Linux event devices with other machines

Added to portage

2024-04-26

oneVPL-intel-gpu - 24.2.1
Ebuild name:

media-libs/oneVPL-intel-gpu-24.2.1

Description

oneAPI Video Processing Library Intel GPU implementation

Added to portage

2024-04-26

phonon - 4.12.0-r2
Ebuild name:

media-libs/phonon-4.12.0-r2

Description

KDE multimedia abstraction library

Added to portage

2024-04-26

plette - 2.0.2
Ebuild name:

dev-python/plette-2.0.2

Description

Structured Pipfile and Pipfile.lock models

Added to portage

2024-04-26

qpwgraph - 0.6.2
Ebuild name:

media-sound/qpwgraph-0.6.2

Description

PipeWire Graph Qt GUI Interface

Added to portage

2024-04-26

quilt-el - 0.66
Ebuild name:

app-emacs/quilt-el-0.66

Description

Quilt mode for Emacs

Added to portage

2024-04-26

qwerty - 1.1
Ebuild name:

app-emacs/qwerty-1.1

Description

Switch between QWERTY and DVORAK without changing the console keymap

Added to portage

2024-04-26

racket-mode - 1_p20231214
Ebuild name:

app-emacs/racket-mode-1_p20231214

Description

Emacs modes for Racket edit, REPL, check-syntax, debug, profile,

Added to portage

2024-04-26

racket-mode - 1_p20240130
Ebuild name:

app-emacs/racket-mode-1_p20240130

Description

Emacs modes for Racket edit, REPL, check-syntax, debug, profile,

Added to portage

2024-04-26

racket-mode - 9999
Ebuild name:

app-emacs/racket-mode-9999

Description

Emacs modes for Racket edit, REPL, check-syntax, debug, profile, and mor

Added to portage

2024-04-26

rainbow-delimiters - 2.1.5
Ebuild name:

app-emacs/rainbow-delimiters-2.1.5

Description

Highlight nested parentheses, brackets, and braces according to

Added to portage

2024-04-26

rainbow-mode - 1.0.6
Ebuild name:

app-emacs/rainbow-mode-1.0.6

Description

Colorize strings that represent colors inside Emacs buffers

Added to portage

2024-04-26

ripgrep-all - 0.10.6
Ebuild name:

sys-apps/ripgrep-all-0.10.6

Description

Like ripgrep, but also search in PDFs, E-Books, Office documents, archi

Added to portage

2024-04-26

roman - 4.2
Ebuild name:

dev-python/roman-4.2

Description

An Integer to Roman numerals converter

Added to portage

2024-04-26

ruff - 0.4.2
Ebuild name:

dev-util/ruff-0.4.2

Description

An extremely fast Python linter, written in Rust

Added to portage

2024-04-26

sentry-sdk - 2.0.0
Ebuild name:

dev-python/sentry-sdk-2.0.0

Description

Python client for Sentry

Added to portage

2024-04-26

signon-kwallet-extension - 24.02.2-r1
Ebuild name:

kde-apps/signon-kwallet-extension-24.02.2-r1

Description

KWallet extension for signond

Added to portage

2024-04-26

skk-jisyo - 202402
Ebuild name:

app-i18n/skk-jisyo-202402

Description

Jisyo (dictionary) files for the SKK Japanese-input software

Added to portage

2024-04-26

spirv-llvm-translator - 18.1.0
Ebuild name:

dev-util/spirv-llvm-translator-18.1.0

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2024-04-26

sqlglot - 23.12.1
Ebuild name:

dev-python/sqlglot-23.12.1

Description

An easily customizable SQL parser and transpiler

Added to portage

2024-04-26

stripe - 9.4.0
Ebuild name:

dev-python/stripe-9.4.0

Description

Stripe python bindings

Added to portage

2024-04-26

superqt - 0.6.4
Ebuild name:

dev-python/superqt-0.6.4

Description

Missing widgets and components for PyQt/PySide

Added to portage

2024-04-26

swt - 3.7.2-r4
Ebuild name:

dev-java/swt-3.7.2-r4

Description

GTK based SWT Library

Added to portage

2024-04-26

swt - 4.10-r3
Ebuild name:

dev-java/swt-4.10-r3

Description

GTK based SWT Library

Added to portage

2024-04-26

swtpm - 0.8.2
Ebuild name:

app-crypt/swtpm-0.8.2

Description

Libtpms-based TPM emulator

Added to portage

2024-04-26

systemd - 254.11
Ebuild name:

sys-apps/systemd-254.11

Description

System and service manager for Linux

Added to portage

2024-04-26

systemd-utils - 254.11
Ebuild name:

sys-apps/systemd-utils-254.11

Description

Utilities split out from systemd for OpenRC users

Added to portage

2024-04-26

udiskie - 2.5.3
Ebuild name:

sys-fs/udiskie-2.5.3

Description

An automatic disk mounting service using udisks

Added to portage

2024-04-26

ugit - 0.4.4
Ebuild name:

app-shells/ugit-0.4.4

Description

PowerShell wrapper for git, automate repos and output git as objects

Added to portage

2024-04-26

vertico - 1.8
Ebuild name:

app-emacs/vertico-1.8

Description

Vertical interactive completion

Added to portage

2024-04-26

vivaldi-snapshot - 6.7.3329.16
Ebuild name:

www-client/vivaldi-snapshot-6.7.3329.16

Description

A browser for our friends

Added to portage

2024-04-26

weston - 13.0.0-r2
Ebuild name:

dev-libs/weston-13.0.0-r2

Description

Wayland reference compositor

Added to portage

2024-04-26

wpebackend-fdo - 1.14.2-r1
Ebuild name:

gui-libs/wpebackend-fdo-1.14.2-r1

Description

WPE backend designed for Linux desktop systems

Added to portage

2024-04-26

xfdesktop - 4.19.2-r1
Ebuild name:

xfce-base/xfdesktop-4.19.2-r1

Description

Desktop manager for the Xfce desktop environment

Added to portage

2024-04-26

yydecode - 0.2.10-r3
Ebuild name:

net-news/yydecode-0.2.10-r3

Description

A decoder for yENC format, popular on Usenet

Added to portage

2024-04-26

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