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:

77657

userrating:

average rating: 1.2 (8 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.
rate this article:
current rating: average rating: 1.7 (18 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-06-27
algol68g - 3.5.15
Ebuild name:

dev-lang/algol68g-3.5.15

Description

Algol 68 Genie compiler-interpreter

Added to portage

2025-06-27

avahi - 0.9_rc2-r1
Ebuild name:

net-dns/avahi-0.9_rc2-r1

Description

System which facilitates service discovery on a local network

Added to portage

2025-06-27

avogadro2 - 1.100.0-r1
Ebuild name:

sci-chemistry/avogadro2-1.100.0-r1

Description

Advanced molecule editor and visualizer 2

Added to portage

2025-06-27

avogadrolibs - 1.100.0-r1
Ebuild name:

sci-libs/avogadrolibs-1.100.0-r1

Description

Advanced molecule editor and visualizer 2 - libraries

Added to portage

2025-06-27

azuredatastudio - 1.52.0
Ebuild name:

dev-util/azuredatastudio-1.52.0

Description

Data management and development tool from Microsoft

Added to portage

2025-06-27

boogie - 3.5.4
Ebuild name:

dev-lang/boogie-3.5.4

Description

SMT-based program verifier

Added to portage

2025-06-27

chromedriver-bin - 138.0.7204.49
Ebuild name:

www-apps/chromedriver-bin-138.0.7204.49

Description

WebDriver for Chrome

Added to portage

2025-06-27

chromium - 138.0.7204.49
Ebuild name:

www-client/chromium-138.0.7204.49

Description

Open-source version of Google Chrome web browser

Added to portage

2025-06-27

chromium - 139.0.7258.5
Ebuild name:

www-client/chromium-139.0.7258.5

Description

Open-source version of Google Chrome web browser

Added to portage

2025-06-27

claude-code - 1.0.35
Ebuild name:

dev-util/claude-code-1.0.35

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2025-06-27

coin - 4.0.4
Ebuild name:

media-libs/coin-4.0.4

Description

High-level 3D graphics toolkit, fully compatible with SGI Open Inventor 2.1

Added to portage

2025-06-27

drkonqi-legacy - 6.3.80_p20250417
Ebuild name:

kde-plasma/drkonqi-legacy-6.3.80_p20250417

Description

Plasma crash handler, gives the user feedback if a progr

Added to portage

2025-06-27

droidcam - 2.1.4
Ebuild name:

media-video/droidcam-2.1.4

Description

Use your phone or tablet as webcam with a v4l device driver and app

Added to portage

2025-06-27

evolution-data-server - 3.52.4-r4
Ebuild name:

gnome-extra/evolution-data-server-3.52.4-r4

Description

Evolution groupware backend

Added to portage

2025-06-27

evolution-data-server - 3.54.3-r2
Ebuild name:

gnome-extra/evolution-data-server-3.54.3-r2

Description

Evolution groupware backend

Added to portage

2025-06-27

ghdl - 5.1.1
Ebuild name:

sci-electronics/ghdl-5.1.1

Description

Open-source analyzer, compiler, and simulator for VHDL 2008/93/87

Added to portage

2025-06-27

google-chrome - 138.0.7204.49
Ebuild name:

www-client/google-chrome-138.0.7204.49

Description

The web browser from Google

Added to portage

2025-06-27

google-chrome-beta - 139.0.7258.5
Ebuild name:

www-client/google-chrome-beta-139.0.7258.5

Description

The web browser from Google

Added to portage

2025-06-27

google-chrome-unstable - 140.0.7259.2
Ebuild name:

www-client/google-chrome-unstable-140.0.7259.2

Description

The web browser from Google

Added to portage

2025-06-27

gstreamermm - 1.10.0-r3
Ebuild name:

dev-cpp/gstreamermm-1.10.0-r3

Description

C++ interface for GStreamer

Added to portage

2025-06-27

hyprutils - 0.7.1-r1
Ebuild name:

gui-libs/hyprutils-0.7.1-r1

Description

Hyprland utilities library used across the ecosystem

Added to portage

2025-06-27

indilib - 2.1.4
Ebuild name:

sci-libs/indilib-2.1.4

Description

INDI Astronomical Control Protocol library

Added to portage

2025-06-27

kotlin-bin - 2.2.0
Ebuild name:

dev-lang/kotlin-bin-2.2.0

Description

Statically typed language that targets the JVM and JavaScript

Added to portage

2025-06-27

libnbd - 1.22.2
Ebuild name:

sys-libs/libnbd-1.22.2

Description

NBD client library in userspace

Added to portage

2025-06-27

libnbd - 1.23.4
Ebuild name:

sys-libs/libnbd-1.23.4

Description

NBD client library in userspace

Added to portage

2025-06-27

libtorrent - 0.15.5
Ebuild name:

net-libs/libtorrent-0.15.5

Description

BitTorrent library written in C++ for *nix

Added to portage

2025-06-27

loksh - 7.7
Ebuild name:

app-shells/loksh-7.7

Description

Linux port of OpenBSD's ksh

Added to portage

2025-06-27

mathmod - 12.1
Ebuild name:

sci-mathematics/mathmod-12.1

Description

Plot parametric and implicit surfaces

Added to portage

2025-06-27

microsoft-edge - 138.0.3351.55
Ebuild name:

www-client/microsoft-edge-138.0.3351.55

Description

The web browser from Microsoft

Added to portage

2025-06-27

microsoft-edge-beta - 138.0.3351.42
Ebuild name:

www-client/microsoft-edge-beta-138.0.3351.42

Description

The web browser from Microsoft

Added to portage

2025-06-27

microsoft-edge-beta - 138.0.3351.52
Ebuild name:

www-client/microsoft-edge-beta-138.0.3351.52

Description

The web browser from Microsoft

Added to portage

2025-06-27

microsoft-edge-beta - 138.0.3351.55
Ebuild name:

www-client/microsoft-edge-beta-138.0.3351.55

Description

The web browser from Microsoft

Added to portage

2025-06-27

netcdf - 4.9.3
Ebuild name:

sci-libs/netcdf-4.9.3

Description

Scientific library and interface for array oriented data access

Added to portage

2025-06-27

nprolog - 4.43
Ebuild name:

dev-lang/nprolog-4.43

Description

Interpreter and compiler to be compatible with Arity/Prolog32

Added to portage

2025-06-27

opentoonz - 1.6.0-r1
Ebuild name:

media-gfx/opentoonz-1.6.0-r1

Description

An open-source full-featured 2D animation creation software

Added to portage

2025-06-27

pgmodeler - 1.2.0
Ebuild name:

dev-db/pgmodeler-1.2.0

Description

PostgreSQL Database Modeler

Added to portage

2025-06-27

plasma-meta - 6.4.1-r1
Ebuild name:

kde-plasma/plasma-meta-6.4.1-r1

Description

Merge this to pull in all Plasma 6 packages

Added to portage

2025-06-27

popwin - 1.0.0
Ebuild name:

app-emacs/popwin-1.0.0

Description

Popup window manager for Emacs

Added to portage

2025-06-27

popwin - 1.0.2
Ebuild name:

app-emacs/popwin-1.0.2

Description

Popup window manager for Emacs

Added to portage

2025-06-27

pos-tip - 0.4.7
Ebuild name:

app-emacs/pos-tip-0.4.7

Description

Show tooltip at point

Added to portage

2025-06-27

recoll - 1.43.2
Ebuild name:

app-misc/recoll-1.43.2

Description

Personal full text search package

Added to portage

2025-06-27

rtorrent - 0.15.5
Ebuild name:

net-p2p/rtorrent-0.15.5

Description

BitTorrent Client using libtorrent

Added to portage

2025-06-27

simsu - 1.4.6
Ebuild name:

games-board/simsu-1.4.6

Description

Basic sudoku game

Added to portage

2025-06-27

smb4k - 4.0.3
Ebuild name:

net-misc/smb4k-4.0.3

Description

Advanced network neighborhood browser

Added to portage

2025-06-27

sourcegit - 2025.23
Ebuild name:

dev-vcs/sourcegit-2025.23

Description

Open Source Git GUI client using .NET AvaloniaUI

Added to portage

2025-06-27

tempel - 1.5
Ebuild name:

app-emacs/tempel-1.5

Description

Templates with in-buffer field editing for GNU Emacs

Added to portage

2025-06-27

unrar - 7.1.7
Ebuild name:

app-arch/unrar-7.1.7

Description

Uncompress rar files

Added to portage

2025-06-27

webkit-gtk - 2.48.3-r1
Ebuild name:

net-libs/webkit-gtk-2.48.3-r1

Description

Open source web browser engine

Added to portage

2025-06-27

webkit-gtk - 2.48.3-r411
Ebuild name:

net-libs/webkit-gtk-2.48.3-r411

Description

Open source web browser engine

Added to portage

2025-06-27

webkit-gtk - 2.48.3-r601
Ebuild name:

net-libs/webkit-gtk-2.48.3-r601

Description

Open source web browser engine

Added to portage

2025-06-27

2025-06-26
B-Keywords - 1.280.0
Ebuild name:

dev-perl/B-Keywords-1.280.0

Description

Lists of reserved barewords and symbol names

Added to portage

2025-06-26

CPAN-Perl-Releases - 5.202.506.250
Ebuild name:

dev-perl/CPAN-Perl-Releases-5.202.506.250

Description

Mapping Perl releases on CPAN to the location of the tarb

Added to portage

2025-06-26

Crypt-Simple - 0.60.0-r3
Ebuild name:

dev-perl/Crypt-Simple-0.60.0-r3

Description

Encrypt stuff simply

Added to portage

2025-06-26

Module-Signature - 0.920.0
Ebuild name:

dev-perl/Module-Signature-0.920.0

Description

Module signature file manipulation

Added to portage

2025-06-26

aiostream - 0.7.0
Ebuild name:

dev-python/aiostream-0.7.0

Description

Generator-based operators for asynchronous iteration

Added to portage

2025-06-26

amarok - 3.2.82
Ebuild name:

media-sound/amarok-3.2.82

Description

Advanced audio player based on KDE Frameworks

Added to portage

2025-06-26

awscli - 1.40.43
Ebuild name:

app-admin/awscli-1.40.43

Description

Universal Command Line Environment for AWS

Added to portage

2025-06-26

boto3 - 1.38.44
Ebuild name:

dev-python/boto3-1.38.44

Description

The AWS SDK for Python

Added to portage

2025-06-26

botocore - 1.38.44
Ebuild name:

dev-python/botocore-1.38.44

Description

Low-level, data-driven core of boto 3

Added to portage

2025-06-26

cctz - 2.5
Ebuild name:

dev-cpp/cctz-2.5

Description

C++ library for dealing with time zones and time conversion

Added to portage

2025-06-26

django-prometheus - 2.4.1
Ebuild name:

dev-python/django-prometheus-2.4.1

Description

Library to export Django metrics for Prometheus

Added to portage

2025-06-26

elasticsearch - 8.18.0-r1
Ebuild name:

dev-ruby/elasticsearch-8.18.0-r1

Description

Ruby integrations for ES, elasticsearch module

Added to portage

2025-06-26

ethtool - 6.15
Ebuild name:

sys-apps/ethtool-6.15

Description

Utility for examining and tuning ethernet-based network interfaces

Added to portage

2025-06-26

eza - 0.21.6
Ebuild name:

sys-apps/eza-0.21.6

Description

A modern, maintained replacement for ls

Added to portage

2025-06-26

fractal - 12_beta
Ebuild name:

net-im/fractal-12_beta

Description

Matrix messaging app for GNOME written in Rust

Added to portage

2025-06-26

gentoo-syntax - 16
Ebuild name:

app-vim/gentoo-syntax-16

Description

vim plugin Gentoo and Portage syntax highlighting

Added to portage

2025-06-26

google-api-python-client - 2.174.0
Ebuild name:

dev-python/google-api-python-client-2.174.0

Description

Google API Client for Python

Added to portage

2025-06-26

grpcio - 1.73.1
Ebuild name:

dev-python/grpcio-1.73.1

Description

HTTP/2-based RPC framework

Added to portage

2025-06-26

grpcio-status - 1.73.1
Ebuild name:

dev-python/grpcio-status-1.73.1

Description

Reference package for GRPC Python status proto mapping

Added to portage

2025-06-26

hypothesis - 6.135.15
Ebuild name:

dev-python/hypothesis-6.135.15

Description

A library for property based testing

Added to portage

2025-06-26

hypothesis - 6.135.16
Ebuild name:

dev-python/hypothesis-6.135.16

Description

A library for property based testing

Added to portage

2025-06-26

ibus-table - 1.17.14
Ebuild name:

app-i18n/ibus-table-1.17.14

Description

Tables engines for IBus

Added to portage

2025-06-26

ibus-table-others - 1.3.21
Ebuild name:

app-i18n/ibus-table-others-1.3.21

Description

Various tables for IBus-Table

Added to portage

2025-06-26

ibus-typing-booster - 2.27.66
Ebuild name:

app-i18n/ibus-typing-booster-2.27.66

Description

Completion input method for IBus

Added to portage

2025-06-26

libXaw3dXft - 1.6.3
Ebuild name:

x11-libs/libXaw3dXft-1.6.3

Description

Xaw3dXft library

Added to portage

2025-06-26

libmpdclient - 2.23
Ebuild name:

media-libs/libmpdclient-2.23

Description

Library for interfacing Music Player Daemon (media-sound/mpd)

Added to portage

2025-06-26

libssh - 0.11.1-r2
Ebuild name:

net-libs/libssh-0.11.1-r2

Description

Access a working SSH implementation by means of a library

Added to portage

2025-06-26

libssh - 0.11.2
Ebuild name:

net-libs/libssh-0.11.2

Description

Access a working SSH implementation by means of a library

Added to portage

2025-06-26

license-expression - 30.4.3
Ebuild name:

dev-python/license-expression-30.4.3

Description

Parse, compare, simplify and normalize license expressions

Added to portage

2025-06-26

lincity-ng - 2.13.1
Ebuild name:

games-simulation/lincity-ng-2.13.1

Description

City simulation game

Added to portage

2025-06-26

lincity-ng - 9999
Ebuild name:

games-simulation/lincity-ng-9999

Description

City simulation game

Added to portage

2025-06-26

novnc - 1.6.0
Ebuild name:

www-apps/novnc-1.6.0

Description

noVNC is a VNC client implemented using HTML5 technologies

Added to portage

2025-06-26

openresolv - 3.17.0
Ebuild name:

net-dns/openresolv-3.17.0

Description

A framework for managing DNS information

Added to portage

2025-06-26

perl-Sys-Syslog - 0.360.0-r5
Ebuild name:

virtual/perl-Sys-Syslog-0.360.0-r5

Description

Virtual for

Added to portage

2025-06-26

perl-Term-ANSIColor - 5.10.0-r5
Ebuild name:

virtual/perl-Term-ANSIColor-5.10.0-r5

Description

Virtual for

Added to portage

2025-06-26

perl-Term-ReadLine - 1.170.0-r9
Ebuild name:

virtual/perl-Term-ReadLine-1.170.0-r9

Description

Virtual for

Added to portage

2025-06-26

perl-Term-Table - 0.24.0-r1
Ebuild name:

virtual/perl-Term-Table-0.24.0-r1

Description

Virtual for

Added to portage

2025-06-26

perl-Test - 1.310.0-r8
Ebuild name:

virtual/perl-Test-1.310.0-r8

Description

Virtual for

Added to portage

2025-06-26

perl-Test-Harness - 3.500.0-r1
Ebuild name:

virtual/perl-Test-Harness-3.500.0-r1

Description

Virtual for

Added to portage

2025-06-26

perl-Test-Simple - 1.302.210
Ebuild name:

virtual/perl-Test-Simple-1.302.210

Description

Virtual for

Added to portage

2025-06-26

perl-Test2-Suite - 1.302.210
Ebuild name:

virtual/perl-Test2-Suite-1.302.210

Description

Virtual for

Added to portage

2025-06-26

perl-Text-Balanced - 2.60.0-r2
Ebuild name:

virtual/perl-Text-Balanced-2.60.0-r2

Description

Virtual for

Added to portage

2025-06-26

perl-Text-ParseWords - 3.310.0-r4
Ebuild name:

virtual/perl-Text-ParseWords-3.310.0-r4

Description

Virtual for

Added to portage

2025-06-26

perl-Text-Tabs+Wrap - 2024.1.0-r1
Ebuild name:

virtual/perl-Text-Tabs+Wrap-2024.1.0-r1

Description

Virtual for Text and Text also distributed as Text

Added to portage

2025-06-26

perl-Time-HiRes - 1.977.800
Ebuild name:

virtual/perl-Time-HiRes-1.977.800

Description

Virtual for

Added to portage

2025-06-26

perl-Time-Local - 1.350.0-r1
Ebuild name:

virtual/perl-Time-Local-1.350.0-r1

Description

Virtual for

Added to portage

2025-06-26

perl-Unicode-Collate - 1.310.0-r3
Ebuild name:

virtual/perl-Unicode-Collate-1.310.0-r3

Description

Virtual for

Added to portage

2025-06-26

perl-Unicode-Normalize - 1.320.0-r2
Ebuild name:

virtual/perl-Unicode-Normalize-1.320.0-r2

Description

Virtual for

Added to portage

2025-06-26

perl-XSLoader - 0.320.0-r2
Ebuild name:

virtual/perl-XSLoader-0.320.0-r2

Description

Virtual for

Added to portage

2025-06-26

perl-threads - 2.430.0
Ebuild name:

virtual/perl-threads-2.430.0

Description

Virtual for

Added to portage

2025-06-26

perl-version - 0.993.300
Ebuild name:

virtual/perl-version-0.993.300

Description

Virtual for

Added to portage

2025-06-26

phonenumbers - 9.0.8
Ebuild name:

dev-python/phonenumbers-9.0.8

Description

Python port of Google's libphonenumber

Added to portage

2025-06-26

posframe - 1.4.4
Ebuild name:

app-emacs/posframe-1.4.4

Description

Pop up a frame at point

Added to portage

2025-06-26

postsrsd - 2.0.11-r1
Ebuild name:

mail-filter/postsrsd-2.0.11-r1

Description

Postfix Sender Rewriting Scheme daemon

Added to portage

2025-06-26

pytools - 2025.1.7
Ebuild name:

dev-python/pytools-2025.1.7

Description

Collection of tools missing from the Python standard library

Added to portage

2025-06-26

qmplay2 - 25.06.11-r1
Ebuild name:

media-video/qmplay2-25.06.11-r1

Description

A Qt-based video player, which can play most formats and codecs

Added to portage

2025-06-26

resolvelib - 1.2.0
Ebuild name:

dev-python/resolvelib-1.2.0

Description

Resolve abstract dependencies into concrete ones

Added to portage

2025-06-26

rspec-core - 3.13.5
Ebuild name:

dev-ruby/rspec-core-3.13.5

Description

A Behaviour Driven Development (BDD) framework for Ruby

Added to portage

2025-06-26

strawberry - 1.2.11
Ebuild name:

media-sound/strawberry-1.2.11

Description

Modern music player and library organizer based on Clementine and Qt

Added to portage

2025-06-26

systemd - 256.17
Ebuild name:

sys-apps/systemd-256.17

Description

System and service manager for Linux

Added to portage

2025-06-26

systemd - 257.7
Ebuild name:

sys-apps/systemd-257.7

Description

System and service manager for Linux

Added to portage

2025-06-26

systemd-utils - 256.17
Ebuild name:

sys-apps/systemd-utils-256.17

Description

Utilities split out from systemd for OpenRC users

Added to portage

2025-06-26

txaio - 23.6.1
Ebuild name:

dev-python/txaio-23.6.1

Description

Compatibility API between asyncio/Twisted/Trollius

Added to portage

2025-06-26

util-linux - 2.41.1
Ebuild name:

sys-apps/util-linux-2.41.1

Description

Various useful Linux utilities

Added to portage

2025-06-26

uv - 0.7.15
Ebuild name:

dev-python/uv-0.7.15

Description

A Python package installer and resolver, written in Rust

Added to portage

2025-06-26

uv-build - 0.7.15
Ebuild name:

dev-python/uv-build-0.7.15

Description

PEP517 uv build backend

Added to portage

2025-06-26

virtiofsd - 1.13.2
Ebuild name:

app-emulation/virtiofsd-1.13.2

Description

Shared file system for virtual machines

Added to portage

2025-06-26

xastir - 2.2.2
Ebuild name:

media-radio/xastir-2.2.2

Description

X Amateur Station Tracking and Information Reporting

Added to portage

2025-06-26

xfsprogs - 6.15.0
Ebuild name:

sys-fs/xfsprogs-6.15.0

Description

XFS filesystem utilities

Added to portage

2025-06-26

yt-dlp - 2025.06.25
Ebuild name:

net-misc/yt-dlp-2025.06.25

Description

youtube-dl fork with additional features and fixes

Added to portage

2025-06-26

z3 - 4.15.2
Ebuild name:

sci-mathematics/z3-4.15.2

Description

An efficient theorem prover

Added to portage

2025-06-26

zope-event - 5.1
Ebuild name:

dev-python/zope-event-5.1

Description

Event publishing / dispatch, used by Zope Component Architecture

Added to portage

2025-06-26

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 43.3 ms