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:

83017

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-01-30
alembic - 1.18.3
Ebuild name:

dev-python/alembic-1.18.3

Description

Database migrations tool, written by the author of SQLAlchemy

Added to portage

2026-01-30

autopage - 0.6.0
Ebuild name:

dev-python/autopage-0.6.0

Description

A library to provide automatic paging for console output

Added to portage

2026-01-30

aws-sam-translator - 1.107.0
Ebuild name:

dev-python/aws-sam-translator-1.107.0

Description

A library that transform SAM templates into AWS CloudFormatio

Added to portage

2026-01-30

awscli - 1.44.28
Ebuild name:

app-admin/awscli-1.44.28

Description

Universal Command Line Environment for AWS

Added to portage

2026-01-30

bibtexparser - 1.4.4
Ebuild name:

dev-python/bibtexparser-1.4.4

Description

A BibTeX parser written in Python

Added to portage

2026-01-30

boto3 - 1.42.38
Ebuild name:

dev-python/boto3-1.42.38

Description

The AWS SDK for Python

Added to portage

2026-01-30

botocore - 1.42.38
Ebuild name:

dev-python/botocore-1.42.38

Description

Low-level, data-driven core of boto 3

Added to portage

2026-01-30

c-blosc2 - 2.23.0
Ebuild name:

dev-libs/c-blosc2-2.23.0

Description

Blocking, shuffling and lossless compression library

Added to portage

2026-01-30

claude-code - 2.1.23
Ebuild name:

dev-util/claude-code-2.1.23

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-01-30

cloudflared - 2026.1.2
Ebuild name:

net-vpn/cloudflared-2026.1.2

Description

A command-line client and tunneling daemon for Cloudflare Tunnel

Added to portage

2026-01-30

courier - 1.6.0
Ebuild name:

mail-mta/courier-1.6.0

Description

An MTA designed specifically for maildirs

Added to portage

2026-01-30

courier-authlib - 0.72.7
Ebuild name:

net-libs/courier-authlib-0.72.7

Description

Courier authentication library

Added to portage

2026-01-30

courier-unicode - 2.5.0
Ebuild name:

net-libs/courier-unicode-2.5.0

Description

Unicode library used by the courier mail server

Added to portage

2026-01-30

cssselect - 1.4.0
Ebuild name:

dev-python/cssselect-1.4.0

Description

Parse CSS3 Selectors and translate them to XPath 1.0

Added to portage

2026-01-30

deno-bin - 2.6.7
Ebuild name:

dev-lang/deno-bin-2.6.7

Description

Modern runtime for JavaScript and TypeScript

Added to portage

2026-01-30

gimp - 3.0.8-r1
Ebuild name:

media-gfx/gimp-3.0.8-r1

Description

GNU Image Manipulation Program

Added to portage

2026-01-30

nanobind - 2.11.0
Ebuild name:

dev-python/nanobind-2.11.0

Description

Tiny and efficient C++/Python bindings

Added to portage

2026-01-30

nbconvert - 7.17.0
Ebuild name:

dev-python/nbconvert-7.17.0

Description

Converting Jupyter Notebooks

Added to portage

2026-01-30

nvidia-drivers - 580.95.05
Ebuild name:

x11-drivers/nvidia-drivers-580.95.05

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-01-30

nvidia-vaapi-driver - 0.0.15
Ebuild name:

media-libs/nvidia-vaapi-driver-0.0.15

Description

A VA-API implemention using NVIDIA's NVDEC

Added to portage

2026-01-30

openjdk-bin - 25.0.2_p10
Ebuild name:

dev-java/openjdk-bin-25.0.2_p10

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-01-30

org-roam - 9999
Ebuild name:

app-emacs/org-roam-9999

Description

Rudimentary Roam replica with Org-mode

Added to portage

2026-01-30

orjson - 3.11.6
Ebuild name:

dev-python/orjson-3.11.6

Description

Fast, correct Python JSON library supporting dataclasses, datetimes, and n

Added to portage

2026-01-30

pdm-backend - 2.4.7
Ebuild name:

dev-python/pdm-backend-2.4.7

Description

A PEP 517 backend for PDM that supports PEP 621 metadata

Added to portage

2026-01-30

protobuf - 6.33.5
Ebuild name:

dev-python/protobuf-6.33.5

Description

Google's Protocol Buffers - Python bindings

Added to portage

2026-01-30

pytokens - 0.4.1
Ebuild name:

dev-python/pytokens-0.4.1

Description

A fast, spec compliant Python 3.13+ tokenizer that runs on older Pythons

Added to portage

2026-01-30

sphinxcontrib-trio - 1.2.0
Ebuild name:

dev-python/sphinxcontrib-trio-1.2.0

Description

Make Sphinx better at documenting Python functions and methods

Added to portage

2026-01-30

steve - 1.5.0
Ebuild name:

dev-build/steve-1.5.0

Description

A load-balancing jobserver for Gentoo

Added to portage

2026-01-30

talk-desktop-bin - 2.0.5
Ebuild name:

net-im/talk-desktop-bin-2.0.5

Description

Nextcloud Talk Desktop client

Added to portage

2026-01-30

thriftpy2 - 0.6.0_beta1
Ebuild name:

dev-python/thriftpy2-0.6.0_beta1

Description

Pure python approach of Apache Thrift

Added to portage

2026-01-30

tifffile - 2026.1.28
Ebuild name:

dev-python/tifffile-2026.1.28

Description

Read and write TIFF files

Added to portage

2026-01-30

types-psutil - 7.2.2.20260130
Ebuild name:

dev-python/types-psutil-7.2.2.20260130

Description

Typing stubs for psutil

Added to portage

2026-01-30

uv - 0.9.28
Ebuild name:

dev-python/uv-0.9.28

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-01-30

uv-build - 0.9.28
Ebuild name:

dev-python/uv-build-0.9.28

Description

PEP517 uv build backend

Added to portage

2026-01-30

wcwidth - 0.5.2
Ebuild name:

dev-python/wcwidth-0.5.2

Description

Measures number of Terminal column cells of wide-character codes

Added to portage

2026-01-30

yt-dlp - 2026.01.29
Ebuild name:

net-misc/yt-dlp-2026.01.29

Description

youtube-dl fork with additional features and fixes

Added to portage

2026-01-30

yt-dlp-ejs - 0.4.0
Ebuild name:

dev-python/yt-dlp-ejs-0.4.0

Description

External JavaScript for yt-dlp supporting many runtimes

Added to portage

2026-01-30

2026-01-29
absl-py - 2.4.0
Ebuild name:

dev-python/absl-py-2.4.0

Description

Abseil Python Common Libraries

Added to portage

2026-01-29

alembic - 1.18.2
Ebuild name:

dev-python/alembic-1.18.2

Description

Database migrations tool, written by the author of SQLAlchemy

Added to portage

2026-01-29

aspell - 0.60.8.2
Ebuild name:

app-text/aspell-0.60.8.2

Description

Free and Open Source spell checker designed to replace Ispell

Added to portage

2026-01-29

avahi - 0.9_rc3
Ebuild name:

net-dns/avahi-0.9_rc3

Description

System which facilitates service discovery on a local network

Added to portage

2026-01-29

awscli - 1.44.27
Ebuild name:

app-admin/awscli-1.44.27

Description

Universal Command Line Environment for AWS

Added to portage

2026-01-29

babl - 0.1.122
Ebuild name:

media-libs/babl-0.1.122

Description

A dynamic, any to any, pixel format conversion library

Added to portage

2026-01-29

bareos - 25.0.1
Ebuild name:

app-backup/bareos-25.0.1

Description

Featureful client/server network backup suite

Added to portage

2026-01-29

bareos - 25.0.1
Ebuild name:

dev-python/bareos-25.0.1

Description

python bindings for bareos network backup suite

Added to portage

2026-01-29

bcc - 0.36.0
Ebuild name:

dev-util/bcc-0.36.0

Description

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

Added to portage

2026-01-29

bedrock-server - 1.21.132.3
Ebuild name:

games-server/bedrock-server-1.21.132.3

Description

The official bedrock (non-java) based server for the sandbox

Added to portage

2026-01-29

borgmatic - 2.1.1
Ebuild name:

app-backup/borgmatic-2.1.1

Description

Automatically create, prune and verify backups with borgbackup

Added to portage

2026-01-29

boto3 - 1.42.37
Ebuild name:

dev-python/boto3-1.42.37

Description

The AWS SDK for Python

Added to portage

2026-01-29

botocore - 1.42.37
Ebuild name:

dev-python/botocore-1.42.37

Description

Low-level, data-driven core of boto 3

Added to portage

2026-01-29

chrome-binary-plugins - 144.0.7559.109
Ebuild name:

www-plugins/chrome-binary-plugins-144.0.7559.109

Description

Binary plugins from Google Chrome for use in Chrom

Added to portage

2026-01-29

chrome-binary-plugins - 145.0.7632.26_beta
Ebuild name:

www-plugins/chrome-binary-plugins-145.0.7632.26_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-01-29

chrome-binary-plugins - 146.0.7647.3_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-146.0.7647.3_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-01-29

chromedriver-bin - 144.0.7559.109
Ebuild name:

www-apps/chromedriver-bin-144.0.7559.109

Description

WebDriver for Chrome

Added to portage

2026-01-29

chromium - 144.0.7559.109
Ebuild name:

www-client/chromium-144.0.7559.109

Description

Open-source version of Google Chrome web browser

Added to portage

2026-01-29

confuse - 2.2.0
Ebuild name:

dev-python/confuse-2.2.0

Description

Confuse is a configuration library for Python that uses YAML

Added to portage

2026-01-29

dunst - 1.13.1
Ebuild name:

x11-misc/dunst-1.13.1

Description

Lightweight replacement for common notification daemons

Added to portage

2026-01-29

dustrac - 2.2.0
Ebuild name:

games-sports/dustrac-2.2.0

Description

Tile-based, cross-platform 2D racing game

Added to portage

2026-01-29

faudio - 26.01
Ebuild name:

app-emulation/faudio-26.01

Description

Accuracy-focused XAudio reimplementation for open platforms

Added to portage

2026-01-29

firefox - 147.0.2
Ebuild name:

www-client/firefox-147.0.2

Description

Firefox Web Browser

Added to portage

2026-01-29

fotocx - 26.2
Ebuild name:

media-gfx/fotocx-26.2

Description

Program for improving image files made with a digital camera

Added to portage

2026-01-29

gimp - 2.10.38-r4
Ebuild name:

media-gfx/gimp-2.10.38-r4

Description

GNU Image Manipulation Program

Added to portage

2026-01-29

google-chrome - 144.0.7559.109
Ebuild name:

www-client/google-chrome-144.0.7559.109

Description

The web browser from Google

Added to portage

2026-01-29

google-chrome-beta - 145.0.7632.26
Ebuild name:

www-client/google-chrome-beta-145.0.7632.26

Description

The web browser from Google

Added to portage

2026-01-29

google-chrome-unstable - 146.0.7647.3
Ebuild name:

www-client/google-chrome-unstable-146.0.7647.3

Description

The web browser from Google

Added to portage

2026-01-29

hoe - 4.6.0
Ebuild name:

dev-ruby/hoe-4.6.0

Description

Hoe extends rake to provide full project automation

Added to portage

2026-01-29

hypothesis - 6.151.3
Ebuild name:

dev-python/hypothesis-6.151.3

Description

A library for property based testing

Added to portage

2026-01-29

hypothesis - 6.151.4
Ebuild name:

dev-python/hypothesis-6.151.4

Description

A library for property based testing

Added to portage

2026-01-29

intel-vc-intrinsics - 0.24.3
Ebuild name:

dev-libs/intel-vc-intrinsics-0.24.3

Description

A set of new intrinsics on top of core LLVM IR instructions

Added to portage

2026-01-29

io-endpoint - 0.17.1
Ebuild name:

dev-ruby/io-endpoint-0.17.1

Description

Provides a separation of concerns interface for IO endpoints

Added to portage

2026-01-29

js8call - 2.5.2
Ebuild name:

media-radio/js8call-2.5.2

Description

Weak signal ham radio communication

Added to portage

2026-01-29

kscreen - 6.5.5-r1
Ebuild name:

kde-plasma/kscreen-6.5.5-r1

Description

KDE Plasma screen management

Added to portage

2026-01-29

libgcrypt - 1.12.0-r1
Ebuild name:

dev-libs/libgcrypt-1.12.0-r1

Description

General purpose crypto library based on the code used in GnuPG

Added to portage

2026-01-29

libpng - 1.6.54
Ebuild name:

media-libs/libpng-1.6.54

Description

Portable Network Graphics library

Added to portage

2026-01-29

libtsm - 4.4.2
Ebuild name:

dev-libs/libtsm-4.4.2

Description

Terminal Emulator State Machine

Added to portage

2026-01-29

lxqt-config - 2.3.1
Ebuild name:

lxqt-base/lxqt-config-2.3.1

Description

LXQt system configuration control center

Added to portage

2026-01-29

mattermost-desktop-bin - 5.13.4
Ebuild name:

net-im/mattermost-desktop-bin-5.13.4

Description

Mattermost Desktop application

Added to portage

2026-01-29

microsoft-edge - 144.0.3719.92
Ebuild name:

www-client/microsoft-edge-144.0.3719.92

Description

The web browser from Microsoft

Added to portage

2026-01-29

microsoft-edge-beta - 145.0.3800.13
Ebuild name:

www-client/microsoft-edge-beta-145.0.3800.13

Description

The web browser from Microsoft

Added to portage

2026-01-29

microsoft-edge-beta - 145.0.3800.22
Ebuild name:

www-client/microsoft-edge-beta-145.0.3800.22

Description

The web browser from Microsoft

Added to portage

2026-01-29

microsoft-edge-dev - 145.0.3800.10
Ebuild name:

www-client/microsoft-edge-dev-145.0.3800.10

Description

The web browser from Microsoft

Added to portage

2026-01-29

microsoft-edge-dev - 146.0.3818.0
Ebuild name:

www-client/microsoft-edge-dev-146.0.3818.0

Description

The web browser from Microsoft

Added to portage

2026-01-29

netpbm - 11.13.2
Ebuild name:

media-libs/netpbm-11.13.2

Description

A set of utilities for converting to/from the netpbm (and related) format

Added to portage

2026-01-29

netpbm - 11.2.21
Ebuild name:

media-libs/netpbm-11.2.21

Description

A set of utilities for converting to/from the netpbm (and related) format

Added to portage

2026-01-29

openjdk-bin - 21.0.10_p7
Ebuild name:

dev-java/openjdk-bin-21.0.10_p7

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-01-29

openjdk-bin - 26_beta32
Ebuild name:

dev-java/openjdk-bin-26_beta32

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-01-29

openjdk-bin - 27_alpha6
Ebuild name:

dev-java/openjdk-bin-27_alpha6

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-01-29

openpgp-keys-annejan - 20260129
Ebuild name:

sec-keys/openpgp-keys-annejan-20260129

Description

OpenPGP key used by Anne Jan Brouwer (annejan)

Added to portage

2026-01-29

openpgp-keys-roddhjav - 20260129
Ebuild name:

sec-keys/openpgp-keys-roddhjav-20260129

Description

OpenPGP key used by Alexandre Pujol (roddhjav)

Added to portage

2026-01-29

openrct2 - 0.4.30
Ebuild name:

games-simulation/openrct2-0.4.30

Description

An open source re-implementation of Chris Sawyer's RollerCoaster T

Added to portage

2026-01-29

opera - 126.0.5750.59
Ebuild name:

www-client/opera-126.0.5750.59

Description

A fast and secure web browser

Added to portage

2026-01-29

opera-developer - 128.0.5790.0
Ebuild name:

www-client/opera-developer-128.0.5790.0

Description

A fast and secure web browser

Added to portage

2026-01-29

org-static-blog - 1.6.0
Ebuild name:

app-emacs/org-static-blog-1.6.0

Description

Static site generator using Emacs's org-mode

Added to portage

2026-01-29

org-static-blog - 1.7.0
Ebuild name:

app-emacs/org-static-blog-1.7.0

Description

Static site generator using Emacs's org-mode

Added to portage

2026-01-29

org-static-blog - 9999
Ebuild name:

app-emacs/org-static-blog-9999

Description

Static site generator using Emacs's org-mode

Added to portage

2026-01-29

org-superstar-mode - 1.5.0
Ebuild name:

app-emacs/org-superstar-mode-1.5.0

Description

Prettify headings and plain lists in Org mode (use UTF8 bullets)

Added to portage

2026-01-29

osm - 1.9
Ebuild name:

app-emacs/osm-1.9

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-29

osm - 2.0
Ebuild name:

app-emacs/osm-2.0

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-29

osm - 2.1
Ebuild name:

app-emacs/osm-2.1

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-29

osm - 2.2
Ebuild name:

app-emacs/osm-2.2

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-29

osm - 9999
Ebuild name:

app-emacs/osm-9999

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-29

pass-import - 3.5-r1
Ebuild name:

app-admin/pass-import-3.5-r1

Description

pass extension for importing data from most existing password managers

Added to portage

2026-01-29

pass-update - 2.2.1-r1
Ebuild name:

app-admin/pass-update-2.2.1-r1

Description

pass extension that provides an easy flow for updating passwords

Added to portage

2026-01-29

pbs-installer - 2026.1.27
Ebuild name:

dev-python/pbs-installer-2026.1.27

Description

Installer for Python Build Standalone

Added to portage

2026-01-29

picard - 3.0.0_alpha1
Ebuild name:

media-sound/picard-3.0.0_alpha1

Description

Cross-platform music tagger

Added to portage

2026-01-29

prism - 1.9.0
Ebuild name:

dev-ruby/prism-1.9.0

Description

Prism Ruby parser

Added to portage

2026-01-29

psutil - 7.2.2
Ebuild name:

dev-python/psutil-7.2.2

Description

Retrieve information on running processes and system utilization

Added to portage

2026-01-29

pykeepass - 4.1.1_p1
Ebuild name:

dev-python/pykeepass-4.1.1_p1

Description

Python library to interact with keepass databases (supports KDBX3 and

Added to portage

2026-01-29

qdirstat - 2.0
Ebuild name:

sys-apps/qdirstat-2.0

Description

Qt-based directory statistics

Added to portage

2026-01-29

qtpass - 1.4.0-r3
Ebuild name:

app-admin/qtpass-1.4.0-r3

Description

Multi-platform GUI for pass, the standard unix password manager

Added to portage

2026-01-29

stress-ng - 0.20.00
Ebuild name:

app-benchmarks/stress-ng-0.20.00

Description

Stress test for a computer system with various selectable ways

Added to portage

2026-01-29

stripe - 14.3.0
Ebuild name:

dev-python/stripe-14.3.0

Description

Stripe Python bindings

Added to portage

2026-01-29

thunderbird - 140.7.1
Ebuild name:

mail-client/thunderbird-140.7.1

Description

Thunderbird Mail Client

Added to portage

2026-01-29

thunderbird - 147.0.1
Ebuild name:

mail-client/thunderbird-147.0.1

Description

Thunderbird Mail Client

Added to portage

2026-01-29

thunderbird-bin - 140.7.1
Ebuild name:

mail-client/thunderbird-bin-140.7.1

Description

Thunderbird Mail Client

Added to portage

2026-01-29

thunderbird-bin - 147.0.1
Ebuild name:

mail-client/thunderbird-bin-147.0.1

Description

Thunderbird Mail Client

Added to portage

2026-01-29

tmuxp - 1.64.0
Ebuild name:

app-misc/tmuxp-1.64.0

Description

tmux session manager. built on libtmux

Added to portage

2026-01-29

tomcat - 10.1.52
Ebuild name:

www-servers/tomcat-10.1.52

Description

Tomcat Servlet-6.0/JSP-3.1/EL-5.0/WebSocket-2.1/JASPIC-3.0 Container

Added to portage

2026-01-29

tor - 0.4.8.22
Ebuild name:

net-vpn/tor-0.4.8.22

Description

Anonymizing overlay network for TCP

Added to portage

2026-01-29

transient - 0.11.0-r1
Ebuild name:

app-emacs/transient-0.11.0-r1

Description

Transient commands abstraction for GNU Emacs

Added to portage

2026-01-29

transient - 0.12.0-r1
Ebuild name:

app-emacs/transient-0.12.0-r1

Description

Transient commands abstraction for GNU Emacs

Added to portage

2026-01-29

ttl - 0.15.2
Ebuild name:

net-analyzer/ttl-0.15.2

Description

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

Added to portage

2026-01-29

virtualbox - 7.1.16
Ebuild name:

app-emulation/virtualbox-7.1.16

Description

Family of powerful x86 virtualization products for enterprise and h

Added to portage

2026-01-29

virtualbox - 7.2.6
Ebuild name:

app-emulation/virtualbox-7.2.6

Description

Family of powerful x86 virtualization products for enterprise and ho

Added to portage

2026-01-29

virtualbox-additions - 7.1.16
Ebuild name:

app-emulation/virtualbox-additions-7.1.16

Description

CD image containing guest additions for VirtualBox

Added to portage

2026-01-29

virtualbox-additions - 7.2.6
Ebuild name:

app-emulation/virtualbox-additions-7.2.6

Description

CD image containing guest additions for VirtualBox

Added to portage

2026-01-29

virtualbox-extpack-oracle - 7.1.16
Ebuild name:

app-emulation/virtualbox-extpack-oracle-7.1.16

Description

PUEL extensions for VirtualBox

Added to portage

2026-01-29

virtualbox-extpack-oracle - 7.2.6
Ebuild name:

app-emulation/virtualbox-extpack-oracle-7.2.6

Description

PUEL extensions for VirtualBox

Added to portage

2026-01-29

virtualbox-guest-additions - 7.1.16
Ebuild name:

app-emulation/virtualbox-guest-additions-7.1.16

Description

VirtualBox kernel modules and user-space tools for

Added to portage

2026-01-29

virtualbox-guest-additions - 7.2.6
Ebuild name:

app-emulation/virtualbox-guest-additions-7.2.6

Description

VirtualBox kernel modules and user-space tools for G

Added to portage

2026-01-29

virtualbox-guest-modules - 7.1.16
Ebuild name:

app-emulation/virtualbox-guest-modules-7.1.16

Description

Kernel Modules for Virtualbox Guest Additions

Added to portage

2026-01-29

virtualbox-guest-modules - 7.2.6
Ebuild name:

app-emulation/virtualbox-guest-modules-7.2.6

Description

Kernel Modules for Virtualbox Guest Additions

Added to portage

2026-01-29

virtualbox-kvm - 7.1.16_pre20251103
Ebuild name:

app-emulation/virtualbox-kvm-7.1.16_pre20251103

Description

Family of powerful x86 virtualization products for

Added to portage

2026-01-29

virtualbox-modules - 7.1.16
Ebuild name:

app-emulation/virtualbox-modules-7.1.16

Description

Kernel Modules for Virtualbox

Added to portage

2026-01-29

virtualbox-modules - 7.2.6
Ebuild name:

app-emulation/virtualbox-modules-7.2.6

Description

Kernel Modules for Virtualbox

Added to portage

2026-01-29

xarray - 2026.1.0
Ebuild name:

dev-python/xarray-2026.1.0

Description

N-D labeled arrays and datasets in Python

Added to portage

2026-01-29

zxcvbn - 4.5.0
Ebuild name:

dev-python/zxcvbn-4.5.0

Description

Realistic password strength estimator

Added to portage

2026-01-29

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