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:

85160

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-15
corrosion - 0.6.1
Ebuild name:

dev-build/corrosion-0.6.1

Description

Marrying Rust and CMake - Easy Rust and C/C++ Integration

Added to portage

2026-05-15

dist-kernel - 5.10.255_p3
Ebuild name:

virtual/dist-kernel-5.10.255_p3

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dist-kernel - 5.15.206_p3
Ebuild name:

virtual/dist-kernel-5.15.206_p3

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dist-kernel - 6.1.172_p3
Ebuild name:

virtual/dist-kernel-6.1.172_p3

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dist-kernel - 6.12.88
Ebuild name:

virtual/dist-kernel-6.12.88

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dist-kernel - 6.18.30
Ebuild name:

virtual/dist-kernel-6.18.30

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dist-kernel - 6.6.138_p3
Ebuild name:

virtual/dist-kernel-6.6.138_p3

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

dist-kernel - 7.0.7
Ebuild name:

virtual/dist-kernel-7.0.7

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-15

erlang - 26.2.5.20
Ebuild name:

dev-lang/erlang-26.2.5.20

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2026-05-15

erlang - 27.3.4.11
Ebuild name:

dev-lang/erlang-27.3.4.11

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2026-05-15

erlang - 28.5
Ebuild name:

dev-lang/erlang-28.5

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2026-05-15

erlang - 29.0
Ebuild name:

dev-lang/erlang-29.0

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2026-05-15

framework_tool - 0.6.3
Ebuild name:

app-laptop/framework_tool-0.6.3

Description

Tool to control Framework Computer systems

Added to portage

2026-05-15

gentoo-kernel - 5.10.255_p3
Ebuild name:

sys-kernel/gentoo-kernel-5.10.255_p3

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel - 5.15.206_p3
Ebuild name:

sys-kernel/gentoo-kernel-5.15.206_p3

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel - 6.1.172_p3
Ebuild name:

sys-kernel/gentoo-kernel-6.1.172_p3

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel - 6.12.88
Ebuild name:

sys-kernel/gentoo-kernel-6.12.88

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel - 6.18.30
Ebuild name:

sys-kernel/gentoo-kernel-6.18.30

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel - 6.6.138_p3
Ebuild name:

sys-kernel/gentoo-kernel-6.6.138_p3

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel - 7.0.7
Ebuild name:

sys-kernel/gentoo-kernel-7.0.7

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 5.10.255_p3
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.255_p3

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 5.15.206_p3
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.206_p3

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 6.1.172_p3
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.172_p3

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 6.12.88
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.88

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 6.18.30
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.30

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 6.6.138_p3
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.138_p3

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

gentoo-kernel-bin - 7.0.7
Ebuild name:

sys-kernel/gentoo-kernel-bin-7.0.7

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-15

lldpd - 1.0.22
Ebuild name:

net-misc/lldpd-1.0.22

Description

Implementation of IEEE 802.1ab (LLDP)

Added to portage

2026-05-15

prek - 0.4.0
Ebuild name:

dev-util/prek-0.4.0

Description

Better `pre-commit`, re-engineered in Rust

Added to portage

2026-05-15

pyside - 6.11.1
Ebuild name:

dev-python/pyside-6.11.1

Description

Python bindings for the Qt framework

Added to portage

2026-05-15

python-distutils-extra - 3.3
Ebuild name:

dev-python/python-distutils-extra-3.3

Description

Gettext support, themed icons and scrollkeeper-based document

Added to portage

2026-05-15

ruff - 0.15.13
Ebuild name:

dev-util/ruff-0.15.13

Description

An extremely fast Python linter, written in Rust

Added to portage

2026-05-15

synapse - 1.152.1
Ebuild name:

net-im/synapse-1.152.1

Description

Reference implementation of Matrix homeserver

Added to portage

2026-05-15

telegram-desktop - 6.8.2
Ebuild name:

net-im/telegram-desktop-6.8.2

Description

Official desktop client for Telegram

Added to portage

2026-05-15

telegram-desktop-bin - 6.8.2
Ebuild name:

net-im/telegram-desktop-bin-6.8.2

Description

Official desktop client for Telegram (binary package)

Added to portage

2026-05-15

tuned - 2.27.0-r2
Ebuild name:

sys-apps/tuned-2.27.0-r2

Description

Daemon for monitoring and adaptive tuning of system devices

Added to portage

2026-05-15

vanilla-kernel - 6.12.88
Ebuild name:

sys-kernel/vanilla-kernel-6.12.88

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-15

vanilla-kernel - 6.18.30
Ebuild name:

sys-kernel/vanilla-kernel-6.18.30

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-15

vanilla-kernel - 7.0.7
Ebuild name:

sys-kernel/vanilla-kernel-7.0.7

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-15

2026-05-14
awl - 0.65
Ebuild name:

dev-php/awl-0.65

Description

Andrew McMillan's Web Libraries

Added to portage

2026-05-14

awscli - 1.45.7
Ebuild name:

app-admin/awscli-1.45.7

Description

Universal Command Line Environment for AWS

Added to portage

2026-05-14

ballerburg - 1.2.3
Ebuild name:

games-misc/ballerburg-1.2.3

Description

Linux port of the classical Atari ST game Ballerburg

Added to portage

2026-05-14

bedrock-server - 1.26.20.5
Ebuild name:

games-server/bedrock-server-1.26.20.5

Description

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

Added to portage

2026-05-14

bnd - 7.2.3
Ebuild name:

dev-java/bnd-7.2.3

Description

bndlib A Swiss Army Knife for OSGi

Added to portage

2026-05-14

bnd-annotation - 7.2.3
Ebuild name:

dev-java/bnd-annotation-7.2.3

Description

bnd Annotations Library

Added to portage

2026-05-14

bnd-ant - 7.2.3
Ebuild name:

dev-java/bnd-ant-7.2.3

Description

Bnd Ant Tasks

Added to portage

2026-05-14

bnd-util - 7.2.3
Ebuild name:

dev-java/bnd-util-7.2.3

Description

AQute Bnd Utilities

Added to portage

2026-05-14

bndlib - 7.2.3
Ebuild name:

dev-java/bndlib-7.2.3

Description

bndlib A Swiss Army Knife for OSGi

Added to portage

2026-05-14

boto3 - 1.43.7
Ebuild name:

dev-python/boto3-1.43.7

Description

The AWS SDK for Python

Added to portage

2026-05-14

botocore - 1.43.7
Ebuild name:

dev-python/botocore-1.43.7

Description

Low-level, data-driven core of boto 3

Added to portage

2026-05-14

brial - 1.2.15
Ebuild name:

sci-libs/brial-1.2.15

Description

A C++ library for polynomials over boolean rings

Added to portage

2026-05-14

busybox - 1.38.0
Ebuild name:

sys-apps/busybox-1.38.0

Description

Utilities for rescue and embedded systems

Added to portage

2026-05-14

claude-code - 2.1.140
Ebuild name:

dev-util/claude-code-2.1.140

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-05-14

cliff - 4.14.0
Ebuild name:

dev-python/cliff-4.14.0

Description

Command Line Interface Formulation Framework

Added to portage

2026-05-14

cloudflare-warp - 2026.4.1350.0
Ebuild name:

net-vpn/cloudflare-warp-2026.4.1350.0

Description

Cloudflare Warp Client

Added to portage

2026-05-14

cpuid - 20260503
Ebuild name:

sys-apps/cpuid-20260503

Description

Linux tool to dump x86 CPUID information about the CPUs

Added to portage

2026-05-14

dist-kernel - 5.10.255_p2
Ebuild name:

virtual/dist-kernel-5.10.255_p2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-14

dist-kernel - 5.15.206_p2
Ebuild name:

virtual/dist-kernel-5.15.206_p2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-14

dist-kernel - 6.1.172_p2
Ebuild name:

virtual/dist-kernel-6.1.172_p2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-14

dist-kernel - 6.12.87_p2
Ebuild name:

virtual/dist-kernel-6.12.87_p2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-14

dist-kernel - 6.18.29_p2
Ebuild name:

virtual/dist-kernel-6.18.29_p2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-14

dist-kernel - 6.6.138_p2
Ebuild name:

virtual/dist-kernel-6.6.138_p2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-14

dist-kernel - 7.0.6_p2
Ebuild name:

virtual/dist-kernel-7.0.6_p2

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-14

dkjson - 2.10
Ebuild name:

dev-lua/dkjson-2.10

Description

David Kolf's JSON module for Lua

Added to portage

2026-05-14

e3-testsuite - 26.0-r3
Ebuild name:

dev-ada/e3-testsuite-26.0-r3

Description

Generic testsuite framework in Python

Added to portage

2026-05-14

exim - 4.99.3
Ebuild name:

mail-mta/exim-4.99.3

Description

A highly configurable, drop-in replacement for sendmail

Added to portage

2026-05-14

fastfetch - 2.63.1
Ebuild name:

app-misc/fastfetch-2.63.1

Description

Fast neofetch-like system information tool

Added to portage

2026-05-14

faudio - 26.05
Ebuild name:

app-emulation/faudio-26.05

Description

Accuracy-focused XAudio reimplementation for open platforms

Added to portage

2026-05-14

gentoo-kernel - 5.10.255_p2
Ebuild name:

sys-kernel/gentoo-kernel-5.10.255_p2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel - 5.15.206_p2
Ebuild name:

sys-kernel/gentoo-kernel-5.15.206_p2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel - 6.1.172_p2
Ebuild name:

sys-kernel/gentoo-kernel-6.1.172_p2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel - 6.12.87_p2
Ebuild name:

sys-kernel/gentoo-kernel-6.12.87_p2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel - 6.18.29_p2
Ebuild name:

sys-kernel/gentoo-kernel-6.18.29_p2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel - 6.6.138_p2
Ebuild name:

sys-kernel/gentoo-kernel-6.6.138_p2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel - 7.0.6_p2
Ebuild name:

sys-kernel/gentoo-kernel-7.0.6_p2

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel-bin - 5.10.255_p2
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.255_p2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel-bin - 5.15.206_p2
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.206_p2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel-bin - 6.1.172_p2
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.172_p2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel-bin - 6.12.87_p2
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.87_p2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel-bin - 6.18.29_p2
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.29_p2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel-bin - 6.6.138_p2
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.138_p2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-14

gentoo-kernel-bin - 7.0.6_p2
Ebuild name:

sys-kernel/gentoo-kernel-bin-7.0.6_p2

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-14

gentoo-sources - 5.10.255-r1
Ebuild name:

sys-kernel/gentoo-sources-5.10.255-r1

Description

Full sources including the Gentoo patchset for the . kernel t

Added to portage

2026-05-14

gentoo-sources - 5.15.206-r2
Ebuild name:

sys-kernel/gentoo-sources-5.15.206-r2

Description

Full sources including the Gentoo patchset for the . kernel t

Added to portage

2026-05-14

gentoo-sources - 6.1.172-r2
Ebuild name:

sys-kernel/gentoo-sources-6.1.172-r2

Description

Full sources including the Gentoo patchset for the . kernel tr

Added to portage

2026-05-14

gentoo-sources - 6.12.87-r1
Ebuild name:

sys-kernel/gentoo-sources-6.12.87-r1

Description

Full sources including the Gentoo patchset for the . kernel tr

Added to portage

2026-05-14

gentoo-sources - 6.12.88
Ebuild name:

sys-kernel/gentoo-sources-6.12.88

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-05-14

gentoo-sources - 6.18.29-r1
Ebuild name:

sys-kernel/gentoo-sources-6.18.29-r1

Description

Full sources including the Gentoo patchset for the . kernel tr

Added to portage

2026-05-14

gentoo-sources - 6.18.30
Ebuild name:

sys-kernel/gentoo-sources-6.18.30

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-05-14

gentoo-sources - 6.6.138-r1
Ebuild name:

sys-kernel/gentoo-sources-6.6.138-r1

Description

Full sources including the Gentoo patchset for the . kernel tr

Added to portage

2026-05-14

gentoo-sources - 7.0.6-r1
Ebuild name:

sys-kernel/gentoo-sources-7.0.6-r1

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-05-14

gentoo-sources - 7.0.7
Ebuild name:

sys-kernel/gentoo-sources-7.0.7

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-05-14

gnome-shell-extension-weather-oclock - 50.3
Ebuild name:

gnome-extra/gnome-shell-extension-weather-oclock-50.3

Description

Display the current weather inside the pill n

Added to portage

2026-05-14

gnome-weather - 50.0
Ebuild name:

gnome-extra/gnome-weather-50.0

Description

A weather application for GNOME

Added to portage

2026-05-14

gnupg - 2.5.20
Ebuild name:

app-crypt/gnupg-2.5.20

Description

The GNU Privacy Guard, a GPL OpenPGP implementation

Added to portage

2026-05-14

hypothesis - 6.152.7
Ebuild name:

dev-python/hypothesis-6.152.7

Description

A library for property based testing

Added to portage

2026-05-14

intel-compute-runtime - 24.35.30872.32-r3
Ebuild name:

dev-libs/intel-compute-runtime-24.35.30872.32-r3

Description

Intel Graphics Compute Runtime for oneAPI Level Ze

Added to portage

2026-05-14

intel-compute-runtime - 24.35.30872.36-r1
Ebuild name:

dev-libs/intel-compute-runtime-24.35.30872.36-r1

Description

Intel Graphics Compute Runtime for oneAPI Level Ze

Added to portage

2026-05-14

intel-compute-runtime - 26.18.38308.1
Ebuild name:

dev-libs/intel-compute-runtime-26.18.38308.1

Description

Intel Graphics Compute Runtime for oneAPI Level Zero a

Added to portage

2026-05-14

intel-graphics-compiler - 2.35.2
Ebuild name:

dev-util/intel-graphics-compiler-2.35.2

Description

LLVM-based OpenCL compiler for OpenCL targetting Intel Gen

Added to portage

2026-05-14

intel-graphics-compiler-bin - 1.0.17791.9
Ebuild name:

dev-util/intel-graphics-compiler-bin-1.0.17791.9

Description

LLVM-based OpenCL compiler for OpenCL targetting I

Added to portage

2026-05-14

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

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

Description

Intel graphics system controller firmware update li

Added to portage

2026-05-14

intel-microcode - 20260512_p20260513
Ebuild name:

sys-firmware/intel-microcode-20260512_p20260513

Description

Intel IA32/IA64 microcode update data

Added to portage

2026-05-14

jdbc-postgresql - 42.7.11
Ebuild name:

dev-java/jdbc-postgresql-42.7.11

Description

Java JDBC 4.2 (JRE 8+) driver for PostgreSQL database

Added to portage

2026-05-14

keystoneauth1 - 5.14.0
Ebuild name:

dev-python/keystoneauth1-5.14.0

Description

This package contains tools for authenticating to an OpenStack-base

Added to portage

2026-05-14

kicad - 10.0.0-r1
Ebuild name:

sci-electronics/kicad-10.0.0-r1

Description

Electronic Schematic and PCB design tools

Added to portage

2026-05-14

kicad - 10.0.2
Ebuild name:

sci-electronics/kicad-10.0.2

Description

Electronic Schematic and PCB design tools

Added to portage

2026-05-14

kicad - 9.0.9
Ebuild name:

sci-electronics/kicad-9.0.9

Description

Electronic Schematic and PCB design tools

Added to portage

2026-05-14

kicad-footprints - 10.0.2
Ebuild name:

sci-electronics/kicad-footprints-10.0.2

Description

Electronic Schematic and PCB design tools footprint librari

Added to portage

2026-05-14

kicad-footprints - 9.0.9
Ebuild name:

sci-electronics/kicad-footprints-9.0.9

Description

Electronic Schematic and PCB design tools footprint librarie

Added to portage

2026-05-14

kicad-meta - 10.0.2
Ebuild name:

sci-electronics/kicad-meta-10.0.2

Description

Electronic Schematic and PCB design tools (meta package)

Added to portage

2026-05-14

kicad-meta - 9.0.9
Ebuild name:

sci-electronics/kicad-meta-9.0.9

Description

Electronic Schematic and PCB design tools (meta package)

Added to portage

2026-05-14

kicad-packages3d - 10.0.2
Ebuild name:

sci-electronics/kicad-packages3d-10.0.2

Description

Electronic Schematic and PCB design tools 3D package librar

Added to portage

2026-05-14

kicad-packages3d - 9.0.9
Ebuild name:

sci-electronics/kicad-packages3d-9.0.9

Description

Electronic Schematic and PCB design tools 3D package librari

Added to portage

2026-05-14

kicad-symbols - 10.0.2
Ebuild name:

sci-electronics/kicad-symbols-10.0.2

Description

Electronic Schematic and PCB design tools symbol libraries

Added to portage

2026-05-14

kicad-symbols - 9.0.9
Ebuild name:

sci-electronics/kicad-symbols-9.0.9

Description

Electronic Schematic and PCB design tools symbol libraries

Added to portage

2026-05-14

kicad-templates - 10.0.2
Ebuild name:

sci-electronics/kicad-templates-10.0.2

Description

Electronic Schematic and PCB design tools project templates

Added to portage

2026-05-14

kicad-templates - 9.0.9
Ebuild name:

sci-electronics/kicad-templates-9.0.9

Description

Electronic Schematic and PCB design tools project templates

Added to portage

2026-05-14

lanes - 4.0.0
Ebuild name:

dev-lua/lanes-4.0.0

Description

Lightweight, native, lazy evaluating multithreading library

Added to portage

2026-05-14

langkit - 26.0.0-r1
Ebuild name:

dev-ada/langkit-26.0.0-r1

Description

A Python framework to generate language parsers

Added to portage

2026-05-14

lego - 5.0.3
Ebuild name:

app-crypt/lego-5.0.3

Description

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

Added to portage

2026-05-14

level-zero - 1.28.6
Ebuild name:

dev-libs/level-zero-1.28.6

Description

oneAPI Level Zero headers, loader and validation layer

Added to portage

2026-05-14

libburn - 1.5.8-r2
Ebuild name:

dev-libs/libburn-1.5.8-r2

Description

Open-source library for reading, mastering and writing optical discs

Added to portage

2026-05-14

libg - 7.2.3
Ebuild name:

dev-java/libg-7.2.3

Description

A library to be statically linked. Contains many small utilities

Added to portage

2026-05-14

libisoburn - 1.5.8-r2
Ebuild name:

dev-libs/libisoburn-1.5.8-r2

Description

Creation/expansion of ISO-9660 filesystems on CD/DVD media supported b

Added to portage

2026-05-14

libisofs - 1.5.8_p1-r1
Ebuild name:

dev-libs/libisofs-1.5.8_p1-r1

Description

Open-source library for reading, mastering and writing optical discs

Added to portage

2026-05-14

linode-metadata - 0.3.5
Ebuild name:

dev-python/linode-metadata-0.3.5

Description

Python bindings for the Linode Metadata Service

Added to portage

2026-05-14

matplotlib - 3.11.0_rc2
Ebuild name:

dev-python/matplotlib-3.11.0_rc2

Description

Pure python plotting library with matlab like syntax

Added to portage

2026-05-14

mattermost-desktop-bin - 5.13.6
Ebuild name:

net-im/mattermost-desktop-bin-5.13.6

Description

Mattermost Desktop application

Added to portage

2026-05-14

mdit-py-plugins - 0.6.1
Ebuild name:

dev-python/mdit-py-plugins-0.6.1

Description

Collection of plugins for markdown-it-py

Added to portage

2026-05-14

metee - 6.2.3
Ebuild name:

dev-libs/metee-6.2.3

Description

Cross-platform access library for Intel CSME HECI interface

Added to portage

2026-05-14

mgorny-dev-scripts - 70
Ebuild name:

app-portage/mgorny-dev-scripts-70

Description

Handy scripts for ebuild development and more

Added to portage

2026-05-14

mgorny-dev-scripts - 71
Ebuild name:

app-portage/mgorny-dev-scripts-71

Description

Handy scripts for ebuild development and more

Added to portage

2026-05-14

mongodb_exporter - 0.51.0
Ebuild name:

app-metrics/mongodb_exporter-0.51.0

Description

Prometheus exporter for MongoDB

Added to portage

2026-05-14

myst-parser - 5.1.0
Ebuild name:

dev-python/myst-parser-5.1.0

Description

Extended commonmark compliant parser, with bridges to Sphinx

Added to portage

2026-05-14

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-14

nerd-icons - 0.1.0
Ebuild name:

app-emacs/nerd-icons-0.1.0

Description

Emacs Nerd Font Icons Library

Added to portage

2026-05-14

nginx - 1.30.1
Ebuild name:

www-servers/nginx-1.30.1

Description

Added to portage

2026-05-14

nginx-mode - 1.1.10
Ebuild name:

app-emacs/nginx-mode-1.1.10

Description

Emacs editing mode for Nginx config files

Added to portage

2026-05-14

nim-mode - 0.4.2_p20231101
Ebuild name:

app-emacs/nim-mode-0.4.2_p20231101

Description

Emacs major mode for the Nim programming language support

Added to portage

2026-05-14

ninja-mode - 1.11.1-r2
Ebuild name:

app-emacs/ninja-mode-1.11.1-r2

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-05-14

ninja-mode - 1.12.0
Ebuild name:

app-emacs/ninja-mode-1.12.0

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-05-14

ninja-mode - 1.12.1
Ebuild name:

app-emacs/ninja-mode-1.12.1

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-05-14

nix-mode - 1.5.0
Ebuild name:

app-emacs/nix-mode-1.5.0

Description

GNU Emacs major mode for editing Nix expressions

Added to portage

2026-05-14

no-littering - 1.8.6
Ebuild name:

app-emacs/no-littering-1.8.6

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-05-14

no-littering - 1.8.7
Ebuild name:

app-emacs/no-littering-1.8.7

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-05-14

noflet - 0.0.15_p20141102-r1
Ebuild name:

app-emacs/noflet-0.0.15_p20141102-r1

Description

Dynamic, local advice for Emacs-Lisp code

Added to portage

2026-05-14

opencl-clang - 16.0.11
Ebuild name:

dev-libs/opencl-clang-16.0.11

Description

OpenCL-oriented thin wrapper library around clang

Added to portage

2026-05-14

opencl-clang - 17.0.6
Ebuild name:

dev-libs/opencl-clang-17.0.6

Description

OpenCL-oriented thin wrapper library around clang

Added to portage

2026-05-14

openrct2 - 0.5.0
Ebuild name:

games-simulation/openrct2-0.5.0

Description

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

Added to portage

2026-05-14

pandora_box - 0.21.0
Ebuild name:

sys-apps/pandora_box-0.21.0

Description

Syd's log inspector & profile writer

Added to portage

2026-05-14

plasma-wayland-protocols - 1.21.0
Ebuild name:

dev-libs/plasma-wayland-protocols-1.21.0

Description

Plasma Specific Protocols for Wayland

Added to portage

2026-05-14

postgres_exporter - 0.19.1
Ebuild name:

app-metrics/postgres_exporter-0.19.1

Description

PostgreSQL stats exporter for Prometheus

Added to portage

2026-05-14

postgresql - 14.23
Ebuild name:

dev-db/postgresql-14.23

Description

PostgreSQL RDBMS

Added to portage

2026-05-14

postgresql - 15.18
Ebuild name:

dev-db/postgresql-15.18

Description

PostgreSQL RDBMS

Added to portage

2026-05-14

postgresql - 16.14
Ebuild name:

dev-db/postgresql-16.14

Description

PostgreSQL RDBMS

Added to portage

2026-05-14

postgresql - 17.10
Ebuild name:

dev-db/postgresql-17.10

Description

PostgreSQL RDBMS

Added to portage

2026-05-14

postgresql - 18.4
Ebuild name:

dev-db/postgresql-18.4

Description

PostgreSQL RDBMS

Added to portage

2026-05-14

ppx_yojson_conv_lib - 0.17.0
Ebuild name:

dev-ml/ppx_yojson_conv_lib-0.17.0

Description

Runtime lib for ppx_yojson_conv

Added to portage

2026-05-14

pymdown-extensions - 10.21.3
Ebuild name:

dev-python/pymdown-extensions-10.21.3

Description

Extensions for Python Markdown

Added to portage

2026-05-14

pytest-rerunfailures - 16.2
Ebuild name:

dev-python/pytest-rerunfailures-16.2

Description

pytest plugin to re-run tests to eliminate flaky failures

Added to portage

2026-05-14

python-neutronclient - 12.0.0
Ebuild name:

dev-python/python-neutronclient-12.0.0

Description

A client for the OpenStack Quantum API

Added to portage

2026-05-14

python-novaclient - 18.13.0
Ebuild name:

dev-python/python-novaclient-18.13.0

Description

A client for the OpenStack Nova API

Added to portage

2026-05-14

qemu-guest-agent - 10.2.2
Ebuild name:

app-emulation/qemu-guest-agent-10.2.2

Description

QEMU Guest Agent (qemu-ga) for use when running inside a VM

Added to portage

2026-05-14

qt-creator - 19.0.2
Ebuild name:

dev-qt/qt-creator-19.0.2

Description

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

Added to portage

2026-05-14

quickjs-ng - 0.14.0
Ebuild name:

dev-libs/quickjs-ng-0.14.0

Description

QuickJS, the Next Generation a mighty JavaScript engine

Added to portage

2026-05-14

rar - 7.22
Ebuild name:

app-arch/rar-7.22

Description

RAR compressor/uncompressor

Added to portage

2026-05-14

requests - 2.34.1
Ebuild name:

dev-python/requests-2.34.1

Description

HTTP library for human beings

Added to portage

2026-05-14

sen - 0.8.1
Ebuild name:

app-containers/sen-0.8.1

Description

Terminal User Interface for docker engine

Added to portage

2026-05-14

spf-engine - 3.1.0-r1
Ebuild name:

mail-filter/spf-engine-3.1.0-r1

Description

Policy daemon for Postfix SPF verification

Added to portage

2026-05-14

spirv-llvm-translator - 16.0.24
Ebuild name:

dev-util/spirv-llvm-translator-16.0.24

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-05-14

spirv-llvm-translator - 17.0.23
Ebuild name:

dev-util/spirv-llvm-translator-17.0.23

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-05-14

spirv-llvm-translator - 18.1.23
Ebuild name:

dev-util/spirv-llvm-translator-18.1.23

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-05-14

spirv-llvm-translator - 19.1.18
Ebuild name:

dev-util/spirv-llvm-translator-19.1.18

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-05-14

spirv-llvm-translator - 20.1.13
Ebuild name:

dev-util/spirv-llvm-translator-20.1.13

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-05-14

spirv-llvm-translator - 21.1.7
Ebuild name:

dev-util/spirv-llvm-translator-21.1.7

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-05-14

spirv-llvm-translator - 22.1.2
Ebuild name:

dev-util/spirv-llvm-translator-22.1.2

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-05-14

sqlglot - 30.8.0
Ebuild name:

dev-python/sqlglot-30.8.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2026-05-14

stress-ng - 0.21.01
Ebuild name:

app-benchmarks/stress-ng-0.21.01

Description

Stress test for a computer system with various selectable ways

Added to portage

2026-05-14

syd - 3.53.0
Ebuild name:

sys-apps/syd-3.53.0

Description

seccomp and landlock based application sandbox with support for namespaces

Added to portage

2026-05-14

tomcat - 10.1.55
Ebuild name:

www-servers/tomcat-10.1.55

Description

Tomcat Servlet-6.0/JSP-3.1/EL-5.0/WebSocket-2.1/JASPIC-3.0 Container

Added to portage

2026-05-14

tomcat - 11.0.22
Ebuild name:

www-servers/tomcat-11.0.22

Description

Tomcat Servlet-6.1/JSP-4.0/EL-6.0/WebSocket-2.2/JASPIC-3.1 Container

Added to portage

2026-05-14

tomcat - 9.0.118
Ebuild name:

www-servers/tomcat-9.0.118

Description

Tomcat Servlet-4.0/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container

Added to portage

2026-05-14

vanilla-kernel - 5.15.206
Ebuild name:

sys-kernel/vanilla-kernel-5.15.206

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-14

vanilla-kernel - 6.1.172
Ebuild name:

sys-kernel/vanilla-kernel-6.1.172

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-14

vanilla-sources - 6.12.88
Ebuild name:

sys-kernel/vanilla-sources-6.12.88

Description

Full sources for the Linux kernel

Added to portage

2026-05-14

vanilla-sources - 6.18.30
Ebuild name:

sys-kernel/vanilla-sources-6.18.30

Description

Full sources for the Linux kernel

Added to portage

2026-05-14

vanilla-sources - 7.0.7
Ebuild name:

sys-kernel/vanilla-sources-7.0.7

Description

Full sources for the Linux kernel

Added to portage

2026-05-14

virtualenv - 21.3.3
Ebuild name:

dev-python/virtualenv-21.3.3

Description

Virtual Python Environment builder

Added to portage

2026-05-14

wsdl4j - 1.6.3-r1
Ebuild name:

dev-java/wsdl4j-1.6.3-r1

Description

Web Services Description Language for Java Toolkit (WSDL4J)

Added to portage

2026-05-14

xz-java - 1.12
Ebuild name:

dev-java/xz-java-1.12

Description

Implementation of xz data compression in pure java

Added to portage

2026-05-14

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