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:

83212

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-02-11
assertpy - 1.1
Ebuild name:

dev-python/assertpy-1.1

Description

Simple assertion library for unit testing in python with a fluent API

Added to portage

2026-02-11

at-spi2-core - 2.58.2
Ebuild name:

app-accessibility/at-spi2-core-2.58.2

Description

D-Bus accessibility specifications and registration daemon

Added to portage

2026-02-11

awscli - 1.44.36
Ebuild name:

app-admin/awscli-1.44.36

Description

Universal Command Line Environment for AWS

Added to portage

2026-02-11

behave - 1.3.3
Ebuild name:

dev-python/behave-1.3.3

Description

BDD, Python style

Added to portage

2026-02-11

claude-code - 2.1.38
Ebuild name:

dev-util/claude-code-2.1.38

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-02-11

cucumber-expressions - 19.0.0
Ebuild name:

dev-python/cucumber-expressions-19.0.0

Description

Human friendly alternative to Regular Expressions

Added to portage

2026-02-11

cucumber-tag-expressions - 9.0.0
Ebuild name:

dev-python/cucumber-tag-expressions-9.0.0

Description

Cucumber tag expression parser

Added to portage

2026-02-11

firecracker-bin - 1.14.1
Ebuild name:

app-emulation/firecracker-bin-1.14.1

Description

Secure and fast microVMs for serverless computing (static buil

Added to portage

2026-02-11

framework-laptop-kmod - 0_pre20240915
Ebuild name:

app-laptop/framework-laptop-kmod-0_pre20240915

Description

Kernel module to expose more Framework Laptop stuff

Added to portage

2026-02-11

gnutls - 3.8.12
Ebuild name:

net-libs/gnutls-3.8.12

Description

Secure communications library implementing the SSL, TLS and DTLS protocols

Added to portage

2026-02-11

hashcat - 7.1.2-r1
Ebuild name:

app-crypt/hashcat-7.1.2-r1

Description

World's fastest and most advanced password recovery utility

Added to portage

2026-02-11

hyfetch - 2.0.5
Ebuild name:

app-misc/hyfetch-2.0.5

Description

Neofetch with LGBTQ+ pride flags

Added to portage

2026-02-11

libconfig - 1.8.2
Ebuild name:

dev-libs/libconfig-1.8.2

Description

Libconfig is a simple library for manipulating structured configuration fi

Added to portage

2026-02-11

lvm2 - 2.03.37
Ebuild name:

sys-fs/lvm2-2.03.37

Description

User-land utilities for LVM2 (device-mapper) software

Added to portage

2026-02-11

mod_qos - 11.77
Ebuild name:

www-apache/mod_qos-11.77

Description

A QOS module for the apache webserver

Added to portage

2026-02-11

multipath-tools - 0.14.3
Ebuild name:

sys-fs/multipath-tools-0.14.3

Description

Device mapper target autoconfig

Added to portage

2026-02-11

mycli - 1.51.1
Ebuild name:

dev-db/mycli-1.51.1

Description

CLI for MySQL Database with auto-completion and syntax highlighting

Added to portage

2026-02-11

nDPI - 4.8
Ebuild name:

net-libs/nDPI-4.8

Description

Open Source Deep Packet Inspection Software Toolkit

Added to portage

2026-02-11

nfs-utils - 2.8.5
Ebuild name:

net-fs/nfs-utils-2.8.5

Description

NFS client and server daemons

Added to portage

2026-02-11

ninja-mode - 1.12.0
Ebuild name:

app-emacs/ninja-mode-1.12.0

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-02-11

ninja-mode - 1.12.1
Ebuild name:

app-emacs/ninja-mode-1.12.1

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-02-11

nix-mode - 1.5.0
Ebuild name:

app-emacs/nix-mode-1.5.0

Description

GNU Emacs major mode for editing Nix expressions

Added to portage

2026-02-11

no-littering - 1.8.2
Ebuild name:

app-emacs/no-littering-1.8.2

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-02-11

no-littering - 1.8.3
Ebuild name:

app-emacs/no-littering-1.8.3

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-02-11

no-littering - 1.8.4
Ebuild name:

app-emacs/no-littering-1.8.4

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-02-11

openpgp-keys-aacid - 20260210
Ebuild name:

sec-keys/openpgp-keys-aacid-20260210

Description

OpenPGP keys used by Albert Astals Cid

Added to portage

2026-02-11

openpgp-keys-cjwatson - 20260210
Ebuild name:

sec-keys/openpgp-keys-cjwatson-20260210

Description

OpenPGP key used by Colin Watson

Added to portage

2026-02-11

openpgp-keys-coreutils - 20260210
Ebuild name:

sec-keys/openpgp-keys-coreutils-20260210

Description

OpenPGP keys used by GNU coreutils

Added to portage

2026-02-11

openpgp-keys-gnutls - 20260210
Ebuild name:

sec-keys/openpgp-keys-gnutls-20260210

Description

OpenPGP keys used by GnuTLS

Added to portage

2026-02-11

openpgp-keys-handbrake - 20260208
Ebuild name:

sec-keys/openpgp-keys-handbrake-20260208

Description

OpenPGP keys used to sign HandBrake

Added to portage

2026-02-11

openpgp-keys-hughsie - 20260210
Ebuild name:

sec-keys/openpgp-keys-hughsie-20260210

Description

OpenPGP key used by Richard Hughes (hughsie)

Added to portage

2026-02-11

openpgp-keys-lassecollin - 20260210
Ebuild name:

sec-keys/openpgp-keys-lassecollin-20260210

Description

OpenPGP keys used by Lasse Collin

Added to portage

2026-02-11

openpgp-keys-libseccomp - 20260210
Ebuild name:

sec-keys/openpgp-keys-libseccomp-20260210

Description

OpenPGP key used for sys-libs/libseccomp

Added to portage

2026-02-11

openpgp-keys-libtasn1 - 20260210
Ebuild name:

sec-keys/openpgp-keys-libtasn1-20260210

Description

OpenPGP keys used by GNU Libtasn1

Added to portage

2026-02-11

openpgp-keys-mpc - 20260210
Ebuild name:

sec-keys/openpgp-keys-mpc-20260210

Description

OpenPGP keys used by Andreas Enge (to sign MPC releases)

Added to portage

2026-02-11

openpgp-keys-p11-kit - 20260210
Ebuild name:

sec-keys/openpgp-keys-p11-kit-20260210

Description

OpenPGP key used to sign p11-kit releases

Added to portage

2026-02-11

openpgp-keys-testssl - 20260210
Ebuild name:

sec-keys/openpgp-keys-testssl-20260210

Description

OpenPGP keys used by testssl.sh

Added to portage

2026-02-11

p11-kit - 0.26.2
Ebuild name:

app-crypt/p11-kit-0.26.2

Description

Provides a standard configuration setup for installing PKCS11

Added to portage

2026-02-11

roundcube - 1.7_rc3
Ebuild name:

mail-client/roundcube-1.7_rc3

Description

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

Added to portage

2026-02-11

scx - 1.0.20
Ebuild name:

sys-kernel/scx-1.0.20

Description

sched_ext schedulers and tools

Added to portage

2026-02-11

scx-loader - 1.0.20
Ebuild name:

sys-kernel/scx-loader-1.0.20

Description

DBUS on-demand loader of sched-ext schedulers

Added to portage

2026-02-11

strace - 6.19
Ebuild name:

dev-debug/strace-6.19

Description

Useful diagnostic, instructional, and debugging tool

Added to portage

2026-02-11

supertux - 0.7.0_beta2
Ebuild name:

games-arcade/supertux-0.7.0_beta2

Description

A run 'n jump platforming game featuring Tux the penguin

Added to portage

2026-02-11

syd - 3.49.0
Ebuild name:

sys-apps/syd-3.49.0

Description

seccomp and landlock based application sandbox with support for namespaces

Added to portage

2026-02-11

testssl - 3.0.10-r1
Ebuild name:

net-analyzer/testssl-3.0.10-r1

Description

Tool to check TLS/SSL cipher support

Added to portage

2026-02-11

testssl - 3.2.2-r1
Ebuild name:

net-analyzer/testssl-3.2.2-r1

Description

Tool to check TLS/SSL cipher support

Added to portage

2026-02-11

treesit-auto - 1.0.9
Ebuild name:

app-emacs/treesit-auto-1.0.9

Description

Automatic installation, usage, fallback for tree-sitter modes in Emacs

Added to portage

2026-02-11

upx - 5.1.0
Ebuild name:

app-arch/upx-5.1.0

Description

Ultimate Packer for eXecutables (free version using UCL compression and not NRV)

Added to portage

2026-02-11

upx-bin - 5.1.0
Ebuild name:

app-arch/upx-bin-5.1.0

Description

Ultimate Packer for eXecutables, binary version with proprietary NRV compres

Added to portage

2026-02-11

volatility3 - 2.27.0
Ebuild name:

app-forensics/volatility3-2.27.0

Description

Framework for analyzing volatile memory

Added to portage

2026-02-11

2026-02-10
algol68g - 3.10.10
Ebuild name:

dev-lang/algol68g-3.10.10

Description

Algol 68 Genie compiler-interpreter

Added to portage

2026-02-10

amdgpu_top - 0.11.2
Ebuild name:

sys-apps/amdgpu_top-0.11.2

Description

Tool to display AMDGPU usage.

Added to portage

2026-02-10

apache-libcloud - 3.9.0
Ebuild name:

dev-python/apache-libcloud-3.9.0

Description

Unified Interface to the Cloud - python support libs

Added to portage

2026-02-10

autorandr - 1.15-r2
Ebuild name:

x11-misc/autorandr-1.15-r2

Description

Automatically select a display configuration based on connected devices

Added to portage

2026-02-10

awkward - 2.9.0
Ebuild name:

dev-python/awkward-2.9.0

Description

Manipulate JSON-like data with NumPy-like idioms

Added to portage

2026-02-10

awscli - 1.44.35
Ebuild name:

app-admin/awscli-1.44.35

Description

Universal Command Line Environment for AWS

Added to portage

2026-02-10

bcc - 0.36.1
Ebuild name:

dev-util/bcc-0.36.1

Description

Tools for BPF-based Linux IO analysis, networking, monitoring, and more

Added to portage

2026-02-10

bcel - 6.11.0
Ebuild name:

dev-java/bcel-6.11.0

Description

Apache Commons Bytecode Engineering Library

Added to portage

2026-02-10

bitcoin-core - 29.3
Ebuild name:

net-p2p/bitcoin-core-29.3

Description

Reference implementation of the Bitcoin cryptocurrency

Added to portage

2026-02-10

blake3 - 1.0.8-r1
Ebuild name:

dev-python/blake3-1.0.8-r1

Description

Python bindings for the BLAKE3 cryptographic hash function

Added to portage

2026-02-10

boto3 - 1.42.45
Ebuild name:

dev-python/boto3-1.42.45

Description

The AWS SDK for Python

Added to portage

2026-02-10

botocore - 1.42.45
Ebuild name:

dev-python/botocore-1.42.45

Description

Low-level, data-driven core of boto 3

Added to portage

2026-02-10

c-wrapper - 0.6.1-r3
Ebuild name:

dev-scheme/c-wrapper-0.6.1-r3

Description

Foreign function interface for C and Objective-C libraries

Added to portage

2026-02-10

calligra - 25.12.2
Ebuild name:

app-office/calligra-25.12.2

Description

KDE Office Suite

Added to portage

2026-02-10

chrome-binary-plugins - 144.0.7559.132
Ebuild name:

www-plugins/chrome-binary-plugins-144.0.7559.132

Description

Binary plugins from Google Chrome for use in Chrom

Added to portage

2026-02-10

chrome-binary-plugins - 145.0.7632.45_beta
Ebuild name:

www-plugins/chrome-binary-plugins-145.0.7632.45_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-02-10

chrome-binary-plugins - 146.0.7670.2_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-146.0.7670.2_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-02-10

chromedriver-bin - 144.0.7559.132
Ebuild name:

www-apps/chromedriver-bin-144.0.7559.132

Description

WebDriver for Chrome

Added to portage

2026-02-10

chromium - 144.0.7559.132
Ebuild name:

www-client/chromium-144.0.7559.132

Description

Open-source version of Google Chrome web browser

Added to portage

2026-02-10

clang - 22.1.0_rc3
Ebuild name:

dev-python/clang-22.1.0_rc3

Description

Python bindings for llvm-core/clang

Added to portage

2026-02-10

clang - 22.1.0_rc3
Ebuild name:

llvm-core/clang-22.1.0_rc3

Description

C language family frontend for LLVM

Added to portage

2026-02-10

clang-common - 22.1.0_rc3
Ebuild name:

llvm-core/clang-common-22.1.0_rc3

Description

Common files shared between multiple slots of clang

Added to portage

2026-02-10

cli-helpers - 2.10.0
Ebuild name:

dev-python/cli-helpers-2.10.0

Description

Python helpers for common CLI tasks

Added to portage

2026-02-10

closure-compiler-bin - 20260128
Ebuild name:

dev-lang/closure-compiler-bin-20260128

Description

JavaScript optimizing compiler

Added to portage

2026-02-10

cmake - 4.2.3
Ebuild name:

dev-build/cmake-4.2.3

Description

Cross platform Make

Added to portage

2026-02-10

commons-daemon - 1.5.1
Ebuild name:

dev-java/commons-daemon-1.5.1

Description

Tools to allow Java programs to run as UNIX daemons

Added to portage

2026-02-10

compiler-rt - 22.1.0_rc3
Ebuild name:

llvm-runtimes/compiler-rt-22.1.0_rc3

Description

Compiler runtime library for clang (built-in part)

Added to portage

2026-02-10

compiler-rt-sanitizers - 22.1.0_rc3
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-22.1.0_rc3

Description

Compiler runtime libraries for clang (sanitizers &

Added to portage

2026-02-10

coverage - 7.13.4
Ebuild name:

dev-python/coverage-7.13.4

Description

Code coverage measurement for Python

Added to portage

2026-02-10

deno-bin - 2.6.9
Ebuild name:

dev-lang/deno-bin-2.6.9

Description

Modern runtime for JavaScript and TypeScript

Added to portage

2026-02-10

devcontainer - 0.83.0
Ebuild name:

app-containers/devcontainer-0.83.0

Description

Reference implementation of the Development Containers specifica

Added to portage

2026-02-10

flang - 22.1.0_rc3
Ebuild name:

llvm-core/flang-22.1.0_rc3

Description

LLVM's Fortran frontend

Added to portage

2026-02-10

flang-rt - 22.1.0_rc3
Ebuild name:

llvm-runtimes/flang-rt-22.1.0_rc3

Description

LLVM's Fortran runtime

Added to portage

2026-02-10

gallery-dl - 1.31.6
Ebuild name:

net-misc/gallery-dl-1.31.6

Description

Download image galleries and collections from several image hosting site

Added to portage

2026-02-10

google-chrome - 144.0.7559.132
Ebuild name:

www-client/google-chrome-144.0.7559.132

Description

The web browser from Google

Added to portage

2026-02-10

google-chrome-beta - 145.0.7632.45
Ebuild name:

www-client/google-chrome-beta-145.0.7632.45

Description

The web browser from Google

Added to portage

2026-02-10

google-chrome-unstable - 146.0.7670.2
Ebuild name:

www-client/google-chrome-unstable-146.0.7670.2

Description

The web browser from Google

Added to portage

2026-02-10

intel-graphics-compiler - 2.29.0
Ebuild name:

dev-util/intel-graphics-compiler-2.29.0

Description

LLVM-based OpenCL compiler for OpenCL targetting Intel Gen

Added to portage

2026-02-10

jaraco-text - 4.2.0
Ebuild name:

dev-python/jaraco-text-4.2.0

Description

Text utilities used by other projects by developer jaraco

Added to portage

2026-02-10

kirigami - 6.22.0-r1
Ebuild name:

kde-frameworks/kirigami-6.22.0-r1

Description

Lightweight user interface framework for mobile and convergent ap

Added to portage

2026-02-10

kotlin-bin - 2.3.10
Ebuild name:

dev-lang/kotlin-bin-2.3.10

Description

Statically typed language that targets the JVM and JavaScript

Added to portage

2026-02-10

kphotoalbum - 6.1.0-r1
Ebuild name:

media-gfx/kphotoalbum-6.1.0-r1

Description

Tool for indexing, searching, and viewing images

Added to portage

2026-02-10

ktorrent - 25.12.2-r1
Ebuild name:

net-p2p/ktorrent-25.12.2-r1

Description

Powerful BitTorrent client based on KDE Frameworks

Added to portage

2026-02-10

libclc - 22.1.0_rc3
Ebuild name:

llvm-core/libclc-22.1.0_rc3

Description

OpenCL C library

Added to portage

2026-02-10

libcxx - 22.1.0_rc3
Ebuild name:

llvm-runtimes/libcxx-22.1.0_rc3

Description

New implementation of the C++ standard library, targeting C++11

Added to portage

2026-02-10

libcxxabi - 22.1.0_rc3
Ebuild name:

llvm-runtimes/libcxxabi-22.1.0_rc3

Description

Low level support for a standard C++ library

Added to portage

2026-02-10

libgcc - 22.1.0_rc3
Ebuild name:

llvm-runtimes/libgcc-22.1.0_rc3

Description

Compiler runtime library for clang, compatible with libgcc_s

Added to portage

2026-02-10

libpng - 1.6.55
Ebuild name:

media-libs/libpng-1.6.55

Description

Portable Network Graphics library

Added to portage

2026-02-10

libunwind - 22.1.0_rc3
Ebuild name:

llvm-runtimes/libunwind-22.1.0_rc3

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-02-10

lit - 22.1.0_rc3
Ebuild name:

dev-python/lit-22.1.0_rc3

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-02-10

lld - 22.1.0_rc3
Ebuild name:

llvm-core/lld-22.1.0_rc3

Description

The LLVM linker (link editor)

Added to portage

2026-02-10

lldb - 22.1.0_rc3
Ebuild name:

llvm-core/lldb-22.1.0_rc3

Description

The LLVM debugger

Added to portage

2026-02-10

llvm - 22.1.0_rc3
Ebuild name:

dev-ml/llvm-22.1.0_rc3

Description

OCaml bindings for LLVM

Added to portage

2026-02-10

llvm - 22.1.0_rc3
Ebuild name:

llvm-core/llvm-22.1.0_rc3

Description

Low Level Virtual Machine

Added to portage

2026-02-10

llvm-common - 22.1.0_rc3
Ebuild name:

llvm-core/llvm-common-22.1.0_rc3

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-02-10

markdown - 3.10.2
Ebuild name:

dev-python/markdown-3.10.2

Description

Python implementation of the markdown markup language

Added to portage

2026-02-10

microsoft-edge - 144.0.3719.115
Ebuild name:

www-client/microsoft-edge-144.0.3719.115

Description

The web browser from Microsoft

Added to portage

2026-02-10

microsoft-edge-beta - 145.0.3800.36
Ebuild name:

www-client/microsoft-edge-beta-145.0.3800.36

Description

The web browser from Microsoft

Added to portage

2026-02-10

microsoft-edge-beta - 145.0.3800.47
Ebuild name:

www-client/microsoft-edge-beta-145.0.3800.47

Description

The web browser from Microsoft

Added to portage

2026-02-10

microsoft-edge-dev - 146.0.3829.2
Ebuild name:

www-client/microsoft-edge-dev-146.0.3829.2

Description

The web browser from Microsoft

Added to portage

2026-02-10

mkdocstrings-python - 2.0.2
Ebuild name:

dev-python/mkdocstrings-python-2.0.2

Description

Python handler for dev-python/mkdocstrings

Added to portage

2026-02-10

mlir - 22.1.0_rc3
Ebuild name:

llvm-core/mlir-22.1.0_rc3

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-02-10

moodle - 4.5.9
Ebuild name:

www-apps/moodle-4.5.9

Description

The Moodle Course Management System

Added to portage

2026-02-10

moodle - 5.0.5
Ebuild name:

www-apps/moodle-5.0.5

Description

The Moodle Course Management System

Added to portage

2026-02-10

munt-mt32emu - 2.7.3
Ebuild name:

media-libs/munt-mt32emu-2.7.3

Description

Library for emulating the Roland MT-32, CM-32L, CM-64 and LAPC-I

Added to portage

2026-02-10

naev - 0.13.3-r1
Ebuild name:

games-strategy/naev-0.13.3-r1

Description

2D space trading and combat game, in a similar vein to Escape Velocit

Added to portage

2026-02-10

netperf - 2.7.0_p20210121-r1
Ebuild name:

net-analyzer/netperf-2.7.0_p20210121-r1

Description

Network performance benchmark

Added to portage

2026-02-10

noflet - 0.0.15_p20141102-r1
Ebuild name:

app-emacs/noflet-0.0.15_p20141102-r1

Description

Dynamic, local advice for Emacs-Lisp code

Added to portage

2026-02-10

nox - 2026.02.09
Ebuild name:

dev-python/nox-2026.02.09

Description

Flexible test automation for Python

Added to portage

2026-02-10

nxml-docbook5-schemas - 5.1
Ebuild name:

app-emacs/nxml-docbook5-schemas-5.1

Description

Add support for DocBook 5 schemas to NXML

Added to portage

2026-02-10

nxml-gentoo-schemas - 20241116
Ebuild name:

app-emacs/nxml-gentoo-schemas-20241116

Description

Extension for nxml-mode with Gentoo-specific schemas

Added to portage

2026-02-10

offload - 22.1.0_rc3
Ebuild name:

llvm-runtimes/offload-22.1.0_rc3

Description

OpenMP offloading support

Added to portage

2026-02-10

openmp - 22.1.0_rc3
Ebuild name:

llvm-runtimes/openmp-22.1.0_rc3

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2026-02-10

openpgp-keys-gentoo-developers - 20260209
Ebuild name:

sec-keys/openpgp-keys-gentoo-developers-20260209

Description

Gentoo Authority Keys (GLEP 79)

Added to portage

2026-02-10

openpgp-keys-texinfo - 20260210
Ebuild name:

sec-keys/openpgp-keys-texinfo-20260210

Description

OpenPGP keys used by GNU texinfo

Added to portage

2026-02-10

opera - 127.0.5778.14
Ebuild name:

www-client/opera-127.0.5778.14

Description

A fast and secure web browser

Added to portage

2026-02-10

opera-developer - 128.0.5799.0
Ebuild name:

www-client/opera-developer-128.0.5799.0

Description

A fast and secure web browser

Added to portage

2026-02-10

parso - 0.8.6
Ebuild name:

dev-python/parso-0.8.6

Description

A python parser that supports error recovery and round-trip parsing

Added to portage

2026-02-10

pdns-recursor - 5.3.5
Ebuild name:

net-dns/pdns-recursor-5.3.5

Description

The PowerDNS Recursor

Added to portage

2026-02-10

pf-sources - 6.18_p6
Ebuild name:

sys-kernel/pf-sources-6.18_p6

Description

Added to portage

2026-02-10

polly - 22.1.0_rc3
Ebuild name:

llvm-core/polly-22.1.0_rc3

Description

Polyhedral optimizations for LLVM

Added to portage

2026-02-10

pyfakefs - 6.1.1
Ebuild name:

dev-python/pyfakefs-6.1.1

Description

A fake file system that mocks the Python file system modules

Added to portage

2026-02-10

pyproject-fmt - 2.15.1
Ebuild name:

dev-python/pyproject-fmt-2.15.1

Description

Format your pyproject.toml file

Added to portage

2026-02-10

pyproject-metadata - 0.11.0
Ebuild name:

dev-python/pyproject-metadata-0.11.0

Description

PEP 621 metadata parsing

Added to portage

2026-02-10

pytest-httpserver - 1.1.4
Ebuild name:

dev-python/pytest-httpserver-1.1.4

Description

HTTP server for pytest to test HTTP clients

Added to portage

2026-02-10

recordmydesktop - 0.4.0-r2
Ebuild name:

media-video/recordmydesktop-0.4.0-r2

Description

Desktop session recorder producing Ogg video/audio files

Added to portage

2026-02-10

redis - 7.1.1
Ebuild name:

dev-python/redis-7.1.1

Description

Python client for Redis key-value store

Added to portage

2026-02-10

s2geometry - 0.13.1-r2
Ebuild name:

sci-geosciences/s2geometry-0.13.1-r2

Description

Computational geometry and spatial indexing on the sphere

Added to portage

2026-02-10

spyder-kernels - 3.1.3
Ebuild name:

dev-python/spyder-kernels-3.1.3

Description

Kernels used by spyder on its ipython console

Added to portage

2026-02-10

sqlglot - 28.10.1
Ebuild name:

dev-python/sqlglot-28.10.1

Description

An easily customizable SQL parser and transpiler

Added to portage

2026-02-10

sudo-rs - 0.2.12
Ebuild name:

app-admin/sudo-rs-0.2.12

Description

A memory safe implementation of sudo and su.

Added to portage

2026-02-10

telegram-desktop-bin - 6.5.1
Ebuild name:

net-im/telegram-desktop-bin-6.5.1

Description

Official desktop client for Telegram (binary package)

Added to portage

2026-02-10

torchvision - 0.24.1-r1
Ebuild name:

sci-ml/torchvision-0.24.1-r1

Description

Datasets, transforms and models to specific to computer vision

Added to portage

2026-02-10

torchvision - 0.25.0
Ebuild name:

sci-ml/torchvision-0.25.0

Description

Datasets, transforms and models to specific to computer vision

Added to portage

2026-02-10

ttl - 0.16.0
Ebuild name:

net-analyzer/ttl-0.16.0

Description

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

Added to portage

2026-02-10

types-setuptools - 82.0.0.20260210
Ebuild name:

dev-python/types-setuptools-82.0.0.20260210

Description

Typing stubs for setuptools

Added to portage

2026-02-10

tyxml - 4.6.0_p20260130
Ebuild name:

dev-ml/tyxml-4.6.0_p20260130

Description

A library for building correct HTML and SVG documents

Added to portage

2026-02-10

u-boot-tools - 2025.01-r2
Ebuild name:

dev-embedded/u-boot-tools-2025.01-r2

Description

utilities for working with Das U-Boot

Added to portage

2026-02-10

websocket - 1.16
Ebuild name:

app-emacs/websocket-1.16

Description

A websocket implementation in elisp

Added to portage

2026-02-10

winbox - 4.0_rc3
Ebuild name:

app-admin/winbox-4.0_rc3

Description

Management Software for MikroTik RouterOS

Added to portage

2026-02-10

wxpython - 4.2.5
Ebuild name:

dev-python/wxpython-4.2.5

Description

A blending of the wxWindows C++ class library with Python

Added to portage

2026-02-10

xcp - 0.24.2-r1
Ebuild name:

sys-fs/xcp-0.24.2-r1

Description

A 'cp' alternative with user-friendly feedback and performance optimisations

Added to portage

2026-02-10

zen-sources - 6.18.8
Ebuild name:

sys-kernel/zen-sources-6.18.8

Description

The Zen Kernel Live Sources

Added to portage

2026-02-10

zen-sources - 6.18.9
Ebuild name:

sys-kernel/zen-sources-6.18.9

Description

The Zen Kernel Live Sources

Added to portage

2026-02-10

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