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:

85001

userrating:

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


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

Summary

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

Changelog

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

Note

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

System descriptions

Hardware

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

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

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

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

Software

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

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

Installation

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

I will only describe the modification on each step.

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

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

Booting:

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

Partitioning the hdd(s)

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

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

My HDD layout :

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

Setting up the raid 1

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

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

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

In case you want to mirror the swap:

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

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

start the raid by running

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

You should see something like this:

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

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

Applying a Filesystem to a Partition

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

Activate the Swap Partitions

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

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

Mounting

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

Configuring the Compile Options

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

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

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

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

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

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

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

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

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

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

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

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

Follow the installation manual including the Stage1 to Stage2 section.

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

Proceed from stage2 to stage3 the documented way.

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

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

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

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

configuring /etc/fstab

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

for the swap line use the following 2 lines

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

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

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

have the basic system running as you want.

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

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

comments

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



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-05-06
amd - 3.3.4
Ebuild name:

sci-libs/amd-3.3.4

Description

Library to order a sparse matrix prior to Cholesky factorization

Added to portage

2026-05-06

android-studio - 2025.3.4.7
Ebuild name:

dev-util/android-studio-2025.3.4.7

Description

Android development environment based on IntelliJ IDEA

Added to portage

2026-05-06

apsw - 3.53.1.0
Ebuild name:

dev-python/apsw-3.53.1.0

Description

APSW - Another Python SQLite Wrapper

Added to portage

2026-05-06

awscli - 1.45.4
Ebuild name:

app-admin/awscli-1.45.4

Description

Universal Command Line Environment for AWS

Added to portage

2026-05-06

b2sdk - 2.12.0
Ebuild name:

dev-python/b2sdk-2.12.0

Description

Library to access Backblaze B2 cloud storage

Added to portage

2026-05-06

boto3 - 1.43.4
Ebuild name:

dev-python/boto3-1.43.4

Description

The AWS SDK for Python

Added to portage

2026-05-06

botocore - 1.43.4
Ebuild name:

dev-python/botocore-1.43.4

Description

Low-level, data-driven core of boto 3

Added to portage

2026-05-06

btf - 2.3.3
Ebuild name:

sci-libs/btf-2.3.3

Description

Algorithm for matrix permutation into block triangular form

Added to portage

2026-05-06

camd - 3.3.5
Ebuild name:

sci-libs/camd-3.3.5

Description

Library to order a sparse matrix prior to Cholesky factorization

Added to portage

2026-05-06

ccolamd - 3.3.5
Ebuild name:

sci-libs/ccolamd-3.3.5

Description

Constrained Column approximate minimum degree ordering algorithm

Added to portage

2026-05-06

cholmod - 5.3.4
Ebuild name:

sci-libs/cholmod-5.3.4

Description

Sparse Cholesky factorization and update/downdate library

Added to portage

2026-05-06

chromium - 148.0.7778.96
Ebuild name:

www-client/chromium-148.0.7778.96

Description

Open-source version of Google Chrome web browser

Added to portage

2026-05-06

chromium - 149.0.7815.2
Ebuild name:

www-client/chromium-149.0.7815.2

Description

Open-source version of Google Chrome web browser

Added to portage

2026-05-06

cinnamon - 6.6.8
Ebuild name:

gnome-extra/cinnamon-6.6.8

Description

A fork of GNOME Shell with layout similar to GNOME 2

Added to portage

2026-05-06

cinnamon-settings-daemon - 6.6.4
Ebuild name:

gnome-extra/cinnamon-settings-daemon-6.6.4

Description

Cinnamon's settings daemon

Added to portage

2026-05-06

colamd - 3.3.5
Ebuild name:

sci-libs/colamd-3.3.5

Description

Column approximate minimum degree ordering algorithm

Added to portage

2026-05-06

cryptography - 48.0.0
Ebuild name:

dev-python/cryptography-48.0.0

Description

Library providing cryptographic recipes and primitives

Added to portage

2026-05-06

cryptominisat - 5.11.21-r3
Ebuild name:

sci-mathematics/cryptominisat-5.11.21-r3

Description

Advanced SAT solver with C++ and command-line interfaces

Added to portage

2026-05-06

cxsparse - 4.4.2
Ebuild name:

sci-libs/cxsparse-4.4.2

Description

Extended sparse matrix package

Added to portage

2026-05-06

denaro - 2024.2.0-r1
Ebuild name:

app-office/denaro-2024.2.0-r1

Description

A personal finance manager

Added to portage

2026-05-06

django - 5.2.14
Ebuild name:

dev-python/django-5.2.14

Description

High-level Python web framework

Added to portage

2026-05-06

django - 6.0.5
Ebuild name:

dev-python/django-6.0.5

Description

High-level Python web framework

Added to portage

2026-05-06

elastic-transport - 9.4.0
Ebuild name:

dev-python/elastic-transport-9.4.0

Description

Transport classes and utilities shared among Python Elastic clie

Added to portage

2026-05-06

elsw - 1.0.1-r1
Ebuild name:

app-portage/elsw-1.0.1-r1

Description

Tool providing a nice way to view the Portage world file

Added to portage

2026-05-06

gitea - 1.26.1
Ebuild name:

www-apps/gitea-1.26.1

Description

A painless self-hosted Git service

Added to portage

2026-05-06

guestfs-tools - 1.55.6
Ebuild name:

app-emulation/guestfs-tools-1.55.6

Description

Tools for accessing, inspecting, and modifying virtual machine (

Added to portage

2026-05-06

jupyter-server - 2.18.1
Ebuild name:

dev-python/jupyter-server-2.18.1

Description

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

Added to portage

2026-05-06

klu - 2.3.6
Ebuild name:

sci-libs/klu-2.3.6

Description

Sparse LU factorization for circuit simulation

Added to portage

2026-05-06

ldl - 3.3.3
Ebuild name:

sci-libs/ldl-3.3.3

Description

Simple but educational LDL^T matrix factorization algorithm

Added to portage

2026-05-06

libfilezilla - 0.55.5
Ebuild name:

dev-libs/libfilezilla-0.55.5

Description

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

Added to portage

2026-05-06

libguestfs - 1.58.1
Ebuild name:

app-emulation/libguestfs-1.58.1

Description

Tools for accessing, inspecting, and modifying virtual machine (VM)

Added to portage

2026-05-06

libguestfs-appliance - 1.58.1
Ebuild name:

app-emulation/libguestfs-appliance-1.58.1

Description

VM appliance disk image used in libguestfs package

Added to portage

2026-05-06

librt - 0.10.0
Ebuild name:

dev-python/librt-0.10.0

Description

Mypyc runtime library

Added to portage

2026-05-06

magic-wormhole - 0.24.0
Ebuild name:

dev-python/magic-wormhole-0.24.0

Description

Get Things From One Computer To Another, Safely

Added to portage

2026-05-06

nerd-icons - 0.1.0
Ebuild name:

app-emacs/nerd-icons-0.1.0

Description

Emacs Nerd Font Icons Library

Added to portage

2026-05-06

osc-lib - 4.6.0
Ebuild name:

dev-python/osc-lib-4.6.0

Description

A package of common support modules for writing OSC plugins

Added to portage

2026-05-06

pbs-installer - 2026.5.4
Ebuild name:

dev-python/pbs-installer-2026.5.4

Description

Installer for Python Build Standalone

Added to portage

2026-05-06

python-discovery - 1.3.0
Ebuild name:

dev-python/python-discovery-1.3.0

Description

Python interpreter discovery

Added to portage

2026-05-06

rapidjson - 1.1.0_p20250205
Ebuild name:

dev-libs/rapidjson-1.1.0_p20250205

Description

A fast JSON parser/generator for C++ with both SAX/DOM style API

Added to portage

2026-05-06

razer-cli - 2.3.0-r1
Ebuild name:

sys-apps/razer-cli-2.3.0-r1

Description

Command line interface for controlling Razer devices on Linux

Added to portage

2026-05-06

razercommander - 1.2.1.2-r5
Ebuild name:

sys-apps/razercommander-1.2.1.2-r5

Description

GTK contol center for managing Razer peripherals on Linux

Added to portage

2026-05-06

slack - 4.49.89
Ebuild name:

net-im/slack-4.49.89

Description

Team collaboration tool

Added to portage

2026-05-06

snapper - 0.13.1
Ebuild name:

app-backup/snapper-0.13.1

Description

Command-line program for btrfs and lvm snapshot management

Added to portage

2026-05-06

sphinxcontrib-mermaid - 2.0.2
Ebuild name:

dev-python/sphinxcontrib-mermaid-2.0.2

Description

Sphinx spelling extension

Added to portage

2026-05-06

spqr - 4.3.6
Ebuild name:

sci-libs/spqr-4.3.6

Description

Multithreaded multifrontal sparse QR factorization library

Added to portage

2026-05-06

stp - 2.3.4-r1
Ebuild name:

sci-mathematics/stp-2.3.4-r1

Description

Simple Theorem Prover, an efficient SMT solver for bitvectors

Added to portage

2026-05-06

suitesparseconfig - 7.12.2
Ebuild name:

sci-libs/suitesparseconfig-7.12.2

Description

Common configurations for all packages in suitesparse

Added to portage

2026-05-06

tempora - 5.9.0
Ebuild name:

dev-python/tempora-5.9.0

Description

Objects and routines pertaining to date and time

Added to portage

2026-05-06

umfpack - 6.3.7
Ebuild name:

sci-libs/umfpack-6.3.7

Description

Unsymmetric multifrontal sparse LU factorization library

Added to portage

2026-05-06

virt-v2v - 2.10.0
Ebuild name:

app-emulation/virt-v2v-2.10.0

Description

Tool to convert guests from foreign hypervisors to run on KVM

Added to portage

2026-05-06

2026-05-05
ansible - 13.6.0
Ebuild name:

app-admin/ansible-13.6.0

Description

Model-driven deployment, config management, and command execution framewor

Added to portage

2026-05-05

ansible-core - 2.20.5
Ebuild name:

app-admin/ansible-core-2.20.5

Description

Model-driven deployment, config management, and command execution fra

Added to portage

2026-05-05

apache - 2.4.67
Ebuild name:

www-servers/apache-2.4.67

Description

The Apache Web Server

Added to portage

2026-05-05

apache-tools - 2.4.67
Ebuild name:

app-admin/apache-tools-2.4.67

Description

Useful Apache tools - htdigest, htpasswd, ab, htdbm

Added to portage

2026-05-05

apsw - 3.53.0.0
Ebuild name:

dev-python/apsw-3.53.0.0

Description

APSW - Another Python SQLite Wrapper

Added to portage

2026-05-05

authlib - 1.7.1
Ebuild name:

dev-python/authlib-1.7.1

Description

A Python library in building OAuth and OpenID Connect servers and clients

Added to portage

2026-05-05

awscli - 1.45.3
Ebuild name:

app-admin/awscli-1.45.3

Description

Universal Command Line Environment for AWS

Added to portage

2026-05-05

bitcoin-core - 31.0
Ebuild name:

net-p2p/bitcoin-core-31.0

Description

Reference implementation of the Bitcoin cryptocurrency

Added to portage

2026-05-05

blessed - 1.39.0
Ebuild name:

dev-python/blessed-1.39.0

Description

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

Added to portage

2026-05-05

boto3 - 1.43.3
Ebuild name:

dev-python/boto3-1.43.3

Description

The AWS SDK for Python

Added to portage

2026-05-05

botocore - 1.43.3
Ebuild name:

dev-python/botocore-1.43.3

Description

Low-level, data-driven core of boto 3

Added to portage

2026-05-05

btop - 1.4.7
Ebuild name:

sys-process/btop-1.4.7

Description

A monitor of resources

Added to portage

2026-05-05

c-blosc2 - 3.0.2
Ebuild name:

dev-libs/c-blosc2-3.0.2

Description

Blocking, shuffling and lossless compression library

Added to portage

2026-05-05

candy - 6.1.6-r1
Ebuild name:

net-vpn/candy-6.1.6-r1

Description

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

Added to portage

2026-05-05

candy - 6.1.7
Ebuild name:

net-vpn/candy-6.1.7

Description

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

Added to portage

2026-05-05

checkpolicy - 3.10
Ebuild name:

sys-apps/checkpolicy-3.10

Description

SELinux policy compiler

Added to portage

2026-05-05

chez - 10.4.0
Ebuild name:

dev-scheme/chez-10.4.0

Description

A programming language based on R6RS

Added to portage

2026-05-05

chrome-binary-plugins - 148.0.7778.96_beta
Ebuild name:

www-plugins/chrome-binary-plugins-148.0.7778.96_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-05-05

chrome-binary-plugins - 149.0.7815.2_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-149.0.7815.2_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-05-05

clion - 2025.3.4
Ebuild name:

dev-util/clion-2025.3.4

Description

A complete toolset for C and C++ development

Added to portage

2026-05-05

clion - 2026.1
Ebuild name:

dev-util/clion-2026.1

Description

A complete toolset for C and C++ development

Added to portage

2026-05-05

crash - 9.0.2
Ebuild name:

dev-util/crash-9.0.2

Description

Red Hat crash utility; used for analyzing kernel core dumps

Added to portage

2026-05-05

derper - 1.96.5
Ebuild name:

net-vpn/derper-1.96.5

Description

DERP server for tailscale network

Added to portage

2026-05-05

earthly - 0.8.16-r1
Ebuild name:

app-containers/earthly-0.8.16-r1

Description

Build automation tool that executes in containers

Added to portage

2026-05-05

ensurepip-pip - 26.1.1
Ebuild name:

dev-python/ensurepip-pip-26.1.1

Description

Shared pip wheel for ensurepip Python module

Added to portage

2026-05-05

ffmpeg - 7.1.4
Ebuild name:

media-video/ffmpeg-7.1.4

Description

Complete solution to record/convert/stream audio and video

Added to portage

2026-05-05

ffmpeg-compat - 7.1.4
Ebuild name:

media-video/ffmpeg-compat-7.1.4

Description

Complete solution to record/convert/stream audio and video

Added to portage

2026-05-05

framework_tool - 0.6.2
Ebuild name:

app-laptop/framework_tool-0.6.2

Description

Tool to control Framework Computer systems

Added to portage

2026-05-05

gallery-dl - 1.32.1
Ebuild name:

net-misc/gallery-dl-1.32.1

Description

Download image galleries and collections from several image hosting site

Added to portage

2026-05-05

gdm-greeter - 1-r1
Ebuild name:

acct-user/gdm-greeter-1-r1

Description

User for GDM greeter specialized for elogind

Added to portage

2026-05-05

gmp - 6.3.0-r2
Ebuild name:

dev-libs/gmp-6.3.0-r2

Description

Library for arbitrary-precision arithmetic on different type of numbers

Added to portage

2026-05-05

golangci-lint - 2.12.1
Ebuild name:

dev-go/golangci-lint-2.12.1

Description

Fast linters runner for Go

Added to portage

2026-05-05

google-chrome-beta - 148.0.7778.96
Ebuild name:

www-client/google-chrome-beta-148.0.7778.96

Description

The web browser from Google

Added to portage

2026-05-05

google-chrome-unstable - 149.0.7815.2
Ebuild name:

www-client/google-chrome-unstable-149.0.7815.2

Description

The web browser from Google

Added to portage

2026-05-05

gtk - 4.20.4
Ebuild name:

gui-libs/gtk-4.20.4

Description

GTK is a multi-platform toolkit for creating graphical user interfaces

Added to portage

2026-05-05

intune-portal - 1.2604.13
Ebuild name:

sys-apps/intune-portal-1.2604.13

Description

Microsoft Intune Company Portal to access a corporate environment

Added to portage

2026-05-05

iproute2 - 7.0.0
Ebuild name:

sys-apps/iproute2-7.0.0

Description

kernel routing and traffic control utilities

Added to portage

2026-05-05

jenkins-bin - 2.555.1
Ebuild name:

dev-util/jenkins-bin-2.555.1

Description

The leading open source automation server

Added to portage

2026-05-05

jenkins-bin - 2.561
Ebuild name:

dev-util/jenkins-bin-2.561

Description

The leading open source automation server

Added to portage

2026-05-05

jupyter-server - 2.18.0
Ebuild name:

dev-python/jupyter-server-2.18.0

Description

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

Added to portage

2026-05-05

keepassxc - 2.8.0_pre20260504
Ebuild name:

app-admin/keepassxc-2.8.0_pre20260504

Description

KeePassXC - KeePass Cross-platform Community Edition

Added to portage

2026-05-05

kubectl - 1.36.0
Ebuild name:

sys-cluster/kubectl-1.36.0

Description

CLI to run commands against Kubernetes clusters

Added to portage

2026-05-05

libdrm - 2.4.133
Ebuild name:

x11-libs/libdrm-2.4.133

Description

X.Org libdrm library

Added to portage

2026-05-05

libgit2 - 1.9.3
Ebuild name:

dev-libs/libgit2-1.9.3

Description

A linkable library for Git

Added to portage

2026-05-05

libpfm - 4.13.0_p20260328
Ebuild name:

dev-libs/libpfm-4.13.0_p20260328

Description

Hardware-based performance monitoring interface for Linux

Added to portage

2026-05-05

libpfm - 9999
Ebuild name:

dev-libs/libpfm-9999

Description

Hardware-based performance monitoring interface for Linux

Added to portage

2026-05-05

libselinux - 3.10
Ebuild name:

sys-libs/libselinux-3.10

Description

SELinux userland library

Added to portage

2026-05-05

libsemanage - 3.10
Ebuild name:

sys-libs/libsemanage-3.10

Description

SELinux kernel and policy management library

Added to portage

2026-05-05

libsepol - 3.10
Ebuild name:

sys-libs/libsepol-3.10

Description

SELinux binary policy representation library

Added to portage

2026-05-05

mako - 1.11.0
Ebuild name:

gui-apps/mako-1.11.0

Description

A lightweight notification daemon for Wayland. Works on Sway

Added to portage

2026-05-05

mcstrans - 3.10
Ebuild name:

sys-apps/mcstrans-3.10

Description

SELinux context translation to human readable names

Added to portage

2026-05-05

md4c - 0.5.3
Ebuild name:

dev-libs/md4c-0.5.3

Description

C Markdown parser. Fast, SAX-like interface, CommonMark Compliant

Added to portage

2026-05-05

microsoft-edge - 147.0.3912.98
Ebuild name:

www-client/microsoft-edge-147.0.3912.98

Description

The web browser from Microsoft

Added to portage

2026-05-05

microsoft-edge-beta - 148.0.3967.42
Ebuild name:

www-client/microsoft-edge-beta-148.0.3967.42

Description

The web browser from Microsoft

Added to portage

2026-05-05

mit-krb5 - 1.22.2
Ebuild name:

app-crypt/mit-krb5-1.22.2

Description

MIT Kerberos V

Added to portage

2026-05-05

mit-krb5 - 1.22.2-r1
Ebuild name:

app-crypt/mit-krb5-1.22.2-r1

Description

MIT Kerberos V

Added to portage

2026-05-05

mit-krb5-appl - 1.0.3-r4
Ebuild name:

app-crypt/mit-krb5-appl-1.0.3-r4

Description

Kerberized applications split from the main MIT Kerberos V distrib

Added to portage

2026-05-05

mit-krb5-appl - 1.0.3-r5
Ebuild name:

app-crypt/mit-krb5-appl-1.0.3-r5

Description

Kerberized applications split from the main MIT Kerberos V distrib

Added to portage

2026-05-05

mkp224o - 1.7.0
Ebuild name:

app-crypt/mkp224o-1.7.0

Description

Vanity address generator for v3 Tor hidden service addresses

Added to portage

2026-05-05

monkeysphere - 0.44-r2
Ebuild name:

app-crypt/monkeysphere-0.44-r2

Description

Leverage the OpenPGP web of trust for OpenSSH and Web authentication

Added to portage

2026-05-05

moolticute - 1.03.0-r2
Ebuild name:

app-crypt/moolticute-1.03.0-r2

Description

Mooltipass crossplatform daemon/tools

Added to portage

2026-05-05

musepack-tools - 495-r1
Ebuild name:

media-sound/musepack-tools-495-r1

Description

Musepack SV8 libraries and utilities

Added to portage

2026-05-05

nethack - 5.0.0
Ebuild name:

games-roguelike/nethack-5.0.0

Description

The ultimate old-school single player dungeon exploration game

Added to portage

2026-05-05

nprolog - 5.18
Ebuild name:

dev-lang/nprolog-5.18

Description

Interpreter and compiler to be compatible with Arity/Prolog32

Added to portage

2026-05-05

oct2py - 6.0.2
Ebuild name:

dev-python/oct2py-6.0.2

Description

Python to GNU Octave bridge

Added to portage

2026-05-05

openjdk-jre-bin - 11.0.31_p11
Ebuild name:

dev-java/openjdk-jre-bin-11.0.31_p11

Description

Prebuilt Java JRE binaries provided by Eclipse Temurin

Added to portage

2026-05-05

openjdk-jre-bin - 17.0.19_p10
Ebuild name:

dev-java/openjdk-jre-bin-17.0.19_p10

Description

Prebuilt Java JRE binaries provided by Eclipse Temurin

Added to portage

2026-05-05

openjdk-jre-bin - 21.0.11_p10
Ebuild name:

dev-java/openjdk-jre-bin-21.0.11_p10

Description

Prebuilt Java JRE binaries provided by Eclipse Temurin

Added to portage

2026-05-05

openjdk-jre-bin - 25.0.3_p9
Ebuild name:

dev-java/openjdk-jre-bin-25.0.3_p9

Description

Prebuilt Java JRE binaries provided by Eclipse Temurin

Added to portage

2026-05-05

openjdk-jre-bin - 8.492_p09
Ebuild name:

dev-java/openjdk-jre-bin-8.492_p09

Description

Prebuilt Java JRE binaries provided by Eclipse Temurin

Added to portage

2026-05-05

openvswitch - 2.17.12-r1
Ebuild name:

net-misc/openvswitch-2.17.12-r1

Description

Production quality, multilayer virtual switch

Added to portage

2026-05-05

openvswitch - 3.3.8-r1
Ebuild name:

net-misc/openvswitch-3.3.8-r1

Description

Production quality, multilayer virtual switch

Added to portage

2026-05-05

opera - 131.0.5877.5
Ebuild name:

www-client/opera-131.0.5877.5

Description

A fast and secure web browser

Added to portage

2026-05-05

opera-developer - 132.0.5883.0
Ebuild name:

www-client/opera-developer-132.0.5883.0

Description

A fast and secure web browser

Added to portage

2026-05-05

pip - 26.1.1
Ebuild name:

dev-python/pip-26.1.1

Description

The PyPA recommended tool for installing Python packages

Added to portage

2026-05-05

pkgdev - 0.2.14
Ebuild name:

dev-util/pkgdev-0.2.14

Description

Collection of tools for Gentoo development

Added to portage

2026-05-05

policycoreutils - 3.10
Ebuild name:

sys-apps/policycoreutils-3.10

Description

SELinux core utilities

Added to portage

2026-05-05

pycharm-professional - 2025.3.4
Ebuild name:

dev-util/pycharm-professional-2025.3.4

Description

Intelligent Python IDE with unique code assistance and analy

Added to portage

2026-05-05

pycharm-professional - 2026.1
Ebuild name:

dev-util/pycharm-professional-2026.1

Description

Intelligent Python IDE with unique code assistance and analysi

Added to portage

2026-05-05

pyopenssl - 26.2.0
Ebuild name:

dev-python/pyopenssl-26.2.0

Description

Python interface to the OpenSSL library

Added to portage

2026-05-05

pyproject-fmt - 2.21.2
Ebuild name:

dev-python/pyproject-fmt-2.21.2

Description

Format your pyproject.toml file

Added to portage

2026-05-05

python - 0.3.14.5_rc1
Ebuild name:

dev-lang/python-0.3.14.5_rc1

Description

Freethreading (no-GIL) version of Python programming language

Added to portage

2026-05-05

python - 3.14.5_rc1
Ebuild name:

dev-lang/python-3.14.5_rc1

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2026-05-05

python-subunit - 1.4.6
Ebuild name:

dev-python/python-subunit-1.4.6

Description

A streaming protocol for test results

Added to portage

2026-05-05

python-tests - 0.3.14.5_rc1
Ebuild name:

dev-python/python-tests-0.3.14.5_rc1

Description

Test modules from dev-lang/python

Added to portage

2026-05-05

python-tests - 3.14.5_rc1
Ebuild name:

dev-python/python-tests-3.14.5_rc1

Description

Test modules from dev-lang/python

Added to portage

2026-05-05

rclone - 1.73.2-r1
Ebuild name:

net-misc/rclone-1.73.2-r1

Description

A program to sync files to and from various cloud storage providers

Added to portage

2026-05-05

rclone - 1.73.3-r1
Ebuild name:

net-misc/rclone-1.73.3-r1

Description

A program to sync files to and from various cloud storage providers

Added to portage

2026-05-05

rclone - 1.73.5-r1
Ebuild name:

net-misc/rclone-1.73.5-r1

Description

A program to sync files to and from various cloud storage providers

Added to portage

2026-05-05

rclone - 1.74.0-r1
Ebuild name:

net-misc/rclone-1.74.0-r1

Description

A program to sync files to and from various cloud storage providers

Added to portage

2026-05-05

restorecond - 3.10
Ebuild name:

sys-apps/restorecond-3.10

Description

Daemon to watch for creation and set default SELinux fcontexts

Added to portage

2026-05-05

secilc - 3.10
Ebuild name:

sys-apps/secilc-3.10

Description

SELinux Common Intermediate Language (CIL) Compiler

Added to portage

2026-05-05

selinux-base-policy - 2.20250213_p1-r1
Ebuild name:

sec-policy/selinux-base-policy-2.20250213_p1-r1

Description

SELinux policy for core modules

Added to portage

2026-05-05

selinux-base-policy - 2.20250618_p1-r1
Ebuild name:

sec-policy/selinux-base-policy-2.20250618_p1-r1

Description

SELinux policy for core modules

Added to portage

2026-05-05

selinux-matrixd - 2.20250213_p1-r1
Ebuild name:

sec-policy/selinux-matrixd-2.20250213_p1-r1

Description

SELinux policy for matrixd

Added to portage

2026-05-05

selinux-matrixd - 2.20250618_p1-r1
Ebuild name:

sec-policy/selinux-matrixd-2.20250618_p1-r1

Description

SELinux policy for matrixd

Added to portage

2026-05-05

selinux-openvswitch - 2.20250618_p1
Ebuild name:

sec-policy/selinux-openvswitch-2.20250618_p1

Description

SELinux policy for openvswitch

Added to portage

2026-05-05

selinux-openvswitch - 9999
Ebuild name:

sec-policy/selinux-openvswitch-9999

Description

SELinux policy for openvswitch

Added to portage

2026-05-05

selinux-python - 3.10
Ebuild name:

sys-apps/selinux-python-3.10

Description

SELinux core utilities

Added to portage

2026-05-05

semodule-utils - 3.10
Ebuild name:

sys-apps/semodule-utils-3.10

Description

SELinux policy module utilities

Added to portage

2026-05-05

siril - 1.4.2
Ebuild name:

sci-astronomy/siril-1.4.2

Description

A free astronomical image processing software

Added to portage

2026-05-05

sqlglot - 30.7.0
Ebuild name:

dev-python/sqlglot-30.7.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2026-05-05

sqlite - 3.53.1
Ebuild name:

dev-db/sqlite-3.53.1

Description

SQL database engine

Added to portage

2026-05-05

swaybg - 1.2.2
Ebuild name:

gui-apps/swaybg-1.2.2

Description

A wallpaper utility for Wayland

Added to portage

2026-05-05

swaylock - 1.8.5
Ebuild name:

gui-apps/swaylock-1.8.5

Description

Screen locker for Wayland

Added to portage

2026-05-05

syslog-ng - 4.11.0
Ebuild name:

app-admin/syslog-ng-4.11.0

Description

syslog replacement with advanced filtering features

Added to portage

2026-05-05

tea - 0.14.0-r1
Ebuild name:

dev-util/tea-0.14.0-r1

Description

Command line tool to interact with Gitea server

Added to portage

2026-05-05

tibs - 0.7.0
Ebuild name:

dev-python/tibs-0.7.0

Description

A sleek Python library for your binary data

Added to portage

2026-05-05

tomoyo-tools - 2.6.1_p20250707
Ebuild name:

sys-apps/tomoyo-tools-2.6.1_p20250707

Description

TOMOYO Linux userspace tools

Added to portage

2026-05-05

tree-sitter-markdown-inline - 0.2.3-r1
Ebuild name:

dev-libs/tree-sitter-markdown-inline-0.2.3-r1

Description

Markdown-inline grammar for Tree-sitter

Added to portage

2026-05-05

tree-sitter-markdown-inline - 0.3.2-r1
Ebuild name:

dev-libs/tree-sitter-markdown-inline-0.3.2-r1

Description

Markdown-inline grammar for Tree-sitter

Added to portage

2026-05-05

upterm - 0.23.0
Ebuild name:

app-misc/upterm-0.23.0

Description

Instant Terminal Sharing

Added to portage

2026-05-05

virtualenv - 21.3.1
Ebuild name:

dev-python/virtualenv-21.3.1

Description

Virtual Python Environment builder

Added to portage

2026-05-05

vivaldi - 7.9.3970.60
Ebuild name:

www-client/vivaldi-7.9.3970.60

Description

A browser for our friends

Added to portage

2026-05-05

vivaldi-snapshot - 7.10.4023.3
Ebuild name:

www-client/vivaldi-snapshot-7.10.4023.3

Description

A browser for our friends

Added to portage

2026-05-05

voacapl - 0.7.7
Ebuild name:

sci-electronics/voacapl-0.7.7

Description

HF propagation prediction tool

Added to portage

2026-05-05

wireshark - 4.6.5-r1
Ebuild name:

net-analyzer/wireshark-4.6.5-r1

Description

Network protocol analyzer (sniffer)

Added to portage

2026-05-05

with-editor - 3.5.0
Ebuild name:

app-emacs/with-editor-3.5.0

Description

Use the Emacsclient as the of child processes

Added to portage

2026-05-05

wl-clipboard - 2.3.0
Ebuild name:

gui-apps/wl-clipboard-2.3.0

Description

Wayland clipboard utilities

Added to portage

2026-05-05

zedis - 0.3.4
Ebuild name:

dev-db/zedis-0.3.4

Description

Blazing-fast native Redis GUI built with Rust and GPUI

Added to portage

2026-05-05

zellij - 0.44.2
Ebuild name:

app-misc/zellij-0.44.2

Description

A terminal workspace with batteries included

Added to portage

2026-05-05

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