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:

82935

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-01-24
awscli - 1.44.24
Ebuild name:

app-admin/awscli-1.44.24

Description

Universal Command Line Environment for AWS

Added to portage

2026-01-24

boto3 - 1.42.34
Ebuild name:

dev-python/boto3-1.42.34

Description

The AWS SDK for Python

Added to portage

2026-01-24

botocore - 1.42.34
Ebuild name:

dev-python/botocore-1.42.34

Description

Low-level, data-driven core of boto 3

Added to portage

2026-01-24

electrum - 4.7.0
Ebuild name:

net-misc/electrum-4.7.0

Description

User friendly Bitcoin client

Added to portage

2026-01-24

greenlet - 3.3.1
Ebuild name:

dev-python/greenlet-3.3.1

Description

Lightweight in-process concurrent programming

Added to portage

2026-01-24

gunicorn - 24.1.1
Ebuild name:

www-servers/gunicorn-24.1.1

Description

A WSGI HTTP Server for UNIX

Added to portage

2026-01-24

hcloud - 2.16.0
Ebuild name:

dev-python/hcloud-2.16.0

Description

Official Hetzner Cloud python library

Added to portage

2026-01-24

hypothesis - 6.150.3
Ebuild name:

dev-python/hypothesis-6.150.3

Description

A library for property based testing

Added to portage

2026-01-24

ibus-m17n - 1.4.37
Ebuild name:

app-i18n/ibus-m17n-1.4.37

Description

M17N engine for IBus

Added to portage

2026-01-24

ibus-table - 1.17.17
Ebuild name:

app-i18n/ibus-table-1.17.17

Description

Tables engines for IBus

Added to portage

2026-01-24

ibus-typing-booster - 2.30.0
Ebuild name:

app-i18n/ibus-typing-booster-2.30.0

Description

Completion input method for IBus

Added to portage

2026-01-24

joplin-desktop - 3.6.2
Ebuild name:

app-office/joplin-desktop-3.6.2

Description

Secure note taking and to-do app with synchronization capabilities

Added to portage

2026-01-24

jupyterlab - 4.5.3
Ebuild name:

dev-python/jupyterlab-4.5.3

Description

JupyterLab computational environment

Added to portage

2026-01-24

kanshi - 1.9.0
Ebuild name:

gui-apps/kanshi-1.9.0

Description

dynamic display configuration (autorandr for wayland)

Added to portage

2026-01-24

kineto - 0.4.0_p20251121
Ebuild name:

sci-ml/kineto-0.4.0_p20251121

Description

part of the PyTorch Profiler

Added to portage

2026-01-24

libbytesize - 2.12
Ebuild name:

dev-libs/libbytesize-2.12

Description

Tiny library providing a C

Added to portage

2026-01-24

libkdumpfile - 0.5.6
Ebuild name:

dev-libs/libkdumpfile-0.5.6

Description

Kernel coredump file access

Added to portage

2026-01-24

libnl - 3.12.0
Ebuild name:

dev-libs/libnl-3.12.0

Description

Libraries providing APIs to netlink protocol based Linux kernel interfaces

Added to portage

2026-01-24

libsodium - 1.0.21
Ebuild name:

dev-libs/libsodium-1.0.21

Description

Portable fork of NaCl, a higher-level cryptographic library

Added to portage

2026-01-24

libxcrypt - 4.4.38-r1
Ebuild name:

sys-libs/libxcrypt-4.4.38-r1

Description

Extended crypt library for descrypt, md5crypt, bcrypt, and others

Added to portage

2026-01-24

libxmlb - 0.3.24-r1
Ebuild name:

dev-libs/libxmlb-0.3.24-r1

Description

Library to help create and query binary XML blobs

Added to portage

2026-01-24

man-pages - 6.16-r2
Ebuild name:

sys-apps/man-pages-6.16-r2

Description

A somewhat comprehensive collection of Linux man pages

Added to portage

2026-01-24

marshmallow - 4.2.1
Ebuild name:

dev-python/marshmallow-4.2.1

Description

A library for converting to and from native Python datatypes

Added to portage

2026-01-24

mkl - 2025.3.1.8
Ebuild name:

sci-libs/mkl-2025.3.1.8

Description

Intel Math Kernel Library

Added to portage

2026-01-24

nuitka - 2.8.10
Ebuild name:

dev-python/nuitka-2.8.10

Description

Python to native compiler

Added to portage

2026-01-24

openjdk - 11.0.30_p7
Ebuild name:

dev-java/openjdk-11.0.30_p7

Description

Open source implementation of the Java programming language

Added to portage

2026-01-24

openjdk - 17.0.18_p8
Ebuild name:

dev-java/openjdk-17.0.18_p8

Description

Open source implementation of the Java programming language

Added to portage

2026-01-24

openjdk - 21.0.10_p7
Ebuild name:

dev-java/openjdk-21.0.10_p7

Description

Open source implementation of the Java programming language

Added to portage

2026-01-24

openjdk - 25.0.2_p10
Ebuild name:

dev-java/openjdk-25.0.2_p10

Description

Open source implementation of the Java programming language

Added to portage

2026-01-24

openpgp-keys-cjwatson - 20260124
Ebuild name:

sec-keys/openpgp-keys-cjwatson-20260124

Description

OpenPGP key used by Colin Watson

Added to portage

2026-01-24

openpgp-keys-hughsie - 20260124
Ebuild name:

sec-keys/openpgp-keys-hughsie-20260124

Description

OpenPGP key used by Richard Hughes (hughsie)

Added to portage

2026-01-24

openpgp-keys-libusb - 1.0.29
Ebuild name:

sec-keys/openpgp-keys-libusb-1.0.29

Description

OpenPGP key used by dev-libs/libusb

Added to portage

2026-01-24

openpgp-keys-thomashaller - 20260124
Ebuild name:

sec-keys/openpgp-keys-thomashaller-20260124

Description

OpenPGP key used by Thomas Haller

Added to portage

2026-01-24

pdm - 2.26.6
Ebuild name:

dev-python/pdm-2.26.6

Description

Python package and dependency manager supporting the latest PEP standards

Added to portage

2026-01-24

portage - 3.0.77
Ebuild name:

sys-apps/portage-3.0.77

Description

The package management and distribution system for Gentoo

Added to portage

2026-01-24

pymdown-extensions - 10.20.1
Ebuild name:

dev-python/pymdown-extensions-10.20.1

Description

Extensions for Python Markdown

Added to portage

2026-01-24

ruff - 0.14.14
Ebuild name:

dev-util/ruff-0.14.14

Description

An extremely fast Python linter, written in Rust

Added to portage

2026-01-24

siegfried - 1.11.4
Ebuild name:

app-misc/siegfried-1.11.4

Description

Signature-based file format identification

Added to portage

2026-01-24

simpleidn - 0.2.3
Ebuild name:

dev-ruby/simpleidn-0.2.3

Description

Allows easy conversion from punycode ACE to unicode UTF-8 strings and vice

Added to portage

2026-01-24

sqlalchemy - 2.1.0_beta1
Ebuild name:

dev-python/sqlalchemy-2.1.0_beta1

Description

Python SQL toolkit and Object Relational Mapper

Added to portage

2026-01-24

sqlite - 3.51.2
Ebuild name:

dev-db/sqlite-3.51.2

Description

SQL database engine

Added to portage

2026-01-24

tensorpipe - 2025.11.05
Ebuild name:

sci-ml/tensorpipe-2025.11.05

Description

provides a tensor-aware channel

Added to portage

2026-01-24

thunar - 4.20.7
Ebuild name:

xfce-base/thunar-4.20.7

Description

File manager for the Xfce desktop environment

Added to portage

2026-01-24

thunar - 4.21.4
Ebuild name:

xfce-base/thunar-4.21.4

Description

File manager for the Xfce desktop environment

Added to portage

2026-01-24

tigervnc - 1.16.0
Ebuild name:

net-misc/tigervnc-1.16.0

Description

Remote desktop viewer display system

Added to portage

2026-01-24

tigervnc-xorg-module - 1.16.0
Ebuild name:

net-misc/tigervnc-xorg-module-1.16.0

Description

Metapackage for the xorg module provided by tigervnc

Added to portage

2026-01-24

types-setuptools - 80.10.0.20260124
Ebuild name:

dev-python/types-setuptools-80.10.0.20260124

Description

Typing stubs for setuptools

Added to portage

2026-01-24

vali - 0.1.1
Ebuild name:

dev-libs/vali-0.1.1

Description

C library and code generator for Varlink

Added to portage

2026-01-24

wcwidth - 0.3.2
Ebuild name:

dev-python/wcwidth-0.3.2

Description

Measures number of Terminal column cells of wide-character codes

Added to portage

2026-01-24

wine-vanilla - 11.1
Ebuild name:

app-emulation/wine-vanilla-11.1

Description

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

Added to portage

2026-01-24

2026-01-23
FBGEMM - 1.4.0
Ebuild name:

sci-ml/FBGEMM-1.4.0

Description

Facebook GEneral Matrix Multiplication

Added to portage

2026-01-23

akonadi - 25.12.1-r1
Ebuild name:

kde-apps/akonadi-25.12.1-r1

Description

Storage service for PIM data and libraries for PIM apps

Added to portage

2026-01-23

akonadi-calendar - 25.12.1-r1
Ebuild name:

kde-apps/akonadi-calendar-25.12.1-r1

Description

Library for akonadi calendar integration

Added to portage

2026-01-23

akonadi-calendar-tools-common - 25.12.1-r1
Ebuild name:

kde-apps/akonadi-calendar-tools-common-25.12.1-r1

Description

Added to portage

2026-01-23

akonadi-contacts - 25.12.1-r1
Ebuild name:

kde-apps/akonadi-contacts-25.12.1-r1

Description

Library for akonadi contact integration

Added to portage

2026-01-23

akonadi-import-wizard - 25.12.1-r1
Ebuild name:

kde-apps/akonadi-import-wizard-25.12.1-r1

Description

Assistant to import PIM data from other applications into

Added to portage

2026-01-23

akonadi-mime - 25.12.1-r1
Ebuild name:

kde-apps/akonadi-mime-25.12.1-r1

Description

Library for akonadi mime types

Added to portage

2026-01-23

akonadi-search - 25.12.1-r1
Ebuild name:

kde-apps/akonadi-search-25.12.1-r1

Description

Libraries and daemons to implement searching in Akonadi

Added to portage

2026-01-23

akonadiconsole - 25.12.1-r1
Ebuild name:

kde-apps/akonadiconsole-25.12.1-r1

Description

Application for debugging Akonadi Resources

Added to portage

2026-01-23

akregator - 25.12.1-r1
Ebuild name:

kde-apps/akregator-25.12.1-r1

Description

News feed aggregator

Added to portage

2026-01-23

aqbanking - 6.9.1
Ebuild name:

net-libs/aqbanking-6.9.1

Description

Generic Online Banking Interface

Added to portage

2026-01-23

awscli - 1.44.23
Ebuild name:

app-admin/awscli-1.44.23

Description

Universal Command Line Environment for AWS

Added to portage

2026-01-23

bazelisk - 1.28.1
Ebuild name:

dev-build/bazelisk-1.28.1

Description

A user-friendly launcher for Bazel written in Go

Added to portage

2026-01-23

blueprint-compiler - 0.19.0
Ebuild name:

dev-util/blueprint-compiler-0.19.0

Description

Compiler for Blueprint, a markup language for GTK user interface

Added to portage

2026-01-23

boto3 - 1.42.33
Ebuild name:

dev-python/boto3-1.42.33

Description

The AWS SDK for Python

Added to portage

2026-01-23

botocore - 1.42.33
Ebuild name:

dev-python/botocore-1.42.33

Description

Low-level, data-driven core of boto 3

Added to portage

2026-01-23

calendarjanitor - 25.12.1-r1
Ebuild name:

kde-apps/calendarjanitor-25.12.1-r1

Description

Tool to scan calendar data for buggy instances

Added to portage

2026-01-23

calendarsupport - 25.12.1-r1
Ebuild name:

kde-apps/calendarsupport-25.12.1-r1

Description

Calendar support library

Added to portage

2026-01-23

cloudflared - 2026.1.1
Ebuild name:

net-vpn/cloudflared-2026.1.1

Description

A command-line client and tunneling daemon for Cloudflare Tunnel

Added to portage

2026-01-23

courier-imap - 5.3.2
Ebuild name:

net-mail/courier-imap-5.3.2

Description

An IMAP daemon designed specifically for maildirs

Added to portage

2026-01-23

cryptsetup - 2.8.3-r1
Ebuild name:

sys-fs/cryptsetup-2.8.3-r1

Description

Tool to setup encrypted devices with dm-crypt

Added to portage

2026-01-23

curtail - 1.15.0
Ebuild name:

media-gfx/curtail-1.15.0

Description

Image compressor, supporting PNG, JPEG and WebP

Added to portage

2026-01-23

deno-bin - 2.6.6
Ebuild name:

dev-lang/deno-bin-2.6.6

Description

Modern runtime for JavaScript and TypeScript

Added to portage

2026-01-23

devcontainer - 0.81.1
Ebuild name:

app-containers/devcontainer-0.81.1

Description

Reference implementation of the Development Containers specifica

Added to portage

2026-01-23

displaycal-py3 - 3.9.17
Ebuild name:

media-gfx/displaycal-py3-3.9.17

Description

Modernize the DisplayCAL code including Python 3 support

Added to portage

2026-01-23

dist-kernel - 6.12.67
Ebuild name:

virtual/dist-kernel-6.12.67

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-01-23

dist-kernel - 6.18.7
Ebuild name:

virtual/dist-kernel-6.18.7

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-01-23

element - 1.12.8
Ebuild name:

www-apps/element-1.12.8

Description

A glossy Matrix collaboration client for the web

Added to portage

2026-01-23

emacs-desktop-mail - 1.3
Ebuild name:

x11-misc/emacs-desktop-mail-1.3

Description

Desktop entries for handling mailto URIs with GNU Emacs

Added to portage

2026-01-23

ensurepip-setuptools - 80.10.1
Ebuild name:

dev-python/ensurepip-setuptools-80.10.1

Description

Shared setuptools wheel for ensurepip Python module

Added to portage

2026-01-23

ensurepip-wheel - 0.46.3
Ebuild name:

dev-python/ensurepip-wheel-0.46.3

Description

Shared wheel wheel for use in pip tests

Added to portage

2026-01-23

eventviews - 25.12.1-r1
Ebuild name:

kde-apps/eventviews-25.12.1-r1

Description

Calendar viewer for KDE PIM

Added to portage

2026-01-23

fastfetch - 2.58.0
Ebuild name:

app-misc/fastfetch-2.58.0

Description

Fast neofetch-like system information tool

Added to portage

2026-01-23

fotema - 2.4.1
Ebuild name:

media-gfx/fotema-2.4.1

Description

Photo gallery for Linux

Added to portage

2026-01-23

framework-tool-tui - 0.7.6
Ebuild name:

app-laptop/framework-tool-tui-0.7.6

Description

TUI for controlling and monitoring Framework Computers hardware

Added to portage

2026-01-23

frescobaldi - 4.0.4
Ebuild name:

media-sound/frescobaldi-4.0.4

Description

A LilyPond sheet music text editor

Added to portage

2026-01-23

gentoo-kernel - 6.12.67
Ebuild name:

sys-kernel/gentoo-kernel-6.12.67

Description

Linux kernel built with Gentoo patches

Added to portage

2026-01-23

gentoo-kernel - 6.18.7
Ebuild name:

sys-kernel/gentoo-kernel-6.18.7

Description

Linux kernel built with Gentoo patches

Added to portage

2026-01-23

gentoo-kernel-bin - 6.12.67
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.67

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-01-23

gentoo-kernel-bin - 6.18.7
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.7

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-01-23

gentoolkit - 0.7.1
Ebuild name:

app-portage/gentoolkit-0.7.1

Description

Collection of administration scripts for Gentoo

Added to portage

2026-01-23

git-cliff - 2.11.0
Ebuild name:

dev-vcs/git-cliff-2.11.0

Description

A highly customizable changelog generator

Added to portage

2026-01-23

grantlee-editor - 25.12.1-r1
Ebuild name:

kde-apps/grantlee-editor-25.12.1-r1

Description

Utilities and tools to manage themes in KDE PIM applications

Added to portage

2026-01-23

grantleetheme - 25.12.1-r1
Ebuild name:

kde-apps/grantleetheme-25.12.1-r1

Description

Library for Grantlee plugins

Added to portage

2026-01-23

griddataformats - 1.1.0
Ebuild name:

dev-python/griddataformats-1.1.0

Description

Reading and writing of data on regular grids in Python

Added to portage

2026-01-23

gunicorn - 24.0.0
Ebuild name:

www-servers/gunicorn-24.0.0

Description

A WSGI HTTP Server for UNIX

Added to portage

2026-01-23

gwenhywfar - 5.14.1
Ebuild name:

sys-libs/gwenhywfar-5.14.1

Description

Multi-platform helper library for other libraries

Added to portage

2026-01-23

i3blocks-contrib - 2.0.0_p20240208
Ebuild name:

x11-misc/i3blocks-contrib-2.0.0_p20240208

Description

A set of scripts for i3blocks, contributed by the communi

Added to portage

2026-01-23

ibus-rime - 1.6.0
Ebuild name:

app-i18n/ibus-rime-1.6.0

Description

Chinese Rime Input Method Engine for IBus

Added to portage

2026-01-23

incidenceeditor - 25.12.1-r1
Ebuild name:

kde-apps/incidenceeditor-25.12.1-r1

Description

Incidence editor for KOrganizer

Added to portage

2026-01-23

intellij-idea - 2025.3.2
Ebuild name:

dev-util/intellij-idea-2025.3.2

Description

A complete toolset for web, mobile and enterprise development

Added to portage

2026-01-23

jmespath - 1.1.0
Ebuild name:

dev-python/jmespath-1.1.0

Description

JSON Matching Expressions

Added to portage

2026-01-23

kactivitymanagerd - 6.5.5-r1
Ebuild name:

kde-plasma/kactivitymanagerd-6.5.5-r1

Description

System service to manage user's activities, track the usage p

Added to portage

2026-01-23

kaddressbook - 25.12.1-r1
Ebuild name:

kde-apps/kaddressbook-25.12.1-r1

Description

Address book application based on KDE Frameworks

Added to portage

2026-01-23

kalarm - 25.12.1-r1
Ebuild name:

kde-apps/kalarm-25.12.1-r1

Description

Application to manage alarms and other timer based alerts for the deskto

Added to portage

2026-01-23

kate - 25.12.1-r1
Ebuild name:

kde-apps/kate-25.12.1-r1

Description

Multi-document editor with network transparency, Plasma integration and mo

Added to portage

2026-01-23

kate-addons - 25.12.1-r1
Ebuild name:

kde-apps/kate-addons-25.12.1-r1

Description

Addons used by Kate

Added to portage

2026-01-23

kate-lib - 25.12.1-r1
Ebuild name:

kde-apps/kate-lib-25.12.1-r1

Description

Shared library used by Kate/Kwrite and Kate-Addons

Added to portage

2026-01-23

kcalutils - 25.12.1-r1
Ebuild name:

kde-apps/kcalutils-25.12.1-r1

Description

Library providing utility functions for the handling of calendar data

Added to portage

2026-01-23

kclock - 25.12.1-r1
Ebuild name:

kde-misc/kclock-25.12.1-r1

Description

Convergent clock application for Plasma

Added to portage

2026-01-23

kdepim-addons - 25.12.1-r1
Ebuild name:

kde-apps/kdepim-addons-25.12.1-r1

Description

Plugins for KDE Personal Information Management Suite

Added to portage

2026-01-23

kdepim-meta - 25.12.1-r1
Ebuild name:

kde-apps/kdepim-meta-25.12.1-r1

Description

KDE PIM - merge this to pull in all kdepim-derived packages

Added to portage

2026-01-23

kdepim-runtime - 25.12.1-r1
Ebuild name:

kde-apps/kdepim-runtime-25.12.1-r1

Description

Runtime plugin collection to extend the functionality of KDE PIM

Added to portage

2026-01-23

kdf - 25.12.1-r1
Ebuild name:

kde-apps/kdf-25.12.1-r1

Description

KDE free disk space utility

Added to portage

2026-01-23

keditbookmarks - 25.12.1-r1
Ebuild name:

kde-apps/keditbookmarks-25.12.1-r1

Description

Bookmarks editor based on KDE Frameworks

Added to portage

2026-01-23

kfind - 25.12.1-r1
Ebuild name:

kde-apps/kfind-25.12.1-r1

Description

File finder utility based on KDE Frameworks

Added to portage

2026-01-23

kidentitymanagement - 25.12.1-r1
Ebuild name:

kde-apps/kidentitymanagement-25.12.1-r1

Description

Library for managing identitites

Added to portage

2026-01-23

kimap - 25.12.1-r1
Ebuild name:

kde-apps/kimap-25.12.1-r1

Description

Library for interacting with IMAP servers

Added to portage

2026-01-23

kio - 6.22.1
Ebuild name:

kde-frameworks/kio-6.22.1

Description

Framework providing transparent file and data management

Added to portage

2026-01-23

kitinerary - 25.12.1-r1
Ebuild name:

kde-apps/kitinerary-25.12.1-r1

Description

Data Model and Extraction System for Travel Reservation information

Added to portage

2026-01-23

kldap - 25.12.1-r1
Ebuild name:

kde-apps/kldap-25.12.1-r1

Description

Library for interacting with LDAP servers

Added to portage

2026-01-23

kleopatra - 25.12.1-r1
Ebuild name:

kde-apps/kleopatra-25.12.1-r1

Description

Certificate manager and GUI for OpenPGP and CMS cryptography

Added to portage

2026-01-23

kmail - 25.12.1-r1
Ebuild name:

kde-apps/kmail-25.12.1-r1

Description

Email client, supporting POP3 and IMAP mailboxes

Added to portage

2026-01-23

kmail-account-wizard - 25.12.1-r1
Ebuild name:

kde-apps/kmail-account-wizard-25.12.1-r1

Description

Assistant for KMail accounts configuration

Added to portage

2026-01-23

kmailtransport - 25.12.1-r1
Ebuild name:

kde-apps/kmailtransport-25.12.1-r1

Description

Mail transport service

Added to portage

2026-01-23

kmbox - 25.12.1-r1
Ebuild name:

kde-apps/kmbox-25.12.1-r1

Description

Library for accessing MBox format mail storages

Added to portage

2026-01-23

kmime - 25.12.1-r1
Ebuild name:

kde-apps/kmime-25.12.1-r1

Description

Libary for handling mail messages and newsgroup articles

Added to portage

2026-01-23

kmscon - 9.3.0
Ebuild name:

sys-apps/kmscon-9.3.0

Description

KMS/DRM based virtual Console Emulator

Added to portage

2026-01-23

koleo-cli - 0.2.137.28
Ebuild name:

app-misc/koleo-cli-0.2.137.28

Description

A simple CLI for koleo.pl railway planner

Added to portage

2026-01-23

konsolekalendar - 25.12.1-r1
Ebuild name:

kde-apps/konsolekalendar-25.12.1-r1

Description

Command line interface to KDE calendars

Added to portage

2026-01-23

kontact - 25.12.1-r1
Ebuild name:

kde-apps/kontact-25.12.1-r1

Description

Container application to unify several major PIM applications within on

Added to portage

2026-01-23

kontactinterface - 25.12.1-r1
Ebuild name:

kde-apps/kontactinterface-25.12.1-r1

Description

Library for embedding KParts in a Kontact component

Added to portage

2026-01-23

kopeninghours - 25.12.1-r1
Ebuild name:

dev-libs/kopeninghours-25.12.1-r1

Description

Library for parsing and evaluating OSM opening hours expressions

Added to portage

2026-01-23

korganizer - 25.12.1-r1
Ebuild name:

kde-apps/korganizer-25.12.1-r1

Description

Organizational assistant, providing calendars and other similar func

Added to portage

2026-01-23

kosmindoormap - 25.12.1-r1
Ebuild name:

dev-libs/kosmindoormap-25.12.1-r1

Description

Data Model and Extraction System for Travel Reservation informati

Added to portage

2026-01-23

kpimtextedit - 25.12.1-r1
Ebuild name:

kde-apps/kpimtextedit-25.12.1-r1

Description

Extended text editor for PIM applications

Added to portage

2026-01-23

kpkpass - 25.12.1-r1
Ebuild name:

kde-apps/kpkpass-25.12.1-r1

Description

Library to deal with Apple Wallet pass files

Added to portage

2026-01-23

kpublictransport - 25.12.1-r1
Ebuild name:

dev-libs/kpublictransport-25.12.1-r1

Description

Library for accessing public transport timetables and other in

Added to portage

2026-01-23

kscreenlocker - 6.5.5-r1
Ebuild name:

kde-plasma/kscreenlocker-6.5.5-r1

Description

Library and components for secure lock screen architecture

Added to portage

2026-01-23

ksmtp - 25.12.1-r1
Ebuild name:

kde-apps/ksmtp-25.12.1-r1

Description

Job-based library to send email through an SMTP server

Added to portage

2026-01-23

ktimer - 25.12.1-r1
Ebuild name:

kde-apps/ktimer-25.12.1-r1

Description

Little tool to execute programs after some time

Added to portage

2026-01-23

kwalletmanager - 25.12.1-r1
Ebuild name:

kde-apps/kwalletmanager-25.12.1-r1

Description

Tool to manage the passwords on your system using KDE Wallet

Added to portage

2026-01-23

kwrite - 25.12.1-r1
Ebuild name:

kde-apps/kwrite-25.12.1-r1

Description

Simple text editor based on KDE Frameworks

Added to portage

2026-01-23

libgravatar - 25.12.1-r1
Ebuild name:

kde-apps/libgravatar-25.12.1-r1

Description

Library for gravatar integration

Added to portage

2026-01-23

libkdepim - 25.12.1-r1
Ebuild name:

kde-apps/libkdepim-25.12.1-r1

Description

Common PIM libraries

Added to portage

2026-01-23

libkgapi - 25.12.1-r1
Ebuild name:

kde-apps/libkgapi-25.12.1-r1

Description

Library for accessing Google calendar and contact resources

Added to portage

2026-01-23

libkleo - 25.12.1-r1
Ebuild name:

kde-apps/libkleo-25.12.1-r1

Description

Library for encryption handling

Added to portage

2026-01-23

libksieve - 25.12.1-r1
Ebuild name:

kde-apps/libksieve-25.12.1-r1

Description

Common PIM libraries

Added to portage

2026-01-23

libktnef - 25.12.1-r1
Ebuild name:

kde-apps/libktnef-25.12.1-r1

Description

Library for handling TNEF data

Added to portage

2026-01-23

librime - 1.16.1
Ebuild name:

app-i18n/librime-1.16.1

Description

RIME (Rime Input Method Engine) core library

Added to portage

2026-01-23

librime-lua - 20250707183812
Ebuild name:

app-i18n/librime-lua-20250707183812

Description

Lua module for RIME

Added to portage

2026-01-23

libtsm - 4.4.1
Ebuild name:

dev-libs/libtsm-4.4.1

Description

Terminal Emulator State Machine

Added to portage

2026-01-23

mailcommon - 25.12.1-r1
Ebuild name:

kde-apps/mailcommon-25.12.1-r1

Description

Common mail library

Added to portage

2026-01-23

maildrop - 3.3.0
Ebuild name:

mail-filter/maildrop-3.3.0

Description

Mail delivery agent/filter

Added to portage

2026-01-23

mailimporter - 25.12.1-r1
Ebuild name:

kde-apps/mailimporter-25.12.1-r1

Description

Library to import mail from various sources

Added to portage

2026-01-23

mattermost-desktop-bin - 5.13.3
Ebuild name:

net-im/mattermost-desktop-bin-5.13.3

Description

Mattermost Desktop application

Added to portage

2026-01-23

mbox-importer - 25.12.1-r1
Ebuild name:

kde-apps/mbox-importer-25.12.1-r1

Description

Import mbox email archives from various sources into Akonadi

Added to portage

2026-01-23

merkuro - 25.12.1-r1
Ebuild name:

app-office/merkuro-25.12.1-r1

Description

Calendar application using Akonadi

Added to portage

2026-01-23

messagelib - 25.12.1-r1
Ebuild name:

kde-apps/messagelib-25.12.1-r1

Description

Libraries for messaging functions

Added to portage

2026-01-23

mimetreeparser - 25.12.1-r1
Ebuild name:

kde-apps/mimetreeparser-25.12.1-r1

Description

Libraries for messaging functions

Added to portage

2026-01-23

mkdocs-htmlproofer-plugin - 1.4.1
Ebuild name:

dev-python/mkdocs-htmlproofer-plugin-1.4.1

Description

A MkDocs plugin that validates URLs in rendered HTML fil

Added to portage

2026-01-23

nextcloud - 31.0.13
Ebuild name:

www-apps/nextcloud-31.0.13

Description

Personal cloud that runs on your own server

Added to portage

2026-01-23

nextcloud - 32.0.5
Ebuild name:

www-apps/nextcloud-32.0.5

Description

Personal cloud that runs on your own server

Added to portage

2026-01-23

nihtest - 1.10.1
Ebuild name:

dev-util/nihtest-1.10.1

Description

A testing tool for command line utilities

Added to portage

2026-01-23

nvidia-drivers - 580.94.16
Ebuild name:

x11-drivers/nvidia-drivers-580.94.16

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-01-23

open-vmdk - 0.3.13
Ebuild name:

app-emulation/open-vmdk-0.3.13

Description

Tools for creating and converting OVA virtual appliance files

Added to portage

2026-01-23

openpgp-keys-alejandro-colomar - 20260122
Ebuild name:

sec-keys/openpgp-keys-alejandro-colomar-20260122

Description

OpenPGP keys used by Alejandro Colomar

Added to portage

2026-01-23

osm - 2.0
Ebuild name:

app-emacs/osm-2.0

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-23

osm - 2.1
Ebuild name:

app-emacs/osm-2.1

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-23

osm - 9999
Ebuild name:

app-emacs/osm-9999

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-23

outline-magic - 0.9
Ebuild name:

app-emacs/outline-magic-0.9

Description

Outline mode extensions for Emacs

Added to portage

2026-01-23

owncloud-client - 6.0.3.18040
Ebuild name:

net-misc/owncloud-client-6.0.3.18040

Description

Synchronize files from ownCloud Server with your computer

Added to portage

2026-01-23

package-build - 4.0.0
Ebuild name:

app-emacs/package-build-4.0.0

Description

Tools for assembling a package archive

Added to portage

2026-01-23

package-lint - 0.26
Ebuild name:

app-emacs/package-lint-0.26

Description

Linting library for Emacs Lisp package metadata

Added to portage

2026-01-23

pim-data-exporter - 25.12.1-r1
Ebuild name:

kde-apps/pim-data-exporter-25.12.1-r1

Description

Assistant to backup and archive PIM data and configuration

Added to portage

2026-01-23

pim-sieve-editor - 25.12.1-r1
Ebuild name:

kde-apps/pim-sieve-editor-25.12.1-r1

Description

Assistant for editing IMAP Sieve filters

Added to portage

2026-01-23

pimcommon - 25.12.1-r1
Ebuild name:

kde-apps/pimcommon-25.12.1-r1

Description

Common PIM libraries

Added to portage

2026-01-23

plasma-disks - 6.5.5-r1
Ebuild name:

kde-plasma/plasma-disks-6.5.5-r1

Description

Monitors S.M.A.R.T. capable devices for imminent failure

Added to portage

2026-01-23

plasma-meta - 6.5.5-r1
Ebuild name:

kde-plasma/plasma-meta-6.5.5-r1

Description

Merge this to pull in all Plasma 6 packages

Added to portage

2026-01-23

plasma-systemmonitor - 6.5.5-r1
Ebuild name:

kde-plasma/plasma-systemmonitor-6.5.5-r1

Description

Monitor system sensors, process information and other syst

Added to portage

2026-01-23

plasma-vault - 6.5.5-r1
Ebuild name:

kde-plasma/plasma-vault-6.5.5-r1

Description

Plasma applet and services for creating encrypted vaults

Added to portage

2026-01-23

plasma-welcome - 6.5.5-r1
Ebuild name:

kde-plasma/plasma-welcome-6.5.5-r1

Description

Friendly onboarding wizard for Plasma

Added to portage

2026-01-23

pyrate-limiter - 4.0.2
Ebuild name:

dev-python/pyrate-limiter-4.0.2

Description

Python Rate-Limiter using Leaky-Bucket Algorimth Family

Added to portage

2026-01-23

pysmi - 1.6.3
Ebuild name:

dev-python/pysmi-1.6.3

Description

Pure-Python implementation of SNMP/SMI MIB parsing and conversion library

Added to portage

2026-01-23

pytest-shell-utilities - 1.9.7-r1
Ebuild name:

dev-python/pytest-shell-utilities-1.9.7-r1

Description

pytest plugin fixtures and code to help with running she

Added to portage

2026-01-23

qdmr - 0.13.3
Ebuild name:

net-wireless/qdmr-0.13.3

Description

GUI application for configuring and programming cheap DMR radios

Added to portage

2026-01-23

qpageview - 1.0.2
Ebuild name:

dev-python/qpageview-1.0.2

Description

Page-based viewer widget for Qt5/PyQt5

Added to portage

2026-01-23

reason - 3.17.3
Ebuild name:

dev-ml/reason-3.17.3

Description

Simple, fast & type safe language that leverages JavaScript and OCaml

Added to portage

2026-01-23

rich-click - 1.9.6
Ebuild name:

dev-python/rich-click-1.9.6

Description

Format click help output nicely with rich

Added to portage

2026-01-23

rpi-eeprom - 28.12_p1
Ebuild name:

dev-embedded/rpi-eeprom-28.12_p1

Description

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

Added to portage

2026-01-23

sddm-kcm - 6.5.5-r1
Ebuild name:

kde-plasma/sddm-kcm-6.5.5-r1

Description

KDE Plasma control module for SDDM

Added to portage

2026-01-23

setuptools - 80.10.1
Ebuild name:

dev-python/setuptools-80.10.1

Description

Collection of extensions to Distutils

Added to portage

2026-01-23

skanpage - 25.12.1-r1
Ebuild name:

media-gfx/skanpage-25.12.1-r1

Description

Multi-page scanning application supporting image and pdf files

Added to portage

2026-01-23

skim - 1.5.1
Ebuild name:

app-misc/skim-1.5.1

Description

Command-line fuzzy finder

Added to portage

2026-01-23

snapcast - 0.34.0
Ebuild name:

media-sound/snapcast-0.34.0

Description

Synchronous multi-room audio player

Added to portage

2026-01-23

snapserver - 0-r3
Ebuild name:

acct-user/snapserver-0-r3

Description

Server user for media-sound/snapcast

Added to portage

2026-01-23

sssd - 2.9.8
Ebuild name:

sys-auth/sssd-2.9.8

Description

System Security Services Daemon provides access to identity and authentication

Added to portage

2026-01-23

tempel - 1.10
Ebuild name:

app-emacs/tempel-1.10

Description

Templates with in-buffer field editing for GNU Emacs

Added to portage

2026-01-23

ttl - 0.13.3
Ebuild name:

net-analyzer/ttl-0.13.3

Description

Modern traceroute/mtr-style TUI with hop stats and optional ASN/geo enrichm

Added to portage

2026-01-23

vanilla-kernel - 6.12.67
Ebuild name:

sys-kernel/vanilla-kernel-6.12.67

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-01-23

vanilla-kernel - 6.18.7
Ebuild name:

sys-kernel/vanilla-kernel-6.18.7

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-01-23

vertico - 2.7
Ebuild name:

app-emacs/vertico-2.7

Description

Vertical interactive completion

Added to portage

2026-01-23

wacomtablet - 6.5.5-r1
Ebuild name:

kde-plasma/wacomtablet-6.5.5-r1

Description

Wacom system settings module that supports different button/pen lay

Added to portage

2026-01-23

wcwidth - 0.3.1
Ebuild name:

dev-python/wcwidth-0.3.1

Description

Measures number of Terminal column cells of wide-character codes

Added to portage

2026-01-23

wheel - 0.46.3
Ebuild name:

dev-python/wheel-0.46.3

Description

A built-package format for Python

Added to portage

2026-01-23

xxhash - 0.8.3-r2
Ebuild name:

dev-libs/xxhash-0.8.3-r2

Description

Extremely fast non-cryptographic hash algorithm

Added to portage

2026-01-23

yakuake - 25.12.1-r1
Ebuild name:

kde-apps/yakuake-25.12.1-r1

Description

Quake-style terminal emulator based on konsole

Added to portage

2026-01-23

zanshin - 25.12.1-r1
Ebuild name:

kde-misc/zanshin-25.12.1-r1

Description

Getting things done application by KDE

Added to portage

2026-01-23

zen-sources - 6.18.6
Ebuild name:

sys-kernel/zen-sources-6.18.6

Description

The Zen Kernel Live Sources

Added to portage

2026-01-23

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