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:

86551

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-07-05
darktable - 5.6.0
Ebuild name:

media-gfx/darktable-5.6.0

Description

A virtual lighttable and darkroom for photographers

Added to portage

2026-07-05

ollama - 0.31.1
Ebuild name:

sci-ml/ollama-0.31.1

Description

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

Added to portage

2026-07-05

setproctitle - 1.3.7-r1
Ebuild name:

dev-python/setproctitle-1.3.7-r1

Description

Allow customization of the process title

Added to portage

2026-07-05

vanilla-sources - 5.10.260
Ebuild name:

sys-kernel/vanilla-sources-5.10.260

Description

Full sources for the Linux kernel

Added to portage

2026-07-05

vanilla-sources - 5.15.211
Ebuild name:

sys-kernel/vanilla-sources-5.15.211

Description

Full sources for the Linux kernel

Added to portage

2026-07-05

vanilla-sources - 6.1.177
Ebuild name:

sys-kernel/vanilla-sources-6.1.177

Description

Full sources for the Linux kernel

Added to portage

2026-07-05

vanilla-sources - 6.12.94
Ebuild name:

sys-kernel/vanilla-sources-6.12.94

Description

Full sources for the Linux kernel

Added to portage

2026-07-05

vanilla-sources - 6.18.38
Ebuild name:

sys-kernel/vanilla-sources-6.18.38

Description

Full sources for the Linux kernel

Added to portage

2026-07-05

vanilla-sources - 6.6.144
Ebuild name:

sys-kernel/vanilla-sources-6.6.144

Description

Full sources for the Linux kernel

Added to portage

2026-07-05

vanilla-sources - 7.1.3
Ebuild name:

sys-kernel/vanilla-sources-7.1.3

Description

Full sources for the Linux kernel

Added to portage

2026-07-05

2026-07-04
absl-py - 2.5.0
Ebuild name:

dev-python/absl-py-2.5.0

Description

Abseil Python Common Libraries

Added to portage

2026-07-04

apsw - 3.53.3.0
Ebuild name:

dev-python/apsw-3.53.3.0

Description

APSW - Another Python SQLite Wrapper

Added to portage

2026-07-04

blazesym_c - 0.1.9
Ebuild name:

dev-libs/blazesym_c-0.1.9

Description

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

Added to portage

2026-07-04

blessed - 1.46.0
Ebuild name:

dev-python/blessed-1.46.0

Description

Library for making terminal apps using colors, keyboard input and positio

Added to portage

2026-07-04

codespell - 2.4.2
Ebuild name:

dev-util/codespell-2.4.2

Description

Check text files for common misspellings

Added to portage

2026-07-04

crystal - 1.20.3
Ebuild name:

dev-lang/crystal-1.20.3

Description

The Crystal Programming Language

Added to portage

2026-07-04

curtail - 1.16.2
Ebuild name:

media-gfx/curtail-1.16.2

Description

Image compressor, supporting PNG, JPEG and WebP

Added to portage

2026-07-04

dnsdist - 2.1.0
Ebuild name:

net-dns/dnsdist-2.1.0

Description

A highly DNS-, DoS- and abuse-aware loadbalancer

Added to portage

2026-07-04

doggo - 1.2.0
Ebuild name:

net-dns/doggo-1.2.0

Description

Command-line DNS Client for Humans

Added to portage

2026-07-04

electrum - 4.8.0
Ebuild name:

net-misc/electrum-4.8.0

Description

User friendly Bitcoin client

Added to portage

2026-07-04

fheroes2 - 1.1.17
Ebuild name:

games-engines/fheroes2-1.1.17

Description

Recreation of HoMM2 game engine

Added to portage

2026-07-04

filelock - 3.29.5
Ebuild name:

dev-python/filelock-3.29.5

Description

A platform independent file lock for Python

Added to portage

2026-07-04

forbiddenfruit - 0.1.4-r1
Ebuild name:

dev-python/forbiddenfruit-0.1.4-r1

Description

Patch built-in Python objects

Added to portage

2026-07-04

freepg - 2.5.21
Ebuild name:

app-crypt/freepg-2.5.21

Description

Cross-distro GnuPG fork focused on OpenPGP compliance

Added to portage

2026-07-04

ggml - 0.15.3
Ebuild name:

sci-ml/ggml-0.15.3

Description

Tensor library for machine learning

Added to portage

2026-07-04

git-pw - 2.8.1
Ebuild name:

dev-vcs/git-pw-2.8.1

Description

A tool for integrating Git with Patchwork

Added to portage

2026-07-04

github-cli - 2.96.0
Ebuild name:

dev-util/github-cli-2.96.0

Description

GitHub CLI

Added to portage

2026-07-04

gitlab-cli - 1.106.0
Ebuild name:

dev-util/gitlab-cli-1.106.0

Description

the official gitlab command line interface

Added to portage

2026-07-04

gnome-shell-frippery - 49.1
Ebuild name:

gnome-extra/gnome-shell-frippery-49.1

Description

Unofficial extension pack providing GNOME 2-like features

Added to portage

2026-07-04

guessit - 4.1.0
Ebuild name:

dev-python/guessit-4.1.0

Description

Python library for guessing information from video filenames

Added to portage

2026-07-04

httpbin - 0.10.4-r1
Ebuild name:

dev-python/httpbin-0.10.4-r1

Description

HTTP Request and Response Service

Added to portage

2026-07-04

hypothesis - 6.156.1
Ebuild name:

dev-python/hypothesis-6.156.1

Description

A library for property based testing

Added to portage

2026-07-04

intellij-idea - 2026.1.4
Ebuild name:

dev-util/intellij-idea-2026.1.4

Description

A complete toolset for web, mobile and enterprise development

Added to portage

2026-07-04

jgemu - 1.0.0-r1
Ebuild name:

games-emulation/jgemu-1.0.0-r1

Description

Meta ebuild for the Jolly Good API

Added to portage

2026-07-04

jgrf - 1.4.0-r1
Ebuild name:

games-emulation/jgrf-1.4.0-r1

Description

The Jolly Good Reference Frontend

Added to portage

2026-07-04

jinxed - 2.1.0
Ebuild name:

dev-python/jinxed-2.1.0

Description

A pure-Python implementation of a subset of the Python curses library

Added to portage

2026-07-04

keystoneauth1 - 5.15.0
Ebuild name:

dev-python/keystoneauth1-5.15.0

Description

This package contains tools for authenticating to an OpenStack-base

Added to portage

2026-07-04

libmemcached-awesome - 1.1.4-r1
Ebuild name:

dev-libs/libmemcached-awesome-1.1.4-r1

Description

a C/C++ memcached client library

Added to portage

2026-07-04

libopenmpt - 0.8.7
Ebuild name:

media-libs/libopenmpt-0.8.7

Description

Library to decode tracked music files (modules)

Added to portage

2026-07-04

libsecret - 0.21.7
Ebuild name:

app-crypt/libsecret-0.21.7

Description

GObject library for accessing the freedesktop.org Secret Service API

Added to portage

2026-07-04

libsecret - 0.21.7-r1
Ebuild name:

app-crypt/libsecret-0.21.7-r1

Description

GObject library for accessing the freedesktop.org Secret Service API

Added to portage

2026-07-04

libu2f-host - 1.1.10-r1
Ebuild name:

app-crypt/libu2f-host-1.1.10-r1

Description

Yubico Universal 2nd Factor (U2F) Host C Library

Added to portage

2026-07-04

libu2f-server - 1.1.0-r2
Ebuild name:

app-crypt/libu2f-server-1.1.0-r2

Description

Yubico Universal 2nd Factor (U2F) server C Library

Added to portage

2026-07-04

loop-aes-losetup - 2.40.2
Ebuild name:

app-crypt/loop-aes-losetup-2.40.2

Description

Loop-AES losetup utility

Added to portage

2026-07-04

loop-aes-losetup - 2.41.1
Ebuild name:

app-crypt/loop-aes-losetup-2.41.1

Description

Loop-AES losetup utility

Added to portage

2026-07-04

mcrypt - 2.6.8-r3
Ebuild name:

app-crypt/mcrypt-2.6.8-r3

Description

Replacement of the old unix crypt(1)

Added to portage

2026-07-04

md5deep - 4.4
Ebuild name:

app-crypt/md5deep-4.4

Description

Expanded md5sum program with recursive and comparison options

Added to portage

2026-07-04

mediawiki - 1.46.0
Ebuild name:

www-apps/mediawiki-1.46.0

Description

The MediaWiki wiki web application (as used on wikipedia.org)

Added to portage

2026-07-04

mod_wsgi - 6.0.5
Ebuild name:

www-apache/mod_wsgi-6.0.5

Description

An Apache2 module for running Python WSGI applications

Added to portage

2026-07-04

monitoring-plugins - 3.0.1-r1
Ebuild name:

net-analyzer/monitoring-plugins-3.0.1-r1

Description

50+ standard plugins for Icinga, Naemon, Nagios, Shinken,

Added to portage

2026-07-04

mycli - 2.0.0
Ebuild name:

dev-db/mycli-2.0.0

Description

CLI for MySQL Database with auto-completion and syntax highlighting

Added to portage

2026-07-04

nagios-plugins - 2.5
Ebuild name:

net-analyzer/nagios-plugins-2.5

Description

Official plugins for Nagios

Added to portage

2026-07-04

no-littering - 1.8.9
Ebuild name:

app-emacs/no-littering-1.8.9

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-07-04

nvc - 1.21.1
Ebuild name:

sci-electronics/nvc-1.21.1

Description

NVC is a VHDL compiler and simulator

Added to portage

2026-07-04

odamex - 12.2.1
Ebuild name:

games-engines/odamex-12.2.1

Description

Online multiplayer free software engine for DOOM

Added to portage

2026-07-04

openmpt123 - 0.8.7
Ebuild name:

media-sound/openmpt123-0.8.7

Description

libopenmpt-based command line player for tracked music files (modules)

Added to portage

2026-07-04

openpgp-keys-akallabeth - 20260703
Ebuild name:

sec-keys/openpgp-keys-akallabeth-20260703

Description

OpenPGP key for Github user akallabeth

Added to portage

2026-07-04

openpgp-keys-andresimon - 20260703
Ebuild name:

sec-keys/openpgp-keys-andresimon-20260703

Description

OpenPGP keys used by Andre Simo

Added to portage

2026-07-04

openpgp-keys-andrewtridgell - 20260703
Ebuild name:

sec-keys/openpgp-keys-andrewtridgell-20260703

Description

OpenPGP keys used by Andrew Tridgell

Added to portage

2026-07-04

openpgp-keys-arnaldocarvalhodemelo - 20260703
Ebuild name:

sec-keys/openpgp-keys-arnaldocarvalhodemelo-20260703

Description

OpenPGP keys of Arnaldo Carvalho de Melo

Added to portage

2026-07-04

openpgp-keys-bison - 20260703
Ebuild name:

sec-keys/openpgp-keys-bison-20260703

Description

OpenPGP keys used by Bison

Added to portage

2026-07-04

openpgp-keys-botan - 20260703
Ebuild name:

sec-keys/openpgp-keys-botan-20260703

Description

OpenPGP keys used to sign Botan releases

Added to portage

2026-07-04

openpgp-keys-bradhouse - 20260703
Ebuild name:

sec-keys/openpgp-keys-bradhouse-20260703

Description

OpenPGP keys used by Brad House (bradh352)

Added to portage

2026-07-04

openpgp-keys-cgzones - 20260703
Ebuild name:

sec-keys/openpgp-keys-cgzones-20260703

Description

OpenPGP keys used by Christian Göttsche (cgzones)

Added to portage

2026-07-04

openpgp-keys-chetramey - 20260703
Ebuild name:

sec-keys/openpgp-keys-chetramey-20260703

Description

OpenPGP keys used by Chet Ramey

Added to portage

2026-07-04

openpgp-keys-crypto++ - 20260703
Ebuild name:

sec-keys/openpgp-keys-crypto++-20260703

Description

OpenPGP keys used to sign crypto++ releases

Added to portage

2026-07-04

openpgp-keys-findutils - 20260703
Ebuild name:

sec-keys/openpgp-keys-findutils-20260703

Description

OpenPGP keys used by GNU findutils

Added to portage

2026-07-04

openpgp-keys-gnupg - 20260703
Ebuild name:

sec-keys/openpgp-keys-gnupg-20260703

Description

OpenPGP keys used to sign GnuPG releases

Added to portage

2026-07-04

openpgp-keys-openvpn - 202600704
Ebuild name:

sec-keys/openpgp-keys-openvpn-202600704

Description

OpenPGP keys used for OpenVPN releases

Added to portage

2026-07-04

openvpn - 2.7.5
Ebuild name:

net-vpn/openvpn-2.7.5

Description

Robust and highly flexible tunneling application compatible with many OSes

Added to portage

2026-07-04

package-build - 5.0.0
Ebuild name:

app-emacs/package-build-5.0.0

Description

Tools for assembling a package archive

Added to portage

2026-07-04

patchelf - 0.19.0
Ebuild name:

dev-util/patchelf-0.19.0

Description

Small utility to modify the dynamic linker and RPATH of ELF executables

Added to portage

2026-07-04

phonenumbers - 9.0.34
Ebuild name:

dev-python/phonenumbers-9.0.34

Description

Python port of Google's libphonenumber

Added to portage

2026-07-04

privoxy - 4.2.0
Ebuild name:

net-proxy/privoxy-4.2.0

Description

A web proxy with advanced filtering capabilities for enhancing privacy

Added to portage

2026-07-04

projectile - 3.1.0
Ebuild name:

app-emacs/projectile-3.1.0

Description

A project interaction library for Emacs

Added to portage

2026-07-04

pyaml - 26.7.0
Ebuild name:

dev-python/pyaml-26.7.0

Description

PyYAML-based module to produce pretty and readable YAML-serialized data

Added to portage

2026-07-04

pylibmc - 1.6.3-r3
Ebuild name:

dev-python/pylibmc-1.6.3-r3

Description

Libmemcached wrapper written as a Python extension

Added to portage

2026-07-04

pyproject-metadata - 0.12.1
Ebuild name:

dev-python/pyproject-metadata-0.12.1

Description

PEP 621 metadata parsing

Added to portage

2026-07-04

pyquery - 2.0.1-r1
Ebuild name:

dev-python/pyquery-2.0.1-r1

Description

A jQuery-like library for python

Added to portage

2026-07-04

pytest-expect - 1.1.0-r3
Ebuild name:

dev-python/pytest-expect-1.1.0-r3

Description

pytest plugin that stores test expectations by saving the set of

Added to portage

2026-07-04

python-discovery - 1.4.3
Ebuild name:

dev-python/python-discovery-1.4.3

Description

Python interpreter discovery

Added to portage

2026-07-04

rebulk - 6.0.1
Ebuild name:

dev-python/rebulk-6.0.1

Description

Python library that performs advanced searches in strings

Added to portage

2026-07-04

requests-cache - 1.3.3
Ebuild name:

dev-python/requests-cache-1.3.3

Description

Persistent cache for requests library

Added to portage

2026-07-04

responses - 0.26.2
Ebuild name:

dev-python/responses-0.26.2

Description

Utility for mocking out the Python Requests library

Added to portage

2026-07-04

rust-std - 1.92.0_p1-r1
Ebuild name:

sys-devel/rust-std-1.92.0_p1-r1

Description

Rust standard library, standalone (for crossdev)

Added to portage

2026-07-04

rust-std - 9999
Ebuild name:

sys-devel/rust-std-9999

Description

Rust standard library, standalone (for crossdev)

Added to portage

2026-07-04

sabctools - 9.6.0
Ebuild name:

dev-python/sabctools-9.6.0

Description

Module providing raw yEnc encoding/decoding for SABnzbd

Added to portage

2026-07-04

shell-maker - 0.93.3
Ebuild name:

app-emacs/shell-maker-0.93.3

Description

Interaction mode for making comint shells for GNU Emacs

Added to portage

2026-07-04

shtab - 1.8.1
Ebuild name:

dev-python/shtab-1.8.1

Description

Automagic shell tab completion for Python CLI applications

Added to portage

2026-07-04

sphinx - 9.1.0-r1
Ebuild name:

dev-python/sphinx-9.1.0-r1

Description

Python documentation generator

Added to portage

2026-07-04

sphinx-autodoc-typehints - 3.12.1
Ebuild name:

dev-python/sphinx-autodoc-typehints-3.12.1

Description

Type hints support for the Sphinx autodoc extension

Added to portage

2026-07-04

tea - 0.14.2
Ebuild name:

dev-util/tea-0.14.2

Description

Command line tool to interact with Gitea server

Added to portage

2026-07-04

transient - 0.13.5
Ebuild name:

app-emacs/transient-0.13.5

Description

Transient commands abstraction for GNU Emacs

Added to portage

2026-07-04

tree-sitter - 0.26.0
Ebuild name:

dev-python/tree-sitter-0.26.0

Description

Python bindings to the Tree-sitter parsing library

Added to portage

2026-07-04

tuareg-mode - 3.1.0
Ebuild name:

app-emacs/tuareg-mode-3.1.0

Description

An Objective Caml/Camllight mode for Emacs

Added to portage

2026-07-04

twisted - 26.4.0-r1
Ebuild name:

dev-python/twisted-26.4.0-r1

Description

An asynchronous networking framework written in Python

Added to portage

2026-07-04

valijson - 1.1.1
Ebuild name:

dev-cpp/valijson-1.1.1

Description

Header-only C++ library for JSON Schema validation

Added to portage

2026-07-04

virtualbox - 7.2.12
Ebuild name:

app-emulation/virtualbox-7.2.12

Description

Family of powerful x86 virtualization products for enterprise and h

Added to portage

2026-07-04

virtualbox-additions - 7.2.12
Ebuild name:

app-emulation/virtualbox-additions-7.2.12

Description

CD image containing guest additions for VirtualBox

Added to portage

2026-07-04

virtualbox-extpack-oracle - 7.2.12
Ebuild name:

app-emulation/virtualbox-extpack-oracle-7.2.12

Description

PUEL extensions for VirtualBox

Added to portage

2026-07-04

virtualbox-guest-additions - 7.2.12
Ebuild name:

app-emulation/virtualbox-guest-additions-7.2.12

Description

VirtualBox kernel modules and user-space tools for

Added to portage

2026-07-04

virtualbox-guest-modules - 7.2.12
Ebuild name:

app-emulation/virtualbox-guest-modules-7.2.12

Description

Kernel Modules for Virtualbox Guest Additions

Added to portage

2026-07-04

virtualbox-kvm - 7.2.12_pre20260201
Ebuild name:

app-emulation/virtualbox-kvm-7.2.12_pre20260201

Description

Family of powerful x86 virtualization products for

Added to portage

2026-07-04

virtualbox-modules - 7.2.12
Ebuild name:

app-emulation/virtualbox-modules-7.2.12

Description

Kernel Modules for Virtualbox

Added to portage

2026-07-04

websockets - 16.0-r1
Ebuild name:

dev-python/websockets-16.0-r1

Description

Library for building WebSocket servers and clients in Python

Added to portage

2026-07-04

weston - 15.0.92
Ebuild name:

dev-libs/weston-15.0.92

Description

Wayland reference compositor

Added to portage

2026-07-04

whenever - 0.10.1
Ebuild name:

dev-python/whenever-0.10.1

Description

Modern datetime library for Python

Added to portage

2026-07-04

with-editor - 3.5.2
Ebuild name:

app-emacs/with-editor-3.5.2

Description

Use the Emacsclient as the of child processes

Added to portage

2026-07-04

xmlrpc-c - 1.64.03-r1
Ebuild name:

dev-libs/xmlrpc-c-1.64.03-r1

Description

A lightweight RPC library based on XML and HTTP

Added to portage

2026-07-04

zlib-ng - 1.0.0-r1
Ebuild name:

dev-python/zlib-ng-1.0.0-r1

Description

Drop-in replacement for zlib and gzip modules using zlib-ng

Added to portage

2026-07-04

zope-testing - 6.2
Ebuild name:

dev-python/zope-testing-6.2

Description

Zope testing helpers

Added to portage

2026-07-04

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