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:

88127

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-09-04
QGnomePlatform - 0.9.2-r8
Ebuild name:

x11-themes/QGnomePlatform-0.9.2-r8

Description

Qt Platform Theme aimed to accommodate GNOME settings

Added to portage

2026-09-04

adwaita-qt - 1.4.2-r2
Ebuild name:

x11-themes/adwaita-qt-1.4.2-r2

Description

A style to bend Qt applications to look like they belong into GNOME

Added to portage

2026-09-04

github-cli - 2.100.0
Ebuild name:

dev-util/github-cli-2.100.0

Description

GitHub CLI

Added to portage

2026-09-04

gitlab-cli - 1.116.0
Ebuild name:

dev-util/gitlab-cli-1.116.0

Description

the official gitlab command line interface

Added to portage

2026-09-04

go - 1.27.1
Ebuild name:

dev-lang/go-1.27.1

Description

A concurrent garbage collected and typesafe programming language

Added to portage

2026-09-04

lsp-mode - 10.0.0
Ebuild name:

app-emacs/lsp-mode-10.0.0

Description

Emacs client/library for the Language Server Protocol

Added to portage

2026-09-04

mongodb-compass-bin - 1.50.0
Ebuild name:

dev-db/mongodb-compass-bin-1.50.0

Description

GUI for MongoDB

Added to portage

2026-09-04

openvpn - 2.7.6
Ebuild name:

net-vpn/openvpn-2.7.6

Description

Robust and highly flexible tunneling application compatible with many OSes

Added to portage

2026-09-04

snmp_exporter - 0.30.1
Ebuild name:

app-metrics/snmp_exporter-0.30.1

Description

Prometheus exporter for snmp metrics

Added to portage

2026-09-04

terraform - 1.16.1
Ebuild name:

app-admin/terraform-1.16.1

Description

A tool for building, changing, and combining infrastructure safely

Added to portage

2026-09-04

yq-go - 4.53.6
Ebuild name:

app-misc/yq-go-4.53.6

Description

yq is a lightweight and portable command-line YAML, JSON and XML processor

Added to portage

2026-09-04

2026-09-03
Test-Snapshot - 0.61.0
Ebuild name:

dev-perl/Test-Snapshot-0.61.0

Description

Test against data stored in automatically-named file

Added to portage

2026-09-03

ansi2html - 1.9.4
Ebuild name:

dev-python/ansi2html-1.9.4

Description

Convert text with ANSI color codes to HTML

Added to portage

2026-09-03

ansible - 14.3.1
Ebuild name:

app-admin/ansible-14.3.1

Description

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

Added to portage

2026-09-03

ansible-core - 2.21.3
Ebuild name:

app-admin/ansible-core-2.21.3

Description

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

Added to portage

2026-09-03

anyio - 4.15.0
Ebuild name:

dev-python/anyio-4.15.0

Description

Compatibility layer for multiple asynchronous event loop implementations

Added to portage

2026-09-03

ast-serialize - 0.9.0
Ebuild name:

dev-python/ast-serialize-0.9.0

Description

Python bindings for mypy AST serialization

Added to portage

2026-09-03

asymptote - 3.14
Ebuild name:

media-gfx/asymptote-3.14

Description

A vector graphics language that provides a framework for technical drawing

Added to portage

2026-09-03

beets - 2.13.1
Ebuild name:

media-sound/beets-2.13.1

Description

Media library management system for obsessive music geeks

Added to portage

2026-09-03

boto3 - 1.43.87
Ebuild name:

dev-python/boto3-1.43.87

Description

The AWS SDK for Python

Added to portage

2026-09-03

botocore - 1.43.87
Ebuild name:

dev-python/botocore-1.43.87

Description

Low-level, data-driven core of boto 3

Added to portage

2026-09-03

certbot - 5.8.0
Ebuild name:

app-crypt/certbot-5.8.0

Description

Let's Encrypt client to automate deployment of X.509 certificates

Added to portage

2026-09-03

cloudflare-warp - 2026.7.1377.0
Ebuild name:

net-vpn/cloudflare-warp-2026.7.1377.0

Description

Cloudflare Warp Client

Added to portage

2026-09-03

cmd2 - 4.2.3
Ebuild name:

dev-python/cmd2-4.2.3

Description

Extra features for standard library's cmd module

Added to portage

2026-09-03

crispy-bootstrap5 - 2026.9
Ebuild name:

dev-python/crispy-bootstrap5-2026.9

Description

Bootstrap5 template pack for django-crispy-forms

Added to portage

2026-09-03

dbeaver-bin - 26.2.0
Ebuild name:

dev-db/dbeaver-bin-26.2.0

Description

Free universal database tool (community edition)

Added to portage

2026-09-03

derper - 1.102.2
Ebuild name:

net-vpn/derper-1.102.2

Description

DERP server for tailscale network

Added to portage

2026-09-03

dist-kernel - 6.1.187
Ebuild name:

virtual/dist-kernel-6.1.187

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-09-03

dist-kernel - 6.12.108
Ebuild name:

virtual/dist-kernel-6.12.108

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-09-03

dist-kernel - 6.18.49
Ebuild name:

virtual/dist-kernel-6.18.49

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-09-03

dist-kernel - 6.6.156
Ebuild name:

virtual/dist-kernel-6.6.156

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-09-03

dist-kernel - 7.1.13
Ebuild name:

virtual/dist-kernel-7.1.13

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-09-03

dist-kernel - 7.2.3
Ebuild name:

virtual/dist-kernel-7.2.3

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-09-03

django - 6.1.1
Ebuild name:

dev-python/django-6.1.1

Description

High-level Python web framework

Added to portage

2026-09-03

django-otp - 1.7.1
Ebuild name:

dev-python/django-otp-1.7.1

Description

Django framework adding two-factor authentication using one-time passwo

Added to portage

2026-09-03

dropbox - 268.4.4124
Ebuild name:

net-misc/dropbox-268.4.4124

Description

Dropbox daemon (pretends to be GUI-less)

Added to portage

2026-09-03

freerdp - 3.31.1
Ebuild name:

net-misc/freerdp-3.31.1

Description

Free implementation of the Remote Desktop Protocol

Added to portage

2026-09-03

fzf - 0.74.3
Ebuild name:

app-shells/fzf-0.74.3

Description

General-purpose command-line fuzzy finder, written in Golang

Added to portage

2026-09-03

gallery-dl - 1.32.10-r1
Ebuild name:

net-misc/gallery-dl-1.32.10-r1

Description

Download image galleries and collections from several image hosting

Added to portage

2026-09-03

gentoo-kernel - 6.1.187
Ebuild name:

sys-kernel/gentoo-kernel-6.1.187

Description

Linux kernel built with Gentoo patches

Added to portage

2026-09-03

gentoo-kernel - 6.12.108
Ebuild name:

sys-kernel/gentoo-kernel-6.12.108

Description

Linux kernel built with Gentoo patches

Added to portage

2026-09-03

gentoo-kernel - 6.18.49
Ebuild name:

sys-kernel/gentoo-kernel-6.18.49

Description

Linux kernel built with Gentoo patches

Added to portage

2026-09-03

gentoo-kernel - 6.6.156
Ebuild name:

sys-kernel/gentoo-kernel-6.6.156

Description

Linux kernel built with Gentoo patches

Added to portage

2026-09-03

gentoo-kernel - 7.1.13
Ebuild name:

sys-kernel/gentoo-kernel-7.1.13

Description

Linux kernel built with Gentoo patches

Added to portage

2026-09-03

gentoo-kernel - 7.2.3
Ebuild name:

sys-kernel/gentoo-kernel-7.2.3

Description

Linux kernel built with Gentoo patches

Added to portage

2026-09-03

gentoo-kernel-bin - 6.1.187
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.187

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-09-03

gentoo-kernel-bin - 6.12.108
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.108

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-09-03

gentoo-kernel-bin - 6.18.49
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.49

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-09-03

gentoo-kernel-bin - 6.6.156
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.156

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-09-03

gentoo-kernel-bin - 7.1.13
Ebuild name:

sys-kernel/gentoo-kernel-bin-7.1.13

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-09-03

gentoo-kernel-bin - 7.2.3
Ebuild name:

sys-kernel/gentoo-kernel-bin-7.2.3

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-09-03

gentoo-kernel-modprep - 6.1.187
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.1.187

Description

Minimal subset of gentoo-kernel-bin for building modules,

Added to portage

2026-09-03

gentoo-kernel-modprep - 6.12.108
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.12.108

Description

Minimal subset of gentoo-kernel-bin for building modules,

Added to portage

2026-09-03

gentoo-kernel-modprep - 6.18.49
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.18.49

Description

Minimal subset of gentoo-kernel-bin for building modules,

Added to portage

2026-09-03

gentoo-kernel-modprep - 6.6.156
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.6.156

Description

Minimal subset of gentoo-kernel-bin for building modules,

Added to portage

2026-09-03

gentoo-kernel-modprep - 7.1.13
Ebuild name:

sys-kernel/gentoo-kernel-modprep-7.1.13

Description

Minimal subset of gentoo-kernel-bin for building modules, f

Added to portage

2026-09-03

gentoo-kernel-modprep - 7.2.3
Ebuild name:

sys-kernel/gentoo-kernel-modprep-7.2.3

Description

Minimal subset of gentoo-kernel-bin for building modules, fo

Added to portage

2026-09-03

gentoo-sources - 6.1.187
Ebuild name:

sys-kernel/gentoo-sources-6.1.187

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-09-03

gentoo-sources - 6.12.108
Ebuild name:

sys-kernel/gentoo-sources-6.12.108

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-09-03

gentoo-sources - 6.18.49
Ebuild name:

sys-kernel/gentoo-sources-6.18.49

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-09-03

gentoo-sources - 6.6.156
Ebuild name:

sys-kernel/gentoo-sources-6.6.156

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-09-03

gentoo-sources - 7.1.13
Ebuild name:

sys-kernel/gentoo-sources-7.1.13

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-09-03

gentoo-sources - 7.2.3
Ebuild name:

sys-kernel/gentoo-sources-7.2.3

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-09-03

intellij-idea - 2026.2.2
Ebuild name:

dev-util/intellij-idea-2026.2.2

Description

A complete toolset for web, mobile and enterprise development

Added to portage

2026-09-03

kea - 3.2.0-r1
Ebuild name:

net-misc/kea-3.2.0-r1

Description

High-performance production grade DHCPv4 & DHCPv6 server

Added to portage

2026-09-03

kmscon - 10.0.3
Ebuild name:

sys-apps/kmscon-10.0.3

Description

KMS/DRM based virtual Console Emulator

Added to portage

2026-09-03

latex-beamer - 3.78
Ebuild name:

dev-tex/latex-beamer-3.78

Description

LaTeX class for creating presentations using a video projector

Added to portage

2026-09-03

libsdl2 - 2.32.72
Ebuild name:

media-libs/libsdl2-2.32.72

Description

Simple Direct Media Layer

Added to portage

2026-09-03

libsdl3 - 3.4.16
Ebuild name:

media-libs/libsdl3-3.4.16

Description

Simple Direct Media Layer

Added to portage

2026-09-03

libunwind - 22.1.8-r1
Ebuild name:

llvm-runtimes/libunwind-22.1.8-r1

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-09-03

libunwind - 23.1.0-r1
Ebuild name:

llvm-runtimes/libunwind-23.1.0-r1

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-09-03

lsp-mode - 9999
Ebuild name:

app-emacs/lsp-mode-9999

Description

Emacs client/library for the Language Server Protocol

Added to portage

2026-09-03

lsp-treemacs - 0.5
Ebuild name:

app-emacs/lsp-treemacs-0.5

Description

Integration between lsp-mode and treemacs

Added to portage

2026-09-03

lsp-treemacs - 0.5
Ebuild name:

app-emacs/lsp-treemacs-0.5

Description

Integration between lsp-mode and treemacs

Added to portage

2026-09-03

lxml - 6.1.3
Ebuild name:

dev-python/lxml-6.1.3

Description

A Pythonic binding for the libxml2 and libxslt libraries

Added to portage

2026-09-03

mergiraf - 0.19.1
Ebuild name:

dev-vcs/mergiraf-0.19.1

Description

Syntax-aware git merge driver

Added to portage

2026-09-03

nct6687d - 0_pre20260901
Ebuild name:

sys-power/nct6687d-0_pre20260901

Description

Kernel module for the Nuvoton NCT6687-R

Added to portage

2026-09-03

openjdk - 11.0.32.1_p1-r1
Ebuild name:

dev-java/openjdk-11.0.32.1_p1-r1

Description

Open source implementation of the Java programming language

Added to portage

2026-09-03

openjdk - 17.0.20.1_p1-r1
Ebuild name:

dev-java/openjdk-17.0.20.1_p1-r1

Description

Open source implementation of the Java programming language

Added to portage

2026-09-03

openjdk - 21.0.12.1_p1-r1
Ebuild name:

dev-java/openjdk-21.0.12.1_p1-r1

Description

Open source implementation of the Java programming language

Added to portage

2026-09-03

openjdk - 28_alpha13
Ebuild name:

dev-java/openjdk-28_alpha13

Description

Open source implementation of the Java programming language

Added to portage

2026-09-03

pytorch - 2.14.0
Ebuild name:

sci-ml/pytorch-2.14.0

Description

Tensors and Dynamic neural networks in Python with strong GPU acceleration

Added to portage

2026-09-03

raspberrypi-sources - 6.18.32_p20260521-r1
Ebuild name:

sys-kernel/raspberrypi-sources-6.18.32_p20260521-r1

Description

Raspberry Pi kernel sources

Added to portage

2026-09-03

raspberrypi-sources - 6.18.46_p20260824-r1
Ebuild name:

sys-kernel/raspberrypi-sources-6.18.46_p20260824-r1

Description

Raspberry Pi kernel sources

Added to portage

2026-09-03

rust - 1.98.1
Ebuild name:

dev-lang/rust-1.98.1

Description

Systems programming language originally developed by Mozilla

Added to portage

2026-09-03

rust-bin - 1.98.1
Ebuild name:

dev-lang/rust-bin-1.98.1

Description

Added to portage

2026-09-03

rust-common - 1.98.1
Ebuild name:

dev-lang/rust-common-1.98.1

Description

Common files shared between multiple slots of Rust

Added to portage

2026-09-03

rust-std - 1.98.1
Ebuild name:

sys-devel/rust-std-1.98.1

Description

Rust standard library, standalone (for crossdev)

Added to portage

2026-09-03

simdjson - 4.6.10
Ebuild name:

dev-libs/simdjson-4.6.10

Description

SIMD accelerated C++ JSON library

Added to portage

2026-09-03

simpleini - 4.27
Ebuild name:

dev-cpp/simpleini-4.27

Description

C++ library providing a simple API to read and write INI-style files

Added to portage

2026-09-03

spyder - 6.1.7
Ebuild name:

dev-python/spyder-6.1.7

Description

The Scientific Python Development Environment

Added to portage

2026-09-03

systemd - 260.4
Ebuild name:

sys-apps/systemd-260.4

Description

System and service manager for Linux

Added to portage

2026-09-03

telegram-desktop-bin - 7.1.5
Ebuild name:

net-im/telegram-desktop-bin-7.1.5

Description

Official desktop client for Telegram (binary package)

Added to portage

2026-09-03

thunderbird - 140.15.0
Ebuild name:

mail-client/thunderbird-140.15.0

Description

Thunderbird Mail Client

Added to portage

2026-09-03

thunderbird - 153.2.0
Ebuild name:

mail-client/thunderbird-153.2.0

Description

Thunderbird Mail Client

Added to portage

2026-09-03

thunderbird - 155.0
Ebuild name:

mail-client/thunderbird-155.0

Description

Thunderbird Mail Client

Added to portage

2026-09-03

thunderbird-l10n - 153.2.0
Ebuild name:

mail-client/thunderbird-l10n-153.2.0

Description

Thunderbird mail client's translation files

Added to portage

2026-09-03

thunderbird-l10n - 155.0
Ebuild name:

mail-client/thunderbird-l10n-155.0

Description

Thunderbird mail client's translation files

Added to portage

2026-09-03

tomcat - 10.1.59
Ebuild name:

www-servers/tomcat-10.1.59

Description

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

Added to portage

2026-09-03

tomcat - 11.0.25
Ebuild name:

www-servers/tomcat-11.0.25

Description

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

Added to portage

2026-09-03

tomcat - 9.0.121
Ebuild name:

www-servers/tomcat-9.0.121

Description

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

Added to portage

2026-09-03

tuf - 7.0.1
Ebuild name:

dev-python/tuf-7.0.1

Description

A secure updater framework for Python

Added to portage

2026-09-03

urwid - 4.1.0
Ebuild name:

dev-python/urwid-4.1.0

Description

Curses-based user interface library for Python

Added to portage

2026-09-03

vanilla-kernel - 6.1.187
Ebuild name:

sys-kernel/vanilla-kernel-6.1.187

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-09-03

vanilla-kernel - 6.12.108
Ebuild name:

sys-kernel/vanilla-kernel-6.12.108

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-09-03

vanilla-kernel - 6.18.49
Ebuild name:

sys-kernel/vanilla-kernel-6.18.49

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-09-03

vanilla-kernel - 6.6.156
Ebuild name:

sys-kernel/vanilla-kernel-6.6.156

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-09-03

vanilla-kernel - 7.1.13
Ebuild name:

sys-kernel/vanilla-kernel-7.1.13

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-09-03

vanilla-kernel - 7.2.3
Ebuild name:

sys-kernel/vanilla-kernel-7.2.3

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-09-03

vanilla-sources - 6.1.187
Ebuild name:

sys-kernel/vanilla-sources-6.1.187

Description

Full sources for the Linux kernel

Added to portage

2026-09-03

vanilla-sources - 6.12.108
Ebuild name:

sys-kernel/vanilla-sources-6.12.108

Description

Full sources for the Linux kernel

Added to portage

2026-09-03

vanilla-sources - 6.18.49
Ebuild name:

sys-kernel/vanilla-sources-6.18.49

Description

Full sources for the Linux kernel

Added to portage

2026-09-03

vanilla-sources - 6.6.156
Ebuild name:

sys-kernel/vanilla-sources-6.6.156

Description

Full sources for the Linux kernel

Added to portage

2026-09-03

vanilla-sources - 7.1.13
Ebuild name:

sys-kernel/vanilla-sources-7.1.13

Description

Full sources for the Linux kernel

Added to portage

2026-09-03

vanilla-sources - 7.2.3
Ebuild name:

sys-kernel/vanilla-sources-7.2.3

Description

Full sources for the Linux kernel

Added to portage

2026-09-03

vips - 8.18.6
Ebuild name:

media-libs/vips-8.18.6

Description

VIPS Image Processing Library

Added to portage

2026-09-03

zsnes - 2.3.0
Ebuild name:

games-emulation/zsnes-2.3.0

Description

Fork of the classic Super Nintendo emulator

Added to portage

2026-09-03

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