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:

82024

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-10
anydesk - 7.1.1
Ebuild name:

net-misc/anydesk-7.1.1

Description

Feature rich multi-platform remote desktop application

Added to portage

2025-11-10

astroid - 4.0.2
Ebuild name:

dev-python/astroid-4.0.2

Description

Abstract Syntax Tree for logilab packages

Added to portage

2025-11-10

black - 25.11.0
Ebuild name:

dev-python/black-25.11.0

Description

The uncompromising Python code formatter

Added to portage

2025-11-10

caffe2 - 2.9.0-r1
Ebuild name:

sci-ml/caffe2-2.9.0-r1

Description

A deep learning framework

Added to portage

2025-11-10

chafa - 1.18.0
Ebuild name:

media-gfx/chafa-1.18.0

Description

versatile and fast Unicode/ASCII/ANSI graphics renderer

Added to portage

2025-11-10

chemex - 2025.10.0
Ebuild name:

sci-chemistry/chemex-2025.10.0

Description

Program to fit chemical exchange induced shift and relaxation data

Added to portage

2025-11-10

cinnamon - 6.4.10-r2
Ebuild name:

gnome-extra/cinnamon-6.4.10-r2

Description

A fork of GNOME Shell with layout similar to GNOME 2

Added to portage

2025-11-10

coverage - 7.11.3
Ebuild name:

dev-python/coverage-7.11.3

Description

Code coverage measurement for Python

Added to portage

2025-11-10

cvc4 - 1.8-r7
Ebuild name:

sci-mathematics/cvc4-1.8-r7

Description

Automatic theorem prover for satisfiability modulo theories (SMT) probl

Added to portage

2025-11-10

frei0r-plugins - 2.4.1
Ebuild name:

media-plugins/frei0r-plugins-2.4.1

Description

A minimalistic plugin API for video effects

Added to portage

2025-11-10

gcc - 16.0.0_p20251109
Ebuild name:

sys-devel/gcc-16.0.0_p20251109

Description

The GNU Compiler Collection

Added to portage

2025-11-10

git-sources - 6.18_rc5
Ebuild name:

sys-kernel/git-sources-6.18_rc5

Description

The very latest -git version of the Linux kernel

Added to portage

2025-11-10

gloo - 2025.06.04-r2
Ebuild name:

sci-ml/gloo-2025.06.04-r2

Description

library of floating-point neural network inference operators

Added to portage

2025-11-10

gpxsee - 15.3
Ebuild name:

sci-geosciences/gpxsee-15.3

Description

Viewer and analyzer that supports gpx, tcx, kml, fit, igc and nmea file

Added to portage

2025-11-10

haproxy - 3.1.10
Ebuild name:

net-proxy/haproxy-3.1.10

Description

A TCP/HTTP reverse proxy for high availability environments

Added to portage

2025-11-10

haproxy - 3.2.8
Ebuild name:

net-proxy/haproxy-3.2.8

Description

A TCP/HTTP reverse proxy for high availability environments

Added to portage

2025-11-10

hipBLASLt - 7.1.0-r1
Ebuild name:

sci-libs/hipBLASLt-7.1.0-r1

Description

General matrix-matrix operations library for AMD Instinct accelerators

Added to portage

2025-11-10

iminuit - 2.32.0
Ebuild name:

dev-python/iminuit-2.32.0

Description

Minuit numerical function minimization in Python

Added to portage

2025-11-10

incus - 9999
Ebuild name:

app-containers/incus-9999

Description

Modern, secure and powerful system container and virtual machine manager

Added to portage

2025-11-10

libcifpp - 9.0.5
Ebuild name:

sci-libs/libcifpp-9.0.5

Description

Code to work with mmCIF and PDB files

Added to portage

2025-11-10

lxqt-archiver - 1.3.0-r1
Ebuild name:

app-arch/lxqt-archiver-1.3.0-r1

Description

Qt GUI File Archiver

Added to portage

2025-11-10

maturin - 1.10.0
Ebuild name:

dev-util/maturin-1.10.0

Description

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

Added to portage

2025-11-10

mysqltuner - 2.7.0
Ebuild name:

dev-db/mysqltuner-2.7.0

Description

Makes recommendations for increased performance and stability for MySQL

Added to portage

2025-11-10

nanoc - 4.14.1
Ebuild name:

www-apps/nanoc-4.14.1

Description

nanoc is a simple but very flexible static site generator written in Ruby

Added to portage

2025-11-10

nanoc-cli - 4.14.1
Ebuild name:

www-apps/nanoc-cli-4.14.1

Description

nanoc is a simple but very flexible static site generator written in Ruby

Added to portage

2025-11-10

nanoc-core - 4.14.1
Ebuild name:

www-apps/nanoc-core-4.14.1

Description

nanoc is a simple but very flexible static site generator written in Rub

Added to portage

2025-11-10

nautilus - 47.4-r2
Ebuild name:

gnome-base/nautilus-47.4-r2

Description

Default file manager for the GNOME desktop

Added to portage

2025-11-10

nautilus - 47.5-r2
Ebuild name:

gnome-base/nautilus-47.5-r2

Description

Default file manager for the GNOME desktop

Added to portage

2025-11-10

nautilus - 48.3-r2
Ebuild name:

gnome-base/nautilus-48.3-r2

Description

Default file manager for the GNOME desktop

Added to portage

2025-11-10

nautilus - 48.4.1-r1
Ebuild name:

gnome-base/nautilus-48.4.1-r1

Description

Default file manager for the GNOME desktop

Added to portage

2025-11-10

noto - 20251101
Ebuild name:

media-fonts/noto-20251101

Description

Google's font family that aims to support all the world's languages

Added to portage

2025-11-10

openpgp-keys-gentoo-developers - 20251103
Ebuild name:

sec-keys/openpgp-keys-gentoo-developers-20251103

Description

Gentoo Authority Keys (GLEP 79)

Added to portage

2025-11-10

pikepdf - 10.0.1
Ebuild name:

dev-python/pikepdf-10.0.1

Description

Python library to work with pdf files based on qpdf

Added to portage

2025-11-10

postfix - 3.11_pre20251105
Ebuild name:

mail-mta/postfix-3.11_pre20251105

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2025-11-10

pypdf - 6.2.0
Ebuild name:

dev-python/pypdf-6.2.0

Description

Python library to work with PDF files

Added to portage

2025-11-10

radicale - 3.5.8
Ebuild name:

www-apps/radicale-3.5.8

Description

A simple CalDAV calendar server

Added to portage

2025-11-10

rocdbgapi - 7.1.0-r1
Ebuild name:

dev-libs/rocdbgapi-7.1.0-r1

Description

AMD Debugger API

Added to portage

2025-11-10

rsync - 3.4.1-r1
Ebuild name:

net-misc/rsync-3.4.1-r1

Description

File transfer program to keep remote files into sync

Added to portage

2025-11-10

squashfs-tools - 4.7.4
Ebuild name:

sys-fs/squashfs-tools-4.7.4

Description

Tools to create and extract Squashfs filesystems

Added to portage

2025-11-10

stoken - 0.92-r3
Ebuild name:

app-crypt/stoken-0.92-r3

Description

Software Token for Linux/UNIX

Added to portage

2025-11-10

sudo-rs - 0.2.10
Ebuild name:

app-admin/sudo-rs-0.2.10

Description

A memory safe implementation of sudo and su.

Added to portage

2025-11-10

swtpm - 0.10.0
Ebuild name:

app-crypt/swtpm-0.10.0

Description

Libtpms-based TPM emulator

Added to portage

2025-11-10

swtpm - 0.10.0-r2
Ebuild name:

app-crypt/swtpm-0.10.0-r2

Description

Libtpms-based TPM emulator

Added to portage

2025-11-10

swtpm - 0.9.0
Ebuild name:

app-crypt/swtpm-0.9.0

Description

Libtpms-based TPM emulator

Added to portage

2025-11-10

syd - 3.44.1
Ebuild name:

sys-apps/syd-3.44.1

Description

seccomp and landlock based application sandbox with support for namespaces

Added to portage

2025-11-10

tc-play - 3.3
Ebuild name:

app-crypt/tc-play-3.3

Description

A free, pretty much fully featured and stable TrueCrypt implementation

Added to portage

2025-11-10

tpm-tools - 1.3.9.2-r1
Ebuild name:

app-crypt/tpm-tools-1.3.9.2-r1

Description

TrouSerS' support tools for the Trusted Platform Modules

Added to portage

2025-11-10

tpm2-abrmd - 3.0.0-r2
Ebuild name:

app-crypt/tpm2-abrmd-3.0.0-r2

Description

TPM2 Access Broker & Resource Manager

Added to portage

2025-11-10

tpm2-openssl - 1.3.0
Ebuild name:

app-crypt/tpm2-openssl-1.3.0

Description

OpenSSL Provider for TPM2 integration

Added to portage

2025-11-10

tpm2-pkcs11 - 1.9.1
Ebuild name:

app-crypt/tpm2-pkcs11-1.9.1

Description

A PKCS11 interface for TPM2 hardware

Added to portage

2025-11-10

2025-11-09
Data-Stream-Bulk - 0.110.0-r3
Ebuild name:

dev-perl/Data-Stream-Bulk-0.110.0-r3

Description

N at a time iteration API

Added to portage

2025-11-09

Data-Structure-Util - 0.160.0-r2
Ebuild name:

dev-perl/Data-Structure-Util-0.160.0-r2

Description

Change nature of data within a structure

Added to portage

2025-11-09

Data-Types - 0.170.0-r1
Ebuild name:

dev-perl/Data-Types-0.170.0-r1

Description

Validate and convert data types

Added to portage

2025-11-09

Data-URIEncode - 0.110.0-r3
Ebuild name:

dev-perl/Data-URIEncode-0.110.0-r3

Description

Allow complex data structures to be encoded using flat URIs

Added to portage

2025-11-09

Data-Uniqid - 0.120.0-r3
Ebuild name:

dev-perl/Data-Uniqid-0.120.0-r3

Description

Perl extension for simple generating of unique ids

Added to portage

2025-11-09

Data-Utilities - 0.40.0-r3
Ebuild name:

dev-perl/Data-Utilities-0.40.0-r3

Description

Merge nested Perl data structures

Added to portage

2025-11-09

Date-Calc - 6.400.0-r2
Ebuild name:

dev-perl/Date-Calc-6.400.0-r2

Description

Gregorian calendar date calculations

Added to portage

2025-11-09

Date-Leapyear - 1.720.0-r3
Ebuild name:

dev-perl/Date-Leapyear-1.720.0-r3

Description

Simple Perl module that tracks Gregorian leap years

Added to portage

2025-11-09

Date-Simple - 3.30.0-r3
Ebuild name:

dev-perl/Date-Simple-3.30.0-r3

Description

Simple date object

Added to portage

2025-11-09

DateTime-Format-Builder - 0.830.0-r1
Ebuild name:

dev-perl/DateTime-Format-Builder-0.830.0-r1

Description

Create DateTime parser classes and objects

Added to portage

2025-11-09

SVG-Graph - 0.40.0
Ebuild name:

dev-perl/SVG-Graph-0.40.0

Description

Visualize your data in Scalable Vector Graphics (SVG) format

Added to portage

2025-11-09

Sys-Virt - 11.8.0
Ebuild name:

dev-perl/Sys-Virt-11.8.0

Description

API for using the libvirt library from Perl

Added to portage

2025-11-09

Tensile - 7.1.0-r1
Ebuild name:

dev-util/Tensile-7.1.0-r1

Description

A tool for creating a benchmark-driven GEMMs and tensor contractions code

Added to portage

2025-11-09

Test-Fatal - 0.18.0
Ebuild name:

dev-perl/Test-Fatal-0.18.0

Description

Incredibly simple helpers for testing code with exceptions

Added to portage

2025-11-09

Text-BibTeX - 0.910.0
Ebuild name:

dev-perl/Text-BibTeX-0.910.0

Description

A Perl library for reading, parsing, and processing BibTeX files

Added to portage

2025-11-09

akonadi - 25.08.3-r1
Ebuild name:

kde-apps/akonadi-25.08.3-r1

Description

Storage service for PIM data and libraries for PIM apps

Added to portage

2025-11-09

arel-helpers - 2.17.0
Ebuild name:

dev-ruby/arel-helpers-2.17.0

Description

Tools to help construct database queries

Added to portage

2025-11-09

audiocd-kio - 25.08.3-r1
Ebuild name:

kde-apps/audiocd-kio-25.08.3-r1

Description

KIO worker for accessing audio CDs

Added to portage

2025-11-09

btrfs-progs - 6.17.1
Ebuild name:

sys-fs/btrfs-progs-6.17.1

Description

Btrfs filesystem utilities

Added to portage

2025-11-09

btrfsutil - 6.17.1
Ebuild name:

dev-python/btrfsutil-6.17.1

Description

Library for managing Btrfs filesystems

Added to portage

2025-11-09

cargo-c - 0.10.18
Ebuild name:

dev-util/cargo-c-0.10.18

Description

Helper program to build and install c-like libraries

Added to portage

2025-11-09

chef-utils - 18.8.54
Ebuild name:

dev-ruby/chef-utils-18.8.54

Description

Basic utility functions for Core Chef Infra development

Added to portage

2025-11-09

composable-kernel - 7.1.0
Ebuild name:

sci-libs/composable-kernel-7.1.0

Description

High Performance Composable Kernel for AMD GPUs

Added to portage

2025-11-09

coverage - 7.11.2
Ebuild name:

dev-python/coverage-7.11.2

Description

Code coverage measurement for Python

Added to portage

2025-11-09

dbus-fast - 2.45.0
Ebuild name:

dev-python/dbus-fast-2.45.0

Description

A faster version of dbus-next

Added to portage

2025-11-09

dbus-fast - 2.45.1
Ebuild name:

dev-python/dbus-fast-2.45.1

Description

A faster version of dbus-next

Added to portage

2025-11-09

diffoscope - 308
Ebuild name:

dev-util/diffoscope-308

Description

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

Added to portage

2025-11-09

feh - 3.10.3-r1
Ebuild name:

media-gfx/feh-3.10.3-r1

Description

A fast, lightweight imageviewer using imlib2

Added to portage

2025-11-09

feh - 3.11.2-r1
Ebuild name:

media-gfx/feh-3.11.2-r1

Description

A fast, lightweight imageviewer using imlib2

Added to portage

2025-11-09

frp - 0.65.0
Ebuild name:

net-vpn/frp-0.65.0

Description

A reverse proxy that exposes a server behind a NAT or firewall to the internet

Added to portage

2025-11-09

gcc - 13.4.1_p20251106
Ebuild name:

sys-devel/gcc-13.4.1_p20251106

Description

The GNU Compiler Collection

Added to portage

2025-11-09

gcc - 14.3.1_p20251107
Ebuild name:

sys-devel/gcc-14.3.1_p20251107

Description

The GNU Compiler Collection

Added to portage

2025-11-09

gcc - 15.2.1_p20251108
Ebuild name:

sys-devel/gcc-15.2.1_p20251108

Description

The GNU Compiler Collection

Added to portage

2025-11-09

go - 1.24.10
Ebuild name:

dev-lang/go-1.24.10

Description

A concurrent garbage collected and typesafe programming language

Added to portage

2025-11-09

go - 1.25.4
Ebuild name:

dev-lang/go-1.25.4

Description

A concurrent garbage collected and typesafe programming language

Added to portage

2025-11-09

goawk - 1.30.0
Ebuild name:

sys-apps/goawk-1.30.0

Description

POSIX-compliant AWK interpreter written in Go, with CSV support

Added to portage

2025-11-09

gwenhywfar - 5.12.1-r2
Ebuild name:

sys-libs/gwenhywfar-5.12.1-r2

Description

Multi-platform helper library for other libraries

Added to portage

2025-11-09

hip - 7.1.0
Ebuild name:

dev-util/hip-7.1.0

Description

C++ Heterogeneous-Compute Interface for Portability

Added to portage

2025-11-09

hipBLAS - 7.1.0
Ebuild name:

sci-libs/hipBLAS-7.1.0

Description

ROCm BLAS marshalling library

Added to portage

2025-11-09

hipBLAS-common - 7.1.0
Ebuild name:

sci-libs/hipBLAS-common-7.1.0

Description

Common files shared by hipBLAS and hipBLASLt

Added to portage

2025-11-09

hipCUB - 7.1.0
Ebuild name:

sci-libs/hipCUB-7.1.0

Description

Wrapper of rocPRIM or CUB for GPU parallel primitives

Added to portage

2025-11-09

hipFFT - 7.1.0
Ebuild name:

sci-libs/hipFFT-7.1.0

Description

CU / ROCM agnostic hip FFT implementation

Added to portage

2025-11-09

hipRAND - 7.1.0
Ebuild name:

sci-libs/hipRAND-7.1.0

Description

CU / ROCM agnostic hip RAND implementation

Added to portage

2025-11-09

hipSOLVER - 7.1.0
Ebuild name:

sci-libs/hipSOLVER-7.1.0

Description

CU / ROCM agnostic marshalling library for LAPACK routines on the GPU

Added to portage

2025-11-09

hipSPARSE - 7.1.0
Ebuild name:

sci-libs/hipSPARSE-7.1.0

Description

ROCm SPARSE marshalling library

Added to portage

2025-11-09

hipcc - 7.1.0
Ebuild name:

dev-util/hipcc-7.1.0

Description

Radeon Open Compute hipcc

Added to portage

2025-11-09

hipify-clang - 7.1.0
Ebuild name:

dev-util/hipify-clang-7.1.0

Description

A set of tools to translate CUDA source code into portable HIP C++

Added to portage

2025-11-09

hipother - 7.1.0
Ebuild name:

dev-libs/hipother-7.1.0

Description

ROCclr runtime implementation for non-AMD HIP platforms, like NVIDIA

Added to portage

2025-11-09

hishel - 1.1.5
Ebuild name:

dev-python/hishel-1.1.5

Description

An elegant HTTP Cache implementation for HTTPX and HTTP Core

Added to portage

2025-11-09

hypercorn - 0.18.0
Ebuild name:

dev-python/hypercorn-0.18.0

Description

A ASGI Server based on Hyper libraries and inspired by Gunicorn

Added to portage

2025-11-09

intel-compute-runtime - 25.40.35563.4
Ebuild name:

dev-libs/intel-compute-runtime-25.40.35563.4

Description

Intel Graphics Compute Runtime for oneAPI Level Zero a

Added to portage

2025-11-09

intel-graphics-compiler - 2.23.0
Ebuild name:

dev-util/intel-graphics-compiler-2.23.0

Description

LLVM-based OpenCL compiler for OpenCL targetting Intel Gen

Added to portage

2025-11-09

intel-vc-intrinsics - 0.24.1
Ebuild name:

dev-libs/intel-vc-intrinsics-0.24.1

Description

A set of new intrinsics on top of core LLVM IR instructions

Added to portage

2025-11-09

json - 2.16.0
Ebuild name:

dev-ruby/json-2.16.0

Description

A JSON implementation as a Ruby extension

Added to portage

2025-11-09

kdemultimedia-meta - 25.08.3-r1
Ebuild name:

kde-apps/kdemultimedia-meta-25.08.3-r1

Description

kdemultimedia - merge this to pull in all kdemultimedia-deri

Added to portage

2025-11-09

lego - 4.28.1
Ebuild name:

app-crypt/lego-4.28.1

Description

Let's Encrypt/ACME client (like certbot or acme.sh) and library written in Go

Added to portage

2025-11-09

level-zero - 1.26.0
Ebuild name:

dev-libs/level-zero-1.26.0

Description

oneAPI Level Zero headers, loader and validation layer

Added to portage

2025-11-09

liquid - 5.10.0
Ebuild name:

dev-ruby/liquid-5.10.0

Description

Template engine for Ruby

Added to portage

2025-11-09

mafft - 7.525
Ebuild name:

sci-biology/mafft-7.525

Description

Multiple sequence alignments using a variety of algorithms

Added to portage

2025-11-09

mariadb - 10.11.15
Ebuild name:

dev-db/mariadb-10.11.15

Description

An enhanced, drop-in replacement for MySQL

Added to portage

2025-11-09

mariadb - 10.6.24
Ebuild name:

dev-db/mariadb-10.6.24

Description

An enhanced, drop-in replacement for MySQL

Added to portage

2025-11-09

mariadb - 11.4.9
Ebuild name:

dev-db/mariadb-11.4.9

Description

An enhanced, drop-in replacement for MySQL

Added to portage

2025-11-09

mariadb - 11.8.4
Ebuild name:

dev-db/mariadb-11.8.4

Description

An enhanced, drop-in replacement for MySQL

Added to portage

2025-11-09

minikube - 1.37.0
Ebuild name:

sys-cluster/minikube-1.37.0

Description

Local kubernetes clusters for learning and development

Added to portage

2025-11-09

miopen - 7.1.0
Ebuild name:

sci-libs/miopen-7.1.0

Description

AMD's Machine Intelligence Library

Added to portage

2025-11-09

moor - 2.8.1
Ebuild name:

sys-apps/moor-2.8.1

Description

Pager designed to do the right thing without any configuration

Added to portage

2025-11-09

nanoc-deploying - 1.0.3
Ebuild name:

www-apps/nanoc-deploying-1.0.3

Description

Provides deploying functionality for Nanoc

Added to portage

2025-11-09

notion - 4.0.4
Ebuild name:

x11-wm/notion-4.0.4

Description

Notion is a tiling, tabbed window manager for the X window system

Added to portage

2025-11-09

ntl - 11.6.0
Ebuild name:

dev-libs/ntl-11.6.0

Description

High-performance and portable C++ number theory library

Added to portage

2025-11-09

openmittsu - 0.10.3.0
Ebuild name:

net-im/openmittsu-0.10.3.0

Description

Open source chat client for Threema-style end-to-end encrypted chat netw

Added to portage

2025-11-09

pdsh - 2.35
Ebuild name:

app-shells/pdsh-2.35

Description

A high-performance, parallel remote shell utility

Added to portage

2025-11-09

portpeek - 3.2.8-r1
Ebuild name:

app-portage/portpeek-3.2.8-r1

Description

A helper program for maintaining the package.keyword and package.unma

Added to portage

2025-11-09

pv - 1.10.0
Ebuild name:

sys-apps/pv-1.10.0

Description

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

Added to portage

2025-11-09

pytest - 9.0.0
Ebuild name:

dev-python/pytest-9.0.0

Description

Simple powerful testing with Python

Added to portage

2025-11-09

pytest-asyncio - 1.2.0-r1
Ebuild name:

dev-python/pytest-asyncio-1.2.0-r1

Description

Library for testing asyncio code with pytest

Added to portage

2025-11-09

pytest-describe - 3.0.0-r1
Ebuild name:

dev-python/pytest-describe-3.0.0-r1

Description

Describe-style plugin for pytest

Added to portage

2025-11-09

pytest-httpx - 0.35.0-r1
Ebuild name:

dev-python/pytest-httpx-0.35.0-r1

Description

Send responses to HTTPX using pytest

Added to portage

2025-11-09

pyupgrade - 3.21.1
Ebuild name:

dev-python/pyupgrade-3.21.1

Description

Tool + pre-commit hook to automatically upgrade syntax for newer Python

Added to portage

2025-11-09

qt5-sqlcipher - 1.1.0
Ebuild name:

dev-db/qt5-sqlcipher-1.1.0

Description

Qt SQL driver plugin for SQLCipher

Added to portage

2025-11-09

radare2 - 6.0.4
Ebuild name:

dev-util/radare2-6.0.4

Description

unix-like reverse engineering framework and commandline tools

Added to portage

2025-11-09

rccl - 7.1.0
Ebuild name:

dev-libs/rccl-7.1.0

Description

ROCm Communication Collectives Library (RCCL)

Added to portage

2025-11-09

rocBLAS - 7.1.0
Ebuild name:

sci-libs/rocBLAS-7.1.0

Description

AMD's library for BLAS on ROCm

Added to portage

2025-11-09

rocFFT - 7.1.0
Ebuild name:

sci-libs/rocFFT-7.1.0

Description

Next generation FFT implementation for ROCm

Added to portage

2025-11-09

rocPRIM - 7.1.0
Ebuild name:

sci-libs/rocPRIM-7.1.0

Description

HIP parallel primitives for developing performant GPU-accelerated code on RO

Added to portage

2025-11-09

rocRAND - 7.1.0
Ebuild name:

sci-libs/rocRAND-7.1.0

Description

Generate pseudo-random and quasi-random numbers

Added to portage

2025-11-09

rocSOLVER - 7.1.0
Ebuild name:

sci-libs/rocSOLVER-7.1.0

Description

Implementation of a subset of LAPACK functionality on the ROCm platform

Added to portage

2025-11-09

rocSPARSE - 7.1.0
Ebuild name:

sci-libs/rocSPARSE-7.1.0

Description

Basic Linear Algebra Subroutines for sparse computation

Added to portage

2025-11-09

rocThrust - 7.1.0
Ebuild name:

sci-libs/rocThrust-7.1.0

Description

HIP back-end for the parallel algorithm library Thrust

Added to portage

2025-11-09

rocWMMA - 7.1.0
Ebuild name:

sci-libs/rocWMMA-7.1.0

Description

library for accelerating mixed precision matrix multiply-accumulate operatio

Added to portage

2025-11-09

rocm-cmake - 7.1.0
Ebuild name:

dev-build/rocm-cmake-7.1.0

Description

Radeon Open Compute CMake Modules

Added to portage

2025-11-09

rocm-comgr - 7.1.0
Ebuild name:

dev-libs/rocm-comgr-7.1.0

Description

Radeon Open Compute Code Object Manager

Added to portage

2025-11-09

rocm-core - 7.1.0
Ebuild name:

dev-libs/rocm-core-7.1.0

Description

Library that provides ROCm release version and install path information

Added to portage

2025-11-09

rocm-device-libs - 7.1.0
Ebuild name:

dev-libs/rocm-device-libs-7.1.0

Description

Radeon Open Compute Device Libraries

Added to portage

2025-11-09

rocm-opencl-runtime - 7.1.0
Ebuild name:

dev-libs/rocm-opencl-runtime-7.1.0

Description

Radeon Open Compute OpenCL Compatible Runtime

Added to portage

2025-11-09

rocm-smi - 7.1.0
Ebuild name:

dev-util/rocm-smi-7.1.0

Description

ROCm System Management Interface Library

Added to portage

2025-11-09

rocm_bandwidth_test - 7.1.0
Ebuild name:

dev-util/rocm_bandwidth_test-7.1.0

Description

Bandwidth test for ROCm

Added to portage

2025-11-09

rocminfo - 7.1.0
Ebuild name:

dev-util/rocminfo-7.1.0

Description

ROCm Application for Reporting System Info

Added to portage

2025-11-09

rocr-runtime - 7.1.0
Ebuild name:

dev-libs/rocr-runtime-7.1.0

Description

Radeon Open Compute Runtime

Added to portage

2025-11-09

roct-thunk-interface - 7.1.0
Ebuild name:

dev-libs/roct-thunk-interface-7.1.0

Description

Radeon Open Compute Thunk Interface

Added to portage

2025-11-09

roctracer - 7.1.0
Ebuild name:

dev-util/roctracer-7.1.0

Description

Callback/Activity Library for Performance tracing AMD GPU's

Added to portage

2025-11-09

rpp - 7.1.0
Ebuild name:

sci-libs/rpp-7.1.0

Description

AMD ROCm Performance Primitives (RPP) high-performance computer vision library

Added to portage

2025-11-09

ruby - 3.2.9-r1
Ebuild name:

dev-lang/ruby-3.2.9-r1

Description

An object-oriented scripting language

Added to portage

2025-11-09

ruby - 3.3.10-r1
Ebuild name:

dev-lang/ruby-3.3.10-r1

Description

An object-oriented scripting language

Added to portage

2025-11-09

ruby - 3.4.7-r1
Ebuild name:

dev-lang/ruby-3.4.7-r1

Description

An object-oriented scripting language

Added to portage

2025-11-09

syd - 3.43.0
Ebuild name:

sys-apps/syd-3.43.0

Description

seccomp and landlock based application sandbox with support for namespaces

Added to portage

2025-11-09

tavern - 3.0.0-r1
Ebuild name:

dev-python/tavern-3.0.0-r1

Description

A tool, library, and Pytest plugin for testing RESTful APIs

Added to portage

2025-11-09

torchvision - 0.23.0-r1
Ebuild name:

sci-ml/torchvision-0.23.0-r1

Description

Datasets, transforms and models to specific to computer vision

Added to portage

2025-11-09

torchvision - 0.24.0-r1
Ebuild name:

sci-ml/torchvision-0.24.0-r1

Description

Datasets, transforms and models to specific to computer vision

Added to portage

2025-11-09

winbox - 4.0_beta39
Ebuild name:

app-admin/winbox-4.0_beta39

Description

Management Software for MikroTik RouterOS

Added to portage

2025-11-09

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