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:

86549

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

2026-07-03
awkward - 2.10.0
Ebuild name:

dev-python/awkward-2.10.0

Description

Manipulate JSON-like data with NumPy-like idioms

Added to portage

2026-07-03

awkward-cpp - 54
Ebuild name:

dev-python/awkward-cpp-54

Description

CPU kernels and compiled extensions for Awkward Array

Added to portage

2026-07-03

awscli - 1.45.40
Ebuild name:

app-admin/awscli-1.45.40

Description

Universal Command Line Environment for AWS

Added to portage

2026-07-03

bitwarden-desktop-bin - 2026.6.0
Ebuild name:

app-admin/bitwarden-desktop-bin-2026.6.0

Description

Bitwarden password manager desktop client

Added to portage

2026-07-03

boto3 - 1.43.40
Ebuild name:

dev-python/boto3-1.43.40

Description

The AWS SDK for Python

Added to portage

2026-07-03

botocore - 1.43.40
Ebuild name:

dev-python/botocore-1.43.40

Description

Low-level, data-driven core of boto 3

Added to portage

2026-07-03

candy - 6.1.8
Ebuild name:

net-vpn/candy-6.1.8

Description

A reliable, low-latency, and anti-censorship virtual private network

Added to portage

2026-07-03

certbot - 5.6.0
Ebuild name:

app-crypt/certbot-5.6.0

Description

Let's Encrypt client to automate deployment of X.509 certificates

Added to portage

2026-07-03

clamav - 0.103.12-r5
Ebuild name:

app-antivirus/clamav-0.103.12-r5

Description

Clam Anti-Virus Scanner

Added to portage

2026-07-03

coverage - 7.15.0
Ebuild name:

dev-python/coverage-7.15.0

Description

Code coverage measurement for Python

Added to portage

2026-07-03

croniter - 6.2.3
Ebuild name:

dev-python/croniter-6.2.3

Description

Python module to provide iteration for datetime object

Added to portage

2026-07-03

derper - 1.100.0
Ebuild name:

net-vpn/derper-1.100.0

Description

DERP server for tailscale network

Added to portage

2026-07-03

dune - 3.23.1
Ebuild name:

dev-ml/dune-3.23.1

Description

A composable build system for OCaml

Added to portage

2026-07-03

faudio - 26.07
Ebuild name:

app-emulation/faudio-26.07

Description

Accuracy-focused XAudio reimplementation for open platforms

Added to portage

2026-07-03

filezilla - 3.70.6
Ebuild name:

net-ftp/filezilla-3.70.6

Description

FTP client with lots of useful features and an intuitive interface

Added to portage

2026-07-03

fitsio - 1.4.0
Ebuild name:

dev-python/fitsio-1.4.0

Description

Python library to read from and write to FITS files

Added to portage

2026-07-03

framework_tool - 0.6.5
Ebuild name:

app-laptop/framework_tool-0.6.5

Description

Tool to control Framework Computer systems

Added to portage

2026-07-03

fzssh - 1.3.0
Ebuild name:

net-libs/fzssh-1.3.0

Description

A SSH/SFTP library based on libfilezilla

Added to portage

2026-07-03

itsdangerous - 2.2.0-r1
Ebuild name:

dev-python/itsdangerous-2.2.0-r1

Description

Various helpers to pass trusted data to untrusted environments and

Added to portage

2026-07-03

libfilezilla - 0.56.1
Ebuild name:

dev-libs/libfilezilla-0.56.1

Description

C++ library offering some basic functionality for platform-independent

Added to portage

2026-07-03

libmd - 1.2.0
Ebuild name:

app-crypt/libmd-1.2.0

Description

Message Digest functions from BSD systems

Added to portage

2026-07-03

libmodbus - 3.2.0
Ebuild name:

dev-libs/libmodbus-3.2.0

Description

Modbus library which supports RTU communication over a serial line or a TC

Added to portage

2026-07-03

libscrypt - 1.22-r3
Ebuild name:

app-crypt/libscrypt-1.22-r3

Description

Shared library to implement the scrypt algorithm

Added to portage

2026-07-03

libscrypt - 1.22-r3
Ebuild name:

app-crypt/libscrypt-1.22-r3

Description

Shared library to implement the scrypt algorithm

Added to portage

2026-07-03

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

libupnp - 2.0.2
Ebuild name:

net-libs/libupnp-2.0.2

Description

An Portable Open Source UPnP Development Kit

Added to portage

2026-07-03

nattka - 0.4.3
Ebuild name:

app-portage/nattka-0.4.3

Description

A New Arch Tester Toolkit -- open-source stable-bot replacement

Added to portage

2026-07-03

nerdctl - 2.3.4
Ebuild name:

app-containers/nerdctl-2.3.4

Description

Docker-compatible CLI for containerd, with support for Compose

Added to portage

2026-07-03

netifrc - 0.7.13-r1
Ebuild name:

net-misc/netifrc-0.7.13-r1

Description

Gentoo Network Interface Management Scripts

Added to portage

2026-07-03

netifrc - 0.7.14-r1
Ebuild name:

net-misc/netifrc-0.7.14-r1

Description

Gentoo Network Interface Management Scripts

Added to portage

2026-07-03

openpgp-keys-acl - 20260702
Ebuild name:

sec-keys/openpgp-keys-acl-20260702

Description

OpenPGP keys used by sys-apps/acl

Added to portage

2026-07-03

openrc - 0.63.3
Ebuild name:

sys-apps/openrc-0.63.3

Description

OpenRC manages the services, startup and shutdown of a host

Added to portage

2026-07-03

pjproject - 2.17-r1
Ebuild name:

net-libs/pjproject-2.17-r1

Description

Open source SIP, Media, and NAT Traversal Library

Added to portage

2026-07-03

puppet - 8.10.0-r1
Ebuild name:

app-admin/puppet-8.10.0-r1

Description

A system automation and configuration management software

Added to portage

2026-07-03

pycargoebuild - 0.16.0
Ebuild name:

app-portage/pycargoebuild-0.16.0

Description

A generator for Rust/Cargo ebuilds written in Python

Added to portage

2026-07-03

pymdown-extensions - 11.0.1
Ebuild name:

dev-python/pymdown-extensions-11.0.1

Description

Extensions for Python Markdown

Added to portage

2026-07-03

python-ironicclient - 6.2.0
Ebuild name:

dev-python/python-ironicclient-6.2.0

Description

Python bindings for the Ironic API

Added to portage

2026-07-03

python-utils - 4.0.0
Ebuild name:

dev-python/python-utils-4.0.0

Description

Collection of small Python functions & classes

Added to portage

2026-07-03

qmmp - 2.3.3
Ebuild name:

media-sound/qmmp-2.3.3

Description

Qt-based audio player with winamp/xmms skins support

Added to portage

2026-07-03

qmmp-plugin-pack - 2.3.1
Ebuild name:

media-plugins/qmmp-plugin-pack-2.3.1

Description

Set of extra plugins for Qmmp

Added to portage

2026-07-03

qpdfview - 0.5_p20260701
Ebuild name:

app-text/qpdfview-0.5_p20260701

Description

Tabbed document viewer

Added to portage

2026-07-03

rar - 7.23
Ebuild name:

app-arch/rar-7.23

Description

RAR compressor/uncompressor

Added to portage

2026-07-03

slack - 4.50.143
Ebuild name:

net-im/slack-4.50.143

Description

Team collaboration tool

Added to portage

2026-07-03

smartdns - 48.2
Ebuild name:

net-dns/smartdns-48.2

Description

A local DNS server returns the fastest access results

Added to portage

2026-07-03

stevedore - 5.9.0
Ebuild name:

dev-python/stevedore-5.9.0

Description

Manage dynamic plugins for Python applications

Added to portage

2026-07-03

subrandr - 1.4.0
Ebuild name:

media-libs/subrandr-1.4.0

Description

Subtitle rendering library for rendering non-ASS subtitles

Added to portage

2026-07-03

ttyrec - 1.2.0.0
Ebuild name:

app-misc/ttyrec-1.2.0.0

Description

ttyrec provides tools to record and replay a terminal session

Added to portage

2026-07-03

typing-extensions - 4.16.0
Ebuild name:

dev-python/typing-extensions-4.16.0

Description

Backported and Experimental Type Hints for Python 3.7+

Added to portage

2026-07-03

unrar - 7.2.7
Ebuild name:

app-arch/unrar-7.2.7

Description

Uncompress rar files

Added to portage

2026-07-03

wcmatch - 10.2.1
Ebuild name:

dev-python/wcmatch-10.2.1

Description

Wildcard/glob file name matcher

Added to portage

2026-07-03

yq-go - 4.53.3
Ebuild name:

app-misc/yq-go-4.53.3

Description

yq is a lightweight and portable command-line YAML, JSON and XML processor

Added to portage

2026-07-03

zsh-completions - 0.36.0
Ebuild name:

app-shells/zsh-completions-0.36.0

Description

Additional completion definitions for Zsh

Added to portage

2026-07-03

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