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:

88036

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: Installation Guides

Summary

This text describes the installation and configuration of a heavy duty internet server running a gentoo linux distribution. The server will have to run 24/7 with minimum downtime for maintenance and is connected to a 100MBit Internet backbone. I choose gentoo as distribution because of the really fast availability of new versions and security patches for all installed packages. Everything will be compiled for the special needs of this maschine with various security enhancement features which ship with the available glibc/gcc versions (like stack smashing protections).

Changelog

Previous versions used to split the swap space across the raid harddiscs and not to mirror it. In case of a hard disc failure your system might(will) crash. This is not intended... (Thanks to Nick Rosier to point this out).

Note

This howto is NOT suited for users who run their first linux (or gentoo) install. Previous linux knowledge is needed, not every detail will be explained here.

System descriptions

Hardware

The system is a dual Xeon 2.66 Ghz with 512KB cache size and enabled hyperthreading.

System storage will be 2 80 GB HDDs running in a raid 1 with network backup every night. The filesystem will be XFS on a software raid 1 (mirroring) system.

Memory: 1GB, build in network card, no sound used, onboard graphics.

The machine will have an UPS and external cooling and will be mounted in a 19" rack.

Software

The system will be a heavy duty webserver running at least the following services/daemons:

  • Apache 2 as webserver (with many virtual hosts)
  • openLDAP for authentication for smtp/imap/pop3 and other login services, but not for system login
  • postfix with sasl2 support as MTA (Mail Transfer Agent)
  • courier-imap for imap access
  • courier-pop3
  • mysql as database backend
  • php (hardened) for various web frontends
  • LeopardCMS (a highspeed content management system written in C) for websites
  • ldapphpadmin for administrating the ldap server
  • squirrelmail as webmail service
  • awstats for website statistics

Installation

The basic installation is explained in the wonderful gentoo installation handbook.

I will only describe the modification on each step.

I will use a stage 1 installation with the minimal boot CD.

Installation in quick style (refer to the handbook if you don't know how to do the individual step(s))

Booting:

  • Boot from the CD, load the right network drivers
  • Change root password to something we know.
  • Configure the network with the given ip address dns servers etc.
  • Start sshd (optional)

Partitioning the hdd(s)

I'm using fdisk to partition the hdds, use whatever you like best.

Attention: To be able to use the raid 1, both hdds must be partitioned exactly identical, so write down the setting when partitioning.

My HDD layout :

/dev/hda1 boot partition 10 MB,  partition type: fd (Linux raid autodetect)
/dev/hda2 swap partition 250 MB, partition type: 82 (Linux swap)
/dev/hda3 root partition remaining space, partition type: fd (Linux raid autodetect)
The same applies to the 2nd HDD.

Setting up the raid 1

edit/create the file /etc/raidtab and enter the following (adjust the devices if neccessary)

raiddev         /dev/md0
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda1
raid-disk       0
device          /dev/hdc1
raid-disk       1

raiddev         /dev/md2
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda3
raid-disk       0
device          /dev/hdc3
raid-disk       1

In case you want to mirror the swap:

raiddev         /dev/md1
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda2
raid-disk       0
device          /dev/hdc2
raid-disk       1

Note: I do not use a raid for the swap, I will explain the swap setup a bit later.
Please also see the comment at the bottom of this page, why this may cause trouble on a harddisk failure.

start the raid by running

raidstart --all
enter "cat /proc/mdstat"

You should see something like this:

Personalities : [raid1]
md0 : active raid1 hda1[1] hdc1[1]
      XXX blocks [2/2] [UU]
md2 : active raid1 hda3[1] hdc3[1]
      YYY blocks [2/2] [UU]

Now, after your raid is up and running, don't think about touching /dev/hda or /dev/hdc directly again. Only use /dev/md0 or /dev/md2.

Applying a Filesystem to a Partition

create your filesystems like it is described in the handbook, only use /dev/md0 and /dev/md2 for the target devices.

Activate the Swap Partitions

Because we are using 2 identical hdds, we have 2 swap partitions that we enable both.

Later in the /etc/fstab config we can tune a bit to make our swap faster.

Mounting

Now we follow the handbook a bit for mounting and downloading the needed stage 1 tarball. Remember, use /dev/mdX as partitions.

Configuring the Compile Options

I prefer to to use the full make.conf.default for configuration, so I copy it over before editing.

cp /mnt/gentoo/etc/make.conf.default /mnt/gentoo/etc/make.conf
now we edit the file
nano -w /mnt/gentoo/etc/make.conf

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

CFLAGS="-march=pentium4 -O2 -pipe" be careful, if you enable the hardened toolchain, never use more than -O2 for compiling.

If you have an AMD cpu, or a pentium2/3 change the -march setting to your cpu.

I set the MAKEOPTS to -j5 (number of CPUs plus one) (2 x Xeon with HT enabled makes 4 virtual CPUs)

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

USE="-X -gtk -gnome -alsa mysql apache2 ssl ssh openldap\
sasl2 pam pic pie hardened hardenedphp xml vhosts"
I don't want X, gtk, gnome or alsa. (This is a server)

But I want mysql, apache, a.s.o.

The flags pic, pie and hardened are used with the hardened toolchain provided by gentoo.

These make the executables less vulnerable to buffer overflow and other programming mistakes. As of the writing of this howto, the flags "pic, pie and hardened" cause some problems with some packages. Manual patching and fiddling may be needed.

UPDATE: I installed another server lately (Nov. 2005), no patching was needed any more.

Follow the installation manual including the Stage1 to Stage2 section.

It is always useful to download the packages first and after that, start the real bootstrapping process. There is nothing better than having a bootstrap failing after 60+ mins on the last package because the file was damaged on the ftp mirror.

Proceed from stage2 to stage3 the documented way.

This will take a while, in my case 71 packages will be installed.

Just keep yourself occupied with something, like writing a howto or something ;)

Now its time to configure the kernel as described in the manual

  • set the timezone
  • install a kernel. I used a hardened-sources kernel (version 2.6.7-r7)
  • check the symlink /usr/src/linnux
  • configure the kernel with make menuconfig
  • make sure to check SMP support in case of a multiple CPU machine.
  • If you use XFS and like to not loose parts of your filesystem data, disable preemptible kernel.
  • Think twice before enabling power management functions like software suspend.
  • You really don't want that your server goes into suspend mode during the night.
  • Warning: If you use MySQL, do not enable the PaX feature "Disallow ELF text relocations". Enabling this makes you unable to compile and run MySQL. *sniff*
  • compile the kernel (remember to use the -j5 flag like in the MAKEOPTS line).
  • install the kernel.

configuring /etc/fstab

enter the data as described in the manual, but use /dev/md0 and /dev/md2

for the swap line use the following 2 lines

/dev/hda2  none swap sw,pri=2 0 0
/dev/hdc2  none swap sw,pri=2 0 0
This way the kernel uses both hdds for swap with the same priority, this means some data will be swapped to one hdd, some to the other and both could be read/written at the same time. This gives a speed boost when you need swap (which should never happen on normal conditions...).
Or use
/dev/md2  none swap sw,pri=2 0 0
in case of a mirrored swap partion.

Enter the networking information as described in the handbook (ip, domainname, ...)

Continue with the installation manual until you got through the manual and

have the basic system running as you want.

While writing this howto, it was planned to have a part 2 to describe the installation of additional software like apache, postfix and others.

But since they are installed exactly as on a "normal" gentoo distribution, a part 2 is not really needed.

comments

Nick Rosier wrote in an email:
I just read this setup. IMHO there's a little flaw in the setup. Goal is to have as little downtime as possible. To gain maybe a bit more performance the author decided not to mirror swap. This is a bad idea. In case of a hard-disk failure part of your swapspace will be unavailable/corrupted meaning your system will possibly crash. I doubt that is what one wants.
Nick has a valid point.
In this setup I use ide harddisks. (yes, I know, SCSI would be better...)
If one of the hdds dies, its very likely that the system crashes any way. This is my experience with ide hdds.
If you use SCSI or SATA-drives, the situation might change. On those drives it might be better to use raid on the swap, too.
back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-08-30
ansi2html - 1.9.3
Ebuild name:

dev-python/ansi2html-1.9.3

Description

Convert text with ANSI color codes to HTML

Added to portage

2026-08-30

bcachefs-tools - 1.39.3
Ebuild name:

sys-fs/bcachefs-tools-1.39.3

Description

Tools for bcachefs

Added to portage

2026-08-30

bitwarden-desktop-bin - 2026.8.0
Ebuild name:

app-admin/bitwarden-desktop-bin-2026.8.0

Description

Bitwarden password manager desktop client

Added to portage

2026-08-30

boost - 1.92.0
Ebuild name:

dev-libs/boost-1.92.0

Description

Boost Libraries for C++

Added to portage

2026-08-30

bubblewrap - 0.12.0
Ebuild name:

sys-apps/bubblewrap-0.12.0

Description

Unprivileged sandboxing tool, namespaces-powered chroot-like solution

Added to portage

2026-08-30

doggo - 1.3.0
Ebuild name:

net-dns/doggo-1.3.0

Description

Command-line DNS Client for Humans

Added to portage

2026-08-30

dovecot - 2.4.5
Ebuild name:

net-mail/dovecot-2.4.5

Description

An IMAP and POP3 server written with security primarily in mind

Added to portage

2026-08-30

environs - 15.2.0
Ebuild name:

dev-python/environs-15.2.0

Description

Python library for simplified environment variable parsing

Added to portage

2026-08-30

feh - 3.12.4
Ebuild name:

media-gfx/feh-3.12.4

Description

A fast, lightweight imageviewer using imlib2

Added to portage

2026-08-30

filezilla - 3.71.1
Ebuild name:

net-ftp/filezilla-3.71.1

Description

FTP client with lots of useful features and an intuitive interface

Added to portage

2026-08-30

gcc - 13.4.1_p20260826
Ebuild name:

sys-devel/gcc-13.4.1_p20260826

Description

The GNU Compiler Collection

Added to portage

2026-08-30

gcc - 14.4.1_p20260827
Ebuild name:

sys-devel/gcc-14.4.1_p20260827

Description

The GNU Compiler Collection

Added to portage

2026-08-30

gcc - 15.3.1_p20260828
Ebuild name:

sys-devel/gcc-15.3.1_p20260828

Description

The GNU Compiler Collection

Added to portage

2026-08-30

gcc - 16.2.1_p20260829
Ebuild name:

sys-devel/gcc-16.2.1_p20260829

Description

The GNU Compiler Collection

Added to portage

2026-08-30

gentoolkit - 0.8.1
Ebuild name:

app-portage/gentoolkit-0.8.1

Description

Collection of administration scripts for Gentoo

Added to portage

2026-08-30

gitea - 1.27.3
Ebuild name:

www-apps/gitea-1.27.3

Description

A painless self-hosted Git service

Added to portage

2026-08-30

hypothesis - 6.166.0
Ebuild name:

dev-python/hypothesis-6.166.0

Description

A library for property based testing

Added to portage

2026-08-30

incus - 7.4
Ebuild name:

app-containers/incus-7.4

Description

Modern, secure and powerful system container and virtual machine manager

Added to portage

2026-08-30

joserfc - 1.7.5
Ebuild name:

dev-python/joserfc-1.7.5

Description

A Python library for JOSE RFCs JWS, JWE, JWK, JWA, JWT

Added to portage

2026-08-30

lego - 5.4.0
Ebuild name:

app-crypt/lego-5.4.0

Description

Let's Encrypt/ACME client (like certbot or acme.sh) and library written in Go

Added to portage

2026-08-30

linkify-it-py - 2.2.0
Ebuild name:

dev-python/linkify-it-py-2.2.0

Description

Links recognition library with full unicode support

Added to portage

2026-08-30

lmdb - 1.0.1-r3
Ebuild name:

dev-db/lmdb-1.0.1-r3

Description

An ultra-fast, ultra-compact key-value embedded data store

Added to portage

2026-08-30

luajit - 2.1.1787165859
Ebuild name:

dev-lang/luajit-2.1.1787165859

Description

Just-In-Time Compiler for the Lua programming language

Added to portage

2026-08-30

m-buffer - 0.16.1
Ebuild name:

app-emacs/m-buffer-0.16.1

Description

List Oriented Buffer Operations for Emacs

Added to portage

2026-08-30

micawber - 0.7.1
Ebuild name:

dev-python/micawber-0.7.1

Description

A small library for extracting rich content from urls

Added to portage

2026-08-30

patsy - 1.0.3
Ebuild name:

dev-python/patsy-1.0.3

Description

Python module to describe statistical models and design matrices

Added to portage

2026-08-30

pdm - 2.29.0
Ebuild name:

dev-python/pdm-2.29.0

Description

Python package and dependency manager supporting the latest PEP standards

Added to portage

2026-08-30

pkgcore - 0.12.41
Ebuild name:

sys-apps/pkgcore-0.12.41

Description

a framework for package management

Added to portage

2026-08-30

poetry - 2.4.2
Ebuild name:

dev-python/poetry-2.4.2

Description

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

Added to portage

2026-08-30

pylint - 4.0.8
Ebuild name:

dev-python/pylint-4.0.8

Description

Python code static checker

Added to portage

2026-08-30

pyzotero - 1.15.0
Ebuild name:

dev-python/pyzotero-1.15.0

Description

A Python client for the Zotero API

Added to portage

2026-08-30

quart - 0.23.1
Ebuild name:

dev-python/quart-0.23.1

Description

A Python ASGI web microframework with the same API as Flask

Added to portage

2026-08-30

quart-trio - 0.12.0-r1
Ebuild name:

dev-python/quart-trio-0.12.0-r1

Description

A Quart extension to provide trio support

Added to portage

2026-08-30

rust-parallel - 1.24.0
Ebuild name:

sys-process/rust-parallel-1.24.0

Description

Fast command line app to run commands in parallel

Added to portage

2026-08-30

skk-jisyo - 202605
Ebuild name:

app-i18n/skk-jisyo-202605

Description

Jisyo (dictionary) files for the SKK Japanese-input software

Added to portage

2026-08-30

tuned - 2.28.0
Ebuild name:

sys-apps/tuned-2.28.0

Description

Daemon for monitoring and adaptive tuning of system devices

Added to portage

2026-08-30

websocket-client - 1.9.1
Ebuild name:

dev-python/websocket-client-1.9.1

Description

WebSocket client for python with hybi13 support

Added to portage

2026-08-30

zeroconf - 0.151.2
Ebuild name:

dev-python/zeroconf-0.151.2

Description

Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi comp

Added to portage

2026-08-30

zotero-bin - 10.0.1
Ebuild name:

app-text/zotero-bin-10.0.1

Description

Helps you collect, organize, cite, and share your research sources

Added to portage

2026-08-30

2026-08-29
AusweisApp - 2.5.5
Ebuild name:

sys-auth/AusweisApp-2.5.5

Description

Official authentication app for German ID cards and residence permits

Added to portage

2026-08-29

alectryon - 2.0.0-r1
Ebuild name:

sci-mathematics/alectryon-2.0.0-r1

Description

Toolkit for literate programming in Coq/Rocq

Added to portage

2026-08-29

awscli-bin - 2.36.34
Ebuild name:

app-admin/awscli-bin-2.36.34

Description

command line interface for Amazon Web Services

Added to portage

2026-08-29

bedrock-server - 1.26.45.1
Ebuild name:

games-server/bedrock-server-1.26.45.1

Description

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

Added to portage

2026-08-29

boto3 - 1.43.83
Ebuild name:

dev-python/boto3-1.43.83

Description

The AWS SDK for Python

Added to portage

2026-08-29

botocore - 1.43.83
Ebuild name:

dev-python/botocore-1.43.83

Description

Low-level, data-driven core of boto 3

Added to portage

2026-08-29

catalogus - 0.1.2
Ebuild name:

dev-python/catalogus-0.1.2

Description

Classes to provide name-to-object registry-like support

Added to portage

2026-08-29

clang - 23.1.0
Ebuild name:

dev-python/clang-23.1.0

Description

Python bindings for llvm-core/clang

Added to portage

2026-08-29

clang - 23.1.0
Ebuild name:

llvm-core/clang-23.1.0

Description

C language family frontend for LLVM

Added to portage

2026-08-29

clang-common - 23.1.0
Ebuild name:

llvm-core/clang-common-23.1.0

Description

Common files shared between multiple slots of clang

Added to portage

2026-08-29

compiler-rt - 23.1.0
Ebuild name:

llvm-runtimes/compiler-rt-23.1.0

Description

Compiler runtime library for clang (built-in part)

Added to portage

2026-08-29

compiler-rt-sanitizers - 23.1.0
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-23.1.0

Description

Compiler runtime libraries for clang (sanitizers & xray

Added to portage

2026-08-29

coverage - 7.16.0
Ebuild name:

dev-python/coverage-7.16.0

Description

Code coverage measurement for Python

Added to portage

2026-08-29

dep-logic - 0.7.2
Ebuild name:

dev-python/dep-logic-0.7.2

Description

Python dependency specifications supporting logical operations

Added to portage

2026-08-29

django-js-asset - 4.1.0
Ebuild name:

dev-python/django-js-asset-4.1.0

Description

Script tag with additional attributes for django.forms.Media

Added to portage

2026-08-29

dkjson - 2.11
Ebuild name:

dev-lua/dkjson-2.11

Description

David Kolf's JSON module for Lua

Added to portage

2026-08-29

dulwich - 1.2.14
Ebuild name:

dev-python/dulwich-1.2.14

Description

Pure-Python implementation of the Git file formats and protocols

Added to portage

2026-08-29

dxvk - 3.1
Ebuild name:

app-emulation/dxvk-3.1

Description

Vulkan-based implementation of D3D9, D3D10 and D3D11 for Linux / Wine

Added to portage

2026-08-29

ejabberd - 26.07
Ebuild name:

net-im/ejabberd-26.07

Description

Robust, scalable and extensible XMPP server

Added to portage

2026-08-29

faudio - 26.08
Ebuild name:

app-emulation/faudio-26.08

Description

Accuracy-focused XAudio reimplementation for open platforms

Added to portage

2026-08-29

flang - 23.1.0
Ebuild name:

llvm-core/flang-23.1.0

Description

LLVM's Fortran frontend

Added to portage

2026-08-29

flang-rt - 23.1.0
Ebuild name:

llvm-runtimes/flang-rt-23.1.0

Description

LLVM's Fortran runtime

Added to portage

2026-08-29

freeipmi - 1.6.19
Ebuild name:

sys-libs/freeipmi-1.6.19

Description

Provides Remote-Console and System Management Software as per IPMI v1.5/2.

Added to portage

2026-08-29

freerdp - 3.31.0-r1
Ebuild name:

net-misc/freerdp-3.31.0-r1

Description

Free implementation of the Remote Desktop Protocol

Added to portage

2026-08-29

gallery-dl - 1.32.10
Ebuild name:

net-misc/gallery-dl-1.32.10

Description

Download image galleries and collections from several image hosting sit

Added to portage

2026-08-29

gawk - 5.4.1a
Ebuild name:

sys-apps/gawk-5.4.1a

Description

GNU awk pattern-matching language

Added to portage

2026-08-29

github-cli - 2.98.0
Ebuild name:

dev-util/github-cli-2.98.0

Description

GitHub CLI

Added to portage

2026-08-29

gitpython - 3.1.61
Ebuild name:

dev-python/gitpython-3.1.61

Description

Library used to interact with Git repositories

Added to portage

2026-08-29

golangci-lint - 2.13.2
Ebuild name:

dev-go/golangci-lint-2.13.2

Description

Fast linters runner for Go

Added to portage

2026-08-29

grpcio - 1.83.1
Ebuild name:

dev-python/grpcio-1.83.1

Description

HTTP/2-based RPC framework

Added to portage

2026-08-29

grpcio-status - 1.83.1
Ebuild name:

dev-python/grpcio-status-1.83.1

Description

Reference package for GRPC Python status proto mapping

Added to portage

2026-08-29

helm - 4.2.4
Ebuild name:

app-admin/helm-4.2.4

Description

Kubernetes Package Manager

Added to portage

2026-08-29

importlib-metadata - 9.0.1
Ebuild name:

dev-python/importlib-metadata-9.0.1

Description

Read metadata from Python packages

Added to portage

2026-08-29

intel-graphics-system-controller - 1.3.1
Ebuild name:

dev-util/intel-graphics-system-controller-1.3.1

Description

Intel graphics system controller firmware update li

Added to portage

2026-08-29

intel-metrics-discovery - 1.16.193
Ebuild name:

dev-libs/intel-metrics-discovery-1.16.193

Description

A user mode library that provides access to GPU performan

Added to portage

2026-08-29

intel-metrics-library - 1.0.238
Ebuild name:

dev-libs/intel-metrics-library-1.0.238

Description

User mode driver helper library that provides access to GPU

Added to portage

2026-08-29

ipython - 9.17.0
Ebuild name:

dev-python/ipython-9.17.0

Description

Advanced interactive shell for Python

Added to portage

2026-08-29

jiffy - 1.1.5
Ebuild name:

dev-erlang/jiffy-1.1.5

Description

JSON NIFs for Erlang

Added to portage

2026-08-29

jupyter-client - 8.10.0
Ebuild name:

dev-python/jupyter-client-8.10.0

Description

Jupyter protocol implementation and client libraries

Added to portage

2026-08-29

keystoneauth1 - 5.17.0
Ebuild name:

dev-python/keystoneauth1-5.17.0

Description

This package contains tools for authenticating to an OpenStack-base

Added to portage

2026-08-29

kiwisolver - 1.5.1
Ebuild name:

dev-python/kiwisolver-1.5.1

Description

An efficient C++ implementation of the Cassowary constraint solving alg

Added to portage

2026-08-29

kube-apiserver - 1.37.0
Ebuild name:

sys-cluster/kube-apiserver-1.37.0

Description

Kubernetes API server

Added to portage

2026-08-29

kube-controller-manager - 1.37.0
Ebuild name:

sys-cluster/kube-controller-manager-1.37.0

Description

Kubernetes Controller Manager

Added to portage

2026-08-29

kube-proxy - 1.37.0
Ebuild name:

sys-cluster/kube-proxy-1.37.0

Description

Kubernetes Proxy service

Added to portage

2026-08-29

kube-scheduler - 1.37.0
Ebuild name:

sys-cluster/kube-scheduler-1.37.0

Description

Kubernetes Scheduler

Added to portage

2026-08-29

kubeadm - 1.37.0
Ebuild name:

sys-cluster/kubeadm-1.37.0

Description

CLI to Easily bootstrap a secure Kubernetes cluster

Added to portage

2026-08-29

kubectl - 1.37.0
Ebuild name:

sys-cluster/kubectl-1.37.0

Description

CLI to run commands against Kubernetes clusters

Added to portage

2026-08-29

kubelet - 1.37.0
Ebuild name:

sys-cluster/kubelet-1.37.0

Description

Kubernetes Node Agent

Added to portage

2026-08-29

level-zero - 1.33.1
Ebuild name:

dev-libs/level-zero-1.33.1

Description

oneAPI Level Zero headers, loader and validation layer

Added to portage

2026-08-29

libclc - 23.1.0
Ebuild name:

llvm-runtimes/libclc-23.1.0

Description

OpenCL C library

Added to portage

2026-08-29

libcxx - 23.1.0
Ebuild name:

llvm-runtimes/libcxx-23.1.0

Description

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

Added to portage

2026-08-29

libcxxabi - 23.1.0
Ebuild name:

llvm-runtimes/libcxxabi-23.1.0

Description

Low level support for a standard C++ library

Added to portage

2026-08-29

libgcc - 23.1.0
Ebuild name:

llvm-runtimes/libgcc-23.1.0

Description

Compiler runtime library for clang, compatible with libgcc_s

Added to portage

2026-08-29

libunwind - 23.1.0
Ebuild name:

llvm-runtimes/libunwind-23.1.0

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-08-29

libupnp - 22.0.6
Ebuild name:

net-libs/libupnp-22.0.6

Description

An Portable Open Source UPnP Development Kit

Added to portage

2026-08-29

lit - 23.1.0
Ebuild name:

dev-python/lit-23.1.0

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-08-29

lld - 23.1.0
Ebuild name:

llvm-core/lld-23.1.0

Description

The LLVM linker (link editor)

Added to portage

2026-08-29

lldb - 23.1.0
Ebuild name:

llvm-core/lldb-23.1.0

Description

The LLVM debugger

Added to portage

2026-08-29

llvm - 23.1.0
Ebuild name:

dev-ml/llvm-23.1.0

Description

OCaml bindings for LLVM

Added to portage

2026-08-29

llvm - 23.1.0
Ebuild name:

llvm-core/llvm-23.1.0

Description

Low Level Virtual Machine

Added to portage

2026-08-29

llvm-common - 23.1.0
Ebuild name:

llvm-core/llvm-common-23.1.0

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-08-29

macrostep - 0.9.5
Ebuild name:

app-emacs/macrostep-0.9.5

Description

Interactive macro-expander for Emacs

Added to portage

2026-08-29

macrostep-geiser - 0.2.0_p20210717
Ebuild name:

app-emacs/macrostep-geiser-0.2.0_p20210717

Description

Emacs macrostep back-end powered by geiser

Added to portage

2026-08-29

magit - 4.5.0-r1
Ebuild name:

app-emacs/magit-4.5.0-r1

Description

A Git porcelain inside Emacs

Added to portage

2026-08-29

magit - 4.6.0
Ebuild name:

app-emacs/magit-4.6.0

Description

A Git porcelain inside Emacs

Added to portage

2026-08-29

magit - 4.7.0
Ebuild name:

app-emacs/magit-4.7.0

Description

A Git porcelain inside Emacs

Added to portage

2026-08-29

mlir - 23.1.0
Ebuild name:

llvm-core/mlir-23.1.0

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-08-29

mxml - 4.0.5
Ebuild name:

dev-libs/mxml-4.0.5

Description

A small XML parsing library that you can use to read XML data files or strings

Added to portage

2026-08-29

mysqltuner - 2.9.2
Ebuild name:

dev-db/mysqltuner-2.9.2

Description

Makes recommendations for increased performance and stability for MySQL

Added to portage

2026-08-29

netpbm - 11.2.22
Ebuild name:

media-libs/netpbm-11.2.22

Description

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

Added to portage

2026-08-29

nss - 3.128
Ebuild name:

dev-libs/nss-3.128

Description

Mozilla's Network Security Services library that implements PKI support

Added to portage

2026-08-29

nvidia-drivers - 595.44.15
Ebuild name:

x11-drivers/nvidia-drivers-595.44.15

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-08-29

ollama - 0.33.2
Ebuild name:

sci-ml/ollama-0.33.2

Description

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

Added to portage

2026-08-29

openmp - 23.1.0
Ebuild name:

llvm-runtimes/openmp-23.1.0

Description

OpenMP runtime libraries for LLVM/clang compiler

Added to portage

2026-08-29

openmp-amdgcn-amd-amdhsa - 23.1.0
Ebuild name:

llvm-runtimes/openmp-amdgcn-amd-amdhsa-23.1.0

Description

OpenMP target library for amdgcn devices

Added to portage

2026-08-29

openmp-nvptx64-nvidia-cuda - 23.1.0
Ebuild name:

llvm-runtimes/openmp-nvptx64-nvidia-cuda-23.1.0

Description

OpenMP target library for nvptx64 devices

Added to portage

2026-08-29

openmp-spirv64-intel - 23.1.0
Ebuild name:

llvm-runtimes/openmp-spirv64-intel-23.1.0

Description

OpenMP target library for spirv64 Intel devices

Added to portage

2026-08-29

openrct2 - 0.5.4
Ebuild name:

games-simulation/openrct2-0.5.4

Description

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

Added to portage

2026-08-29

pandoc-bin - 3.11
Ebuild name:

app-text/pandoc-bin-3.11

Description

Conversion between markup formats (binary package)

Added to portage

2026-08-29

phonenumbers - 9.0.38
Ebuild name:

dev-python/phonenumbers-9.0.38

Description

Python port of Google's libphonenumber

Added to portage

2026-08-29

pixi - 0.78.0
Ebuild name:

dev-util/pixi-0.78.0

Description

A package management and workflow tool

Added to portage

2026-08-29

polly - 23.1.0
Ebuild name:

llvm-core/polly-23.1.0

Description

Polyhedral optimizations for LLVM

Added to portage

2026-08-29

powa-archivist - 5.3.0
Ebuild name:

dev-db/powa-archivist-5.3.0

Description

PostgreSQL Workload Analyzer Archivist

Added to portage

2026-08-29

pwsh - 7.6.3-r1
Ebuild name:

app-shells/pwsh-7.6.3-r1

Description

Cross-platform automation and configuration tool

Added to portage

2026-08-29

pwsh - 7.6.5
Ebuild name:

app-shells/pwsh-7.6.5

Description

Cross-platform automation and configuration tool

Added to portage

2026-08-29

pwsh-bin - 7.6.3-r1
Ebuild name:

app-shells/pwsh-bin-7.6.3-r1

Description

Cross-platform automation and configuration tool (binary package)

Added to portage

2026-08-29

pwsh-bin - 7.6.5
Ebuild name:

app-shells/pwsh-bin-7.6.5

Description

Cross-platform automation and configuration tool (binary package)

Added to portage

2026-08-29

pydantic - 2.13.5
Ebuild name:

dev-python/pydantic-2.13.5

Description

Data parsing and validation using Python type hints

Added to portage

2026-08-29

pyproject-fmt - 2.28.2
Ebuild name:

dev-python/pyproject-fmt-2.28.2

Description

Format your pyproject.toml file

Added to portage

2026-08-29

python-discovery - 1.6.0
Ebuild name:

dev-python/python-discovery-1.6.0

Description

Python interpreter discovery

Added to portage

2026-08-29

python-keystoneclient - 6.0.0
Ebuild name:

dev-python/python-keystoneclient-6.0.0

Description

Client Library for OpenStack Identity

Added to portage

2026-08-29

python-manilaclient - 6.3.0
Ebuild name:

dev-python/python-manilaclient-6.3.0

Description

Python bindings to the OpenStack Manila API

Added to portage

2026-08-29

python-novaclient - 18.13.1
Ebuild name:

dev-python/python-novaclient-18.13.1

Description

A client for the OpenStack Nova API

Added to portage

2026-08-29

python-swiftclient - 4.11.0
Ebuild name:

dev-python/python-swiftclient-4.11.0

Description

Python bindings to the OpenStack Object Storage API

Added to portage

2026-08-29

raspberrypi-firmware - 1.20260824
Ebuild name:

sys-boot/raspberrypi-firmware-1.20260824

Description

Raspberry Pi (all versions) bootloader and GPU firmware

Added to portage

2026-08-29

raspberrypi-image - 6.18.46_p20260824
Ebuild name:

sys-kernel/raspberrypi-image-6.18.46_p20260824

Description

Raspberry Pi (all versions) kernel and modules

Added to portage

2026-08-29

raspberrypi-sources - 6.18.46_p20260824
Ebuild name:

sys-kernel/raspberrypi-sources-6.18.46_p20260824

Description

Raspberry Pi kernel sources

Added to portage

2026-08-29

readme-renderer - 46.0
Ebuild name:

dev-python/readme-renderer-46.0

Description

A library for rendering 'readme' descriptions for Warehouse

Added to portage

2026-08-29

requests-futures - 1.1.0
Ebuild name:

dev-python/requests-futures-1.1.0

Description

Asynchronous Python HTTP for Humans

Added to portage

2026-08-29

rpi-eeprom - 28.30
Ebuild name:

dev-embedded/rpi-eeprom-28.30

Description

Updater for Raspberry Pi 4/5 bootloader and the VL805 USB controller

Added to portage

2026-08-29

rtl-sdr - 2.0.3
Ebuild name:

net-wireless/rtl-sdr-2.0.3

Description

Turns your Realtek RTL2832 based DVB dongle into a SDR receiver

Added to portage

2026-08-29

rtl-sdr-blog - 1.4.0
Ebuild name:

net-wireless/rtl-sdr-blog-1.4.0

Description

Modified Osmocom drivers with enhancements for RTL-SDR Blog V3 and

Added to portage

2026-08-29

ruff - 0.16.5
Ebuild name:

dev-util/ruff-0.16.5

Description

An extremely fast Python linter, written in Rust

Added to portage

2026-08-29

seamonkey - 2.53.24
Ebuild name:

www-client/seamonkey-2.53.24

Description

Seamonkey Web Browser

Added to portage

2026-08-29

shader-slang - 2026.16.1
Ebuild name:

dev-util/shader-slang-2026.16.1

Description

Making it easier to work with shaders

Added to portage

2026-08-29

spirv-llvm-translator - 23.1.0
Ebuild name:

dev-util/spirv-llvm-translator-23.1.0

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-08-29

stress-ng - 0.22.00
Ebuild name:

app-benchmarks/stress-ng-0.22.00

Description

Stress test for a computer system with various selectable ways

Added to portage

2026-08-29

testscenarios - 0.7.0
Ebuild name:

dev-python/testscenarios-0.7.0

Description

A pyunit extension for dependency injection

Added to portage

2026-08-29

tox - 4.61.1
Ebuild name:

dev-python/tox-4.61.1

Description

virtualenv-based automation of test activities

Added to portage

2026-08-29

typer - 0.27.2
Ebuild name:

dev-python/typer-0.27.2

Description

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

Added to portage

2026-08-29

unifi - 10.6.101
Ebuild name:

net-wireless/unifi-10.6.101

Description

A Management Controller for Ubiquiti Networks UniFi APs

Added to portage

2026-08-29

virtualenv - 21.7.7
Ebuild name:

dev-python/virtualenv-21.7.7

Description

Virtual Python Environment builder

Added to portage

2026-08-29

wasm3 - 0.9.0
Ebuild name:

dev-util/wasm3-0.9.0

Description

A fast WebAssembly interpreter and the most universal WASM runtime

Added to portage

2026-08-29

wcwidth - 0.8.3
Ebuild name:

dev-python/wcwidth-0.8.3

Description

Measures number of Terminal column cells of wide-character codes

Added to portage

2026-08-29

xmpp - 1.13.4
Ebuild name:

dev-erlang/xmpp-1.13.4

Description

XMPP parsing and serialization library on top of Fast XML

Added to portage

2026-08-29

xterm - 411
Ebuild name:

x11-terms/xterm-411

Description

Terminal Emulator for X Windows

Added to portage

2026-08-29

zellij - 0.45.1
Ebuild name:

app-misc/zellij-0.45.1

Description

A terminal workspace with batteries included

Added to portage

2026-08-29

zeroconf - 0.151.1
Ebuild name:

dev-python/zeroconf-0.151.1

Description

Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi comp

Added to portage

2026-08-29

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