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:

81811

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.
rate this article:
current rating: average rating: 1.4 (42 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-11-01
actioncable - 7.2.3
Ebuild name:

dev-ruby/actioncable-7.2.3

Description

Integrated WebSockets for Rails

Added to portage

2025-11-01

actionmailbox - 7.2.3
Ebuild name:

dev-ruby/actionmailbox-7.2.3

Description

Framework for designing email-service layers

Added to portage

2025-11-01

actionmailer - 7.2.3
Ebuild name:

dev-ruby/actionmailer-7.2.3

Description

Framework for designing email-service layers

Added to portage

2025-11-01

actionpack - 7.2.3
Ebuild name:

dev-ruby/actionpack-7.2.3

Description

Eases web-request routing, handling, and response

Added to portage

2025-11-01

actiontext - 7.2.3
Ebuild name:

dev-ruby/actiontext-7.2.3

Description

Edit and display rich text in Rails applications

Added to portage

2025-11-01

actionview - 7.2.3
Ebuild name:

dev-ruby/actionview-7.2.3

Description

Simple, battle-tested conventions and helpers for building web pages

Added to portage

2025-11-01

activejob - 7.2.3
Ebuild name:

dev-ruby/activejob-7.2.3

Description

Job framework with pluggable queues

Added to portage

2025-11-01

activemodel - 7.2.3
Ebuild name:

dev-ruby/activemodel-7.2.3

Description

Toolkit for building modeling frameworks like Active Record and Active R

Added to portage

2025-11-01

activerecord - 7.2.3
Ebuild name:

dev-ruby/activerecord-7.2.3

Description

Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM

Added to portage

2025-11-01

activestorage - 7.2.3
Ebuild name:

dev-ruby/activestorage-7.2.3

Description

Attach cloud and local files in Rails applications

Added to portage

2025-11-01

activesupport - 7.2.3
Ebuild name:

dev-ruby/activesupport-7.2.3

Description

Utility Classes and Extension to the Standard Library

Added to portage

2025-11-01

apscheduler - 3.11.1
Ebuild name:

dev-python/apscheduler-3.11.1

Description

In-process task scheduler with Cron-like capabilities

Added to portage

2025-11-01

awscli - 1.42.64
Ebuild name:

app-admin/awscli-1.42.64

Description

Universal Command Line Environment for AWS

Added to portage

2025-11-01

boto3 - 1.40.64
Ebuild name:

dev-python/boto3-1.40.64

Description

The AWS SDK for Python

Added to portage

2025-11-01

botocore - 1.40.64
Ebuild name:

dev-python/botocore-1.40.64

Description

Low-level, data-driven core of boto 3

Added to portage

2025-11-01

claude-code - 2.0.30
Ebuild name:

dev-util/claude-code-2.0.30

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2025-11-01

gcr - 3.41.2-r2
Ebuild name:

app-crypt/gcr-3.41.2-r2

Description

Libraries for cryptographic UIs and accessing PKCS11 modules

Added to portage

2025-11-01

gcr - 4.4.0.1-r1
Ebuild name:

app-crypt/gcr-4.4.0.1-r1

Description

Libraries for cryptographic UIs and accessing PKCS11 modules

Added to portage

2025-11-01

getuto - 1.15-r1
Ebuild name:

app-portage/getuto-1.15-r1

Description

Standalone Gentoo gpg trust anchor generation tool for binpkgs

Added to portage

2025-11-01

git - 2.51.2-r1
Ebuild name:

dev-vcs/git-2.51.2-r1

Description

Stupid content tracker distributed VCS designed for speed and efficiency

Added to portage

2025-11-01

glep63-check - 11-r1
Ebuild name:

app-crypt/glep63-check-11-r1

Description

GLEP 63 compliance checker for OpenPGP keys

Added to portage

2025-11-01

glycin-loaders - 2.0.4
Ebuild name:

media-libs/glycin-loaders-2.0.4

Description

Loaders for glycin clients (glycin crate or libglycin)

Added to portage

2025-11-01

gpgme - 2.0.1-r1
Ebuild name:

app-crypt/gpgme-2.0.1-r1

Description

GnuPG Made Easy is a library for making GnuPG easier to use

Added to portage

2025-11-01

helm - 3.19.0
Ebuild name:

app-admin/helm-3.19.0

Description

Kubernetes Package Manager

Added to portage

2025-11-01

hishel - 1.1.0
Ebuild name:

dev-python/hishel-1.1.0

Description

An elegant HTTP Cache implementation for HTTPX and HTTP Core

Added to portage

2025-11-01

hugin - 2025.0_rc1
Ebuild name:

media-gfx/hugin-2025.0_rc1

Description

GUI for the creation & processing of panoramic images

Added to portage

2025-11-01

hypothesis - 6.142.5
Ebuild name:

dev-python/hypothesis-6.142.5

Description

A library for property based testing

Added to portage

2025-11-01

libreoffice - 25.2.7.2
Ebuild name:

app-office/libreoffice-25.2.7.2

Description

A full office productivity suite

Added to portage

2025-11-01

libreoffice-l10n - 25.2.7.2
Ebuild name:

app-office/libreoffice-l10n-25.2.7.2

Description

Translations for the Libreoffice suite

Added to portage

2025-11-01

mkdocs-git-revision-date-localized-plugin - 1.5.0
Ebuild name:

dev-python/mkdocs-git-revision-date-localized-plugin-1.5.0

Description

Display the localized date of the last g

Added to portage

2025-11-01

narwhals - 2.10.1
Ebuild name:

dev-python/narwhals-2.10.1

Description

Extremely lightweight compatibility layer between dataframe libraries

Added to portage

2025-11-01

openscenegraph - 3.6.5-r118
Ebuild name:

dev-games/openscenegraph-3.6.5-r118

Description

Open source high performance 3D graphics toolkit

Added to portage

2025-11-01

openscenegraph-openmw - 3.6_p20251012-r1
Ebuild name:

dev-games/openscenegraph-openmw-3.6_p20251012-r1

Description

OpenMW-specific fork of OpenSceneGraph

Added to portage

2025-11-01

pushgateway - 1.11.2
Ebuild name:

app-metrics/pushgateway-1.11.2

Description

Prometheus push acceptor for ephemeral and batch jobs

Added to portage

2025-11-01

python - 3.9.25
Ebuild name:

dev-lang/python-3.9.25

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2025-11-01

python-gnupg - 0.5.5-r1
Ebuild name:

dev-python/python-gnupg-0.5.5-r1

Description

A Python wrapper for GnuPG

Added to portage

2025-11-01

rails - 7.2.3
Ebuild name:

dev-ruby/rails-7.2.3

Description

ruby on rails is a web-application and persistence framework

Added to portage

2025-11-01

railties - 7.2.3
Ebuild name:

dev-ruby/railties-7.2.3

Description

Tools for creating, working with, and running Rails applications

Added to portage

2025-11-01

sequoia-chameleon-gnupg - 0.13.1-r3
Ebuild name:

app-crypt/sequoia-chameleon-gnupg-0.13.1-r3

Description

Sequoia's reimplementation of the GnuPG interface

Added to portage

2025-11-01

stripe - 13.1.1
Ebuild name:

dev-python/stripe-13.1.1

Description

Stripe Python bindings

Added to portage

2025-11-01

supertuxkart - 1.5
Ebuild name:

games-action/supertuxkart-1.5

Description

A kart racing game starring Tux, the linux penguin (TuxKart fork)

Added to portage

2025-11-01

tblib - 3.2.1
Ebuild name:

dev-python/tblib-3.2.1

Description

Traceback fiddling library for Python

Added to portage

2025-11-01

trio - 0.32.0
Ebuild name:

dev-python/trio-0.32.0

Description

Python library for async concurrency and I/O

Added to portage

2025-11-01

trousers - 0.3.15-r1
Ebuild name:

app-crypt/trousers-0.3.15-r1

Description

An open-source TCG Software Stack (TSS) v1.1 implementation

Added to portage

2025-11-01

ubuntu-keyring - 2020.02.11.2
Ebuild name:

app-crypt/ubuntu-keyring-2020.02.11.2

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2025-11-01

ubuntu-keyring - 2020.06.17.1
Ebuild name:

app-crypt/ubuntu-keyring-2020.06.17.1

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2025-11-01

ubuntu-keyring - 2021.03.26
Ebuild name:

app-crypt/ubuntu-keyring-2021.03.26

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2025-11-01

vivaldi-snapshot - 7.7.3850.3
Ebuild name:

www-client/vivaldi-snapshot-7.7.3850.3

Description

A browser for our friends

Added to portage

2025-11-01

webcolors - 25.10.0
Ebuild name:

dev-python/webcolors-25.10.0

Description

Color names and value formats defined by the HTML and CSS specificatio

Added to portage

2025-11-01

wine-vanilla - 10.18
Ebuild name:

app-emulation/wine-vanilla-10.18

Description

Free implementation of Windows(tm) on Unix, without external patch

Added to portage

2025-11-01

2025-10-31
android-studio - 2025.2.1.7
Ebuild name:

dev-util/android-studio-2025.2.1.7

Description

Android development environment based on IntelliJ IDEA

Added to portage

2025-10-31

bareos - 24.0.7
Ebuild name:

app-backup/bareos-24.0.7

Description

Featureful client/server network backup suite

Added to portage

2025-10-31

barman - 3.16.1
Ebuild name:

dev-db/barman-3.16.1

Description

Administration tool for disaster recovery of PostgreSQL servers

Added to portage

2025-10-31

bitcoin-core - 29.2
Ebuild name:

net-p2p/bitcoin-core-29.2

Description

Reference implementation of the Bitcoin cryptocurrency

Added to portage

2025-10-31

bitcoin-core - 30.0-r1
Ebuild name:

net-p2p/bitcoin-core-30.0-r1

Description

Reference implementation of the Bitcoin cryptocurrency

Added to portage

2025-10-31

breezy - 3.3.17
Ebuild name:

dev-vcs/breezy-3.3.17

Description

Distributed Version Control System with a Friendly UI

Added to portage

2025-10-31

brlaser - 6.2.8
Ebuild name:

net-print/brlaser-6.2.8

Description

Brother laser printer driver

Added to portage

2025-10-31

cantera - 3.1.0-r1
Ebuild name:

sci-libs/cantera-3.1.0-r1

Description

Object-oriented tool suite for chemical kinetics, thermodynamics, and tra

Added to portage

2025-10-31

chez - 10.3.0
Ebuild name:

dev-scheme/chez-10.3.0

Description

A programming language based on R6RS

Added to portage

2025-10-31

chrome-binary-plugins - 142.0.7444.59
Ebuild name:

www-plugins/chrome-binary-plugins-142.0.7444.59

Description

Binary plugins from Google Chrome for use in Chromi

Added to portage

2025-10-31

chrome-binary-plugins - 143.0.7499.4_beta
Ebuild name:

www-plugins/chrome-binary-plugins-143.0.7499.4_beta

Description

Binary plugins from Google Chrome for use in Ch

Added to portage

2025-10-31

chrome-binary-plugins - 144.0.7500.2_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-144.0.7500.2_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2025-10-31

chromedriver-bin - 142.0.7444.59
Ebuild name:

www-apps/chromedriver-bin-142.0.7444.59

Description

WebDriver for Chrome

Added to portage

2025-10-31

cnijfilter2 - 6.81
Ebuild name:

net-print/cnijfilter2-6.81

Description

IJ Printer Driver

Added to portage

2025-10-31

digest - 3.2.1
Ebuild name:

dev-ruby/digest-3.2.1

Description

Provides a framework for message digest libraries

Added to portage

2025-10-31

django-debug-toolbar - 6.1.0
Ebuild name:

dev-python/django-debug-toolbar-6.1.0

Description

A configurable set of panels that display various debug infor

Added to portage

2025-10-31

doggo - 1.1.1
Ebuild name:

net-dns/doggo-1.1.1

Description

Command-line DNS Client for Humans

Added to portage

2025-10-31

duplicati - 2.2.0.0.2025.10.23
Ebuild name:

app-backup/duplicati-2.2.0.0.2025.10.23

Description

Backup client that securely stores encrypted, incremental,

Added to portage

2025-10-31

fsautocomplete - 0.80.1
Ebuild name:

dev-dotnet/fsautocomplete-0.80.1

Description

F language server using the Language Server Protocol

Added to portage

2025-10-31

fsspec - 2025.10.0
Ebuild name:

dev-python/fsspec-2025.10.0

Description

A specification that python filesystems should adhere to

Added to portage

2025-10-31

geogebra-bin - 6.0.804.0-r1
Ebuild name:

sci-mathematics/geogebra-bin-6.0.804.0-r1

Description

Mathematics software for geometry

Added to portage

2025-10-31

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

dev-python/google-api-python-client-2.186.0

Description

Google API Client for Python

Added to portage

2025-10-31

google-auth - 2.42.1
Ebuild name:

dev-python/google-auth-2.42.1

Description

Google Authentication Library

Added to portage

2025-10-31

google-auth-httplib2 - 0.2.1
Ebuild name:

dev-python/google-auth-httplib2-0.2.1

Description

httplib2 Transport for Google Auth

Added to portage

2025-10-31

google-auth-oauthlib - 1.2.3
Ebuild name:

dev-python/google-auth-oauthlib-1.2.3

Description

Google Authentication Library

Added to portage

2025-10-31

google-chrome - 142.0.7444.59
Ebuild name:

www-client/google-chrome-142.0.7444.59

Description

The web browser from Google

Added to portage

2025-10-31

google-chrome-beta - 143.0.7499.4
Ebuild name:

www-client/google-chrome-beta-143.0.7499.4

Description

The web browser from Google

Added to portage

2025-10-31

google-chrome-unstable - 144.0.7500.2
Ebuild name:

www-client/google-chrome-unstable-144.0.7500.2

Description

The web browser from Google

Added to portage

2025-10-31

grafana-bin - 11.5.10
Ebuild name:

www-apps/grafana-bin-11.5.10

Description

Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & Ope

Added to portage

2025-10-31

grafana-bin - 12.0.6
Ebuild name:

www-apps/grafana-bin-12.0.6

Description

Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & Open

Added to portage

2025-10-31

gtk-layer-shell - 0.10.0
Ebuild name:

gui-libs/gtk-layer-shell-0.10.0

Description

Library to create desktop components for Wayland using the Layer Sh

Added to portage

2025-10-31

hvac - 2.4.0
Ebuild name:

dev-python/hvac-2.4.0

Description

HashiCorp Vault API client

Added to portage

2025-10-31

joplin-desktop - 3.5.6
Ebuild name:

app-office/joplin-desktop-3.5.6

Description

Secure note taking and to-do app with synchronization capabilities

Added to portage

2025-10-31

julia-bin - 1.12.1
Ebuild name:

dev-lang/julia-bin-1.12.1

Description

High-performance programming language for technical computing

Added to portage

2025-10-31

limine - 10.2.1
Ebuild name:

sys-boot/limine-10.2.1

Description

Limine is a modern, advanced, and portable BIOS/UEFI multiprotocol bootloade

Added to portage

2025-10-31

loksh - 7.8
Ebuild name:

app-shells/loksh-7.8

Description

Linux port of OpenBSD's ksh

Added to portage

2025-10-31

microsoft-edge - 141.0.3537.99
Ebuild name:

www-client/microsoft-edge-141.0.3537.99

Description

The web browser from Microsoft

Added to portage

2025-10-31

microsoft-edge-beta - 142.0.3595.33
Ebuild name:

www-client/microsoft-edge-beta-142.0.3595.33

Description

The web browser from Microsoft

Added to portage

2025-10-31

microsoft-edge-beta - 142.0.3595.41
Ebuild name:

www-client/microsoft-edge-beta-142.0.3595.41

Description

The web browser from Microsoft

Added to portage

2025-10-31

microsoft-edge-beta - 142.0.3595.51
Ebuild name:

www-client/microsoft-edge-beta-142.0.3595.51

Description

The web browser from Microsoft

Added to portage

2025-10-31

microsoft-edge-dev - 143.0.3614.1-r1
Ebuild name:

www-client/microsoft-edge-dev-143.0.3614.1-r1

Description

The web browser from Microsoft

Added to portage

2025-10-31

microsoft-edge-dev - 143.0.3624.0
Ebuild name:

www-client/microsoft-edge-dev-143.0.3624.0

Description

The web browser from Microsoft

Added to portage

2025-10-31

microsoft-edge-dev - 143.0.3638.1
Ebuild name:

www-client/microsoft-edge-dev-143.0.3638.1

Description

The web browser from Microsoft

Added to portage

2025-10-31

moarvm - 2025.10
Ebuild name:

dev-lang/moarvm-2025.10

Description

A 6model-based VM for NQP and Raku

Added to portage

2025-10-31

net-http - 0.7.0
Ebuild name:

dev-ruby/net-http-0.7.0

Description

HTTP client api for Ruby

Added to portage

2025-10-31

ngx-naxsi - 1.7-r1
Ebuild name:

www-nginx/ngx-naxsi-1.7-r1

Description

NAXSI is an open-source, high performance, low rules maintenance WAF for

Added to portage

2025-10-31

nh3 - 0.3.2
Ebuild name:

dev-python/nh3-0.3.2

Description

Ammonia HTML sanitizer Python binding

Added to portage

2025-10-31

nio4r - 2.7.5
Ebuild name:

dev-ruby/nio4r-2.7.5

Description

A high performance selector API for monitoring IO objects

Added to portage

2025-10-31

nmap - 7.98
Ebuild name:

net-analyzer/nmap-7.98

Description

Network exploration tool and security / port scanner

Added to portage

2025-10-31

nqp - 2025.10
Ebuild name:

dev-lang/nqp-2025.10

Description

Not Quite Perl, a Raku bootstrapping compiler

Added to portage

2025-10-31

opera - 123.0.5669.23
Ebuild name:

www-client/opera-123.0.5669.23

Description

A fast and secure web browser

Added to portage

2025-10-31

opera-beta - 123.0.5669.18
Ebuild name:

www-client/opera-beta-123.0.5669.18

Description

A fast and secure web browser

Added to portage

2025-10-31

opera-developer - 124.0.5691.0
Ebuild name:

www-client/opera-developer-124.0.5691.0

Description

A fast and secure web browser

Added to portage

2025-10-31

opera-developer - 124.0.5701.1
Ebuild name:

www-client/opera-developer-124.0.5701.1

Description

A fast and secure web browser

Added to portage

2025-10-31

os-service-types - 1.8.1
Ebuild name:

dev-python/os-service-types-1.8.1

Description

A library to handle official service types for OpenStack and it's

Added to portage

2025-10-31

pam_mount - 2.22
Ebuild name:

sys-auth/pam_mount-2.22

Description

A PAM module that can mount volumes for a user session

Added to portage

2025-10-31

pbr - 7.0.2
Ebuild name:

dev-python/pbr-7.0.2

Description

Inject some useful and sensible default behaviors into setuptools

Added to portage

2025-10-31

pdns - 5.0.1
Ebuild name:

net-dns/pdns-5.0.1

Description

The PowerDNS Daemon

Added to portage

2025-10-31

plumbum - 1.10.0
Ebuild name:

dev-python/plumbum-1.10.0

Description

A library for shell script-like programs in python

Added to portage

2025-10-31

postfix - 3.11_pre20251030
Ebuild name:

mail-mta/postfix-3.11_pre20251030

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2025-10-31

proofgeneral - 4.5
Ebuild name:

app-emacs/proofgeneral-4.5

Description

A generic interface for proof assistants

Added to portage

2025-10-31

protbuf - 1.7-r1
Ebuild name:

app-emacs/protbuf-1.7-r1

Description

Protect Emacs buffers from accidental killing

Added to portage

2025-10-31

psgml - 1.4.1
Ebuild name:

app-emacs/psgml-1.4.1

Description

A GNU Emacs Major Mode for editing SGML and XML coded documents

Added to portage

2025-10-31

puppet-mode - 0.4
Ebuild name:

app-emacs/puppet-mode-0.4

Description

Emacs major mode for editing Puppet manifests

Added to portage

2025-10-31

pycharm-community - 2025.2.3
Ebuild name:

dev-util/pycharm-community-2025.2.3

Description

Intelligent Python IDE with unique code assistance and analysis

Added to portage

2025-10-31

pycharm-professional - 2025.2.3
Ebuild name:

dev-util/pycharm-professional-2025.2.3

Description

Intelligent Python IDE with unique code assistance and analy

Added to portage

2025-10-31

qiskit - 2.2.3
Ebuild name:

dev-python/qiskit-2.2.3

Description

An open-source SDK for working with quantum computers

Added to portage

2025-10-31

rakudo - 2025.10
Ebuild name:

dev-lang/rakudo-2025.10

Description

A compiler for the Raku programming language

Added to portage

2025-10-31

rapidfuzz - 3.14.2
Ebuild name:

dev-python/rapidfuzz-3.14.2

Description

Rapid fuzzy string matching in Python using various string metrics

Added to portage

2025-10-31

rdflib - 7.4.0
Ebuild name:

dev-python/rdflib-7.4.0

Description

RDF library containing a triple store and parser/serializer

Added to portage

2025-10-31

ruff - 0.14.3
Ebuild name:

dev-util/ruff-0.14.3

Description

An extremely fast Python linter, written in Rust

Added to portage

2025-10-31

rust - 1.91.0
Ebuild name:

dev-lang/rust-1.91.0

Description

Systems programming language originally developed by Mozilla

Added to portage

2025-10-31

rust-bin - 1.91.0
Ebuild name:

dev-lang/rust-bin-1.91.0

Description

Added to portage

2025-10-31

rust-common - 1.91.0
Ebuild name:

dev-lang/rust-common-1.91.0

Description

Common files shared between multiple slots of Rust

Added to portage

2025-10-31

rust-std - 1.91.0
Ebuild name:

sys-devel/rust-std-1.91.0

Description

Rust standard library, standalone (for crossdev)

Added to portage

2025-10-31

sequoia-sq - 1.3.1-r1
Ebuild name:

app-crypt/sequoia-sq-1.3.1-r1

Description

CLI of the Sequoia OpenPGP implementation

Added to portage

2025-10-31

sequoia-sqv - 1.3.0-r1
Ebuild name:

app-crypt/sequoia-sqv-1.3.0-r1

Description

A simple OpenPGP signature verification program

Added to portage

2025-10-31

signal-desktop-bin - 7.77.1
Ebuild name:

net-im/signal-desktop-bin-7.77.1

Description

Allows you to send and receive messages of Signal Messenger on you

Added to portage

2025-10-31

timescaledb - 2.23.0
Ebuild name:

dev-db/timescaledb-2.23.0

Description

Open-source time-series SQL database

Added to portage

2025-10-31

uv - 0.9.7
Ebuild name:

dev-python/uv-0.9.7

Description

A Python package installer and resolver, written in Rust

Added to portage

2025-10-31

uv-build - 0.9.7
Ebuild name:

dev-python/uv-build-0.9.7

Description

PEP517 uv build backend

Added to portage

2025-10-31

xsnow - 3.8.5-r1
Ebuild name:

x11-misc/xsnow-3.8.5-r1

Description

let it snow on your desktop and windows

Added to portage

2025-10-31

zookeeper-bin - 3.8.5
Ebuild name:

sys-cluster/zookeeper-bin-3.8.5

Description

A high-performance coordination service for distributed application

Added to portage

2025-10-31

zookeeper-bin - 3.9.4
Ebuild name:

sys-cluster/zookeeper-bin-3.9.4

Description

A high-performance coordination service for distributed application

Added to portage

2025-10-31

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