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:

88300

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-09-11
akonadi - 26.08.1
Ebuild name:

kde-apps/akonadi-26.08.1

Description

Storage service for PIM data and libraries for PIM apps

Added to portage

2026-09-11

akonadi-calendar - 26.08.1
Ebuild name:

kde-apps/akonadi-calendar-26.08.1

Description

Library for akonadi calendar integration

Added to portage

2026-09-11

akonadi-calendar-tools-common - 26.08.1
Ebuild name:

kde-apps/akonadi-calendar-tools-common-26.08.1

Description

Common files for

Added to portage

2026-09-11

akonadi-contacts - 26.08.1
Ebuild name:

kde-apps/akonadi-contacts-26.08.1

Description

Library for akonadi contact integration

Added to portage

2026-09-11

akonadi-import-wizard - 26.08.1
Ebuild name:

kde-apps/akonadi-import-wizard-26.08.1

Description

Assistant to import PIM data from other applications into Ak

Added to portage

2026-09-11

akonadi-mime - 26.08.1
Ebuild name:

kde-apps/akonadi-mime-26.08.1

Description

Library for akonadi mime types

Added to portage

2026-09-11

akonadi-search - 26.08.1
Ebuild name:

kde-apps/akonadi-search-26.08.1

Description

Libraries and daemons to implement searching in Akonadi

Added to portage

2026-09-11

akonadiconsole - 26.08.1
Ebuild name:

kde-apps/akonadiconsole-26.08.1

Description

Application for debugging Akonadi Resources

Added to portage

2026-09-11

akregator - 26.08.1
Ebuild name:

kde-apps/akregator-26.08.1

Description

News feed aggregator

Added to portage

2026-09-11

analitza - 26.08.1
Ebuild name:

kde-apps/analitza-26.08.1

Description

KDE library for mathematical features

Added to portage

2026-09-11

ark - 26.08.1
Ebuild name:

kde-apps/ark-26.08.1

Description

File archiver by KDE

Added to portage

2026-09-11

artikulate - 26.08.1
Ebuild name:

kde-apps/artikulate-26.08.1

Description

Language learning application that helps improving pronunciation skills

Added to portage

2026-09-11

audiocd-kio - 26.08.1
Ebuild name:

kde-apps/audiocd-kio-26.08.1

Description

KIO worker for accessing audio CDs

Added to portage

2026-09-11

baloo-widgets - 26.08.1
Ebuild name:

kde-apps/baloo-widgets-26.08.1

Description

Widget library for baloo

Added to portage

2026-09-11

blinken - 26.08.1
Ebuild name:

kde-apps/blinken-26.08.1

Description

Memory enhancement game based on KDE Frameworks

Added to portage

2026-09-11

bomber - 26.08.1
Ebuild name:

kde-apps/bomber-26.08.1

Description

Single player arcade bombing game

Added to portage

2026-09-11

bovo - 26.08.1
Ebuild name:

kde-apps/bovo-26.08.1

Description

Five-in-a-row Board Game

Added to portage

2026-09-11

calendarjanitor - 26.08.1
Ebuild name:

kde-apps/calendarjanitor-26.08.1

Description

Tool to scan calendar data for buggy instances

Added to portage

2026-09-11

calendarsupport - 26.08.1
Ebuild name:

kde-apps/calendarsupport-26.08.1

Description

Calendar support library

Added to portage

2026-09-11

cantor - 26.08.1
Ebuild name:

kde-apps/cantor-26.08.1

Description

Interface for doing mathematics and scientific computing

Added to portage

2026-09-11

containerd - 2.3.5
Ebuild name:

app-containers/containerd-2.3.5

Description

A daemon to control runC

Added to portage

2026-09-11

cri-o - 1.36.5
Ebuild name:

app-containers/cri-o-1.36.5

Description

OCI-based implementation of Kubernetes Container Runtime Interface

Added to portage

2026-09-11

cri-tools - 1.37.0
Ebuild name:

app-containers/cri-tools-1.37.0

Description

CLI and validation tools for Kubelet Container Runtime (CRI)

Added to portage

2026-09-11

cxx-rust-cssparser - 1.1.0
Ebuild name:

dev-libs/cxx-rust-cssparser-1.1.0

Description

C++ library for parsing CSS that uses the Rust cssparser crate in

Added to portage

2026-09-11

dolphin - 26.08.1
Ebuild name:

kde-apps/dolphin-26.08.1

Description

Plasma filemanager focusing on usability

Added to portage

2026-09-11

dolphin-plugins-common - 26.08.1
Ebuild name:

kde-apps/dolphin-plugins-common-26.08.1

Description

Common files for

Added to portage

2026-09-11

dolphin-plugins-dropbox - 26.08.1
Ebuild name:

kde-apps/dolphin-plugins-dropbox-26.08.1

Description

Dolphin plugin for Dropbox service integration

Added to portage

2026-09-11

dolphin-plugins-git - 26.08.1
Ebuild name:

kde-apps/dolphin-plugins-git-26.08.1

Description

Dolphin plugin for Git integration

Added to portage

2026-09-11

dolphin-plugins-makefileactions - 26.08.1
Ebuild name:

dev-build/dolphin-plugins-makefileactions-26.08.1

Description

Dolphin plugin for Makefile targets integration

Added to portage

2026-09-11

dolphin-plugins-mercurial - 26.08.1
Ebuild name:

kde-apps/dolphin-plugins-mercurial-26.08.1

Description

Dolphin plugin for Mercurial integration

Added to portage

2026-09-11

dolphin-plugins-mountiso - 26.08.1
Ebuild name:

app-cdr/dolphin-plugins-mountiso-26.08.1

Description

Dolphin plugin for ISO loopback device mounting

Added to portage

2026-09-11

dolphin-plugins-subversion - 26.08.1
Ebuild name:

kde-apps/dolphin-plugins-subversion-26.08.1

Description

Dolphin plugin for Subversion integration

Added to portage

2026-09-11

francis - 26.08.1
Ebuild name:

app-misc/francis-26.08.1

Description

Productivity application using the well-known pomodoro technique

Added to portage

2026-09-11

isoimagewriter - 26.08.1
Ebuild name:

app-cdr/isoimagewriter-26.08.1

Description

Write hybrid ISO files onto a USB disk

Added to portage

2026-09-11

kdevelop - 26.08.1
Ebuild name:

dev-util/kdevelop-26.08.1

Description

Integrated Development Environment, supporting KF6/Qt, C/C++ and much mor

Added to portage

2026-09-11

kdevelop-php - 26.08.1
Ebuild name:

dev-util/kdevelop-php-26.08.1

Description

PHP plugin for KDevelop

Added to portage

2026-09-11

kdevelop-python - 26.08.1
Ebuild name:

dev-util/kdevelop-python-26.08.1

Description

Python plugin for KDevelop

Added to portage

2026-09-11

kio-admin - 26.08.1
Ebuild name:

app-admin/kio-admin-26.08.1

Description

Manage files as administrator using the admin KIO protocol

Added to portage

2026-09-11

kio-perldoc - 26.08.1
Ebuild name:

dev-util/kio-perldoc-26.08.1

Description

KIO worker interface to browse Perl documentation

Added to portage

2026-09-11

kontrast - 26.08.1
Ebuild name:

app-accessibility/kontrast-26.08.1

Description

Tool to check contrast for colors to verify they are correctly a

Added to portage

2026-09-11

kopeninghours - 26.08.1
Ebuild name:

dev-libs/kopeninghours-26.08.1

Description

Library for parsing and evaluating OSM opening hours expressions

Added to portage

2026-09-11

kosmindoormap - 26.08.1
Ebuild name:

dev-libs/kosmindoormap-26.08.1

Description

Data Model and Extraction System for Travel Reservation information

Added to portage

2026-09-11

kpublictransport - 26.08.1
Ebuild name:

dev-libs/kpublictransport-26.08.1

Description

Library for accessing public transport timetables and other infor

Added to portage

2026-09-11

kweathercore - 26.08.1
Ebuild name:

dev-libs/kweathercore-26.08.1

Description

Library for retrieval of weather information including forecasts and

Added to portage

2026-09-11

massif-visualizer - 26.08.1
Ebuild name:

dev-util/massif-visualizer-26.08.1

Description

Tool visualising massif data

Added to portage

2026-09-11

merkuro - 26.08.1
Ebuild name:

app-office/merkuro-26.08.1

Description

Calendar application using Akonadi

Added to portage

2026-09-11

nerdctl - 2.3.5
Ebuild name:

app-containers/nerdctl-2.3.5

Description

Docker-compatible CLI for containerd, with support for Compose

Added to portage

2026-09-11

plasma-wayland-protocols - 1.22.0
Ebuild name:

dev-libs/plasma-wayland-protocols-1.22.0

Description

Plasma Specific Protocols for Wayland

Added to portage

2026-09-11

skladnik - 26.08.1
Ebuild name:

games-puzzle/skladnik-26.08.1

Description

The Japanese warehouse keeper sokoban game

Added to portage

2026-09-11

upterm - 0.25.1
Ebuild name:

app-misc/upterm-0.25.1

Description

Instant Terminal Sharing

Added to portage

2026-09-11

2026-09-10
3proxy - 0.9.9.0
Ebuild name:

net-proxy/3proxy-0.9.9.0

Description

Really tiny cross-platform proxy servers set

Added to portage

2026-09-10

ast-serialize - 0.11.1
Ebuild name:

dev-python/ast-serialize-0.11.1

Description

Python bindings for mypy AST serialization

Added to portage

2026-09-10

babl - 0.1.128
Ebuild name:

media-libs/babl-0.1.128

Description

A dynamic, any to any, pixel format conversion library

Added to portage

2026-09-10

bcc - 0.37.0
Ebuild name:

dev-util/bcc-0.37.0

Description

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

Added to portage

2026-09-10

bear - 4.2.2
Ebuild name:

dev-util/bear-4.2.2

Description

A tool that generates a compilation database for clang tooling

Added to portage

2026-09-10

beets - 2.14.0
Ebuild name:

media-sound/beets-2.14.0

Description

Media library management system for obsessive music geeks

Added to portage

2026-09-10

blender-bin - 4.5.12
Ebuild name:

media-gfx/blender-bin-4.5.12

Description

3D Creation/Animation/Publishing System

Added to portage

2026-09-10

blender-bin - 5.2.1
Ebuild name:

media-gfx/blender-bin-5.2.1

Description

3D Creation/Animation/Publishing System

Added to portage

2026-09-10

boto3 - 1.43.91
Ebuild name:

dev-python/boto3-1.43.91

Description

The AWS SDK for Python

Added to portage

2026-09-10

botocore - 1.43.91
Ebuild name:

dev-python/botocore-1.43.91

Description

Low-level, data-driven core of boto 3

Added to portage

2026-09-10

bpftrace - 0.27.0
Ebuild name:

dev-debug/bpftrace-0.27.0

Description

High-level tracing language for eBPF

Added to portage

2026-09-10

cfn-lint - 1.56.2
Ebuild name:

dev-python/cfn-lint-1.56.2

Description

CloudFormation Linter

Added to portage

2026-09-10

chrome-binary-plugins - 153.0.8010.36
Ebuild name:

www-plugins/chrome-binary-plugins-153.0.8010.36

Description

Binary plugins from Google Chrome for use in Chromi

Added to portage

2026-09-10

chrome-binary-plugins - 154.0.8037.17_beta
Ebuild name:

www-plugins/chrome-binary-plugins-154.0.8037.17_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-09-10

chrome-binary-plugins - 155.0.8040.2_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-155.0.8040.2_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-09-10

chromedriver-bin - 153.0.8010.36
Ebuild name:

www-apps/chromedriver-bin-153.0.8010.36

Description

WebDriver for Chrome

Added to portage

2026-09-10

chrony - 4.9
Ebuild name:

net-misc/chrony-4.9

Description

NTP client and server programs

Added to portage

2026-09-10

cinnamon - 6.6.9
Ebuild name:

gnome-extra/cinnamon-6.6.9

Description

A fork of GNOME Shell with layout similar to GNOME 2

Added to portage

2026-09-10

cinnamon-session - 6.6.4
Ebuild name:

gnome-extra/cinnamon-session-6.6.4

Description

Cinnamon session manager

Added to portage

2026-09-10

cjs - 140.1
Ebuild name:

gnome-extra/cjs-140.1

Description

Linux Mint's fork of gjs for Cinnamon

Added to portage

2026-09-10

corsix-th - 0.70.1
Ebuild name:

games-simulation/corsix-th-0.70.1

Description

Open source clone of Theme Hospital

Added to portage

2026-09-10

cudnn - 9.25.1.1
Ebuild name:

dev-libs/cudnn-9.25.1.1

Description

NVIDIA Accelerated Deep Learning on GPU library

Added to portage

2026-09-10

cudnn-frontend - 1.28.0
Ebuild name:

sci-ml/cudnn-frontend-1.28.0

Description

A c++ wrapper for the cudnn backend API

Added to portage

2026-09-10

delve - 1.27.2
Ebuild name:

dev-go/delve-1.27.2

Description

A source-level debugger for the Go programming language

Added to portage

2026-09-10

diffoscope - 329
Ebuild name:

dev-util/diffoscope-329

Description

Will try to get to the bottom of what makes files or directories different

Added to portage

2026-09-10

elasticsearch - 9.5.1
Ebuild name:

dev-python/elasticsearch-9.5.1

Description

Official Elasticsearch client library for Python

Added to portage

2026-09-10

electrum-ecc - 0.0.8
Ebuild name:

dev-python/electrum-ecc-0.0.8

Description

Pure python ctypes wrapper for libsecp256k1

Added to portage

2026-09-10

element-desktop-bin - 1.12.26
Ebuild name:

net-im/element-desktop-bin-1.12.26

Description

A glossy Matrix collaboration client for desktop (binary package

Added to portage

2026-09-10

fish - 4.9.2
Ebuild name:

app-shells/fish-4.9.2

Description

Friendly Interactive SHell

Added to portage

2026-09-10

gamescope - 3.16.28
Ebuild name:

gui-wm/gamescope-3.16.28

Description

Efficient micro-compositor for running games

Added to portage

2026-09-10

gerbv - 2.13.0
Ebuild name:

sci-electronics/gerbv-2.13.0

Description

A RS-274X (Gerber) and NC drill (Excellon) file viewer

Added to portage

2026-09-10

gif2png - 3.0.5
Ebuild name:

media-gfx/gif2png-3.0.5

Description

Converts images from GIF format to PNG format

Added to portage

2026-09-10

glycin-loaders - 2.2.0
Ebuild name:

media-libs/glycin-loaders-2.2.0

Description

Loaders for glycin clients (glycin crate or libglycin)

Added to portage

2026-09-10

google-auth - 2.58.0
Ebuild name:

dev-python/google-auth-2.58.0

Description

Google Authentication Library

Added to portage

2026-09-10

google-chrome - 153.0.8010.36
Ebuild name:

www-client/google-chrome-153.0.8010.36

Description

The web browser from Google

Added to portage

2026-09-10

google-chrome-beta - 154.0.8037.17
Ebuild name:

www-client/google-chrome-beta-154.0.8037.17

Description

The web browser from Google

Added to portage

2026-09-10

google-chrome-unstable - 155.0.8040.2
Ebuild name:

www-client/google-chrome-unstable-155.0.8040.2

Description

The web browser from Google

Added to portage

2026-09-10

groonga - 16.1.0
Ebuild name:

app-text/groonga-16.1.0

Description

Embeddable Fulltext Search Engine

Added to portage

2026-09-10

gst-plugins-libnice - 0.1.24
Ebuild name:

media-plugins/gst-plugins-libnice-0.1.24

Description

GStreamer plugin for ICE (RFC 5245) support

Added to portage

2026-09-10

gumbo - 0.14.0
Ebuild name:

dev-libs/gumbo-0.14.0

Description

The HTML5 parsing algorithm implemented as a pure C99 library

Added to portage

2026-09-10

ig - 0.56.0
Ebuild name:

app-admin/ig-0.56.0

Description

Tools and framework for data collection and system inspection using eBPF

Added to portage

2026-09-10

incus - 7.4-r1
Ebuild name:

app-containers/incus-7.4-r1

Description

Modern, secure and powerful system container and virtual machine manage

Added to portage

2026-09-10

inspircd - 4.12.0
Ebuild name:

net-irc/inspircd-4.12.0

Description

Inspire IRCd - The Stable, High-Performance Modular IRCd

Added to portage

2026-09-10

intune-portal - 1.2607.4-r1
Ebuild name:

sys-apps/intune-portal-1.2607.4-r1

Description

Microsoft Intune Company Portal to access a corporate environmen

Added to portage

2026-09-10

jacksum - 4.0.0
Ebuild name:

app-crypt/jacksum-4.0.0

Description

Java utility for working with checksums, CRCs, and message digests (hashes)

Added to portage

2026-09-10

just - 1.58.0
Ebuild name:

dev-build/just-1.58.0

Description

Just a command runner (with syntax inspired by 'make')

Added to portage

2026-09-10

key-chord - 0.8.2
Ebuild name:

app-emacs/key-chord-0.8.2

Description

Map pairs of simultaneously pressed keys to commands

Added to portage

2026-09-10

keymap-popup - 0.3.0
Ebuild name:

app-emacs/keymap-popup-0.3.0

Description

Described keymaps with popup help

Added to portage

2026-09-10

keywiz - 1.4
Ebuild name:

app-emacs/keywiz-1.4

Description

Emacs key sequence quiz

Added to portage

2026-09-10

kind-icon - 0.2.2
Ebuild name:

app-emacs/kind-icon-0.2.2

Description

Completion kind icons

Added to portage

2026-09-10

knot - 3.5.8
Ebuild name:

net-dns/knot-3.5.8

Description

High-performance authoritative-only DNS server

Added to portage

2026-09-10

libass - 0.17.5
Ebuild name:

media-libs/libass-0.17.5

Description

Library for SSA/ASS subtitles rendering

Added to portage

2026-09-10

libebml - 1.4.7
Ebuild name:

dev-libs/libebml-1.4.7

Description

Extensible binary format library (kinda like XML)

Added to portage

2026-09-10

libkate - 0.4.3
Ebuild name:

media-libs/libkate-0.4.3

Description

Codec for karaoke and text encapsulation for Ogg

Added to portage

2026-09-10

libmatroska - 1.7.2
Ebuild name:

media-libs/libmatroska-1.7.2

Description

Extensible multimedia container format based on EBML

Added to portage

2026-09-10

libnice - 0.1.24
Ebuild name:

net-libs/libnice-0.1.24

Description

Implementation of the Interactive Connectivity Establishment standard (ICE)

Added to portage

2026-09-10

libopenmpt - 0.8.9
Ebuild name:

media-libs/libopenmpt-0.8.9

Description

Library to decode tracked music files (modules)

Added to portage

2026-09-10

libtorrent - 0.16.22
Ebuild name:

net-libs/libtorrent-0.16.22

Description

BitTorrent library written in C++ for *nix

Added to portage

2026-09-10

lxc - 7.0.0-r1
Ebuild name:

app-containers/lxc-7.0.0-r1

Description

A userspace interface for the Linux kernel containment features

Added to portage

2026-09-10

mathematica - 15.0.1
Ebuild name:

sci-mathematics/mathematica-15.0.1

Description

Wolfram Mathematica

Added to portage

2026-09-10

microsoft-edge - 152.0.4191.66
Ebuild name:

www-client/microsoft-edge-152.0.4191.66

Description

The web browser from Microsoft

Added to portage

2026-09-10

microsoft-edge-beta - 153.0.4234.13
Ebuild name:

www-client/microsoft-edge-beta-153.0.4234.13

Description

The web browser from Microsoft

Added to portage

2026-09-10

microsoft-edge-beta - 153.0.4234.19
Ebuild name:

www-client/microsoft-edge-beta-153.0.4234.19

Description

The web browser from Microsoft

Added to portage

2026-09-10

microsoft-edge-beta - 154.0.4258.9
Ebuild name:

www-client/microsoft-edge-beta-154.0.4258.9

Description

The web browser from Microsoft

Added to portage

2026-09-10

microsoft-edge-dev - 154.0.4238.0
Ebuild name:

www-client/microsoft-edge-dev-154.0.4238.0

Description

The web browser from Microsoft

Added to portage

2026-09-10

microsoft-edge-dev - 154.0.4251.0
Ebuild name:

www-client/microsoft-edge-dev-154.0.4251.0

Description

The web browser from Microsoft

Added to portage

2026-09-10

microsoft-edge-dev - 155.0.4268.0
Ebuild name:

www-client/microsoft-edge-dev-155.0.4268.0

Description

The web browser from Microsoft

Added to portage

2026-09-10

microsoft-identity-broker - 3.0.2-r1
Ebuild name:

sys-auth/microsoft-identity-broker-3.0.2-r1

Description

Microsoft Authentication Broker to access a corporate e

Added to portage

2026-09-10

mkvtoolnix - 101.0
Ebuild name:

media-video/mkvtoolnix-101.0

Description

Tools to create, alter, and inspect Matroska files

Added to portage

2026-09-10

multidict - 6.8.0
Ebuild name:

dev-python/multidict-6.8.0

Description

multidict implementation

Added to portage

2026-09-10

mupdf - 1.28.2
Ebuild name:

app-text/mupdf-1.28.2

Description

A lightweight PDF viewer and toolkit written in portable C

Added to portage

2026-09-10

musescore - 4.7.5
Ebuild name:

media-sound/musescore-4.7.5

Description

WYSIWYG Music Score Typesetter

Added to portage

2026-09-10

mysql-connector-c++ - 26.7.0
Ebuild name:

dev-db/mysql-connector-c++-26.7.0

Description

MySQL database connector for C++ (mimics JDBC 4.0 API)

Added to portage

2026-09-10

networkmanager - 1.58.1
Ebuild name:

net-misc/networkmanager-1.58.1

Description

A set of co-operative tools that make networking simple and straight

Added to portage

2026-09-10

nsd - 4.15.2
Ebuild name:

net-dns/nsd-4.15.2

Description

An authoritative only, high performance, open source name server

Added to portage

2026-09-10

nsight-compute - 2026.3.0.13
Ebuild name:

dev-util/nsight-compute-2026.3.0.13

Description

performance analysis tool designed to visualize an application'

Added to portage

2026-09-10

nsight-systems - 2026.5.1
Ebuild name:

dev-util/nsight-systems-2026.5.1

Description

performance analysis tool designed to visualize an application's a

Added to portage

2026-09-10

nss - 3.129
Ebuild name:

dev-libs/nss-3.129

Description

Mozilla's Network Security Services library that implements PKI support

Added to portage

2026-09-10

nvidia-cuda-toolkit - 13.4.1
Ebuild name:

dev-util/nvidia-cuda-toolkit-13.4.1

Description

NVIDIA CUDA Toolkit (compiler and friends)

Added to portage

2026-09-10

ollama - 0.34.0
Ebuild name:

sci-ml/ollama-0.34.0

Description

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

Added to portage

2026-09-10

opencl-icd-loader - 2026.05.29
Ebuild name:

dev-libs/opencl-icd-loader-2026.05.29

Description

Official Khronos OpenCL ICD Loader

Added to portage

2026-09-10

openmpt123 - 0.8.9
Ebuild name:

media-sound/openmpt123-0.8.9

Description

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

Added to portage

2026-09-10

opera - 135.0.5973.123
Ebuild name:

www-client/opera-135.0.5973.123

Description

A fast and secure web browser

Added to portage

2026-09-10

opera-developer - 136.0.6001.0
Ebuild name:

www-client/opera-developer-136.0.6001.0

Description

A fast and secure web browser

Added to portage

2026-09-10

opera-developer - 137.0.6010.1
Ebuild name:

www-client/opera-developer-137.0.6010.1

Description

A fast and secure web browser

Added to portage

2026-09-10

opera-developer - 137.0.6015.0
Ebuild name:

www-client/opera-developer-137.0.6015.0

Description

A fast and secure web browser

Added to portage

2026-09-10

photoqt - 5.4.1
Ebuild name:

media-gfx/photoqt-5.4.1

Description

Simple but powerful Qt-based image viewer

Added to portage

2026-09-10

photoqt-extensions - 5.4.1
Ebuild name:

media-plugins/photoqt-extensions-5.4.1

Description

Official extensions for PhotoQt

Added to portage

2026-09-10

psycopg - 2.9.13
Ebuild name:

dev-python/psycopg-2.9.13

Description

PostgreSQL database adapter for Python

Added to portage

2026-09-10

pwvucontrol - 0.5.3-r1
Ebuild name:

media-sound/pwvucontrol-0.5.3-r1

Description

Volume control applet for Pipewire

Added to portage

2026-09-10

pygobject - 3.58.0
Ebuild name:

dev-python/pygobject-3.58.0

Description

Python bindings for GObject Introspection

Added to portage

2026-09-10

qtbase - 6.11.2-r2
Ebuild name:

dev-qt/qtbase-6.11.2-r2

Description

Cross-platform application development framework

Added to portage

2026-09-10

rdma-core - 65.0
Ebuild name:

sys-cluster/rdma-core-65.0

Description

Userspace components for the Linux Kernel's drivers/infiniband subsystem

Added to portage

2026-09-10

redis-knot - 3.5.8
Ebuild name:

net-dns/redis-knot-3.5.8

Description

Redis module for Knot DNS

Added to portage

2026-09-10

regex - 2026.9.10
Ebuild name:

dev-python/regex-2026.9.10

Description

Alternative regular expression module to replace re

Added to portage

2026-09-10

rtorrent - 0.16.22
Ebuild name:

net-p2p/rtorrent-0.16.22

Description

BitTorrent Client using libtorrent

Added to portage

2026-09-10

rutorrent - 5.3.14
Ebuild name:

www-apps/rutorrent-5.3.14

Description

ruTorrent is a front-end for the popular Bittorrent client rTorrent

Added to portage

2026-09-10

sandbox - 2.51
Ebuild name:

sys-apps/sandbox-2.51

Description

sandbox'd LD_PRELOAD hack

Added to portage

2026-09-10

selenium - 4.49.0
Ebuild name:

dev-python/selenium-4.49.0

Description

Python language binding for Selenium Remote Control

Added to portage

2026-09-10

selenium-manager - 4.49.0
Ebuild name:

dev-util/selenium-manager-4.49.0

Description

CLI tool that manages the browser/driver infrastructure required b

Added to portage

2026-09-10

strawberry - 1.2.29
Ebuild name:

media-sound/strawberry-1.2.29

Description

Modern music player and library organizer based on Clementine and Qt

Added to portage

2026-09-10

thunderbird - 155.0.1
Ebuild name:

mail-client/thunderbird-155.0.1

Description

Thunderbird Mail Client

Added to portage

2026-09-10

thunderbird-bin - 155.0.1
Ebuild name:

mail-client/thunderbird-bin-155.0.1

Description

Thunderbird Mail Client

Added to portage

2026-09-10

thunderbird-l10n - 155.0.1
Ebuild name:

mail-client/thunderbird-l10n-155.0.1

Description

Thunderbird mail client's translation files

Added to portage

2026-09-10

tinyssh - 20260906
Ebuild name:

net-misc/tinyssh-20260906

Description

A small SSH server with state-of-the-art cryptography

Added to portage

2026-09-10

torchdata - 0.11.0-r1
Ebuild name:

sci-ml/torchdata-0.11.0-r1

Description

A repo for data loading and utilities on PyTorch domain libraries

Added to portage

2026-09-10

tox - 4.61.4
Ebuild name:

dev-python/tox-4.61.4

Description

virtualenv-based automation of test activities

Added to portage

2026-09-10

tqsl - 2.8.6
Ebuild name:

media-radio/tqsl-2.8.6

Description

ARRL Logbook of the World

Added to portage

2026-09-10

tree-sitter - 0.27.0
Ebuild name:

dev-libs/tree-sitter-0.27.0

Description

Tree-sitter is a parser generator tool and an incremental parsing libra

Added to portage

2026-09-10

tree-sitter-cli - 0.27.0
Ebuild name:

dev-util/tree-sitter-cli-0.27.0

Description

Command-line tool for creating and testing tree-sitter grammars

Added to portage

2026-09-10

uv - 0.12.12
Ebuild name:

dev-python/uv-0.12.12

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-09-10

uv-build - 0.12.12
Ebuild name:

dev-python/uv-build-0.12.12

Description

PEP517 uv build backend

Added to portage

2026-09-10

vorbis-tools - 1.4.3
Ebuild name:

media-sound/vorbis-tools-1.4.3

Description

Tools for using the Ogg Vorbis sound file format

Added to portage

2026-09-10

vpnc-scripts - 20250727
Ebuild name:

net-vpn/vpnc-scripts-20250727

Description

Connect scripts for use with vpnc and openconnect (and similar client

Added to portage

2026-09-10

wireless-regdb - 20260903
Ebuild name:

net-wireless/wireless-regdb-20260903

Description

Wireless Regulatory database for Linux

Added to portage

2026-09-10

wpa_supplicant - 2.12
Ebuild name:

net-wireless/wpa_supplicant-2.12

Description

IEEE 802.1X/WPA supplicant for secure wireless transfers

Added to portage

2026-09-10

xapp - 3.2.3
Ebuild name:

x11-libs/xapp-3.2.3

Description

Cross-desktop libraries and common resources

Added to portage

2026-09-10

xpdf - 4.06
Ebuild name:

app-text/xpdf-4.06

Description

PDF viewer and toolkit

Added to portage

2026-09-10

xyzservices - 2026.9.1
Ebuild name:

sci-geosciences/xyzservices-2026.9.1

Description

Source of XYZ tiles providers

Added to portage

2026-09-10

zedis - 0.9.0
Ebuild name:

dev-db/zedis-0.9.0

Description

Blazing-fast native Redis GUI built with Rust and GPUI

Added to portage

2026-09-10

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