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:

82714

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-01-03
awscli - 1.44.11
Ebuild name:

app-admin/awscli-1.44.11

Description

Universal Command Line Environment for AWS

Added to portage

2026-01-03

bcachefs-tools - 1.34.0
Ebuild name:

sys-fs/bcachefs-tools-1.34.0

Description

Tools for bcachefs

Added to portage

2026-01-03

boto3 - 1.42.21
Ebuild name:

dev-python/boto3-1.42.21

Description

The AWS SDK for Python

Added to portage

2026-01-03

botocore - 1.42.21
Ebuild name:

dev-python/botocore-1.42.21

Description

Low-level, data-driven core of boto 3

Added to portage

2026-01-03

cargo-nextest - 0.9.117
Ebuild name:

dev-util/cargo-nextest-0.9.117

Description

Next-generation test runner for Rust

Added to portage

2026-01-03

elementary-xfce-icon-theme - 0.22
Ebuild name:

x11-themes/elementary-xfce-icon-theme-0.22

Description

Elementary icons forked from upstream, extended and main

Added to portage

2026-01-03

filelock - 3.20.2
Ebuild name:

dev-python/filelock-3.20.2

Description

A platform independent file lock for Python

Added to portage

2026-01-03

gentoo-sources - 6.18.3
Ebuild name:

sys-kernel/gentoo-sources-6.18.3

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-01-03

geolith-jg - 0.3.0
Ebuild name:

games-emulation/geolith-jg-0.3.0

Description

Jolly Good Neo Geo AES/MVS Emulator

Added to portage

2026-01-03

git - 4.1.0
Ebuild name:

dev-ruby/git-4.1.0

Description

Library for using Git in Ruby

Added to portage

2026-01-03

glycin-loaders - 2.1_alpha
Ebuild name:

media-libs/glycin-loaders-2.1_alpha

Description

Loaders for glycin clients (glycin crate or libglycin)

Added to portage

2026-01-03

gpr - 24.0.0-r3
Ebuild name:

dev-ada/gpr-24.0.0-r3

Description

LibGPR2 - Parser for GPR Project files

Added to portage

2026-01-03

gpr - 24.2.0-r1
Ebuild name:

dev-ada/gpr-24.2.0-r1

Description

LibGPR2 - Parser for GPR Project files

Added to portage

2026-01-03

gpr - 25.0.0-r4
Ebuild name:

dev-ada/gpr-25.0.0-r4

Description

LibGPR2 - Parser for GPR Project files

Added to portage

2026-01-03

highs - 1.12.0
Ebuild name:

sci-mathematics/highs-1.12.0

Description

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

Added to portage

2026-01-03

hoe - 4.5.1
Ebuild name:

dev-ruby/hoe-4.5.1

Description

Hoe extends rake to provide full project automation

Added to portage

2026-01-03

mgba - 0.11.0_pre20260101
Ebuild name:

games-emulation/mgba-0.11.0_pre20260101

Description

Game Boy Advance Emulator

Added to portage

2026-01-03

mpmath - 1.4.0_beta3
Ebuild name:

dev-python/mpmath-1.4.0_beta3

Description

Python library for arbitrary-precision floating-point arithmetic

Added to portage

2026-01-03

openpgp-keys-gentoo-developers - 20251229
Ebuild name:

sec-keys/openpgp-keys-gentoo-developers-20251229

Description

Gentoo Authority Keys (GLEP 79)

Added to portage

2026-01-03

openttd - 15.0
Ebuild name:

games-simulation/openttd-15.0

Description

A clone of Transport Tycoon Deluxe

Added to portage

2026-01-03

patatt - 0.7.0
Ebuild name:

dev-python/patatt-0.7.0

Description

A simple library to add cryptographic attestation to patches sent via email

Added to portage

2026-01-03

pillow - 12.1.0
Ebuild name:

dev-python/pillow-12.1.0

Description

Python Imaging Library (fork)

Added to portage

2026-01-03

pkgcheck - 0.10.37-r1
Ebuild name:

dev-util/pkgcheck-0.10.37-r1

Description

pkgcore-based QA utility for ebuild repos

Added to portage

2026-01-03

pkgcheck - 0.10.38
Ebuild name:

dev-util/pkgcheck-0.10.38

Description

pkgcore-based QA utility for ebuild repos

Added to portage

2026-01-03

pkgcore - 0.12.30-r1
Ebuild name:

sys-apps/pkgcore-0.12.30-r1

Description

a framework for package management

Added to portage

2026-01-03

pkgcore - 0.12.31
Ebuild name:

sys-apps/pkgcore-0.12.31

Description

a framework for package management

Added to portage

2026-01-03

portage-utils - 0.99
Ebuild name:

app-portage/portage-utils-0.99

Description

Small and fast Portage helper tools written in C

Added to portage

2026-01-03

pyside - 6.10.1-r3
Ebuild name:

dev-python/pyside-6.10.1-r3

Description

Python bindings for the Qt framework

Added to portage

2026-01-03

qemu - 10.2.0-r1
Ebuild name:

app-emulation/qemu-10.2.0-r1

Description

QEMU + Kernel-based Virtual Machine userland tools

Added to portage

2026-01-03

refind - 0.14.2-r4
Ebuild name:

sys-boot/refind-0.14.2-r4

Description

The UEFI Boot Manager by Rod Smith

Added to portage

2026-01-03

rgbds - 1.0.1
Ebuild name:

dev-util/rgbds-1.0.1

Description

Rednex Game Boy Development System

Added to portage

2026-01-03

rhash - 1.4.6-r1
Ebuild name:

app-crypt/rhash-1.4.6-r1

Description

Console utility and library for computing and verifying file hash sums

Added to portage

2026-01-03

rmg - 0.8.8
Ebuild name:

games-emulation/rmg-0.8.8

Description

Rosalie's Mupen GUI

Added to portage

2026-01-03

rotix - 0.83-r3
Ebuild name:

app-crypt/rotix-0.83-r3

Description

Rotix allows you to generate rotational obfuscations

Added to portage

2026-01-03

rpm-sequoia - 1.10.0
Ebuild name:

app-crypt/rpm-sequoia-1.10.0

Description

Implementation of the RPM PGP interface using Sequoia

Added to portage

2026-01-03

rpm-sequoia - 1.9.0
Ebuild name:

app-crypt/rpm-sequoia-1.9.0

Description

Implementation of the RPM PGP interface using Sequoia

Added to portage

2026-01-03

ruamel-yaml - 0.19.1
Ebuild name:

dev-python/ruamel-yaml-0.19.1

Description

YAML parser/emitter that supports roundtrip comment preservation

Added to portage

2026-01-03

ruamel-yaml-clibz - 0.3.7
Ebuild name:

dev-python/ruamel-yaml-clibz-0.3.7

Description

C-based reader/scanner and emitter for dev-python/ruamel-yaml

Added to portage

2026-01-03

sbctl - 0.15.4
Ebuild name:

app-crypt/sbctl-0.15.4

Description

Secure Boot key manager

Added to portage

2026-01-03

sbctl - 0.16
Ebuild name:

app-crypt/sbctl-0.16

Description

Secure Boot key manager

Added to portage

2026-01-03

sbctl - 0.18
Ebuild name:

app-crypt/sbctl-0.18

Description

Secure Boot key manager

Added to portage

2026-01-03

sbsigntools - 0.9.5
Ebuild name:

app-crypt/sbsigntools-0.9.5

Description

Utilities for signing and verifying files for UEFI Secure Boot

Added to portage

2026-01-03

snakeoil - 0.11.0
Ebuild name:

dev-python/snakeoil-0.11.0

Description

misc common functionality and useful optimizations

Added to portage

2026-01-03

sphinx-autodoc-typehints - 3.6.2
Ebuild name:

dev-python/sphinx-autodoc-typehints-3.6.2

Description

Type hints support for the Sphinx autodoc extension

Added to portage

2026-01-03

sus-fixtures-console - 0.5.0
Ebuild name:

dev-ruby/sus-fixtures-console-0.5.0

Description

Test fixtures for capturing Console output

Added to portage

2026-01-03

tox - 4.33.0
Ebuild name:

dev-python/tox-4.33.0

Description

virtualenv-based automation of test activities

Added to portage

2026-01-03

vanilla-sources - 6.18.3
Ebuild name:

sys-kernel/vanilla-sources-6.18.3

Description

Full sources for the Linux kernel

Added to portage

2026-01-03

2026-01-02
ROPgadget - 7.6-r2
Ebuild name:

dev-util/ROPgadget-7.6-r2

Description

Search for gadgets in binaries to facilitate your ROP exploitation

Added to portage

2026-01-02

ROPgadget - 7.7-r1
Ebuild name:

dev-util/ROPgadget-7.7-r1

Description

Search for gadgets in binaries to facilitate your ROP exploitation

Added to portage

2026-01-02

amf-headers - 1.4.36-r2
Ebuild name:

media-libs/amf-headers-1.4.36-r2

Description

The Advanced Media Framework (AMF) SDK

Added to portage

2026-01-02

capstone - 5.0.6-r1
Ebuild name:

dev-libs/capstone-5.0.6-r1

Description

disassembly/disassembler framework + bindings

Added to portage

2026-01-02

capstone - 6.0.0_alpha4-r1
Ebuild name:

dev-libs/capstone-6.0.0_alpha4-r1

Description

disassembly/disassembler framework + bindings

Added to portage

2026-01-02

capstone - 6.0.0_alpha5-r1
Ebuild name:

dev-libs/capstone-6.0.0_alpha5-r1

Description

disassembly/disassembler framework + bindings

Added to portage

2026-01-02

cosign - 3.0.3
Ebuild name:

app-containers/cosign-3.0.3

Description

container signing utility

Added to portage

2026-01-02

dist-kernel - 6.18.3
Ebuild name:

virtual/dist-kernel-6.18.3

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-01-02

django-polymorphic - 4.5.2
Ebuild name:

dev-python/django-polymorphic-4.5.2

Description

Seamless Polymorphic Inheritance for Django Models

Added to portage

2026-01-02

docker-compose - 2.40.3
Ebuild name:

app-containers/docker-compose-2.40.3

Description

Multi-container orchestration for Docker

Added to portage

2026-01-02

docker-compose - 5.0.1
Ebuild name:

app-containers/docker-compose-5.0.1

Description

Multi-container orchestration for Docker

Added to portage

2026-01-02

eisl - 5.62
Ebuild name:

dev-lang/eisl-5.62

Description

Interpreter and compiler compatible with the ISLisp standard

Added to portage

2026-01-02

erofs-utils - 1.8.10-r1
Ebuild name:

sys-fs/erofs-utils-1.8.10-r1

Description

Userspace tools for EROFS

Added to portage

2026-01-02

file-tail - 1.4.0
Ebuild name:

dev-ruby/file-tail-1.4.0

Description

A small ruby library that allows it to 'tail' files in Ruby

Added to portage

2026-01-02

gentoo-kernel - 6.18.3
Ebuild name:

sys-kernel/gentoo-kernel-6.18.3

Description

Linux kernel built with Gentoo patches

Added to portage

2026-01-02

gentoo-kernel-bin - 6.18.3
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.3

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-01-02

gitpython - 3.1.46
Ebuild name:

dev-python/gitpython-3.1.46

Description

Library used to interact with Git repositories

Added to portage

2026-01-02

gnatformat - 26.0.0-r1
Ebuild name:

dev-ada/gnatformat-26.0.0-r1

Description

Opinionated code formatter for the Ada language

Added to portage

2026-01-02

gopass - 1.16.1-r1
Ebuild name:

app-admin/gopass-1.16.1-r1

Description

a simple but powerful password manager for the terminal

Added to portage

2026-01-02

hypothesis - 6.148.9
Ebuild name:

dev-python/hypothesis-6.148.9

Description

A library for property based testing

Added to portage

2026-01-02

json5 - 0.13.0
Ebuild name:

dev-python/json5-0.13.0

Description

A Python implementation of the JSON5 data format

Added to portage

2026-01-02

libmilter - 1.0.2_p5
Ebuild name:

mail-filter/libmilter-1.0.2_p5

Description

Added to portage

2026-01-02

librt - 0.7.7
Ebuild name:

dev-python/librt-0.7.7

Description

Mypyc runtime library

Added to portage

2026-01-02

noto - 20260101
Ebuild name:

media-fonts/noto-20260101

Description

Google's font family that aims to support all the world's languages

Added to portage

2026-01-02

nprolog - 4.78
Ebuild name:

dev-lang/nprolog-4.78

Description

Interpreter and compiler to be compatible with Arity/Prolog32

Added to portage

2026-01-02

nvidia-ml-py - 13.590.44
Ebuild name:

dev-python/nvidia-ml-py-13.590.44

Description

Python bindings to the NVIDIA Management Library

Added to portage

2026-01-02

onlyoffice-bin - 9.2.1
Ebuild name:

app-office/onlyoffice-bin-9.2.1

Description

A free and open source office and productivity suite (binary versio

Added to portage

2026-01-02

opencascade - 7.8.1-r1
Ebuild name:

sci-libs/opencascade-7.8.1-r1

Description

Development platform for CAD/CAE, 3D surface/solid modeling and data

Added to portage

2026-01-02

pf-sources - 6.18_p4
Ebuild name:

sys-kernel/pf-sources-6.18_p4

Description

Added to portage

2026-01-02

portage - 3.0.74
Ebuild name:

sys-apps/portage-3.0.74

Description

The package management and distribution system for Gentoo

Added to portage

2026-01-02

postfix - 3.11.0_rc3-r1
Ebuild name:

mail-mta/postfix-3.11.0_rc3-r1

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2026-01-02

postfix - 3.12_pre20251231-r1
Ebuild name:

mail-mta/postfix-3.12_pre20251231-r1

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2026-01-02

prettier-ada - 25.0.0-r4
Ebuild name:

dev-ada/prettier-ada-25.0.0-r4

Description

Port of the Prettier formatter to the Ada programming language

Added to portage

2026-01-02

pwndbg - 20250530-r3
Ebuild name:

dev-debug/pwndbg-20250530-r3

Description

A GDB plug-in that makes debugging with GDB suck less

Added to portage

2026-01-02

pwndbg - 20251010-r3
Ebuild name:

dev-debug/pwndbg-20251010-r3

Description

A GDB plug-in that makes debugging with GDB suck less

Added to portage

2026-01-02

pwndbg - 20251020-r3
Ebuild name:

dev-debug/pwndbg-20251020-r3

Description

A GDB plug-in that makes debugging with GDB suck less

Added to portage

2026-01-02

pycares - 5.0.1
Ebuild name:

dev-python/pycares-5.0.1

Description

Python interface for c-ares

Added to portage

2026-01-02

pykka - 4.4.1
Ebuild name:

dev-python/pykka-4.4.1

Description

A Python implementation of the actor model

Added to portage

2026-01-02

pynacl - 1.6.2
Ebuild name:

dev-python/pynacl-1.6.2

Description

Python binding to the Networking and Cryptography (NaCl) library

Added to portage

2026-01-02

rpm-sequoia - 1.10.0
Ebuild name:

app-crypt/rpm-sequoia-1.10.0

Description

Implementation of the RPM PGP interface using Sequoia

Added to portage

2026-01-02

sendmail - 8.18.2
Ebuild name:

mail-mta/sendmail-8.18.2

Description

Widely-used Mail Transport Agent (MTA)

Added to portage

2026-01-02

sequel - 5.100.0
Ebuild name:

dev-ruby/sequel-5.100.0

Description

A lightweight database toolkit for Ruby

Added to portage

2026-01-02

siril - 1.4.0-r1
Ebuild name:

sci-astronomy/siril-1.4.0-r1

Description

A free astronomical image processing software

Added to portage

2026-01-02

smrsh - 8.18.2
Ebuild name:

app-shells/smrsh-8.18.2

Description

Sendmail restricted shell, for use with MTAs other than Sendmail

Added to portage

2026-01-02

sqlmap - 1.10
Ebuild name:

dev-db/sqlmap-1.10

Description

An automatic SQL injection and database takeover tool

Added to portage

2026-01-02

test-unit - 3.7.7
Ebuild name:

dev-ruby/test-unit-3.7.7

Description

An xUnit family unit testing framework for Ruby

Added to portage

2026-01-02

vanilla-kernel - 6.18.3
Ebuild name:

sys-kernel/vanilla-kernel-6.18.3

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-01-02

vlc - 3.0.23
Ebuild name:

media-video/vlc-3.0.23

Description

Media player and framework with support for most multimedia files and stream

Added to portage

2026-01-02

yara-x - 1.10.0-r1
Ebuild name:

app-forensics/yara-x-1.10.0-r1

Description

A malware identification and classification tool

Added to portage

2026-01-02

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