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:

77796

userrating:

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


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

Summary

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

Changelog

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

Note

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

System descriptions

Hardware

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

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

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

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

Software

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

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

Installation

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

I will only describe the modification on each step.

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

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

Booting:

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

Partitioning the hdd(s)

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

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

My HDD layout :

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

Setting up the raid 1

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

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

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

In case you want to mirror the swap:

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

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

start the raid by running

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

You should see something like this:

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

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

Applying a Filesystem to a Partition

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

Activate the Swap Partitions

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

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

Mounting

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

Configuring the Compile Options

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

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

CHOST is set to i686-pc-linux-gnu

I use the following CFLAGS:

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

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

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

MAKEOPTS="-j5"

setting USE-Flags

I use the following line

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

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

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

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

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

Follow the installation manual including the Stage1 to Stage2 section.

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

Proceed from stage2 to stage3 the documented way.

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

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

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

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

configuring /etc/fstab

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

for the swap line use the following 2 lines

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

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

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

have the basic system running as you want.

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

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

comments

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

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-07-01
bfs - 4.0.8
Ebuild name:

sys-apps/bfs-4.0.8

Description

Breadth-first version of the UNIX find command

Added to portage

2025-07-01

gtk-doc - 1.34.0-r2
Ebuild name:

dev-util/gtk-doc-1.34.0-r2

Description

GTK+ Documentation Generator

Added to portage

2025-07-01

kissfft - 131.1.0-r3
Ebuild name:

sci-libs/kissfft-131.1.0-r3

Description

A Fast Fourier Transform (FFT) library that tries to Keep it Simple, St

Added to portage

2025-07-01

mediawiki - 1.39.13
Ebuild name:

www-apps/mediawiki-1.39.13

Description

The MediaWiki wiki web application (as used on wikipedia.org)

Added to portage

2025-07-01

mediawiki - 1.42.7
Ebuild name:

www-apps/mediawiki-1.42.7

Description

The MediaWiki wiki web application (as used on wikipedia.org)

Added to portage

2025-07-01

mediawiki - 1.43.2
Ebuild name:

www-apps/mediawiki-1.43.2

Description

The MediaWiki wiki web application (as used on wikipedia.org)

Added to portage

2025-07-01

powerline - 2.5_p20221110
Ebuild name:

app-emacs/powerline-2.5_p20221110

Description

GNU Emacs version of the Vim powerline

Added to portage

2025-07-01

sudo - 1.9.17_p1
Ebuild name:

app-admin/sudo-1.9.17_p1

Description

Allows users or groups to run commands as other users

Added to portage

2025-07-01

symengine - 0.14.0-r1
Ebuild name:

sci-libs/symengine-0.14.0-r1

Description

Fast symbolic manipulation library, written in C++

Added to portage

2025-07-01

2025-06-30
GSSAPI - 0.280.0-r3
Ebuild name:

dev-perl/GSSAPI-0.280.0-r3

Description

Perl extension providing access to the GSSAPIv2 library

Added to portage

2025-06-30

Graph-Easy - 0.760.0-r1
Ebuild name:

dev-perl/Graph-Easy-0.760.0-r1

Description

Convert or render graphs (as ASCII, HTML, SVG or via Graphviz)

Added to portage

2025-06-30

Graphics-ColorNames - 3.5.0-r2
Ebuild name:

dev-perl/Graphics-ColorNames-3.5.0-r2

Description

Defines RGB values for common color names

Added to portage

2025-06-30

Graphics-ColorNames-WWW - 1.140.0-r1
Ebuild name:

dev-perl/Graphics-ColorNames-WWW-1.140.0-r1

Description

WWW color names and equivalent RGB values

Added to portage

2025-06-30

Graphics-ColorObject - 0.5.0-r3
Ebuild name:

dev-perl/Graphics-ColorObject-0.5.0-r3

Description

Convert between color spaces

Added to portage

2025-06-30

Gtk3 - 0.38.0-r1
Ebuild name:

dev-perl/Gtk3-0.38.0-r1

Description

Perl interface to the 3.x series of the gtk+ toolkit

Added to portage

2025-06-30

Gtk3-SimpleList - 0.210.0-r1
Ebuild name:

dev-perl/Gtk3-SimpleList-0.210.0-r1

Description

Simple interface to GTK+ 3's complex MVC list widget

Added to portage

2025-06-30

Guard - 1.23.0-r2
Ebuild name:

dev-perl/Guard-1.23.0-r2

Description

Safe cleanup blocks

Added to portage

2025-06-30

HTML-Clean - 1.400.0-r1
Ebuild name:

dev-perl/HTML-Clean-1.400.0-r1

Description

Cleans up HTML code for web browsers, not humans

Added to portage

2025-06-30

HTML-Element-Extended - 1.180.0-r3
Ebuild name:

dev-perl/HTML-Element-Extended-1.180.0-r3

Description

Extension for manipulating a table composed of HTML style

Added to portage

2025-06-30

HTML-FormatText-WithLinks - 0.150.0-r3
Ebuild name:

dev-perl/HTML-FormatText-WithLinks-0.150.0-r3

Description

HTML to text conversion with links as footnotes

Added to portage

2025-06-30

HTML-HTMLDoc - 0.210.0-r1
Ebuild name:

dev-perl/HTML-HTMLDoc-0.210.0-r1

Description

Perl interface to the htmldoc program for producing PDF-Files from

Added to portage

2025-06-30

HTML-Highlight - 0.200.0-r2
Ebuild name:

dev-perl/HTML-Highlight-0.200.0-r2

Description

A module to highlight words or patterns in HTML documents

Added to portage

2025-06-30

HTML-Mason - 1.600.0-r1
Ebuild name:

dev-perl/HTML-Mason-1.600.0-r1

Description

A HTML development and delivery Perl Module

Added to portage

2025-06-30

HTML-Object - 2.30-r1
Ebuild name:

dev-perl/HTML-Object-2.30-r1

Description

A HTML development and delivery Perl Module

Added to portage

2025-06-30

Hash-Merge - 0.302.0-r1
Ebuild name:

dev-perl/Hash-Merge-0.302.0-r1

Description

Merges arbitrarily deep hashes into a single hash

Added to portage

2025-06-30

Hash-MoreUtils - 0.60.0-r1
Ebuild name:

dev-perl/Hash-MoreUtils-0.60.0-r1

Description

Provide the stuff missing in Hash

Added to portage

2025-06-30

Hash-MultiValue - 0.160.0-r2
Ebuild name:

dev-perl/Hash-MultiValue-0.160.0-r2

Description

Store multiple values per key

Added to portage

2025-06-30

android-studio - 2025.1.1.13
Ebuild name:

dev-util/android-studio-2025.1.1.13

Description

Android development environment based on IntelliJ IDEA

Added to portage

2025-06-30

anyascii - 0.3.3
Ebuild name:

dev-python/anyascii-0.3.3

Description

Unicode to ASCII transliteration

Added to portage

2025-06-30

colord - 1.4.8
Ebuild name:

x11-misc/colord-1.4.8

Description

System service to accurately color manage input and output devices

Added to portage

2025-06-30

cutecom - 0.60.0_rc1-r1
Ebuild name:

net-dialup/cutecom-0.60.0_rc1-r1

Description

Serial terminal, like minicom, written in Qt

Added to portage

2025-06-30

flux - 2.6.3
Ebuild name:

sys-cluster/flux-2.6.3

Description

Flux is a tool for keeping Kubernetes clusters in sync

Added to portage

2025-06-30

fontconfig - 2.17.0-r1
Ebuild name:

media-libs/fontconfig-2.17.0-r1

Description

A library for configuring and customizing font access

Added to portage

2025-06-30

gcc - 16.0.0_p20250629
Ebuild name:

sys-devel/gcc-16.0.0_p20250629

Description

The GNU Compiler Collection

Added to portage

2025-06-30

git-sources - 6.16_rc4
Ebuild name:

sys-kernel/git-sources-6.16_rc4

Description

The very latest -git version of the Linux kernel

Added to portage

2025-06-30

gnome-shell - 47.8
Ebuild name:

gnome-base/gnome-shell-47.8

Description

Provides core UI functions for the GNOME desktop

Added to portage

2025-06-30

go-perl - 0.150.0-r1
Ebuild name:

dev-perl/go-perl-0.150.0-r1

Description

GO parses all GO files formats and types

Added to portage

2025-06-30

gtk2-gladexml - 1.8.0-r1
Ebuild name:

dev-perl/gtk2-gladexml-1.8.0-r1

Description

Create user interfaces directly from Glade XML files

Added to portage

2025-06-30

incus - 6.14
Ebuild name:

app-containers/incus-6.14

Description

Modern, secure and powerful system container and virtual machine manager

Added to portage

2025-06-30

intel-compute-runtime - 25.22.33944.9
Ebuild name:

dev-libs/intel-compute-runtime-25.22.33944.9

Description

Intel Graphics Compute Runtime for oneAPI Level Zero a

Added to portage

2025-06-30

intel-graphics-compiler - 2.14.1
Ebuild name:

dev-util/intel-graphics-compiler-2.14.1

Description

LLVM-based OpenCL compiler for OpenCL targetting Intel Gen

Added to portage

2025-06-30

intel-graphics-system-controller - 0.9.6
Ebuild name:

dev-util/intel-graphics-system-controller-0.9.6

Description

Intel graphics system controller firmware update li

Added to portage

2025-06-30

intel-metrics-discovery - 1.14.181
Ebuild name:

dev-libs/intel-metrics-discovery-1.14.181

Description

A user mode library that provides access to GPU performan

Added to portage

2025-06-30

intel-metrics-library - 1.0.198
Ebuild name:

dev-libs/intel-metrics-library-1.0.198

Description

User mode driver helper library that provides access to GPU

Added to portage

2025-06-30

intel-vc-intrinsics - 0.23.1
Ebuild name:

dev-libs/intel-vc-intrinsics-0.23.1

Description

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

Added to portage

2025-06-30

kdegraphics-meta - 25.04.2-r1
Ebuild name:

kde-apps/kdegraphics-meta-25.04.2-r1

Description

kdegraphics - merge this to pull in all kdegraphics-derived pa

Added to portage

2025-06-30

kdegraphics-meta - 25.04.2-r2
Ebuild name:

kde-apps/kdegraphics-meta-25.04.2-r2

Description

kdegraphics - merge this to pull in all kdegraphics-derived pa

Added to portage

2025-06-30

kdepim-runtime - 25.04.2-r1
Ebuild name:

kde-apps/kdepim-runtime-25.04.2-r1

Description

Runtime plugin collection to extend the functionality of KDE PIM

Added to portage

2025-06-30

kdesdk-meta - 25.04.2-r1
Ebuild name:

kde-apps/kdesdk-meta-25.04.2-r1

Description

KDE SDK - merge this to pull in all kdesdk-derived packages

Added to portage

2025-06-30

kqtquickcharts - 25.07.70_pre20250625
Ebuild name:

kde-apps/kqtquickcharts-25.07.70_pre20250625

Description

Qt Quick plugin for beautiful and interactive charts

Added to portage

2025-06-30

ktouch - 25.07.70_pre20250628
Ebuild name:

kde-apps/ktouch-25.07.70_pre20250628

Description

Program that helps to learn and practice touch typing

Added to portage

2025-06-30

kube-apiserver - 1.31.10
Ebuild name:

sys-cluster/kube-apiserver-1.31.10

Description

Kubernetes API server

Added to portage

2025-06-30

kube-apiserver - 1.32.6
Ebuild name:

sys-cluster/kube-apiserver-1.32.6

Description

Kubernetes API server

Added to portage

2025-06-30

kube-apiserver - 1.33.2
Ebuild name:

sys-cluster/kube-apiserver-1.33.2

Description

Kubernetes API server

Added to portage

2025-06-30

kube-controller-manager - 1.31.10
Ebuild name:

sys-cluster/kube-controller-manager-1.31.10

Description

Kubernetes Controller Manager

Added to portage

2025-06-30

kube-controller-manager - 1.32.6
Ebuild name:

sys-cluster/kube-controller-manager-1.32.6

Description

Kubernetes Controller Manager

Added to portage

2025-06-30

kube-controller-manager - 1.33.2
Ebuild name:

sys-cluster/kube-controller-manager-1.33.2

Description

Kubernetes Controller Manager

Added to portage

2025-06-30

kube-proxy - 1.31.10
Ebuild name:

sys-cluster/kube-proxy-1.31.10

Description

Kubernetes Proxy service

Added to portage

2025-06-30

kube-proxy - 1.32.6
Ebuild name:

sys-cluster/kube-proxy-1.32.6

Description

Kubernetes Proxy service

Added to portage

2025-06-30

kube-proxy - 1.33.2
Ebuild name:

sys-cluster/kube-proxy-1.33.2

Description

Kubernetes Proxy service

Added to portage

2025-06-30

kube-scheduler - 1.31.10
Ebuild name:

sys-cluster/kube-scheduler-1.31.10

Description

Kubernetes Scheduler

Added to portage

2025-06-30

kube-scheduler - 1.32.6
Ebuild name:

sys-cluster/kube-scheduler-1.32.6

Description

Kubernetes Scheduler

Added to portage

2025-06-30

kube-scheduler - 1.33.2
Ebuild name:

sys-cluster/kube-scheduler-1.33.2

Description

Kubernetes Scheduler

Added to portage

2025-06-30

kubeadm - 1.31.10
Ebuild name:

sys-cluster/kubeadm-1.31.10

Description

CLI to Easily bootstrap a secure Kubernetes cluster

Added to portage

2025-06-30

kubeadm - 1.32.6
Ebuild name:

sys-cluster/kubeadm-1.32.6

Description

CLI to Easily bootstrap a secure Kubernetes cluster

Added to portage

2025-06-30

kubeadm - 1.33.2
Ebuild name:

sys-cluster/kubeadm-1.33.2

Description

CLI to Easily bootstrap a secure Kubernetes cluster

Added to portage

2025-06-30

kubectl - 1.31.10
Ebuild name:

sys-cluster/kubectl-1.31.10

Description

CLI to run commands against Kubernetes clusters

Added to portage

2025-06-30

kubectl - 1.32.6
Ebuild name:

sys-cluster/kubectl-1.32.6

Description

CLI to run commands against Kubernetes clusters

Added to portage

2025-06-30

kubectl - 1.33.2
Ebuild name:

sys-cluster/kubectl-1.33.2

Description

CLI to run commands against Kubernetes clusters

Added to portage

2025-06-30

kubelet - 1.31.10
Ebuild name:

sys-cluster/kubelet-1.31.10

Description

Kubernetes Node Agent

Added to portage

2025-06-30

kubelet - 1.32.6
Ebuild name:

sys-cluster/kubelet-1.32.6

Description

Kubernetes Node Agent

Added to portage

2025-06-30

kubelet - 1.33.2
Ebuild name:

sys-cluster/kubelet-1.33.2

Description

Kubernetes Node Agent

Added to portage

2025-06-30

kwallet - 6.13.0-r2
Ebuild name:

kde-frameworks/kwallet-6.13.0-r2

Description

Framework providing desktop-wide storage for passwords

Added to portage

2025-06-30

level-zero - 1.23.0
Ebuild name:

dev-libs/level-zero-1.23.0

Description

oneAPI Level Zero headers, loader and validation layer

Added to portage

2025-06-30

libapreq2 - 2.17-r2
Ebuild name:

www-apache/libapreq2-2.17-r2

Description

A library for manipulating client request data via the Apache API

Added to portage

2025-06-30

linux-firmware - 20250627
Ebuild name:

sys-kernel/linux-firmware-20250627

Description

Linux firmware files

Added to portage

2025-06-30

lxqt-powermanagement - 2.2.0-r1
Ebuild name:

lxqt-base/lxqt-powermanagement-2.2.0-r1

Description

LXQt daemon for power management and auto-suspend

Added to portage

2025-06-30

mariadb-connector-c - 3.4.5-r1
Ebuild name:

dev-db/mariadb-connector-c-3.4.5-r1

Description

C client library for MariaDB/MySQL

Added to portage

2025-06-30

metee - 6.0.0
Ebuild name:

dev-libs/metee-6.0.0

Description

Cross-platform access library for Intel CSME HECI interface

Added to portage

2025-06-30

mod_perl - 2.0.13-r2
Ebuild name:

www-apache/mod_perl-2.0.13-r2

Description

An embedded Perl interpreter for Apache2

Added to portage

2025-06-30

mutter - 47.9
Ebuild name:

x11-wm/mutter-47.9

Description

GNOME compositing window manager based on Clutter

Added to portage

2025-06-30

pcsx2 - 2.4.0
Ebuild name:

games-emulation/pcsx2-2.4.0

Description

PlayStation 2 emulator

Added to portage

2025-06-30

pdm - 2.25.4
Ebuild name:

dev-python/pdm-2.25.4

Description

Python package and dependency manager supporting the latest PEP standards

Added to portage

2025-06-30

selenium - 4.34.0
Ebuild name:

dev-python/selenium-4.34.0

Description

Python language binding for Selenium Remote Control

Added to portage

2025-06-30

selenium-manager - 4.34.0
Ebuild name:

dev-util/selenium-manager-4.34.0

Description

CLI tool that manages the browser/driver infrastructure required b

Added to portage

2025-06-30

squid - 6.14
Ebuild name:

net-proxy/squid-6.14

Description

Full-featured web proxy cache

Added to portage

2025-06-30

suite3270 - 4.4_p6
Ebuild name:

net-misc/suite3270-4.4_p6

Description

Complete 3270 (S390) access package

Added to portage

2025-06-30

texinfo - 7.2-r1
Ebuild name:

sys-apps/texinfo-7.2-r1

Description

The GNU info program and utilities

Added to portage

2025-06-30

ugrd - 2.0.1
Ebuild name:

sys-kernel/ugrd-2.0.1

Description

Python based POSIX initramfs generator with TOML definitions

Added to portage

2025-06-30

varnish - 7.7.1
Ebuild name:

www-servers/varnish-7.7.1

Description

Varnish is a state-of-the-art, high-performance HTTP accelerator

Added to portage

2025-06-30

yubikey-manager - 5.6.1-r2
Ebuild name:

app-crypt/yubikey-manager-5.6.1-r2

Description

Python library and command line tool for configuring a YubiKey

Added to portage

2025-06-30

yubikey-manager - 5.7.0-r2
Ebuild name:

app-crypt/yubikey-manager-5.7.0-r2

Description

Python library and command line tool for configuring a YubiKey

Added to portage

2025-06-30

yubikey-manager - 5.7.2
Ebuild name:

app-crypt/yubikey-manager-5.7.2

Description

Python library and command line tool for configuring a YubiKey

Added to portage

2025-06-30

yubikey-manager-qt - 1.2.5
Ebuild name:

app-crypt/yubikey-manager-qt-1.2.5

Description

Cross-platform application for configuring any YubiKey over all

Added to portage

2025-06-30

yubioath-flutter-bin - 6.1.0-r3
Ebuild name:

app-crypt/yubioath-flutter-bin-6.1.0-r3

Description

Yubico Authenticator for TOTP

Added to portage

2025-06-30

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