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:

85269

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

Speeding up the boot process (next generation)

The idea is to preload the useful files into kernel buffer cache before they are needed. Since I/O can happen parallel to the other CPU intensive tasks during bootup, this leads to faster bootup and faster startup time for your chosen applications. Other projects use static lists to preload the files.

This tutorial uses an automated process of generating the "useful" prefetch database.

This is /etc/init.d/my-readahead.
Code:

#!/sbin/runscript
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

depend() {
        before syslog-ng
}

start() {
        ebegin "Starting readahead ROYALE"
        cat /etc/conf.d/* > /dev/null 2>&1 &
        cat /usr/lib/gconv/gconv-modules.cache > /dev/null 2>&1 &
        cat /usr/share/icons/gnome/icon-theme.cache > /dev/null 2>&1 &
        cat /usr/share/icons/hicolor/icon-theme.cache > /dev/null 2>&1 &
        cat `cat /etc/conf.d/sofile-list.load` > /dev/null 2>&1 &
        if [ -f /forcesampler ];then
                /usr/sbin/sample-init-process /etc/conf.d/sofile-list.load &
                rm -f /forcesampler
        fi 
        eend 0
}

stop() {
        eend 0
}

The executable shell script /usr/sbin/sample-init-process:
Code:

 #!/bin/bash
final_db="$1"

# total number of lists to keep in /etc/conf.d/
total_to_keep=4

# total number of samples to make in /forcesampler boot.
# It will take twice this amount of seconds to finish sampling.
total_samples_per_boot=200

# touch empty file if not there
[ ! -f "$final_db" ] && touch "$final_db"

let i=0
while [ "$i" -ne "$total_to_keep" ] ; do
        if [ ! -f "$final_db$i" ] ; then
                break;
        else
                j=$((i+1))
                if [ "$j" = "$total_to_keep" ] ;then
                        j=0
                fi
                if [ -f "$final_db$j" -a "$final_db$i" -nt "$final_db$j" ];then
                        i=$((j))
                        break;
                fi
        fi
        i=$((i+1))
done
if [ "$i" = "$total_to_keep" ] ;then
        i=0
fi

slot="$i"
cp "$final_db" "$final_db$i"

function collect_sample()
{
        lsof | awk '{if ($5=="REG") {if (match($9,".so") || match($9,".conf") \
        || match($9,"/bin/") || match($9,"ttf") || match($9,"libexec")) \
        print $9}}' | sort | uniq >> $1
}

collect_sample /tmp/init_sample1

i=0 
while [ "$i" -ne "$total_samples_per_boot" ] ; do
        collect_sample /tmp/init_sample2
        cat /tmp/init_sample1 /tmp/init_sample2 | sort | uniq > /tmp/init_sample3
        mv /tmp/init_sample3 /tmp/init_sample1
        sleep 1
        i=$((i+1))
done

cat /tmp/init_sample1 "$final_db$slot" | sort | uniq > "$final_db"

rm -f /tmp/init_sample[123]
And then do this:
Code:
chmod +x /usr/sbin/sample-init-process
rc-update add my-readahead default
touch /forcesampler

What you have done is asked my-readahead to create a sampler process which samples what files (fonts, binaries, libraries, configs) are in use, every second. It collects 200 samples (will be busy for at least 10 minutes after boot) and keeps updating the database with a list of useful files.

Once you boot after this the first time, you will probably see a slow down because its collecting samples for use on the next and subsequent boots. Use your system as you normally would. Open firefox, gaim, OO or whatever. Once the sampler script has finished ('ps -aef|grep sample-init-process' will tell you if its running), reboot. Now this and all subsequent boots will be much faster.

If it takes too long for the sample-init-process to finish, reduce the total_samples_per_boot variable in the sampler script to 100 and try again by touching /forcesampler.

In future, whenever you feel like updating the prefetch database, just 'touch /forcesampler' and database will be updated on next reboot.

based on http://forums.gentoo.org/viewtopic-t-478491.html, some script modifications done.

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-05-21
aiohappyeyeballs - 2.6.2
Ebuild name:

dev-python/aiohappyeyeballs-2.6.2

Description

Happy Eyeballs for pre-resolved hosts

Added to portage

2026-05-21

asahi-sources - 7.0.9_p2
Ebuild name:

sys-kernel/asahi-sources-7.0.9_p2

Description

Asahi Linux kernel sources

Added to portage

2026-05-21

awscli - 1.45.12
Ebuild name:

app-admin/awscli-1.45.12

Description

Universal Command Line Environment for AWS

Added to portage

2026-05-21

bind - 9.18.49
Ebuild name:

net-dns/bind-9.18.49

Description

Berkeley Internet Name Domain - Name Server

Added to portage

2026-05-21

bind - 9.20.23
Ebuild name:

net-dns/bind-9.20.23

Description

Berkeley Internet Name Domain - Name Server

Added to portage

2026-05-21

boto3 - 1.43.12
Ebuild name:

dev-python/boto3-1.43.12

Description

The AWS SDK for Python

Added to portage

2026-05-21

botocore - 1.43.12
Ebuild name:

dev-python/botocore-1.43.12

Description

Low-level, data-driven core of boto 3

Added to portage

2026-05-21

caffe2 - 2.12.0
Ebuild name:

sci-ml/caffe2-2.12.0

Description

A deep learning framework

Added to portage

2026-05-21

dbus-fast - 5.0.3
Ebuild name:

dev-python/dbus-fast-5.0.3

Description

A faster version of dbus-next

Added to portage

2026-05-21

dulwich - 1.2.3
Ebuild name:

dev-python/dulwich-1.2.3

Description

Pure-Python implementation of the Git file formats and protocols

Added to portage

2026-05-21

evince - 48.1-r1
Ebuild name:

app-text/evince-48.1-r1

Description

Simple document viewer for GNOME

Added to portage

2026-05-21

greenlet - 3.5.1
Ebuild name:

dev-python/greenlet-3.5.1

Description

Lightweight in-process concurrent programming

Added to portage

2026-05-21

haruna - 1.7.1-r1
Ebuild name:

media-video/haruna-1.7.1-r1

Description

Video player built with Qt/QML and libmpv

Added to portage

2026-05-21

haruna - 1.8.1
Ebuild name:

media-video/haruna-1.8.1

Description

Video player built with Qt/QML and libmpv

Added to portage

2026-05-21

highs - 1.14.0-r2
Ebuild name:

sci-mathematics/highs-1.14.0-r2

Description

Modern solver for linear, quadratic, and mixed-integer programs

Added to portage

2026-05-21

kineto - 0.4.0_p20260410
Ebuild name:

sci-ml/kineto-0.4.0_p20260410

Description

part of the PyTorch Profiler

Added to portage

2026-05-21

lxml-html-clean - 0.4.5
Ebuild name:

dev-python/lxml-html-clean-0.4.5

Description

Separate project for HTML cleaning functionalities copied from lxm

Added to portage

2026-05-21

mpvqt - 1.1.1-r3
Ebuild name:

media-libs/mpvqt-1.1.1-r3

Description

libmpv wrapper for QtQuick2 and QML

Added to portage

2026-05-21

mpvqt - 1.2.0
Ebuild name:

media-libs/mpvqt-1.2.0

Description

libmpv wrapper for QtQuick2 and QML

Added to portage

2026-05-21

muse - 3.20.2
Ebuild name:

app-emacs/muse-3.20.2

Description

An authoring and publishing environment for Emacs

Added to portage

2026-05-21

nagios-mode - 0.4
Ebuild name:

app-emacs/nagios-mode-0.4

Description

Major mode for editing Nagios configuration files

Added to portage

2026-05-21

navi2ch - 1.8.4-r2
Ebuild name:

app-emacs/navi2ch-1.8.4-r2

Description

A navigator for the Japanese textboard 2ch

Added to portage

2026-05-21

openapi-spec-validator - 0.9.0
Ebuild name:

dev-python/openapi-spec-validator-0.9.0

Description

OpenAPI 2.0 (aka Swagger) and OpenAPI 3.0 spec validator

Added to portage

2026-05-21

openvpn - 2.6.20
Ebuild name:

net-vpn/openvpn-2.6.20

Description

Robust and highly flexible tunneling application compatible with many OSes

Added to portage

2026-05-21

orderless - 1.7
Ebuild name:

app-emacs/orderless-1.7

Description

Completion style that matches multiple regexps in any order

Added to portage

2026-05-21

org-modern - 1.14
Ebuild name:

app-emacs/org-modern-1.14

Description

Modern style for your GNU Emacs Org buffers

Added to portage

2026-05-21

osm - 2.3
Ebuild name:

app-emacs/osm-2.3

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-05-21

paredit - 26-r2
Ebuild name:

app-emacs/paredit-26-r2

Description

Minor mode for performing structured editing of S-expressions

Added to portage

2026-05-21

peewee - 4.0.6
Ebuild name:

dev-python/peewee-4.0.6

Description

Small Python ORM

Added to portage

2026-05-21

pg_activity - 3.6.2
Ebuild name:

dev-db/pg_activity-3.6.2

Description

Realtime PostgreSQL database server monitoring tool

Added to portage

2026-05-21

pgbouncer - 1.25.2
Ebuild name:

dev-db/pgbouncer-1.25.2

Description

Lightweight connection pooler for PostgreSQL

Added to portage

2026-05-21

pipewire - 1.6.4-r1
Ebuild name:

media-video/pipewire-1.6.4-r1

Description

Multimedia processing graphs

Added to portage

2026-05-21

protobuf - 7.34.2
Ebuild name:

dev-python/protobuf-7.34.2

Description

Google's Protocol Buffers - Python bindings

Added to portage

2026-05-21

pydata-sphinx-theme - 0.18.0
Ebuild name:

dev-python/pydata-sphinx-theme-0.18.0

Description

Bootstrap-based Sphinx theme from the PyData community

Added to portage

2026-05-21

python-ldap - 3.4.7
Ebuild name:

dev-python/python-ldap-3.4.7

Description

Various LDAP-related Python modules

Added to portage

2026-05-21

pyzotero - 1.12.0
Ebuild name:

dev-python/pyzotero-1.12.0

Description

A Python client for the Zotero API

Added to portage

2026-05-21

scikit-learn - 1.9.0_rc1
Ebuild name:

dev-python/scikit-learn-1.9.0_rc1

Description

Machine learning library for Python

Added to portage

2026-05-21

setuptools-gettext - 0.1.18
Ebuild name:

dev-python/setuptools-gettext-0.1.18

Description

Setuptools plugin for building mo files

Added to portage

2026-05-21

tempel - 1.13
Ebuild name:

app-emacs/tempel-1.13

Description

Templates with in-buffer field editing for GNU Emacs

Added to portage

2026-05-21

trove-classifiers - 2026.5.20.19
Ebuild name:

dev-python/trove-classifiers-2026.5.20.19

Description

Canonical source for classifiers on PyPI (pypi.org)

Added to portage

2026-05-21

unbound - 1.25.1
Ebuild name:

net-dns/unbound-1.25.1

Description

A validating, recursive and caching DNS resolver

Added to portage

2026-05-21

util-linux - 2.41.4-r1
Ebuild name:

sys-apps/util-linux-2.41.4-r1

Description

Various useful Linux utilities

Added to portage

2026-05-21

valgrind - 3.27.1
Ebuild name:

dev-debug/valgrind-3.27.1

Description

An open-source memory debugger for GNU/Linux

Added to portage

2026-05-21

vaultwarden - 1.36.0
Ebuild name:

app-admin/vaultwarden-1.36.0

Description

Unofficial Bitwarden compatible password manager

Added to portage

2026-05-21

vaultwarden-web - 2026.4.1
Ebuild name:

www-apps/vaultwarden-web-2026.4.1

Description

Prebuilt web vault frontend for Vaultwarden

Added to portage

2026-05-21

vertico - 2.9
Ebuild name:

app-emacs/vertico-2.9

Description

Vertical interactive completion

Added to portage

2026-05-21

wand - 0.7.1
Ebuild name:

dev-python/wand-0.7.1

Description

Ctypes-based simple ImageMagick binding for Python

Added to portage

2026-05-21

wireshark - 4.6.6
Ebuild name:

net-analyzer/wireshark-4.6.6

Description

Network protocol analyzer (sniffer)

Added to portage

2026-05-21

xfsprogs - 7.0.1
Ebuild name:

sys-fs/xfsprogs-7.0.1

Description

XFS filesystem utilities

Added to portage

2026-05-21

zen-sources - 7.0.9
Ebuild name:

sys-kernel/zen-sources-7.0.9

Description

The Zen Kernel Live Sources

Added to portage

2026-05-21

2026-05-20
aiodns - 4.0.4
Ebuild name:

dev-python/aiodns-4.0.4

Description

Simple DNS resolver for asyncio

Added to portage

2026-05-20

aws-sam-translator - 1.110.0
Ebuild name:

dev-python/aws-sam-translator-1.110.0

Description

A library that transform SAM templates into AWS CloudFormatio

Added to portage

2026-05-20

awscli - 1.45.11
Ebuild name:

app-admin/awscli-1.45.11

Description

Universal Command Line Environment for AWS

Added to portage

2026-05-20

badkeys - 0.0.18
Ebuild name:

app-crypt/badkeys-0.0.18

Description

Check cryptographic keys for known weaknesses

Added to portage

2026-05-20

boto3 - 1.43.11
Ebuild name:

dev-python/boto3-1.43.11

Description

The AWS SDK for Python

Added to portage

2026-05-20

botocore - 1.43.11
Ebuild name:

dev-python/botocore-1.43.11

Description

Low-level, data-driven core of boto 3

Added to portage

2026-05-20

claude-code - 2.1.144
Ebuild name:

dev-util/claude-code-2.1.144

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-05-20

dep-logic - 0.6.0
Ebuild name:

dev-python/dep-logic-0.6.0

Description

Python dependency specifications supporting logical operations

Added to portage

2026-05-20

dist-kernel - 5.10.256_p2
Ebuild name:

virtual/dist-kernel-5.10.256_p2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-20

dist-kernel - 5.15.207_p2
Ebuild name:

virtual/dist-kernel-5.15.207_p2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-20

dist-kernel - 6.1.173_p2
Ebuild name:

virtual/dist-kernel-6.1.173_p2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-20

dist-kernel - 6.12.90_p1
Ebuild name:

virtual/dist-kernel-6.12.90_p1

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-20

dist-kernel - 6.18.32_p1
Ebuild name:

virtual/dist-kernel-6.18.32_p1

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-20

dist-kernel - 6.6.140_p1
Ebuild name:

virtual/dist-kernel-6.6.140_p1

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-20

dist-kernel - 7.0.9_p1
Ebuild name:

virtual/dist-kernel-7.0.9_p1

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-20

gentoo-kernel - 5.10.256_p2
Ebuild name:

sys-kernel/gentoo-kernel-5.10.256_p2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-20

gentoo-kernel - 5.15.207_p2
Ebuild name:

sys-kernel/gentoo-kernel-5.15.207_p2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-20

gentoo-kernel - 6.1.173_p2
Ebuild name:

sys-kernel/gentoo-kernel-6.1.173_p2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-20

gentoo-kernel - 6.12.90_p1
Ebuild name:

sys-kernel/gentoo-kernel-6.12.90_p1

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-20

gentoo-kernel - 6.18.32_p1
Ebuild name:

sys-kernel/gentoo-kernel-6.18.32_p1

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-20

gentoo-kernel - 6.6.140_p1
Ebuild name:

sys-kernel/gentoo-kernel-6.6.140_p1

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-20

gentoo-kernel - 7.0.9_p1
Ebuild name:

sys-kernel/gentoo-kernel-7.0.9_p1

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-20

gentoo-kernel-bin - 5.10.256_p2
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.256_p2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-20

gentoo-kernel-bin - 5.15.207_p2
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.207_p2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-20

gentoo-kernel-bin - 6.1.173_p2
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.173_p2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-20

gentoo-kernel-bin - 6.12.90_p1
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.90_p1

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-20

gentoo-kernel-bin - 6.18.32_p1
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.32_p1

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-20

gentoo-kernel-bin - 6.6.140_p1
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.140_p1

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-20

gentoo-kernel-bin - 7.0.9_p1
Ebuild name:

sys-kernel/gentoo-kernel-bin-7.0.9_p1

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-20

gentoo-sources - 5.10.256-r2
Ebuild name:

sys-kernel/gentoo-sources-5.10.256-r2

Description

Full sources including the Gentoo patchset for the . kernel t

Added to portage

2026-05-20

gentoo-sources - 5.15.207-r2
Ebuild name:

sys-kernel/gentoo-sources-5.15.207-r2

Description

Full sources including the Gentoo patchset for the . kernel t

Added to portage

2026-05-20

gentoo-sources - 6.1.173-r2
Ebuild name:

sys-kernel/gentoo-sources-6.1.173-r2

Description

Full sources including the Gentoo patchset for the . kernel tr

Added to portage

2026-05-20

gentoo-sources - 6.12.90-r2
Ebuild name:

sys-kernel/gentoo-sources-6.12.90-r2

Description

Full sources including the Gentoo patchset for the . kernel tr

Added to portage

2026-05-20

gentoo-sources - 6.18.32-r2
Ebuild name:

sys-kernel/gentoo-sources-6.18.32-r2

Description

Full sources including the Gentoo patchset for the . kernel tr

Added to portage

2026-05-20

gentoo-sources - 6.6.140-r2
Ebuild name:

sys-kernel/gentoo-sources-6.6.140-r2

Description

Full sources including the Gentoo patchset for the . kernel tr

Added to portage

2026-05-20

gentoo-sources - 7.0.9-r2
Ebuild name:

sys-kernel/gentoo-sources-7.0.9-r2

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-05-20

gentoo-sources - 7.0.9-r3
Ebuild name:

sys-kernel/gentoo-sources-7.0.9-r3

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-05-20

git-credential-manager - 2.8.0
Ebuild name:

dev-vcs/git-credential-manager-2.8.0

Description

Secure Git credential storage supporing GitHub, Azure Repos, a

Added to portage

2026-05-20

gr-osmosdr - 0.2.6-r2
Ebuild name:

net-wireless/gr-osmosdr-0.2.6-r2

Description

GNU Radio source block for OsmoSDR and rtlsdr and hackrf

Added to portage

2026-05-20

haveged - 1.9.21
Ebuild name:

sys-apps/haveged-1.9.21

Description

A simple entropy daemon using the HAVEGE algorithm

Added to portage

2026-05-20

hypothesis - 6.152.9
Ebuild name:

dev-python/hypothesis-6.152.9

Description

A library for property based testing

Added to portage

2026-05-20

ig - 0.52.0
Ebuild name:

app-admin/ig-0.52.0

Description

Tools and framework for data collection and system inspection using eBPF

Added to portage

2026-05-20

js8call - 3.0.1
Ebuild name:

media-radio/js8call-3.0.1

Description

Weak signal ham radio communication

Added to portage

2026-05-20

jsonschema-path - 0.5.0
Ebuild name:

dev-python/jsonschema-path-0.5.0

Description

JSONSchema Spec with object-oriented paths

Added to portage

2026-05-20

kitty - 0.47.0
Ebuild name:

x11-terms/kitty-0.47.0

Description

Fast, feature-rich, GPU-based terminal

Added to portage

2026-05-20

kitty-shell-integration - 0.47.0
Ebuild name:

x11-terms/kitty-shell-integration-0.47.0

Description

Shell integration scripts for kitty, a GPU-based terminal

Added to portage

2026-05-20

kitty-terminfo - 0.47.0
Ebuild name:

x11-terms/kitty-terminfo-0.47.0

Description

Terminfo for kitty, a GPU-based terminal emulator

Added to portage

2026-05-20

libbraiding - 1.3.2
Ebuild name:

sci-libs/libbraiding-1.3.2

Description

Expose the functionality of cbraid as a shared library

Added to portage

2026-05-20

libhomfly - 1.04
Ebuild name:

sci-libs/libhomfly-1.04

Description

Library to compute the homfly polynomial of a link

Added to portage

2026-05-20

linux-firmware - 20260519
Ebuild name:

sys-kernel/linux-firmware-20260519

Description

Linux firmware files

Added to portage

2026-05-20

mdbook - 0.5.3
Ebuild name:

app-text/mdbook-0.5.3

Description

Create a book from markdown files

Added to portage

2026-05-20

memcached - 1.6.42
Ebuild name:

net-misc/memcached-1.6.42

Description

High-performance, distributed memory object caching system

Added to portage

2026-05-20

nct6687d - 0_pre20260519
Ebuild name:

sys-power/nct6687d-0_pre20260519

Description

Kernel module for the Nuvoton NCT6687-R

Added to portage

2026-05-20

nitrocli - 0.4.1-r2
Ebuild name:

app-crypt/nitrocli-0.4.1-r2

Description

A command line tool for interacting with Nitrokey devices

Added to portage

2026-05-20

nuitka - 4.1.1
Ebuild name:

dev-python/nuitka-4.1.1

Description

Python to native compiler

Added to portage

2026-05-20

nvidia-drivers - 580.159.04
Ebuild name:

x11-drivers/nvidia-drivers-580.159.04

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-05-20

opentelemetry-api - 1.42.0
Ebuild name:

dev-python/opentelemetry-api-1.42.0

Description

OpenTelemetry Python API

Added to portage

2026-05-20

opentelemetry-sdk - 1.42.0
Ebuild name:

dev-python/opentelemetry-sdk-1.42.0

Description

OpenTelemetry Python SDK

Added to portage

2026-05-20

opentelemetry-semantic-conventions - 1.42.0
Ebuild name:

dev-python/opentelemetry-semantic-conventions-1.42.0

Description

OpenTelemetry Semantic Conventions

Added to portage

2026-05-20

parver - 1.0
Ebuild name:

dev-python/parver-1.0

Description

Parse and manipulate version numbers

Added to portage

2026-05-20

pathable - 0.6.0
Ebuild name:

dev-python/pathable-0.6.0

Description

Object-oriented paths

Added to portage

2026-05-20

procenv - 0.60-r1
Ebuild name:

sys-process/procenv-0.60-r1

Description

command-line utility to show process environment

Added to portage

2026-05-20

protobuf - 7.35.0
Ebuild name:

dev-python/protobuf-7.35.0

Description

Google's Protocol Buffers - Python bindings

Added to portage

2026-05-20

prusaslicer - 2.9.5
Ebuild name:

media-gfx/prusaslicer-2.9.5

Description

A mesh slicer to generate G-code for fused-filament-fabrication (3D pri

Added to portage

2026-05-20

pymysql - 1.2.0
Ebuild name:

dev-python/pymysql-1.2.0

Description

Pure-Python MySQL Driver

Added to portage

2026-05-20

python-glanceclient - 4.12.0
Ebuild name:

dev-python/python-glanceclient-4.12.0

Description

A client for the OpenStack Glance API

Added to portage

2026-05-20

railway - 2.10.1
Ebuild name:

gui-apps/railway-2.10.1

Description

Travel with all your train information in one place

Added to portage

2026-05-20

rq - 2.9.0
Ebuild name:

dev-python/rq-2.9.0

Description

Simple, lightweight library for creating and processing background jobs

Added to portage

2026-05-20

rsync - 3.4.3
Ebuild name:

net-misc/rsync-3.4.3

Description

File transfer program to keep remote files into sync

Added to portage

2026-05-20

tmuxp - 1.68.0
Ebuild name:

app-misc/tmuxp-1.68.0

Description

tmux session manager. built on libtmux

Added to portage

2026-05-20

wine-proton - 11.0.1_beta5
Ebuild name:

app-emulation/wine-proton-11.0.1_beta5

Description

Valve Software's fork of Wine

Added to portage

2026-05-20

yarl - 1.24.2
Ebuild name:

dev-python/yarl-1.24.2

Description

Yet another URL library

Added to portage

2026-05-20

zeroconf - 0.149.9
Ebuild name:

dev-python/zeroconf-0.149.9

Description

Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi comp

Added to portage

2026-05-20

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