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:

74793

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-05-11
ada_language_server - 25.0.20241014-r3
Ebuild name:

dev-ada/ada_language_server-25.0.20241014-r3

Description

a Language Server Protocol for Ada/SPARK

Added to portage

2025-05-11

ada_libfswatch - 2024.07.09-r1
Ebuild name:

dev-ada/ada_libfswatch-2024.07.09-r1

Description

Ada binding to the libfswatch library

Added to portage

2025-05-11

astroid - 3.3.10
Ebuild name:

dev-python/astroid-3.3.10

Description

Abstract Syntax Tree for logilab packages

Added to portage

2025-05-11

cairosvg - 2.7.1-r1
Ebuild name:

media-gfx/cairosvg-2.7.1-r1

Description

CLI and library to export SVG to PDF, PostScript, and PNG

Added to portage

2025-05-11

click - 8.2.0
Ebuild name:

dev-python/click-8.2.0

Description

A Python package for creating beautiful command line interfaces

Added to portage

2025-05-11

diffoscope - 295
Ebuild name:

dev-util/diffoscope-295

Description

Will try to get to the bottom of what makes files or directories different

Added to portage

2025-05-11

exceptiongroup - 1.3.0
Ebuild name:

dev-python/exceptiongroup-1.3.0

Description

Backport of PEP 654 (exception groups)

Added to portage

2025-05-11

fonttools - 4.58.0
Ebuild name:

dev-python/fonttools-4.58.0

Description

Library for manipulating TrueType, OpenType, AFM and Type1 fonts

Added to portage

2025-05-11

frei0r-plugins - 2.3.3
Ebuild name:

media-plugins/frei0r-plugins-2.3.3

Description

A minimalistic plugin API for video effects

Added to portage

2025-05-11

gcc - 15.1.1_p20250510
Ebuild name:

sys-devel/gcc-15.1.1_p20250510

Description

The GNU Compiler Collection

Added to portage

2025-05-11

gnatdoc - 25.0.0-r4
Ebuild name:

dev-ada/gnatdoc-25.0.0-r4

Description

GNAT Documentation Generation Tool

Added to portage

2025-05-11

gnatformat - 25.0.0-r1
Ebuild name:

dev-ada/gnatformat-25.0.0-r1

Description

Opinionated code formatter for the Ada language

Added to portage

2025-05-11

httpie - 3.2.4
Ebuild name:

net-misc/httpie-3.2.4

Description

Modern command line HTTP client

Added to portage

2025-05-11

jaraco-itertools - 6.4.3
Ebuild name:

dev-python/jaraco-itertools-6.4.3

Description

Tools for working with iterables. Complements itertools and more_

Added to portage

2025-05-11

jc - 1.25.5
Ebuild name:

dev-python/jc-1.25.5

Description

Converts the output of popular command-line tools and file-types to JSON

Added to portage

2025-05-11

lal-refactor - 25.0.0-r2
Ebuild name:

dev-ada/lal-refactor-25.0.0-r2

Description

Refactoring tools for the Ada programming language

Added to portage

2025-05-11

libinput-gestures - 2.80
Ebuild name:

x11-misc/libinput-gestures-2.80

Description

Actions gestures on your touchpad using libinput

Added to portage

2025-05-11

libreoffice-bin - 24.8.4-r5
Ebuild name:

app-office/libreoffice-bin-24.8.4-r5

Description

A full office productivity suite. Binary package

Added to portage

2025-05-11

libreoffice-bin - 25.2.0-r5
Ebuild name:

app-office/libreoffice-bin-25.2.0-r5

Description

A full office productivity suite. Binary package

Added to portage

2025-05-11

libsearpc - 3.3.0-r3
Ebuild name:

net-libs/libsearpc-3.3.0-r3

Description

Simple C language RPC framework

Added to portage

2025-05-11

libxml2 - 2.13.8
Ebuild name:

dev-libs/libxml2-2.13.8

Description

XML C parser and toolkit

Added to portage

2025-05-11

libyuv - 1909
Ebuild name:

media-libs/libyuv-1909

Description

Open source project that includes YUV scaling and conversion functionality.

Added to portage

2025-05-11

m4 - 1.4.20
Ebuild name:

sys-devel/m4-1.4.20

Description

GNU macro processor

Added to portage

2025-05-11

markdown - 25.0.0-r1
Ebuild name:

dev-ada/markdown-25.0.0-r1

Description

Provides a markdown parser written in Ada

Added to portage

2025-05-11

mkdocs-material - 9.6.13
Ebuild name:

dev-python/mkdocs-material-9.6.13

Description

A Material Design theme for MkDocs

Added to portage

2025-05-11

nomacs - 3.21.1
Ebuild name:

media-gfx/nomacs-3.21.1

Description

Qt-based image viewer

Added to portage

2025-05-11

nprolog - 4.20
Ebuild name:

dev-lang/nprolog-4.20

Description

Interpreter and compiler to be compatible with Arity/Prolog32

Added to portage

2025-05-11

projectile - 2.8.0-r1
Ebuild name:

app-emacs/projectile-2.8.0-r1

Description

A project interaction library for Emacs

Added to portage

2025-05-11

projectile - 2.9.1
Ebuild name:

app-emacs/projectile-2.9.1

Description

A project interaction library for Emacs

Added to portage

2025-05-11

pwsh - 7.5.1
Ebuild name:

app-shells/pwsh-7.5.1

Description

Cross-platform automation and configuration tool

Added to portage

2025-05-11

pwsh-bin - 7.5.1
Ebuild name:

app-shells/pwsh-bin-7.5.1

Description

Cross-platform automation and configuration tool (binary package)

Added to portage

2025-05-11

rocksdb - 10.2.1
Ebuild name:

dev-libs/rocksdb-10.2.1

Description

Embeddable, persistent key-value store for fast storage

Added to portage

2025-05-11

runit - 2.2.0-r2
Ebuild name:

sys-process/runit-2.2.0-r2

Description

A UNIX init scheme with service supervision

Added to portage

2025-05-11

sasquatch - 4.5.1.4
Ebuild name:

app-arch/sasquatch-4.5.1.4

Description

An extended version of sasquashfs-tools

Added to portage

2025-05-11

seafile - 9.0.13
Ebuild name:

net-misc/seafile-9.0.13

Description

File syncing and sharing software with file encryption and group sharing

Added to portage

2025-05-11

seafile-client - 9.0.13
Ebuild name:

net-misc/seafile-client-9.0.13

Description

Seafile desktop client

Added to portage

2025-05-11

sendEmail - 1.56-r4
Ebuild name:

net-mail/sendEmail-1.56-r4

Description

Command line based, SMTP email agent

Added to portage

2025-05-11

sigscheme - 0.9.2
Ebuild name:

dev-scheme/sigscheme-0.9.2

Description

SigScheme is an R5RS Scheme interpreter for embedded use

Added to portage

2025-05-11

spawn - 25.0.0-r2
Ebuild name:

dev-ada/spawn-25.0.0-r2

Description

Simple API to spawn processes

Added to portage

2025-05-11

sqlite - 3.49.2
Ebuild name:

dev-db/sqlite-3.49.2

Description

SQL database engine

Added to portage

2025-05-11

subliminal - 2.3.2
Ebuild name:

media-video/subliminal-2.3.2

Description

Python library to search and download subtitles

Added to portage

2025-05-11

tifffile - 2025.5.10
Ebuild name:

dev-python/tifffile-2025.5.10

Description

Read and write TIFF files

Added to portage

2025-05-11

vsftpd - 3.0.5-r2
Ebuild name:

net-ftp/vsftpd-3.0.5-r2

Description

Very Secure FTP Daemon

Added to portage

2025-05-11

yadm - 3.5.0
Ebuild name:

app-admin/yadm-3.5.0

Description

Git based tool for managing dotfiles

Added to portage

2025-05-11

2025-05-10
aunit - 25.0.0-r3
Ebuild name:

dev-ada/aunit-25.0.0-r3

Description

Ada unit testing framework

Added to portage

2025-05-10

autoconf-archive - 2024.10.16-r2
Ebuild name:

dev-build/autoconf-archive-2024.10.16-r2

Description

GNU Autoconf Macro Archive

Added to portage

2025-05-10

awscli - 1.40.12
Ebuild name:

app-admin/awscli-1.40.12

Description

Universal Command Line Environment for AWS

Added to portage

2025-05-10

boto3 - 1.38.13
Ebuild name:

dev-python/boto3-1.38.13

Description

The AWS SDK for Python

Added to portage

2025-05-10

botocore - 1.38.13
Ebuild name:

dev-python/botocore-1.38.13

Description

Low-level, data-driven core of boto 3

Added to portage

2025-05-10

cargo-nextest - 0.9.95
Ebuild name:

dev-util/cargo-nextest-0.9.95

Description

Next-generation test runner for Rust

Added to portage

2025-05-10

cargo-tarpaulin - 0.32.5
Ebuild name:

dev-util/cargo-tarpaulin-0.32.5

Description

Cargo-Tarpaulin is a tool to determine code coverage achieved via t

Added to portage

2025-05-10

clang - 21.0.0_pre20250510
Ebuild name:

dev-python/clang-21.0.0_pre20250510

Description

Python bindings for llvm-core/clang

Added to portage

2025-05-10

clang - 21.0.0_pre20250510
Ebuild name:

llvm-core/clang-21.0.0_pre20250510

Description

C language family frontend for LLVM

Added to portage

2025-05-10

clang-common - 21.0.0_pre20250510
Ebuild name:

llvm-core/clang-common-21.0.0_pre20250510

Description

Common files shared between multiple slots of clang

Added to portage

2025-05-10

clang-runtime - 21.0.0_pre20250510
Ebuild name:

llvm-core/clang-runtime-21.0.0_pre20250510

Description

Meta-ebuild for clang runtime libraries

Added to portage

2025-05-10

cmake - 3.31.7-r1
Ebuild name:

dev-build/cmake-3.31.7-r1

Description

Cross platform Make

Added to portage

2025-05-10

cmake - 4.0.2-r1
Ebuild name:

dev-build/cmake-4.0.2-r1

Description

Cross platform Make

Added to portage

2025-05-10

compiler-rt - 21.0.0_pre20250510
Ebuild name:

llvm-runtimes/compiler-rt-21.0.0_pre20250510

Description

Compiler runtime library for clang (built-in part)

Added to portage

2025-05-10

compiler-rt-sanitizers - 21.0.0_pre20250510
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-21.0.0_pre20250510

Description

Compiler runtime libraries for clang (sanit

Added to portage

2025-05-10

deepdiff - 8.5.0
Ebuild name:

dev-python/deepdiff-8.5.0

Description

A library for comparing dictionaries, iterables, strings and other object

Added to portage

2025-05-10

dist-kernel - 5.15.182
Ebuild name:

virtual/dist-kernel-5.15.182

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-05-10

dist-kernel - 6.1.138
Ebuild name:

virtual/dist-kernel-6.1.138

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-05-10

dist-kernel - 6.12.28
Ebuild name:

virtual/dist-kernel-6.12.28

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-05-10

dist-kernel - 6.14.6
Ebuild name:

virtual/dist-kernel-6.14.6

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-05-10

dist-kernel - 6.6.90
Ebuild name:

virtual/dist-kernel-6.6.90

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-05-10

ensurepip-setuptools - 80.4.0
Ebuild name:

dev-python/ensurepip-setuptools-80.4.0

Description

Shared setuptools wheel for ensurepip Python module

Added to portage

2025-05-10

flang - 21.0.0_pre20250510
Ebuild name:

llvm-core/flang-21.0.0_pre20250510

Description

LLVM's Fortran frontend

Added to portage

2025-05-10

flang-rt - 21.0.0_pre20250510
Ebuild name:

llvm-runtimes/flang-rt-21.0.0_pre20250510

Description

LLVM's Fortran runtime

Added to portage

2025-05-10

gcc - 14.2.1_p20250509
Ebuild name:

sys-devel/gcc-14.2.1_p20250509

Description

The GNU Compiler Collection

Added to portage

2025-05-10

gentoo-kernel - 5.15.182
Ebuild name:

sys-kernel/gentoo-kernel-5.15.182

Description

Linux kernel built with Gentoo patches

Added to portage

2025-05-10

gentoo-kernel - 6.1.138
Ebuild name:

sys-kernel/gentoo-kernel-6.1.138

Description

Linux kernel built with Gentoo patches

Added to portage

2025-05-10

gentoo-kernel - 6.12.28
Ebuild name:

sys-kernel/gentoo-kernel-6.12.28

Description

Linux kernel built with Gentoo patches

Added to portage

2025-05-10

gentoo-kernel - 6.14.6
Ebuild name:

sys-kernel/gentoo-kernel-6.14.6

Description

Linux kernel built with Gentoo patches

Added to portage

2025-05-10

gentoo-kernel - 6.6.90
Ebuild name:

sys-kernel/gentoo-kernel-6.6.90

Description

Linux kernel built with Gentoo patches

Added to portage

2025-05-10

gentoo-kernel-bin - 5.15.182
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.182

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-05-10

gentoo-kernel-bin - 6.1.138
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.138

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-05-10

gentoo-kernel-bin - 6.12.28
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.28

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-05-10

gentoo-kernel-bin - 6.14.6
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.14.6

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-05-10

gentoo-kernel-bin - 6.6.90
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.90

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-05-10

greenlet - 3.2.2
Ebuild name:

dev-python/greenlet-3.2.2

Description

Lightweight in-process concurrent programming

Added to portage

2025-05-10

hiredis - 3.1.1
Ebuild name:

dev-python/hiredis-3.1.1

Description

Python extension that wraps hiredis

Added to portage

2025-05-10

hugo - 0.147.2
Ebuild name:

www-apps/hugo-0.147.2

Description

Fast static HTML and CSS website generator

Added to portage

2025-05-10

idea-community - 2025.1.1.1
Ebuild name:

dev-util/idea-community-2025.1.1.1

Description

A complete toolset for web, mobile and enterprise development

Added to portage

2025-05-10

libadalang-tools - 25.0.0-r2
Ebuild name:

dev-ada/libadalang-tools-25.0.0-r2

Description

Libadalang-based tools gnatpp, gnatmetric and gnatstub

Added to portage

2025-05-10

libclc - 21.0.0_pre20250510
Ebuild name:

llvm-core/libclc-21.0.0_pre20250510

Description

OpenCL C library

Added to portage

2025-05-10

libcxx - 21.0.0_pre20250510
Ebuild name:

llvm-runtimes/libcxx-21.0.0_pre20250510

Description

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

Added to portage

2025-05-10

libcxxabi - 21.0.0_pre20250510
Ebuild name:

llvm-runtimes/libcxxabi-21.0.0_pre20250510

Description

Low level support for a standard C++ library

Added to portage

2025-05-10

libgcc - 21.0.0_pre20250510
Ebuild name:

llvm-runtimes/libgcc-21.0.0_pre20250510

Description

Compiler runtime library for clang, compatible with libgcc_

Added to portage

2025-05-10

libgcrypt - 1.11.1
Ebuild name:

dev-libs/libgcrypt-1.11.1

Description

General purpose crypto library based on the code used in GnuPG

Added to portage

2025-05-10

libunwind - 21.0.0_pre20250510
Ebuild name:

llvm-runtimes/libunwind-21.0.0_pre20250510

Description

C++ runtime stack unwinder from LLVM

Added to portage

2025-05-10

lit - 21.0.0_pre20250510
Ebuild name:

dev-python/lit-21.0.0_pre20250510

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2025-05-10

lld - 21.0.0_pre20250510
Ebuild name:

llvm-core/lld-21.0.0_pre20250510

Description

The LLVM linker (link editor)

Added to portage

2025-05-10

lldb - 21.0.0_pre20250510
Ebuild name:

llvm-core/lldb-21.0.0_pre20250510

Description

The LLVM debugger

Added to portage

2025-05-10

llvm - 21.0.0_pre20250510
Ebuild name:

dev-ml/llvm-21.0.0_pre20250510

Description

OCaml bindings for LLVM

Added to portage

2025-05-10

llvm - 21.0.0_pre20250510
Ebuild name:

llvm-core/llvm-21.0.0_pre20250510

Description

Low Level Virtual Machine

Added to portage

2025-05-10

llvm-common - 21.0.0_pre20250510
Ebuild name:

llvm-core/llvm-common-21.0.0_pre20250510

Description

Common files shared between multiple slots of LLVM

Added to portage

2025-05-10

makefun - 1.16.0
Ebuild name:

dev-python/makefun-1.16.0

Description

Small library to dynamically create Python functions

Added to portage

2025-05-10

matplotlib - 3.10.3
Ebuild name:

dev-python/matplotlib-3.10.3

Description

Pure python plotting library with matlab like syntax

Added to portage

2025-05-10

mlir - 21.0.0_pre20250510
Ebuild name:

llvm-core/mlir-21.0.0_pre20250510

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2025-05-10

mlt - 7.32.0
Ebuild name:

media-libs/mlt-7.32.0

Description

Open source multimedia framework for television broadcasting

Added to portage

2025-05-10

networkx - 3.5_rc0
Ebuild name:

dev-python/networkx-3.5_rc0

Description

Python tools to manipulate graphs and complex networks

Added to portage

2025-05-10

offload - 21.0.0_pre20250510
Ebuild name:

llvm-runtimes/offload-21.0.0_pre20250510

Description

OpenMP offloading support

Added to portage

2025-05-10

open-vm-tools - 12.5.0-r1
Ebuild name:

app-emulation/open-vm-tools-12.5.0-r1

Description

Tools for VMware guests

Added to portage

2025-05-10

openmp - 21.0.0_pre20250510
Ebuild name:

llvm-runtimes/openmp-21.0.0_pre20250510

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2025-05-10

opentelemetry-api - 1.33.0
Ebuild name:

dev-python/opentelemetry-api-1.33.0

Description

OpenTelemetry Python API

Added to portage

2025-05-10

opentelemetry-sdk - 1.33.0
Ebuild name:

dev-python/opentelemetry-sdk-1.33.0

Description

OpenTelemetry Python SDK

Added to portage

2025-05-10

opentelemetry-semantic-conventions - 1.33.0
Ebuild name:

dev-python/opentelemetry-semantic-conventions-1.33.0

Description

OpenTelemetry Semantic Conventions

Added to portage

2025-05-10

podofo - 0.10.1-r2
Ebuild name:

app-text/podofo-0.10.1-r2

Description

PoDoFo is a C++ library to work with the PDF file format

Added to portage

2025-05-10

podofo - 0.10.3-r1
Ebuild name:

app-text/podofo-0.10.3-r1

Description

PoDoFo is a C++ library to work with the PDF file format

Added to portage

2025-05-10

polly - 21.0.0_pre20250510
Ebuild name:

llvm-core/polly-21.0.0_pre20250510

Description

Polyhedral optimizations for LLVM

Added to portage

2025-05-10

proofgeneral - 4.5
Ebuild name:

app-emacs/proofgeneral-4.5

Description

A generic interface for proof assistants

Added to portage

2025-05-10

psych - 5.2.5
Ebuild name:

dev-ruby/psych-5.2.5

Description

A YAML parser and emitter

Added to portage

2025-05-10

pytest-asyncio - 1.0.0_alpha1
Ebuild name:

dev-python/pytest-asyncio-1.0.0_alpha1

Description

Library for testing asyncio code with pytest

Added to portage

2025-05-10

pytools - 2025.1.4
Ebuild name:

dev-python/pytools-2025.1.4

Description

Collection of tools missing from the Python standard library

Added to portage

2025-05-10

pyyaml-env-tag - 1.0
Ebuild name:

dev-python/pyyaml-env-tag-1.0

Description

A custom YAML tag for referencing environment variables in YAML files

Added to portage

2025-05-10

rb_sys - 0.9.114
Ebuild name:

dev-ruby/rb_sys-0.9.114

Description

Easily build Ruby native extensions in Rust

Added to portage

2025-05-10

rdma-core - 57.0
Ebuild name:

sys-cluster/rdma-core-57.0

Description

Userspace components for the Linux Kernel's drivers/infiniband subsystem

Added to portage

2025-05-10

scikit-learn - 1.7.0_rc1
Ebuild name:

dev-python/scikit-learn-1.7.0_rc1

Description

Machine learning library for Python

Added to portage

2025-05-10

scipy - 1.15.3
Ebuild name:

dev-python/scipy-1.15.3

Description

Scientific algorithms library for Python

Added to portage

2025-05-10

scummvm - 2.9.1
Ebuild name:

games-engines/scummvm-2.9.1

Description

Reimplementation of the SCUMM game engine used in Lucasarts adventures

Added to portage

2025-05-10

setuptools - 80.4.0
Ebuild name:

dev-python/setuptools-80.4.0

Description

Collection of extensions to Distutils

Added to portage

2025-05-10

snowballstemmer - 3.0.1
Ebuild name:

dev-python/snowballstemmer-3.0.1

Description

Stemmer algorithms generated from Snowball algorithms

Added to portage

2025-05-10

templates-parser - 25.0.0-r3
Ebuild name:

dev-ada/templates-parser-25.0.0-r3

Description

A template engine

Added to portage

2025-05-10

trove-classifiers - 2025.5.9.12
Ebuild name:

dev-python/trove-classifiers-2025.5.9.12

Description

Canonical source for classifiers on PyPI (pypi.org)

Added to portage

2025-05-10

tslib - 1.23
Ebuild name:

x11-libs/tslib-1.23

Description

Touchscreen Access Library

Added to portage

2025-05-10

tuba - 0.9.2-r2
Ebuild name:

net-misc/tuba-0.9.2-r2

Description

Browse the Fediverse (GTK client)

Added to portage

2025-05-10

unifdef - 2.12-r2
Ebuild name:

dev-util/unifdef-2.12-r2

Description

remove ifdef'ed lines from a file while otherwise leaving the file alone

Added to portage

2025-05-10

valgrind - 3.25.0_p1
Ebuild name:

dev-debug/valgrind-3.25.0_p1

Description

An open-source memory debugger for GNU/Linux

Added to portage

2025-05-10

vanilla-kernel - 5.15.182
Ebuild name:

sys-kernel/vanilla-kernel-5.15.182

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-05-10

vanilla-kernel - 6.1.138
Ebuild name:

sys-kernel/vanilla-kernel-6.1.138

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-05-10

vanilla-kernel - 6.12.28
Ebuild name:

sys-kernel/vanilla-kernel-6.12.28

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-05-10

vanilla-kernel - 6.14.6
Ebuild name:

sys-kernel/vanilla-kernel-6.14.6

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-05-10

vanilla-kernel - 6.6.90
Ebuild name:

sys-kernel/vanilla-kernel-6.6.90

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-05-10

wine-proton - 10.0.1f
Ebuild name:

app-emulation/wine-proton-10.0.1f

Description

Valve Software's fork of Wine

Added to portage

2025-05-10

z3 - 4.15.0
Ebuild name:

sci-mathematics/z3-4.15.0

Description

An efficient theorem prover

Added to portage

2025-05-10

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