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:

82590

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
2025-12-25
django-polymorphic - 4.5.1
Ebuild name:

dev-python/django-polymorphic-4.5.1

Description

Seamless Polymorphic Inheritance for Django Models

Added to portage

2025-12-25

ffmpeg-chromium - 138
Ebuild name:

media-video/ffmpeg-chromium-138

Description

FFmpeg built specifically for codec support in Chromium-based brows

Added to portage

2025-12-25

gamescope - 3.16.19
Ebuild name:

gui-wm/gamescope-3.16.19

Description

Efficient micro-compositor for running games

Added to portage

2025-12-25

jaraco-context - 6.0.2
Ebuild name:

dev-python/jaraco-context-6.0.2

Description

Context managers by jaraco

Added to portage

2025-12-25

jaraco-test - 5.6.0
Ebuild name:

dev-python/jaraco-test-5.6.0

Description

Testing support by jaraco

Added to portage

2025-12-25

libdecor - 0.2.5
Ebuild name:

gui-libs/libdecor-0.2.5

Description

A client-side decorations library for Wayland clients

Added to portage

2025-12-25

mergiraf - 0.16.1
Ebuild name:

dev-vcs/mergiraf-0.16.1

Description

Syntax-aware git merge driver

Added to portage

2025-12-25

oslo-serialization - 5.9.0
Ebuild name:

dev-python/oslo-serialization-5.9.0

Description

Oslo Serialization library

Added to portage

2025-12-25

python-engineio - 4.13.0
Ebuild name:

dev-python/python-engineio-4.13.0

Description

Python implementation of the Engine.IO realtime server

Added to portage

2025-12-25

vivaldi - 7.7.3851.66
Ebuild name:

www-client/vivaldi-7.7.3851.66

Description

A browser for our friends

Added to portage

2025-12-25

vivaldi-snapshot - 7.8.3899.3
Ebuild name:

www-client/vivaldi-snapshot-7.8.3899.3

Description

A browser for our friends

Added to portage

2025-12-25

2025-12-24
ada_language_server - 25.0.20241014-r5
Ebuild name:

dev-ada/ada_language_server-25.0.20241014-r5

Description

a Language Server Protocol for Ada/SPARK

Added to portage

2025-12-24

adsf - 1.5.3
Ebuild name:

www-servers/adsf-1.5.3

Description

A Dead Simple Fileserver is a static file server that can launch in a direct

Added to portage

2025-12-24

aiosqlite - 0.22.1
Ebuild name:

dev-python/aiosqlite-0.22.1

Description

asyncio bridge to the standard sqlite3 module

Added to portage

2025-12-24

apr - 1.7.6-r1
Ebuild name:

dev-libs/apr-1.7.6-r1

Description

Apache Portable Runtime Library

Added to portage

2025-12-24

awscli - 1.44.6
Ebuild name:

app-admin/awscli-1.44.6

Description

Universal Command Line Environment for AWS

Added to portage

2025-12-24

babl - 0.1.118
Ebuild name:

media-libs/babl-0.1.118

Description

A dynamic, any to any, pixel format conversion library

Added to portage

2025-12-24

bat - 0.26.1
Ebuild name:

sys-apps/bat-0.26.1

Description

cat(1) clone with syntax highlighting and Git integration

Added to portage

2025-12-24

boto3 - 1.42.16
Ebuild name:

dev-python/boto3-1.42.16

Description

The AWS SDK for Python

Added to portage

2025-12-24

botocore - 1.42.16
Ebuild name:

dev-python/botocore-1.42.16

Description

Low-level, data-driven core of boto 3

Added to portage

2025-12-24

bundler - 4.0.3
Ebuild name:

dev-ruby/bundler-4.0.3

Description

An easy way to vendor gem dependencies

Added to portage

2025-12-24

charliecloud - 0.42-r1
Ebuild name:

sys-cluster/charliecloud-0.42-r1

Description

Lightweight user-defined software stacks for high-performance comp

Added to portage

2025-12-24

clang - 22.0.0_pre20251223
Ebuild name:

dev-python/clang-22.0.0_pre20251223

Description

Python bindings for llvm-core/clang

Added to portage

2025-12-24

clang - 22.0.0_pre20251223
Ebuild name:

llvm-core/clang-22.0.0_pre20251223

Description

C language family frontend for LLVM

Added to portage

2025-12-24

clang-common - 22.0.0_pre20251223
Ebuild name:

llvm-core/clang-common-22.0.0_pre20251223

Description

Common files shared between multiple slots of clang

Added to portage

2025-12-24

compiler-rt - 22.0.0_pre20251223
Ebuild name:

llvm-runtimes/compiler-rt-22.0.0_pre20251223

Description

Compiler runtime library for clang (built-in part)

Added to portage

2025-12-24

compiler-rt-sanitizers - 22.0.0_pre20251223
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-22.0.0_pre20251223

Description

Compiler runtime libraries for clang (sanit

Added to portage

2025-12-24

direwolf - 1.7-r2
Ebuild name:

media-radio/direwolf-1.7-r2

Description

Decoded Information from Radio Emissions for Windows Or Linux Fans

Added to portage

2025-12-24

direwolf - 1.8-r1
Ebuild name:

media-radio/direwolf-1.8-r1

Description

Decoded Information from Radio Emissions for Windows Or Linux Fans

Added to portage

2025-12-24

direwolf - 1.8.1-r1
Ebuild name:

media-radio/direwolf-1.8.1-r1

Description

Decoded Information from Radio Emissions for Windows Or Linux Fans

Added to portage

2025-12-24

easy-rsa - 3.2.5
Ebuild name:

app-crypt/easy-rsa-3.2.5

Description

Small RSA key management package, based on OpenSSL

Added to portage

2025-12-24

elastic-transport - 9.2.1
Ebuild name:

dev-python/elastic-transport-9.2.1

Description

Transport classes and utilities shared among Python Elastic clie

Added to portage

2025-12-24

elasticsearch - 9.2.1
Ebuild name:

dev-python/elasticsearch-9.2.1

Description

Official Elasticsearch client library for Python

Added to portage

2025-12-24

element - 1.12.7
Ebuild name:

www-apps/element-1.12.7

Description

A glossy Matrix collaboration client for the web

Added to portage

2025-12-24

erlang - 26.2.5.16
Ebuild name:

dev-lang/erlang-26.2.5.16

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2025-12-24

erlang - 27.3.4.6
Ebuild name:

dev-lang/erlang-27.3.4.6

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2025-12-24

erlang - 28.2
Ebuild name:

dev-lang/erlang-28.2

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2025-12-24

fheroes2 - 1.1.13
Ebuild name:

games-engines/fheroes2-1.1.13

Description

Recreation of HoMM2 game engine

Added to portage

2025-12-24

fixtures - 4.2.8
Ebuild name:

dev-python/fixtures-4.2.8

Description

Fixtures, reusable state for writing clean tests and more

Added to portage

2025-12-24

flang - 22.0.0_pre20251223
Ebuild name:

llvm-core/flang-22.0.0_pre20251223

Description

LLVM's Fortran frontend

Added to portage

2025-12-24

flang-rt - 22.0.0_pre20251223
Ebuild name:

llvm-runtimes/flang-rt-22.0.0_pre20251223

Description

LLVM's Fortran runtime

Added to portage

2025-12-24

freedm - 0.13.0-r1
Ebuild name:

games-fps/freedm-0.13.0-r1

Description

A 32-level game designed for competitive deathmatch play

Added to portage

2025-12-24

freedoom - 0.13.0-r1
Ebuild name:

games-fps/freedoom-0.13.0-r1

Description

A complete free-content single-player focused game based on the Doom e

Added to portage

2025-12-24

gdal - 3.12.1
Ebuild name:

sci-libs/gdal-3.12.1

Description

Translator library for raster geospatial data formats (includes OGR support)

Added to portage

2025-12-24

gegl - 0.4.66
Ebuild name:

media-libs/gegl-0.4.66

Description

A graph based image processing framework

Added to portage

2025-12-24

gimp - 3.2.0_rc2
Ebuild name:

media-gfx/gimp-3.2.0_rc2

Description

GNU Image Manipulation Program

Added to portage

2025-12-24

gnatdoc - 25.0.0-r5
Ebuild name:

dev-ada/gnatdoc-25.0.0-r5

Description

GNAT Documentation Generation Tool

Added to portage

2025-12-24

intervaltree - 3.2.1
Ebuild name:

dev-python/intervaltree-3.2.1

Description

Editable interval tree data structure for Python 2 and 3

Added to portage

2025-12-24

jsoncons - 1.5.0
Ebuild name:

dev-cpp/jsoncons-1.5.0

Description

C++ header-only library for JSON and JSON-like data formats

Added to portage

2025-12-24

kitty - 0.45.0
Ebuild name:

x11-terms/kitty-0.45.0

Description

Fast, feature-rich, GPU-based terminal

Added to portage

2025-12-24

kitty-shell-integration - 0.45.0
Ebuild name:

x11-terms/kitty-shell-integration-0.45.0

Description

Shell integration scripts for kitty, a GPU-based terminal

Added to portage

2025-12-24

kitty-terminfo - 0.45.0
Ebuild name:

x11-terms/kitty-terminfo-0.45.0

Description

Terminfo for kitty, a GPU-based terminal emulator

Added to portage

2025-12-24

langkit - 25.0.0-r7
Ebuild name:

dev-ada/langkit-25.0.0-r7

Description

A Python framework to generate language parsers

Added to portage

2025-12-24

libadalang-tools - 25.0.0-r3
Ebuild name:

dev-ada/libadalang-tools-25.0.0-r3

Description

Libadalang-based tools gnatpp, gnatmetric and gnatstub

Added to portage

2025-12-24

libclc - 22.0.0_pre20251223
Ebuild name:

llvm-core/libclc-22.0.0_pre20251223

Description

OpenCL C library

Added to portage

2025-12-24

libcxx - 22.0.0_pre20251223
Ebuild name:

llvm-runtimes/libcxx-22.0.0_pre20251223

Description

New implementation of the C++ standard library, targeting C

Added to portage

2025-12-24

libcxxabi - 22.0.0_pre20251223
Ebuild name:

llvm-runtimes/libcxxabi-22.0.0_pre20251223

Description

Low level support for a standard C++ library

Added to portage

2025-12-24

libgcc - 22.0.0_pre20251223
Ebuild name:

llvm-runtimes/libgcc-22.0.0_pre20251223

Description

Compiler runtime library for clang, compatible with libgcc_

Added to portage

2025-12-24

libgrapheme - 3.0.0
Ebuild name:

dev-libs/libgrapheme-3.0.0

Description

Unicode string library

Added to portage

2025-12-24

librepfunc - 1.10.0-r1
Ebuild name:

dev-libs/librepfunc-1.10.0-r1

Description

A collection of functions, classes and so on, for vdr plugins

Added to portage

2025-12-24

libunwind - 22.0.0_pre20251223
Ebuild name:

llvm-runtimes/libunwind-22.0.0_pre20251223

Description

C++ runtime stack unwinder from LLVM

Added to portage

2025-12-24

lit - 22.0.0_pre20251223
Ebuild name:

dev-python/lit-22.0.0_pre20251223

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2025-12-24

lld - 22.0.0_pre20251223
Ebuild name:

llvm-core/lld-22.0.0_pre20251223

Description

The LLVM linker (link editor)

Added to portage

2025-12-24

lldb - 22.0.0_pre20251223
Ebuild name:

llvm-core/lldb-22.0.0_pre20251223

Description

The LLVM debugger

Added to portage

2025-12-24

llvm - 22.0.0_pre20251223
Ebuild name:

dev-ml/llvm-22.0.0_pre20251223

Description

OCaml bindings for LLVM

Added to portage

2025-12-24

llvm - 22.0.0_pre20251223
Ebuild name:

llvm-core/llvm-22.0.0_pre20251223

Description

Low Level Virtual Machine

Added to portage

2025-12-24

llvm-common - 22.0.0_pre20251223
Ebuild name:

llvm-core/llvm-common-22.0.0_pre20251223

Description

Common files shared between multiple slots of LLVM

Added to portage

2025-12-24

mate-menus - 1.28.0-r1
Ebuild name:

mate-base/mate-menus-1.28.0-r1

Description

MATE menu system, implementing the F.D.O cross-desktop spec

Added to portage

2025-12-24

mate-notification-daemon - 1.28.5
Ebuild name:

x11-misc/mate-notification-daemon-1.28.5

Description

MATE Notification daemon

Added to portage

2025-12-24

mistune - 3.2.0
Ebuild name:

dev-python/mistune-3.2.0

Description

The fastest markdown parser in pure Python

Added to portage

2025-12-24

mkmf-lite - 0.7.4
Ebuild name:

dev-ruby/mkmf-lite-0.7.4

Description

light version of the the mkmf library designed for use as a library

Added to portage

2025-12-24

mlir - 22.0.0_pre20251223
Ebuild name:

llvm-core/mlir-22.0.0_pre20251223

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2025-12-24

nbclient - 0.10.4
Ebuild name:

dev-python/nbclient-0.10.4

Description

A client library for executing Jupyter notebooks

Added to portage

2025-12-24

ncurses - 6.5_p20251220
Ebuild name:

sys-libs/ncurses-6.5_p20251220

Description

Console display library

Added to portage

2025-12-24

net-snmp - 5.9.5.2
Ebuild name:

net-analyzer/net-snmp-5.9.5.2

Description

Software for generating and retrieving SNMP data

Added to portage

2025-12-24

nextcloud - 31.0.12
Ebuild name:

www-apps/nextcloud-31.0.12

Description

Personal cloud that runs on your own server

Added to portage

2025-12-24

nextcloud - 32.0.3
Ebuild name:

www-apps/nextcloud-32.0.3

Description

Personal cloud that runs on your own server

Added to portage

2025-12-24

nextcloud-client - 4.0.4
Ebuild name:

net-misc/nextcloud-client-4.0.4

Description

Desktop Syncing Client for Nextcloud

Added to portage

2025-12-24

nghttp2 - 1.68.0
Ebuild name:

net-libs/nghttp2-1.68.0

Description

HTTP/2 C Library

Added to portage

2025-12-24

nginx - 1.28.1
Ebuild name:

www-servers/nginx-1.28.1

Description

Added to portage

2025-12-24

nodejs - 24.11.1-r1
Ebuild name:

net-libs/nodejs-24.11.1-r1

Description

A JavaScript runtime built on Chrome's V8 JavaScript engine

Added to portage

2025-12-24

offload - 22.0.0_pre20251223
Ebuild name:

llvm-runtimes/offload-22.0.0_pre20251223

Description

OpenMP offloading support

Added to portage

2025-12-24

openmp - 22.0.0_pre20251223
Ebuild name:

llvm-runtimes/openmp-22.0.0_pre20251223

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2025-12-24

openpgp-keys-pam - 20230330
Ebuild name:

sec-keys/openpgp-keys-pam-20230330

Description

OpenPGP keys used by the linux-pam project

Added to portage

2025-12-24

owncloud-client - 6.0.2.17506
Ebuild name:

net-misc/owncloud-client-6.0.2.17506

Description

Synchronize files from ownCloud Server with your computer

Added to portage

2025-12-24

pdm - 2.26.3
Ebuild name:

dev-python/pdm-2.26.3

Description

Python package and dependency manager supporting the latest PEP standards

Added to portage

2025-12-24

pikepdf - 10.1.0
Ebuild name:

dev-python/pikepdf-10.1.0

Description

Python library to work with pdf files based on qpdf

Added to portage

2025-12-24

pkgcraft-tools - 0.0.31-r2
Ebuild name:

sys-apps/pkgcraft-tools-0.0.31-r2

Description

pkgcraft-based tools for Gentoo

Added to portage

2025-12-24

pkgcruft-git - 0.0.5-r2
Ebuild name:

dev-vcs/pkgcruft-git-0.0.5-r2

Description

QA support for verifying git commits via pkgcruft

Added to portage

2025-12-24

polly - 22.0.0_pre20251223
Ebuild name:

llvm-core/polly-22.0.0_pre20251223

Description

Polyhedral optimizations for LLVM

Added to portage

2025-12-24

postfix - 3.11.0_rc1
Ebuild name:

mail-mta/postfix-3.11.0_rc1

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2025-12-24

postfix - 3.12_pre20251223
Ebuild name:

mail-mta/postfix-3.12_pre20251223

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2025-12-24

prettier-ada - 25.0.0-r3
Ebuild name:

dev-ada/prettier-ada-25.0.0-r3

Description

Port of the Prettier formatter to the Ada programming language

Added to portage

2025-12-24

psutil - 7.2.0
Ebuild name:

dev-python/psutil-7.2.0

Description

Retrieve information on running processes and system utilization

Added to portage

2025-12-24

pwndbg - 20250530-r2
Ebuild name:

dev-debug/pwndbg-20250530-r2

Description

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

Added to portage

2025-12-24

pwndbg - 20251010-r2
Ebuild name:

dev-debug/pwndbg-20251010-r2

Description

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

Added to portage

2025-12-24

pwndbg - 20251020-r2
Ebuild name:

dev-debug/pwndbg-20251020-r2

Description

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

Added to portage

2025-12-24

pyserial - 3.5-r3
Ebuild name:

dev-python/pyserial-3.5-r3

Description

Python Serial Port extension

Added to portage

2025-12-24

qlog - 0.47.1
Ebuild name:

media-radio/qlog-0.47.1

Description

Amateur radio logbook software

Added to portage

2025-12-24

qlog - 9999
Ebuild name:

media-radio/qlog-9999

Description

Amateur radio logbook software

Added to portage

2025-12-24

rdoc - 7.0.2
Ebuild name:

dev-ruby/rdoc-7.0.2

Description

An extended version of the RDoc library from Ruby 1.8

Added to portage

2025-12-24

rspamd - 3.14.2
Ebuild name:

mail-filter/rspamd-3.14.2

Description

Rapid spam filtering system

Added to portage

2025-12-24

rubygems - 4.0.3
Ebuild name:

dev-ruby/rubygems-4.0.3

Description

Centralized Ruby extension management system

Added to portage

2025-12-24

scrcpy - 3.3.4
Ebuild name:

app-mobilephone/scrcpy-3.3.4

Description

Display and control your Android device

Added to portage

2025-12-24

sequoia-sq - 1.3.1-r1
Ebuild name:

app-crypt/sequoia-sq-1.3.1-r1

Description

CLI of the Sequoia OpenPGP implementation

Added to portage

2025-12-24

signal-desktop-bin - 7.83.0
Ebuild name:

net-im/signal-desktop-bin-7.83.0

Description

Allows you to send and receive messages of Signal Messenger on you

Added to portage

2025-12-24

siril - 1.4.0
Ebuild name:

sci-astronomy/siril-1.4.0

Description

A free astronomical image processing software

Added to portage

2025-12-24

socat - 1.8.1.0
Ebuild name:

net-misc/socat-1.8.1.0

Description

Multipurpose relay (SOcket CAT)

Added to portage

2025-12-24

spirv-llvm-translator - 22.0.0_pre20251123
Ebuild name:

dev-util/spirv-llvm-translator-22.0.0_pre20251123

Description

Bi-directional translator between SPIR-V and LLVM

Added to portage

2025-12-24

sqlmap - 1.9.12
Ebuild name:

dev-db/sqlmap-1.9.12

Description

An automatic SQL injection and database takeover tool

Added to portage

2025-12-24

steve - 1.3.1
Ebuild name:

dev-build/steve-1.3.1

Description

A load-balancing jobserver for Gentoo

Added to portage

2025-12-24

strawberry - 1.2.16
Ebuild name:

media-sound/strawberry-1.2.16

Description

Modern music player and library organizer based on Clementine and Qt

Added to portage

2025-12-24

subliminal - 2.5.0
Ebuild name:

media-video/subliminal-2.5.0

Description

Python library to search and download subtitles

Added to portage

2025-12-24

subrandr - 1.0.0
Ebuild name:

media-libs/subrandr-1.0.0

Description

Subtitle rendering library for rendering non-ASS subtitles

Added to portage

2025-12-24

tcpreplay - 4.5.2
Ebuild name:

net-analyzer/tcpreplay-4.5.2

Description

Utilities for editing and replaying previously captured network traffi

Added to portage

2025-12-24

test-unit - 3.7.4
Ebuild name:

dev-ruby/test-unit-3.7.4

Description

An xUnit family unit testing framework for Ruby

Added to portage

2025-12-24

test-unit - 3.7.5
Ebuild name:

dev-ruby/test-unit-3.7.5

Description

An xUnit family unit testing framework for Ruby

Added to portage

2025-12-24

tlp - 1.9.0-r2
Ebuild name:

sys-power/tlp-1.9.0-r2

Description

Optimize laptop battery life

Added to portage

2025-12-24

tome - 2.4.0_p20251212
Ebuild name:

games-roguelike/tome-2.4.0_p20251212

Description

Fantasy adventure game, based on the works of J.R.R. Tolkien

Added to portage

2025-12-24

typeprof - 0.31.1
Ebuild name:

dev-ruby/typeprof-0.31.1

Description

Performs a type analysis of non-annotated Ruby code

Added to portage

2025-12-24

unearth - 0.18.2
Ebuild name:

dev-python/unearth-0.18.2

Description

A utility to fetch and download python packages

Added to portage

2025-12-24

uzdoom - 4.14.3
Ebuild name:

games-engines/uzdoom-4.14.3

Description

Modder-friendly hardware-accelerated source port of the DOOM engine

Added to portage

2025-12-24

vcr - 6.4.0
Ebuild name:

dev-ruby/vcr-6.4.0

Description

Records your test suite's HTTP interactions and replay them during test runs

Added to portage

2025-12-24

vss-extra - 26.0.0
Ebuild name:

dev-ada/vss-extra-26.0.0

Description

A high level string and text processing library

Added to portage

2025-12-24

vss-text - 25.0.0-r1
Ebuild name:

dev-ada/vss-text-25.0.0-r1

Description

A high level string and text processing library

Added to portage

2025-12-24

vss-text - 26.0.0
Ebuild name:

dev-ada/vss-text-26.0.0

Description

A high level string and text processing library

Added to portage

2025-12-24

wireplumber - 0.5.13
Ebuild name:

media-video/wireplumber-0.5.13

Description

Replacement for pipewire-media-session

Added to portage

2025-12-24

wtfis - 0.14.0
Ebuild name:

net-analyzer/wtfis-0.14.0

Description

Passive hostname, domain and IP lookup tool for non-robots

Added to portage

2025-12-24

xboard - 4.9.1-r1
Ebuild name:

games-board/xboard-4.9.1-r1

Description

GUI for gnuchess and for internet chess servers

Added to portage

2025-12-24

yara - 4.5.5
Ebuild name:

app-forensics/yara-4.5.5

Description

A malware identification and classification tool

Added to portage

2025-12-24

yara-x - 1.10.0
Ebuild name:

app-forensics/yara-x-1.10.0

Description

A malware identification and classification tool

Added to portage

2025-12-24

zmusic - 1.3.0
Ebuild name:

media-libs/zmusic-1.3.0

Description

UZDoom's music system as a standalone library

Added to portage

2025-12-24

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