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:

83073

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-02-03
dropbox - 240.4.8609
Ebuild name:

net-misc/dropbox-240.4.8609

Description

Dropbox daemon (pretends to be GUI-less)

Added to portage

2026-02-03

fsarchiver - 0.8.9
Ebuild name:

app-backup/fsarchiver-0.8.9

Description

Flexible filesystem archiver for backup and deployment tool

Added to portage

2026-02-03

markdown - 26.0.0-r1
Ebuild name:

dev-ada/markdown-26.0.0-r1

Description

Provides a markdown parser written in Ada

Added to portage

2026-02-03

org-modern - 1.12
Ebuild name:

app-emacs/org-modern-1.12

Description

Modern style for your GNU Emacs Org buffers

Added to portage

2026-02-03

2026-02-02
alsa-tools - 1.2.11-r2
Ebuild name:

media-sound/alsa-tools-1.2.11-r2

Description

Advanced Linux Sound Architecture tools

Added to portage

2026-02-02

alsa-tools - 1.2.14-r1
Ebuild name:

media-sound/alsa-tools-1.2.14-r1

Description

Advanced Linux Sound Architecture tools

Added to portage

2026-02-02

alsa-tools - 1.2.15-r2
Ebuild name:

media-sound/alsa-tools-1.2.15-r2

Description

Advanced Linux Sound Architecture tools

Added to portage

2026-02-02

babel - 2.18.0
Ebuild name:

dev-python/babel-2.18.0

Description

Collection of tools for internationalizing Python applications

Added to portage

2026-02-02

bcftools - 1.23
Ebuild name:

sci-biology/bcftools-1.23

Description

Utilities for variant calling and manipulating VCF and BCF files

Added to portage

2026-02-02

blessed - 1.29.0
Ebuild name:

dev-python/blessed-1.29.0

Description

Library for making terminal apps using colors, keyboard input and positio

Added to portage

2026-02-02

cachetools - 7.0.0
Ebuild name:

dev-python/cachetools-7.0.0

Description

Extensible memoizing collections and decorators

Added to portage

2026-02-02

cargo-c - 0.10.20
Ebuild name:

dev-util/cargo-c-0.10.20

Description

Helper program to build and install c-like libraries

Added to portage

2026-02-02

dbus-fast - 4.0.0
Ebuild name:

dev-python/dbus-fast-4.0.0

Description

A faster version of dbus-next

Added to portage

2026-02-02

gcc - 13.4.1_p20260129
Ebuild name:

sys-devel/gcc-13.4.1_p20260129

Description

The GNU Compiler Collection

Added to portage

2026-02-02

gcc - 14.3.1_p20260130
Ebuild name:

sys-devel/gcc-14.3.1_p20260130

Description

The GNU Compiler Collection

Added to portage

2026-02-02

gcc - 15.2.1_p20260131
Ebuild name:

sys-devel/gcc-15.2.1_p20260131

Description

The GNU Compiler Collection

Added to portage

2026-02-02

gcc - 16.0.1_p20260201
Ebuild name:

sys-devel/gcc-16.0.1_p20260201

Description

The GNU Compiler Collection

Added to portage

2026-02-02

git-credential-manager - 2.7.0
Ebuild name:

dev-vcs/git-credential-manager-2.7.0

Description

Secure Git credential storage supporing GitHub, Azure Repos, a

Added to portage

2026-02-02

git-sources - 6.19_rc8
Ebuild name:

sys-kernel/git-sources-6.19_rc8

Description

The very latest -git version of the Linux kernel

Added to portage

2026-02-02

gitlab-runner - 18.7.2
Ebuild name:

dev-util/gitlab-runner-18.7.2

Description

The official GitLab Runner, written in Go

Added to portage

2026-02-02

gitlab-runner - 18.8.0
Ebuild name:

dev-util/gitlab-runner-18.8.0

Description

The official GitLab Runner, written in Go

Added to portage

2026-02-02

go - 1.24.12
Ebuild name:

dev-lang/go-1.24.12

Description

A concurrent garbage collected and typesafe programming language

Added to portage

2026-02-02

go - 1.25.6
Ebuild name:

dev-lang/go-1.25.6

Description

A concurrent garbage collected and typesafe programming language

Added to portage

2026-02-02

gunicorn - 25.0.0
Ebuild name:

www-servers/gunicorn-25.0.0

Description

A WSGI HTTP Server for UNIX

Added to portage

2026-02-02

gvm-libs - 22.35.4
Ebuild name:

net-analyzer/gvm-libs-22.35.4

Description

Greenbone Vulnerability Management (GVM) libraries

Added to portage

2026-02-02

htslib - 1.23
Ebuild name:

sci-libs/htslib-1.23

Description

C library for high-throughput sequencing data formats

Added to portage

2026-02-02

ig - 0.48.1
Ebuild name:

app-admin/ig-0.48.1

Description

Tools and framework for data collection and system inspection using eBPF

Added to portage

2026-02-02

iucode_tool - 2.3.1-r2
Ebuild name:

sys-apps/iucode_tool-2.3.1-r2

Description

Tool to manipulate Intel X86 and X86-64 processor microcode update co

Added to portage

2026-02-02

libdnet - 1.18.2_pre20260126
Ebuild name:

dev-libs/libdnet-1.18.2_pre20260126

Description

Simplified, portable interface to several low-level networking

Added to portage

2026-02-02

libzdb - 3.5.0
Ebuild name:

dev-db/libzdb-3.5.0

Description

A thread safe high level multi-database connection pool library

Added to portage

2026-02-02

logcheck - 1.4.7
Ebuild name:

app-admin/logcheck-1.4.7

Description

Mails anomalies in the system logfiles to the administrator

Added to portage

2026-02-02

nvidia-drivers - 580.126.09-r1
Ebuild name:

x11-drivers/nvidia-drivers-580.126.09-r1

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-02-02

org-modern - 9999
Ebuild name:

app-emacs/org-modern-9999

Description

Modern style for your GNU Emacs Org buffers

Added to portage

2026-02-02

ospd-openvas - 22.10.1
Ebuild name:

net-analyzer/ospd-openvas-22.10.1

Description

This is an OSP server implementation to allow GVM to remotely con

Added to portage

2026-02-02

poetry - 2.3.2
Ebuild name:

dev-python/poetry-2.3.2

Description

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

Added to portage

2026-02-02

poetry-core - 2.3.1
Ebuild name:

dev-python/poetry-core-2.3.1

Description

Poetry PEP 517 Build Backend

Added to portage

2026-02-02

rich - 14.3.2
Ebuild name:

dev-python/rich-14.3.2

Description

Python library for rendering rich text, tables, etc. to the terminal

Added to portage

2026-02-02

samtools - 1.23
Ebuild name:

sci-biology/samtools-1.23

Description

Utilities for analysing and manipulating the SAM/BAM alignment formats

Added to portage

2026-02-02

sbcl - 2.6.1
Ebuild name:

dev-lisp/sbcl-2.6.1

Description

Steel Bank Common Lisp (SBCL) is an implementation of ANSI Common Lisp

Added to portage

2026-02-02

shadow - 4.19.3
Ebuild name:

sys-apps/shadow-4.19.3

Description

Utilities to deal with user accounts

Added to portage

2026-02-02

stockfish - 18
Ebuild name:

games-board/stockfish-18

Description

Free UCI chess engine, claimed to be the strongest in the world

Added to portage

2026-02-02

zenlib - 3.2.1
Ebuild name:

dev-python/zenlib-3.2.1

Description

Useful python decorators and utilities

Added to portage

2026-02-02

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