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:

88036

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-08-30
ansi2html - 1.9.3
Ebuild name:

dev-python/ansi2html-1.9.3

Description

Convert text with ANSI color codes to HTML

Added to portage

2026-08-30

bcachefs-tools - 1.39.3
Ebuild name:

sys-fs/bcachefs-tools-1.39.3

Description

Tools for bcachefs

Added to portage

2026-08-30

bitwarden-desktop-bin - 2026.8.0
Ebuild name:

app-admin/bitwarden-desktop-bin-2026.8.0

Description

Bitwarden password manager desktop client

Added to portage

2026-08-30

boost - 1.92.0
Ebuild name:

dev-libs/boost-1.92.0

Description

Boost Libraries for C++

Added to portage

2026-08-30

bubblewrap - 0.12.0
Ebuild name:

sys-apps/bubblewrap-0.12.0

Description

Unprivileged sandboxing tool, namespaces-powered chroot-like solution

Added to portage

2026-08-30

doggo - 1.3.0
Ebuild name:

net-dns/doggo-1.3.0

Description

Command-line DNS Client for Humans

Added to portage

2026-08-30

dovecot - 2.4.5
Ebuild name:

net-mail/dovecot-2.4.5

Description

An IMAP and POP3 server written with security primarily in mind

Added to portage

2026-08-30

environs - 15.2.0
Ebuild name:

dev-python/environs-15.2.0

Description

Python library for simplified environment variable parsing

Added to portage

2026-08-30

feh - 3.12.4
Ebuild name:

media-gfx/feh-3.12.4

Description

A fast, lightweight imageviewer using imlib2

Added to portage

2026-08-30

filezilla - 3.71.1
Ebuild name:

net-ftp/filezilla-3.71.1

Description

FTP client with lots of useful features and an intuitive interface

Added to portage

2026-08-30

gcc - 13.4.1_p20260826
Ebuild name:

sys-devel/gcc-13.4.1_p20260826

Description

The GNU Compiler Collection

Added to portage

2026-08-30

gcc - 14.4.1_p20260827
Ebuild name:

sys-devel/gcc-14.4.1_p20260827

Description

The GNU Compiler Collection

Added to portage

2026-08-30

gcc - 15.3.1_p20260828
Ebuild name:

sys-devel/gcc-15.3.1_p20260828

Description

The GNU Compiler Collection

Added to portage

2026-08-30

gcc - 16.2.1_p20260829
Ebuild name:

sys-devel/gcc-16.2.1_p20260829

Description

The GNU Compiler Collection

Added to portage

2026-08-30

gentoolkit - 0.8.1
Ebuild name:

app-portage/gentoolkit-0.8.1

Description

Collection of administration scripts for Gentoo

Added to portage

2026-08-30

gitea - 1.27.3
Ebuild name:

www-apps/gitea-1.27.3

Description

A painless self-hosted Git service

Added to portage

2026-08-30

hypothesis - 6.166.0
Ebuild name:

dev-python/hypothesis-6.166.0

Description

A library for property based testing

Added to portage

2026-08-30

incus - 7.4
Ebuild name:

app-containers/incus-7.4

Description

Modern, secure and powerful system container and virtual machine manager

Added to portage

2026-08-30

joserfc - 1.7.5
Ebuild name:

dev-python/joserfc-1.7.5

Description

A Python library for JOSE RFCs JWS, JWE, JWK, JWA, JWT

Added to portage

2026-08-30

lego - 5.4.0
Ebuild name:

app-crypt/lego-5.4.0

Description

Let's Encrypt/ACME client (like certbot or acme.sh) and library written in Go

Added to portage

2026-08-30

linkify-it-py - 2.2.0
Ebuild name:

dev-python/linkify-it-py-2.2.0

Description

Links recognition library with full unicode support

Added to portage

2026-08-30

lmdb - 1.0.1-r3
Ebuild name:

dev-db/lmdb-1.0.1-r3

Description

An ultra-fast, ultra-compact key-value embedded data store

Added to portage

2026-08-30

luajit - 2.1.1787165859
Ebuild name:

dev-lang/luajit-2.1.1787165859

Description

Just-In-Time Compiler for the Lua programming language

Added to portage

2026-08-30

m-buffer - 0.16.1
Ebuild name:

app-emacs/m-buffer-0.16.1

Description

List Oriented Buffer Operations for Emacs

Added to portage

2026-08-30

micawber - 0.7.1
Ebuild name:

dev-python/micawber-0.7.1

Description

A small library for extracting rich content from urls

Added to portage

2026-08-30

patsy - 1.0.3
Ebuild name:

dev-python/patsy-1.0.3

Description

Python module to describe statistical models and design matrices

Added to portage

2026-08-30

pdm - 2.29.0
Ebuild name:

dev-python/pdm-2.29.0

Description

Python package and dependency manager supporting the latest PEP standards

Added to portage

2026-08-30

pkgcore - 0.12.41
Ebuild name:

sys-apps/pkgcore-0.12.41

Description

a framework for package management

Added to portage

2026-08-30

poetry - 2.4.2
Ebuild name:

dev-python/poetry-2.4.2

Description

A frontend for poetry - a python dependency management and packaging tool

Added to portage

2026-08-30

pylint - 4.0.8
Ebuild name:

dev-python/pylint-4.0.8

Description

Python code static checker

Added to portage

2026-08-30

pyzotero - 1.15.0
Ebuild name:

dev-python/pyzotero-1.15.0

Description

A Python client for the Zotero API

Added to portage

2026-08-30

quart - 0.23.1
Ebuild name:

dev-python/quart-0.23.1

Description

A Python ASGI web microframework with the same API as Flask

Added to portage

2026-08-30

quart-trio - 0.12.0-r1
Ebuild name:

dev-python/quart-trio-0.12.0-r1

Description

A Quart extension to provide trio support

Added to portage

2026-08-30

rust-parallel - 1.24.0
Ebuild name:

sys-process/rust-parallel-1.24.0

Description

Fast command line app to run commands in parallel

Added to portage

2026-08-30

skk-jisyo - 202605
Ebuild name:

app-i18n/skk-jisyo-202605

Description

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

Added to portage

2026-08-30

tuned - 2.28.0
Ebuild name:

sys-apps/tuned-2.28.0

Description

Daemon for monitoring and adaptive tuning of system devices

Added to portage

2026-08-30

websocket-client - 1.9.1
Ebuild name:

dev-python/websocket-client-1.9.1

Description

WebSocket client for python with hybi13 support

Added to portage

2026-08-30

zeroconf - 0.151.2
Ebuild name:

dev-python/zeroconf-0.151.2

Description

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

Added to portage

2026-08-30

zotero-bin - 10.0.1
Ebuild name:

app-text/zotero-bin-10.0.1

Description

Helps you collect, organize, cite, and share your research sources

Added to portage

2026-08-30

2026-08-29
AusweisApp - 2.5.5
Ebuild name:

sys-auth/AusweisApp-2.5.5

Description

Official authentication app for German ID cards and residence permits

Added to portage

2026-08-29

alectryon - 2.0.0-r1
Ebuild name:

sci-mathematics/alectryon-2.0.0-r1

Description

Toolkit for literate programming in Coq/Rocq

Added to portage

2026-08-29

awscli-bin - 2.36.34
Ebuild name:

app-admin/awscli-bin-2.36.34

Description

command line interface for Amazon Web Services

Added to portage

2026-08-29

bedrock-server - 1.26.45.1
Ebuild name:

games-server/bedrock-server-1.26.45.1

Description

The official bedrock (non-java) based server for the sandbox

Added to portage

2026-08-29

boto3 - 1.43.83
Ebuild name:

dev-python/boto3-1.43.83

Description

The AWS SDK for Python

Added to portage

2026-08-29

botocore - 1.43.83
Ebuild name:

dev-python/botocore-1.43.83

Description

Low-level, data-driven core of boto 3

Added to portage

2026-08-29

catalogus - 0.1.2
Ebuild name:

dev-python/catalogus-0.1.2

Description

Classes to provide name-to-object registry-like support

Added to portage

2026-08-29

clang - 23.1.0
Ebuild name:

dev-python/clang-23.1.0

Description

Python bindings for llvm-core/clang

Added to portage

2026-08-29

clang - 23.1.0
Ebuild name:

llvm-core/clang-23.1.0

Description

C language family frontend for LLVM

Added to portage

2026-08-29

clang-common - 23.1.0
Ebuild name:

llvm-core/clang-common-23.1.0

Description

Common files shared between multiple slots of clang

Added to portage

2026-08-29

compiler-rt - 23.1.0
Ebuild name:

llvm-runtimes/compiler-rt-23.1.0

Description

Compiler runtime library for clang (built-in part)

Added to portage

2026-08-29

compiler-rt-sanitizers - 23.1.0
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-23.1.0

Description

Compiler runtime libraries for clang (sanitizers & xray

Added to portage

2026-08-29

coverage - 7.16.0
Ebuild name:

dev-python/coverage-7.16.0

Description

Code coverage measurement for Python

Added to portage

2026-08-29

dep-logic - 0.7.2
Ebuild name:

dev-python/dep-logic-0.7.2

Description

Python dependency specifications supporting logical operations

Added to portage

2026-08-29

django-js-asset - 4.1.0
Ebuild name:

dev-python/django-js-asset-4.1.0

Description

Script tag with additional attributes for django.forms.Media

Added to portage

2026-08-29

dkjson - 2.11
Ebuild name:

dev-lua/dkjson-2.11

Description

David Kolf's JSON module for Lua

Added to portage

2026-08-29

dulwich - 1.2.14
Ebuild name:

dev-python/dulwich-1.2.14

Description

Pure-Python implementation of the Git file formats and protocols

Added to portage

2026-08-29

dxvk - 3.1
Ebuild name:

app-emulation/dxvk-3.1

Description

Vulkan-based implementation of D3D9, D3D10 and D3D11 for Linux / Wine

Added to portage

2026-08-29

ejabberd - 26.07
Ebuild name:

net-im/ejabberd-26.07

Description

Robust, scalable and extensible XMPP server

Added to portage

2026-08-29

faudio - 26.08
Ebuild name:

app-emulation/faudio-26.08

Description

Accuracy-focused XAudio reimplementation for open platforms

Added to portage

2026-08-29

flang - 23.1.0
Ebuild name:

llvm-core/flang-23.1.0

Description

LLVM's Fortran frontend

Added to portage

2026-08-29

flang-rt - 23.1.0
Ebuild name:

llvm-runtimes/flang-rt-23.1.0

Description

LLVM's Fortran runtime

Added to portage

2026-08-29

freeipmi - 1.6.19
Ebuild name:

sys-libs/freeipmi-1.6.19

Description

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

Added to portage

2026-08-29

freerdp - 3.31.0-r1
Ebuild name:

net-misc/freerdp-3.31.0-r1

Description

Free implementation of the Remote Desktop Protocol

Added to portage

2026-08-29

gallery-dl - 1.32.10
Ebuild name:

net-misc/gallery-dl-1.32.10

Description

Download image galleries and collections from several image hosting sit

Added to portage

2026-08-29

gawk - 5.4.1a
Ebuild name:

sys-apps/gawk-5.4.1a

Description

GNU awk pattern-matching language

Added to portage

2026-08-29

github-cli - 2.98.0
Ebuild name:

dev-util/github-cli-2.98.0

Description

GitHub CLI

Added to portage

2026-08-29

gitpython - 3.1.61
Ebuild name:

dev-python/gitpython-3.1.61

Description

Library used to interact with Git repositories

Added to portage

2026-08-29

golangci-lint - 2.13.2
Ebuild name:

dev-go/golangci-lint-2.13.2

Description

Fast linters runner for Go

Added to portage

2026-08-29

grpcio - 1.83.1
Ebuild name:

dev-python/grpcio-1.83.1

Description

HTTP/2-based RPC framework

Added to portage

2026-08-29

grpcio-status - 1.83.1
Ebuild name:

dev-python/grpcio-status-1.83.1

Description

Reference package for GRPC Python status proto mapping

Added to portage

2026-08-29

helm - 4.2.4
Ebuild name:

app-admin/helm-4.2.4

Description

Kubernetes Package Manager

Added to portage

2026-08-29

importlib-metadata - 9.0.1
Ebuild name:

dev-python/importlib-metadata-9.0.1

Description

Read metadata from Python packages

Added to portage

2026-08-29

intel-graphics-system-controller - 1.3.1
Ebuild name:

dev-util/intel-graphics-system-controller-1.3.1

Description

Intel graphics system controller firmware update li

Added to portage

2026-08-29

intel-metrics-discovery - 1.16.193
Ebuild name:

dev-libs/intel-metrics-discovery-1.16.193

Description

A user mode library that provides access to GPU performan

Added to portage

2026-08-29

intel-metrics-library - 1.0.238
Ebuild name:

dev-libs/intel-metrics-library-1.0.238

Description

User mode driver helper library that provides access to GPU

Added to portage

2026-08-29

ipython - 9.17.0
Ebuild name:

dev-python/ipython-9.17.0

Description

Advanced interactive shell for Python

Added to portage

2026-08-29

jiffy - 1.1.5
Ebuild name:

dev-erlang/jiffy-1.1.5

Description

JSON NIFs for Erlang

Added to portage

2026-08-29

jupyter-client - 8.10.0
Ebuild name:

dev-python/jupyter-client-8.10.0

Description

Jupyter protocol implementation and client libraries

Added to portage

2026-08-29

keystoneauth1 - 5.17.0
Ebuild name:

dev-python/keystoneauth1-5.17.0

Description

This package contains tools for authenticating to an OpenStack-base

Added to portage

2026-08-29

kiwisolver - 1.5.1
Ebuild name:

dev-python/kiwisolver-1.5.1

Description

An efficient C++ implementation of the Cassowary constraint solving alg

Added to portage

2026-08-29

kube-apiserver - 1.37.0
Ebuild name:

sys-cluster/kube-apiserver-1.37.0

Description

Kubernetes API server

Added to portage

2026-08-29

kube-controller-manager - 1.37.0
Ebuild name:

sys-cluster/kube-controller-manager-1.37.0

Description

Kubernetes Controller Manager

Added to portage

2026-08-29

kube-proxy - 1.37.0
Ebuild name:

sys-cluster/kube-proxy-1.37.0

Description

Kubernetes Proxy service

Added to portage

2026-08-29

kube-scheduler - 1.37.0
Ebuild name:

sys-cluster/kube-scheduler-1.37.0

Description

Kubernetes Scheduler

Added to portage

2026-08-29

kubeadm - 1.37.0
Ebuild name:

sys-cluster/kubeadm-1.37.0

Description

CLI to Easily bootstrap a secure Kubernetes cluster

Added to portage

2026-08-29

kubectl - 1.37.0
Ebuild name:

sys-cluster/kubectl-1.37.0

Description

CLI to run commands against Kubernetes clusters

Added to portage

2026-08-29

kubelet - 1.37.0
Ebuild name:

sys-cluster/kubelet-1.37.0

Description

Kubernetes Node Agent

Added to portage

2026-08-29

level-zero - 1.33.1
Ebuild name:

dev-libs/level-zero-1.33.1

Description

oneAPI Level Zero headers, loader and validation layer

Added to portage

2026-08-29

libclc - 23.1.0
Ebuild name:

llvm-runtimes/libclc-23.1.0

Description

OpenCL C library

Added to portage

2026-08-29

libcxx - 23.1.0
Ebuild name:

llvm-runtimes/libcxx-23.1.0

Description

New implementation of the C++ standard library, targeting C++11

Added to portage

2026-08-29

libcxxabi - 23.1.0
Ebuild name:

llvm-runtimes/libcxxabi-23.1.0

Description

Low level support for a standard C++ library

Added to portage

2026-08-29

libgcc - 23.1.0
Ebuild name:

llvm-runtimes/libgcc-23.1.0

Description

Compiler runtime library for clang, compatible with libgcc_s

Added to portage

2026-08-29

libunwind - 23.1.0
Ebuild name:

llvm-runtimes/libunwind-23.1.0

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-08-29

libupnp - 22.0.6
Ebuild name:

net-libs/libupnp-22.0.6

Description

An Portable Open Source UPnP Development Kit

Added to portage

2026-08-29

lit - 23.1.0
Ebuild name:

dev-python/lit-23.1.0

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-08-29

lld - 23.1.0
Ebuild name:

llvm-core/lld-23.1.0

Description

The LLVM linker (link editor)

Added to portage

2026-08-29

lldb - 23.1.0
Ebuild name:

llvm-core/lldb-23.1.0

Description

The LLVM debugger

Added to portage

2026-08-29

llvm - 23.1.0
Ebuild name:

dev-ml/llvm-23.1.0

Description

OCaml bindings for LLVM

Added to portage

2026-08-29

llvm - 23.1.0
Ebuild name:

llvm-core/llvm-23.1.0

Description

Low Level Virtual Machine

Added to portage

2026-08-29

llvm-common - 23.1.0
Ebuild name:

llvm-core/llvm-common-23.1.0

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-08-29

macrostep - 0.9.5
Ebuild name:

app-emacs/macrostep-0.9.5

Description

Interactive macro-expander for Emacs

Added to portage

2026-08-29

macrostep-geiser - 0.2.0_p20210717
Ebuild name:

app-emacs/macrostep-geiser-0.2.0_p20210717

Description

Emacs macrostep back-end powered by geiser

Added to portage

2026-08-29

magit - 4.5.0-r1
Ebuild name:

app-emacs/magit-4.5.0-r1

Description

A Git porcelain inside Emacs

Added to portage

2026-08-29

magit - 4.6.0
Ebuild name:

app-emacs/magit-4.6.0

Description

A Git porcelain inside Emacs

Added to portage

2026-08-29

magit - 4.7.0
Ebuild name:

app-emacs/magit-4.7.0

Description

A Git porcelain inside Emacs

Added to portage

2026-08-29

mlir - 23.1.0
Ebuild name:

llvm-core/mlir-23.1.0

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-08-29

mxml - 4.0.5
Ebuild name:

dev-libs/mxml-4.0.5

Description

A small XML parsing library that you can use to read XML data files or strings

Added to portage

2026-08-29

mysqltuner - 2.9.2
Ebuild name:

dev-db/mysqltuner-2.9.2

Description

Makes recommendations for increased performance and stability for MySQL

Added to portage

2026-08-29

netpbm - 11.2.22
Ebuild name:

media-libs/netpbm-11.2.22

Description

A set of utilities for converting to/from the netpbm (and related) format

Added to portage

2026-08-29

nss - 3.128
Ebuild name:

dev-libs/nss-3.128

Description

Mozilla's Network Security Services library that implements PKI support

Added to portage

2026-08-29

nvidia-drivers - 595.44.15
Ebuild name:

x11-drivers/nvidia-drivers-595.44.15

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-08-29

ollama - 0.33.2
Ebuild name:

sci-ml/ollama-0.33.2

Description

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

Added to portage

2026-08-29

openmp - 23.1.0
Ebuild name:

llvm-runtimes/openmp-23.1.0

Description

OpenMP runtime libraries for LLVM/clang compiler

Added to portage

2026-08-29

openmp-amdgcn-amd-amdhsa - 23.1.0
Ebuild name:

llvm-runtimes/openmp-amdgcn-amd-amdhsa-23.1.0

Description

OpenMP target library for amdgcn devices

Added to portage

2026-08-29

openmp-nvptx64-nvidia-cuda - 23.1.0
Ebuild name:

llvm-runtimes/openmp-nvptx64-nvidia-cuda-23.1.0

Description

OpenMP target library for nvptx64 devices

Added to portage

2026-08-29

openmp-spirv64-intel - 23.1.0
Ebuild name:

llvm-runtimes/openmp-spirv64-intel-23.1.0

Description

OpenMP target library for spirv64 Intel devices

Added to portage

2026-08-29

openrct2 - 0.5.4
Ebuild name:

games-simulation/openrct2-0.5.4

Description

An open source re-implementation of Chris Sawyer's RollerCoaster Ty

Added to portage

2026-08-29

pandoc-bin - 3.11
Ebuild name:

app-text/pandoc-bin-3.11

Description

Conversion between markup formats (binary package)

Added to portage

2026-08-29

phonenumbers - 9.0.38
Ebuild name:

dev-python/phonenumbers-9.0.38

Description

Python port of Google's libphonenumber

Added to portage

2026-08-29

pixi - 0.78.0
Ebuild name:

dev-util/pixi-0.78.0

Description

A package management and workflow tool

Added to portage

2026-08-29

polly - 23.1.0
Ebuild name:

llvm-core/polly-23.1.0

Description

Polyhedral optimizations for LLVM

Added to portage

2026-08-29

powa-archivist - 5.3.0
Ebuild name:

dev-db/powa-archivist-5.3.0

Description

PostgreSQL Workload Analyzer Archivist

Added to portage

2026-08-29

pwsh - 7.6.3-r1
Ebuild name:

app-shells/pwsh-7.6.3-r1

Description

Cross-platform automation and configuration tool

Added to portage

2026-08-29

pwsh - 7.6.5
Ebuild name:

app-shells/pwsh-7.6.5

Description

Cross-platform automation and configuration tool

Added to portage

2026-08-29

pwsh-bin - 7.6.3-r1
Ebuild name:

app-shells/pwsh-bin-7.6.3-r1

Description

Cross-platform automation and configuration tool (binary package)

Added to portage

2026-08-29

pwsh-bin - 7.6.5
Ebuild name:

app-shells/pwsh-bin-7.6.5

Description

Cross-platform automation and configuration tool (binary package)

Added to portage

2026-08-29

pydantic - 2.13.5
Ebuild name:

dev-python/pydantic-2.13.5

Description

Data parsing and validation using Python type hints

Added to portage

2026-08-29

pyproject-fmt - 2.28.2
Ebuild name:

dev-python/pyproject-fmt-2.28.2

Description

Format your pyproject.toml file

Added to portage

2026-08-29

python-discovery - 1.6.0
Ebuild name:

dev-python/python-discovery-1.6.0

Description

Python interpreter discovery

Added to portage

2026-08-29

python-keystoneclient - 6.0.0
Ebuild name:

dev-python/python-keystoneclient-6.0.0

Description

Client Library for OpenStack Identity

Added to portage

2026-08-29

python-manilaclient - 6.3.0
Ebuild name:

dev-python/python-manilaclient-6.3.0

Description

Python bindings to the OpenStack Manila API

Added to portage

2026-08-29

python-novaclient - 18.13.1
Ebuild name:

dev-python/python-novaclient-18.13.1

Description

A client for the OpenStack Nova API

Added to portage

2026-08-29

python-swiftclient - 4.11.0
Ebuild name:

dev-python/python-swiftclient-4.11.0

Description

Python bindings to the OpenStack Object Storage API

Added to portage

2026-08-29

raspberrypi-firmware - 1.20260824
Ebuild name:

sys-boot/raspberrypi-firmware-1.20260824

Description

Raspberry Pi (all versions) bootloader and GPU firmware

Added to portage

2026-08-29

raspberrypi-image - 6.18.46_p20260824
Ebuild name:

sys-kernel/raspberrypi-image-6.18.46_p20260824

Description

Raspberry Pi (all versions) kernel and modules

Added to portage

2026-08-29

raspberrypi-sources - 6.18.46_p20260824
Ebuild name:

sys-kernel/raspberrypi-sources-6.18.46_p20260824

Description

Raspberry Pi kernel sources

Added to portage

2026-08-29

readme-renderer - 46.0
Ebuild name:

dev-python/readme-renderer-46.0

Description

A library for rendering 'readme' descriptions for Warehouse

Added to portage

2026-08-29

requests-futures - 1.1.0
Ebuild name:

dev-python/requests-futures-1.1.0

Description

Asynchronous Python HTTP for Humans

Added to portage

2026-08-29

rpi-eeprom - 28.30
Ebuild name:

dev-embedded/rpi-eeprom-28.30

Description

Updater for Raspberry Pi 4/5 bootloader and the VL805 USB controller

Added to portage

2026-08-29

rtl-sdr - 2.0.3
Ebuild name:

net-wireless/rtl-sdr-2.0.3

Description

Turns your Realtek RTL2832 based DVB dongle into a SDR receiver

Added to portage

2026-08-29

rtl-sdr-blog - 1.4.0
Ebuild name:

net-wireless/rtl-sdr-blog-1.4.0

Description

Modified Osmocom drivers with enhancements for RTL-SDR Blog V3 and

Added to portage

2026-08-29

ruff - 0.16.5
Ebuild name:

dev-util/ruff-0.16.5

Description

An extremely fast Python linter, written in Rust

Added to portage

2026-08-29

seamonkey - 2.53.24
Ebuild name:

www-client/seamonkey-2.53.24

Description

Seamonkey Web Browser

Added to portage

2026-08-29

shader-slang - 2026.16.1
Ebuild name:

dev-util/shader-slang-2026.16.1

Description

Making it easier to work with shaders

Added to portage

2026-08-29

spirv-llvm-translator - 23.1.0
Ebuild name:

dev-util/spirv-llvm-translator-23.1.0

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-08-29

stress-ng - 0.22.00
Ebuild name:

app-benchmarks/stress-ng-0.22.00

Description

Stress test for a computer system with various selectable ways

Added to portage

2026-08-29

testscenarios - 0.7.0
Ebuild name:

dev-python/testscenarios-0.7.0

Description

A pyunit extension for dependency injection

Added to portage

2026-08-29

tox - 4.61.1
Ebuild name:

dev-python/tox-4.61.1

Description

virtualenv-based automation of test activities

Added to portage

2026-08-29

typer - 0.27.2
Ebuild name:

dev-python/typer-0.27.2

Description

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

Added to portage

2026-08-29

unifi - 10.6.101
Ebuild name:

net-wireless/unifi-10.6.101

Description

A Management Controller for Ubiquiti Networks UniFi APs

Added to portage

2026-08-29

virtualenv - 21.7.7
Ebuild name:

dev-python/virtualenv-21.7.7

Description

Virtual Python Environment builder

Added to portage

2026-08-29

wasm3 - 0.9.0
Ebuild name:

dev-util/wasm3-0.9.0

Description

A fast WebAssembly interpreter and the most universal WASM runtime

Added to portage

2026-08-29

wcwidth - 0.8.3
Ebuild name:

dev-python/wcwidth-0.8.3

Description

Measures number of Terminal column cells of wide-character codes

Added to portage

2026-08-29

xmpp - 1.13.4
Ebuild name:

dev-erlang/xmpp-1.13.4

Description

XMPP parsing and serialization library on top of Fast XML

Added to portage

2026-08-29

xterm - 411
Ebuild name:

x11-terms/xterm-411

Description

Terminal Emulator for X Windows

Added to portage

2026-08-29

zellij - 0.45.1
Ebuild name:

app-misc/zellij-0.45.1

Description

A terminal workspace with batteries included

Added to portage

2026-08-29

zeroconf - 0.151.1
Ebuild name:

dev-python/zeroconf-0.151.1

Description

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

Added to portage

2026-08-29

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