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:

85436

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-05-30
asymptote - 3.11
Ebuild name:

media-gfx/asymptote-3.11

Description

A vector graphics language that provides a framework for technical drawing

Added to portage

2026-05-30

awscli - 1.45.18
Ebuild name:

app-admin/awscli-1.45.18

Description

Universal Command Line Environment for AWS

Added to portage

2026-05-30

blazesym_c - 0.1.8
Ebuild name:

dev-libs/blazesym_c-0.1.8

Description

C bindings for blazesym, a library for address symbolization and related

Added to portage

2026-05-30

boto3 - 1.43.18
Ebuild name:

dev-python/boto3-1.43.18

Description

The AWS SDK for Python

Added to portage

2026-05-30

botocore - 1.43.18
Ebuild name:

dev-python/botocore-1.43.18

Description

Low-level, data-driven core of boto 3

Added to portage

2026-05-30

bpftrace - 0.26.0
Ebuild name:

dev-debug/bpftrace-0.26.0

Description

High-level tracing language for eBPF

Added to portage

2026-05-30

chromium - 149.0.7827.53
Ebuild name:

www-client/chromium-149.0.7827.53

Description

Open-source version of Google Chrome web browser

Added to portage

2026-05-30

createrepo_c - 1.2.3
Ebuild name:

app-arch/createrepo_c-1.2.3

Description

C implementation of createrepo

Added to portage

2026-05-30

diffuse - 0.11.0
Ebuild name:

dev-util/diffuse-0.11.0

Description

A graphical tool to compare and merge text files

Added to portage

2026-05-30

django-polymorphic - 4.11.4
Ebuild name:

dev-python/django-polymorphic-4.11.4

Description

Seamless Polymorphic Inheritance for Django Models

Added to portage

2026-05-30

exim - 4.99.4
Ebuild name:

mail-mta/exim-4.99.4

Description

A highly configurable, drop-in replacement for sendmail

Added to portage

2026-05-30

firefox - 151.0.2
Ebuild name:

www-client/firefox-151.0.2

Description

Firefox Web Browser

Added to portage

2026-05-30

firefox-bin - 151.0.2
Ebuild name:

www-client/firefox-bin-151.0.2

Description

Firefox Web Browser

Added to portage

2026-05-30

firefox-l10n - 151.0.2
Ebuild name:

www-client/firefox-l10n-151.0.2

Description

Firefox Web Browser's translation files

Added to portage

2026-05-30

gcc - 13.4.1_p20260527
Ebuild name:

sys-devel/gcc-13.4.1_p20260527

Description

The GNU Compiler Collection

Added to portage

2026-05-30

gcc - 14.3.1_p20260528
Ebuild name:

sys-devel/gcc-14.3.1_p20260528

Description

The GNU Compiler Collection

Added to portage

2026-05-30

gcc - 15.2.1_p20260529
Ebuild name:

sys-devel/gcc-15.2.1_p20260529

Description

The GNU Compiler Collection

Added to portage

2026-05-30

google-chrome-beta - 149.0.7827.53
Ebuild name:

www-client/google-chrome-beta-149.0.7827.53

Description

The web browser from Google

Added to portage

2026-05-30

hypothesis - 6.155.1
Ebuild name:

dev-python/hypothesis-6.155.1

Description

A library for property based testing

Added to portage

2026-05-30

inline-snapshot - 0.34.0
Ebuild name:

dev-python/inline-snapshot-0.34.0

Description

Create and update inline snapshots in your Python tests

Added to portage

2026-05-30

ipython - 9.14.0
Ebuild name:

dev-python/ipython-9.14.0

Description

Advanced interactive shell for Python

Added to portage

2026-05-30

jupyter-server - 2.19.0
Ebuild name:

dev-python/jupyter-server-2.19.0

Description

Core services, APIs, and REST endpoints to Jupyter web application

Added to portage

2026-05-30

kicad - 10.0.3
Ebuild name:

sci-electronics/kicad-10.0.3

Description

Electronic Schematic and PCB design tools

Added to portage

2026-05-30

kicad - 9.0.9-r1
Ebuild name:

sci-electronics/kicad-9.0.9-r1

Description

Electronic Schematic and PCB design tools

Added to portage

2026-05-30

kicad-footprints - 10.0.3
Ebuild name:

sci-electronics/kicad-footprints-10.0.3

Description

Electronic Schematic and PCB design tools footprint librari

Added to portage

2026-05-30

kicad-meta - 10.0.3
Ebuild name:

sci-electronics/kicad-meta-10.0.3

Description

Electronic Schematic and PCB design tools (meta package)

Added to portage

2026-05-30

kicad-packages3d - 10.0.3
Ebuild name:

sci-electronics/kicad-packages3d-10.0.3

Description

Electronic Schematic and PCB design tools 3D package librar

Added to portage

2026-05-30

kicad-symbols - 10.0.3
Ebuild name:

sci-electronics/kicad-symbols-10.0.3

Description

Electronic Schematic and PCB design tools symbol libraries

Added to portage

2026-05-30

kicad-templates - 10.0.3
Ebuild name:

sci-electronics/kicad-templates-10.0.3

Description

Electronic Schematic and PCB design tools project templates

Added to portage

2026-05-30

latex-beamer - 3.77
Ebuild name:

dev-tex/latex-beamer-3.77

Description

LaTeX class for creating presentations using a video projector

Added to portage

2026-05-30

microsoft-edge - 148.0.3967.96
Ebuild name:

www-client/microsoft-edge-148.0.3967.96

Description

The web browser from Microsoft

Added to portage

2026-05-30

nagios - 4.5.13
Ebuild name:

net-analyzer/nagios-4.5.13

Description

The Nagios metapackage

Added to portage

2026-05-30

nagios-core - 4.5.13
Ebuild name:

net-analyzer/nagios-core-4.5.13

Description

Nagios core - monitoring daemon, web GUI, and documentation

Added to portage

2026-05-30

netavark - 1.17.2
Ebuild name:

app-containers/netavark-1.17.2

Description

A container network stack

Added to portage

2026-05-30

opera - 132.0.5905.11
Ebuild name:

www-client/opera-132.0.5905.11

Description

A fast and secure web browser

Added to portage

2026-05-30

pastebinit - 1.8.0
Ebuild name:

app-text/pastebinit-1.8.0

Description

Software that lets you send anything you want directly to a pastebin

Added to portage

2026-05-30

pyelftools - 0.33
Ebuild name:

dev-python/pyelftools-0.33

Description

pure-Python library for analyzing ELF files and DWARF debugging informat

Added to portage

2026-05-30

pypy - 2.7.7.3.23
Ebuild name:

dev-lang/pypy-2.7.7.3.23

Description

A fast, compliant alternative implementation of the Python () language

Added to portage

2026-05-30

pypy - 3.11.7.3.23
Ebuild name:

dev-lang/pypy-3.11.7.3.23

Description

A fast, compliant alternative implementation of the Python () language

Added to portage

2026-05-30

pypy-exe - 7.3.23
Ebuild name:

dev-python/pypy-exe-7.3.23

Description

PyPy executable (build from source)

Added to portage

2026-05-30

pypy-exe-bin - 7.3.23
Ebuild name:

dev-python/pypy-exe-bin-7.3.23

Description

PyPy executable (pre-built version)

Added to portage

2026-05-30

pypy3-exe - 3.11.7.3.23
Ebuild name:

dev-lang/pypy3-exe-3.11.7.3.23

Description

PyPy3.11 executable (build from source)

Added to portage

2026-05-30

pypy3-exe-bin - 3.11.7.3.23
Ebuild name:

dev-lang/pypy3-exe-bin-3.11.7.3.23

Description

PyPy3.11 executable (pre-built version)

Added to portage

2026-05-30

rpi-eeprom - 28.24_p1
Ebuild name:

dev-embedded/rpi-eeprom-28.24_p1

Description

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

Added to portage

2026-05-30

runc - 1.4.2
Ebuild name:

app-containers/runc-1.4.2

Description

runc container cli tools

Added to portage

2026-05-30

sbcl - 2.6.5
Ebuild name:

dev-lisp/sbcl-2.6.5

Description

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

Added to portage

2026-05-30

slirp4netns - 1.3.4
Ebuild name:

app-containers/slirp4netns-1.3.4

Description

User-mode networking for unprivileged network namespaces

Added to portage

2026-05-30

toml-fmt-common - 1.3.5
Ebuild name:

dev-python/toml-fmt-common-1.3.5

Description

Common logic to the TOML formatter

Added to portage

2026-05-30

vivaldi - 8.0.4033.35
Ebuild name:

www-client/vivaldi-8.0.4033.35

Description

A browser for our friends

Added to portage

2026-05-30

wine-vanilla - 11.10
Ebuild name:

app-emulation/wine-vanilla-11.10

Description

Free implementation of Windows(tm) on Unix, without external patch

Added to portage

2026-05-30

2026-05-29
adolc - 2.7.2-r2
Ebuild name:

sci-libs/adolc-2.7.2-r2

Description

Automatic differentiation system for C/C++

Added to portage

2026-05-29

awscli - 1.45.17
Ebuild name:

app-admin/awscli-1.45.17

Description

Universal Command Line Environment for AWS

Added to portage

2026-05-29

bird - 2.19.0
Ebuild name:

net-misc/bird-2.19.0

Description

A routing daemon implementing OSPF, RIPv2 & BGP for IPv4 & IPv6

Added to portage

2026-05-29

bird - 3.3.0
Ebuild name:

net-misc/bird-3.3.0

Description

A routing daemon implementing OSPF, RIPv2 & BGP for IPv4 & IPv6

Added to portage

2026-05-29

boto3 - 1.43.17
Ebuild name:

dev-python/boto3-1.43.17

Description

The AWS SDK for Python

Added to portage

2026-05-29

botocore - 1.43.17
Ebuild name:

dev-python/botocore-1.43.17

Description

Low-level, data-driven core of boto 3

Added to portage

2026-05-29

braintree - 4.44.0
Ebuild name:

dev-python/braintree-4.44.0

Description

Braintree Python Library

Added to portage

2026-05-29

c-blosc2 - 3.1.2
Ebuild name:

dev-libs/c-blosc2-3.1.2

Description

Blocking, shuffling and lossless compression library

Added to portage

2026-05-29

cargo-nextest - 0.9.137
Ebuild name:

dev-util/cargo-nextest-0.9.137

Description

Next-generation test runner for Rust

Added to portage

2026-05-29

closure-compiler-bin - 20260526
Ebuild name:

dev-lang/closure-compiler-bin-20260526

Description

JavaScript optimizing compiler

Added to portage

2026-05-29

codipack - 3.1.0
Ebuild name:

sys-cluster/codipack-3.1.0

Description

Fast gradient evaluation in C++ based on Expression Templates

Added to portage

2026-05-29

codipack - 9999
Ebuild name:

sys-cluster/codipack-9999

Description

Fast gradient evaluation in C++ based on Expression Templates

Added to portage

2026-05-29

colpack - 1.0.10_p20190621
Ebuild name:

sci-libs/colpack-1.0.10_p20190621

Description

C++ algorithms for specialized vertex coloring problems

Added to portage

2026-05-29

colpack - 9999
Ebuild name:

sci-libs/colpack-9999

Description

C++ algorithms for specialized vertex coloring problems

Added to portage

2026-05-29

commonmark - 0.9.2
Ebuild name:

dev-python/commonmark-0.9.2

Description

Python parser for the CommonMark Markdown spec

Added to portage

2026-05-29

containerd - 2.3.1
Ebuild name:

app-containers/containerd-2.3.1

Description

A daemon to control runC

Added to portage

2026-05-29

crun - 1.28
Ebuild name:

app-containers/crun-1.28

Description

Fast and low-memory footprint OCI Container Runtime fully written in C

Added to portage

2026-05-29

cvs-fast-export - 2.0
Ebuild name:

dev-vcs/cvs-fast-export-2.0

Description

fast-export history from a CVS repository or RCS collection

Added to portage

2026-05-29

docker - 29.5.2
Ebuild name:

app-containers/docker-29.5.2

Description

The core functions you need to create Docker images and run Docker con

Added to portage

2026-05-29

docker-buildx - 0.34.1
Ebuild name:

app-containers/docker-buildx-0.34.1

Description

Docker CLI plugin for extended build capabilities with BuildKit

Added to portage

2026-05-29

docker-cli - 29.5.2
Ebuild name:

app-containers/docker-cli-29.5.2

Description

the command line binary for docker

Added to portage

2026-05-29

docker-compose - 5.1.4
Ebuild name:

app-containers/docker-compose-5.1.4

Description

Multi-container orchestration for Docker

Added to portage

2026-05-29

dulwich - 1.2.5
Ebuild name:

dev-python/dulwich-1.2.5

Description

Pure-Python implementation of the Git file formats and protocols

Added to portage

2026-05-29

eigen - 3.4.1
Ebuild name:

dev-cpp/eigen-3.4.1

Description

C++ template library for linear algebra

Added to portage

2026-05-29

eigen - 5.0.1
Ebuild name:

dev-cpp/eigen-5.0.1

Description

C++ template library for linear algebra

Added to portage

2026-05-29

eigen - 5.0.9999
Ebuild name:

dev-cpp/eigen-5.0.9999

Description

C++ template library for linear algebra

Added to portage

2026-05-29

fzf - 0.73.1
Ebuild name:

app-shells/fzf-0.73.1

Description

General-purpose command-line fuzzy finder, written in Golang

Added to portage

2026-05-29

github-cli - 2.93.0
Ebuild name:

dev-util/github-cli-2.93.0

Description

GitHub CLI

Added to portage

2026-05-29

gnome-shell - 49.6-r1
Ebuild name:

gnome-base/gnome-shell-49.6-r1

Description

Provides core UI functions for the GNOME desktop

Added to portage

2026-05-29

google-api-python-client - 2.197.0
Ebuild name:

dev-python/google-api-python-client-2.197.0

Description

Google API Client for Python

Added to portage

2026-05-29

hypothesis - 6.155.0
Ebuild name:

dev-python/hypothesis-6.155.0

Description

A library for property based testing

Added to portage

2026-05-29

icingaweb2-module-director - 1.11.8
Ebuild name:

www-apps/icingaweb2-module-director-1.11.8

Description

Icinga Web 2 plugin for configuration

Added to portage

2026-05-29

idna - 3.17
Ebuild name:

dev-python/idna-3.17

Description

Internationalized Domain Names in Applications (IDNA)

Added to portage

2026-05-29

iputils - 20250605-r4
Ebuild name:

net-misc/iputils-20250605-r4

Description

Network monitoring tools including ping and ping6

Added to portage

2026-05-29

kube-apiserver - 1.36.1
Ebuild name:

sys-cluster/kube-apiserver-1.36.1

Description

Kubernetes API server

Added to portage

2026-05-29

kube-controller-manager - 1.36.1
Ebuild name:

sys-cluster/kube-controller-manager-1.36.1

Description

Kubernetes Controller Manager

Added to portage

2026-05-29

kube-linter - 0.8.3
Ebuild name:

dev-util/kube-linter-0.8.3

Description

kubernetes yaml and helm chart static analysis tool

Added to portage

2026-05-29

kube-proxy - 1.36.1
Ebuild name:

sys-cluster/kube-proxy-1.36.1

Description

Kubernetes Proxy service

Added to portage

2026-05-29

kubeadm - 1.36.1
Ebuild name:

sys-cluster/kubeadm-1.36.1

Description

CLI to Easily bootstrap a secure Kubernetes cluster

Added to portage

2026-05-29

kubectl - 1.36.1
Ebuild name:

sys-cluster/kubectl-1.36.1

Description

CLI to run commands against Kubernetes clusters

Added to portage

2026-05-29

kubelet - 1.36.1
Ebuild name:

sys-cluster/kubelet-1.36.1

Description

Kubernetes Node Agent

Added to portage

2026-05-29

labwc - 0.20.0
Ebuild name:

gui-wm/labwc-0.20.0

Description

Openbox alternative for wayland

Added to portage

2026-05-29

linode-cli - 5.68.0
Ebuild name:

app-admin/linode-cli-5.68.0

Description

Official command-line interface for interacting with the Linode API

Added to portage

2026-05-29

lpsolve - 5.5.2.14
Ebuild name:

sci-mathematics/lpsolve-5.5.2.14

Description

Mixed Integer Linear Programming (MILP) solver

Added to portage

2026-05-29

maven-bin - 3.9.16
Ebuild name:

dev-java/maven-bin-3.9.16

Description

Project Management and Comprehension Tool for Java

Added to portage

2026-05-29

medipack - 1.4.0
Ebuild name:

sys-cluster/medipack-1.4.0

Description

Message Differentiation Package

Added to portage

2026-05-29

medipack - 9999
Ebuild name:

sys-cluster/medipack-9999

Description

Message Differentiation Package

Added to portage

2026-05-29

mmm-mode - 0.5.11
Ebuild name:

app-emacs/mmm-mode-0.5.11

Description

Enables the user to edit different parts of a file in different major mod

Added to portage

2026-05-29

moccur-edit - 2.16
Ebuild name:

app-emacs/moccur-edit-2.16

Description

An improved interface to color-moccur for editing

Added to portage

2026-05-29

mocker - 0.5.0
Ebuild name:

app-emacs/mocker-0.5.0

Description

Simple mocking framework for Emacs

Added to portage

2026-05-29

modus-themes - 5.1.0
Ebuild name:

app-emacs/modus-themes-5.1.0

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-05-29

modus-themes - 5.2.0
Ebuild name:

app-emacs/modus-themes-5.2.0

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-05-29

modus-themes - 9999
Ebuild name:

app-emacs/modus-themes-9999

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-05-29

mpg123-el - 1.65
Ebuild name:

app-emacs/mpg123-el-1.65

Description

Emacs front-end to mpg123 audio player and OggVorbis audio player

Added to portage

2026-05-29

mu-cite - 8.1_p202011031127
Ebuild name:

app-emacs/mu-cite-8.1_p202011031127

Description

Message citation utilities for emacsen

Added to portage

2026-05-29

mutter - 49.5-r1
Ebuild name:

x11-wm/mutter-49.5-r1

Description

GNOME compositing window manager based on Clutter

Added to portage

2026-05-29

nextcloud-notify_push - 1.3.3
Ebuild name:

www-apps/nextcloud-notify_push-1.3.3

Description

Push daemon for Nextcloud clients

Added to portage

2026-05-29

nuitka - 4.1.2
Ebuild name:

dev-python/nuitka-4.1.2

Description

Python to native compiler

Added to portage

2026-05-29

openpgp-keys-libtasn1 - 20260210-r1
Ebuild name:

sec-keys/openpgp-keys-libtasn1-20260210-r1

Description

OpenPGP keys used by GNU Libtasn1

Added to portage

2026-05-29

openstacksdk - 4.14.0
Ebuild name:

dev-python/openstacksdk-4.14.0

Description

A collection of libraries for building applications to work with Ope

Added to portage

2026-05-29

oslo-utils - 10.1.0
Ebuild name:

dev-python/oslo-utils-10.1.0

Description

Oslo Utility library

Added to portage

2026-05-29

pecl-dio - 0.3.0
Ebuild name:

dev-php/pecl-dio-0.3.0

Description

Direct I/O functions for PHP

Added to portage

2026-05-29

platformdirs - 4.10.0
Ebuild name:

dev-python/platformdirs-4.10.0

Description

A small Python module for determining appropriate platform-specific

Added to portage

2026-05-29

pocketfft - 2026.04.10
Ebuild name:

dev-libs/pocketfft-2026.04.10

Description

PocketFFT for C++

Added to portage

2026-05-29

pocketfft - 9999
Ebuild name:

dev-libs/pocketfft-9999

Description

PocketFFT for C++

Added to portage

2026-05-29

pound - 4.23
Ebuild name:

www-servers/pound-4.23

Description

A http/https reverse-proxy and load-balancer

Added to portage

2026-05-29

pyproject-api - 1.10.1
Ebuild name:

dev-python/pyproject-api-1.10.1

Description

API to interact with the python pyproject.toml based projects

Added to portage

2026-05-29

python-discovery - 1.4.0
Ebuild name:

dev-python/python-discovery-1.4.0

Description

Python interpreter discovery

Added to portage

2026-05-29

racket - 9.2
Ebuild name:

dev-scheme/racket-9.2

Description

General purpose, multi-paradigm Lisp-Scheme programming language

Added to portage

2026-05-29

redis - 8.0.0
Ebuild name:

dev-python/redis-8.0.0

Description

Python client for Redis key-value store

Added to portage

2026-05-29

rich-click - 1.9.8
Ebuild name:

dev-python/rich-click-1.9.8

Description

Format click help output nicely with rich

Added to portage

2026-05-29

rpds-py - 2026.5.1
Ebuild name:

dev-python/rpds-py-2026.5.1

Description

Python bindings to Rust's persistent data structures (rpds)

Added to portage

2026-05-29

ruff - 0.15.15
Ebuild name:

dev-util/ruff-0.15.15

Description

An extremely fast Python linter, written in Rust

Added to portage

2026-05-29

s3transfer - 0.18.0
Ebuild name:

dev-python/s3transfer-0.18.0

Description

An Amazon S3 Transfer Manager

Added to portage

2026-05-29

scad-mode - 99.0
Ebuild name:

app-emacs/scad-mode-99.0

Description

GNU Emacs mode to edit OpenSCAD files

Added to portage

2026-05-29

seedfiles - 1.5
Ebuild name:

sys-apps/seedfiles-1.5

Description

Portable drop-in reimplementation of systemd-tmpfiles

Added to portage

2026-05-29

sendmail - 8.19.0.1
Ebuild name:

mail-mta/sendmail-8.19.0.1

Description

Widely-used Mail Transport Agent (MTA)

Added to portage

2026-05-29

ser-player - 1.8.0
Ebuild name:

sci-astronomy/ser-player-1.8.0

Description

Video player for SER files used for solar, lunar and planetary astro

Added to portage

2026-05-29

ser-player - 9999
Ebuild name:

sci-astronomy/ser-player-9999

Description

Video player for SER files used for solar, lunar and planetary astron

Added to portage

2026-05-29

shim - 16.1_p8
Ebuild name:

sys-boot/shim-16.1_p8

Description

Fedora's signed UEFI shim

Added to portage

2026-05-29

signal-desktop-bin - 8.12.0
Ebuild name:

net-im/signal-desktop-bin-8.12.0

Description

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

Added to portage

2026-05-29

sphinx-autodoc-typehints - 3.10.3
Ebuild name:

dev-python/sphinx-autodoc-typehints-3.10.3

Description

Type hints support for the Sphinx autodoc extension

Added to portage

2026-05-29

starlette - 1.2.0
Ebuild name:

dev-python/starlette-1.2.0

Description

The little ASGI framework that shines

Added to portage

2026-05-29

stripe-mock - 0.201.0
Ebuild name:

dev-util/stripe-mock-0.201.0

Description

Mock HTTP server that responds like the real Stripe API

Added to portage

2026-05-29

tailscale - 1.98.4
Ebuild name:

net-vpn/tailscale-1.98.4

Description

Tailscale vpn client

Added to portage

2026-05-29

terraform - 1.15.5
Ebuild name:

app-admin/terraform-1.15.5

Description

A tool for building, changing, and combining infrastructure safely

Added to portage

2026-05-29

toml-fmt-common - 1.3.3
Ebuild name:

dev-python/toml-fmt-common-1.3.3

Description

Common logic to the TOML formatter

Added to portage

2026-05-29

tox - 4.55.0
Ebuild name:

dev-python/tox-4.55.0

Description

virtualenv-based automation of test activities

Added to portage

2026-05-29

typer - 0.26.3
Ebuild name:

dev-python/typer-0.26.3

Description

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

Added to portage

2026-05-29

uv - 0.11.17
Ebuild name:

dev-python/uv-0.11.17

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-05-29

uv-build - 0.11.17
Ebuild name:

dev-python/uv-build-0.11.17

Description

PEP517 uv build backend

Added to portage

2026-05-29

virtualenv - 21.4.1
Ebuild name:

dev-python/virtualenv-21.4.1

Description

Virtual Python Environment builder

Added to portage

2026-05-29

wlroots - 0.20.1
Ebuild name:

gui-libs/wlroots-0.20.1

Description

Pluggable, composable, unopinionated modules for building a Wayland composi

Added to portage

2026-05-29

xapers - 0.9.3-r1
Ebuild name:

app-text/xapers-0.9.3-r1

Description

Personal document indexing system

Added to portage

2026-05-29

xrootd - 5.9.5
Ebuild name:

net-libs/xrootd-5.9.5

Description

Extended ROOT remote file server

Added to portage

2026-05-29

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