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:

85558

userrating:

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


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

Summary

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

Changelog

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

Note

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

System descriptions

Hardware

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

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

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

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

Software

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

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

Installation

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

I will only describe the modification on each step.

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

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

Booting:

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

Partitioning the hdd(s)

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

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

My HDD layout :

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

Setting up the raid 1

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

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

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

In case you want to mirror the swap:

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

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

start the raid by running

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

You should see something like this:

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

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

Applying a Filesystem to a Partition

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

Activate the Swap Partitions

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

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

Mounting

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

Configuring the Compile Options

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

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

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

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

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

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

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

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

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

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

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

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

Follow the installation manual including the Stage1 to Stage2 section.

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

Proceed from stage2 to stage3 the documented way.

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

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

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

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

configuring /etc/fstab

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

for the swap line use the following 2 lines

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

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

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

have the basic system running as you want.

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

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

comments

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



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-06-04
atuin - 18.16.1
Ebuild name:

app-shells/atuin-18.16.1

Description

Shell history manager supporting encrypted synchronisation

Added to portage

2026-06-04

autoconf - 2.13-r9
Ebuild name:

dev-build/autoconf-2.13-r9

Description

Used to create autoconfiguration files

Added to portage

2026-06-04

autoconf - 2.69-r11
Ebuild name:

dev-build/autoconf-2.69-r11

Description

Used to create autoconfiguration files

Added to portage

2026-06-04

autoconf - 2.71-r9
Ebuild name:

dev-build/autoconf-2.71-r9

Description

Used to create autoconfiguration files

Added to portage

2026-06-04

autoconf - 2.72-r7
Ebuild name:

dev-build/autoconf-2.72-r7

Description

Used to create autoconfiguration files

Added to portage

2026-06-04

autoconf - 2.73-r2
Ebuild name:

dev-build/autoconf-2.73-r2

Description

Used to create autoconfiguration files

Added to portage

2026-06-04

autoconf-vanilla - 2.13-r1
Ebuild name:

dev-build/autoconf-vanilla-2.13-r1

Description

Used to create autoconfiguration files

Added to portage

2026-06-04

autoconf-vanilla - 2.69-r2
Ebuild name:

dev-build/autoconf-vanilla-2.69-r2

Description

Used to create autoconfiguration files

Added to portage

2026-06-04

autoconf-vanilla - 2.71-r2
Ebuild name:

dev-build/autoconf-vanilla-2.71-r2

Description

Used to create autoconfiguration files

Added to portage

2026-06-04

autoconf-vanilla - 2.72-r2
Ebuild name:

dev-build/autoconf-vanilla-2.72-r2

Description

Used to create autoconfiguration files

Added to portage

2026-06-04

automake - 1.11.6-r5
Ebuild name:

dev-build/automake-1.11.6-r5

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-06-04

automake - 1.17-r3
Ebuild name:

dev-build/automake-1.17-r3

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-06-04

automake - 1.18.1-r1
Ebuild name:

dev-build/automake-1.18.1-r1

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-06-04

automake-vanilla - 1.11.6-r1
Ebuild name:

dev-build/automake-vanilla-1.11.6-r1

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-06-04

automake-vanilla - 1.15.1-r1
Ebuild name:

dev-build/automake-vanilla-1.15.1-r1

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-06-04

automake-vanilla - 1.16.5-r1
Ebuild name:

dev-build/automake-vanilla-1.16.5-r1

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-06-04

automake-vanilla - 1.17-r1
Ebuild name:

dev-build/automake-vanilla-1.17-r1

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-06-04

automake-vanilla - 1.18.1-r1
Ebuild name:

dev-build/automake-vanilla-1.18.1-r1

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2026-06-04

lwip - 2.2.1_p5
Ebuild name:

net-libs/lwip-2.2.1_p5

Description

Small independent implementation of the TCP/IP protocol suite

Added to portage

2026-06-04

lwip - 9999
Ebuild name:

net-libs/lwip-9999

Description

Small independent implementation of the TCP/IP protocol suite

Added to portage

2026-06-04

nextcloud - 33.0.5
Ebuild name:

www-apps/nextcloud-33.0.5

Description

Personal cloud that runs on your own server

Added to portage

2026-06-04

nextcloud-client - 33.0.5
Ebuild name:

net-misc/nextcloud-client-33.0.5

Description

Desktop Syncing Client for Nextcloud

Added to portage

2026-06-04

pdns - 5.1.0
Ebuild name:

net-dns/pdns-5.1.0

Description

The PowerDNS Daemon

Added to portage

2026-06-04

2026-06-03
Cpanel-JSON-XS - 4.410.0
Ebuild name:

dev-perl/Cpanel-JSON-XS-4.410.0

Description

cPanel fork of JSON fast and correct serializing

Added to portage

2026-06-03

MIME-tools - 5.517.0
Ebuild name:

dev-perl/MIME-tools-5.517.0

Description

A Perl module for parsing and creating MIME entities

Added to portage

2026-06-03

Sereal-Decoder - 5.6.0
Ebuild name:

dev-perl/Sereal-Decoder-5.6.0

Description

Fast, compact, powerful binary deserialization

Added to portage

2026-06-03

Sereal-Encoder - 5.6.0
Ebuild name:

dev-perl/Sereal-Encoder-5.6.0

Description

Fast, compact, powerful binary serialization

Added to portage

2026-06-03

Text-CSV_XS - 1.620.0
Ebuild name:

dev-perl/Text-CSV_XS-1.620.0

Description

Comma-separated values manipulation routines

Added to portage

2026-06-03

antimicrox - 3.6.1
Ebuild name:

games-util/antimicrox-3.6.1

Description

Graphical program used to map keyboard buttons and mouse controls to a

Added to portage

2026-06-03

awscli - 1.45.20
Ebuild name:

app-admin/awscli-1.45.20

Description

Universal Command Line Environment for AWS

Added to portage

2026-06-03

boto3 - 1.43.20
Ebuild name:

dev-python/boto3-1.43.20

Description

The AWS SDK for Python

Added to portage

2026-06-03

botocore - 1.43.20
Ebuild name:

dev-python/botocore-1.43.20

Description

Low-level, data-driven core of boto 3

Added to portage

2026-06-03

cadabra - 2.5.14_p1-r1
Ebuild name:

sci-mathematics/cadabra-2.5.14_p1-r1

Description

Field-theory motivated approach to computer algebra

Added to portage

2026-06-03

cbor2 - 6.1.2
Ebuild name:

dev-python/cbor2-6.1.2

Description

CBOR (de)serializer with extensive tag support

Added to portage

2026-06-03

cfn-lint - 1.51.3
Ebuild name:

dev-python/cfn-lint-1.51.3

Description

CloudFormation Linter

Added to portage

2026-06-03

closure-compiler-bin - 20260531
Ebuild name:

dev-lang/closure-compiler-bin-20260531

Description

JavaScript optimizing compiler

Added to portage

2026-06-03

cyme - 3.0.0
Ebuild name:

sys-apps/cyme-3.0.0

Description

List system USB buses and devices; a modern cross-platform `lsusb`

Added to portage

2026-06-03

datovka - 4.29.0
Ebuild name:

app-misc/datovka-4.29.0

Description

GUI to access the Czech data box e-government system

Added to portage

2026-06-03

dbus-fast - 5.0.17
Ebuild name:

dev-python/dbus-fast-5.0.17

Description

A faster version of dbus-next

Added to portage

2026-06-03

deno-bin - 2.8.2
Ebuild name:

dev-lang/deno-bin-2.8.2

Description

Modern runtime for JavaScript and TypeScript

Added to portage

2026-06-03

discord - 1.0.141
Ebuild name:

net-im/discord-1.0.141

Description

All-in-one voice and text chat for gamers

Added to portage

2026-06-03

distlib - 0.4.1
Ebuild name:

dev-python/distlib-0.4.1

Description

Low-level components of distutils2/packaging

Added to portage

2026-06-03

django-polymorphic - 4.11.5
Ebuild name:

dev-python/django-polymorphic-4.11.5

Description

Seamless Polymorphic Inheritance for Django Models

Added to portage

2026-06-03

django-redis - 7.0.0
Ebuild name:

dev-python/django-redis-7.0.0

Description

Full featured redis cache backend for Django

Added to portage

2026-06-03

dropbox - 254.4.2518
Ebuild name:

net-misc/dropbox-254.4.2518

Description

Dropbox daemon (pretends to be GUI-less)

Added to portage

2026-06-03

elogind - 255.27
Ebuild name:

sys-auth/elogind-255.27

Description

The systemd project's logind, extracted to a standalone package

Added to portage

2026-06-03

elogind - 257.16
Ebuild name:

sys-auth/elogind-257.16

Description

The systemd project's logind, extracted to a standalone package

Added to portage

2026-06-03

exim - 4.99.4-r1
Ebuild name:

mail-mta/exim-4.99.4-r1

Description

A highly configurable, drop-in replacement for sendmail

Added to portage

2026-06-03

faker - 40.21.0
Ebuild name:

dev-python/faker-40.21.0

Description

A Python package that generates fake data for you

Added to portage

2026-06-03

firefox - 151.0.3
Ebuild name:

www-client/firefox-151.0.3

Description

Firefox Web Browser

Added to portage

2026-06-03

firefox-bin - 151.0.3
Ebuild name:

www-client/firefox-bin-151.0.3

Description

Firefox Web Browser

Added to portage

2026-06-03

firefox-l10n - 151.0.3
Ebuild name:

www-client/firefox-l10n-151.0.3

Description

Firefox Web Browser's translation files

Added to portage

2026-06-03

fontconfig - 2.18.1
Ebuild name:

media-libs/fontconfig-2.18.1

Description

A library for configuring and customizing font access

Added to portage

2026-06-03

freeipmi - 1.6.18
Ebuild name:

sys-libs/freeipmi-1.6.18

Description

Provides Remote-Console and System Management Software as per IPMI v1.5/2.

Added to portage

2026-06-03

getmail - 6.19.12
Ebuild name:

net-mail/getmail-6.19.12

Description

A mail retriever with reliable Maildir and mbox delivery

Added to portage

2026-06-03

graphviz - 15.0.0
Ebuild name:

media-gfx/graphviz-15.0.0

Description

Open Source Graph Visualization Software

Added to portage

2026-06-03

idna - 3.18
Ebuild name:

dev-python/idna-3.18

Description

Internationalized Domain Names in Applications (IDNA)

Added to portage

2026-06-03

include-what-you-use - 0.26
Ebuild name:

dev-util/include-what-you-use-0.26

Description

Find unused include directives in C/C++ programs

Added to portage

2026-06-03

indilib - 2.2.2
Ebuild name:

sci-libs/indilib-2.2.2

Description

INDI Astronomical Control Protocol library

Added to portage

2026-06-03

krita - 6.0.2.1
Ebuild name:

media-gfx/krita-6.0.2.1

Description

Free digital painting application. Digital Painting, Creative Freedom

Added to portage

2026-06-03

kstars - 3.8.3
Ebuild name:

sci-astronomy/kstars-3.8.3

Description

Desktop Planetarium

Added to portage

2026-06-03

libdatovka - 0.7.3
Ebuild name:

app-misc/libdatovka-0.7.3

Description

Client library for accessing ISDS SOAP services

Added to portage

2026-06-03

libdrm - 2.4.134
Ebuild name:

x11-libs/libdrm-2.4.134

Description

X.Org libdrm library

Added to portage

2026-06-03

libunibreak - 7.0
Ebuild name:

dev-libs/libunibreak-7.0

Description

Line and word breaking library

Added to portage

2026-06-03

libva-intel-media-driver - 26.2.1
Ebuild name:

media-libs/libva-intel-media-driver-26.2.1

Description

Intel Media Driver for VA-API (iHD)

Added to portage

2026-06-03

libxkbcommon - 1.13.2
Ebuild name:

x11-libs/libxkbcommon-1.13.2

Description

Keymap handling library for toolkits and window systems

Added to portage

2026-06-03

mesa - 26.1.2
Ebuild name:

media-libs/mesa-26.1.2

Description

OpenGL-like graphic library for Linux

Added to portage

2026-06-03

mesa_clc - 26.1.2
Ebuild name:

dev-util/mesa_clc-26.1.2

Description

mesa_clc tool used for building OpenCL C to SPIR-V

Added to portage

2026-06-03

mmm-mode - 0.5.11
Ebuild name:

app-emacs/mmm-mode-0.5.11

Description

Enables the user to edit different parts of a file in different major mod

Added to portage

2026-06-03

mod_wsgi - 6.0.2
Ebuild name:

www-apache/mod_wsgi-6.0.2

Description

An Apache2 module for running Python WSGI applications

Added to portage

2026-06-03

notion - 4.0.5
Ebuild name:

x11-wm/notion-4.0.5

Description

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

Added to portage

2026-06-03

numpy - 2.5.0_rc1
Ebuild name:

dev-python/numpy-2.5.0_rc1

Description

Fast array and numerical python library

Added to portage

2026-06-03

openpgp-keys-zsh - 2026.05.31
Ebuild name:

sec-keys/openpgp-keys-zsh-2026.05.31

Description

PGP keys used to sign ZSH releases

Added to portage

2026-06-03

openvpn - 2.7.4
Ebuild name:

net-vpn/openvpn-2.7.4

Description

Robust and highly flexible tunneling application compatible with many OSes

Added to portage

2026-06-03

pdfarranger - 1.14.0
Ebuild name:

app-text/pdfarranger-1.14.0

Description

Merge or split pdfs; rearrange, rotate, crop pages

Added to portage

2026-06-03

postfix - 3.12_pre20260602
Ebuild name:

mail-mta/postfix-3.12_pre20260602

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2026-06-03

python - 0.3.15.0_beta2
Ebuild name:

dev-lang/python-0.3.15.0_beta2

Description

Freethreading (no-GIL) version of Python programming language

Added to portage

2026-06-03

python - 3.15.0_beta2
Ebuild name:

dev-lang/python-3.15.0_beta2

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2026-06-03

python-tests - 0.3.15.0_beta2
Ebuild name:

dev-python/python-tests-0.3.15.0_beta2

Description

Test modules from dev-lang/python

Added to portage

2026-06-03

python-tests - 3.15.0_beta2
Ebuild name:

dev-python/python-tests-3.15.0_beta2

Description

Test modules from dev-lang/python

Added to portage

2026-06-03

qrupdate - 1.1.5
Ebuild name:

sci-libs/qrupdate-1.1.5

Description

Library for updating of QR and Cholesky decompositions

Added to portage

2026-06-03

qt3d - 6.12.9999
Ebuild name:

dev-qt/qt3d-6.12.9999

Description

3D rendering module for the Qt6 framework

Added to portage

2026-06-03

qt5compat - 6.12.9999
Ebuild name:

dev-qt/qt5compat-6.12.9999

Description

Qt module containing the unsupported Qt 5 APIs

Added to portage

2026-06-03

qtbase - 6.12.9999
Ebuild name:

dev-qt/qtbase-6.12.9999

Description

Cross-platform application development framework

Added to portage

2026-06-03

qtcharts - 6.12.9999
Ebuild name:

dev-qt/qtcharts-6.12.9999

Description

Chart component library for the Qt6 framework

Added to portage

2026-06-03

qtconnectivity - 6.12.9999
Ebuild name:

dev-qt/qtconnectivity-6.12.9999

Description

Bluetooth and NFC support library for the Qt6 framework

Added to portage

2026-06-03

qtdeclarative - 6.12.9999
Ebuild name:

dev-qt/qtdeclarative-6.12.9999

Description

Qt Declarative (Quick 2)

Added to portage

2026-06-03

qtgraphs - 6.12.9999
Ebuild name:

dev-qt/qtgraphs-6.12.9999

Description

Graphs component library for the Qt6 framework

Added to portage

2026-06-03

qthttpserver - 6.12.9999
Ebuild name:

dev-qt/qthttpserver-6.12.9999

Description

HTTP server functionality for the Qt6 framework

Added to portage

2026-06-03

qtimageformats - 6.12.9999
Ebuild name:

dev-qt/qtimageformats-6.12.9999

Description

Additional format plugins for the Qt image I/O system

Added to portage

2026-06-03

qtlanguageserver - 6.12.9999
Ebuild name:

dev-qt/qtlanguageserver-6.12.9999

Description

Implementation of the Language Server Protocol for Qt

Added to portage

2026-06-03

qtlocation - 6.12.9999
Ebuild name:

dev-qt/qtlocation-6.12.9999

Description

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

Added to portage

2026-06-03

qtmultimedia - 6.12.9999
Ebuild name:

dev-qt/qtmultimedia-6.12.9999

Description

Multimedia (audio, video, radio, camera) library for the Qt6 framewor

Added to portage

2026-06-03

qtnetworkauth - 6.12.9999
Ebuild name:

dev-qt/qtnetworkauth-6.12.9999

Description

Network authorization library for the Qt6 framework

Added to portage

2026-06-03

qtpositioning - 6.12.9999
Ebuild name:

dev-qt/qtpositioning-6.12.9999

Description

Physical position determination library for the Qt6 framework

Added to portage

2026-06-03

qtquick3d - 6.12.9999
Ebuild name:

dev-qt/qtquick3d-6.12.9999

Description

Qt module and API for defining 3D content in Qt QuickTools

Added to portage

2026-06-03

qtquicktimeline - 6.12.9999
Ebuild name:

dev-qt/qtquicktimeline-6.12.9999

Description

Qt module for keyframe-based timeline construction

Added to portage

2026-06-03

qtremoteobjects - 6.12.9999
Ebuild name:

dev-qt/qtremoteobjects-6.12.9999

Description

Inter-Process Communication (IPC) library for the Qt6 framework

Added to portage

2026-06-03

qtscxml - 6.12.9999
Ebuild name:

dev-qt/qtscxml-6.12.9999

Description

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

Added to portage

2026-06-03

qtsensors - 6.12.9999
Ebuild name:

dev-qt/qtsensors-6.12.9999

Description

Hardware sensor access library for the Qt6 framework

Added to portage

2026-06-03

qtserialbus - 6.12.9999
Ebuild name:

dev-qt/qtserialbus-6.12.9999

Description

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

Added to portage

2026-06-03

qtserialport - 6.12.9999
Ebuild name:

dev-qt/qtserialport-6.12.9999

Description

Serial port abstraction library for the Qt6 framework

Added to portage

2026-06-03

qtshadertools - 6.12.9999
Ebuild name:

dev-qt/qtshadertools-6.12.9999

Description

Qt APIs and Tools for Graphics Pipelines

Added to portage

2026-06-03

qtspeech - 6.12.9999
Ebuild name:

dev-qt/qtspeech-6.12.9999

Description

Text-to-speech library for the Qt6 framework

Added to portage

2026-06-03

qtsvg - 6.12.9999
Ebuild name:

dev-qt/qtsvg-6.12.9999

Description

SVG rendering library for the Qt6 framework

Added to portage

2026-06-03

qttools - 6.12.9999
Ebuild name:

dev-qt/qttools-6.12.9999

Description

Qt Tools Collection

Added to portage

2026-06-03

qttranslations - 6.12.9999
Ebuild name:

dev-qt/qttranslations-6.12.9999

Description

Translation files for the Qt6 framework

Added to portage

2026-06-03

qtvirtualkeyboard - 6.12.9999
Ebuild name:

dev-qt/qtvirtualkeyboard-6.12.9999

Description

Customizable input framework and virtual keyboard for Qt

Added to portage

2026-06-03

qtwayland - 6.12.9999
Ebuild name:

dev-qt/qtwayland-6.12.9999

Description

Toolbox for making Qt based Wayland compositors

Added to portage

2026-06-03

qtwebchannel - 6.12.9999
Ebuild name:

dev-qt/qtwebchannel-6.12.9999

Description

Qt WebChannel

Added to portage

2026-06-03

qtwebengine - 6.12.9999
Ebuild name:

dev-qt/qtwebengine-6.12.9999

Description

Library for rendering dynamic web content in Qt6 C++ and QML applicati

Added to portage

2026-06-03

qtwebsockets - 6.12.9999
Ebuild name:

dev-qt/qtwebsockets-6.12.9999

Description

Implementation of the WebSocket protocol for the Qt6 framework

Added to portage

2026-06-03

qtwebview - 6.12.9999
Ebuild name:

dev-qt/qtwebview-6.12.9999

Description

Module for displaying web content in a QML application using the Qt6 fra

Added to portage

2026-06-03

radicale - 3.7.4
Ebuild name:

www-apps/radicale-3.7.4

Description

A simple CalDAV calendar server

Added to portage

2026-06-03

scikit-learn - 1.9.0
Ebuild name:

dev-python/scikit-learn-1.9.0

Description

Machine learning library for Python

Added to portage

2026-06-03

seedfiles - 1.5.1
Ebuild name:

sys-apps/seedfiles-1.5.1

Description

Portable drop-in reimplementation of systemd-tmpfiles

Added to portage

2026-06-03

snowballstemmer - 3.1.1
Ebuild name:

dev-python/snowballstemmer-3.1.1

Description

Stemmer algorithms generated from Snowball algorithms

Added to portage

2026-06-03

spectre-meltdown-checker - 26.36.0602723
Ebuild name:

app-admin/spectre-meltdown-checker-26.36.0602723

Description

Spectre & Meltdown vulnerability/mitigation checke

Added to portage

2026-06-03

sysprof - 50.0
Ebuild name:

dev-util/sysprof-50.0

Description

System-wide Linux Profiler

Added to portage

2026-06-03

sysprof-capture - 50.0
Ebuild name:

dev-util/sysprof-capture-50.0

Description

Static library for sysprof capture data generation

Added to portage

2026-06-03

sysprof-common - 50.0
Ebuild name:

dev-util/sysprof-common-50.0

Description

Static library for sysprof capture data generation

Added to portage

2026-06-03

transmission - 4.1.2
Ebuild name:

net-p2p/transmission-4.1.2

Description

A fast, easy, and free BitTorrent client

Added to portage

2026-06-03

typer - 0.26.6
Ebuild name:

dev-python/typer-0.26.6

Description

Build great CLIs. Easy to code. Based on Python type hints

Added to portage

2026-06-03

urwid - 4.0.2
Ebuild name:

dev-python/urwid-4.0.2

Description

Curses-based user interface library for Python

Added to portage

2026-06-03

weasyprint - 69.0
Ebuild name:

dev-python/weasyprint-69.0

Description

Visual rendering engine for HTML and CSS that can export to PDF

Added to portage

2026-06-03

webob - 1.8.10
Ebuild name:

dev-python/webob-1.8.10

Description

WSGI request and response object

Added to portage

2026-06-03

xlsclients - 1.1.6
Ebuild name:

x11-apps/xlsclients-1.1.6

Description

X.Org xlsclients application

Added to portage

2026-06-03

xorg-server - 21.1.23
Ebuild name:

x11-base/xorg-server-21.1.23

Description

X.Org X servers

Added to portage

2026-06-03

xwayland - 24.1.12
Ebuild name:

x11-base/xwayland-24.1.12

Description

Standalone X server running under Wayland

Added to portage

2026-06-03

zsh - 5.9.1
Ebuild name:

app-shells/zsh-5.9.1

Description

UNIX Shell similar to the Korn shell

Added to portage

2026-06-03

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