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:

82121

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-20
alien - 8.95.9
Ebuild name:

app-arch/alien-8.95.9

Description

Converts between the rpm, dpkg, stampede slp, and slackware tgz file formats

Added to portage

2025-11-20

asgiref - 3.11.0
Ebuild name:

dev-python/asgiref-3.11.0

Description

ASGI utilities (successor to WSGI)

Added to portage

2025-11-20

aws-sam-translator - 1.102.0
Ebuild name:

dev-python/aws-sam-translator-1.102.0

Description

A library that transform SAM templates into AWS CloudFormatio

Added to portage

2025-11-20

awscli - 1.43.0
Ebuild name:

app-admin/awscli-1.43.0

Description

Universal Command Line Environment for AWS

Added to portage

2025-11-20

boto3 - 1.41.0
Ebuild name:

dev-python/boto3-1.41.0

Description

The AWS SDK for Python

Added to portage

2025-11-20

botocore - 1.41.0
Ebuild name:

dev-python/botocore-1.41.0

Description

Low-level, data-driven core of boto 3

Added to portage

2025-11-20

cfgv - 3.5.0
Ebuild name:

dev-python/cfgv-3.5.0

Description

Validate configuration and produce human-readable error messages

Added to portage

2025-11-20

clamav - 1.5.1
Ebuild name:

app-antivirus/clamav-1.5.1

Description

Clam Anti-Virus Scanner

Added to portage

2025-11-20

clang - 21.1.6
Ebuild name:

dev-python/clang-21.1.6

Description

Python bindings for llvm-core/clang

Added to portage

2025-11-20

clang - 21.1.6
Ebuild name:

llvm-core/clang-21.1.6

Description

C language family frontend for LLVM

Added to portage

2025-11-20

clang-common - 21.1.6
Ebuild name:

llvm-core/clang-common-21.1.6

Description

Common files shared between multiple slots of clang

Added to portage

2025-11-20

clang-runtime - 21.1.6
Ebuild name:

llvm-runtimes/clang-runtime-21.1.6

Description

Meta-ebuild for clang runtime libraries

Added to portage

2025-11-20

compiler-rt - 21.1.6
Ebuild name:

llvm-runtimes/compiler-rt-21.1.6

Description

Compiler runtime library for clang (built-in part)

Added to portage

2025-11-20

compiler-rt-sanitizers - 21.1.6
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-21.1.6

Description

Compiler runtime libraries for clang (sanitizers &

Added to portage

2025-11-20

django - 6.0_rc1
Ebuild name:

dev-python/django-6.0_rc1

Description

High-level Python web framework

Added to portage

2025-11-20

faker - 38.2.0
Ebuild name:

dev-python/faker-38.2.0

Description

A Python package that generates fake data for you

Added to portage

2025-11-20

flang - 21.1.6
Ebuild name:

llvm-core/flang-21.1.6

Description

LLVM's Fortran frontend

Added to portage

2025-11-20

flang-rt - 21.1.6
Ebuild name:

llvm-runtimes/flang-rt-21.1.6

Description

LLVM's Fortran runtime

Added to portage

2025-11-20

gcalc - 3.1_rc1-r4
Ebuild name:

sci-visualization/gcalc-3.1_rc1-r4

Description

Java Mathematical Graphing System

Added to portage

2025-11-20

gcc - 16.0.0_p20251116-r1
Ebuild name:

sys-devel/gcc-16.0.0_p20251116-r1

Description

The GNU Compiler Collection

Added to portage

2025-11-20

gherkin-official - 37.0.0
Ebuild name:

dev-python/gherkin-official-37.0.0

Description

Gherkin parser/compiler for Python

Added to portage

2025-11-20

hugin - 2025.0.0
Ebuild name:

media-gfx/hugin-2025.0.0

Description

GUI for the creation & processing of panoramic images

Added to portage

2025-11-20

libclc - 21.1.6
Ebuild name:

llvm-core/libclc-21.1.6

Description

OpenCL C library

Added to portage

2025-11-20

libcxx - 21.1.6
Ebuild name:

llvm-runtimes/libcxx-21.1.6

Description

New implementation of the C++ standard library, targeting C++11

Added to portage

2025-11-20

libcxxabi - 21.1.6
Ebuild name:

llvm-runtimes/libcxxabi-21.1.6

Description

Low level support for a standard C++ library

Added to portage

2025-11-20

libgcc - 21.1.6
Ebuild name:

llvm-runtimes/libgcc-21.1.6

Description

Compiler runtime library for clang, compatible with libgcc_s

Added to portage

2025-11-20

libunwind - 21.1.6
Ebuild name:

llvm-runtimes/libunwind-21.1.6

Description

C++ runtime stack unwinder from LLVM

Added to portage

2025-11-20

libzdb - 3.4.1
Ebuild name:

dev-db/libzdb-3.4.1

Description

A thread safe high level multi-database connection pool library

Added to portage

2025-11-20

lit - 21.1.6
Ebuild name:

dev-python/lit-21.1.6

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2025-11-20

lld - 21.1.6
Ebuild name:

llvm-core/lld-21.1.6

Description

The LLVM linker (link editor)

Added to portage

2025-11-20

lldb - 21.1.6
Ebuild name:

llvm-core/lldb-21.1.6

Description

The LLVM debugger

Added to portage

2025-11-20

llvm - 21.1.6
Ebuild name:

dev-ml/llvm-21.1.6

Description

OCaml bindings for LLVM

Added to portage

2025-11-20

llvm - 21.1.6
Ebuild name:

llvm-core/llvm-21.1.6

Description

Low Level Virtual Machine

Added to portage

2025-11-20

llvm-common - 21.1.6
Ebuild name:

llvm-core/llvm-common-21.1.6

Description

Common files shared between multiple slots of LLVM

Added to portage

2025-11-20

mlir - 21.1.6
Ebuild name:

llvm-core/mlir-21.1.6

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2025-11-20

mlt - 7.34.1
Ebuild name:

media-libs/mlt-7.34.1

Description

Open source multimedia framework for television broadcasting

Added to portage

2025-11-20

notebook - 7.5.0
Ebuild name:

dev-python/notebook-7.5.0

Description

Jupyter Interactive Notebook

Added to portage

2025-11-20

offload - 21.1.6
Ebuild name:

llvm-runtimes/offload-21.1.6

Description

OpenMP offloading support

Added to portage

2025-11-20

openmp - 21.1.6
Ebuild name:

llvm-runtimes/openmp-21.1.6

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2025-11-20

poke - 3.2
Ebuild name:

app-emacs/poke-3.2

Description

Emacs meets GNU poke

Added to portage

2025-11-20

polly - 21.1.6
Ebuild name:

llvm-core/polly-21.1.6

Description

Polyhedral optimizations for LLVM

Added to portage

2025-11-20

python-lsp-server - 1.13.2
Ebuild name:

dev-python/python-lsp-server-1.13.2

Description

Python Language Server for the Language Server Protocol

Added to portage

2025-11-20

redis - 7.1.0
Ebuild name:

dev-python/redis-7.1.0

Description

Python client for Redis key-value store

Added to portage

2025-11-20

sphinxcontrib-mermaid - 1.1.0
Ebuild name:

dev-python/sphinxcontrib-mermaid-1.1.0

Description

Sphinx spelling extension

Added to portage

2025-11-20

spyder-kernels - 3.1.2
Ebuild name:

dev-python/spyder-kernels-3.1.2

Description

Kernels used by spyder on its ipython console

Added to portage

2025-11-20

tinycss2 - 1.5.0
Ebuild name:

dev-python/tinycss2-1.5.0

Description

A complete yet simple CSS parser for Python

Added to portage

2025-11-20

tpm2-pkcs11 - 1.9.1
Ebuild name:

app-crypt/tpm2-pkcs11-1.9.1

Description

A PKCS11 interface for TPM2 hardware

Added to portage

2025-11-20

tpm2-tools - 5.7
Ebuild name:

app-crypt/tpm2-tools-5.7

Description

Tools for the TPM 2.0 TSS

Added to portage

2025-11-20

zfs - 2.3.5
Ebuild name:

sys-fs/zfs-2.3.5

Description

Userland utilities for ZFS Linux kernel module

Added to portage

2025-11-20

zfs-kmod - 2.3.5
Ebuild name:

sys-fs/zfs-kmod-2.3.5

Description

Linux ZFS kernel module for sys-fs/zfs

Added to portage

2025-11-20

2025-11-19
PEAR-Archive_Tar - 1.6.0
Ebuild name:

dev-php/PEAR-Archive_Tar-1.6.0

Description

Tar file management class

Added to portage

2025-11-19

PEAR-PEAR - 1.10.16
Ebuild name:

dev-php/PEAR-PEAR-1.10.16

Description

PEAR Base System

Added to portage

2025-11-19

aurorae - 6.5.3
Ebuild name:

kde-plasma/aurorae-6.5.3

Description

Themeable window decoration for KWin

Added to portage

2025-11-19

awscli - 1.42.76
Ebuild name:

app-admin/awscli-1.42.76

Description

Universal Command Line Environment for AWS

Added to portage

2025-11-19

barrage - 1.0.7-r1
Ebuild name:

games-action/barrage-1.0.7-r1

Description

Violent point-and-click shooting game

Added to portage

2025-11-19

blessed - 1.25.0
Ebuild name:

dev-python/blessed-1.25.0

Description

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

Added to portage

2025-11-19

bluedevil - 6.5.3
Ebuild name:

kde-plasma/bluedevil-6.5.3

Description

Bluetooth stack for KDE Plasma

Added to portage

2025-11-19

boto3 - 1.40.76
Ebuild name:

dev-python/boto3-1.40.76

Description

The AWS SDK for Python

Added to portage

2025-11-19

botocore - 1.40.76
Ebuild name:

dev-python/botocore-1.40.76

Description

Low-level, data-driven core of boto 3

Added to portage

2025-11-19

breeze - 6.5.0
Ebuild name:

kde-plasma/breeze-6.5.0

Description

Breeze visual style for the Plasma desktop

Added to portage

2025-11-19

breeze - 6.5.3
Ebuild name:

kde-plasma/breeze-6.5.3

Description

Breeze visual style for the Plasma desktop

Added to portage

2025-11-19

breeze-grub - 6.5.3
Ebuild name:

kde-plasma/breeze-grub-6.5.3

Description

Breeze theme for GRUB

Added to portage

2025-11-19

breeze-gtk - 6.5.3
Ebuild name:

kde-plasma/breeze-gtk-6.5.3

Description

Official GTK+ port of Plasma's Breeze widget style

Added to portage

2025-11-19

breeze-plymouth - 6.5.3
Ebuild name:

kde-plasma/breeze-plymouth-6.5.3

Description

Breeze theme for Plymouth

Added to portage

2025-11-19

cfn-lint - 1.41.0
Ebuild name:

dev-python/cfn-lint-1.41.0

Description

CloudFormation Linter

Added to portage

2025-11-19

claude-code - 2.0.46
Ebuild name:

dev-util/claude-code-2.0.46

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2025-11-19

coverage - 7.12.0
Ebuild name:

dev-python/coverage-7.12.0

Description

Code coverage measurement for Python

Added to portage

2025-11-19

difftastic - 0.67.0
Ebuild name:

dev-util/difftastic-0.67.0

Description

A structural diff that understands syntax.

Added to portage

2025-11-19

discover - 6.5.3
Ebuild name:

kde-plasma/discover-6.5.3

Description

KDE Plasma resources management GUI

Added to portage

2025-11-19

drkonqi - 6.5.3
Ebuild name:

kde-plasma/drkonqi-6.5.3

Description

Plasma crash handler, gives the user feedback if a program crashed

Added to portage

2025-11-19

fheroes2 - 1.1.12
Ebuild name:

games-engines/fheroes2-1.1.12

Description

Recreation of HoMM2 game engine

Added to portage

2025-11-19

firefox - 145.0.1
Ebuild name:

www-client/firefox-145.0.1

Description

Firefox Web Browser

Added to portage

2025-11-19

firefox-bin - 145.0.1
Ebuild name:

www-client/firefox-bin-145.0.1

Description

Firefox Web Browser

Added to portage

2025-11-19

flatpak-kcm - 6.5.3
Ebuild name:

kde-plasma/flatpak-kcm-6.5.3

Description

Flatpak Permissions Management KCM

Added to portage

2025-11-19

gnupg - 2.5.14
Ebuild name:

app-crypt/gnupg-2.5.14

Description

The GNU Privacy Guard, a GPL OpenPGP implementation

Added to portage

2025-11-19

gpxsee - 15.4
Ebuild name:

sci-geosciences/gpxsee-15.4

Description

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

Added to portage

2025-11-19

hypothesis - 6.148.2
Ebuild name:

dev-python/hypothesis-6.148.2

Description

A library for property based testing

Added to portage

2025-11-19

jupyterlab - 4.5.0
Ebuild name:

dev-python/jupyterlab-4.5.0

Description

JupyterLab computational environment

Added to portage

2025-11-19

kactivitymanagerd - 6.5.3
Ebuild name:

kde-plasma/kactivitymanagerd-6.5.3

Description

System service to manage user's activities, track the usage patt

Added to portage

2025-11-19

kafka-bin - 4.0.1
Ebuild name:

net-misc/kafka-bin-4.0.1

Description

A high-throughput distributed messaging system

Added to portage

2025-11-19

kafka-bin - 4.1.1
Ebuild name:

net-misc/kafka-bin-4.1.1

Description

A high-throughput distributed messaging system

Added to portage

2025-11-19

kde-cli-tools - 6.5.3
Ebuild name:

kde-plasma/kde-cli-tools-6.5.3

Description

Tools based on KDE Frameworks 6 to better interact with the system

Added to portage

2025-11-19

kde-cli-tools-common - 6.5.3
Ebuild name:

kde-plasma/kde-cli-tools-common-6.5.3

Description

Added to portage

2025-11-19

kde-gtk-config - 6.5.3
Ebuild name:

kde-plasma/kde-gtk-config-6.5.3

Description

Syncs KDE Plasma theme settings to GTK applications

Added to portage

2025-11-19

kdecoration - 6.5.3
Ebuild name:

kde-plasma/kdecoration-6.5.3

Description

Plugin based library to create window decorations

Added to portage

2025-11-19

kdeplasma-addons - 6.5.3
Ebuild name:

kde-plasma/kdeplasma-addons-6.5.3

Description

Extra Plasma applets and engines

Added to portage

2025-11-19

kdesu-gui - 6.5.3
Ebuild name:

kde-plasma/kdesu-gui-6.5.3

Description

Graphical frontend for KDE Frameworks' kdesu

Added to portage

2025-11-19

keditfiletype - 6.5.3
Ebuild name:

kde-plasma/keditfiletype-6.5.3

Description

File Type Editor

Added to portage

2025-11-19

kgamma - 6.5.3
Ebuild name:

kde-plasma/kgamma-6.5.3

Description

Screen gamma values kcontrol module

Added to portage

2025-11-19

kgcc64 - 15.2.0
Ebuild name:

sys-devel/kgcc64-15.2.0

Description

64bit kernel compiler

Added to portage

2025-11-19

kglobalacceld - 6.5.3
Ebuild name:

kde-plasma/kglobalacceld-6.5.3

Description

Daemon providing Global Keyboard Shortcut (Accelerator) functionalit

Added to portage

2025-11-19

kinfocenter - 6.5.3
Ebuild name:

kde-plasma/kinfocenter-6.5.3

Description

Utility providing information about the computer hardware

Added to portage

2025-11-19

kmenuedit - 6.5.3
Ebuild name:

kde-plasma/kmenuedit-6.5.3

Description

KDE Plasma menu editor

Added to portage

2025-11-19

knighttime - 6.5.3
Ebuild name:

kde-plasma/knighttime-6.5.3

Description

Helpers for scheduling the dark-light cycle

Added to portage

2025-11-19

kpipewire - 6.5.3
Ebuild name:

kde-plasma/kpipewire-6.5.3

Description

Components relating to Flatpak pipewire use in Plasma

Added to portage

2025-11-19

krdp - 6.5.3
Ebuild name:

kde-plasma/krdp-6.5.3

Description

Library and examples for creating an RDP server

Added to portage

2025-11-19

kscreen - 6.5.3
Ebuild name:

kde-plasma/kscreen-6.5.3

Description

KDE Plasma screen management

Added to portage

2025-11-19

kscreenlocker - 6.5.3
Ebuild name:

kde-plasma/kscreenlocker-6.5.3

Description

Library and components for secure lock screen architecture

Added to portage

2025-11-19

ksshaskpass - 6.5.3
Ebuild name:

kde-plasma/ksshaskpass-6.5.3

Description

Implementation of ssh-askpass with KDE Wallet integration

Added to portage

2025-11-19

ksystemstats - 6.5.3
Ebuild name:

kde-plasma/ksystemstats-6.5.3

Description

Plugin-based system monitoring daemon

Added to portage

2025-11-19

kubectl - 1.34.2
Ebuild name:

sys-cluster/kubectl-1.34.2

Description

CLI to run commands against Kubernetes clusters

Added to portage

2025-11-19

kwallet-pam - 6.5.3
Ebuild name:

kde-plasma/kwallet-pam-6.5.3

Description

PAM module to not enter KWallet password again after login

Added to portage

2025-11-19

kwayland - 6.5.3
Ebuild name:

kde-plasma/kwayland-6.5.3

Description

Qt-style API to interact with the wayland-client API

Added to portage

2025-11-19

kwayland-integration - 6.5.3
Ebuild name:

kde-plasma/kwayland-integration-6.5.3

Description

Provides KWindowSystem integration plugin for Wayland

Added to portage

2025-11-19

kwin - 6.5.3
Ebuild name:

kde-plasma/kwin-6.5.3

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2025-11-19

kwin-x11 - 6.5.3
Ebuild name:

kde-plasma/kwin-x11-6.5.3

Description

Flexible, composited X window manager

Added to portage

2025-11-19

kwrited - 6.5.3
Ebuild name:

kde-plasma/kwrited-6.5.3

Description

KDE Plasma daemon listening for wall and write messages

Added to portage

2025-11-19

layer-shell-qt - 6.5.3
Ebuild name:

kde-plasma/layer-shell-qt-6.5.3

Description

Qt component to allow applications make use of Wayland wl-layer-she

Added to portage

2025-11-19

libkscreen - 6.5.3
Ebuild name:

kde-plasma/libkscreen-6.5.3

Description

Plasma screen management library

Added to portage

2025-11-19

libksysguard - 6.5.3
Ebuild name:

kde-plasma/libksysguard-6.5.3

Description

Task management and system monitoring library

Added to portage

2025-11-19

libplasma - 6.5.3
Ebuild name:

kde-plasma/libplasma-6.5.3

Description

Plasma library and runtime components based upon KF6 and Qt6

Added to portage

2025-11-19

lowdown - 2.0.4
Ebuild name:

app-text/lowdown-2.0.4

Description

Markdown translator producing HTML5, roff documents in the ms and man format

Added to portage

2025-11-19

mattermost-desktop-bin - 6.0.1
Ebuild name:

net-im/mattermost-desktop-bin-6.0.1

Description

Mattermost Desktop application

Added to portage

2025-11-19

maturin - 1.10.2
Ebuild name:

dev-util/maturin-1.10.2

Description

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

Added to portage

2025-11-19

milou - 6.5.3
Ebuild name:

kde-plasma/milou-6.5.3

Description

Dedicated search application built on top of Baloo

Added to portage

2025-11-19

nanoc - 4.14.3
Ebuild name:

www-apps/nanoc-4.14.3

Description

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

Added to portage

2025-11-19

nanoc-cli - 4.14.3
Ebuild name:

www-apps/nanoc-cli-4.14.3

Description

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

Added to portage

2025-11-19

nanoc-core - 4.14.3
Ebuild name:

www-apps/nanoc-core-4.14.3

Description

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

Added to portage

2025-11-19

nss - 3.118.1
Ebuild name:

dev-libs/nss-3.118.1

Description

Mozilla's Network Security Services library that implements PKI support

Added to portage

2025-11-19

ocean-sound-theme - 6.5.3
Ebuild name:

kde-plasma/ocean-sound-theme-6.5.3

Description

Ocean Sound Theme for Plasma

Added to portage

2025-11-19

oxygen - 6.5.0
Ebuild name:

kde-plasma/oxygen-6.5.0

Description

Oxygen visual style for the Plasma desktop

Added to portage

2025-11-19

oxygen - 6.5.3
Ebuild name:

kde-plasma/oxygen-6.5.3

Description

Oxygen visual style for the Plasma desktop

Added to portage

2025-11-19

oxygen-sounds - 6.5.3
Ebuild name:

kde-plasma/oxygen-sounds-6.5.3

Description

Oxygen sound theme for the Plasma desktop

Added to portage

2025-11-19

plasma-activities - 6.5.3
Ebuild name:

kde-plasma/plasma-activities-6.5.3

Description

Core components for KDE's Activities System

Added to portage

2025-11-19

plasma-activities-stats - 6.5.3
Ebuild name:

kde-plasma/plasma-activities-stats-6.5.3

Description

Library for accessing usage data collected by the activiti

Added to portage

2025-11-19

plasma-browser-integration - 6.5.3
Ebuild name:

kde-plasma/plasma-browser-integration-6.5.3

Description

Integrate Chrome/Firefox better into Plasma through bro

Added to portage

2025-11-19

plasma-desktop - 6.5.3
Ebuild name:

kde-plasma/plasma-desktop-6.5.3

Description

KDE Plasma desktop

Added to portage

2025-11-19

plasma-disks - 6.5.3
Ebuild name:

kde-plasma/plasma-disks-6.5.3

Description

Monitors S.M.A.R.T. capable devices for imminent failure

Added to portage

2025-11-19

plasma-firewall - 6.5.3
Ebuild name:

kde-plasma/plasma-firewall-6.5.3

Description

Plasma frontend for Firewalld or UFW

Added to portage

2025-11-19

plasma-integration - 6.5.0
Ebuild name:

kde-plasma/plasma-integration-6.5.0

Description

Qt Platform Theme integration plugins for the Plasma workspaces

Added to portage

2025-11-19

plasma-integration - 6.5.3
Ebuild name:

kde-plasma/plasma-integration-6.5.3

Description

Qt Platform Theme integration plugins for the Plasma workspaces

Added to portage

2025-11-19

plasma-login-sessions - 6.5.3
Ebuild name:

kde-plasma/plasma-login-sessions-6.5.3

Description

KDE Plasma login sessions

Added to portage

2025-11-19

plasma-meta - 6.4.5-r2
Ebuild name:

kde-plasma/plasma-meta-6.4.5-r2

Description

Merge this to pull in all Plasma 6 packages

Added to portage

2025-11-19

plasma-meta - 6.5.3
Ebuild name:

kde-plasma/plasma-meta-6.5.3

Description

Merge this to pull in all Plasma 6 packages

Added to portage

2025-11-19

plasma-nm - 6.5.3
Ebuild name:

kde-plasma/plasma-nm-6.5.3

Description

KDE Plasma applet for NetworkManager

Added to portage

2025-11-19

plasma-pa - 6.5.3
Ebuild name:

kde-plasma/plasma-pa-6.5.3

Description

Plasma applet for audio volume management using PulseAudio

Added to portage

2025-11-19

plasma-sdk - 6.5.3
Ebuild name:

kde-plasma/plasma-sdk-6.5.3

Description

Useful applications for Plasma development

Added to portage

2025-11-19

plasma-systemmonitor - 6.5.3
Ebuild name:

kde-plasma/plasma-systemmonitor-6.5.3

Description

Monitor system sensors, process information and other system

Added to portage

2025-11-19

plasma-thunderbolt - 6.5.3
Ebuild name:

kde-plasma/plasma-thunderbolt-6.5.3

Description

Plasma integration for controlling Thunderbolt devices

Added to portage

2025-11-19

plasma-vault - 6.5.3
Ebuild name:

kde-plasma/plasma-vault-6.5.3

Description

Plasma applet and services for creating encrypted vaults

Added to portage

2025-11-19

plasma-welcome - 6.5.3
Ebuild name:

kde-plasma/plasma-welcome-6.5.3

Description

Friendly onboarding wizard for Plasma

Added to portage

2025-11-19

plasma-workspace - 6.5.3
Ebuild name:

kde-plasma/plasma-workspace-6.5.3

Description

KDE Plasma workspace

Added to portage

2025-11-19

plasma-workspace-wallpapers - 6.5.3
Ebuild name:

kde-plasma/plasma-workspace-wallpapers-6.5.3

Description

Wallpapers for the Plasma workspace

Added to portage

2025-11-19

plasma5support - 6.5.3
Ebuild name:

kde-plasma/plasma5support-6.5.3

Description

Support components for porting from KF5/Qt5 to KF6/Qt6

Added to portage

2025-11-19

plymouth-kcm - 6.5.3
Ebuild name:

kde-plasma/plymouth-kcm-6.5.3

Description

KDE Plasma control module for Plymouth

Added to portage

2025-11-19

podcastparser - 0.6.11
Ebuild name:

dev-python/podcastparser-0.6.11

Description

Podcast parser for the gpodder client

Added to portage

2025-11-19

polkit-kde-agent - 6.5.3
Ebuild name:

kde-plasma/polkit-kde-agent-6.5.3

Description

PolKit agent module for KDE Plasma

Added to portage

2025-11-19

portpeek - 3.2.9
Ebuild name:

app-portage/portpeek-3.2.9

Description

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

Added to portage

2025-11-19

powerdevil - 6.5.3
Ebuild name:

kde-plasma/powerdevil-6.5.3

Description

Power management for KDE Plasma Shell

Added to portage

2025-11-19

print-manager - 6.5.3
Ebuild name:

kde-plasma/print-manager-6.5.3

Description

Manage CUPS print jobs and printers in Plasma

Added to portage

2025-11-19

python - 0.3.15.0_alpha2
Ebuild name:

dev-lang/python-0.3.15.0_alpha2

Description

Freethreading (no-GIL) version of Python programming language

Added to portage

2025-11-19

python - 3.15.0_alpha2
Ebuild name:

dev-lang/python-3.15.0_alpha2

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2025-11-19

python-ironicclient - 5.14.0
Ebuild name:

dev-python/python-ironicclient-5.14.0

Description

Python bindings for the Ironic API

Added to portage

2025-11-19

pyupgrade - 3.21.2
Ebuild name:

dev-python/pyupgrade-3.21.2

Description

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

Added to portage

2025-11-19

qmapshack - 1.18.2
Ebuild name:

sci-geosciences/qmapshack-1.18.2

Description

GPS mapping utility

Added to portage

2025-11-19

qqc2-breeze-style - 6.5.3
Ebuild name:

kde-plasma/qqc2-breeze-style-6.5.3

Description

Breeze inspired QQC2 Style

Added to portage

2025-11-19

sddm-kcm - 6.5.3
Ebuild name:

kde-plasma/sddm-kcm-6.5.3

Description

KDE Plasma control module for SDDM

Added to portage

2025-11-19

shtab - 1.8.0
Ebuild name:

dev-python/shtab-1.8.0

Description

Automagic shell tab completion for Python CLI applications

Added to portage

2025-11-19

spectacle - 6.5.3
Ebuild name:

kde-plasma/spectacle-6.5.3

Description

Screenshot capture utility

Added to portage

2025-11-19

spidermonkey - 140.5.0
Ebuild name:

dev-lang/spidermonkey-140.5.0

Description

Mozilla's JavaScript engine written in C and C++

Added to portage

2025-11-19

stripe - 14.0.0
Ebuild name:

dev-python/stripe-14.0.0

Description

Stripe Python bindings

Added to portage

2025-11-19

synapse - 1.142.1
Ebuild name:

net-im/synapse-1.142.1

Description

Reference implementation of Matrix homeserver

Added to portage

2025-11-19

systemsettings - 6.5.3
Ebuild name:

kde-plasma/systemsettings-6.5.3

Description

Control Center to configure KDE Plasma desktop

Added to portage

2025-11-19

time-machine - 3.0.0
Ebuild name:

dev-python/time-machine-3.0.0

Description

Travel through time in your tests

Added to portage

2025-11-19

tor - 0.4.8.21
Ebuild name:

net-vpn/tor-0.4.8.21

Description

Anonymizing overlay network for TCP

Added to portage

2025-11-19

upterm - 0.18.0
Ebuild name:

app-misc/upterm-0.18.0

Description

Instant Terminal Sharing

Added to portage

2025-11-19

uutf - 1.0.4-r1
Ebuild name:

dev-ml/uutf-1.0.4-r1

Description

Non-blocking streaming Unicode codec for OCaml

Added to portage

2025-11-19

uutils-coreutils - 0.4.0
Ebuild name:

sys-apps/uutils-coreutils-0.4.0

Description

GNU coreutils rewritten in Rust

Added to portage

2025-11-19

vivaldi - 7.7.3851.52
Ebuild name:

www-client/vivaldi-7.7.3851.52

Description

A browser for our friends

Added to portage

2025-11-19

vkd3d-proton - 3.0a
Ebuild name:

app-emulation/vkd3d-proton-3.0a

Description

Fork of VKD3D, development branches for Proton's Direct3D 12 implem

Added to portage

2025-11-19

wacomtablet - 6.5.3
Ebuild name:

kde-plasma/wacomtablet-6.5.3

Description

Wacom system settings module that supports different button/pen layout

Added to portage

2025-11-19

xdg-desktop-portal-kde - 6.5.3
Ebuild name:

kde-plasma/xdg-desktop-portal-kde-6.5.3

Description

Backend implementation for xdg-desktop-portal that is using

Added to portage

2025-11-19

yq-go - 4.48.2
Ebuild name:

app-misc/yq-go-4.48.2

Description

yq is a lightweight and portable command-line YAML, JSON and XML processor

Added to portage

2025-11-19

zope-hookable - 8.2
Ebuild name:

dev-python/zope-hookable-8.2

Description

Efficient creation of 'hookable' objects

Added to portage

2025-11-19

zope-i18nmessageid - 8.2
Ebuild name:

dev-python/zope-i18nmessageid-8.2

Description

Zope support for i18nmessageid (tagging source of i18n strings)

Added to portage

2025-11-19

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