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:

86932

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-17
clang - 24.0.0.9999
Ebuild name:

dev-python/clang-24.0.0.9999

Description

Python bindings for llvm-core/clang

Added to portage

2026-07-17

clang - 24.0.0.9999
Ebuild name:

llvm-core/clang-24.0.0.9999

Description

C language family frontend for LLVM

Added to portage

2026-07-17

clang - 24.0.0_pre20260716
Ebuild name:

dev-python/clang-24.0.0_pre20260716

Description

Python bindings for llvm-core/clang

Added to portage

2026-07-17

clang - 24.0.0_pre20260716
Ebuild name:

llvm-core/clang-24.0.0_pre20260716

Description

C language family frontend for LLVM

Added to portage

2026-07-17

clang-common - 24.0.0.9999
Ebuild name:

llvm-core/clang-common-24.0.0.9999

Description

Common files shared between multiple slots of clang

Added to portage

2026-07-17

clang-common - 24.0.0_pre20260716
Ebuild name:

llvm-core/clang-common-24.0.0_pre20260716

Description

Common files shared between multiple slots of clang

Added to portage

2026-07-17

clang-linker-config - 24
Ebuild name:

llvm-core/clang-linker-config-24

Description

Default linker configuration for clang

Added to portage

2026-07-17

clang-rtlib-config - 24
Ebuild name:

llvm-runtimes/clang-rtlib-config-24

Description

Default rtlib configuration for clang

Added to portage

2026-07-17

clang-runtime - 24
Ebuild name:

llvm-runtimes/clang-runtime-24

Description

Meta-ebuild for clang runtime libraries

Added to portage

2026-07-17

clang-stdlib-config - 24
Ebuild name:

llvm-runtimes/clang-stdlib-config-24

Description

Default C++ library configuration for clang

Added to portage

2026-07-17

clang-toolchain-symlinks - 24
Ebuild name:

llvm-core/clang-toolchain-symlinks-24

Description

Symlinks to use Clang on GCC-free system

Added to portage

2026-07-17

clang-unwindlib-config - 24
Ebuild name:

llvm-runtimes/clang-unwindlib-config-24

Description

Default unwindlib configuration for clang

Added to portage

2026-07-17

compiler-rt - 24.0.0.9999
Ebuild name:

llvm-runtimes/compiler-rt-24.0.0.9999

Description

Compiler runtime library for clang (built-in part)

Added to portage

2026-07-17

dnsruby - 1.74.0
Ebuild name:

dev-ruby/dnsruby-1.74.0

Description

A pure Ruby DNS client library

Added to portage

2026-07-17

flang - 24.0.0.9999
Ebuild name:

llvm-core/flang-24.0.0.9999

Description

LLVM's Fortran frontend

Added to portage

2026-07-17

flang - 24.0.0_pre20260716
Ebuild name:

llvm-core/flang-24.0.0_pre20260716

Description

LLVM's Fortran frontend

Added to portage

2026-07-17

gtkdiskfree - 2.0.4_p20200224-r3
Ebuild name:

app-admin/gtkdiskfree-2.0.4_p20200224-r3

Description

Graphical tool to show free disk space like df

Added to portage

2026-07-17

ibus - 1.5.34-r2
Ebuild name:

app-i18n/ibus-1.5.34-r2

Description

Intelligent Input Bus for Linux / Unix OS

Added to portage

2026-07-17

intel-metrics-discovery - 1.16.190
Ebuild name:

dev-libs/intel-metrics-discovery-1.16.190

Description

A user mode library that provides access to GPU performan

Added to portage

2026-07-17

ksystemstats - 6.7.3-r1
Ebuild name:

kde-plasma/ksystemstats-6.7.3-r1

Description

Plugin-based system monitoring daemon

Added to portage

2026-07-17

lit - 24.0.0.9999
Ebuild name:

dev-python/lit-24.0.0.9999

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-07-17

lit - 24.0.0_pre20260716
Ebuild name:

dev-python/lit-24.0.0_pre20260716

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-07-17

lld - 24.0.0.9999
Ebuild name:

llvm-core/lld-24.0.0.9999

Description

The LLVM linker (link editor)

Added to portage

2026-07-17

lld - 24.0.0_pre20260716
Ebuild name:

llvm-core/lld-24.0.0_pre20260716

Description

The LLVM linker (link editor)

Added to portage

2026-07-17

lld-toolchain-symlinks - 24
Ebuild name:

llvm-core/lld-toolchain-symlinks-24

Description

Symlinks to use LLD on binutils-free system

Added to portage

2026-07-17

lldb - 24.0.0.9999
Ebuild name:

llvm-core/lldb-24.0.0.9999

Description

The LLVM debugger

Added to portage

2026-07-17

lldb - 24.0.0_pre20260716
Ebuild name:

llvm-core/lldb-24.0.0_pre20260716

Description

The LLVM debugger

Added to portage

2026-07-17

llvm - 24.0.0.9999
Ebuild name:

dev-ml/llvm-24.0.0.9999

Description

OCaml bindings for LLVM

Added to portage

2026-07-17

llvm - 24.0.0.9999
Ebuild name:

llvm-core/llvm-24.0.0.9999

Description

Low Level Virtual Machine

Added to portage

2026-07-17

llvm - 24.0.0_pre20260716
Ebuild name:

dev-ml/llvm-24.0.0_pre20260716

Description

OCaml bindings for LLVM

Added to portage

2026-07-17

llvm - 24.0.0_pre20260716
Ebuild name:

llvm-core/llvm-24.0.0_pre20260716

Description

Low Level Virtual Machine

Added to portage

2026-07-17

llvm-common - 24.0.0.9999
Ebuild name:

llvm-core/llvm-common-24.0.0.9999

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-07-17

llvm-common - 24.0.0_pre20260716
Ebuild name:

llvm-core/llvm-common-24.0.0_pre20260716

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-07-17

llvm-toolchain-symlinks - 24
Ebuild name:

llvm-core/llvm-toolchain-symlinks-24

Description

Symlinks to use LLVM on binutils-free system

Added to portage

2026-07-17

llvmgold - 24
Ebuild name:

llvm-core/llvmgold-24

Description

LLVMgold plugin symlink for autoloading

Added to portage

2026-07-17

metee - 6.2.5
Ebuild name:

dev-libs/metee-6.2.5

Description

Cross-platform access library for Intel CSME HECI interface

Added to portage

2026-07-17

mlir - 24.0.0.9999
Ebuild name:

llvm-core/mlir-24.0.0.9999

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-07-17

mlir - 24.0.0_pre20260716
Ebuild name:

llvm-core/mlir-24.0.0_pre20260716

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-07-17

multiple-cursors - 1.5.0
Ebuild name:

app-emacs/multiple-cursors-1.5.0

Description

Multiple cursors for Emacs

Added to portage

2026-07-17

opencl-clang - 17.0.8
Ebuild name:

dev-libs/opencl-clang-17.0.8

Description

OpenCL-oriented thin wrapper library around clang

Added to portage

2026-07-17

opencl-clang - 18.1.7
Ebuild name:

dev-libs/opencl-clang-18.1.7

Description

OpenCL-oriented thin wrapper library around clang

Added to portage

2026-07-17

opencl-clang - 19.1.5
Ebuild name:

dev-libs/opencl-clang-19.1.5

Description

OpenCL-oriented thin wrapper library around clang

Added to portage

2026-07-17

opencl-clang - 20.1.5
Ebuild name:

dev-libs/opencl-clang-20.1.5

Description

OpenCL-oriented thin wrapper library around clang

Added to portage

2026-07-17

opencl-clang - 21.1.5
Ebuild name:

dev-libs/opencl-clang-21.1.5

Description

OpenCL-oriented thin wrapper library around clang

Added to portage

2026-07-17

opencl-clang - 22.1.2
Ebuild name:

dev-libs/opencl-clang-22.1.2

Description

OpenCL-oriented thin wrapper library around clang

Added to portage

2026-07-17

openmortal - 0.7-r5
Ebuild name:

games-arcade/openmortal-0.7-r5

Description

Spoof of the famous Mortal Kombat game

Added to portage

2026-07-17

plasma-workspace - 6.7.3-r1
Ebuild name:

kde-plasma/plasma-workspace-6.7.3-r1

Description

KDE Plasma workspace

Added to portage

2026-07-17

polly - 24.0.0.9999
Ebuild name:

llvm-core/polly-24.0.0.9999

Description

Polyhedral optimizations for LLVM

Added to portage

2026-07-17

polly - 24.0.0_pre20260716
Ebuild name:

llvm-core/polly-24.0.0_pre20260716

Description

Polyhedral optimizations for LLVM

Added to portage

2026-07-17

spirv-llvm-translator - 24.0.0_pre20260714
Ebuild name:

dev-util/spirv-llvm-translator-24.0.0_pre20260714

Description

Bi-directional translator between SPIR-V and LLVM

Added to portage

2026-07-17

2026-07-16
AusweisApp - 2.5.4
Ebuild name:

sys-auth/AusweisApp-2.5.4

Description

Official authentication app for German ID cards and residence permits

Added to portage

2026-07-16

Module-CPANTS-Analyse - 1.30.0
Ebuild name:

dev-perl/Module-CPANTS-Analyse-1.30.0

Description

Generate Kwalitee ratings for a distribution

Added to portage

2026-07-16

awscli - 1.45.49
Ebuild name:

app-admin/awscli-1.45.49

Description

Universal Command Line Environment for AWS

Added to portage

2026-07-16

bedrock-server - 1.26.33.2
Ebuild name:

games-server/bedrock-server-1.26.33.2

Description

The official bedrock (non-java) based server for the sandbox

Added to portage

2026-07-16

boto3 - 1.43.49
Ebuild name:

dev-python/boto3-1.43.49

Description

The AWS SDK for Python

Added to portage

2026-07-16

botocore - 1.43.49
Ebuild name:

dev-python/botocore-1.43.49

Description

Low-level, data-driven core of boto 3

Added to portage

2026-07-16

burp - 3.3.0-r1
Ebuild name:

app-backup/burp-3.3.0-r1

Description

Network backup and restore client and server for Unix and Windows

Added to portage

2026-07-16

c-blosc2 - 3.2.3
Ebuild name:

dev-libs/c-blosc2-3.2.3

Description

Blocking, shuffling and lossless compression library

Added to portage

2026-07-16

clang - 23.0.0_pre20260716
Ebuild name:

dev-python/clang-23.0.0_pre20260716

Description

Python bindings for llvm-core/clang

Added to portage

2026-07-16

clang - 23.0.0_pre20260716
Ebuild name:

llvm-core/clang-23.0.0_pre20260716

Description

C language family frontend for LLVM

Added to portage

2026-07-16

clang-common - 23.0.0_pre20260716
Ebuild name:

llvm-core/clang-common-23.0.0_pre20260716

Description

Common files shared between multiple slots of clang

Added to portage

2026-07-16

claude-code - 2.1.211
Ebuild name:

dev-util/claude-code-2.1.211

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-07-16

compiler-rt - 23.0.0_pre20260716
Ebuild name:

llvm-runtimes/compiler-rt-23.0.0_pre20260716

Description

Compiler runtime library for clang (built-in part)

Added to portage

2026-07-16

compiler-rt-sanitizers - 23.0.0_pre20260716
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-23.0.0_pre20260716

Description

Compiler runtime libraries for clang (sanit

Added to portage

2026-07-16

courier - 2.0.4
Ebuild name:

mail-mta/courier-2.0.4

Description

An MTA designed specifically for maildirs

Added to portage

2026-07-16

coverage - 7.15.2
Ebuild name:

dev-python/coverage-7.15.2

Description

Code coverage measurement for Python

Added to portage

2026-07-16

dos2unix - 7.5.6
Ebuild name:

app-text/dos2unix-7.5.6

Description

Convert DOS or MAC text files to UNIX format or vice versa

Added to portage

2026-07-16

emlop - 0.9.0
Ebuild name:

app-portage/emlop-0.9.0

Description

A fast, accurate, ergonomic emerge.log parser

Added to portage

2026-07-16

fastfetch - 2.66.0
Ebuild name:

app-misc/fastfetch-2.66.0

Description

Fast neofetch-like system information tool

Added to portage

2026-07-16

flang - 23.0.0_pre20260716
Ebuild name:

llvm-core/flang-23.0.0_pre20260716

Description

LLVM's Fortran frontend

Added to portage

2026-07-16

flang-rt - 23.0.0_pre20260716
Ebuild name:

llvm-runtimes/flang-rt-23.0.0_pre20260716

Description

LLVM's Fortran runtime

Added to portage

2026-07-16

foomatic-db-engine - 4.0.12-r3
Ebuild name:

net-print/foomatic-db-engine-4.0.12-r3

Description

Generates ppds out of xml foomatic printer description files

Added to portage

2026-07-16

git-credential-manager - 2.9.1
Ebuild name:

dev-vcs/git-credential-manager-2.9.1

Description

Secure Git credential storage supporing GitHub, Azure Repos, a

Added to portage

2026-07-16

inline-snapshot - 0.35.1
Ebuild name:

dev-python/inline-snapshot-0.35.1

Description

Create and update inline snapshots in your Python tests

Added to portage

2026-07-16

js8call - 3.0.3
Ebuild name:

media-radio/js8call-3.0.3

Description

Weak signal ham radio communication

Added to portage

2026-07-16

julia-bin - 1.10.0-r2
Ebuild name:

dev-lang/julia-bin-1.10.0-r2

Description

High-performance programming language for technical computing

Added to portage

2026-07-16

julia-bin - 1.10.9-r1
Ebuild name:

dev-lang/julia-bin-1.10.9-r1

Description

High-performance programming language for technical computing

Added to portage

2026-07-16

julia-bin - 1.11.5-r2
Ebuild name:

dev-lang/julia-bin-1.11.5-r2

Description

High-performance programming language for technical computing

Added to portage

2026-07-16

julia-bin - 1.12.1-r1
Ebuild name:

dev-lang/julia-bin-1.12.1-r1

Description

High-performance programming language for technical computing

Added to portage

2026-07-16

julia-bin - 1.8.3-r2
Ebuild name:

dev-lang/julia-bin-1.8.3-r2

Description

High-performance programming language for technical computing

Added to portage

2026-07-16

julia-bin - 1.8.5-r2
Ebuild name:

dev-lang/julia-bin-1.8.5-r2

Description

High-performance programming language for technical computing

Added to portage

2026-07-16

julia-bin - 1.9.4-r2
Ebuild name:

dev-lang/julia-bin-1.9.4-r2

Description

High-performance programming language for technical computing

Added to portage

2026-07-16

kafka-bin - 4.3.1
Ebuild name:

net-misc/kafka-bin-4.3.1

Description

A high-throughput distributed messaging system

Added to portage

2026-07-16

libclc - 23.0.0_pre20260716
Ebuild name:

llvm-runtimes/libclc-23.0.0_pre20260716

Description

OpenCL C library

Added to portage

2026-07-16

libcxx - 23.0.0_pre20260716
Ebuild name:

llvm-runtimes/libcxx-23.0.0_pre20260716

Description

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

Added to portage

2026-07-16

libcxxabi - 23.0.0_pre20260716
Ebuild name:

llvm-runtimes/libcxxabi-23.0.0_pre20260716

Description

Low level support for a standard C++ library

Added to portage

2026-07-16

libgcc - 23.0.0_pre20260716
Ebuild name:

llvm-runtimes/libgcc-23.0.0_pre20260716

Description

Compiler runtime library for clang, compatible with libgcc_

Added to portage

2026-07-16

libunwind - 23.0.0_pre20260716
Ebuild name:

llvm-runtimes/libunwind-23.0.0_pre20260716

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-07-16

libupnp - 22.0.4
Ebuild name:

net-libs/libupnp-22.0.4

Description

An Portable Open Source UPnP Development Kit

Added to portage

2026-07-16

lit - 23.0.0_pre20260716
Ebuild name:

dev-python/lit-23.0.0_pre20260716

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-07-16

lld - 23.0.0_pre20260716
Ebuild name:

llvm-core/lld-23.0.0_pre20260716

Description

The LLVM linker (link editor)

Added to portage

2026-07-16

lldb - 23.0.0_pre20260716
Ebuild name:

llvm-core/lldb-23.0.0_pre20260716

Description

The LLVM debugger

Added to portage

2026-07-16

llvm - 23.0.0_pre20260716
Ebuild name:

dev-ml/llvm-23.0.0_pre20260716

Description

OCaml bindings for LLVM

Added to portage

2026-07-16

llvm - 23.0.0_pre20260716
Ebuild name:

llvm-core/llvm-23.0.0_pre20260716

Description

Low Level Virtual Machine

Added to portage

2026-07-16

llvm-common - 23.0.0_pre20260716
Ebuild name:

llvm-core/llvm-common-23.0.0_pre20260716

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-07-16

mesa - 26.1.5
Ebuild name:

media-libs/mesa-26.1.5

Description

OpenGL-like graphic library for Linux

Added to portage

2026-07-16

mesa_clc - 26.1.5
Ebuild name:

dev-util/mesa_clc-26.1.5

Description

mesa_clc tool used for building OpenCL C to SPIR-V

Added to portage

2026-07-16

miniz - 3.1.2
Ebuild name:

dev-libs/miniz-3.1.2

Description

Lossless, high performance data compression library

Added to portage

2026-07-16

mlir - 23.0.0_pre20260716
Ebuild name:

llvm-core/mlir-23.0.0_pre20260716

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-07-16

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-16

mysqltuner - 2.9.0
Ebuild name:

dev-db/mysqltuner-2.9.0

Description

Makes recommendations for increased performance and stability for MySQL

Added to portage

2026-07-16

nbxmpp - 7.3.0
Ebuild name:

dev-python/nbxmpp-7.3.0

Description

Python library to use Jabber/XMPP networks in a non-blocking way

Added to portage

2026-07-16

netpbm - 11.15.3
Ebuild name:

media-libs/netpbm-11.15.3

Description

A set of utilities for converting to/from the netpbm (and related) format

Added to portage

2026-07-16

nginx - 1.30.4
Ebuild name:

www-servers/nginx-1.30.4

Description

Added to portage

2026-07-16

nginx - 1.31.3
Ebuild name:

www-servers/nginx-1.31.3

Description

Added to portage

2026-07-16

ntfs3g - 2026.7.7
Ebuild name:

sys-fs/ntfs3g-2026.7.7

Description

Open source read-write NTFS driver that runs under FUSE

Added to portage

2026-07-16

nuspell - 5.1.8
Ebuild name:

app-text/nuspell-5.1.8

Description

Spell checker library and CLI for complex natural languages

Added to portage

2026-07-16

ollama - 0.31.2-r2
Ebuild name:

sci-ml/ollama-0.31.2-r2

Description

Get up and running with Llama 3, Mistral, Gemma, and other language models

Added to portage

2026-07-16

ollama - 0.32.1
Ebuild name:

sci-ml/ollama-0.32.1

Description

Get up and running with Llama 3, Mistral, Gemma, and other language models

Added to portage

2026-07-16

openmp - 23.0.0_pre20260716
Ebuild name:

llvm-runtimes/openmp-23.0.0_pre20260716

Description

OpenMP runtime libraries for LLVM/clang compiler

Added to portage

2026-07-16

openmp-amdgcn-amd-amdhsa - 23.0.0_pre20260716
Ebuild name:

llvm-runtimes/openmp-amdgcn-amd-amdhsa-23.0.0_pre20260716

Description

OpenMP target library for amdgcn devices

Added to portage

2026-07-16

openmp-nvptx64-nvidia-cuda - 23.0.0_pre20260716
Ebuild name:

llvm-runtimes/openmp-nvptx64-nvidia-cuda-23.0.0_pre20260716

Description

OpenMP target library for nvptx64 devic

Added to portage

2026-07-16

openmp-spirv64-intel - 23.0.0_pre20260716
Ebuild name:

llvm-runtimes/openmp-spirv64-intel-23.0.0_pre20260716

Description

OpenMP target library for spirv64 Intel devic

Added to portage

2026-07-16

openpgp-keys-grke - 20260714
Ebuild name:

sec-keys/openpgp-keys-grke-20260714

Description

OpenPGP key used by Graham Keeling

Added to portage

2026-07-16

openrct2 - 0.5.3
Ebuild name:

games-simulation/openrct2-0.5.3

Description

An open source re-implementation of Chris Sawyer's RollerCoaster Ty

Added to portage

2026-07-16

openrdap - 0.10.0
Ebuild name:

net-misc/openrdap-0.10.0

Description

RDAP command line client

Added to portage

2026-07-16

pandora_box - 0.22.0
Ebuild name:

sys-apps/pandora_box-0.22.0

Description

Syd's log inspector & profile writer

Added to portage

2026-07-16

perl - 5.44.0
Ebuild name:

dev-lang/perl-5.44.0

Description

Larry Wall's Practical Extraction and Report Language

Added to portage

2026-07-16

perl-IO-Compress - 2.223.0-r1
Ebuild name:

virtual/perl-IO-Compress-2.223.0-r1

Description

Virtual for

Added to portage

2026-07-16

perl-Module-CoreList - 5.202.607.80-r1
Ebuild name:

virtual/perl-Module-CoreList-5.202.607.80-r1

Description

Virtual for

Added to portage

2026-07-16

pf-sources - 7.1_p6
Ebuild name:

sys-kernel/pf-sources-7.1_p6

Description

Added to portage

2026-07-16

pg_wait_sampling - 1.1.11
Ebuild name:

dev-db/pg_wait_sampling-1.1.11

Description

Sampling based statistics of wait events

Added to portage

2026-07-16

pixi - 0.73.0
Ebuild name:

dev-util/pixi-0.73.0

Description

A package management and workflow tool

Added to portage

2026-07-16

plex-media-server - 1.43.3.10828
Ebuild name:

media-tv/plex-media-server-1.43.3.10828

Description

Free media library that is intended for use with a plex cli

Added to portage

2026-07-16

polly - 23.0.0_pre20260716
Ebuild name:

llvm-core/polly-23.0.0_pre20260716

Description

Polyhedral optimizations for LLVM

Added to portage

2026-07-16

postgresql - 19_beta2
Ebuild name:

dev-db/postgresql-19_beta2

Description

PostgreSQL RDBMS

Added to portage

2026-07-16

powa-archivist - 5.2.0
Ebuild name:

dev-db/powa-archivist-5.2.0

Description

PostgreSQL Workload Analyzer Archivist

Added to portage

2026-07-16

projectile - 3.2.1
Ebuild name:

app-emacs/projectile-3.2.1

Description

A project interaction library for Emacs

Added to portage

2026-07-16

python-openstackclient - 10.2.1
Ebuild name:

dev-python/python-openstackclient-10.2.1

Description

A client for the OpenStack APIs

Added to portage

2026-07-16

python3-discogs-client - 2.9
Ebuild name:

dev-python/python3-discogs-client-2.9

Description

Continuation of the official Python API client for Discogs

Added to portage

2026-07-16

quassel - 0.14.50_pre20260525-r1
Ebuild name:

net-irc/quassel-0.14.50_pre20260525-r1

Description

Qt/KDE IRC client supporting a remote daemon for 24/7 connec

Added to portage

2026-07-16

quiche - 0.29.3
Ebuild name:

net-libs/quiche-0.29.3

Description

Implementation of the QUIC transport protocol and HTTP/3

Added to portage

2026-07-16

ripgrep - 15.2.0
Ebuild name:

sys-apps/ripgrep-15.2.0

Description

Search tool that combines the usability of ag with the raw speed of grep

Added to portage

2026-07-16

signal-desktop-bin - 8.18.0
Ebuild name:

net-im/signal-desktop-bin-8.18.0

Description

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

Added to portage

2026-07-16

slade - 3.2.6-r2
Ebuild name:

games-util/slade-3.2.6-r2

Description

Modern editor for Doom-engine based games and source ports

Added to portage

2026-07-16

spirv-llvm-translator - 23.0.0_pre20260714
Ebuild name:

dev-util/spirv-llvm-translator-23.0.0_pre20260714

Description

Bi-directional translator between SPIR-V and LLVM

Added to portage

2026-07-16

stress-ng - 0.21.04
Ebuild name:

app-benchmarks/stress-ng-0.21.04

Description

Stress test for a computer system with various selectable ways

Added to portage

2026-07-16

stripe - 15.3.1
Ebuild name:

dev-python/stripe-15.3.1

Description

Stripe Python bindings

Added to portage

2026-07-16

tomenet - 4.9.3
Ebuild name:

games-roguelike/tomenet-4.9.3

Description

MMORPG based on the works of J.R.R. Tolkien

Added to portage

2026-07-16

translate-toolkit - 3.19.15
Ebuild name:

dev-python/translate-toolkit-3.19.15

Description

Toolkit to convert between many translation formats

Added to portage

2026-07-16

typer - 0.27.0
Ebuild name:

dev-python/typer-0.27.0

Description

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

Added to portage

2026-07-16

unicode-segmentation-rs - 0.3.0
Ebuild name:

dev-python/unicode-segmentation-rs-0.3.0

Description

Unicode segmentation and width for Python using Rust

Added to portage

2026-07-16

unifi - 10.5.54
Ebuild name:

net-wireless/unifi-10.5.54

Description

A Management Controller for Ubiquiti Networks UniFi APs

Added to portage

2026-07-16

uv - 0.11.29
Ebuild name:

dev-python/uv-0.11.29

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-07-16

uv-build - 0.11.29
Ebuild name:

dev-python/uv-build-0.11.29

Description

PEP517 uv build backend

Added to portage

2026-07-16

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