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:

70282

userrating:

average rating: 1.2 (8 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Installation Guides

Summary

This text describes the installation and configuration of a heavy duty internet server running a gentoo linux distribution. The server will have to run 24/7 with minimum downtime for maintenance and is connected to a 100MBit Internet backbone. I choose gentoo as distribution because of the really fast availability of new versions and security patches for all installed packages. Everything will be compiled for the special needs of this maschine with various security enhancement features which ship with the available glibc/gcc versions (like stack smashing protections).

Changelog

Previous versions used to split the swap space across the raid harddiscs and not to mirror it. In case of a hard disc failure your system might(will) crash. This is not intended... (Thanks to Nick Rosier to point this out).

Note

This howto is NOT suited for users who run their first linux (or gentoo) install. Previous linux knowledge is needed, not every detail will be explained here.

System descriptions

Hardware

The system is a dual Xeon 2.66 Ghz with 512KB cache size and enabled hyperthreading.

System storage will be 2 80 GB HDDs running in a raid 1 with network backup every night. The filesystem will be XFS on a software raid 1 (mirroring) system.

Memory: 1GB, build in network card, no sound used, onboard graphics.

The machine will have an UPS and external cooling and will be mounted in a 19" rack.

Software

The system will be a heavy duty webserver running at least the following services/daemons:

  • Apache 2 as webserver (with many virtual hosts)
  • openLDAP for authentication for smtp/imap/pop3 and other login services, but not for system login
  • postfix with sasl2 support as MTA (Mail Transfer Agent)
  • courier-imap for imap access
  • courier-pop3
  • mysql as database backend
  • php (hardened) for various web frontends
  • LeopardCMS (a highspeed content management system written in C) for websites
  • ldapphpadmin for administrating the ldap server
  • squirrelmail as webmail service
  • awstats for website statistics

Installation

The basic installation is explained in the wonderful gentoo installation handbook.

I will only describe the modification on each step.

I will use a stage 1 installation with the minimal boot CD.

Installation in quick style (refer to the handbook if you don't know how to do the individual step(s))

Booting:

  • Boot from the CD, load the right network drivers
  • Change root password to something we know.
  • Configure the network with the given ip address dns servers etc.
  • Start sshd (optional)

Partitioning the hdd(s)

I'm using fdisk to partition the hdds, use whatever you like best.

Attention: To be able to use the raid 1, both hdds must be partitioned exactly identical, so write down the setting when partitioning.

My HDD layout :

/dev/hda1 boot partition 10 MB,  partition type: fd (Linux raid autodetect)
/dev/hda2 swap partition 250 MB, partition type: 82 (Linux swap)
/dev/hda3 root partition remaining space, partition type: fd (Linux raid autodetect)
The same applies to the 2nd HDD.

Setting up the raid 1

edit/create the file /etc/raidtab and enter the following (adjust the devices if neccessary)

raiddev         /dev/md0
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda1
raid-disk       0
device          /dev/hdc1
raid-disk       1

raiddev         /dev/md2
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda3
raid-disk       0
device          /dev/hdc3
raid-disk       1

In case you want to mirror the swap:

raiddev         /dev/md1
nr-raid-disks   2
persistent-superblock   1
device          /dev/hda2
raid-disk       0
device          /dev/hdc2
raid-disk       1

Note: I do not use a raid for the swap, I will explain the swap setup a bit later.
Please also see the comment at the bottom of this page, why this may cause trouble on a harddisk failure.

start the raid by running

raidstart --all
enter "cat /proc/mdstat"

You should see something like this:

Personalities : [raid1]
md0 : active raid1 hda1[1] hdc1[1]
      XXX blocks [2/2] [UU]
md2 : active raid1 hda3[1] hdc3[1]
      YYY blocks [2/2] [UU]

Now, after your raid is up and running, don't think about touching /dev/hda or /dev/hdc directly again. Only use /dev/md0 or /dev/md2.

Applying a Filesystem to a Partition

create your filesystems like it is described in the handbook, only use /dev/md0 and /dev/md2 for the target devices.

Activate the Swap Partitions

Because we are using 2 identical hdds, we have 2 swap partitions that we enable both.

Later in the /etc/fstab config we can tune a bit to make our swap faster.

Mounting

Now we follow the handbook a bit for mounting and downloading the needed stage 1 tarball. Remember, use /dev/mdX as partitions.

Configuring the Compile Options

I prefer to to use the full make.conf.default for configuration, so I copy it over before editing.

cp /mnt/gentoo/etc/make.conf.default /mnt/gentoo/etc/make.conf
now we edit the file
nano -w /mnt/gentoo/etc/make.conf

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

CFLAGS="-march=pentium4 -O2 -pipe" be careful, if you enable the hardened toolchain, never use more than -O2 for compiling.

If you have an AMD cpu, or a pentium2/3 change the -march setting to your cpu.

I set the MAKEOPTS to -j5 (number of CPUs plus one) (2 x Xeon with HT enabled makes 4 virtual CPUs)

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

USE="-X -gtk -gnome -alsa mysql apache2 ssl ssh openldap\
sasl2 pam pic pie hardened hardenedphp xml vhosts"
I don't want X, gtk, gnome or alsa. (This is a server)

But I want mysql, apache, a.s.o.

The flags pic, pie and hardened are used with the hardened toolchain provided by gentoo.

These make the executables less vulnerable to buffer overflow and other programming mistakes. As of the writing of this howto, the flags "pic, pie and hardened" cause some problems with some packages. Manual patching and fiddling may be needed.

UPDATE: I installed another server lately (Nov. 2005), no patching was needed any more.

Follow the installation manual including the Stage1 to Stage2 section.

It is always useful to download the packages first and after that, start the real bootstrapping process. There is nothing better than having a bootstrap failing after 60+ mins on the last package because the file was damaged on the ftp mirror.

Proceed from stage2 to stage3 the documented way.

This will take a while, in my case 71 packages will be installed.

Just keep yourself occupied with something, like writing a howto or something ;)

Now its time to configure the kernel as described in the manual

  • set the timezone
  • install a kernel. I used a hardened-sources kernel (version 2.6.7-r7)
  • check the symlink /usr/src/linnux
  • configure the kernel with make menuconfig
  • make sure to check SMP support in case of a multiple CPU machine.
  • If you use XFS and like to not loose parts of your filesystem data, disable preemptible kernel.
  • Think twice before enabling power management functions like software suspend.
  • You really don't want that your server goes into suspend mode during the night.
  • Warning: If you use MySQL, do not enable the PaX feature "Disallow ELF text relocations". Enabling this makes you unable to compile and run MySQL. *sniff*
  • compile the kernel (remember to use the -j5 flag like in the MAKEOPTS line).
  • install the kernel.

configuring /etc/fstab

enter the data as described in the manual, but use /dev/md0 and /dev/md2

for the swap line use the following 2 lines

/dev/hda2  none swap sw,pri=2 0 0
/dev/hdc2  none swap sw,pri=2 0 0
This way the kernel uses both hdds for swap with the same priority, this means some data will be swapped to one hdd, some to the other and both could be read/written at the same time. This gives a speed boost when you need swap (which should never happen on normal conditions...).
Or use
/dev/md2  none swap sw,pri=2 0 0
in case of a mirrored swap partion.

Enter the networking information as described in the handbook (ip, domainname, ...)

Continue with the installation manual until you got through the manual and

have the basic system running as you want.

While writing this howto, it was planned to have a part 2 to describe the installation of additional software like apache, postfix and others.

But since they are installed exactly as on a "normal" gentoo distribution, a part 2 is not really needed.

comments

Nick Rosier wrote in an email:
I just read this setup. IMHO there's a little flaw in the setup. Goal is to have as little downtime as possible. To gain maybe a bit more performance the author decided not to mirror swap. This is a bad idea. In case of a hard-disk failure part of your swapspace will be unavailable/corrupted meaning your system will possibly crash. I doubt that is what one wants.
Nick has a valid point.
In this setup I use ide harddisks. (yes, I know, SCSI would be better...)
If one of the hdds dies, its very likely that the system crashes any way. This is my experience with ide hdds.
If you use SCSI or SATA-drives, the situation might change. On those drives it might be better to use raid on the swap, too.
rate this article:
current rating: average rating: 1.7 (18 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2024-11-23
awscli - 1.36.9
Ebuild name:

app-admin/awscli-1.36.9

Description

Universal Command Line Environment for AWS

Added to portage

2024-11-23

cdk - 5.0.20240619
Ebuild name:

dev-libs/cdk-5.0.20240619

Description

A library of curses widgets

Added to portage

2024-11-23

citus - 12.1.6
Ebuild name:

dev-db/citus-12.1.6

Description

Open-source postgresql extension for clustering/multi-node setups

Added to portage

2024-11-23

datefudge - 1.27
Ebuild name:

app-misc/datefudge-1.27

Description

A program (and preload library) to fake system date

Added to portage

2024-11-23

dist-kernel - 6.1.119
Ebuild name:

virtual/dist-kernel-6.1.119

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-11-23

dist-kernel - 6.11.10
Ebuild name:

virtual/dist-kernel-6.11.10

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-11-23

dist-kernel - 6.6.63
Ebuild name:

virtual/dist-kernel-6.6.63

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-11-23

flit-scm - 1.7.0
Ebuild name:

dev-python/flit-scm-1.7.0

Description

A PEP 518 build backend combining flit with setuptools_scm

Added to portage

2024-11-23

gcc - 13.3.1_p20241122
Ebuild name:

sys-devel/gcc-13.3.1_p20241122

Description

The GNU Compiler Collection

Added to portage

2024-11-23

gentoo-kernel - 6.1.119
Ebuild name:

sys-kernel/gentoo-kernel-6.1.119

Description

Linux kernel built with Gentoo patches

Added to portage

2024-11-23

gentoo-kernel - 6.11.10
Ebuild name:

sys-kernel/gentoo-kernel-6.11.10

Description

Linux kernel built with Gentoo patches

Added to portage

2024-11-23

gentoo-kernel - 6.6.63
Ebuild name:

sys-kernel/gentoo-kernel-6.6.63

Description

Linux kernel built with Gentoo patches

Added to portage

2024-11-23

gentoo-kernel-bin - 6.1.119
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.119

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-11-23

gentoo-kernel-bin - 6.11.10
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.11.10

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-11-23

gentoo-kernel-bin - 6.6.63
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.63

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-11-23

gns3-gui - 2.2.51
Ebuild name:

net-misc/gns3-gui-2.2.51

Description

Graphical Network Simulator

Added to portage

2024-11-23

gns3-server - 2.2.51
Ebuild name:

net-misc/gns3-server-2.2.51

Description

GNS3 server to asynchronously manage emulators

Added to portage

2024-11-23

gsocket - 1.4.43-r1
Ebuild name:

net-vpn/gsocket-1.4.43-r1

Description

Allow firewalled/NATed host to establish a secure connection

Added to portage

2024-11-23

ipython-genutils - 0.2.0-r4
Ebuild name:

dev-python/ipython-genutils-0.2.0-r4

Description

Vestigial utilities from IPython

Added to portage

2024-11-23

jinja2-pluralize - 0.3.0-r1
Ebuild name:

dev-python/jinja2-pluralize-0.3.0-r1

Description

Jinja2 pluralize filters

Added to portage

2024-11-23

jsonm - 1.0.2
Ebuild name:

dev-ml/jsonm-1.0.2

Description

Non-blocking streaming JSON codec for OCaml

Added to portage

2024-11-23

kaffeine - 2.0.19
Ebuild name:

media-video/kaffeine-2.0.19

Description

Media player with digital TV support by KDE

Added to portage

2024-11-23

kaqaz - 1.2.0-r5
Ebuild name:

x11-misc/kaqaz-1.2.0-r5

Description

Note manager

Added to portage

2024-11-23

kobodeluxe - 0.5.1-r5
Ebuild name:

games-arcade/kobodeluxe-0.5.1-r5

Description

An SDL port of xkobo, a addictive space shoot-em-up

Added to portage

2024-11-23

krusader - 2.9.0_pre20241118
Ebuild name:

kde-misc/krusader-2.9.0_pre20241118

Description

Advanced twin-panel (commander-style) file-manager with many ex

Added to portage

2024-11-23

lvm2 - 2.03.22-r7
Ebuild name:

sys-fs/lvm2-2.03.22-r7

Description

User-land utilities for LVM2 (device-mapper) software

Added to portage

2024-11-23

mitmproxy-wireguard - 0.1.20-r1
Ebuild name:

dev-python/mitmproxy-wireguard-0.1.20-r1

Description

WireGuard frontend for mitmproxy

Added to portage

2024-11-23

mod_authz_unixgroup - 1.2.0
Ebuild name:

www-apache/mod_authz_unixgroup-1.2.0

Description

An Apache2 authorization DSO using unix groups

Added to portage

2024-11-23

msort - 8.53-r3
Ebuild name:

app-text/msort-8.53-r3

Description

A program for sorting files in sophisticated ways

Added to portage

2024-11-23

mypy-extensions - 1.0.0
Ebuild name:

dev-python/mypy-extensions-1.0.0

Description

Type system extensions for programs checked with mypy

Added to portage

2024-11-23

nginx - 1.27.2-r4
Ebuild name:

www-servers/nginx-1.27.2-r4

Description

Robust, small and high performance http and reverse proxy server

Added to portage

2024-11-23

nvidia-drivers - 550.40.80
Ebuild name:

x11-drivers/nvidia-drivers-550.40.80

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2024-11-23

physfs - 3.2.0
Ebuild name:

dev-games/physfs-3.2.0

Description

Abstraction layer for filesystem and archive access

Added to portage

2024-11-23

qqc2-desktop-style - 6.7.0-r1
Ebuild name:

kde-frameworks/qqc2-desktop-style-6.7.0-r1

Description

Style for QtQuickControls 2 that uses QWidget's QStyle f

Added to portage

2024-11-23

qqc2-desktop-style - 6.8.0-r1
Ebuild name:

kde-frameworks/qqc2-desktop-style-6.8.0-r1

Description

Style for QtQuickControls 2 that uses QWidget's QStyle f

Added to portage

2024-11-23

qtlocation - 5.15.16-r1
Ebuild name:

dev-qt/qtlocation-5.15.16-r1

Description

Location (places, maps, navigation) library for the Qt5 framework

Added to portage

2024-11-23

qtwayland - 5.15.16-r1
Ebuild name:

dev-qt/qtwayland-5.15.16-r1

Description

Wayland platform plugin for Qt

Added to portage

2024-11-23

requests-download - 0.1.2-r2
Ebuild name:

dev-python/requests-download-0.1.2-r2

Description

A convenient function to download to a file using requests

Added to portage

2024-11-23

sphinx-selective-exclude - 1.0.3-r1
Ebuild name:

dev-python/sphinx-selective-exclude-1.0.3-r1

Description

Sphinx selective rendition extensions

Added to portage

2024-11-23

syd - 3.28.4
Ebuild name:

sys-apps/syd-3.28.4

Description

seccomp and landlock based application sandbox with support for namespaces

Added to portage

2024-11-23

vanilla-kernel - 6.1.119
Ebuild name:

sys-kernel/vanilla-kernel-6.1.119

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-11-23

vanilla-kernel - 6.11.10
Ebuild name:

sys-kernel/vanilla-kernel-6.11.10

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-11-23

vanilla-kernel - 6.6.63
Ebuild name:

sys-kernel/vanilla-kernel-6.6.63

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-11-23

vivaldi - 7.0.3495.18
Ebuild name:

www-client/vivaldi-7.0.3495.18

Description

A browser for our friends

Added to portage

2024-11-23

wine-staging - 9.22
Ebuild name:

app-emulation/wine-staging-9.22

Description

Free implementation of Windows(tm) on Unix, with Wine-Staging patch

Added to portage

2024-11-23

wine-vanilla - 9.22
Ebuild name:

app-emulation/wine-vanilla-9.22

Description

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

Added to portage

2024-11-23

xca - 2.8.0
Ebuild name:

app-crypt/xca-2.8.0

Description

A GUI to OpenSSL, RSA public keys, certificates, signing requests etc

Added to portage

2024-11-23

xor-analyze - 0.5-r1
Ebuild name:

app-crypt/xor-analyze-0.5-r1

Description

Program for cryptanalyzing xor 'encryption' with variable key length

Added to portage

2024-11-23

yubihsm-connector - 3.0.4
Ebuild name:

app-crypt/yubihsm-connector-3.0.4

Description

Server to expose YubiHSM 2 to network

Added to portage

2024-11-23

yubihsm-shell - 2.4.0
Ebuild name:

app-crypt/yubihsm-shell-2.4.0

Description

Components used to interact with the YubiHSM 2

Added to portage

2024-11-23

2024-11-22
0install - 2.18-r1
Ebuild name:

dev-ml/0install-2.18-r1

Description

Package dependency solver

Added to portage

2024-11-22

aiohttp - 3.11.7
Ebuild name:

dev-python/aiohttp-3.11.7

Description

HTTP client/server for asyncio

Added to portage

2024-11-22

assistant - 5.15.16
Ebuild name:

dev-qt/assistant-5.15.16

Description

Tool for viewing on-line documentation in Qt help file format

Added to portage

2024-11-22

audit - 4.0.2-r1
Ebuild name:

sys-process/audit-4.0.2-r1

Description

Userspace utilities for storing and processing auditing records

Added to portage

2024-11-22

autoconf-archive - 2024.10.16-r1
Ebuild name:

dev-build/autoconf-archive-2024.10.16-r1

Description

GNU Autoconf Macro Archive

Added to portage

2024-11-22

aws-sam-translator - 1.94.0
Ebuild name:

dev-python/aws-sam-translator-1.94.0

Description

A library that transform SAM templates into AWS CloudFormation

Added to portage

2024-11-22

azuredatastudio - 1.50.0
Ebuild name:

dev-util/azuredatastudio-1.50.0

Description

Data management and development tool from Microsoft

Added to portage

2024-11-22

bazelisk - 1.24.0
Ebuild name:

dev-build/bazelisk-1.24.0

Description

A user-friendly launcher for Bazel written in Go

Added to portage

2024-11-22

chromium - 133.0.6847.2
Ebuild name:

www-client/chromium-133.0.6847.2

Description

Open-source version of Google Chrome web browser

Added to portage

2024-11-22

cmake - 3.30.6
Ebuild name:

dev-build/cmake-3.30.6

Description

Cross platform Make

Added to portage

2024-11-22

cmake - 3.31.1
Ebuild name:

dev-build/cmake-3.31.1

Description

Cross platform Make

Added to portage

2024-11-22

designer - 5.15.16
Ebuild name:

dev-qt/designer-5.15.16

Description

WYSIWYG tool for designing and building graphical user interfaces with QtWi

Added to portage

2024-11-22

gcc - 12.4.1_p20241121
Ebuild name:

sys-devel/gcc-12.4.1_p20241121

Description

The GNU Compiler Collection

Added to portage

2024-11-22

gentoo-sources - 6.1.119
Ebuild name:

sys-kernel/gentoo-sources-6.1.119

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-11-22

gentoo-sources - 6.11.10
Ebuild name:

sys-kernel/gentoo-sources-6.11.10

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-11-22

gentoo-sources - 6.12.1
Ebuild name:

sys-kernel/gentoo-sources-6.12.1

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-11-22

gentoo-sources - 6.6.63
Ebuild name:

sys-kernel/gentoo-sources-6.6.63

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2024-11-22

gettext - 0.22.5-r1
Ebuild name:

sys-devel/gettext-0.22.5-r1

Description

GNU locale utilities

Added to portage

2024-11-22

git - 2.3.2
Ebuild name:

dev-ruby/git-2.3.2

Description

Library for using Git in Ruby

Added to portage

2024-11-22

gmmlib - 22.5.3
Ebuild name:

media-libs/gmmlib-22.5.3

Description

Intel Graphics Memory Management Library

Added to portage

2024-11-22

hyprland - 0.42.0-r2
Ebuild name:

gui-wm/hyprland-0.42.0-r2

Description

A dynamic tiling Wayland compositor that doesn't sacrifice on its looks

Added to portage

2024-11-22

ifplugd - 0.28-r12
Ebuild name:

sys-apps/ifplugd-0.28-r12

Description

Brings up/down ethernet ports automatically with cable detection

Added to portage

2024-11-22

keystoneauth1 - 5.9.0
Ebuild name:

dev-python/keystoneauth1-5.9.0

Description

This package contains tools for authenticating to an OpenStack-based

Added to portage

2024-11-22

knot-resolver - 5.7.4
Ebuild name:

net-dns/knot-resolver-5.7.4

Description

A scaleable caching DNS resolver

Added to portage

2024-11-22

kramdown - 2.5.1
Ebuild name:

dev-ruby/kramdown-2.5.1

Description

Yet-another-markdown-parser but fast, pure Ruby, using strict syntax defini

Added to portage

2024-11-22

kwin - 6.2.3-r2
Ebuild name:

kde-plasma/kwin-6.2.3-r2

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2024-11-22

latex2pydata - 0.4.0
Ebuild name:

dev-tex/latex2pydata-0.4.0

Description

Allows LaTeX to save data to files using Python

Added to portage

2024-11-22

latexrestricted - 0.6.0
Ebuild name:

dev-python/latexrestricted-0.6.0

Description

Library for creating executables compatible with LaTeX restricted

Added to portage

2024-11-22

librdkafka - 2.6.1
Ebuild name:

dev-libs/librdkafka-2.6.1

Description

Apache Kafka C/C++ client library

Added to portage

2024-11-22

linguist - 5.15.16
Ebuild name:

dev-qt/linguist-5.15.16

Description

Graphical tool for translating Qt applications

Added to portage

2024-11-22

linguist-tools - 5.15.16
Ebuild name:

dev-qt/linguist-tools-5.15.16

Description

Tools for working with Qt translation data files

Added to portage

2024-11-22

linode-cli - 5.55.0
Ebuild name:

app-admin/linode-cli-5.55.0

Description

Official command-line interface for interacting with the Linode API

Added to portage

2024-11-22

loksh - 7.6
Ebuild name:

app-shells/loksh-7.6

Description

Linux port of OpenBSD's ksh

Added to portage

2024-11-22

minitest - 5.25.2
Ebuild name:

dev-ruby/minitest-5.25.2

Description

minitest/unit is a small and fast replacement for ruby's huge and slow tes

Added to portage

2024-11-22

mutex_m - 0.3.0
Ebuild name:

dev-ruby/mutex_m-0.3.0

Description

Mixin to extend objects to be handled like a Mutex

Added to portage

2024-11-22

oniguruma - 6.9.9-r1
Ebuild name:

dev-libs/oniguruma-6.9.9-r1

Description

Regular expression library for different character encodings

Added to portage

2024-11-22

opam-0install-cudf - 0.5.0-r2
Ebuild name:

dev-ml/opam-0install-cudf-0.5.0-r2

Description

Opam solver using 0install backend using the CUDF interface

Added to portage

2024-11-22

opam-common - 2.2.1
Ebuild name:

dev-ml/opam-common-2.2.1

Description

Core libraries for opam

Added to portage

2024-11-22

otpcalc - 0.98.1
Ebuild name:

sys-auth/otpcalc-0.98.1

Description

A One Time Password and S/Key calculator for GTK+

Added to portage

2024-11-22

pixeltool - 5.15.16
Ebuild name:

dev-qt/pixeltool-5.15.16

Description

Qt screen magnifier

Added to portage

2024-11-22

pkg-config - 1.5.8
Ebuild name:

dev-ruby/pkg-config-1.5.8

Description

A pkg-config implementation by Ruby

Added to portage

2024-11-22

plantuml - 1.2024.8
Ebuild name:

media-gfx/plantuml-1.2024.8

Description

Draw UML diagrams using a simple and human readable text description

Added to portage

2024-11-22

postgresql - 12.22
Ebuild name:

dev-db/postgresql-12.22

Description

PostgreSQL RDBMS

Added to portage

2024-11-22

postgresql - 13.18
Ebuild name:

dev-db/postgresql-13.18

Description

PostgreSQL RDBMS

Added to portage

2024-11-22

postgresql - 14.15
Ebuild name:

dev-db/postgresql-14.15

Description

PostgreSQL RDBMS

Added to portage

2024-11-22

postgresql - 15.10
Ebuild name:

dev-db/postgresql-15.10

Description

PostgreSQL RDBMS

Added to portage

2024-11-22

postgresql - 16.6
Ebuild name:

dev-db/postgresql-16.6

Description

PostgreSQL RDBMS

Added to portage

2024-11-22

postgresql - 17.2
Ebuild name:

dev-db/postgresql-17.2

Description

PostgreSQL RDBMS

Added to portage

2024-11-22

pydantic - 2.10.1
Ebuild name:

dev-python/pydantic-2.10.1

Description

Data parsing and validation using Python type hints

Added to portage

2024-11-22

pydantic-core - 2.27.1
Ebuild name:

dev-python/pydantic-core-2.27.1

Description

Core validation logic for pydantic written in Rust

Added to portage

2024-11-22

pytools - 2024.1.16
Ebuild name:

dev-python/pytools-2024.1.16

Description

Collection of tools missing from the Python standard library

Added to portage

2024-11-22

qdbus - 5.15.16
Ebuild name:

dev-qt/qdbus-5.15.16

Description

Interface to Qt applications communicating over D-Bus

Added to portage

2024-11-22

qdbusviewer - 5.15.16
Ebuild name:

dev-qt/qdbusviewer-5.15.16

Description

Graphical tool that lets you introspect D-Bus objects and messages

Added to portage

2024-11-22

qdoc - 5.15.16
Ebuild name:

dev-qt/qdoc-5.15.16

Description

Qt documentation generator

Added to portage

2024-11-22

qt3d - 5.15.16
Ebuild name:

dev-qt/qt3d-5.15.16

Description

3D rendering module for the Qt5 framework

Added to portage

2024-11-22

qtbluetooth - 5.15.16
Ebuild name:

dev-qt/qtbluetooth-5.15.16

Description

Bluetooth support library for the Qt5 framework

Added to portage

2024-11-22

qtcharts - 5.15.16
Ebuild name:

dev-qt/qtcharts-5.15.16

Description

Chart component library for the Qt5 framework

Added to portage

2024-11-22

qtconcurrent - 5.15.16
Ebuild name:

dev-qt/qtconcurrent-5.15.16

Description

Multi-threading concurrence support library for the Qt5 framework

Added to portage

2024-11-22

qtcore - 5.15.16
Ebuild name:

dev-qt/qtcore-5.15.16

Description

Cross-platform application development framework

Added to portage

2024-11-22

qtdatavis3d - 5.15.16
Ebuild name:

dev-qt/qtdatavis3d-5.15.16

Description

3D data visualization library for the Qt5 framework

Added to portage

2024-11-22

qtdbus - 5.15.16
Ebuild name:

dev-qt/qtdbus-5.15.16

Description

Qt5 module for inter-process communication over the D-Bus protocol

Added to portage

2024-11-22

qtdeclarative - 5.15.16
Ebuild name:

dev-qt/qtdeclarative-5.15.16

Description

The QML and Quick modules for the Qt5 framework

Added to portage

2024-11-22

qtdiag - 5.15.16
Ebuild name:

dev-qt/qtdiag-5.15.16

Description

Tool for reporting diagnostic information about Qt and its environment

Added to portage

2024-11-22

qtgamepad - 5.15.16
Ebuild name:

dev-qt/qtgamepad-5.15.16

Description

Qt module to support gamepad hardware

Added to portage

2024-11-22

qtgraphicaleffects - 5.15.16
Ebuild name:

dev-qt/qtgraphicaleffects-5.15.16

Description

Set of QML types for adding visual effects to user interfaces

Added to portage

2024-11-22

qtgui - 5.15.16
Ebuild name:

dev-qt/qtgui-5.15.16

Description

The GUI module and platform plugins for the Qt5 framework

Added to portage

2024-11-22

qthelp - 5.15.16
Ebuild name:

dev-qt/qthelp-5.15.16

Description

Qt5 module for integrating online documentation into applications

Added to portage

2024-11-22

qtimageformats - 5.15.16
Ebuild name:

dev-qt/qtimageformats-5.15.16

Description

Additional format plugins for the Qt image I/O system

Added to portage

2024-11-22

qtmultimedia - 5.15.16
Ebuild name:

dev-qt/qtmultimedia-5.15.16

Description

Multimedia (audio, video, radio, camera) library for the Qt5 framework

Added to portage

2024-11-22

qtnetwork - 5.15.16
Ebuild name:

dev-qt/qtnetwork-5.15.16

Description

Network abstraction library for the Qt5 framework

Added to portage

2024-11-22

qtnetworkauth - 5.15.16
Ebuild name:

dev-qt/qtnetworkauth-5.15.16

Description

Network authorization library for the Qt5 framework

Added to portage

2024-11-22

qtopengl - 5.15.16
Ebuild name:

dev-qt/qtopengl-5.15.16

Description

OpenGL support library for the Qt5 framework (deprecated)

Added to portage

2024-11-22

qtpaths - 5.15.16
Ebuild name:

dev-qt/qtpaths-5.15.16

Description

Command line client to QStandardPaths

Added to portage

2024-11-22

qtplugininfo - 5.15.16
Ebuild name:

dev-qt/qtplugininfo-5.15.16

Description

Qt5 plugin metadata dumper

Added to portage

2024-11-22

qtpositioning - 5.15.16
Ebuild name:

dev-qt/qtpositioning-5.15.16

Description

Physical position determination library for the Qt5 framework

Added to portage

2024-11-22

qtprintsupport - 5.15.16
Ebuild name:

dev-qt/qtprintsupport-5.15.16

Description

Printing support library for the Qt5 framework

Added to portage

2024-11-22

qtquickcontrols - 5.15.16
Ebuild name:

dev-qt/qtquickcontrols-5.15.16

Description

Set of Qt Quick controls to create complete user interfaces (depreca

Added to portage

2024-11-22

qtquickcontrols2 - 5.15.16
Ebuild name:

dev-qt/qtquickcontrols2-5.15.16

Description

Set of next generation Qt Quick controls for the Qt5 framework

Added to portage

2024-11-22

qtquicktimeline - 5.15.16
Ebuild name:

dev-qt/qtquicktimeline-5.15.16

Description

Qt module for keyframe-based timeline construction

Added to portage

2024-11-22

qtscript - 5.15.16
Ebuild name:

dev-qt/qtscript-5.15.16

Description

Application scripting library for the Qt5 framework (deprecated)

Added to portage

2024-11-22

qtscxml - 5.15.16
Ebuild name:

dev-qt/qtscxml-5.15.16

Description

State Chart XML (SCXML) support library for the Qt5 framework

Added to portage

2024-11-22

qtsensors - 5.15.16
Ebuild name:

dev-qt/qtsensors-5.15.16

Description

Hardware sensor access library for the Qt5 framework

Added to portage

2024-11-22

qtserialbus - 5.15.16
Ebuild name:

dev-qt/qtserialbus-5.15.16

Description

Qt module to access CAN, ModBus, and other industrial serial buses and p

Added to portage

2024-11-22

qtserialport - 5.15.16
Ebuild name:

dev-qt/qtserialport-5.15.16

Description

Serial port abstraction library for the Qt5 framework

Added to portage

2024-11-22

qtspeech - 5.15.16
Ebuild name:

dev-qt/qtspeech-5.15.16

Description

Text-to-speech library for the Qt5 framework

Added to portage

2024-11-22

qtsql - 5.15.16
Ebuild name:

dev-qt/qtsql-5.15.16

Description

SQL abstraction library for the Qt5 framework

Added to portage

2024-11-22

qtsvg - 5.15.16
Ebuild name:

dev-qt/qtsvg-5.15.16

Description

SVG rendering library for the Qt5 framework

Added to portage

2024-11-22

qttest - 5.15.16
Ebuild name:

dev-qt/qttest-5.15.16

Description

Unit testing library for the Qt5 framework

Added to portage

2024-11-22

qttranslations - 5.15.16
Ebuild name:

dev-qt/qttranslations-5.15.16

Description

Translation files for the Qt5 framework

Added to portage

2024-11-22

qtvirtualkeyboard - 5.15.16
Ebuild name:

dev-qt/qtvirtualkeyboard-5.15.16

Description

Customizable input framework and virtual keyboard for Qt

Added to portage

2024-11-22

qtwaylandscanner - 5.15.16
Ebuild name:

dev-qt/qtwaylandscanner-5.15.16

Description

Tool that generates certain boilerplate C++ code from Wayland proto

Added to portage

2024-11-22

qtwebchannel - 5.15.16
Ebuild name:

dev-qt/qtwebchannel-5.15.16

Description

Qt5 module for integrating C++ and QML applications with HTML/JavaScrip

Added to portage

2024-11-22

qtwebengine - 5.15.16_p20241115
Ebuild name:

dev-qt/qtwebengine-5.15.16_p20241115

Description

Library for rendering dynamic web content in Qt5 C++ and QML a

Added to portage

2024-11-22

qtwebsockets - 5.15.16
Ebuild name:

dev-qt/qtwebsockets-5.15.16

Description

Implementation of the WebSocket protocol for the Qt5 framework

Added to portage

2024-11-22

qtwebview - 5.15.16
Ebuild name:

dev-qt/qtwebview-5.15.16

Description

Module for displaying web content in a QML application using the Qt5 frame

Added to portage

2024-11-22

qtwidgets - 5.15.16
Ebuild name:

dev-qt/qtwidgets-5.15.16

Description

Set of components for creating classic desktop-style UIs for the Qt5 frame

Added to portage

2024-11-22

qtx11extras - 5.15.16
Ebuild name:

dev-qt/qtx11extras-5.15.16

Description

Linux/X11-specific support library for the Qt5 framework

Added to portage

2024-11-22

qtxml - 5.15.16
Ebuild name:

dev-qt/qtxml-5.15.16

Description

Implementation of SAX and DOM for the Qt5 framework

Added to portage

2024-11-22

qtxmlpatterns - 5.15.16
Ebuild name:

dev-qt/qtxmlpatterns-5.15.16

Description

XPath, XQuery, XSLT, and XML Schema validation library for the Qt5 fra

Added to portage

2024-11-22

root - 6.32.08
Ebuild name:

sci-physics/root-6.32.08

Description

C++ data analysis framework and interpreter from CERN

Added to portage

2024-11-22

root - 6.34.9999
Ebuild name:

sci-physics/root-6.34.9999

Description

C++ data analysis framework and interpreter from CERN

Added to portage

2024-11-22

seatd - 0.9.1
Ebuild name:

sys-auth/seatd-0.9.1

Description

Minimal seat management daemon and universal library

Added to portage

2024-11-22

setuptools - 75.6.0-r1
Ebuild name:

dev-python/setuptools-75.6.0-r1

Description

Collection of extensions to Distutils

Added to portage

2024-11-22

systemtap - 5.2
Ebuild name:

dev-debug/systemtap-5.2

Description

Linux trace/probe tool

Added to portage

2024-11-22

teckit - 2.5.12
Ebuild name:

app-text/teckit-2.5.12

Description

Text Encoding Conversion toolkit

Added to portage

2024-11-22

tornado - 6.4.2
Ebuild name:

dev-python/tornado-6.4.2

Description

Python web framework and asynchronous networking library

Added to portage

2024-11-22

vanilla-sources - 6.1.119
Ebuild name:

sys-kernel/vanilla-sources-6.1.119

Description

Full sources for the Linux kernel

Added to portage

2024-11-22

vanilla-sources - 6.11.10
Ebuild name:

sys-kernel/vanilla-sources-6.11.10

Description

Full sources for the Linux kernel

Added to portage

2024-11-22

vanilla-sources - 6.12.1
Ebuild name:

sys-kernel/vanilla-sources-6.12.1

Description

Full sources for the Linux kernel

Added to portage

2024-11-22

vanilla-sources - 6.6.63
Ebuild name:

sys-kernel/vanilla-sources-6.6.63

Description

Full sources for the Linux kernel

Added to portage

2024-11-22

winbox - 4.0_beta12
Ebuild name:

app-admin/winbox-4.0_beta12

Description

Management Software for MikroTik RouterOS

Added to portage

2024-11-22

xca - 2.7.0
Ebuild name:

app-crypt/xca-2.7.0

Description

A GUI to OpenSSL, RSA public keys, certificates, signing requests etc

Added to portage

2024-11-22

xca - 2.8.0
Ebuild name:

app-crypt/xca-2.8.0

Description

A GUI to OpenSSL, RSA public keys, certificates, signing requests etc

Added to portage

2024-11-22

xmlm - 1.4.0
Ebuild name:

dev-ml/xmlm-1.4.0

Description

Streaming XML codec for OCaml

Added to portage

2024-11-22

yarl - 1.18.0
Ebuild name:

dev-python/yarl-1.18.0

Description

Yet another URL library

Added to portage

2024-11-22

zeroconf - 0.136.2
Ebuild name:

dev-python/zeroconf-0.136.2

Description

Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi comp

Added to portage

2024-11-22

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