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:

86805

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-07-13
clazy - 1.17.1
Ebuild name:

dev-util/clazy-1.17.1

Description

Compiler plugin which allows clang to understand Qt semantics

Added to portage

2026-07-13

inxi - 3.3.41.1
Ebuild name:

sys-apps/inxi-3.3.41.1

Description

The CLI inxi collects and prints hardware and system information

Added to portage

2026-07-13

libdovi - 3.4.0
Ebuild name:

media-libs/libdovi-3.4.0

Description

Dolby Vision metadata parsing and writing

Added to portage

2026-07-13

nvc - 1.21.1-r1
Ebuild name:

sci-electronics/nvc-1.21.1-r1

Description

NVC is a VHDL compiler and simulator

Added to portage

2026-07-13

patchelf - 0.19.1
Ebuild name:

dev-util/patchelf-0.19.1

Description

Small utility to modify the dynamic linker and RPATH of ELF executables

Added to portage

2026-07-13

selinux-accountsd - 2.20260616_p1
Ebuild name:

sec-policy/selinux-accountsd-2.20260616_p1

Description

SELinux policy for accountsd

Added to portage

2026-07-13

selinux-acct - 2.20260616_p1
Ebuild name:

sec-policy/selinux-acct-2.20260616_p1

Description

SELinux policy for acct

Added to portage

2026-07-13

selinux-afs - 2.20260616_p1
Ebuild name:

sec-policy/selinux-afs-2.20260616_p1

Description

SELinux policy for afs

Added to portage

2026-07-13

selinux-aide - 2.20260616_p1
Ebuild name:

sec-policy/selinux-aide-2.20260616_p1

Description

SELinux policy for aide

Added to portage

2026-07-13

selinux-alsa - 2.20260616_p1
Ebuild name:

sec-policy/selinux-alsa-2.20260616_p1

Description

SELinux policy for alsa

Added to portage

2026-07-13

selinux-amanda - 2.20260616_p1
Ebuild name:

sec-policy/selinux-amanda-2.20260616_p1

Description

SELinux policy for amanda

Added to portage

2026-07-13

selinux-amavis - 2.20260616_p1
Ebuild name:

sec-policy/selinux-amavis-2.20260616_p1

Description

SELinux policy for amavis

Added to portage

2026-07-13

selinux-android - 2.20260616_p1
Ebuild name:

sec-policy/selinux-android-2.20260616_p1

Description

SELinux policy for android

Added to portage

2026-07-13

selinux-apache - 2.20260616_p1
Ebuild name:

sec-policy/selinux-apache-2.20260616_p1

Description

SELinux policy for apache

Added to portage

2026-07-13

selinux-apcupsd - 2.20260616_p1
Ebuild name:

sec-policy/selinux-apcupsd-2.20260616_p1

Description

SELinux policy for apcupsd

Added to portage

2026-07-13

selinux-apm - 2.20260616_p1
Ebuild name:

sec-policy/selinux-apm-2.20260616_p1

Description

SELinux policy for acpi

Added to portage

2026-07-13

selinux-aptcacher - 2.20260616_p1
Ebuild name:

sec-policy/selinux-aptcacher-2.20260616_p1

Description

SELinux policy for aptcacher

Added to portage

2026-07-13

selinux-arpwatch - 2.20260616_p1
Ebuild name:

sec-policy/selinux-arpwatch-2.20260616_p1

Description

SELinux policy for arpwatch

Added to portage

2026-07-13

selinux-asterisk - 2.20260616_p1
Ebuild name:

sec-policy/selinux-asterisk-2.20260616_p1

Description

SELinux policy for asterisk

Added to portage

2026-07-13

selinux-at - 2.20260616_p1
Ebuild name:

sec-policy/selinux-at-2.20260616_p1

Description

SELinux policy for at

Added to portage

2026-07-13

selinux-automount - 2.20260616_p1
Ebuild name:

sec-policy/selinux-automount-2.20260616_p1

Description

SELinux policy for automount

Added to portage

2026-07-13

selinux-avahi - 2.20260616_p1
Ebuild name:

sec-policy/selinux-avahi-2.20260616_p1

Description

SELinux policy for avahi

Added to portage

2026-07-13

selinux-awstats - 2.20260616_p1
Ebuild name:

sec-policy/selinux-awstats-2.20260616_p1

Description

SELinux policy for awstats

Added to portage

2026-07-13

selinux-backup - 2.20260616_p1
Ebuild name:

sec-policy/selinux-backup-2.20260616_p1

Description

SELinux policy for generic backup apps

Added to portage

2026-07-13

selinux-bacula - 2.20260616_p1
Ebuild name:

sec-policy/selinux-bacula-2.20260616_p1

Description

SELinux policy for bacula

Added to portage

2026-07-13

selinux-base - 2.20260616_p1
Ebuild name:

sec-policy/selinux-base-2.20260616_p1

Description

Gentoo base policy for SELinux

Added to portage

2026-07-13

selinux-base-policy - 2.20260312_p1-r1
Ebuild name:

sec-policy/selinux-base-policy-2.20260312_p1-r1

Description

SELinux policy for core modules

Added to portage

2026-07-13

selinux-base-policy - 2.20260616_p1
Ebuild name:

sec-policy/selinux-base-policy-2.20260616_p1

Description

SELinux policy for core modules

Added to portage

2026-07-13

selinux-bind - 2.20260616_p1
Ebuild name:

sec-policy/selinux-bind-2.20260616_p1

Description

SELinux policy for bind

Added to portage

2026-07-13

selinux-bird - 2.20260616_p1
Ebuild name:

sec-policy/selinux-bird-2.20260616_p1

Description

SELinux policy for bird

Added to portage

2026-07-13

selinux-bitcoin - 2.20260616_p1
Ebuild name:

sec-policy/selinux-bitcoin-2.20260616_p1

Description

SELinux policy for bitcoin

Added to portage

2026-07-13

selinux-bitlbee - 2.20260616_p1
Ebuild name:

sec-policy/selinux-bitlbee-2.20260616_p1

Description

SELinux policy for bitlbee

Added to portage

2026-07-13

selinux-blueman - 2.20260616_p1
Ebuild name:

sec-policy/selinux-blueman-2.20260616_p1

Description

SELinux policy for blueman

Added to portage

2026-07-13

selinux-bluetooth - 2.20260616_p1
Ebuild name:

sec-policy/selinux-bluetooth-2.20260616_p1

Description

SELinux policy for bluetooth

Added to portage

2026-07-13

selinux-boinc - 2.20260616_p1
Ebuild name:

sec-policy/selinux-boinc-2.20260616_p1

Description

SELinux policy for boinc

Added to portage

2026-07-13

selinux-brctl - 2.20260616_p1
Ebuild name:

sec-policy/selinux-brctl-2.20260616_p1

Description

SELinux policy for brctl

Added to portage

2026-07-13

selinux-bubblewrap - 2.20260616_p1
Ebuild name:

sec-policy/selinux-bubblewrap-2.20260616_p1

Description

SELinux policy for bubblewrap

Added to portage

2026-07-13

selinux-bugzilla - 2.20260616_p1
Ebuild name:

sec-policy/selinux-bugzilla-2.20260616_p1

Description

SELinux policy for bugzilla

Added to portage

2026-07-13

selinux-cachefilesd - 2.20260616_p1
Ebuild name:

sec-policy/selinux-cachefilesd-2.20260616_p1

Description

SELinux policy for cachefilesd

Added to portage

2026-07-13

selinux-calamaris - 2.20260616_p1
Ebuild name:

sec-policy/selinux-calamaris-2.20260616_p1

Description

SELinux policy for calamaris

Added to portage

2026-07-13

selinux-canna - 2.20260616_p1
Ebuild name:

sec-policy/selinux-canna-2.20260616_p1

Description

SELinux policy for canna

Added to portage

2026-07-13

selinux-cdrecord - 2.20260616_p1
Ebuild name:

sec-policy/selinux-cdrecord-2.20260616_p1

Description

SELinux policy for cdrecord

Added to portage

2026-07-13

selinux-ceph - 2.20260616_p1
Ebuild name:

sec-policy/selinux-ceph-2.20260616_p1

Description

SELinux policy for ceph

Added to portage

2026-07-13

selinux-certbot - 2.20260616_p1
Ebuild name:

sec-policy/selinux-certbot-2.20260616_p1

Description

SELinux policy for certbot

Added to portage

2026-07-13

selinux-cgmanager - 2.20260616_p1
Ebuild name:

sec-policy/selinux-cgmanager-2.20260616_p1

Description

SELinux policy for cgmanager

Added to portage

2026-07-13

selinux-cgroup - 2.20260616_p1
Ebuild name:

sec-policy/selinux-cgroup-2.20260616_p1

Description

SELinux policy for cgroup

Added to portage

2026-07-13

selinux-chkrootkit - 2.20260616_p1
Ebuild name:

sec-policy/selinux-chkrootkit-2.20260616_p1

Description

SELinux policy for chkrootkit

Added to portage

2026-07-13

selinux-chromium - 2.20260616_p1
Ebuild name:

sec-policy/selinux-chromium-2.20260616_p1

Description

SELinux policy for chromium

Added to portage

2026-07-13

selinux-chronyd - 2.20260616_p1
Ebuild name:

sec-policy/selinux-chronyd-2.20260616_p1

Description

SELinux policy for chronyd

Added to portage

2026-07-13

weston - 15.0.93
Ebuild name:

dev-libs/weston-15.0.93

Description

Wayland reference compositor

Added to portage

2026-07-13

2026-07-12
ansible - 14.1.0
Ebuild name:

app-admin/ansible-14.1.0

Description

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

Added to portage

2026-07-12

ansible-core - 2.21.1
Ebuild name:

app-admin/ansible-core-2.21.1

Description

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

Added to portage

2026-07-12

asgiref - 3.11.1-r1
Ebuild name:

dev-python/asgiref-3.11.1-r1

Description

ASGI utilities (successor to WSGI)

Added to portage

2026-07-12

asttokens - 3.0.2
Ebuild name:

dev-python/asttokens-3.0.2

Description

Annotate Python AST trees with source text and token information

Added to portage

2026-07-12

at-spi2-core - 2.58.7
Ebuild name:

app-accessibility/at-spi2-core-2.58.7

Description

D-Bus accessibility specifications and registration daemon

Added to portage

2026-07-12

at-spi2-core - 2.60.5
Ebuild name:

app-accessibility/at-spi2-core-2.60.5

Description

D-Bus accessibility specifications and registration daemon

Added to portage

2026-07-12

cloudflared - 2026.7.1
Ebuild name:

net-vpn/cloudflared-2026.7.1

Description

A command-line client and tunneling daemon for Cloudflare Tunnel

Added to portage

2026-07-12

coredns - 1.14.6
Ebuild name:

net-dns/coredns-1.14.6

Description

CoreDNS is a DNS server that chains plugins

Added to portage

2026-07-12

courier - 2.0.3
Ebuild name:

mail-mta/courier-2.0.3

Description

An MTA designed specifically for maildirs

Added to portage

2026-07-12

diffoscope - 324
Ebuild name:

dev-util/diffoscope-324

Description

Will try to get to the bottom of what makes files or directories different

Added to portage

2026-07-12

django-filter - 26.1
Ebuild name:

dev-python/django-filter-26.1

Description

Django app allowing declarative dynamic QuerySet filtering from URL p

Added to portage

2026-07-12

dwz - 0.17
Ebuild name:

sys-devel/dwz-0.17

Description

DWARF optimization and duplicate removal tool

Added to portage

2026-07-12

eclipse-ecj - 4.40
Ebuild name:

dev-java/eclipse-ecj-4.40

Description

Eclipse Compiler for Java

Added to portage

2026-07-12

evolution-ews - 3.60.2-r1
Ebuild name:

gnome-extra/evolution-ews-3.60.2-r1

Description

Evolution module for connecting to Microsoft Exchange Web Servi

Added to portage

2026-07-12

fcitx - 5.1.21
Ebuild name:

app-i18n/fcitx-5.1.21

Description

Fcitx 5 is a generic input method framework

Added to portage

2026-07-12

fcitx-chewing - 5.1.12
Ebuild name:

app-i18n/fcitx-chewing-5.1.12

Description

Chewing Wrapper for Fcitx

Added to portage

2026-07-12

fcitx-chinese-addons - 5.1.13
Ebuild name:

app-i18n/fcitx-chinese-addons-5.1.13

Description

Addons related to Chinese, including IME previous bundled insi

Added to portage

2026-07-12

fcitx-configtool - 5.1.14
Ebuild name:

app-i18n/fcitx-configtool-5.1.14

Description

Configuration module for Fcitx

Added to portage

2026-07-12

fcitx-gtk - 5.1.7
Ebuild name:

app-i18n/fcitx-gtk-5.1.7

Description

Gtk im module for fcitx5 and glib based dbus client library

Added to portage

2026-07-12

fcitx-hangul - 5.1.10
Ebuild name:

app-i18n/fcitx-hangul-5.1.10

Description

Korean Hangul input method for Fcitx

Added to portage

2026-07-12

fcitx-lua - 5.0.17
Ebuild name:

app-i18n/fcitx-lua-5.0.17

Description

Lua support for fcitx

Added to portage

2026-07-12

fcitx-qt - 5.1.14
Ebuild name:

app-i18n/fcitx-qt-5.1.14

Description

Qt library and IM module for fcitx5

Added to portage

2026-07-12

fcitx-rime - 5.1.14
Ebuild name:

app-i18n/fcitx-rime-5.1.14

Description

Chinese RIME input methods for Fcitx

Added to portage

2026-07-12

fcitx-table-extra - 5.1.12
Ebuild name:

app-i18n/fcitx-table-extra-5.1.12

Description

Provides extra table for Fcitx, including Boshiamy, Zhengma, Cang

Added to portage

2026-07-12

fcitx-table-other - 5.1.7
Ebuild name:

app-i18n/fcitx-table-other-5.1.7

Description

Provides some other tables for Fcitx, fork from ibus-table-others,

Added to portage

2026-07-12

fcitx-unikey - 5.1.11
Ebuild name:

app-i18n/fcitx-unikey-5.1.11

Description

Unikey (Vietnamese Input Method) engine support for Fcitx

Added to portage

2026-07-12

findutils - 4.11.0
Ebuild name:

sys-apps/findutils-4.11.0

Description

GNU utilities for finding files

Added to portage

2026-07-12

fonttools - 4.63.0-r1
Ebuild name:

dev-python/fonttools-4.63.0-r1

Description

Library for manipulating TrueType, OpenType, AFM and Type1 fonts

Added to portage

2026-07-12

gallery-dl - 1.32.6
Ebuild name:

net-misc/gallery-dl-1.32.6

Description

Download image galleries and collections from several image hosting site

Added to portage

2026-07-12

gcc - 13.4.1_p20260708
Ebuild name:

sys-devel/gcc-13.4.1_p20260708

Description

The GNU Compiler Collection

Added to portage

2026-07-12

gcc - 15.3.1_p20260710
Ebuild name:

sys-devel/gcc-15.3.1_p20260710

Description

The GNU Compiler Collection

Added to portage

2026-07-12

gcc - 16.1.1_p20260711
Ebuild name:

sys-devel/gcc-16.1.1_p20260711

Description

The GNU Compiler Collection

Added to portage

2026-07-12

gccmakedep - 1.0.5
Ebuild name:

x11-misc/gccmakedep-1.0.5

Description

create dependencies in makefiles using 'gcc -M'

Added to portage

2026-07-12

gnome-session-openrc - 49.1-r2
Ebuild name:

gnome-base/gnome-session-openrc-49.1-r2

Description

Gnome session leader for OpenRC

Added to portage

2026-07-12

gnome-session-openrc - 49.2-r1
Ebuild name:

gnome-base/gnome-session-openrc-49.2-r1

Description

Gnome session leader for OpenRC

Added to portage

2026-07-12

json-schema - 5.2.2-r1
Ebuild name:

dev-ruby/json-schema-5.2.2-r1

Description

Ruby JSON Schema Validator

Added to portage

2026-07-12

kea - 3.2.0
Ebuild name:

net-misc/kea-3.2.0

Description

High-performance production grade DHCPv4 & DHCPv6 server

Added to portage

2026-07-12

kontrast - 26.04.3-r1
Ebuild name:

app-accessibility/kontrast-26.04.3-r1

Description

Tool to check contrast for colors to verify they are correctl

Added to portage

2026-07-12

libime - 1.1.15
Ebuild name:

app-i18n/libime-1.1.15

Description

Fcitx5 Next generation of fcitx

Added to portage

2026-07-12

meson - 1.11.2
Ebuild name:

dev-build/meson-1.11.2

Description

Open source build system

Added to portage

2026-07-12

meson - 1.12.0_rc1
Ebuild name:

dev-build/meson-1.12.0_rc1

Description

Open source build system

Added to portage

2026-07-12

mistletoe - 1.6.0
Ebuild name:

dev-python/mistletoe-1.6.0

Description

A fast, extensible Markdown parser in pure Python

Added to portage

2026-07-12

msmtp - 1.8.33
Ebuild name:

mail-mta/msmtp-1.8.33

Description

An SMTP client and SMTP plugin for mail user agents such as Mutt

Added to portage

2026-07-12

muse - 3.20.2
Ebuild name:

app-emacs/muse-3.20.2

Description

An authoring and publishing environment for Emacs

Added to portage

2026-07-12

mycli - 2.2.0
Ebuild name:

dev-db/mycli-2.2.0

Description

CLI for MySQL Database with auto-completion and syntax highlighting

Added to portage

2026-07-12

nagios-mode - 0.4
Ebuild name:

app-emacs/nagios-mode-0.4

Description

Major mode for editing Nagios configuration files

Added to portage

2026-07-12

nethogs - 0.9.0
Ebuild name:

net-analyzer/nethogs-0.9.0

Description

Small 'net top' tool, grouping bandwidth by process

Added to portage

2026-07-12

networkmanager - 1.56.1
Ebuild name:

net-misc/networkmanager-1.56.1

Description

A set of co-operative tools that make networking simple and straight

Added to portage

2026-07-12

nitrocli - 0.4.1-r2
Ebuild name:

app-crypt/nitrocli-0.4.1-r2

Description

A command line tool for interacting with Nitrokey devices

Added to portage

2026-07-12

nox - 2026.07.11
Ebuild name:

dev-python/nox-2026.07.11

Description

Flexible test automation for Python

Added to portage

2026-07-12

nwipe - 0.41
Ebuild name:

app-crypt/nwipe-0.41

Description

Securely erase disks using a variety of recognized methods

Added to portage

2026-07-12

onak - 0.6.3
Ebuild name:

app-crypt/onak-0.6.3

Description

onak is an OpenPGP keyserver

Added to portage

2026-07-12

onak - 0.6.4
Ebuild name:

app-crypt/onak-0.6.4

Description

onak is an OpenPGP keyserver

Added to portage

2026-07-12

pkgconf - 3.0.1
Ebuild name:

dev-util/pkgconf-3.0.1

Description

pkg-config compatible replacement with no dependencies other than C99

Added to portage

2026-07-12

projectile - 3.2.0
Ebuild name:

app-emacs/projectile-3.2.0

Description

A project interaction library for Emacs

Added to portage

2026-07-12

razer-cli - 2.3.1
Ebuild name:

sys-apps/razer-cli-2.3.1

Description

Command line interface for controlling Razer devices on Linux

Added to portage

2026-07-12

rime-data - 1.0.20260703
Ebuild name:

app-i18n/rime-data-1.0.20260703

Description

Added to portage

2026-07-12

siegfried - 1.11.5
Ebuild name:

app-misc/siegfried-1.11.5

Description

Signature-based file format identification

Added to portage

2026-07-12

sipvicious - 0.3.8
Ebuild name:

net-voip/sipvicious-0.3.8

Description

SIPVicious is a SIP security package

Added to portage

2026-07-12

syrupy - 5.5.3
Ebuild name:

dev-python/syrupy-5.5.3

Description

The sweeter pytest snapshot plugin

Added to portage

2026-07-12

thrift - 0.24.0
Ebuild name:

dev-libs/thrift-0.24.0

Description

C++ bindings for Apache Thrift

Added to portage

2026-07-12

thrift - 0.24.0
Ebuild name:

dev-python/thrift-0.24.0

Description

Python implementation of Thrift

Added to portage

2026-07-12

tomcat - 10.1.57
Ebuild name:

www-servers/tomcat-10.1.57

Description

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

Added to portage

2026-07-12

tomcat - 11.0.24
Ebuild name:

www-servers/tomcat-11.0.24

Description

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

Added to portage

2026-07-12

tomcat - 9.0.120
Ebuild name:

www-servers/tomcat-9.0.120

Description

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

Added to portage

2026-07-12

trilinos - 17.0.0-r1
Ebuild name:

sci-libs/trilinos-17.0.0-r1

Description

Scientific library collection for large scale problems

Added to portage

2026-07-12

trilinos - 17.1.0-r1
Ebuild name:

sci-libs/trilinos-17.1.0-r1

Description

Scientific library collection for large scale problems

Added to portage

2026-07-12

upower - 1.91.2
Ebuild name:

sys-power/upower-1.91.2

Description

D-Bus abstraction for enumerating power devices, querying history and stati

Added to portage

2026-07-12

upower - 1.91.3
Ebuild name:

sys-power/upower-1.91.3

Description

D-Bus abstraction for enumerating power devices, querying history and stati

Added to portage

2026-07-12

wine-staging - 11.13
Ebuild name:

app-emulation/wine-staging-11.13

Description

Free implementation of Windows(tm) on Unix, with Wine-Staging patc

Added to portage

2026-07-12

wireshark - 4.6.7
Ebuild name:

net-analyzer/wireshark-4.6.7

Description

Network protocol analyzer (sniffer)

Added to portage

2026-07-12

xstdcmap - 1.0.6
Ebuild name:

x11-apps/xstdcmap-1.0.6

Description

X standard colormap utility

Added to portage

2026-07-12

xvinfo - 1.1.6
Ebuild name:

x11-apps/xvinfo-1.1.6

Description

Print out X-Video extension adaptor information

Added to portage

2026-07-12

xwd - 1.0.10
Ebuild name:

x11-apps/xwd-1.0.10

Description

dump an image of an X window

Added to portage

2026-07-12

xwud - 1.0.8
Ebuild name:

x11-apps/xwud-1.0.8

Description

image displayer for X

Added to portage

2026-07-12

yamagi-quake2 - 8.70
Ebuild name:

games-fps/yamagi-quake2-8.70

Description

Quake 2 engine focused on single player

Added to portage

2026-07-12

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