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:

70786

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
2024-12-04
awscli - 1.36.15
Ebuild name:

app-admin/awscli-1.36.15

Description

Universal Command Line Environment for AWS

Added to portage

2024-12-04

boto3 - 1.35.74
Ebuild name:

dev-python/boto3-1.35.74

Description

The AWS SDK for Python

Added to portage

2024-12-04

botocore - 1.35.74
Ebuild name:

dev-python/botocore-1.35.74

Description

Low-level, data-driven core of boto 3

Added to portage

2024-12-04

clang - 19.1.5
Ebuild name:

sys-devel/clang-19.1.5

Description

C language family frontend for LLVM

Added to portage

2024-12-04

clang-common - 19.1.5
Ebuild name:

sys-devel/clang-common-19.1.5

Description

Common files shared between multiple slots of clang

Added to portage

2024-12-04

clang-python - 19.1.5
Ebuild name:

dev-python/clang-python-19.1.5

Description

Python bindings for sys-devel/clang

Added to portage

2024-12-04

clang-runtime - 19.1.5
Ebuild name:

sys-devel/clang-runtime-19.1.5

Description

Meta-ebuild for clang runtime libraries

Added to portage

2024-12-04

compiler-rt - 19.1.5
Ebuild name:

sys-libs/compiler-rt-19.1.5

Description

Compiler runtime library for clang (built-in part)

Added to portage

2024-12-04

compiler-rt-sanitizers - 19.1.5
Ebuild name:

sys-libs/compiler-rt-sanitizers-19.1.5

Description

Compiler runtime libraries for clang (sanitizers & xray)

Added to portage

2024-12-04

fonttools - 4.55.1
Ebuild name:

dev-python/fonttools-4.55.1

Description

Library for manipulating TrueType, OpenType, AFM and Type1 fonts

Added to portage

2024-12-04

indilib - 2.1.1
Ebuild name:

sci-libs/indilib-2.1.1

Description

INDI Astronomical Control Protocol library

Added to portage

2024-12-04

iwdevtools - 0.12.14
Ebuild name:

app-portage/iwdevtools-0.12.14

Description

Small tools to aid with Gentoo development, primarily intended for Q

Added to portage

2024-12-04

jellyfish - 1.1.2
Ebuild name:

dev-python/jellyfish-1.1.2

Description

Python module for doing approximate and phonetic matching of strings

Added to portage

2024-12-04

kstars - 3.7.4
Ebuild name:

sci-astronomy/kstars-3.7.4

Description

Desktop Planetarium

Added to portage

2024-12-04

libclc - 19.1.5
Ebuild name:

dev-libs/libclc-19.1.5

Description

OpenCL C library

Added to portage

2024-12-04

libcxx - 19.1.5
Ebuild name:

sys-libs/libcxx-19.1.5

Description

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

Added to portage

2024-12-04

libcxxabi - 19.1.5
Ebuild name:

sys-libs/libcxxabi-19.1.5

Description

Low level support for a standard C++ library

Added to portage

2024-12-04

libomp - 19.1.5
Ebuild name:

sys-libs/libomp-19.1.5

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2024-12-04

line-profiler - 4.2.0
Ebuild name:

dev-python/line-profiler-4.2.0

Description

Line-by-line profiler

Added to portage

2024-12-04

lit - 19.1.5
Ebuild name:

dev-python/lit-19.1.5

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2024-12-04

lld - 19.1.5
Ebuild name:

sys-devel/lld-19.1.5

Description

The LLVM linker (link editor)

Added to portage

2024-12-04

lldb - 19.1.5
Ebuild name:

dev-debug/lldb-19.1.5

Description

The LLVM debugger

Added to portage

2024-12-04

llvm - 19.1.5
Ebuild name:

sys-devel/llvm-19.1.5

Description

Low Level Virtual Machine

Added to portage

2024-12-04

llvm-common - 19.1.5
Ebuild name:

sys-devel/llvm-common-19.1.5

Description

Common files shared between multiple slots of LLVM

Added to portage

2024-12-04

llvm-libunwind - 19.1.5
Ebuild name:

sys-libs/llvm-libunwind-19.1.5

Description

C++ runtime stack unwinder from LLVM

Added to portage

2024-12-04

llvm-ocaml - 19.1.5
Ebuild name:

dev-ml/llvm-ocaml-19.1.5

Description

OCaml bindings for LLVM

Added to portage

2024-12-04

mako - 1.3.7
Ebuild name:

dev-python/mako-1.3.7

Description

A Python templating language

Added to portage

2024-12-04

prometheus-client - 0.21.1
Ebuild name:

dev-python/prometheus-client-0.21.1

Description

Python client for the Prometheus monitoring system

Added to portage

2024-12-04

pycharm-community - 2024.3
Ebuild name:

dev-util/pycharm-community-2024.3

Description

Intelligent Python IDE with unique code assistance and analysis

Added to portage

2024-12-04

pycharm-professional - 2024.3
Ebuild name:

dev-util/pycharm-professional-2024.3

Description

Intelligent Python IDE with unique code assistance and analysi

Added to portage

2024-12-04

pydantic - 2.10.3
Ebuild name:

dev-python/pydantic-2.10.3

Description

Data parsing and validation using Python type hints

Added to portage

2024-12-04

pysnmp - 7.1.14
Ebuild name:

dev-python/pysnmp-7.1.14

Description

Python SNMP library

Added to portage

2024-12-04

python - 3.11.11_p1
Ebuild name:

dev-lang/python-3.11.11_p1

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2024-12-04

python - 3.12.8
Ebuild name:

dev-lang/python-3.12.8

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2024-12-04

python - 3.13.1
Ebuild name:

dev-lang/python-3.13.1

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2024-12-04

python - 3.13.1-r100
Ebuild name:

dev-lang/python-3.13.1-r100

Description

Freethreading (no-GIL) version of Python programming language

Added to portage

2024-12-04

python - 3.9.21_p1
Ebuild name:

dev-lang/python-3.9.21_p1

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2024-12-04

python-daemon - 3.1.2
Ebuild name:

dev-python/python-daemon-3.1.2

Description

Library to implement a well-behaved Unix daemon process

Added to portage

2024-12-04

python-tests - 3.11.11_p1
Ebuild name:

dev-python/python-tests-3.11.11_p1

Description

Test modules from dev-lang/python

Added to portage

2024-12-04

python-tests - 3.12.8
Ebuild name:

dev-python/python-tests-3.12.8

Description

Test modules from dev-lang/python

Added to portage

2024-12-04

scheme-complete - 0.9.9
Ebuild name:

app-emacs/scheme-complete-0.9.9

Description

Scheme tab-completion and word-completion for Emacs

Added to portage

2024-12-04

scim-bridge-el - 0.8.2-r1
Ebuild name:

app-emacs/scim-bridge-el-0.8.2-r1

Description

a SCIM-Bridge client for Emacs

Added to portage

2024-12-04

scss-mode - 0.5.0_p20180123-r1
Ebuild name:

app-emacs/scss-mode-0.5.0_p20180123-r1

Description

Major mode for editing SCSS files in Emacs

Added to portage

2024-12-04

semi - 1.14.7_p20230811
Ebuild name:

app-emacs/semi-1.14.7_p20230811

Description

A library to provide MIME feature for GNU Emacs

Added to portage

2024-12-04

servant - 0.3.0
Ebuild name:

app-emacs/servant-0.3.0

Description

ELPA server written in Emacs Lisp

Added to portage

2024-12-04

telegram-desktop - 5.8.3-r1
Ebuild name:

net-im/telegram-desktop-5.8.3-r1

Description

Official desktop client for Telegram

Added to portage

2024-12-04

tg_owt - 0_pre20240804-r2
Ebuild name:

media-libs/tg_owt-0_pre20240804-r2

Description

WebRTC build for Telegram

Added to portage

2024-12-04

thunderbird - 128.5.1
Ebuild name:

mail-client/thunderbird-128.5.1

Description

Thunderbird Mail Client

Added to portage

2024-12-04

thunderbird-bin - 128.5.1
Ebuild name:

mail-client/thunderbird-bin-128.5.1

Description

Thunderbird Mail Client

Added to portage

2024-12-04

yt-dlp - 2024.12.03
Ebuild name:

net-misc/yt-dlp-2024.12.03

Description

youtube-dl fork with additional features and fixes

Added to portage

2024-12-04

2024-12-03
apispec - 6.8.0
Ebuild name:

dev-python/apispec-6.8.0

Description

A pluggable API specification generator

Added to portage

2024-12-03

btrfs-progs - 6.12
Ebuild name:

sys-fs/btrfs-progs-6.12

Description

Btrfs filesystem utilities

Added to portage

2024-12-03

cfn-lint - 1.20.2
Ebuild name:

dev-python/cfn-lint-1.20.2

Description

CloudFormation Linter

Added to portage

2024-12-03

conky - 1.21.9
Ebuild name:

app-admin/conky-1.21.9

Description

An advanced, highly configurable system monitor for X

Added to portage

2024-12-03

cpu-x - 5.1.1
Ebuild name:

sys-apps/cpu-x-5.1.1

Description

A Free software that gathers information on CPU, motherboard and more

Added to portage

2024-12-03

crossdev - 20241202
Ebuild name:

sys-devel/crossdev-20241202

Description

Gentoo Cross-toolchain generator

Added to portage

2024-12-03

date - 3.4.1
Ebuild name:

dev-ruby/date-3.4.1

Description

A subclass of Object includes Comparable module for handling dates

Added to portage

2024-12-03

dotnet-sdk - 9.0.100
Ebuild name:

dev-dotnet/dotnet-sdk-9.0.100

Description

Added to portage

2024-12-03

fastjsonschema - 2.21.1
Ebuild name:

dev-python/fastjsonschema-2.21.1

Description

Fast JSON schema validator for Python

Added to portage

2024-12-03

freeradius - 3.2.6
Ebuild name:

net-dialup/freeradius-3.2.6

Description

Highly configurable free RADIUS server

Added to portage

2024-12-03

fvwm3 - 1.1.1-r1
Ebuild name:

x11-wm/fvwm3-1.1.1-r1

Description

A multiple large virtual desktop window manager derived from fvwm

Added to portage

2024-12-03

gallery-dl - 1.28.0
Ebuild name:

net-misc/gallery-dl-1.28.0

Description

Download image galleries and collections from several image hosting site

Added to portage

2024-12-03

gettext - 0.23
Ebuild name:

sys-devel/gettext-0.23

Description

GNU locale utilities

Added to portage

2024-12-03

gobject-introspection - 1.80.1-r3
Ebuild name:

dev-libs/gobject-introspection-1.80.1-r3

Description

Introspection system for GObject-based libraries

Added to portage

2024-12-03

gobject-introspection - 1.82.0-r1
Ebuild name:

dev-libs/gobject-introspection-1.82.0-r1

Description

Introspection system for GObject-based libraries

Added to portage

2024-12-03

hepmc - 3.3.0-r1
Ebuild name:

sci-physics/hepmc-3.3.0-r1

Description

Event Record for Monte Carlo Generators

Added to portage

2024-12-03

jq - 1.7.1-r1
Ebuild name:

app-misc/jq-1.7.1-r1

Description

A lightweight and flexible command-line JSON processor

Added to portage

2024-12-03

kwin - 6.2.4-r1
Ebuild name:

kde-plasma/kwin-6.2.4-r1

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2024-12-03

libcpuid - 0.7.1
Ebuild name:

dev-libs/libcpuid-0.7.1

Description

A small C library for x86 (and x86_64) CPU detection and feature extraction

Added to portage

2024-12-03

libintl - 0.23
Ebuild name:

dev-libs/libintl-0.23

Description

the GNU international library (split out of gettext)

Added to portage

2024-12-03

libquotient - 0.9.1
Ebuild name:

net-libs/libquotient-0.9.1

Description

Qt-based SDK to develop applications for Matrix

Added to portage

2024-12-03

logger - 1.6.2
Ebuild name:

dev-ruby/logger-1.6.2

Description

Provides a simple logging utility for outputting messages

Added to portage

2024-12-03

lowdown - 1.3.0
Ebuild name:

app-text/lowdown-1.3.0

Description

Markdown translator producing HTML5, roff documents in the ms and man format

Added to portage

2024-12-03

nerdctl - 2.0.1
Ebuild name:

app-containers/nerdctl-2.0.1

Description

Docker-compatible CLI for containerd, with support for Compose

Added to portage

2024-12-03

nokogiri - 1.16.8
Ebuild name:

dev-ruby/nokogiri-1.16.8

Description

Nokogiri is an HTML, XML, SAX, and Reader parser

Added to portage

2024-12-03

nprolog - 3.51
Ebuild name:

dev-lang/nprolog-3.51

Description

Interpreter and compiler to be compatible with Arity/Prolog32

Added to portage

2024-12-03

phonenumbers - 8.13.51
Ebuild name:

dev-python/phonenumbers-8.13.51

Description

Python port of Google's libphonenumber

Added to portage

2024-12-03

pixman - 0.44.2
Ebuild name:

x11-libs/pixman-0.44.2

Description

Low-level pixel manipulation routines

Added to portage

2024-12-03

pkginfo - 1.11.3
Ebuild name:

dev-python/pkginfo-1.11.3

Description

Provides an API for querying the distutils metadata written in a PKG-INFO

Added to portage

2024-12-03

pkginfo - 1.12.0
Ebuild name:

dev-python/pkginfo-1.12.0

Description

Provides an API for querying the distutils metadata written in a PKG-INFO

Added to portage

2024-12-03

postgis - 3.3.7-r1
Ebuild name:

dev-db/postgis-3.3.7-r1

Description

Geographic Objects for PostgreSQL

Added to portage

2024-12-03

postgis - 3.4.3-r1
Ebuild name:

dev-db/postgis-3.4.3-r1

Description

Geographic Objects for PostgreSQL

Added to portage

2024-12-03

postgis - 3.5.0-r1
Ebuild name:

dev-db/postgis-3.5.0-r1

Description

Geographic Objects for PostgreSQL

Added to portage

2024-12-03

psych - 5.2.1
Ebuild name:

dev-ruby/psych-5.2.1

Description

A YAML parser and emitter

Added to portage

2024-12-03

pv - 1.9.7
Ebuild name:

sys-apps/pv-1.9.7

Description

Pipe Viewer a tool for monitoring the progress of data through a pipe

Added to portage

2024-12-03

qbs - 2.5.0
Ebuild name:

dev-util/qbs-2.5.0

Description

Modern build tool for software projects

Added to portage

2024-12-03

rails-html-sanitizer - 1.6.1
Ebuild name:

dev-ruby/rails-html-sanitizer-1.6.1

Description

Sanitize HTML fragments in Rails applications

Added to portage

2024-12-03

root - 6.34.00
Ebuild name:

sci-physics/root-6.34.00

Description

C++ data analysis framework and interpreter from CERN

Added to portage

2024-12-03

rpds-py - 0.22.0
Ebuild name:

dev-python/rpds-py-0.22.0

Description

Python bindings to Rust's persistent data structures (rpds)

Added to portage

2024-12-03

sesman - 0.3.4
Ebuild name:

app-emacs/sesman-0.3.4

Description

Generic session manager for Emacs based IDEs

Added to portage

2024-12-03

session - 2.4b
Ebuild name:

app-emacs/session-2.4b

Description

When you start Emacs, Session restores various variables from your last sess

Added to portage

2024-12-03

syd - 3.29.4
Ebuild name:

sys-apps/syd-3.29.4

Description

seccomp and landlock based application sandbox with support for namespaces

Added to portage

2024-12-03

synapse - 1.120.2
Ebuild name:

net-im/synapse-1.120.2

Description

Reference implementation of Matrix homeserver

Added to portage

2024-12-03

twisted - 24.11.0
Ebuild name:

dev-python/twisted-24.11.0

Description

An asynchronous networking framework written in Python

Added to portage

2024-12-03

upmpdcli - 1.9.0
Ebuild name:

media-sound/upmpdcli-1.9.0

Description

UPnP Media Renderer front-end for MPD, the Music Player Daemon

Added to portage

2024-12-03

webkit-gtk - 2.46.4
Ebuild name:

net-libs/webkit-gtk-2.46.4

Description

Open source web browser engine

Added to portage

2024-12-03

webkit-gtk - 2.46.4-r410
Ebuild name:

net-libs/webkit-gtk-2.46.4-r410

Description

Open source web browser engine

Added to portage

2024-12-03

webkit-gtk - 2.46.4-r600
Ebuild name:

net-libs/webkit-gtk-2.46.4-r600

Description

Open source web browser engine

Added to portage

2024-12-03

wireplumber - 0.5.7
Ebuild name:

media-video/wireplumber-0.5.7

Description

Replacement for pipewire-media-session

Added to portage

2024-12-03

xterm - 396
Ebuild name:

x11-terms/xterm-396

Description

Terminal Emulator for X Windows

Added to portage

2024-12-03

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: 51.0 ms