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:

82762

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-10
attica - 6.22.0
Ebuild name:

kde-frameworks/attica-6.22.0

Description

Framework providing access to Open Collaboration Services

Added to portage

2026-01-10

baloo - 6.22.0
Ebuild name:

kde-frameworks/baloo-6.22.0

Description

Framework for searching and managing metadata

Added to portage

2026-01-10

bluez-qt - 6.22.0
Ebuild name:

kde-frameworks/bluez-qt-6.22.0

Description

Qt wrapper for Bluez 5 DBus API

Added to portage

2026-01-10

breeze-icons - 6.22.0
Ebuild name:

kde-frameworks/breeze-icons-6.22.0

Description

Breeze SVG icon theme

Added to portage

2026-01-10

extra-cmake-modules - 6.22.0
Ebuild name:

kde-frameworks/extra-cmake-modules-6.22.0

Description

Extra modules and scripts for CMake

Added to portage

2026-01-10

filelock - 3.20.3
Ebuild name:

dev-python/filelock-3.20.3

Description

A platform independent file lock for Python

Added to portage

2026-01-10

frameworkintegration - 6.22.0
Ebuild name:

kde-frameworks/frameworkintegration-6.22.0

Description

Framework for integrating Qt applications with KDE Plasm

Added to portage

2026-01-10

fsspec - 2026.1.0
Ebuild name:

dev-python/fsspec-2026.1.0

Description

A specification that python filesystems should adhere to

Added to portage

2026-01-10

kapidox - 6.22.0
Ebuild name:

kde-frameworks/kapidox-6.22.0

Description

Framework for building KDE API documentation in a standard format and

Added to portage

2026-01-10

karchive - 6.22.0
Ebuild name:

kde-frameworks/karchive-6.22.0

Description

Framework for reading, creation, and manipulation of various archive

Added to portage

2026-01-10

kauth - 6.22.0
Ebuild name:

kde-frameworks/kauth-6.22.0

Description

Framework to let applications perform actions as a privileged user

Added to portage

2026-01-10

kbookmarks - 6.22.0
Ebuild name:

kde-frameworks/kbookmarks-6.22.0

Description

Framework for managing bookmarks stored in XBEL format

Added to portage

2026-01-10

kcalendarcore - 6.22.0
Ebuild name:

kde-frameworks/kcalendarcore-6.22.0

Description

Library for interfacing with calendars

Added to portage

2026-01-10

kcmutils - 6.22.0
Ebuild name:

kde-frameworks/kcmutils-6.22.0

Description

Framework to work with KDE System Settings modules

Added to portage

2026-01-10

kcodecs - 6.22.0
Ebuild name:

kde-frameworks/kcodecs-6.22.0

Description

Framework for manipulating strings using various encodings

Added to portage

2026-01-10

kcolorscheme - 6.22.0
Ebuild name:

kde-frameworks/kcolorscheme-6.22.0

Description

Framework for downloading and sharing additional application dat

Added to portage

2026-01-10

kcompletion - 6.22.0
Ebuild name:

kde-frameworks/kcompletion-6.22.0

Description

Framework for common completion tasks such as filename or URL com

Added to portage

2026-01-10

kconfig - 6.22.0
Ebuild name:

kde-frameworks/kconfig-6.22.0

Description

Framework for reading and writing configuration

Added to portage

2026-01-10

kconfigwidgets - 6.22.0
Ebuild name:

kde-frameworks/kconfigwidgets-6.22.0

Description

Framework providing an assortment of configuration-related wid

Added to portage

2026-01-10

kcontacts - 6.22.0
Ebuild name:

kde-frameworks/kcontacts-6.22.0

Description

Address book API based on KDE Frameworks

Added to portage

2026-01-10

kcoreaddons - 6.22.0
Ebuild name:

kde-frameworks/kcoreaddons-6.22.0

Description

Framework for solving common problems such as caching, randomisat

Added to portage

2026-01-10

kcrash - 6.22.0
Ebuild name:

kde-frameworks/kcrash-6.22.0

Description

Framework for intercepting and handling application crashes

Added to portage

2026-01-10

kdav - 6.22.0
Ebuild name:

kde-frameworks/kdav-6.22.0

Description

DAV protocol implemention with KJobs

Added to portage

2026-01-10

kdbusaddons - 6.22.0
Ebuild name:

kde-frameworks/kdbusaddons-6.22.0

Description

Framework for registering services and applications per freedeskt

Added to portage

2026-01-10

kdeclarative - 6.22.0
Ebuild name:

kde-frameworks/kdeclarative-6.22.0

Description

Framework providing integration of QML and KDE work spaces

Added to portage

2026-01-10

kded - 6.22.0
Ebuild name:

kde-frameworks/kded-6.22.0

Description

Central daemon of KDE workspaces

Added to portage

2026-01-10

kdesu - 6.22.0
Ebuild name:

kde-frameworks/kdesu-6.22.0

Description

Framework to handle super user actions

Added to portage

2026-01-10

kdnssd - 6.22.0
Ebuild name:

kde-frameworks/kdnssd-6.22.0

Description

Framework for network service discovery using Zeroconf

Added to portage

2026-01-10

kdoctools - 6.22.0
Ebuild name:

kde-frameworks/kdoctools-6.22.0

Description

Tools to generate documentation in various formats from DocBook fil

Added to portage

2026-01-10

kfilemetadata - 6.22.0
Ebuild name:

kde-frameworks/kfilemetadata-6.22.0

Description

Library for extracting file metadata

Added to portage

2026-01-10

kglobalaccel - 6.22.0
Ebuild name:

kde-frameworks/kglobalaccel-6.22.0

Description

Framework to handle global shortcuts

Added to portage

2026-01-10

kguiaddons - 6.22.0
Ebuild name:

kde-frameworks/kguiaddons-6.22.0

Description

Framework providing assorted high-level user interface components

Added to portage

2026-01-10

kholidays - 6.22.0
Ebuild name:

kde-frameworks/kholidays-6.22.0

Description

Library to determine holidays and other special events for a geogra

Added to portage

2026-01-10

ki18n - 6.22.0
Ebuild name:

kde-frameworks/ki18n-6.22.0

Description

Framework based on Gettext for internationalizing user interface text

Added to portage

2026-01-10

kiconthemes - 6.22.0
Ebuild name:

kde-frameworks/kiconthemes-6.22.0

Description

Framework for icon theming and configuration

Added to portage

2026-01-10

kidletime - 6.22.0
Ebuild name:

kde-frameworks/kidletime-6.22.0

Description

Framework for detection and notification of device idle time

Added to portage

2026-01-10

kimageformats - 6.22.0
Ebuild name:

kde-frameworks/kimageformats-6.22.0

Description

Framework providing additional format plugins for Qt's image I/

Added to portage

2026-01-10

pathspec - 1.0.3
Ebuild name:

dev-python/pathspec-1.0.3

Description

Utility library for gitignore style pattern matching of file paths

Added to portage

2026-01-10

pypdf - 6.6.0
Ebuild name:

dev-python/pypdf-6.6.0

Description

Python library to work with PDF files

Added to portage

2026-01-10

pytest-regressions - 2.9.1
Ebuild name:

dev-python/pytest-regressions-2.9.1

Description

Easy to use fixtures to write regression tests

Added to portage

2026-01-10

sbctl - 0.15.4
Ebuild name:

app-crypt/sbctl-0.15.4

Description

Secure Boot key manager

Added to portage

2026-01-10

sbctl - 0.16
Ebuild name:

app-crypt/sbctl-0.16

Description

Secure Boot key manager

Added to portage

2026-01-10

sbctl - 0.18
Ebuild name:

app-crypt/sbctl-0.18

Description

Secure Boot key manager

Added to portage

2026-01-10

sbsigntools - 0.9.5
Ebuild name:

app-crypt/sbsigntools-0.9.5

Description

Utilities for signing and verifying files for UEFI Secure Boot

Added to portage

2026-01-10

scdrand - 0.3.5
Ebuild name:

app-crypt/scdrand-0.3.5

Description

Feed kernel entropy pool from smartcard's TRNG

Added to portage

2026-01-10

sddm-gentoo-config - 0
Ebuild name:

gui-apps/sddm-gentoo-config-0

Description

Gentoo defaults for SDDM (Simple Desktop Display Manager)

Added to portage

2026-01-10

tox - 4.34.1
Ebuild name:

dev-python/tox-4.34.1

Description

virtualenv-based automation of test activities

Added to portage

2026-01-10

translate-toolkit - 3.18.0
Ebuild name:

dev-python/translate-toolkit-3.18.0

Description

Toolkit to convert between many translation formats

Added to portage

2026-01-10

virtualenv - 20.36.1
Ebuild name:

dev-python/virtualenv-20.36.1

Description

Virtual Python Environment builder

Added to portage

2026-01-10

zope-interface - 8.2
Ebuild name:

dev-python/zope-interface-8.2

Description

Interfaces for Python

Added to portage

2026-01-10

2026-01-09
build - 1.4.0
Ebuild name:

dev-python/build-1.4.0

Description

A simple, correct PEP517 package builder

Added to portage

2026-01-09

closure-compiler-bin - 20260106
Ebuild name:

dev-lang/closure-compiler-bin-20260106

Description

JavaScript optimizing compiler

Added to portage

2026-01-09

confuse - 2.1.0
Ebuild name:

dev-python/confuse-2.1.0

Description

Confuse is a configuration library for Python that uses YAML

Added to portage

2026-01-09

django-polymorphic - 4.8.0
Ebuild name:

dev-python/django-polymorphic-4.8.0

Description

Seamless Polymorphic Inheritance for Django Models

Added to portage

2026-01-09

dry-inflector - 1.3.0
Ebuild name:

dev-ruby/dry-inflector-1.3.0

Description

String inflections for dry-rb

Added to portage

2026-01-09

dry-types - 1.9.0
Ebuild name:

dev-ruby/dry-types-1.9.0

Description

Type system for Ruby supporting coercions, constraints and complex types.

Added to portage

2026-01-09

etcd - 3.5.26
Ebuild name:

dev-db/etcd-3.5.26

Description

Highly-available key value store for shared configuration and service discovery

Added to portage

2026-01-09

etcd - 3.6.7
Ebuild name:

dev-db/etcd-3.6.7

Description

Highly-available key value store for shared configuration and service discovery

Added to portage

2026-01-09

exo - 1.90.0
Ebuild name:

app-admin/exo-1.90.0

Description

Command-line tool for everything at Exoscale compute, storage, dns

Added to portage

2026-01-09

hcloud - 2.14.0
Ebuild name:

dev-python/hcloud-2.14.0

Description

Official Hetzner Cloud python library

Added to portage

2026-01-09

icinga2 - 2.15.0-r2
Ebuild name:

net-analyzer/icinga2-2.15.0-r2

Description

Distributed, general purpose, network monitoring engine

Added to portage

2026-01-09

image_processing - 1.14.0-r1
Ebuild name:

dev-ruby/image_processing-1.14.0-r1

Description

High-level image processing helper methods with libvips and Ima

Added to portage

2026-01-09

intellij-idea - 2025.3.1.1
Ebuild name:

dev-util/intellij-idea-2025.3.1.1

Description

A complete toolset for web, mobile and enterprise development

Added to portage

2026-01-09

iterable-io - 1.0.1
Ebuild name:

dev-python/iterable-io-1.0.1

Description

Adapt generators and other iterables to a file-like interface

Added to portage

2026-01-09

jj - 0.37.0
Ebuild name:

dev-vcs/jj-0.37.0

Description

Jujutsu - an experimental version control system

Added to portage

2026-01-09

jupyter-client - 8.8.0
Ebuild name:

dev-python/jupyter-client-8.8.0

Description

Jupyter protocol implementation and client libraries

Added to portage

2026-01-09

krita - 6.0.0_alpha_pre20260108
Ebuild name:

media-gfx/krita-6.0.0_alpha_pre20260108

Description

Free digital painting application. Digital Painting, Creati

Added to portage

2026-01-09

maturin - 1.11.5
Ebuild name:

dev-util/maturin-1.11.5

Description

Build and publish crates with pyo3, rust-cpython and cffi bindings

Added to portage

2026-01-09

multi_xml - 0.8.1
Ebuild name:

dev-ruby/multi_xml-0.8.1

Description

A generic swappable back-end for XML parsing

Added to portage

2026-01-09

nss - 3.120
Ebuild name:

dev-libs/nss-3.120

Description

Mozilla's Network Security Services library that implements PKI support

Added to portage

2026-01-09

oslo-concurrency - 7.3.0
Ebuild name:

dev-python/oslo-concurrency-7.3.0

Description

Oslo Concurrency library

Added to portage

2026-01-09

oslo-config - 10.2.0
Ebuild name:

dev-python/oslo-config-10.2.0

Description

Oslo Configuration API

Added to portage

2026-01-09

pathspec - 1.0.2
Ebuild name:

dev-python/pathspec-1.0.2

Description

Utility library for gitignore style pattern matching of file paths

Added to portage

2026-01-09

pdf-tools - 1.3.0
Ebuild name:

app-emacs/pdf-tools-1.3.0

Description

Emacs Lisp support library for PDF documents

Added to portage

2026-01-09

pdm - 2.26.4
Ebuild name:

dev-python/pdm-2.26.4

Description

Python package and dependency manager supporting the latest PEP standards

Added to portage

2026-01-09

puremd5 - 2.1.4
Ebuild name:

dev-haskell/puremd5-2.1.4

Description

A Haskell-only implementation of the MD5 digest (hash) algorithm

Added to portage

2026-01-09

pyqt6 - 6.10.2
Ebuild name:

dev-python/pyqt6-6.10.2

Description

Python bindings for the Qt framework

Added to portage

2026-01-09

pyside - 6.10.1-r5
Ebuild name:

dev-python/pyside-6.10.1-r5

Description

Python bindings for the Qt framework

Added to portage

2026-01-09

pytest-regressions - 2.9.0
Ebuild name:

dev-python/pytest-regressions-2.9.0

Description

Easy to use fixtures to write regression tests

Added to portage

2026-01-09

python-neutronclient - 11.7.0
Ebuild name:

dev-python/python-neutronclient-11.7.0

Description

A client for the OpenStack Quantum API

Added to portage

2026-01-09

python-openstackclient - 8.3.0
Ebuild name:

dev-python/python-openstackclient-8.3.0

Description

A client for the OpenStack APIs

Added to portage

2026-01-09

qiskit - 2.3.0
Ebuild name:

dev-python/qiskit-2.3.0

Description

An open-source SDK for working with quantum computers

Added to portage

2026-01-09

rotix - 0.83-r3
Ebuild name:

app-crypt/rotix-0.83-r3

Description

Rotix allows you to generate rotational obfuscations

Added to portage

2026-01-09

rpm-sequoia - 1.10.0
Ebuild name:

app-crypt/rpm-sequoia-1.10.0

Description

Implementation of the RPM PGP interface using Sequoia

Added to portage

2026-01-09

rpm-sequoia - 1.9.0
Ebuild name:

app-crypt/rpm-sequoia-1.9.0

Description

Implementation of the RPM PGP interface using Sequoia

Added to portage

2026-01-09

rspamd - 3.14.3
Ebuild name:

mail-filter/rspamd-3.14.3

Description

Rapid spam filtering system

Added to portage

2026-01-09

sabctools - 9.3.0
Ebuild name:

dev-python/sabctools-9.3.0

Description

Module providing raw yEnc encoding/decoding for SABnzbd

Added to portage

2026-01-09

solaar - 1.1.19
Ebuild name:

app-misc/solaar-1.1.19

Description

Linux Device Manager for Logitech Unifying Receivers and Paired Devices

Added to portage

2026-01-09

telegram-desktop-bin - 6.4.1
Ebuild name:

net-im/telegram-desktop-bin-6.4.1

Description

Official desktop client for Telegram (binary package)

Added to portage

2026-01-09

tox - 4.34.0
Ebuild name:

dev-python/tox-4.34.0

Description

virtualenv-based automation of test activities

Added to portage

2026-01-09

transient - 0.12.0
Ebuild name:

app-emacs/transient-0.12.0

Description

Transient commands abstraction for GNU Emacs

Added to portage

2026-01-09

types-gdb - 16.3.0.20260109
Ebuild name:

dev-python/types-gdb-16.3.0.20260109

Description

Typing stubs for gdb

Added to portage

2026-01-09

upterm - 0.21.1
Ebuild name:

app-misc/upterm-0.21.1

Description

Instant Terminal Sharing

Added to portage

2026-01-09

werkzeug - 3.1.5
Ebuild name:

dev-python/werkzeug-3.1.5

Description

Collection of various utilities for WSGI applications

Added to portage

2026-01-09

with-editor - 3.4.8
Ebuild name:

app-emacs/with-editor-3.4.8

Description

Use the Emacsclient as the of child processes

Added to portage

2026-01-09

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