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:

81870

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-03
bash-completion - 2.17.0
Ebuild name:

app-shells/bash-completion-2.17.0

Description

Programmable Completion for bash

Added to portage

2025-11-03

bitarray - 3.8.0
Ebuild name:

dev-python/bitarray-3.8.0

Description

Efficient arrays of booleans -- C extension

Added to portage

2025-11-03

blessed - 1.23.0
Ebuild name:

dev-python/blessed-1.23.0

Description

Library for making terminal apps using colors, keyboard input and positio

Added to portage

2025-11-03

borgmatic - 2.0.11
Ebuild name:

app-backup/borgmatic-2.0.11

Description

Automatically create, prune and verify backups with borgbackup

Added to portage

2025-11-03

cpp-httplib - 0.27.0
Ebuild name:

dev-cpp/cpp-httplib-0.27.0

Description

C++ HTTP/HTTPS server and client library

Added to portage

2025-11-03

dhcpcd-ui - 0.7.9-r1
Ebuild name:

net-misc/dhcpcd-ui-0.7.9-r1

Description

Desktop notification and configuration for dhcpcd

Added to portage

2025-11-03

dist-kernel - 6.12.57
Ebuild name:

virtual/dist-kernel-6.12.57

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-11-03

dist-kernel - 6.17.7
Ebuild name:

virtual/dist-kernel-6.17.7

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-11-03

dist-kernel - 6.6.116
Ebuild name:

virtual/dist-kernel-6.6.116

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-11-03

environs - 14.5.0
Ebuild name:

dev-python/environs-14.5.0

Description

Python library for simplified environment variable parsing

Added to portage

2025-11-03

freepg - 2.5.13
Ebuild name:

app-crypt/freepg-2.5.13

Description

GnuPG fork with improved RFC9850 compatibility

Added to portage

2025-11-03

fzf - 0.66.1
Ebuild name:

app-shells/fzf-0.66.1

Description

General-purpose command-line fuzzy finder, written in Golang

Added to portage

2025-11-03

gcc - 16.0.0_p20251102
Ebuild name:

sys-devel/gcc-16.0.0_p20251102

Description

The GNU Compiler Collection

Added to portage

2025-11-03

gentoo-kernel - 6.12.57
Ebuild name:

sys-kernel/gentoo-kernel-6.12.57

Description

Linux kernel built with Gentoo patches

Added to portage

2025-11-03

gentoo-kernel - 6.17.7
Ebuild name:

sys-kernel/gentoo-kernel-6.17.7

Description

Linux kernel built with Gentoo patches

Added to portage

2025-11-03

gentoo-kernel - 6.6.116
Ebuild name:

sys-kernel/gentoo-kernel-6.6.116

Description

Linux kernel built with Gentoo patches

Added to portage

2025-11-03

gentoo-kernel-bin - 6.12.57
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.57

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-11-03

gentoo-kernel-bin - 6.17.7
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.17.7

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-11-03

gentoo-kernel-bin - 6.6.116
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.116

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-11-03

gentoo-sources - 6.12.57
Ebuild name:

sys-kernel/gentoo-sources-6.12.57

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-11-03

gentoo-sources - 6.17.7
Ebuild name:

sys-kernel/gentoo-sources-6.17.7

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-11-03

gentoo-sources - 6.6.116
Ebuild name:

sys-kernel/gentoo-sources-6.6.116

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-11-03

git-sources - 6.18_rc4
Ebuild name:

sys-kernel/git-sources-6.18_rc4

Description

The very latest -git version of the Linux kernel

Added to portage

2025-11-03

hypothesis - 6.144.0
Ebuild name:

dev-python/hypothesis-6.144.0

Description

A library for property based testing

Added to portage

2025-11-03

katarakt - 0.3
Ebuild name:

app-text/katarakt-0.3

Description

A simple PDF viewer designed to use as much available screen space as possibl

Added to portage

2025-11-03

kitty - 0.44.0
Ebuild name:

x11-terms/kitty-0.44.0

Description

Fast, feature-rich, GPU-based terminal

Added to portage

2025-11-03

kitty-shell-integration - 0.44.0
Ebuild name:

x11-terms/kitty-shell-integration-0.44.0

Description

Shell integration scripts for kitty, a GPU-based terminal

Added to portage

2025-11-03

kitty-terminfo - 0.44.0
Ebuild name:

x11-terms/kitty-terminfo-0.44.0

Description

Terminfo for kitty, a GPU-based terminal emulator

Added to portage

2025-11-03

libprojectm - 3.1.12-r4
Ebuild name:

media-libs/libprojectm-3.1.12-r4

Description

Graphical music visualization plugin similar to milkdrop

Added to portage

2025-11-03

moto - 5.1.16
Ebuild name:

dev-python/moto-5.1.16

Description

Mock library for boto

Added to portage

2025-11-03

nextcloud - 31.0.10
Ebuild name:

www-apps/nextcloud-31.0.10

Description

Personal cloud that runs on your own server

Added to portage

2025-11-03

postfix - 3.11_pre20251102
Ebuild name:

mail-mta/postfix-3.11_pre20251102

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2025-11-03

powerline - 2.5_p20221110
Ebuild name:

app-emacs/powerline-2.5_p20221110

Description

GNU Emacs version of the Vim powerline

Added to portage

2025-11-03

psutil - 7.1.3
Ebuild name:

dev-python/psutil-7.1.3

Description

Retrieve information on running processes and system utilization

Added to portage

2025-11-03

railties - 7.1.6-r1
Ebuild name:

dev-ruby/railties-7.1.6-r1

Description

Tools for creating, working with, and running Rails applications

Added to portage

2025-11-03

railties - 7.2.3-r1
Ebuild name:

dev-ruby/railties-7.2.3-r1

Description

Tools for creating, working with, and running Rails applications

Added to portage

2025-11-03

rgbds - 1.0.0
Ebuild name:

dev-util/rgbds-1.0.0

Description

Rednex Game Boy Development System

Added to portage

2025-11-03

smplayer - 25.6.0_p20250903
Ebuild name:

media-video/smplayer-25.6.0_p20250903

Description

Great Qt GUI front-end for mplayer/mpv

Added to portage

2025-11-03

sqlcl-bin - 25.2.2.199.0918
Ebuild name:

dev-db/sqlcl-bin-25.2.2.199.0918

Description

Oracle SQLcl is the new SQL*Plus

Added to portage

2025-11-03

vanilla-kernel - 6.12.57
Ebuild name:

sys-kernel/vanilla-kernel-6.12.57

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-11-03

vanilla-kernel - 6.17.7
Ebuild name:

sys-kernel/vanilla-kernel-6.17.7

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-11-03

vanilla-kernel - 6.6.116
Ebuild name:

sys-kernel/vanilla-kernel-6.6.116

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-11-03

vanilla-sources - 6.12.57
Ebuild name:

sys-kernel/vanilla-sources-6.12.57

Description

Full sources for the Linux kernel

Added to portage

2025-11-03

vanilla-sources - 6.17.7
Ebuild name:

sys-kernel/vanilla-sources-6.17.7

Description

Full sources for the Linux kernel

Added to portage

2025-11-03

vanilla-sources - 6.6.116
Ebuild name:

sys-kernel/vanilla-sources-6.6.116

Description

Full sources for the Linux kernel

Added to portage

2025-11-03

2025-11-02
actioncable - 8.0.4
Ebuild name:

dev-ruby/actioncable-8.0.4

Description

Integrated WebSockets for Rails

Added to portage

2025-11-02

actionmailbox - 8.0.4
Ebuild name:

dev-ruby/actionmailbox-8.0.4

Description

Framework for designing email-service layers

Added to portage

2025-11-02

actionmailer - 8.0.4
Ebuild name:

dev-ruby/actionmailer-8.0.4

Description

Framework for designing email-service layers

Added to portage

2025-11-02

actionpack - 8.0.4
Ebuild name:

dev-ruby/actionpack-8.0.4

Description

Eases web-request routing, handling, and response

Added to portage

2025-11-02

actiontext - 8.0.4
Ebuild name:

dev-ruby/actiontext-8.0.4

Description

Edit and display rich text in Rails applications

Added to portage

2025-11-02

actionview - 8.0.4
Ebuild name:

dev-ruby/actionview-8.0.4

Description

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

Added to portage

2025-11-02

activejob - 8.0.4
Ebuild name:

dev-ruby/activejob-8.0.4

Description

Job framework with pluggable queues

Added to portage

2025-11-02

activemodel - 8.0.4
Ebuild name:

dev-ruby/activemodel-8.0.4

Description

Toolkit for building modeling frameworks like Active Record and Active R

Added to portage

2025-11-02

activerecord - 8.0.4
Ebuild name:

dev-ruby/activerecord-8.0.4

Description

Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM

Added to portage

2025-11-02

activestorage - 8.0.4
Ebuild name:

dev-ruby/activestorage-8.0.4

Description

Attach cloud and local files in Rails applications

Added to portage

2025-11-02

activesupport - 8.0.4
Ebuild name:

dev-ruby/activesupport-8.0.4

Description

Utility Classes and Extension to the Standard Library

Added to portage

2025-11-02

asio - 1.36.0
Ebuild name:

dev-cpp/asio-1.36.0

Description

Asynchronous Network Library

Added to portage

2025-11-02

bash - 5.4_alpha_pre20251027
Ebuild name:

app-shells/bash-5.4_alpha_pre20251027

Description

The standard GNU Bourne again shell

Added to portage

2025-11-02

beartype - 0.22.5
Ebuild name:

dev-python/beartype-0.22.5

Description

Unbearably fast runtime type checking in pure Python

Added to portage

2025-11-02

cwcwidth - 0.1.12
Ebuild name:

dev-python/cwcwidth-0.1.12

Description

Python bindings for wc(s)width

Added to portage

2025-11-02

designer - 5.15.18
Ebuild name:

dev-qt/designer-5.15.18

Description

WYSIWYG tool for designing and building graphical user interfaces with QtWi

Added to portage

2025-11-02

elogind - 255.17-r1
Ebuild name:

sys-auth/elogind-255.17-r1

Description

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

Added to portage

2025-11-02

freepg - 2.5.12_p1-r1
Ebuild name:

app-crypt/freepg-2.5.12_p1-r1

Description

GnuPG fork with improved RFC9850 compatibility

Added to portage

2025-11-02

gcc - 13.4.1_p20251030
Ebuild name:

sys-devel/gcc-13.4.1_p20251030

Description

The GNU Compiler Collection

Added to portage

2025-11-02

gcc - 14.3.1_p20251031
Ebuild name:

sys-devel/gcc-14.3.1_p20251031

Description

The GNU Compiler Collection

Added to portage

2025-11-02

gcc - 15.2.1_p20251101
Ebuild name:

sys-devel/gcc-15.2.1_p20251101

Description

The GNU Compiler Collection

Added to portage

2025-11-02

gnupg - 2.4.8-r2
Ebuild name:

app-crypt/gnupg-2.4.8-r2

Description

The GNU Privacy Guard, a GPL OpenPGP implementation

Added to portage

2025-11-02

gnupg - 2.5.13-r2
Ebuild name:

app-crypt/gnupg-2.5.13-r2

Description

The GNU Privacy Guard, a GPL OpenPGP implementation

Added to portage

2025-11-02

gpg - 0-r3
Ebuild name:

app-alternatives/gpg-0-r3

Description

gpg symlink

Added to portage

2025-11-02

gpg - 1-r3
Ebuild name:

app-alternatives/gpg-1-r3

Description

gpg symlink

Added to portage

2025-11-02

hishel - 1.1.1
Ebuild name:

dev-python/hishel-1.1.1

Description

An elegant HTTP Cache implementation for HTTPX and HTTP Core

Added to portage

2025-11-02

hypothesis - 6.143.0
Ebuild name:

dev-python/hypothesis-6.143.0

Description

A library for property based testing

Added to portage

2025-11-02

ipywidgets - 8.1.8
Ebuild name:

dev-python/ipywidgets-8.1.8

Description

IPython HTML widgets for Jupyter

Added to portage

2025-11-02

irb - 1.15.3
Ebuild name:

dev-ruby/irb-1.15.3

Description

Interactive Ruby command-line tool for REPL (Read Eval Print Loop)

Added to portage

2025-11-02

jupyterlab-widgets - 3.0.16
Ebuild name:

dev-python/jupyterlab-widgets-3.0.16

Description

Jupyter interactive widgets for JupyterLab

Added to portage

2025-11-02

kombu - 5.6.0
Ebuild name:

dev-python/kombu-5.6.0

Description

AMQP Messaging Framework for Python

Added to portage

2025-11-02

lego - 4.28.0
Ebuild name:

app-crypt/lego-4.28.0

Description

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

Added to portage

2025-11-02

levenshtein - 0.27.3
Ebuild name:

dev-python/levenshtein-0.27.3

Description

Functions for fast computation of Levenshtein distance, and edit oper

Added to portage

2025-11-02

libax25 - 0.0.12_rc5-r1
Ebuild name:

dev-libs/libax25-0.0.12_rc5-r1

Description

AX.25 library for hamradio applications

Added to portage

2025-11-02

libtmux - 0.47.0
Ebuild name:

dev-python/libtmux-0.47.0

Description

Typed library that provides an ORM wrapper for tmux, a terminal multiplex

Added to portage

2025-11-02

linguist-tools - 5.15.18
Ebuild name:

dev-qt/linguist-tools-5.15.18

Description

Tools for working with Qt translation data files

Added to portage

2025-11-02

marshmallow - 4.1.0
Ebuild name:

dev-python/marshmallow-4.1.0

Description

A library for converting to and from native Python datatypes

Added to portage

2025-11-02

mattermost-desktop-bin - 6.0.0_rc2
Ebuild name:

net-im/mattermost-desktop-bin-6.0.0_rc2

Description

Mattermost Desktop application

Added to portage

2025-11-02

mkdocs-material - 9.6.23
Ebuild name:

dev-python/mkdocs-material-9.6.23

Description

A Material Design theme for MkDocs

Added to portage

2025-11-02

nextcloud - 32.0.1
Ebuild name:

www-apps/nextcloud-32.0.1

Description

Personal cloud that runs on your own server

Added to portage

2025-11-02

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

sec-keys/openpgp-keys-gentoo-developers-20251027

Description

Gentoo Authority Keys (GLEP 79)

Added to portage

2025-11-02

pbs-installer - 2025.10.31
Ebuild name:

dev-python/pbs-installer-2025.10.31

Description

Installer for Python Build Standalone

Added to portage

2025-11-02

powerline - 2.5_p20221110
Ebuild name:

app-emacs/powerline-2.5_p20221110

Description

GNU Emacs version of the Vim powerline

Added to portage

2025-11-02

powershell - 0.3_pre20220402
Ebuild name:

app-emacs/powershell-0.3_pre20220402

Description

GNU Emacs mode for editing and running PowerShell code

Added to portage

2025-11-02

powershell - 0.3_pre20220805
Ebuild name:

app-emacs/powershell-0.3_pre20220805

Description

GNU Emacs mode for editing and running PowerShell code

Added to portage

2025-11-02

projectile - 2.9.1
Ebuild name:

app-emacs/projectile-2.9.1

Description

A project interaction library for Emacs

Added to portage

2025-11-02

qtconcurrent - 5.15.18
Ebuild name:

dev-qt/qtconcurrent-5.15.18

Description

Multi-threading concurrence support library for the Qt5 framework

Added to portage

2025-11-02

qtcore - 5.15.18
Ebuild name:

dev-qt/qtcore-5.15.18

Description

Cross-platform application development framework

Added to portage

2025-11-02

qtdbus - 5.15.18
Ebuild name:

dev-qt/qtdbus-5.15.18

Description

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

Added to portage

2025-11-02

qtdeclarative - 5.15.18
Ebuild name:

dev-qt/qtdeclarative-5.15.18

Description

The QML and Quick modules for the Qt5 framework

Added to portage

2025-11-02

qtgraphicaleffects - 5.15.18
Ebuild name:

dev-qt/qtgraphicaleffects-5.15.18

Description

Set of QML types for adding visual effects to user interfaces

Added to portage

2025-11-02

qtgui - 5.15.18
Ebuild name:

dev-qt/qtgui-5.15.18

Description

The GUI module and platform plugins for the Qt5 framework

Added to portage

2025-11-02

qthelp - 5.15.18
Ebuild name:

dev-qt/qthelp-5.15.18

Description

Qt5 module for integrating online documentation into applications

Added to portage

2025-11-02

qtimageformats - 5.15.18
Ebuild name:

dev-qt/qtimageformats-5.15.18

Description

Additional format plugins for the Qt image I/O system

Added to portage

2025-11-02

qtmultimedia - 5.15.18
Ebuild name:

dev-qt/qtmultimedia-5.15.18

Description

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

Added to portage

2025-11-02

qtnetwork - 5.15.18
Ebuild name:

dev-qt/qtnetwork-5.15.18

Description

Network abstraction library for the Qt5 framework

Added to portage

2025-11-02

qtopengl - 5.15.18
Ebuild name:

dev-qt/qtopengl-5.15.18

Description

OpenGL support library for the Qt5 framework (deprecated)

Added to portage

2025-11-02

qtpositioning - 5.15.18
Ebuild name:

dev-qt/qtpositioning-5.15.18

Description

Physical position determination library for the Qt5 framework

Added to portage

2025-11-02

qtprintsupport - 5.15.18
Ebuild name:

dev-qt/qtprintsupport-5.15.18

Description

Printing support library for the Qt5 framework

Added to portage

2025-11-02

qtquickcontrols - 5.15.18
Ebuild name:

dev-qt/qtquickcontrols-5.15.18

Description

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

Added to portage

2025-11-02

qtquickcontrols2 - 5.15.18
Ebuild name:

dev-qt/qtquickcontrols2-5.15.18

Description

Set of next generation Qt Quick controls for the Qt5 framework

Added to portage

2025-11-02

qtscript - 5.15.18
Ebuild name:

dev-qt/qtscript-5.15.18

Description

Application scripting library for the Qt5 framework (deprecated)

Added to portage

2025-11-02

qtscxml - 5.15.18
Ebuild name:

dev-qt/qtscxml-5.15.18

Description

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

Added to portage

2025-11-02

qtserialport - 5.15.18
Ebuild name:

dev-qt/qtserialport-5.15.18

Description

Serial port abstraction library for the Qt5 framework

Added to portage

2025-11-02

qtspeech - 5.15.18
Ebuild name:

dev-qt/qtspeech-5.15.18

Description

Text-to-speech library for the Qt5 framework

Added to portage

2025-11-02

qtsql - 5.15.18
Ebuild name:

dev-qt/qtsql-5.15.18

Description

SQL abstraction library for the Qt5 framework

Added to portage

2025-11-02

qtsvg - 5.15.18
Ebuild name:

dev-qt/qtsvg-5.15.18

Description

SVG rendering library for the Qt5 framework

Added to portage

2025-11-02

qttest - 5.15.18
Ebuild name:

dev-qt/qttest-5.15.18

Description

Unit testing library for the Qt5 framework

Added to portage

2025-11-02

qttranslations - 5.15.18
Ebuild name:

dev-qt/qttranslations-5.15.18

Description

Translation files for the Qt5 framework

Added to portage

2025-11-02

qtwayland - 5.15.18
Ebuild name:

dev-qt/qtwayland-5.15.18

Description

Wayland platform plugin for Qt

Added to portage

2025-11-02

qtwaylandscanner - 5.15.18
Ebuild name:

dev-qt/qtwaylandscanner-5.15.18

Description

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

Added to portage

2025-11-02

qtwebsockets - 5.15.18
Ebuild name:

dev-qt/qtwebsockets-5.15.18

Description

Implementation of the WebSocket protocol for the Qt5 framework

Added to portage

2025-11-02

qtwidgets - 5.15.18
Ebuild name:

dev-qt/qtwidgets-5.15.18

Description

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

Added to portage

2025-11-02

qtx11extras - 5.15.18
Ebuild name:

dev-qt/qtx11extras-5.15.18

Description

Linux/X11-specific support library for the Qt5 framework

Added to portage

2025-11-02

qtxml - 5.15.18
Ebuild name:

dev-qt/qtxml-5.15.18

Description

Implementation of SAX and DOM for the Qt5 framework

Added to portage

2025-11-02

qtxmlpatterns - 5.15.18
Ebuild name:

dev-qt/qtxmlpatterns-5.15.18

Description

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

Added to portage

2025-11-02

rails - 8.0.4
Ebuild name:

dev-ruby/rails-8.0.4

Description

ruby on rails is a web-application and persistence framework

Added to portage

2025-11-02

railties - 8.0.4
Ebuild name:

dev-ruby/railties-8.0.4

Description

Tools for creating, working with, and running Rails applications

Added to portage

2025-11-02

rapidfuzz - 3.14.3
Ebuild name:

dev-python/rapidfuzz-3.14.3

Description

Rapid fuzzy string matching in Python using various string metrics

Added to portage

2025-11-02

redis - 6.2.21
Ebuild name:

dev-db/redis-6.2.21

Description

A persistent caching system, key-value, and data structures database

Added to portage

2025-11-02

redis - 7.2.12
Ebuild name:

dev-db/redis-7.2.12

Description

A persistent caching system, key-value, and data structures database

Added to portage

2025-11-02

redis - 7.4.7
Ebuild name:

dev-db/redis-7.4.7

Description

A persistent caching system, key-value, and data structures database

Added to portage

2025-11-02

redis - 8.0.5
Ebuild name:

dev-db/redis-8.0.5

Description

A persistent caching system, key-value, and data structures database

Added to portage

2025-11-02

redis - 8.2.3
Ebuild name:

dev-db/redis-8.2.3

Description

A persistent caching system, key-value, and data structures database

Added to portage

2025-11-02

repl_type_completor - 0.1.12
Ebuild name:

dev-ruby/repl_type_completor-0.1.12

Description

Type based completion for REPL

Added to portage

2025-11-02

rich-argparse - 1.7.2
Ebuild name:

dev-python/rich-argparse-1.7.2

Description

Rich help formatters for argparse and optparse

Added to portage

2025-11-02

sigdigger - 0.3.0_p20251029
Ebuild name:

net-wireless/sigdigger-0.3.0_p20251029

Description

The free digital signal analyzer

Added to portage

2025-11-02

sigutils - 0.3.0_p20251029
Ebuild name:

net-wireless/sigutils-0.3.0_p20251029

Description

signal processing library for blind signal analysis and autom

Added to portage

2025-11-02

starlette - 0.50.0
Ebuild name:

dev-python/starlette-0.50.0

Description

The little ASGI framework that shines

Added to portage

2025-11-02

suscan - 0.3.0_p20251029
Ebuild name:

net-wireless/suscan-0.3.0_p20251029

Description

a realtime DSP processing library

Added to portage

2025-11-02

suwidgets - 0.3.0_p20251029
Ebuild name:

net-wireless/suwidgets-0.3.0_p20251029

Description

graphical library containing all SigDigger's custom widgets

Added to portage

2025-11-02

sybil - 9.2.0-r1
Ebuild name:

dev-python/sybil-9.2.0-r1

Description

Automated testing for the examples in your documentation

Added to portage

2025-11-02

tenacity - 9.1.2-r1
Ebuild name:

dev-python/tenacity-9.1.2-r1

Description

General-purpose retrying library

Added to portage

2025-11-02

trousers - 0.3.15
Ebuild name:

app-crypt/trousers-0.3.15

Description

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

Added to portage

2025-11-02

uri - 1.1.0
Ebuild name:

dev-ruby/uri-1.1.0

Description

URI is a module providing classes to handle Uniform Resource Identifiers

Added to portage

2025-11-02

widgetsnbextension - 4.0.15
Ebuild name:

dev-python/widgetsnbextension-4.0.15

Description

IPython HTML widgets for Jupyter

Added to portage

2025-11-02

yt-dlp - 2025.11.02_pre
Ebuild name:

net-misc/yt-dlp-2025.11.02_pre

Description

youtube-dl fork with additional features and fixes

Added to portage

2025-11-02

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