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:

87601

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Installation Guides

Summary

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

Changelog

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

Note

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

System descriptions

Hardware

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

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

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

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

Software

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

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

Installation

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

I will only describe the modification on each step.

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

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

Booting:

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

Partitioning the hdd(s)

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

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

My HDD layout :

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

Setting up the raid 1

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

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

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

In case you want to mirror the swap:

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

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

start the raid by running

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

You should see something like this:

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

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

Applying a Filesystem to a Partition

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

Activate the Swap Partitions

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

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

Mounting

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

Configuring the Compile Options

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

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

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

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

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

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

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

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

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

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

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

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

Follow the installation manual including the Stage1 to Stage2 section.

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

Proceed from stage2 to stage3 the documented way.

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

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

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

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

configuring /etc/fstab

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

for the swap line use the following 2 lines

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

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

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

have the basic system running as you want.

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

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

comments

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



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-08-11
android-studio - 2026.1.3.8
Ebuild name:

dev-util/android-studio-2026.1.3.8

Description

Android development environment based on IntelliJ IDEA

Added to portage

2026-08-11

apache-arrow - 25.0.1
Ebuild name:

dev-libs/apache-arrow-25.0.1

Description

A cross-language development platform for in-memory data

Added to portage

2026-08-11

boto3 - 1.43.68
Ebuild name:

dev-python/boto3-1.43.68

Description

The AWS SDK for Python

Added to portage

2026-08-11

botocore - 1.43.68
Ebuild name:

dev-python/botocore-1.43.68

Description

Low-level, data-driven core of boto 3

Added to portage

2026-08-11

bsnes-jg - 2.1.0-r1
Ebuild name:

games-emulation/bsnes-jg-2.1.0-r1

Description

Jolly Good Fork of bsnes

Added to portage

2026-08-11

bsnes-jg - 2.1.1
Ebuild name:

games-emulation/bsnes-jg-2.1.1

Description

Jolly Good Fork of bsnes

Added to portage

2026-08-11

cachebox - 6.2.5
Ebuild name:

dev-python/cachebox-6.2.5

Description

The fastest memoizing and caching Python library written in Rust

Added to portage

2026-08-11

cega-jg - 0.6.1-r1
Ebuild name:

games-emulation/cega-jg-0.6.1-r1

Description

Jolly Good SG-1000, SMS, and Game Gear Emulator

Added to portage

2026-08-11

cega-jg - 0.6.2
Ebuild name:

games-emulation/cega-jg-0.6.2

Description

Jolly Good SG-1000, SMS, and Game Gear Emulator

Added to portage

2026-08-11

clamav - 0.103.12-r6
Ebuild name:

app-antivirus/clamav-0.103.12-r6

Description

Clam Anti-Virus Scanner

Added to portage

2026-08-11

dep-logic - 0.7.1
Ebuild name:

dev-python/dep-logic-0.7.1

Description

Python dependency specifications supporting logical operations

Added to portage

2026-08-11

django-debug-toolbar - 7.1.0
Ebuild name:

dev-python/django-debug-toolbar-7.1.0

Description

A configurable set of panels that display various debug infor

Added to portage

2026-08-11

eiciel - 0.10.1-r1
Ebuild name:

gnome-extra/eiciel-0.10.1-r1

Description

ACL editor for GNOME, with Nautilus extension

Added to portage

2026-08-11

expat - 2.8.3
Ebuild name:

dev-libs/expat-2.8.3

Description

Stream-oriented XML parser library

Added to portage

2026-08-11

feedparser-sgmllib - 2.1.0
Ebuild name:

dev-python/feedparser-sgmllib-2.1.0

Description

sgmllib from Python 2.7 for feedparser use

Added to portage

2026-08-11

gambatte-jg - 0.6.0-r1
Ebuild name:

games-emulation/gambatte-jg-0.6.0-r1

Description

Jolly Good Fork of Gambatte

Added to portage

2026-08-11

gambatte-jg - 0.6.1
Ebuild name:

games-emulation/gambatte-jg-0.6.1

Description

Jolly Good Fork of Gambatte

Added to portage

2026-08-11

geolith-jg - 0.3.0-r1
Ebuild name:

games-emulation/geolith-jg-0.3.0-r1

Description

Jolly Good Neo Geo AES/MVS Emulator

Added to portage

2026-08-11

geolith-jg - 0.4.1-r2
Ebuild name:

games-emulation/geolith-jg-0.4.1-r2

Description

Jolly Good Neo Geo AES/MVS/CD/CDZ Emulator

Added to portage

2026-08-11

geolith-jg - 0.4.2
Ebuild name:

games-emulation/geolith-jg-0.4.2

Description

Jolly Good Neo Geo AES/MVS/CD/CDZ Emulator

Added to portage

2026-08-11

heroic-bin - 2.22.1
Ebuild name:

games-util/heroic-bin-2.22.1

Description

GOG and Epic Games Launcher for Linux

Added to portage

2026-08-11

intellij-idea - 2026.2.1
Ebuild name:

dev-util/intellij-idea-2026.2.1

Description

A complete toolset for web, mobile and enterprise development

Added to portage

2026-08-11

jg - 1.0.0-r1
Ebuild name:

media-libs/jg-1.0.0-r1

Description

Reference Implementation of The Jolly Good API

Added to portage

2026-08-11

jg - 2.0.0
Ebuild name:

media-libs/jg-2.0.0

Description

Reference Implementation of The Jolly Good API

Added to portage

2026-08-11

jgrf - 1.4.0-r2
Ebuild name:

games-emulation/jgrf-1.4.0-r2

Description

The Jolly Good Reference Frontend

Added to portage

2026-08-11

jgrf - 2.0.1
Ebuild name:

games-emulation/jgrf-2.0.1

Description

The Jolly Good Reference Frontend

Added to portage

2026-08-11

jollycv-jg - 2.0.0-r1
Ebuild name:

games-emulation/jollycv-jg-2.0.0-r1

Description

Jolly Good ColecoVision, CreatiVision and My Vision Emulator

Added to portage

2026-08-11

jollycv-jg - 2.0.1
Ebuild name:

games-emulation/jollycv-jg-2.0.1

Description

Jolly Good ColecoVision, CreatiVision and My Vision Emulator

Added to portage

2026-08-11

koleo-cli - 0.2.137.37
Ebuild name:

app-misc/koleo-cli-0.2.137.37

Description

A simple CLI for koleo.pl railway planner

Added to portage

2026-08-11

linux-firmware - 20260810
Ebuild name:

sys-kernel/linux-firmware-20260810

Description

Linux firmware files

Added to portage

2026-08-11

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

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

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

mednafen-jg - 1.32.1.1-r1
Ebuild name:

games-emulation/mednafen-jg-1.32.1.1-r1

Description

Jolly Good Port of Mednafen

Added to portage

2026-08-11

mednafen-jg - 1.32.1.2
Ebuild name:

games-emulation/mednafen-jg-1.32.1.2

Description

Jolly Good Port of Mednafen

Added to portage

2026-08-11

melonds-jg - 1.1.0-r1
Ebuild name:

games-emulation/melonds-jg-1.1.0-r1

Description

Jolly Good Port of melonDS

Added to portage

2026-08-11

melonds-jg - 1.1.0.1
Ebuild name:

games-emulation/melonds-jg-1.1.0.1

Description

Jolly Good Port of melonDS

Added to portage

2026-08-11

meson - 1.12.0
Ebuild name:

dev-build/meson-1.12.0

Description

Open source build system

Added to portage

2026-08-11

mgba-jg - 0.10.5-r1
Ebuild name:

games-emulation/mgba-jg-0.10.5-r1

Description

Jolly Good Port of mGBA

Added to portage

2026-08-11

mgba-jg - 0.10.5.1
Ebuild name:

games-emulation/mgba-jg-0.10.5.1

Description

Jolly Good Port of mGBA

Added to portage

2026-08-11

nestopia-jg - 1.53.2-r1
Ebuild name:

games-emulation/nestopia-jg-1.53.2-r1

Description

Jolly Good Fork of Nestopia

Added to portage

2026-08-11

nestopia-jg - 1.54.0
Ebuild name:

games-emulation/nestopia-jg-1.54.0

Description

Jolly Good Fork of Nestopia

Added to portage

2026-08-11

pegtl - 3.2.8-r2
Ebuild name:

dev-libs/pegtl-3.2.8-r2

Description

Header-only library for creating parsers according to Parsing Expression Gr

Added to portage

2026-08-11

prosystem-jg - 1.5.3-r1
Ebuild name:

games-emulation/prosystem-jg-1.5.3-r1

Description

Jolly Good Fork of ProSystem

Added to portage

2026-08-11

prosystem-jg - 1.5.4
Ebuild name:

games-emulation/prosystem-jg-1.5.4

Description

Jolly Good Fork of ProSystem

Added to portage

2026-08-11

pyqt6 - 6.11.0-r1
Ebuild name:

dev-python/pyqt6-6.11.0-r1

Description

Python bindings for the Qt framework

Added to portage

2026-08-11

sameboy-jg - 1.0.3-r1
Ebuild name:

games-emulation/sameboy-jg-1.0.3-r1

Description

Jolly Good Port of SameBoy

Added to portage

2026-08-11

sameboy-jg - 1.0.3.1
Ebuild name:

games-emulation/sameboy-jg-1.0.3.1

Description

Jolly Good Port of SameBoy

Added to portage

2026-08-11

vecx-jg - 1.2.3-r1
Ebuild name:

games-emulation/vecx-jg-1.2.3-r1

Description

Jolly Good Fork of vecx

Added to portage

2026-08-11

vecx-jg - 1.2.4
Ebuild name:

games-emulation/vecx-jg-1.2.4

Description

Jolly Good Fork of vecx

Added to portage

2026-08-11

2026-08-10
apache_exporter - 0-r1
Ebuild name:

acct-group/apache_exporter-0-r1

Description

Group used for the apache_exporter prometheus plugin

Added to portage

2026-08-10

apache_exporter - 0-r1
Ebuild name:

acct-user/apache_exporter-0-r1

Description

User for the apache_exporter prometheus plugin

Added to portage

2026-08-10

apache_exporter - 1.1.1
Ebuild name:

app-metrics/apache_exporter-1.1.1

Description

Prometheus exporter for apache metrics

Added to portage

2026-08-10

at-spi2-core - 2.58.8
Ebuild name:

app-accessibility/at-spi2-core-2.58.8

Description

D-Bus accessibility specifications and registration daemon

Added to portage

2026-08-10

b4 - 0.16.0
Ebuild name:

net-mail/b4-0.16.0

Description

Utility for fetching patchsets from public-inbox

Added to portage

2026-08-10

bats - 1.14.0
Ebuild name:

dev-util/bats-1.14.0

Description

Bats-core Bash Automated Testing System

Added to portage

2026-08-10

cjose - 0.6.2.7
Ebuild name:

dev-libs/cjose-0.6.2.7

Description

C library implementing the Javascript Object Signing and Encryption (JOSE)

Added to portage

2026-08-10

curses - 1.0.12
Ebuild name:

dev-ml/curses-1.0.12

Description

Bindings to ncurses

Added to portage

2026-08-10

dist-kernel - 6.12.103
Ebuild name:

virtual/dist-kernel-6.12.103

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-08-10

dist-kernel - 6.18.44
Ebuild name:

virtual/dist-kernel-6.18.44

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-08-10

dist-kernel - 6.6.151
Ebuild name:

virtual/dist-kernel-6.6.151

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-08-10

dist-kernel - 7.1.8
Ebuild name:

virtual/dist-kernel-7.1.8

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-08-10

dnsdist - 2.1.1
Ebuild name:

net-dns/dnsdist-2.1.1

Description

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

Added to portage

2026-08-10

elixir - 1.20.2
Ebuild name:

dev-lang/elixir-1.20.2

Description

Elixir programming language

Added to portage

2026-08-10

esptool - 4.12.0
Ebuild name:

dev-embedded/esptool-4.12.0

Description

Utility to communicate with the ROM bootloader in Espressif ESP8266 and

Added to portage

2026-08-10

esptool - 5.3.1
Ebuild name:

dev-embedded/esptool-5.3.1

Description

Serial utility for flashing and interacting with Espressif ESP8266 and E

Added to portage

2026-08-10

eza - 0.23.5
Ebuild name:

sys-apps/eza-0.23.5

Description

A modern, maintained replacement for ls

Added to portage

2026-08-10

gajim - 2.5.0
Ebuild name:

net-im/gajim-2.5.0

Description

GTK XMPP Client

Added to portage

2026-08-10

gcc - 16.2.1_p20260808
Ebuild name:

sys-devel/gcc-16.2.1_p20260808

Description

The GNU Compiler Collection

Added to portage

2026-08-10

gcc - 17.0.0_p20260809
Ebuild name:

sys-devel/gcc-17.0.0_p20260809

Description

The GNU Compiler Collection

Added to portage

2026-08-10

gdal - 3.13.2
Ebuild name:

sci-libs/gdal-3.13.2

Description

Translator library for raster geospatial data formats (includes OGR support)

Added to portage

2026-08-10

gdbus-codegen - 2.88.3
Ebuild name:

dev-util/gdbus-codegen-2.88.3

Description

GDBus code and documentation generator

Added to portage

2026-08-10

gdm - 49.2-r3
Ebuild name:

gnome-base/gdm-49.2-r3

Description

GNOME Display Manager for managing graphical display servers and user logins

Added to portage

2026-08-10

gdm - 49.3-r3
Ebuild name:

gnome-base/gdm-49.3-r3

Description

GNOME Display Manager for managing graphical display servers and user logins

Added to portage

2026-08-10

gdm - 49.4
Ebuild name:

gnome-base/gdm-49.4

Description

GNOME Display Manager for managing graphical display servers and user logins

Added to portage

2026-08-10

gentoo-kernel - 6.12.103
Ebuild name:

sys-kernel/gentoo-kernel-6.12.103

Description

Linux kernel built with Gentoo patches

Added to portage

2026-08-10

gentoo-kernel - 6.18.44
Ebuild name:

sys-kernel/gentoo-kernel-6.18.44

Description

Linux kernel built with Gentoo patches

Added to portage

2026-08-10

gentoo-kernel - 6.6.151
Ebuild name:

sys-kernel/gentoo-kernel-6.6.151

Description

Linux kernel built with Gentoo patches

Added to portage

2026-08-10

gentoo-kernel - 7.1.8
Ebuild name:

sys-kernel/gentoo-kernel-7.1.8

Description

Linux kernel built with Gentoo patches

Added to portage

2026-08-10

gentoo-kernel-bin - 6.12.103
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.103

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-08-10

gentoo-kernel-bin - 6.18.44
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.44

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-08-10

gentoo-kernel-bin - 6.6.151
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.151

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-08-10

gentoo-kernel-bin - 7.1.8
Ebuild name:

sys-kernel/gentoo-kernel-bin-7.1.8

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-08-10

gentoo-kernel-modprep - 6.12.103
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.12.103

Description

Minimal subset of gentoo-kernel-bin for building modules,

Added to portage

2026-08-10

gentoo-kernel-modprep - 6.18.44
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.18.44

Description

Minimal subset of gentoo-kernel-bin for building modules,

Added to portage

2026-08-10

gentoo-kernel-modprep - 6.6.151
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.6.151

Description

Minimal subset of gentoo-kernel-bin for building modules,

Added to portage

2026-08-10

gentoo-kernel-modprep - 7.1.8
Ebuild name:

sys-kernel/gentoo-kernel-modprep-7.1.8

Description

Minimal subset of gentoo-kernel-bin for building modules, fo

Added to portage

2026-08-10

gentoo-sources - 6.12.103
Ebuild name:

sys-kernel/gentoo-sources-6.12.103

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-08-10

gentoo-sources - 6.18.44
Ebuild name:

sys-kernel/gentoo-sources-6.18.44

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-08-10

gentoo-sources - 6.6.151
Ebuild name:

sys-kernel/gentoo-sources-6.6.151

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-08-10

gentoo-sources - 7.1.8
Ebuild name:

sys-kernel/gentoo-sources-7.1.8

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-08-10

gexiv2 - 0.14.7
Ebuild name:

media-libs/gexiv2-0.14.7

Description

GObject-based wrapper around the Exiv2 library

Added to portage

2026-08-10

git-sources - 7.2_rc7
Ebuild name:

sys-kernel/git-sources-7.2_rc7

Description

The very latest -git version of the Linux kernel

Added to portage

2026-08-10

glances - 4.5.6
Ebuild name:

sys-process/glances-4.5.6

Description

CLI curses based monitoring tool

Added to portage

2026-08-10

glib - 2.88.3
Ebuild name:

dev-libs/glib-2.88.3

Description

The GLib library of C routines

Added to portage

2026-08-10

glib-utils - 2.88.3
Ebuild name:

dev-util/glib-utils-2.88.3

Description

Build utilities for GLib using projects

Added to portage

2026-08-10

gnome-control-center - 49.9
Ebuild name:

gnome-base/gnome-control-center-49.9

Description

GNOME's main interface to configure various aspects of the des

Added to portage

2026-08-10

gnome-session-openrc - 49.3
Ebuild name:

gnome-base/gnome-session-openrc-49.3

Description

Gnome session leader for OpenRC

Added to portage

2026-08-10

gnome-shell - 49.9
Ebuild name:

gnome-base/gnome-shell-49.9

Description

Provides core UI functions for the GNOME desktop

Added to portage

2026-08-10

gnome-user-docs - 49.9
Ebuild name:

gnome-extra/gnome-user-docs-49.9

Description

GNOME end user documentation

Added to portage

2026-08-10

gtkmm - 4.20.0-r1
Ebuild name:

dev-cpp/gtkmm-4.20.0-r1

Description

C++ interface for GTK+

Added to portage

2026-08-10

httpx2 - 2.10.0
Ebuild name:

dev-python/httpx2-2.10.0

Description

The next generation HTTP client (Pydantic fork)

Added to portage

2026-08-10

ipmicfg - 1.38.0.260701
Ebuild name:

sys-apps/ipmicfg-1.38.0.260701

Description

An in-band utility for configuring Supermicro IPMI devices

Added to portage

2026-08-10

kdeconnect - 26.04.3-r3
Ebuild name:

kde-misc/kdeconnect-26.04.3-r3

Description

Adds communication between KDE Plasma and your smartphone

Added to portage

2026-08-10

keepassxc - 2.8.0_pre20260629-r1
Ebuild name:

app-admin/keepassxc-2.8.0_pre20260629-r1

Description

KeePassXC - KeePass Cross-platform Community Edition

Added to portage

2026-08-10

knowit - 0.6.1
Ebuild name:

dev-python/knowit-0.6.1

Description

Know better your media files

Added to portage

2026-08-10

libadwaita - 1.8.7
Ebuild name:

gui-libs/libadwaita-1.8.7

Description

Building blocks for modern GNOME applications

Added to portage

2026-08-10

libcec - 8.1.6
Ebuild name:

dev-libs/libcec-8.1.6

Description

Library for communicating with the Pulse-Eight USB HDMI-CEC Adaptor

Added to portage

2026-08-10

liblore - 0.8.1
Ebuild name:

dev-python/liblore-0.8.1

Description

Shared library for public-inbox / lore.kernel.org access

Added to portage

2026-08-10

libssh - 0.11.5
Ebuild name:

net-libs/libssh-0.11.5

Description

Access a working SSH implementation by means of a library

Added to portage

2026-08-10

libssh - 0.12.2
Ebuild name:

net-libs/libssh-0.12.2

Description

Access a working SSH implementation by means of a library

Added to portage

2026-08-10

lmdb - 0.9.36
Ebuild name:

dev-db/lmdb-0.9.36

Description

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

Added to portage

2026-08-10

methane - 3.0.1-r1
Ebuild name:

games-arcade/methane-3.0.1-r1

Description

Port from an old Amiga game

Added to portage

2026-08-10

monitoring-plugins - 3.0.3
Ebuild name:

net-analyzer/monitoring-plugins-3.0.3

Description

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

Added to portage

2026-08-10

mycli - 2.9.0
Ebuild name:

dev-db/mycli-2.9.0

Description

CLI for MySQL Database with auto-completion and syntax highlighting

Added to portage

2026-08-10

numpy - 2.5.2
Ebuild name:

dev-python/numpy-2.5.2

Description

Fast array and numerical python library

Added to portage

2026-08-10

nwjs - 0.114.0-r1
Ebuild name:

dev-libs/nwjs-0.114.0-r1

Description

Framework that lets you call all Node.js modules directly from the DOM

Added to portage

2026-08-10

odamex - 12.3.0
Ebuild name:

games-engines/odamex-12.3.0

Description

Online multiplayer free software engine for DOOM

Added to portage

2026-08-10

owntracks-recorder - 1.0.3
Ebuild name:

sci-geosciences/owntracks-recorder-1.0.3

Description

Stores and accesses location data published by the OwnTrac

Added to portage

2026-08-10

pmix - 6.1.0
Ebuild name:

sys-cluster/pmix-6.1.0

Description

The Process Management Interface (PMI) Exascale

Added to portage

2026-08-10

postfix - 3.12_pre20260809
Ebuild name:

mail-mta/postfix-3.12_pre20260809

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2026-08-10

prrte - 3.0.13
Ebuild name:

sys-cluster/prrte-3.0.13

Description

PMIx Reference RunTime Environment

Added to portage

2026-08-10

prrte - 4.1.0
Ebuild name:

sys-cluster/prrte-4.1.0

Description

PMIx Reference RunTime Environment

Added to portage

2026-08-10

pykeepass - 4.2.0
Ebuild name:

dev-python/pykeepass-4.2.0

Description

Python library to interact with keepass databases (supports KDBX3 and KD

Added to portage

2026-08-10

pylint - 4.0.7
Ebuild name:

dev-python/pylint-4.0.7

Description

Python code static checker

Added to portage

2026-08-10

pysequoia - 0.1.34
Ebuild name:

dev-python/pysequoia-0.1.34

Description

Provides OpenPGP facilities using Sequoia-PGP library

Added to portage

2026-08-10

qemu-guest-agent - 10.2.3
Ebuild name:

app-emulation/qemu-guest-agent-10.2.3

Description

QEMU Guest Agent (qemu-ga) for use when running inside a VM

Added to portage

2026-08-10

qpdf - 12.4.0
Ebuild name:

app-text/qpdf-12.4.0

Description

Command-line tool for structural, content-preserving transformation of PDF fil

Added to portage

2026-08-10

roundcube - 1.6.18
Ebuild name:

mail-client/roundcube-1.6.18

Description

Browser-based multilingual IMAP client with an application-like user i

Added to portage

2026-08-10

roundcube - 1.7.3
Ebuild name:

mail-client/roundcube-1.7.3

Description

A browser-based multilingual IMAP client with an application-like user

Added to portage

2026-08-10

samba - 4.23.11
Ebuild name:

net-fs/samba-4.23.11

Description

Samba Suite Version 4

Added to portage

2026-08-10

scribus - 1.7.3-r1
Ebuild name:

app-office/scribus-1.7.3-r1

Description

Desktop publishing (DTP) and layout program

Added to portage

2026-08-10

syd - 3.58.0
Ebuild name:

sys-apps/syd-3.58.0

Description

seccomp and landlock based application sandbox with support for namespaces

Added to portage

2026-08-10

telega - 0.8.660_p20260806
Ebuild name:

app-emacs/telega-0.8.660_p20260806

Description

Full-featured unofficial GNU Emacs client for Telegram

Added to portage

2026-08-10

thriftpy2 - 0.7.0
Ebuild name:

dev-python/thriftpy2-0.7.0

Description

Pure python approach of Apache Thrift

Added to portage

2026-08-10

tremc - 0.9.6
Ebuild name:

net-p2p/tremc-0.9.6

Description

Ncurses interface for the Transmission BitTorrent client

Added to portage

2026-08-10

udisks - 2.11.2
Ebuild name:

sys-fs/udisks-2.11.2

Description

Daemon providing interfaces to work with storage devices

Added to portage

2026-08-10

unreal - 227k_p14-r1
Ebuild name:

games-fps/unreal-227k_p14-r1

Description

Modern build of the original Unreal engine

Added to portage

2026-08-10

vanilla-kernel - 6.12.103
Ebuild name:

sys-kernel/vanilla-kernel-6.12.103

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-08-10

vanilla-kernel - 6.18.44
Ebuild name:

sys-kernel/vanilla-kernel-6.18.44

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-08-10

vanilla-kernel - 6.6.151
Ebuild name:

sys-kernel/vanilla-kernel-6.6.151

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-08-10

vanilla-kernel - 7.1.8
Ebuild name:

sys-kernel/vanilla-kernel-7.1.8

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-08-10

vanilla-sources - 6.12.103
Ebuild name:

sys-kernel/vanilla-sources-6.12.103

Description

Full sources for the Linux kernel

Added to portage

2026-08-10

vanilla-sources - 6.18.44
Ebuild name:

sys-kernel/vanilla-sources-6.18.44

Description

Full sources for the Linux kernel

Added to portage

2026-08-10

vanilla-sources - 6.6.151
Ebuild name:

sys-kernel/vanilla-sources-6.6.151

Description

Full sources for the Linux kernel

Added to portage

2026-08-10

vanilla-sources - 7.1.8
Ebuild name:

sys-kernel/vanilla-sources-7.1.8

Description

Full sources for the Linux kernel

Added to portage

2026-08-10

vivaldi - 8.1.4087.61-r1
Ebuild name:

www-client/vivaldi-8.1.4087.61-r1

Description

A browser for our friends

Added to portage

2026-08-10

wofi - 1.5
Ebuild name:

gui-apps/wofi-1.5

Description

Wofi is a launcher/menu program for wlroots based wayland compositors like sway

Added to portage

2026-08-10

zxing-cpp - 3.1.0
Ebuild name:

media-libs/zxing-cpp-3.1.0

Description

C++ Multi-format 1D/2D barcode image processing library

Added to portage

2026-08-10

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