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:

81956

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-06
cache_tab - 1.0.33
Ebuild name:

dev-erlang/cache_tab-1.0.33

Description

In-memory cache Erlang and Elixir library

Added to portage

2025-11-06

cutlass - 4.1.0
Ebuild name:

dev-libs/cutlass-4.1.0

Description

CUDA Templates for Linear Algebra Subroutines

Added to portage

2025-11-06

cutlass - 4.2.1
Ebuild name:

dev-libs/cutlass-4.2.1

Description

CUDA Templates for Linear Algebra Subroutines

Added to portage

2025-11-06

eimp - 1.0.26
Ebuild name:

dev-erlang/eimp-1.0.26

Description

Erlang Image Manipulation Process

Added to portage

2025-11-06

ejabberd - 25.10
Ebuild name:

net-im/ejabberd-25.10

Description

Robust, scalable and extensible XMPP server

Added to portage

2025-11-06

esip - 1.0.59
Ebuild name:

dev-erlang/esip-1.0.59

Description

ProcessOne SIP server component

Added to portage

2025-11-06

ezlib - 1.0.15
Ebuild name:

dev-erlang/ezlib-1.0.15

Description

Native zlib driver for Erlang and Elixir

Added to portage

2025-11-06

fast_tls - 1.1.25
Ebuild name:

dev-erlang/fast_tls-1.1.25

Description

TLS/SSL native driver for Erlang and Elixir

Added to portage

2025-11-06

fast_xml - 1.1.57
Ebuild name:

dev-erlang/fast_xml-1.1.57

Description

Fast Expat based Erlang XML parsing library

Added to portage

2025-11-06

fast_yaml - 1.0.39
Ebuild name:

dev-erlang/fast_yaml-1.0.39

Description

Fast Yaml native library for Erlang and Elixir

Added to portage

2025-11-06

iscan - 2.30.4.2-r5
Ebuild name:

media-gfx/iscan-2.30.4.2-r5

Description

EPSON Image Scan for Linux (including sane-epkowa backend)

Added to portage

2025-11-06

iscan - 2.30.4.2-r6
Ebuild name:

media-gfx/iscan-2.30.4.2-r6

Description

EPSON Image Scan for Linux (including sane-epkowa backend)

Added to portage

2025-11-06

iscan-plugin-gt-f500 - 1.0.0.1-r2
Ebuild name:

media-gfx/iscan-plugin-gt-f500-1.0.0.1-r2

Description

Epson Perfection 2480/2580 PHOTO scanner plugin for SANE

Added to portage

2025-11-06

iscan-plugin-gt-f720 - 0.0.1.2-r1
Ebuild name:

media-gfx/iscan-plugin-gt-f720-0.0.1.2-r1

Description

Epson Perfection V300 PHOTO scanner plugin for SANE 'epko

Added to portage

2025-11-06

iscan-plugin-gt-x770 - 2.1.2.1-r4
Ebuild name:

media-gfx/iscan-plugin-gt-x770-2.1.2.1-r4

Description

Epson Perfection V500 scanner plugin for SANE 'epkowa' ba

Added to portage

2025-11-06

iscan-plugin-gt-x820 - 2.2.0.1-r1
Ebuild name:

media-gfx/iscan-plugin-gt-x820-2.2.0.1-r1

Description

Epson Perfection V600 scanner plugin for SANE 'epkowa' ba

Added to portage

2025-11-06

jaq - 3.0.0_alpha
Ebuild name:

app-misc/jaq-3.0.0_alpha

Description

Just another JSON query tool

Added to portage

2025-11-06

liblxqt - 2.3.0
Ebuild name:

lxqt-base/liblxqt-2.3.0

Description

Common base library for the LXQt desktop environment

Added to portage

2025-11-06

libqtxdg - 4.3.0
Ebuild name:

dev-libs/libqtxdg-4.3.0

Description

Qt Implementation of XDG Standards

Added to portage

2025-11-06

lximage-qt - 2.3.0
Ebuild name:

media-gfx/lximage-qt-2.3.0

Description

Qt Image Viewer

Added to portage

2025-11-06

lxqt-about - 2.3.0
Ebuild name:

lxqt-base/lxqt-about-2.3.0

Description

LXQt about dialog

Added to portage

2025-11-06

lxqt-admin - 2.3.0
Ebuild name:

lxqt-base/lxqt-admin-2.3.0

Description

LXQt system administration tool

Added to portage

2025-11-06

lxqt-archiver - 1.3.0
Ebuild name:

app-arch/lxqt-archiver-1.3.0

Description

Qt GUI File Archiver

Added to portage

2025-11-06

lxqt-build-tools - 2.3.0
Ebuild name:

dev-util/lxqt-build-tools-2.3.0

Description

LXQt Build Tools

Added to portage

2025-11-06

lxqt-config - 2.3.0
Ebuild name:

lxqt-base/lxqt-config-2.3.0

Description

LXQt system configuration control center

Added to portage

2025-11-06

lxqt-globalkeys - 2.3.0
Ebuild name:

lxqt-base/lxqt-globalkeys-2.3.0

Description

Daemon and library for global keyboard shortcuts registration

Added to portage

2025-11-06

lxqt-menu-data - 2.3.0
Ebuild name:

lxqt-base/lxqt-menu-data-2.3.0

Description

LXQt Menu Files and Translations for Menu Categories

Added to portage

2025-11-06

lxqt-meta - 2.3.0
Ebuild name:

lxqt-base/lxqt-meta-2.3.0

Description

Meta ebuild for LXQt, the Lightweight Desktop Environment

Added to portage

2025-11-06

lxqt-notificationd - 2.3.0
Ebuild name:

lxqt-base/lxqt-notificationd-2.3.0

Description

LXQt notification daemon and library

Added to portage

2025-11-06

lxqt-openssh-askpass - 2.3.0
Ebuild name:

lxqt-base/lxqt-openssh-askpass-2.3.0

Description

LXQt OpenSSH user password prompt tool

Added to portage

2025-11-06

lxqt-panel - 2.3.0
Ebuild name:

lxqt-base/lxqt-panel-2.3.0

Description

LXQt desktop panel and plugins

Added to portage

2025-11-06

lxqt-policykit - 2.3.0
Ebuild name:

lxqt-base/lxqt-policykit-2.3.0

Description

LXQt PolKit authentication agent

Added to portage

2025-11-06

lxqt-powermanagement - 2.3.0
Ebuild name:

lxqt-base/lxqt-powermanagement-2.3.0

Description

LXQt daemon for power management and auto-suspend

Added to portage

2025-11-06

lxqt-qtplugin - 2.3.0
Ebuild name:

lxqt-base/lxqt-qtplugin-2.3.0

Description

LXQt system integration plugin for Qt

Added to portage

2025-11-06

lxqt-runner - 2.3.0
Ebuild name:

lxqt-base/lxqt-runner-2.3.0

Description

LXQt quick launcher

Added to portage

2025-11-06

lxqt-session - 2.3.0
Ebuild name:

lxqt-base/lxqt-session-2.3.0

Description

LXQt Session Manager

Added to portage

2025-11-06

lxqt-sudo - 2.3.0
Ebuild name:

lxqt-base/lxqt-sudo-2.3.0

Description

LXQt GUI frontend for sudo

Added to portage

2025-11-06

lxqt-wayland-session - 0.3.0
Ebuild name:

lxqt-base/lxqt-wayland-session-0.3.0

Description

LXQt Wayland Session Support

Added to portage

2025-11-06

mqtree - 1.0.19
Ebuild name:

dev-erlang/mqtree-1.0.19

Description

Index tree for MQTT topic filters

Added to portage

2025-11-06

p1_acme - 1.0.29
Ebuild name:

dev-erlang/p1_acme-1.0.29

Description

ACME client library for Erlang

Added to portage

2025-11-06

p1_pgsql - 1.1.36
Ebuild name:

dev-erlang/p1_pgsql-1.1.36

Description

Pure Erlang PostgreSQL driver

Added to portage

2025-11-06

p1_utils - 1.0.28
Ebuild name:

dev-erlang/p1_utils-1.0.28

Description

Erlang utility modules from ProcessOne

Added to portage

2025-11-06

pavucontrol-qt - 2.3.0
Ebuild name:

media-sound/pavucontrol-qt-2.3.0

Description

Qt GUI Pulseaudio Mixer

Added to portage

2025-11-06

pinentry - 0.1_p20250408
Ebuild name:

app-emacs/pinentry-0.1_p20250408

Description

GnuPG Pinentry server implementation for Emacs

Added to portage

2025-11-06

qtxdg-tools - 4.3.0
Ebuild name:

app-misc/qtxdg-tools-4.3.0

Description

User Tools from libqtxdg

Added to portage

2025-11-06

stringprep - 1.0.33
Ebuild name:

dev-erlang/stringprep-1.0.33

Description

Fast Stringprep implementation for Erlang and Elixir

Added to portage

2025-11-06

stun - 1.2.21
Ebuild name:

dev-erlang/stun-1.2.21

Description

STUN and TURN library for Erlang and Elixir

Added to portage

2025-11-06

xdg-desktop-portal-lxqt - 1.3.0
Ebuild name:

gui-libs/xdg-desktop-portal-lxqt-1.3.0

Description

Backend implementation for xdg-desktop-portal using Qt/KF5/l

Added to portage

2025-11-06

xmpp - 1.11.2
Ebuild name:

dev-erlang/xmpp-1.11.2

Description

XMPP parsing and serialization library on top of Fast XML

Added to portage

2025-11-06

yconf - 1.0.22
Ebuild name:

dev-erlang/yconf-1.0.22

Description

YAML configuration processor

Added to portage

2025-11-06

2025-11-05
PEAR-Crypt_GPG - 1.6.11
Ebuild name:

dev-php/PEAR-Crypt_GPG-1.6.11

Description

PHP interface to the GNU Privacy Guard (GnuPG)

Added to portage

2025-11-05

aurorae - 6.5.2
Ebuild name:

kde-plasma/aurorae-6.5.2

Description

Themeable window decoration for KWin

Added to portage

2025-11-05

awesome - 4.3-r104
Ebuild name:

x11-wm/awesome-4.3-r104

Description

Dynamic floating and tiling window manager

Added to portage

2025-11-05

awscli - 1.42.66
Ebuild name:

app-admin/awscli-1.42.66

Description

Universal Command Line Environment for AWS

Added to portage

2025-11-05

bluedevil - 6.5.2
Ebuild name:

kde-plasma/bluedevil-6.5.2

Description

Bluetooth stack for KDE Plasma

Added to portage

2025-11-05

boto3 - 1.40.66
Ebuild name:

dev-python/boto3-1.40.66

Description

The AWS SDK for Python

Added to portage

2025-11-05

botocore - 1.40.66
Ebuild name:

dev-python/botocore-1.40.66

Description

Low-level, data-driven core of boto 3

Added to portage

2025-11-05

breeze - 6.5.2
Ebuild name:

kde-plasma/breeze-6.5.2

Description

Breeze visual style for the Plasma desktop

Added to portage

2025-11-05

breeze-grub - 6.5.2
Ebuild name:

kde-plasma/breeze-grub-6.5.2

Description

Breeze theme for GRUB

Added to portage

2025-11-05

breeze-gtk - 6.5.2
Ebuild name:

kde-plasma/breeze-gtk-6.5.2

Description

Official GTK+ port of Plasma's Breeze widget style

Added to portage

2025-11-05

breeze-plymouth - 6.5.2
Ebuild name:

kde-plasma/breeze-plymouth-6.5.2

Description

Breeze theme for Plymouth

Added to portage

2025-11-05

clang - 21.1.5
Ebuild name:

dev-python/clang-21.1.5

Description

Python bindings for llvm-core/clang

Added to portage

2025-11-05

clang - 21.1.5
Ebuild name:

llvm-core/clang-21.1.5

Description

C language family frontend for LLVM

Added to portage

2025-11-05

clang-common - 21.1.5
Ebuild name:

llvm-core/clang-common-21.1.5

Description

Common files shared between multiple slots of clang

Added to portage

2025-11-05

clang-runtime - 21.1.5
Ebuild name:

llvm-runtimes/clang-runtime-21.1.5

Description

Meta-ebuild for clang runtime libraries

Added to portage

2025-11-05

clion - 2025.2.4
Ebuild name:

dev-util/clion-2025.2.4

Description

A complete toolset for C and C++ development

Added to portage

2025-11-05

compiler-rt - 21.1.5
Ebuild name:

llvm-runtimes/compiler-rt-21.1.5

Description

Compiler runtime library for clang (built-in part)

Added to portage

2025-11-05

compiler-rt-sanitizers - 21.1.5
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-21.1.5

Description

Compiler runtime libraries for clang (sanitizers & xray

Added to portage

2025-11-05

delve - 1.25.2
Ebuild name:

dev-go/delve-1.25.2

Description

A source-level debugger for the Go programming language

Added to portage

2025-11-05

discover - 6.5.2
Ebuild name:

kde-plasma/discover-6.5.2

Description

KDE Plasma resources management GUI

Added to portage

2025-11-05

drgn - 0.0.33
Ebuild name:

dev-debug/drgn-0.0.33

Description

Programmable debugger

Added to portage

2025-11-05

drkonqi - 6.5.2
Ebuild name:

kde-plasma/drkonqi-6.5.2

Description

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

Added to portage

2025-11-05

dtrx - 8.7.0
Ebuild name:

app-arch/dtrx-8.7.0

Description

Do The Right eXtraction - extracts archives of different formats

Added to portage

2025-11-05

duplicity - 3.0.6
Ebuild name:

app-backup/duplicity-3.0.6

Description

Secure backup system using gnupg to encrypt data

Added to portage

2025-11-05

fastbencode - 0.3.7
Ebuild name:

dev-python/fastbencode-0.3.7

Description

Implementation of bencode with Rust implementation

Added to portage

2025-11-05

flang - 21.1.5
Ebuild name:

llvm-core/flang-21.1.5

Description

LLVM's Fortran frontend

Added to portage

2025-11-05

flang-rt - 21.1.5
Ebuild name:

llvm-runtimes/flang-rt-21.1.5

Description

LLVM's Fortran runtime

Added to portage

2025-11-05

flask-compress - 1.22
Ebuild name:

dev-python/flask-compress-1.22

Description

Compress responses in your Flask app with gzip

Added to portage

2025-11-05

flatpak-kcm - 6.5.2
Ebuild name:

kde-plasma/flatpak-kcm-6.5.2

Description

Flatpak Permissions Management KCM

Added to portage

2025-11-05

flux - 2.7.3
Ebuild name:

sys-cluster/flux-2.7.3

Description

Flux is a tool for keeping Kubernetes clusters in sync

Added to portage

2025-11-05

gajim - 2.4.0
Ebuild name:

net-im/gajim-2.4.0

Description

GTK XMPP Client

Added to portage

2025-11-05

gentoolkit - 0.6.11
Ebuild name:

app-portage/gentoolkit-0.6.11

Description

Collection of administration scripts for Gentoo

Added to portage

2025-11-05

glycin-loaders - 2.0.5
Ebuild name:

media-libs/glycin-loaders-2.0.5

Description

Loaders for glycin clients (glycin crate or libglycin)

Added to portage

2025-11-05

gnome-keyring - 48.0-r1
Ebuild name:

gnome-base/gnome-keyring-48.0-r1

Description

Password and keyring managing daemon

Added to portage

2025-11-05

gnome-session - 48.0-r2
Ebuild name:

gnome-base/gnome-session-48.0-r2

Description

Gnome session manager

Added to portage

2025-11-05

gnome-shell - 48.6
Ebuild name:

gnome-base/gnome-shell-48.6

Description

Provides core UI functions for the GNOME desktop

Added to portage

2025-11-05

golangci-lint - 2.6.1
Ebuild name:

dev-go/golangci-lint-2.6.1

Description

Fast linters runner for Go

Added to portage

2025-11-05

google-protobuf - 4.33.0
Ebuild name:

dev-ruby/google-protobuf-4.33.0

Description

Protocol Buffers are Google's data interchange format

Added to portage

2025-11-05

i3lock - 2.16
Ebuild name:

x11-misc/i3lock-2.16

Description

Simple screen locker

Added to portage

2025-11-05

imageio - 2.37.2
Ebuild name:

dev-python/imageio-2.37.2

Description

Python library for reading and writing image data

Added to portage

2025-11-05

kactivitymanagerd - 6.5.2
Ebuild name:

kde-plasma/kactivitymanagerd-6.5.2

Description

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

Added to portage

2025-11-05

kde-cli-tools - 6.5.2
Ebuild name:

kde-plasma/kde-cli-tools-6.5.2

Description

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

Added to portage

2025-11-05

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

kde-plasma/kde-cli-tools-common-6.5.2

Description

Added to portage

2025-11-05

kde-gtk-config - 6.5.2
Ebuild name:

kde-plasma/kde-gtk-config-6.5.2

Description

Syncs KDE Plasma theme settings to GTK applications

Added to portage

2025-11-05

kdecoration - 6.5.2
Ebuild name:

kde-plasma/kdecoration-6.5.2

Description

Plugin based library to create window decorations

Added to portage

2025-11-05

kdeplasma-addons - 6.5.2
Ebuild name:

kde-plasma/kdeplasma-addons-6.5.2

Description

Extra Plasma applets and engines

Added to portage

2025-11-05

kdesu-gui - 6.5.2
Ebuild name:

kde-plasma/kdesu-gui-6.5.2

Description

Graphical frontend for KDE Frameworks' kdesu

Added to portage

2025-11-05

keditfiletype - 6.5.2
Ebuild name:

kde-plasma/keditfiletype-6.5.2

Description

File Type Editor

Added to portage

2025-11-05

keepassxc - 2.7.10-r2
Ebuild name:

app-admin/keepassxc-2.7.10-r2

Description

KeePassXC - KeePass Cross-platform Community Edition

Added to portage

2025-11-05

kgamma - 6.5.2
Ebuild name:

kde-plasma/kgamma-6.5.2

Description

Screen gamma values kcontrol module

Added to portage

2025-11-05

kglobalacceld - 6.5.2
Ebuild name:

kde-plasma/kglobalacceld-6.5.2

Description

Daemon providing Global Keyboard Shortcut (Accelerator) functionalit

Added to portage

2025-11-05

kinfocenter - 6.5.2
Ebuild name:

kde-plasma/kinfocenter-6.5.2

Description

Utility providing information about the computer hardware

Added to portage

2025-11-05

kmenuedit - 6.5.2
Ebuild name:

kde-plasma/kmenuedit-6.5.2

Description

KDE Plasma menu editor

Added to portage

2025-11-05

knighttime - 6.5.2
Ebuild name:

kde-plasma/knighttime-6.5.2

Description

Helpers for scheduling the dark-light cycle

Added to portage

2025-11-05

kpipewire - 6.5.2
Ebuild name:

kde-plasma/kpipewire-6.5.2

Description

Components relating to Flatpak pipewire use in Plasma

Added to portage

2025-11-05

krdp - 6.5.2
Ebuild name:

kde-plasma/krdp-6.5.2

Description

Library and examples for creating an RDP server

Added to portage

2025-11-05

kscreen - 6.5.2
Ebuild name:

kde-plasma/kscreen-6.5.2

Description

KDE Plasma screen management

Added to portage

2025-11-05

kscreenlocker - 6.5.2
Ebuild name:

kde-plasma/kscreenlocker-6.5.2

Description

Library and components for secure lock screen architecture

Added to portage

2025-11-05

ksshaskpass - 6.5.2
Ebuild name:

kde-plasma/ksshaskpass-6.5.2

Description

Implementation of ssh-askpass with KDE Wallet integration

Added to portage

2025-11-05

ksystemstats - 6.5.2
Ebuild name:

kde-plasma/ksystemstats-6.5.2

Description

Plugin-based system monitoring daemon

Added to portage

2025-11-05

kubelogin - 1.34.2
Ebuild name:

sys-cluster/kubelogin-1.34.2

Description

kubectl plugin for Kubernetes OpenID Connect authentication

Added to portage

2025-11-05

kubeseal - 0.32.2
Ebuild name:

sys-cluster/kubeseal-0.32.2

Description

Client-side utility for one-way encrypted secrets in kubernetes

Added to portage

2025-11-05

kwallet-pam - 6.5.2
Ebuild name:

kde-plasma/kwallet-pam-6.5.2

Description

PAM module to not enter KWallet password again after login

Added to portage

2025-11-05

kwayland - 6.5.2
Ebuild name:

kde-plasma/kwayland-6.5.2

Description

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

Added to portage

2025-11-05

kwayland-integration - 6.5.2
Ebuild name:

kde-plasma/kwayland-integration-6.5.2

Description

Provides KWindowSystem integration plugin for Wayland

Added to portage

2025-11-05

kwin - 6.5.2
Ebuild name:

kde-plasma/kwin-6.5.2

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2025-11-05

kwin-x11 - 6.5.2
Ebuild name:

kde-plasma/kwin-x11-6.5.2

Description

Flexible, composited X window manager

Added to portage

2025-11-05

kwrited - 6.5.2
Ebuild name:

kde-plasma/kwrited-6.5.2

Description

KDE Plasma daemon listening for wall and write messages

Added to portage

2025-11-05

layer-shell-qt - 6.5.2
Ebuild name:

kde-plasma/layer-shell-qt-6.5.2

Description

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

Added to portage

2025-11-05

libclc - 21.1.5
Ebuild name:

llvm-core/libclc-21.1.5

Description

OpenCL C library

Added to portage

2025-11-05

libcxx - 21.1.5
Ebuild name:

llvm-runtimes/libcxx-21.1.5

Description

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

Added to portage

2025-11-05

libcxxabi - 21.1.5
Ebuild name:

llvm-runtimes/libcxxabi-21.1.5

Description

Low level support for a standard C++ library

Added to portage

2025-11-05

libffado - 2.4.9
Ebuild name:

media-libs/libffado-2.4.9

Description

Driver for IEEE1394 (Firewire) audio interfaces

Added to portage

2025-11-05

libgcc - 21.1.5
Ebuild name:

llvm-runtimes/libgcc-21.1.5

Description

Compiler runtime library for clang, compatible with libgcc_s

Added to portage

2025-11-05

libkscreen - 6.5.2
Ebuild name:

kde-plasma/libkscreen-6.5.2

Description

Plasma screen management library

Added to portage

2025-11-05

libksysguard - 6.5.2
Ebuild name:

kde-plasma/libksysguard-6.5.2

Description

Task management and system monitoring library

Added to portage

2025-11-05

libnvme - 1.16
Ebuild name:

sys-libs/libnvme-1.16

Description

C Library for NVM Express on Linux

Added to portage

2025-11-05

libplasma - 6.5.2
Ebuild name:

kde-plasma/libplasma-6.5.2

Description

Plasma library and runtime components based upon KF6 and Qt6

Added to portage

2025-11-05

libunwind - 21.1.5
Ebuild name:

llvm-runtimes/libunwind-21.1.5

Description

C++ runtime stack unwinder from LLVM

Added to portage

2025-11-05

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

media-libs/libva-intel-media-driver-25.4.3

Description

Intel Media Driver for VA-API (iHD)

Added to portage

2025-11-05

lit - 21.1.5
Ebuild name:

dev-python/lit-21.1.5

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2025-11-05

lld - 21.1.5
Ebuild name:

llvm-core/lld-21.1.5

Description

The LLVM linker (link editor)

Added to portage

2025-11-05

lldb - 21.1.5
Ebuild name:

llvm-core/lldb-21.1.5

Description

The LLVM debugger

Added to portage

2025-11-05

llvm - 21.1.5
Ebuild name:

dev-ml/llvm-21.1.5

Description

OCaml bindings for LLVM

Added to portage

2025-11-05

llvm - 21.1.5
Ebuild name:

llvm-core/llvm-21.1.5

Description

Low Level Virtual Machine

Added to portage

2025-11-05

llvm-common - 21.1.5
Ebuild name:

llvm-core/llvm-common-21.1.5

Description

Common files shared between multiple slots of LLVM

Added to portage

2025-11-05

milou - 6.5.2
Ebuild name:

kde-plasma/milou-6.5.2

Description

Dedicated search application built on top of Baloo

Added to portage

2025-11-05

miniflux - 2.2.14
Ebuild name:

www-apps/miniflux-2.2.14

Description

Minimalist and opinionated feed reader

Added to portage

2025-11-05

mlir - 21.1.5
Ebuild name:

llvm-core/mlir-21.1.5

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2025-11-05

murmur - 1.6.0_pre20250920-r1
Ebuild name:

net-voip/murmur-1.6.0_pre20250920-r1

Description

Mumble is an open source, low-latency, high quality voice chat

Added to portage

2025-11-05

mutt - 2.2.15-r1
Ebuild name:

mail-client/mutt-2.2.15-r1

Description

A small but very powerful text-based mail client

Added to portage

2025-11-05

narwhals - 2.10.2
Ebuild name:

dev-python/narwhals-2.10.2

Description

Extremely lightweight compatibility layer between dataframe libraries

Added to portage

2025-11-05

nbxmpp - 6.4.0
Ebuild name:

dev-python/nbxmpp-6.4.0

Description

Python library to use Jabber/XMPP networks in a non-blocking way

Added to portage

2025-11-05

ncdu - 2.9.2
Ebuild name:

sys-fs/ncdu-2.9.2

Description

NCurses Disk Usage

Added to portage

2025-11-05

nvme-cli - 2.16
Ebuild name:

sys-apps/nvme-cli-2.16

Description

NVM-Express user space tooling for Linux

Added to portage

2025-11-05

ocean-sound-theme - 6.5.2
Ebuild name:

kde-plasma/ocean-sound-theme-6.5.2

Description

Ocean Sound Theme for Plasma

Added to portage

2025-11-05

offload - 21.1.5
Ebuild name:

llvm-runtimes/offload-21.1.5

Description

OpenMP offloading support

Added to portage

2025-11-05

openmp - 21.1.5
Ebuild name:

llvm-runtimes/openmp-21.1.5

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2025-11-05

oxygen - 6.5.2
Ebuild name:

kde-plasma/oxygen-6.5.2

Description

Oxygen visual style for the Plasma desktop

Added to portage

2025-11-05

oxygen-sounds - 6.5.2
Ebuild name:

kde-plasma/oxygen-sounds-6.5.2

Description

Oxygen sound theme for the Plasma desktop

Added to portage

2025-11-05

pkg-info - 0.6
Ebuild name:

app-emacs/pkg-info-0.6

Description

Provide information about Emacs packages

Added to portage

2025-11-05

planner - 3.42-r1
Ebuild name:

app-emacs/planner-3.42-r1

Description

Maintain a local Wiki using Emacs-friendly markup

Added to portage

2025-11-05

plasma-activities - 6.5.2
Ebuild name:

kde-plasma/plasma-activities-6.5.2

Description

Core components for KDE's Activities System

Added to portage

2025-11-05

plasma-activities-stats - 6.5.2
Ebuild name:

kde-plasma/plasma-activities-stats-6.5.2

Description

Library for accessing usage data collected by the activiti

Added to portage

2025-11-05

plasma-browser-integration - 6.5.2
Ebuild name:

kde-plasma/plasma-browser-integration-6.5.2

Description

Integrate Chrome/Firefox better into Plasma through bro

Added to portage

2025-11-05

plasma-desktop - 6.5.2
Ebuild name:

kde-plasma/plasma-desktop-6.5.2

Description

KDE Plasma desktop

Added to portage

2025-11-05

plasma-disks - 6.5.2
Ebuild name:

kde-plasma/plasma-disks-6.5.2

Description

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

Added to portage

2025-11-05

plasma-firewall - 6.5.2
Ebuild name:

kde-plasma/plasma-firewall-6.5.2

Description

Plasma frontend for Firewalld or UFW

Added to portage

2025-11-05

plasma-integration - 6.5.2
Ebuild name:

kde-plasma/plasma-integration-6.5.2

Description

Qt Platform Theme integration plugins for the Plasma workspaces

Added to portage

2025-11-05

plasma-login-sessions - 6.5.2
Ebuild name:

kde-plasma/plasma-login-sessions-6.5.2

Description

KDE Plasma login sessions

Added to portage

2025-11-05

plasma-meta - 6.5.2
Ebuild name:

kde-plasma/plasma-meta-6.5.2

Description

Merge this to pull in all Plasma 6 packages

Added to portage

2025-11-05

plasma-nm - 6.5.2
Ebuild name:

kde-plasma/plasma-nm-6.5.2

Description

KDE Plasma applet for NetworkManager

Added to portage

2025-11-05

plasma-pa - 6.5.2
Ebuild name:

kde-plasma/plasma-pa-6.5.2

Description

Plasma applet for audio volume management using PulseAudio

Added to portage

2025-11-05

plasma-sdk - 6.5.2
Ebuild name:

kde-plasma/plasma-sdk-6.5.2

Description

Useful applications for Plasma development

Added to portage

2025-11-05

plasma-systemmonitor - 6.5.2
Ebuild name:

kde-plasma/plasma-systemmonitor-6.5.2

Description

Monitor system sensors, process information and other system

Added to portage

2025-11-05

plasma-thunderbolt - 6.5.2
Ebuild name:

kde-plasma/plasma-thunderbolt-6.5.2

Description

Plasma integration for controlling Thunderbolt devices

Added to portage

2025-11-05

plasma-vault - 6.5.2
Ebuild name:

kde-plasma/plasma-vault-6.5.2

Description

Plasma applet and services for creating encrypted vaults

Added to portage

2025-11-05

plasma-welcome - 6.5.2
Ebuild name:

kde-plasma/plasma-welcome-6.5.2

Description

Friendly onboarding wizard for Plasma

Added to portage

2025-11-05

plasma-workspace - 6.5.2
Ebuild name:

kde-plasma/plasma-workspace-6.5.2

Description

KDE Plasma workspace

Added to portage

2025-11-05

plasma-workspace-wallpapers - 6.5.2
Ebuild name:

kde-plasma/plasma-workspace-wallpapers-6.5.2

Description

Wallpapers for the Plasma workspace

Added to portage

2025-11-05

plasma5support - 6.5.2
Ebuild name:

kde-plasma/plasma5support-6.5.2

Description

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

Added to portage

2025-11-05

plotly - 6.4.0
Ebuild name:

dev-python/plotly-6.4.0

Description

Browser-based graphing library for Python

Added to portage

2025-11-05

plymouth-kcm - 6.5.2
Ebuild name:

kde-plasma/plymouth-kcm-6.5.2

Description

KDE Plasma control module for Plymouth

Added to portage

2025-11-05

plz - 0.7.2
Ebuild name:

app-emacs/plz-0.7.2

Description

HTTP library with curl backend for GNU Emacs

Added to portage

2025-11-05

plz - 0.9.1
Ebuild name:

app-emacs/plz-0.9.1

Description

HTTP library with curl backend for GNU Emacs

Added to portage

2025-11-05

po-mode - 0.22
Ebuild name:

app-emacs/po-mode-0.22

Description

Major mode for GNU gettext PO files

Added to portage

2025-11-05

po-mode - 0.26
Ebuild name:

app-emacs/po-mode-0.26

Description

Major mode for GNU gettext PO files

Added to portage

2025-11-05

poke - 3.0
Ebuild name:

app-emacs/poke-3.0

Description

Emacs meets GNU poke

Added to portage

2025-11-05

poke - 3.2
Ebuild name:

app-emacs/poke-3.2

Description

Emacs meets GNU poke

Added to portage

2025-11-05

poke-mode - 3.0
Ebuild name:

app-emacs/poke-mode-3.0

Description

Major mode for editing Poke programs

Added to portage

2025-11-05

polkit-kde-agent - 6.5.2
Ebuild name:

kde-plasma/polkit-kde-agent-6.5.2

Description

PolKit agent module for KDE Plasma

Added to portage

2025-11-05

polly - 21.1.5
Ebuild name:

llvm-core/polly-21.1.5

Description

Polyhedral optimizations for LLVM

Added to portage

2025-11-05

polymode - 0.2.2_p20220322
Ebuild name:

app-emacs/polymode-0.2.2_p20220322

Description

Framework for Multiple Major Modes in Emacs

Added to portage

2025-11-05

powerdevil - 6.5.2
Ebuild name:

kde-plasma/powerdevil-6.5.2

Description

Power management for KDE Plasma Shell

Added to portage

2025-11-05

print-manager - 6.5.2
Ebuild name:

kde-plasma/print-manager-6.5.2

Description

Manage CUPS print jobs and printers in Plasma

Added to portage

2025-11-05

protobuf - 33.0
Ebuild name:

dev-libs/protobuf-33.0

Description

Google's Protocol Buffers - Extensible mechanism for serializing structured

Added to portage

2025-11-05

pyfakefs - 5.10.2
Ebuild name:

dev-python/pyfakefs-5.10.2

Description

A fake file system that mocks the Python file system modules

Added to portage

2025-11-05

pyicu - 2.16
Ebuild name:

dev-python/pyicu-2.16

Description

Python bindings for dev-libs/icu

Added to portage

2025-11-05

python - 0.3.14.0_p1
Ebuild name:

dev-lang/python-0.3.14.0_p1

Description

Freethreading (no-GIL) version of Python programming language

Added to portage

2025-11-05

python - 3.14.0_p1
Ebuild name:

dev-lang/python-3.14.0_p1

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2025-11-05

python-tests - 0.3.14.0_p1
Ebuild name:

dev-python/python-tests-0.3.14.0_p1

Description

Test modules from dev-lang/python

Added to portage

2025-11-05

python-tests - 3.14.0_p1
Ebuild name:

dev-python/python-tests-3.14.0_p1

Description

Test modules from dev-lang/python

Added to portage

2025-11-05

qqc2-breeze-style - 6.5.2
Ebuild name:

kde-plasma/qqc2-breeze-style-6.5.2

Description

Breeze inspired QQC2 Style

Added to portage

2025-11-05

roundcube - 1.6.7-r1
Ebuild name:

mail-client/roundcube-1.6.7-r1

Description

A browser-based multilingual IMAP client with an application-like us

Added to portage

2025-11-05

sddm-kcm - 6.5.2
Ebuild name:

kde-plasma/sddm-kcm-6.5.2

Description

KDE Plasma control module for SDDM

Added to portage

2025-11-05

seamonkey - 2.53.22
Ebuild name:

www-client/seamonkey-2.53.22

Description

Seamonkey Web Browser

Added to portage

2025-11-05

simdjson - 4.2.1
Ebuild name:

dev-libs/simdjson-4.2.1

Description

SIMD accelerated C++ JSON library

Added to portage

2025-11-05

sonarr-bin - 4.0.16.2944
Ebuild name:

www-apps/sonarr-bin-4.0.16.2944

Description

Sonarr is a Smart PVR for newsgroup and bittorrent users

Added to portage

2025-11-05

spectacle - 6.5.2
Ebuild name:

kde-plasma/spectacle-6.5.2

Description

Screenshot capture utility

Added to portage

2025-11-05

sqlite - 3.51.0
Ebuild name:

dev-db/sqlite-3.51.0

Description

SQL database engine

Added to portage

2025-11-05

stig - 0.14.0a_p0
Ebuild name:

net-p2p/stig-0.14.0a_p0

Description

TUI and CLI for the BitTorrent client Transmission

Added to portage

2025-11-05

stripe - 13.1.2
Ebuild name:

dev-python/stripe-13.1.2

Description

Stripe Python bindings

Added to portage

2025-11-05

syncthing - 2.0.11
Ebuild name:

net-p2p/syncthing-2.0.11

Description

Open Source Continuous File Synchronization

Added to portage

2025-11-05

systemsettings - 6.5.2
Ebuild name:

kde-plasma/systemsettings-6.5.2

Description

Control Center to configure KDE Plasma desktop

Added to portage

2025-11-05

tbb - 2022.3.0
Ebuild name:

dev-cpp/tbb-2022.3.0

Description

High level abstract threading library

Added to portage

2025-11-05

tmuxp - 1.56.0
Ebuild name:

app-misc/tmuxp-1.56.0

Description

tmux session manager. built on libtmux

Added to portage

2025-11-05

torchvision - 0.23.0
Ebuild name:

sci-ml/torchvision-0.23.0

Description

Datasets, transforms and models to specific to computer vision

Added to portage

2025-11-05

torchvision - 0.24.0
Ebuild name:

sci-ml/torchvision-0.24.0

Description

Datasets, transforms and models to specific to computer vision

Added to portage

2025-11-05

uwsm - 0.24.2
Ebuild name:

gui-apps/uwsm-0.24.2

Description

Universal Wayland Session Manager

Added to portage

2025-11-05

virtctl - 1.6.2
Ebuild name:

sys-cluster/virtctl-1.6.2

Description

Control virtual machine related operations on your kubernetes cluster

Added to portage

2025-11-05

virtualenv - 20.34.0-r1
Ebuild name:

dev-python/virtualenv-20.34.0-r1

Description

Virtual Python Environment builder

Added to portage

2025-11-05

virtualenv - 20.35.3-r1
Ebuild name:

dev-python/virtualenv-20.35.3-r1

Description

Virtual Python Environment builder

Added to portage

2025-11-05

virtualenv - 20.35.4-r1
Ebuild name:

dev-python/virtualenv-20.35.4-r1

Description

Virtual Python Environment builder

Added to portage

2025-11-05

wacomtablet - 6.5.2
Ebuild name:

kde-plasma/wacomtablet-6.5.2

Description

Wacom system settings module that supports different button/pen layout

Added to portage

2025-11-05

with-editor - 3.4.7
Ebuild name:

app-emacs/with-editor-3.4.7

Description

Use the Emacsclient as the of child processes

Added to portage

2025-11-05

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

kde-plasma/xdg-desktop-portal-kde-6.5.2

Description

Backend implementation for xdg-desktop-portal that is using

Added to portage

2025-11-05

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