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:

87426

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-04
FBGEMM - 1.7.0-r1
Ebuild name:

sci-ml/FBGEMM-1.7.0-r1

Description

Facebook GEneral Matrix Multiplication

Added to portage

2026-08-04

alsa-scarlett-gui - 1.0_beta9
Ebuild name:

media-sound/alsa-scarlett-gui-1.0_beta9

Description

A UI for Focusrite Scarlett and Clarett audio interfaces

Added to portage

2026-08-04

awscli - 1.45.63
Ebuild name:

app-admin/awscli-1.45.63

Description

Universal Command Line Environment for AWS

Added to portage

2026-08-04

boto3 - 1.43.63
Ebuild name:

dev-python/boto3-1.43.63

Description

The AWS SDK for Python

Added to portage

2026-08-04

botocore - 1.43.63
Ebuild name:

dev-python/botocore-1.43.63

Description

Low-level, data-driven core of boto 3

Added to portage

2026-08-04

cffi - 2.1.1
Ebuild name:

dev-python/cffi-2.1.1

Description

Foreign Function Interface for Python calling C code

Added to portage

2026-08-04

etcd - 3.6.14
Ebuild name:

dev-db/etcd-3.6.14

Description

Highly-available key value store for shared configuration and service discovery

Added to portage

2026-08-04

ffmpeg - 9.0
Ebuild name:

media-video/ffmpeg-9.0

Description

Complete solution to record/convert/stream audio and video

Added to portage

2026-08-04

ffmpeg-compat - 8.1.2
Ebuild name:

media-video/ffmpeg-compat-8.1.2

Description

Complete solution to record/convert/stream audio and video

Added to portage

2026-08-04

firefox-bin - 153.0.3
Ebuild name:

www-client/firefox-bin-153.0.3

Description

Firefox Web Browser

Added to portage

2026-08-04

flux - 2.8.3-r2
Ebuild name:

sys-cluster/flux-2.8.3-r2

Description

Flux is a tool for keeping Kubernetes clusters in sync

Added to portage

2026-08-04

flux - 2.9.3
Ebuild name:

sys-cluster/flux-2.9.3

Description

Flux is a tool for keeping Kubernetes clusters in sync

Added to portage

2026-08-04

fotocx - 26.7
Ebuild name:

media-gfx/fotocx-26.7

Description

Program for improving image files made with a digital camera

Added to portage

2026-08-04

framework-tool-tui - 0.8.5
Ebuild name:

app-laptop/framework-tool-tui-0.8.5

Description

TUI for controlling and monitoring Framework Computers hardware

Added to portage

2026-08-04

gagit - 1
Ebuild name:

dev-vcs/gagit-1

Description

Gentoo AGit workflow tool

Added to portage

2026-08-04

gitolite-gentoo - 3.6.14.1
Ebuild name:

dev-vcs/gitolite-gentoo-3.6.14.1

Description

Highly flexible server for git directory version tracker, Gentoo f

Added to portage

2026-08-04

h2 - 4.4.1
Ebuild name:

dev-python/h2-4.4.1

Description

HTTP/2 State-Machine based protocol implementation

Added to portage

2026-08-04

ipython - 9.16.1
Ebuild name:

dev-python/ipython-9.16.1

Description

Advanced interactive shell for Python

Added to portage

2026-08-04

kubelogin - 1.36.0-r2
Ebuild name:

sys-cluster/kubelogin-1.36.0-r2

Description

kubectl plugin for Kubernetes OpenID Connect authentication

Added to portage

2026-08-04

kubelogin - 1.36.3
Ebuild name:

sys-cluster/kubelogin-1.36.3

Description

kubectl plugin for Kubernetes OpenID Connect authentication

Added to portage

2026-08-04

kubeseal - 0.38.4
Ebuild name:

sys-cluster/kubeseal-0.38.4

Description

Client-side utility for one-way encrypted secrets in kubernetes

Added to portage

2026-08-04

libsdl3 - 3.4.14
Ebuild name:

media-libs/libsdl3-3.4.14

Description

Simple Direct Media Layer

Added to portage

2026-08-04

libtorrent - 0.16.19
Ebuild name:

net-libs/libtorrent-0.16.19

Description

BitTorrent library written in C++ for *nix

Added to portage

2026-08-04

magit-popup - 2.13.3-r1
Ebuild name:

app-emacs/magit-popup-2.13.3-r1

Description

Define prefix-infix-suffix command combos

Added to portage

2026-08-04

mirrorselect - 9998
Ebuild name:

app-portage/mirrorselect-9998

Description

Tool to help select distfiles mirrors for Gentoo

Added to portage

2026-08-04

nvidia-drivers - 595.44.13
Ebuild name:

x11-drivers/nvidia-drivers-595.44.13

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-08-04

nvidia-drivers - 595.91.07
Ebuild name:

x11-drivers/nvidia-drivers-595.91.07

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-08-04

openstacksdk - 4.18.0
Ebuild name:

dev-python/openstacksdk-4.18.0

Description

A collection of libraries for building applications to work with Ope

Added to portage

2026-08-04

os-prober - 1.85
Ebuild name:

sys-boot/os-prober-1.85

Description

Utility to detect other OSs on a set of drives

Added to portage

2026-08-04

pyproject-fmt - 2.27.0
Ebuild name:

dev-python/pyproject-fmt-2.27.0

Description

Format your pyproject.toml file

Added to portage

2026-08-04

pytorch - 2.13.0
Ebuild name:

sci-ml/pytorch-2.13.0

Description

Tensors and Dynamic neural networks in Python with strong GPU acceleration

Added to portage

2026-08-04

rtorrent - 0.16.19
Ebuild name:

net-p2p/rtorrent-0.16.19

Description

BitTorrent Client using libtorrent

Added to portage

2026-08-04

rutorrent - 5.3.11
Ebuild name:

www-apps/rutorrent-5.3.11

Description

ruTorrent is a front-end for the popular Bittorrent client rTorrent

Added to portage

2026-08-04

sabctools - 9.6.3
Ebuild name:

dev-python/sabctools-9.6.3

Description

Module providing raw yEnc encoding/decoding for SABnzbd

Added to portage

2026-08-04

shtab - 1.9.3
Ebuild name:

dev-python/shtab-1.9.3

Description

Automagic shell tab completion for Python CLI applications

Added to portage

2026-08-04

sphinx-autodoc-typehints - 3.13.2
Ebuild name:

dev-python/sphinx-autodoc-typehints-3.13.2

Description

Type hints support for the Sphinx autodoc extension

Added to portage

2026-08-04

traitlets - 5.16.1
Ebuild name:

dev-python/traitlets-5.16.1

Description

A configuration system for Python applications

Added to portage

2026-08-04

typer - 0.27.1
Ebuild name:

dev-python/typer-0.27.1

Description

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

Added to portage

2026-08-04

unreal-tournament - 469e
Ebuild name:

games-fps/unreal-tournament-469e

Description

Modern build of the Unreal Tournament (99) engine

Added to portage

2026-08-04

unreal-tournament-data - 436_p4
Ebuild name:

games-fps/unreal-tournament-data-436_p4

Description

Data files for Unreal Tournament (99)

Added to portage

2026-08-04

uwsm - 0.26.6
Ebuild name:

gui-apps/uwsm-0.26.6

Description

Universal Wayland Session Manager

Added to portage

2026-08-04

virtctl - 1.9.0
Ebuild name:

sys-cluster/virtctl-1.9.0

Description

Control virtual machine related operations on your kubernetes cluster

Added to portage

2026-08-04

xfce4-settings - 4.21.3
Ebuild name:

xfce-base/xfce4-settings-4.21.3

Description

Configuration system for the Xfce desktop environment

Added to portage

2026-08-04

2026-08-03
coverage - 7.15.3
Ebuild name:

dev-python/coverage-7.15.3

Description

Code coverage measurement for Python

Added to portage

2026-08-03

cpp-httplib - 0.51.0
Ebuild name:

dev-cpp/cpp-httplib-0.51.0

Description

C++ HTTP/HTTPS server and client library

Added to portage

2026-08-03

curl - 8.21.0-r1
Ebuild name:

net-misc/curl-8.21.0-r1

Description

A Client that groks URLs

Added to portage

2026-08-03

dist-kernel - 6.12.101
Ebuild name:

virtual/dist-kernel-6.12.101

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-08-03

dist-kernel - 6.18.42
Ebuild name:

virtual/dist-kernel-6.18.42

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-08-03

dist-kernel - 6.6.148
Ebuild name:

virtual/dist-kernel-6.6.148

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-08-03

dist-kernel - 7.1.6
Ebuild name:

virtual/dist-kernel-7.1.6

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-08-03

flrig - 2.0.10-r1
Ebuild name:

media-radio/flrig-2.0.10-r1

Description

Transceiver control program for Amateur Radio use

Added to portage

2026-08-03

gallery-dl - 1.32.9
Ebuild name:

net-misc/gallery-dl-1.32.9

Description

Download image galleries and collections from several image hosting site

Added to portage

2026-08-03

gcc - 13.4.1_p20260729
Ebuild name:

sys-devel/gcc-13.4.1_p20260729

Description

The GNU Compiler Collection

Added to portage

2026-08-03

gcc - 14.4.1_p20260730
Ebuild name:

sys-devel/gcc-14.4.1_p20260730

Description

The GNU Compiler Collection

Added to portage

2026-08-03

gcc - 15.3.1_p20260731
Ebuild name:

sys-devel/gcc-15.3.1_p20260731

Description

The GNU Compiler Collection

Added to portage

2026-08-03

gcc - 16.1.1_p20260731
Ebuild name:

sys-devel/gcc-16.1.1_p20260731

Description

The GNU Compiler Collection

Added to portage

2026-08-03

gcc - 17.0.0_p20260802
Ebuild name:

sys-devel/gcc-17.0.0_p20260802

Description

The GNU Compiler Collection

Added to portage

2026-08-03

gentoo-kernel - 6.12.101
Ebuild name:

sys-kernel/gentoo-kernel-6.12.101

Description

Linux kernel built with Gentoo patches

Added to portage

2026-08-03

gentoo-kernel - 6.18.42
Ebuild name:

sys-kernel/gentoo-kernel-6.18.42

Description

Linux kernel built with Gentoo patches

Added to portage

2026-08-03

gentoo-kernel - 6.6.148
Ebuild name:

sys-kernel/gentoo-kernel-6.6.148

Description

Linux kernel built with Gentoo patches

Added to portage

2026-08-03

gentoo-kernel - 7.1.6
Ebuild name:

sys-kernel/gentoo-kernel-7.1.6

Description

Linux kernel built with Gentoo patches

Added to portage

2026-08-03

gentoo-kernel-bin - 6.12.101
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.101

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-08-03

gentoo-kernel-bin - 6.18.42
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.42

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-08-03

gentoo-kernel-bin - 6.6.148
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.148

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-08-03

gentoo-kernel-bin - 7.1.6
Ebuild name:

sys-kernel/gentoo-kernel-bin-7.1.6

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-08-03

gentoo-kernel-modprep - 6.12.101
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.12.101

Description

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

Added to portage

2026-08-03

gentoo-kernel-modprep - 6.18.42
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.18.42

Description

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

Added to portage

2026-08-03

gentoo-kernel-modprep - 6.6.148
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.6.148

Description

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

Added to portage

2026-08-03

gentoo-kernel-modprep - 7.1.6
Ebuild name:

sys-kernel/gentoo-kernel-modprep-7.1.6

Description

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

Added to portage

2026-08-03

gentoo-retirement-scripts - 3
Ebuild name:

app-admin/gentoo-retirement-scripts-3

Description

Scripts to help retiring Gentoo developers

Added to portage

2026-08-03

gentoo-sources - 6.12.101
Ebuild name:

sys-kernel/gentoo-sources-6.12.101

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-08-03

gentoo-sources - 6.18.42
Ebuild name:

sys-kernel/gentoo-sources-6.18.42

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-08-03

gentoo-sources - 6.6.148
Ebuild name:

sys-kernel/gentoo-sources-6.6.148

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-08-03

gentoo-sources - 7.1.6
Ebuild name:

sys-kernel/gentoo-sources-7.1.6

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-08-03

git-sources - 7.2_rc6
Ebuild name:

sys-kernel/git-sources-7.2_rc6

Description

The very latest -git version of the Linux kernel

Added to portage

2026-08-03

ideep - 3.12
Ebuild name:

sci-ml/ideep-3.12

Description

Intel Optimization for Chainer

Added to portage

2026-08-03

incus - 7.0.1-r1
Ebuild name:

app-containers/incus-7.0.1-r1

Description

Modern, secure and powerful system container and virtual machine mana

Added to portage

2026-08-03

incus - 7.3-r1
Ebuild name:

app-containers/incus-7.3-r1

Description

Modern, secure and powerful system container and virtual machine manage

Added to portage

2026-08-03

indilib - 2.2.4.1
Ebuild name:

sci-libs/indilib-2.2.4.1

Description

INDI Astronomical Control Protocol library

Added to portage

2026-08-03

krita - 6.0.3-r1
Ebuild name:

media-gfx/krita-6.0.3-r1

Description

Free digital painting application. Digital Painting, Creative Freedom

Added to portage

2026-08-03

mailcrypt - 3.5.9-r3
Ebuild name:

app-emacs/mailcrypt-3.5.9-r3

Description

Provides a simple interface to public key cryptography with OpenPGP

Added to portage

2026-08-03

mame - 0.289-r2
Ebuild name:

games-emulation/mame-0.289-r2

Description

Multiple Arcade Machine Emulator

Added to portage

2026-08-03

marginalia - 2.10
Ebuild name:

app-emacs/marginalia-2.10

Description

Marginalia in the minibuffer

Added to portage

2026-08-03

marginalia - 2.11
Ebuild name:

app-emacs/marginalia-2.11

Description

Marginalia in the minibuffer

Added to portage

2026-08-03

markdown-mode - 2.8
Ebuild name:

app-emacs/markdown-mode-2.8

Description

Major mode for editing Markdown-formatted text files

Added to portage

2026-08-03

mastodon - 2.0.7
Ebuild name:

app-emacs/mastodon-2.0.7

Description

Emacs client for Mastodon, federated microblogging social network

Added to portage

2026-08-03

mastodon - 9999
Ebuild name:

app-emacs/mastodon-9999

Description

Emacs client for Mastodon, federated microblogging social network

Added to portage

2026-08-03

math-symbol-lists - 1.3
Ebuild name:

app-emacs/math-symbol-lists-1.3

Description

Lists of Unicode mathematical symbols and latex commands

Added to portage

2026-08-03

matlab - 6.1_p20241107
Ebuild name:

app-emacs/matlab-6.1_p20241107

Description

Major modes for MATLAB .m and .tlc files

Added to portage

2026-08-03

matlab - 8.2.0
Ebuild name:

app-emacs/matlab-8.2.0

Description

Major modes for MATLAB .m and .tlc files

Added to portage

2026-08-03

mattermost-desktop-bin - 6.3.0_rc3
Ebuild name:

net-im/mattermost-desktop-bin-6.3.0_rc3

Description

Mattermost Desktop application

Added to portage

2026-08-03

miller - 6.20.2
Ebuild name:

sys-apps/miller-6.20.2

Description

Tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..

Added to portage

2026-08-03

no-littering - 1.9.0
Ebuild name:

app-emacs/no-littering-1.9.0

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-08-03

nvidia-drivers - 580.178.04
Ebuild name:

x11-drivers/nvidia-drivers-580.178.04

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-08-03

nvidia-drivers - 610.57.04
Ebuild name:

x11-drivers/nvidia-drivers-610.57.04

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-08-03

oneDNN - 3.12
Ebuild name:

sci-ml/oneDNN-3.12

Description

oneAPI Deep Neural Network Library

Added to portage

2026-08-03

osm - 2.5
Ebuild name:

app-emacs/osm-2.5

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-08-03

package-build - 5.0.1
Ebuild name:

app-emacs/package-build-5.0.1

Description

Tools for assembling a package archive

Added to portage

2026-08-03

plasma-bigscreen - 6.7.3-r1
Ebuild name:

kde-plasma/plasma-bigscreen-6.7.3-r1

Description

Plasma shell for TVs

Added to portage

2026-08-03

portalocker - 4.1.0
Ebuild name:

dev-python/portalocker-4.1.0

Description

A library for Python file locking

Added to portage

2026-08-03

pyqt6-sip - 13.12.0
Ebuild name:

dev-python/pyqt6-sip-13.12.0

Description

sip module support for PyQt6

Added to portage

2026-08-03

rarfile - 4.5
Ebuild name:

dev-python/rarfile-4.5

Description

Module for RAR archive reading

Added to portage

2026-08-03

rclone - 1.75.0
Ebuild name:

net-misc/rclone-1.75.0

Description

A program to sync files to and from various cloud storage providers

Added to portage

2026-08-03

s - 1.13.1
Ebuild name:

app-emacs/s-1.13.1

Description

The long lost Emacs string manipulation library

Added to portage

2026-08-03

sip - 6.16.0
Ebuild name:

dev-python/sip-6.16.0

Description

Python bindings generator for C/C++ libraries

Added to portage

2026-08-03

spyder-kernels - 3.1.5-r1
Ebuild name:

dev-python/spyder-kernels-3.1.5-r1

Description

Kernels used by spyder on its ipython console

Added to portage

2026-08-03

symbols-nerd-font - 3.5.0
Ebuild name:

media-fonts/symbols-nerd-font-3.5.0

Description

Symbols-only font containing the Nerd Font icons

Added to portage

2026-08-03

transient - 0.13.6
Ebuild name:

app-emacs/transient-0.13.6

Description

Transient commands abstraction for GNU Emacs

Added to portage

2026-08-03

tree-sitter-erlang - 0.20
Ebuild name:

dev-libs/tree-sitter-erlang-0.20

Description

Erlang programming language grammar for Tree-sitter

Added to portage

2026-08-03

tsm - 8.2.2.0
Ebuild name:

app-backup/tsm-8.2.2.0

Description

IBM Storage Protect (former Tivoli Storage Manager) Backup/Archive Client, A

Added to portage

2026-08-03

vanilla-kernel - 6.12.101
Ebuild name:

sys-kernel/vanilla-kernel-6.12.101

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-08-03

vanilla-kernel - 6.18.42
Ebuild name:

sys-kernel/vanilla-kernel-6.18.42

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-08-03

vanilla-kernel - 6.6.148
Ebuild name:

sys-kernel/vanilla-kernel-6.6.148

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-08-03

vanilla-kernel - 7.1.6
Ebuild name:

sys-kernel/vanilla-kernel-7.1.6

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-08-03

vanilla-sources - 6.12.101
Ebuild name:

sys-kernel/vanilla-sources-6.12.101

Description

Full sources for the Linux kernel

Added to portage

2026-08-03

vanilla-sources - 6.18.42
Ebuild name:

sys-kernel/vanilla-sources-6.18.42

Description

Full sources for the Linux kernel

Added to portage

2026-08-03

vanilla-sources - 6.6.148
Ebuild name:

sys-kernel/vanilla-sources-6.6.148

Description

Full sources for the Linux kernel

Added to portage

2026-08-03

vanilla-sources - 7.1.6
Ebuild name:

sys-kernel/vanilla-sources-7.1.6

Description

Full sources for the Linux kernel

Added to portage

2026-08-03

webob - 1.8.11
Ebuild name:

dev-python/webob-1.8.11

Description

WSGI request and response object

Added to portage

2026-08-03

whenever - 0.10.4
Ebuild name:

dev-python/whenever-0.10.4

Description

Modern datetime library for Python

Added to portage

2026-08-03

with-editor - 3.5.3
Ebuild name:

app-emacs/with-editor-3.5.3

Description

Use the Emacsclient as the of child processes

Added to portage

2026-08-03

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