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:

74301

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-04-19
adebar - 2.4.2
Ebuild name:

app-mobilephone/adebar-2.4.2

Description

Android DEvice Backup And Report, using Bash and ADB

Added to portage

2025-04-19

aniso8601 - 10.0.1
Ebuild name:

dev-python/aniso8601-10.0.1

Description

A library for parsing ISO 8601 strings

Added to portage

2025-04-19

aspell-ast - 0.01-r1
Ebuild name:

app-dicts/aspell-ast-0.01-r1

Description

Aspell () language dictionary

Added to portage

2025-04-19

awscli - 1.38.37
Ebuild name:

app-admin/awscli-1.38.37

Description

Universal Command Line Environment for AWS

Added to portage

2025-04-19

b2 - 5.3.2
Ebuild name:

dev-build/b2-5.3.2

Description

A system for large project software construction, simple to use and powerful

Added to portage

2025-04-19

bash - 5.3_rc1_p20250419
Ebuild name:

app-shells/bash-5.3_rc1_p20250419

Description

The standard GNU Bourne again shell

Added to portage

2025-04-19

bcachefs-tools - 1.25.2
Ebuild name:

sys-fs/bcachefs-tools-1.25.2

Description

Tools for bcachefs

Added to portage

2025-04-19

boto3 - 1.37.37
Ebuild name:

dev-python/boto3-1.37.37

Description

The AWS SDK for Python

Added to portage

2025-04-19

botocore - 1.37.37
Ebuild name:

dev-python/botocore-1.37.37

Description

Low-level, data-driven core of boto 3

Added to portage

2025-04-19

catch - 3.8.1
Ebuild name:

dev-cpp/catch-3.8.1

Description

Modern C++ header-only framework for unit-tests

Added to portage

2025-04-19

cryptokit - 1.20.1
Ebuild name:

dev-ml/cryptokit-1.20.1

Description

Cryptographic primitives library for Objective Caml

Added to portage

2025-04-19

dhcpcd - 10.2.2-r1
Ebuild name:

net-misc/dhcpcd-10.2.2-r1

Description

A fully featured, yet light weight RFC2131 compliant DHCP client

Added to portage

2025-04-19

egl-x11 - 1.0.1
Ebuild name:

gui-libs/egl-x11-1.0.1

Description

NVIDIA X11/XCB EGL external platform library

Added to portage

2025-04-19

framework_tool - 0.3.0
Ebuild name:

app-laptop/framework_tool-0.3.0

Description

Swiss army knife for Framework laptops

Added to portage

2025-04-19

gcc - 12.4.1_p20250417
Ebuild name:

sys-devel/gcc-12.4.1_p20250417

Description

The GNU Compiler Collection

Added to portage

2025-04-19

gcc - 13.3.1_p20250418
Ebuild name:

sys-devel/gcc-13.3.1_p20250418

Description

The GNU Compiler Collection

Added to portage

2025-04-19

gcc - 15.0.1_pre20250418
Ebuild name:

sys-devel/gcc-15.0.1_pre20250418

Description

The GNU Compiler Collection

Added to portage

2025-04-19

gcc - 15.0.1_pre20250418-r1
Ebuild name:

sys-devel/gcc-15.0.1_pre20250418-r1

Description

The GNU Compiler Collection

Added to portage

2025-04-19

hash-slinger - 3.3-r1
Ebuild name:

net-dns/hash-slinger-3.3-r1

Description

Various tools to generate DNS records like SSHFP, TLSA, OPENPGPKEY, IPS

Added to portage

2025-04-19

hash-slinger - 3.4
Ebuild name:

net-dns/hash-slinger-3.4

Description

Various tools to generate DNS records like SSHFP, TLSA, OPENPGPKEY, IPSECK

Added to portage

2025-04-19

hypothesis - 6.131.6
Ebuild name:

dev-python/hypothesis-6.131.6

Description

A library for property based testing

Added to portage

2025-04-19

igraph - 0.10.15
Ebuild name:

dev-libs/igraph-0.10.15

Description

Creating and manipulating undirected and directed graphs

Added to portage

2025-04-19

intel-compute-runtime - 24.35.30872.32-r1
Ebuild name:

dev-libs/intel-compute-runtime-24.35.30872.32-r1

Description

Intel Graphics Compute Runtime for oneAPI Level Ze

Added to portage

2025-04-19

intel-compute-runtime - 25.13.33276.17-r1
Ebuild name:

dev-libs/intel-compute-runtime-25.13.33276.17-r1

Description

Intel Graphics Compute Runtime for oneAPI Level Ze

Added to portage

2025-04-19

kshutdown - 6.0
Ebuild name:

kde-misc/kshutdown-6.0

Description

Shutdown manager for desktop environments like KDE Plasma

Added to portage

2025-04-19

libmygpo-qt - 1.2.0
Ebuild name:

media-libs/libmygpo-qt-1.2.0

Description

Qt/C++ library wrapping the gpodder.net webservice

Added to portage

2025-04-19

mac - 11.08
Ebuild name:

media-sound/mac-11.08

Description

Monkey's Audio Codecs

Added to portage

2025-04-19

metee - 5.0.0
Ebuild name:

dev-libs/metee-5.0.0

Description

Cross-platform access library for Intel CSME HECI interface

Added to portage

2025-04-19

nfdump - 1.7.6
Ebuild name:

net-analyzer/nfdump-1.7.6

Description

A set of tools to collect and process netflow data

Added to portage

2025-04-19

ntpsec - 1.2.4
Ebuild name:

net-misc/ntpsec-1.2.4

Description

The NTP reference implementation, refactored

Added to portage

2025-04-19

pdm - 2.24.0-r1
Ebuild name:

dev-python/pdm-2.24.0-r1

Description

Python package and dependency manager supporting the latest PEP standards

Added to portage

2025-04-19

picard - 2.13.3-r1
Ebuild name:

media-sound/picard-2.13.3-r1

Description

Cross-platform music tagger

Added to portage

2025-04-19

sdl2-image - 2.8.5-r1
Ebuild name:

media-libs/sdl2-image-2.8.5-r1

Description

Image file loading library

Added to portage

2025-04-19

sprockets - 4.2.2
Ebuild name:

dev-ruby/sprockets-4.2.2

Description

Ruby library for compiling and serving web assets

Added to portage

2025-04-19

transformers - 4.50.3
Ebuild name:

sci-ml/transformers-4.50.3

Description

State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow

Added to portage

2025-04-19

transformers - 4.51.3
Ebuild name:

sci-ml/transformers-4.51.3

Description

State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow

Added to portage

2025-04-19

valgrind - 3.25.0_rc1
Ebuild name:

dev-debug/valgrind-3.25.0_rc1

Description

An open-source memory debugger for GNU/Linux

Added to portage

2025-04-19

xapian - 1.4.29
Ebuild name:

dev-libs/xapian-1.4.29

Description

Xapian Probabilistic Information Retrieval library

Added to portage

2025-04-19

xapian-bindings - 1.4.29
Ebuild name:

dev-libs/xapian-bindings-1.4.29

Description

SWIG and JNI bindings for Xapian

Added to portage

2025-04-19

xapian-omega - 1.4.29
Ebuild name:

app-text/xapian-omega-1.4.29

Description

An application built on Xapian, consisting of indexers and a CGI searc

Added to portage

2025-04-19

2025-04-18
accelerate - 1.6.0
Ebuild name:

sci-ml/accelerate-1.6.0

Description

Run your *raw* PyTorch training script on any kind of device

Added to portage

2025-04-18

akonadi - 25.04.0
Ebuild name:

kde-apps/akonadi-25.04.0

Description

Storage service for PIM data and libraries for PIM apps

Added to portage

2025-04-18

akonadi-calendar - 25.04.0
Ebuild name:

kde-apps/akonadi-calendar-25.04.0

Description

Library for akonadi calendar integration

Added to portage

2025-04-18

akonadi-calendar-tools-common - 25.04.0
Ebuild name:

kde-apps/akonadi-calendar-tools-common-25.04.0

Description

Added to portage

2025-04-18

akonadi-contacts - 25.04.0
Ebuild name:

kde-apps/akonadi-contacts-25.04.0

Description

Library for akonadi contact integration

Added to portage

2025-04-18

akonadi-import-wizard - 25.04.0
Ebuild name:

kde-apps/akonadi-import-wizard-25.04.0

Description

Assistant to import PIM data from other applications into Ak

Added to portage

2025-04-18

akonadi-mime - 25.04.0
Ebuild name:

kde-apps/akonadi-mime-25.04.0

Description

Library for akonadi mime types

Added to portage

2025-04-18

akonadi-search - 25.04.0
Ebuild name:

kde-apps/akonadi-search-25.04.0

Description

Libraries and daemons to implement searching in Akonadi

Added to portage

2025-04-18

akonadiconsole - 25.04.0
Ebuild name:

kde-apps/akonadiconsole-25.04.0

Description

Application for debugging Akonadi Resources

Added to portage

2025-04-18

akregator - 25.04.0
Ebuild name:

kde-apps/akregator-25.04.0

Description

News feed aggregator

Added to portage

2025-04-18

alligator - 25.04.0
Ebuild name:

net-news/alligator-25.04.0

Description

Convergent RSS/Atom feed reader for Plasma

Added to portage

2025-04-18

analitza - 25.04.0
Ebuild name:

kde-apps/analitza-25.04.0

Description

KDE library for mathematical features

Added to portage

2025-04-18

ark - 25.04.0
Ebuild name:

kde-apps/ark-25.04.0

Description

File archiver by KDE

Added to portage

2025-04-18

artikulate - 25.04.0
Ebuild name:

kde-apps/artikulate-25.04.0

Description

Language learning application that helps improving pronunciation skills

Added to portage

2025-04-18

audex - 25.04.0
Ebuild name:

media-sound/audex-25.04.0

Description

Tool for ripping compact discs

Added to portage

2025-04-18

audiocd-kio - 25.04.0
Ebuild name:

kde-apps/audiocd-kio-25.04.0

Description

KIO worker for accessing audio CDs

Added to portage

2025-04-18

awscli - 1.38.36
Ebuild name:

app-admin/awscli-1.38.36

Description

Universal Command Line Environment for AWS

Added to portage

2025-04-18

baloo-widgets - 25.04.0
Ebuild name:

kde-apps/baloo-widgets-25.04.0

Description

Widget library for baloo

Added to portage

2025-04-18

blinken - 25.04.0
Ebuild name:

kde-apps/blinken-25.04.0

Description

Memory enhancement game based on KDE Frameworks

Added to portage

2025-04-18

bomber - 25.04.0
Ebuild name:

kde-apps/bomber-25.04.0

Description

Single player arcade bombing game

Added to portage

2025-04-18

boto3 - 1.37.36
Ebuild name:

dev-python/boto3-1.37.36

Description

The AWS SDK for Python

Added to portage

2025-04-18

botocore - 1.37.36
Ebuild name:

dev-python/botocore-1.37.36

Description

Low-level, data-driven core of boto 3

Added to portage

2025-04-18

bovo - 25.04.0
Ebuild name:

kde-apps/bovo-25.04.0

Description

Five-in-a-row Board Game

Added to portage

2025-04-18

bundler - 2.6.8
Ebuild name:

dev-ruby/bundler-2.6.8

Description

An easy way to vendor gem dependencies

Added to portage

2025-04-18

calendarjanitor - 25.04.0
Ebuild name:

kde-apps/calendarjanitor-25.04.0

Description

Tool to scan calendar data for buggy instances

Added to portage

2025-04-18

calendarsupport - 25.04.0
Ebuild name:

kde-apps/calendarsupport-25.04.0

Description

Calendar support library

Added to portage

2025-04-18

calver - 2025.4.17
Ebuild name:

dev-python/calver-2025.4.17

Description

Setuptools extension for CalVer package versions

Added to portage

2025-04-18

cantor - 25.04.0
Ebuild name:

kde-apps/cantor-25.04.0

Description

Interface for doing mathematics and scientific computing

Added to portage

2025-04-18

cervisia - 25.04.0
Ebuild name:

kde-apps/cervisia-25.04.0

Description

CVS frontend by KDE

Added to portage

2025-04-18

closure-compiler-bin - 20250407
Ebuild name:

dev-lang/closure-compiler-bin-20250407

Description

JavaScript optimizing compiler

Added to portage

2025-04-18

colord-kde - 25.04.0
Ebuild name:

kde-misc/colord-kde-25.04.0

Description

Provides interfaces and session daemon to colord

Added to portage

2025-04-18

core_unix - 0.17.1
Ebuild name:

dev-ml/core_unix-0.17.1

Description

Unix-specific portions of Core

Added to portage

2025-04-18

crystal - 1.16.1
Ebuild name:

dev-lang/crystal-1.16.1

Description

The Crystal Programming Language

Added to portage

2025-04-18

cython - 3.1.0_beta1-r1
Ebuild name:

dev-python/cython-3.1.0_beta1-r1

Description

A Python to C compiler

Added to portage

2025-04-18

dolphin - 25.04.0
Ebuild name:

kde-apps/dolphin-25.04.0

Description

Plasma filemanager focusing on usability

Added to portage

2025-04-18

dolphin-plugins-common - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-common-25.04.0

Description

Added to portage

2025-04-18

dolphin-plugins-dropbox - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-dropbox-25.04.0

Description

Dolphin plugin for Dropbox service integration

Added to portage

2025-04-18

dolphin-plugins-git - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-git-25.04.0

Description

Dolphin plugin for Git integration

Added to portage

2025-04-18

dolphin-plugins-makefileactions - 25.04.0
Ebuild name:

dev-build/dolphin-plugins-makefileactions-25.04.0

Description

Dolphin plugin for Makefile targets integration

Added to portage

2025-04-18

dolphin-plugins-mercurial - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-mercurial-25.04.0

Description

Dolphin plugin for Mercurial integration

Added to portage

2025-04-18

dolphin-plugins-mountiso - 25.04.0
Ebuild name:

app-cdr/dolphin-plugins-mountiso-25.04.0

Description

Dolphin plugin for ISO loopback device mounting

Added to portage

2025-04-18

dolphin-plugins-subversion - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-subversion-25.04.0

Description

Dolphin plugin for Subversion integration

Added to portage

2025-04-18

dragon - 25.04.0
Ebuild name:

kde-apps/dragon-25.04.0

Description

Simple video player

Added to portage

2025-04-18

edid-decode - 0_pre20241119
Ebuild name:

sys-apps/edid-decode-0_pre20241119

Description

Decode EDID data in a human-readable format

Added to portage

2025-04-18

elasticsearch - 9.0.0
Ebuild name:

dev-python/elasticsearch-9.0.0

Description

Official Elasticsearch client library for Python

Added to portage

2025-04-18

elisa - 25.04.0
Ebuild name:

media-sound/elisa-25.04.0

Description

Simple music player by KDE

Added to portage

2025-04-18

elogind - 252.9-r3
Ebuild name:

sys-auth/elogind-252.9-r3

Description

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

Added to portage

2025-04-18

eventviews - 25.04.0
Ebuild name:

kde-apps/eventviews-25.04.0

Description

Calendar viewer for KDE PIM

Added to portage

2025-04-18

falkon - 25.04.0
Ebuild name:

www-client/falkon-25.04.0

Description

Cross-platform web browser using QtWebEngine

Added to portage

2025-04-18

ffmpegthumbs - 25.04.0
Ebuild name:

kde-apps/ffmpegthumbs-25.04.0

Description

FFmpeg based thumbnail generator for video files

Added to portage

2025-04-18

filelight - 25.04.0
Ebuild name:

kde-apps/filelight-25.04.0

Description

Visualise disk usage with interactive map of concentric, segmented rings

Added to portage

2025-04-18

fixtures - 4.2.5
Ebuild name:

dev-python/fixtures-4.2.5

Description

Fixtures, reusable state for writing clean tests and more

Added to portage

2025-04-18

foot - 1.22.0
Ebuild name:

gui-apps/foot-1.22.0

Description

Fast, lightweight and minimalistic Wayland terminal emulator

Added to portage

2025-04-18

foot-terminfo - 1.22.0
Ebuild name:

gui-apps/foot-terminfo-1.22.0

Description

Terminfo for foot, a fast, lightweight and minimal Wayland terminal e

Added to portage

2025-04-18

francis - 25.04.0
Ebuild name:

app-misc/francis-25.04.0

Description

Productivity application using the well-known pomodoro technique

Added to portage

2025-04-18

frozenlist - 1.6.0
Ebuild name:

dev-python/frozenlist-1.6.0

Description

A list-like structure which implements collections.abc.MutableSequence

Added to portage

2025-04-18

gitlab-runner - 17.11.0
Ebuild name:

dev-util/gitlab-runner-17.11.0

Description

The official GitLab Runner, written in Go

Added to portage

2025-04-18

glycin-loaders - 1.2.1
Ebuild name:

media-libs/glycin-loaders-1.2.1

Description

Loaders for glycin clients (glycin crate or libglycin)

Added to portage

2025-04-18

granatier - 25.04.0
Ebuild name:

kde-apps/granatier-25.04.0

Description

KDE Bomberman game

Added to portage

2025-04-18

grantlee-editor - 25.04.0
Ebuild name:

kde-apps/grantlee-editor-25.04.0

Description

Utilities and tools to manage themes in KDE PIM applications

Added to portage

2025-04-18

grantleetheme - 25.04.0
Ebuild name:

kde-apps/grantleetheme-25.04.0

Description

Library for Grantlee plugins

Added to portage

2025-04-18

gwenview - 25.04.0
Ebuild name:

kde-apps/gwenview-25.04.0

Description

Image viewer by KDE

Added to portage

2025-04-18

hypothesis - 6.131.2
Ebuild name:

dev-python/hypothesis-6.131.2

Description

A library for property based testing

Added to portage

2025-04-18

incidenceeditor - 25.04.0
Ebuild name:

kde-apps/incidenceeditor-25.04.0

Description

Incidence editor for KOrganizer

Added to portage

2025-04-18

installkernel - 58
Ebuild name:

sys-kernel/installkernel-58

Description

Gentoo fork of installkernel script from debianutils

Added to portage

2025-04-18

intel-graphics-compiler - 2.10.9
Ebuild name:

dev-util/intel-graphics-compiler-2.10.9

Description

LLVM-based OpenCL compiler for OpenCL targetting Intel Gen

Added to portage

2025-04-18

ipmicfg - 1.36.0.250225
Ebuild name:

sys-apps/ipmicfg-1.36.0.250225

Description

An in-band utility for configuring Supermicro IPMI devices

Added to portage

2025-04-18

isoimagewriter - 25.04.0
Ebuild name:

app-cdr/isoimagewriter-25.04.0

Description

Write hybrid ISO files onto a USB disk

Added to portage

2025-04-18

juk - 25.04.0
Ebuild name:

kde-apps/juk-25.04.0

Description

Jukebox and music manager by KDE

Added to portage

2025-04-18

k3b - 25.04.0
Ebuild name:

kde-apps/k3b-25.04.0

Description

Full-featured burning and ripping application based on KDE Frameworks

Added to portage

2025-04-18

kaccounts-integration - 25.04.0
Ebuild name:

kde-apps/kaccounts-integration-25.04.0

Description

Administer web accounts for the sites and services across th

Added to portage

2025-04-18

kaccounts-providers - 25.04.0
Ebuild name:

kde-apps/kaccounts-providers-25.04.0

Description

KDE accounts providers

Added to portage

2025-04-18

kaddressbook - 25.04.0
Ebuild name:

kde-apps/kaddressbook-25.04.0

Description

Address book application based on KDE Frameworks

Added to portage

2025-04-18

kajongg - 25.04.0
Ebuild name:

kde-apps/kajongg-25.04.0

Description

Classical Mah Jongg for four players

Added to portage

2025-04-18

kalarm - 25.04.0
Ebuild name:

kde-apps/kalarm-25.04.0

Description

Application to manage alarms and other timer based alerts for the desktop

Added to portage

2025-04-18

kalgebra - 25.04.0
Ebuild name:

kde-apps/kalgebra-25.04.0

Description

MathML-based 2D and 3D graph calculator by KDE

Added to portage

2025-04-18

kalzium - 25.04.0
Ebuild name:

kde-apps/kalzium-25.04.0

Description

Periodic table of the elements

Added to portage

2025-04-18

kamera - 25.04.0
Ebuild name:

kde-apps/kamera-25.04.0

Description

Plasma integration for gphoto2 cameras

Added to portage

2025-04-18

kamoso - 25.04.0
Ebuild name:

kde-apps/kamoso-25.04.0

Description

Application to take pictures and videos from your webcam by KDE

Added to portage

2025-04-18

kanagram - 25.04.0
Ebuild name:

kde-apps/kanagram-25.04.0

Description

Game based on anagrams of words

Added to portage

2025-04-18

kapman - 25.04.0
Ebuild name:

kde-apps/kapman-25.04.0

Description

Pac-Man clone by KDE

Added to portage

2025-04-18

kapptemplate - 25.04.0
Ebuild name:

kde-apps/kapptemplate-25.04.0

Description

Shell script to create the necessary framework to develop KDE applica

Added to portage

2025-04-18

kasts - 25.04.0
Ebuild name:

media-sound/kasts-25.04.0

Description

Convergent podcast application for desktop and mobile

Added to portage

2025-04-18

kate - 25.04.0
Ebuild name:

kde-apps/kate-25.04.0

Description

Multi-document editor with network transparency, Plasma integration and more

Added to portage

2025-04-18

kate-addons - 25.04.0
Ebuild name:

kde-apps/kate-addons-25.04.0

Description

Addons used by Kate

Added to portage

2025-04-18

kate-common - 25.04.0
Ebuild name:

kde-apps/kate-common-25.04.0

Description

Added to portage

2025-04-18

kate-lib - 25.04.0
Ebuild name:

kde-apps/kate-lib-25.04.0

Description

Shared library used by Kate/Kwrite and Kate-Addons

Added to portage

2025-04-18

katomic - 25.04.0
Ebuild name:

kde-apps/katomic-25.04.0

Description

KDE Atomic Entertainment Game

Added to portage

2025-04-18

kbackup - 25.04.0
Ebuild name:

kde-apps/kbackup-25.04.0

Description

Program that lets you back up any directories or files

Added to portage

2025-04-18

kblackbox - 25.04.0
Ebuild name:

kde-apps/kblackbox-25.04.0

Description

Game of hide and seek played on a grid of boxes

Added to portage

2025-04-18

kblocks - 25.04.0
Ebuild name:

kde-apps/kblocks-25.04.0

Description

Single-player Tetris-like KDE game

Added to portage

2025-04-18

kbounce - 25.04.0
Ebuild name:

kde-apps/kbounce-25.04.0

Description

KDE Bounce Ball Game

Added to portage

2025-04-18

kbreakout - 25.04.0
Ebuild name:

kde-apps/kbreakout-25.04.0

Description

Breakout-like game by KDE

Added to portage

2025-04-18

kbruch - 25.04.0
Ebuild name:

kde-apps/kbruch-25.04.0

Description

Educational application to learn calculating with fractions

Added to portage

2025-04-18

kcachegrind - 25.04.0
Ebuild name:

kde-apps/kcachegrind-25.04.0

Description

Frontend for Cachegrind by KDE

Added to portage

2025-04-18

kcalc - 25.04.0
Ebuild name:

kde-apps/kcalc-25.04.0

Description

KDE calculator

Added to portage

2025-04-18

kcalutils - 25.04.0
Ebuild name:

kde-apps/kcalutils-25.04.0

Description

Library providing utility functions for the handling of calendar data

Added to portage

2025-04-18

kcharselect - 25.04.0
Ebuild name:

kde-apps/kcharselect-25.04.0

Description

KDE character selection utility

Added to portage

2025-04-18

kclock - 25.04.0
Ebuild name:

kde-misc/kclock-25.04.0

Description

Convergent clock application for Plasma

Added to portage

2025-04-18

kcolorchooser - 25.04.0
Ebuild name:

kde-apps/kcolorchooser-25.04.0

Description

KDE color selector/editor

Added to portage

2025-04-18

kcron - 25.04.0
Ebuild name:

kde-apps/kcron-25.04.0

Description

KDE Task Scheduler

Added to portage

2025-04-18

kde-apps-meta - 25.04.0
Ebuild name:

kde-apps/kde-apps-meta-25.04.0

Description

Meta package for the KDE Release Service collection

Added to portage

2025-04-18

kde-dev-scripts - 25.04.0
Ebuild name:

kde-apps/kde-dev-scripts-25.04.0

Description

KDE Development Scripts

Added to portage

2025-04-18

kde-dev-utils - 25.04.0
Ebuild name:

kde-apps/kde-dev-utils-25.04.0

Description

KDE Development Utilities

Added to portage

2025-04-18

kdeaccessibility-meta - 25.04.0
Ebuild name:

kde-apps/kdeaccessibility-meta-25.04.0

Description

kdeaccessibility - merge this to pull in all kdeaccessiblity

Added to portage

2025-04-18

kdeadmin-meta - 25.04.0
Ebuild name:

kde-apps/kdeadmin-meta-25.04.0

Description

KDE administration tools - merge this to pull in all kdeadmin-derive

Added to portage

2025-04-18

kdebugsettings - 25.04.0
Ebuild name:

kde-apps/kdebugsettings-25.04.0

Description

Application to enable/disable qCDebug

Added to portage

2025-04-18

kdeconnect - 25.04.0
Ebuild name:

kde-misc/kdeconnect-25.04.0

Description

Adds communication between KDE Plasma and your smartphone

Added to portage

2025-04-18

kdecore-meta - 25.04.0
Ebuild name:

kde-apps/kdecore-meta-25.04.0

Description

kdecore - merge this to pull in the most basic applications

Added to portage

2025-04-18

kdeedu-data - 25.04.0
Ebuild name:

kde-apps/kdeedu-data-25.04.0

Description

Shared icons, artwork and data files for educational applications

Added to portage

2025-04-18

kdeedu-meta - 25.04.0
Ebuild name:

kde-apps/kdeedu-meta-25.04.0

Description

KDE educational apps - merge this to pull in all kdeedu-derived packag

Added to portage

2025-04-18

kdegames-meta - 25.04.0
Ebuild name:

kde-apps/kdegames-meta-25.04.0

Description

kdegames - merge this to pull in all kdegames-derived packages

Added to portage

2025-04-18

kdegraphics-meta - 25.04.0
Ebuild name:

kde-apps/kdegraphics-meta-25.04.0

Description

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

Added to portage

2025-04-18

kdegraphics-mobipocket - 25.04.0
Ebuild name:

kde-apps/kdegraphics-mobipocket-25.04.0

Description

Library to support mobipocket ebooks

Added to portage

2025-04-18

kdemultimedia-meta - 25.04.0
Ebuild name:

kde-apps/kdemultimedia-meta-25.04.0

Description

kdemultimedia - merge this to pull in all kdemultimedia-derived

Added to portage

2025-04-18

kdenetwork-filesharing - 25.04.0
Ebuild name:

kde-apps/kdenetwork-filesharing-25.04.0

Description

Samba filesharing plugin for file properties

Added to portage

2025-04-18

kdenetwork-meta - 25.04.0
Ebuild name:

kde-apps/kdenetwork-meta-25.04.0

Description

kdenetwork - merge this to pull in all kdenetwork-derived packages

Added to portage

2025-04-18

kdenlive - 25.04.0
Ebuild name:

kde-apps/kdenlive-25.04.0

Description

Non-linear video editing suite by KDE

Added to portage

2025-04-18

kdepim-addons - 25.04.0
Ebuild name:

kde-apps/kdepim-addons-25.04.0

Description

Plugins for KDE Personal Information Management Suite

Added to portage

2025-04-18

kdepim-meta - 25.04.0
Ebuild name:

kde-apps/kdepim-meta-25.04.0

Description

KDE PIM - merge this to pull in all kdepim-derived packages

Added to portage

2025-04-18

kdepim-runtime - 25.04.0
Ebuild name:

kde-apps/kdepim-runtime-25.04.0

Description

Runtime plugin collection to extend the functionality of KDE PIM

Added to portage

2025-04-18

kdesdk-meta - 25.04.0
Ebuild name:

kde-apps/kdesdk-meta-25.04.0

Description

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

Added to portage

2025-04-18

kdesdk-thumbnailers - 25.04.0
Ebuild name:

kde-apps/kdesdk-thumbnailers-25.04.0

Description

Thumbnail generator for PO files

Added to portage

2025-04-18

kdeutils-meta - 25.04.0
Ebuild name:

kde-apps/kdeutils-meta-25.04.0

Description

kdeutils - merge this to pull in all kdeutils-derived packages

Added to portage

2025-04-18

kdevelop - 25.04.0
Ebuild name:

dev-util/kdevelop-25.04.0

Description

Integrated Development Environment, supporting KF6/Qt, C/C++ and much mor

Added to portage

2025-04-18

kdevelop-php - 25.04.0
Ebuild name:

dev-util/kdevelop-php-25.04.0

Description

PHP plugin for KDevelop

Added to portage

2025-04-18

kdevelop-python - 25.04.0
Ebuild name:

dev-util/kdevelop-python-25.04.0

Description

Python plugin for KDevelop

Added to portage

2025-04-18

kdf - 25.04.0
Ebuild name:

kde-apps/kdf-25.04.0

Description

KDE free disk space utility

Added to portage

2025-04-18

kdialog - 25.04.0
Ebuild name:

kde-apps/kdialog-25.04.0

Description

Can be used to show nice dialog boxes from shell scripts

Added to portage

2025-04-18

kdiamond - 25.04.0
Ebuild name:

kde-apps/kdiamond-25.04.0

Description

Single player three-in-a-row game

Added to portage

2025-04-18

keditbookmarks - 25.04.0
Ebuild name:

kde-apps/keditbookmarks-25.04.0

Description

Bookmarks editor based on KDE Frameworks

Added to portage

2025-04-18

keysmith - 25.04.0
Ebuild name:

app-crypt/keysmith-25.04.0

Description

OTP client for Plasma Mobile and Desktop

Added to portage

2025-04-18

kfind - 25.04.0
Ebuild name:

kde-apps/kfind-25.04.0

Description

File finder utility based on KDE Frameworks

Added to portage

2025-04-18

kfourinline - 25.04.0
Ebuild name:

kde-apps/kfourinline-25.04.0

Description

KDE four-in-a-row game

Added to portage

2025-04-18

kgeography - 25.04.0
Ebuild name:

kde-apps/kgeography-25.04.0

Description

Geography learning tool

Added to portage

2025-04-18

kget - 25.04.0
Ebuild name:

kde-apps/kget-25.04.0

Description

Advanced download manager by KDE

Added to portage

2025-04-18

kgoldrunner - 25.04.0
Ebuild name:

kde-apps/kgoldrunner-25.04.0

Description

Game of action and puzzle solving by KDE

Added to portage

2025-04-18

kgpg - 25.04.0
Ebuild name:

kde-apps/kgpg-25.04.0

Description

Frontend for GnuPG, a powerful encryption utility by KDE

Added to portage

2025-04-18

kgraphviewer - 25.04.0
Ebuild name:

media-gfx/kgraphviewer-25.04.0

Description

Graphviz dot graph file viewer

Added to portage

2025-04-18

khangman - 25.04.0
Ebuild name:

kde-apps/khangman-25.04.0

Description

Classical hangman game by KDE

Added to portage

2025-04-18

khelpcenter - 25.04.0
Ebuild name:

kde-apps/khelpcenter-25.04.0

Description

Application to read documentation for KDE Plasma, Applications, Utilit

Added to portage

2025-04-18

kidentitymanagement - 25.04.0
Ebuild name:

kde-apps/kidentitymanagement-25.04.0

Description

Library for managing identitites

Added to portage

2025-04-18

kig - 25.04.0
Ebuild name:

kde-apps/kig-25.04.0

Description

KDE Interactive Geometry tool

Added to portage

2025-04-18

kigo - 25.04.0
Ebuild name:

kde-apps/kigo-25.04.0

Description

Go game by KDE

Added to portage

2025-04-18

killbots - 25.04.0
Ebuild name:

kde-apps/killbots-25.04.0

Description

Kill the bots or they kill you

Added to portage

2025-04-18

kimagemapeditor - 25.04.0
Ebuild name:

kde-apps/kimagemapeditor-25.04.0

Description

Generator of HTML image maps

Added to portage

2025-04-18

kimap - 25.04.0
Ebuild name:

kde-apps/kimap-25.04.0

Description

Library for interacting with IMAP servers

Added to portage

2025-04-18

kio-admin - 25.04.0
Ebuild name:

app-admin/kio-admin-25.04.0

Description

Manage files as administrator using the admin KIO protocol

Added to portage

2025-04-18

kio-blender-thumbnailer - 25.04.0
Ebuild name:

media-gfx/kio-blender-thumbnailer-25.04.0

Description

KIO thumbnail generator for Blender files

Added to portage

2025-04-18

kio-extras - 25.04.0
Ebuild name:

kde-apps/kio-extras-25.04.0

Description

KIO plugins present a filesystem-like view of arbitrary data

Added to portage

2025-04-18

kio-gdrive - 25.04.0
Ebuild name:

kde-misc/kio-gdrive-25.04.0

Description

KIO worker for Google Drive service

Added to portage

2025-04-18

kio-gdrive-common - 25.04.0
Ebuild name:

kde-misc/kio-gdrive-common-25.04.0

Description

Added to portage

2025-04-18

kio-mobi-thumbnailer - 25.04.0
Ebuild name:

media-gfx/kio-mobi-thumbnailer-25.04.0

Description

KIO thumbnail generator for Mobipocket files

Added to portage

2025-04-18

kio-perldoc - 25.04.0
Ebuild name:

dev-util/kio-perldoc-25.04.0

Description

KIO worker interface to browse Perl documentation

Added to portage

2025-04-18

kio-ps-thumbnailer - 25.04.0
Ebuild name:

media-gfx/kio-ps-thumbnailer-25.04.0

Description

KIO thumbnail generator for DVI, EPS, PDF and PS files

Added to portage

2025-04-18

kio-raw-thumbnailer - 25.04.0
Ebuild name:

media-gfx/kio-raw-thumbnailer-25.04.0

Description

KIO thumbnail generator for RAW files

Added to portage

2025-04-18

kio-zeroconf - 25.04.0
Ebuild name:

net-misc/kio-zeroconf-25.04.0

Description

KIO worker to discover file systems by DNS-SD (DNS Service Discovery)

Added to portage

2025-04-18

kiriki - 25.04.0
Ebuild name:

kde-apps/kiriki-25.04.0

Description

An addictive and fun dice game

Added to portage

2025-04-18

kiten - 25.04.0
Ebuild name:

kde-apps/kiten-25.04.0

Description

KDE Japanese dictionary and reference

Added to portage

2025-04-18

kitinerary - 25.04.0
Ebuild name:

kde-apps/kitinerary-25.04.0

Description

Data Model and Extraction System for Travel Reservation information

Added to portage

2025-04-18

kjumpingcube - 25.04.0
Ebuild name:

kde-apps/kjumpingcube-25.04.0

Description

Tactical one or two player game

Added to portage

2025-04-18

kldap - 25.04.0
Ebuild name:

kde-apps/kldap-25.04.0

Description

Library for interacting with LDAP servers

Added to portage

2025-04-18

kleopatra - 25.04.0
Ebuild name:

kde-apps/kleopatra-25.04.0

Description

Certificate manager and GUI for OpenPGP and CMS cryptography

Added to portage

2025-04-18

klettres - 25.04.0
Ebuild name:

kde-apps/klettres-25.04.0

Description

Alphabet learning application

Added to portage

2025-04-18

klickety - 25.04.0
Ebuild name:

kde-apps/klickety-25.04.0

Description

An adaptation of the Clickomania game

Added to portage

2025-04-18

klines - 25.04.0
Ebuild name:

kde-apps/klines-25.04.0

Description

A little KDE game about balls and how to get rid of them

Added to portage

2025-04-18

kmag - 25.04.0
Ebuild name:

kde-apps/kmag-25.04.0

Description

KDE screen magnifier

Added to portage

2025-04-18

kmahjongg - 25.04.0
Ebuild name:

kde-apps/kmahjongg-25.04.0

Description

A tile matching game for one or two players

Added to portage

2025-04-18

kmail - 25.04.0
Ebuild name:

kde-apps/kmail-25.04.0

Description

Email client, supporting POP3 and IMAP mailboxes

Added to portage

2025-04-18

kmail-account-wizard - 25.04.0
Ebuild name:

kde-apps/kmail-account-wizard-25.04.0

Description

Assistant for KMail accounts configuration

Added to portage

2025-04-18

kmailtransport - 25.04.0
Ebuild name:

kde-apps/kmailtransport-25.04.0

Description

Mail transport service

Added to portage

2025-04-18

kmbox - 25.04.0
Ebuild name:

kde-apps/kmbox-25.04.0

Description

Library for accessing MBox format mail storages

Added to portage

2025-04-18

kmime - 25.04.0
Ebuild name:

kde-apps/kmime-25.04.0

Description

Libary for handling mail messages and newsgroup articles

Added to portage

2025-04-18

kmines - 25.04.0
Ebuild name:

kde-apps/kmines-25.04.0

Description

Classic mine sweeper game

Added to portage

2025-04-18

kmix - 25.04.0
Ebuild name:

kde-apps/kmix-25.04.0

Description

Volume control gui based on KDE Frameworks

Added to portage

2025-04-18

kmousetool - 25.04.0
Ebuild name:

kde-apps/kmousetool-25.04.0

Description

KDE program that clicks the mouse for you

Added to portage

2025-04-18

kmouth - 25.04.0
Ebuild name:

kde-apps/kmouth-25.04.0

Description

Text-to-speech synthesizer front end

Added to portage

2025-04-18

kmplot - 25.04.0
Ebuild name:

kde-apps/kmplot-25.04.0

Description

Mathematical function plotter

Added to portage

2025-04-18

knavalbattle - 25.04.0
Ebuild name:

kde-apps/knavalbattle-25.04.0

Description

Battleship clone by KDE

Added to portage

2025-04-18

knetwalk - 25.04.0
Ebuild name:

kde-apps/knetwalk-25.04.0

Description

KDE version of the popular NetWalk game for system administrators

Added to portage

2025-04-18

knights - 25.04.0
Ebuild name:

kde-apps/knights-25.04.0

Description

Simple chess board based on KDE Frameworks

Added to portage

2025-04-18

kolf - 25.04.0
Ebuild name:

kde-apps/kolf-25.04.0

Description

Minigolf game by KDE

Added to portage

2025-04-18

kollision - 25.04.0
Ebuild name:

kde-apps/kollision-25.04.0

Description

Simple ball dodging game

Added to portage

2025-04-18

kolourpaint - 25.04.0
Ebuild name:

kde-apps/kolourpaint-25.04.0

Description

Paint Program by KDE

Added to portage

2025-04-18

kompare - 25.04.0
Ebuild name:

kde-apps/kompare-25.04.0

Description

Graphical File Differences Tool

Added to portage

2025-04-18

konqueror - 25.04.0
Ebuild name:

kde-apps/konqueror-25.04.0

Description

Web browser and file manager based on KDE Frameworks

Added to portage

2025-04-18

konquest - 25.04.0
Ebuild name:

kde-apps/konquest-25.04.0

Description

Galactic Strategy KDE Game

Added to portage

2025-04-18

konsole - 25.04.0
Ebuild name:

kde-apps/konsole-25.04.0

Description

KDE's terminal emulator

Added to portage

2025-04-18

konsolekalendar - 25.04.0
Ebuild name:

kde-apps/konsolekalendar-25.04.0

Description

Command line interface to KDE calendars

Added to portage

2025-04-18

kontact - 25.04.0
Ebuild name:

kde-apps/kontact-25.04.0

Description

Container application to unify several major PIM applications within one

Added to portage

2025-04-18

kontactinterface - 25.04.0
Ebuild name:

kde-apps/kontactinterface-25.04.0

Description

Library for embedding KParts in a Kontact component

Added to portage

2025-04-18

kontrast - 25.04.0
Ebuild name:

app-accessibility/kontrast-25.04.0

Description

Tool to check contrast for colors to verify they are correctly a

Added to portage

2025-04-18

konversation - 25.04.0
Ebuild name:

net-irc/konversation-25.04.0

Description

User friendly IRC Client

Added to portage

2025-04-18

kopeninghours - 25.04.0
Ebuild name:

dev-libs/kopeninghours-25.04.0

Description

Library for parsing and evaluating OSM opening hours expressions

Added to portage

2025-04-18

korganizer - 25.04.0
Ebuild name:

kde-apps/korganizer-25.04.0

Description

Organizational assistant, providing calendars and other similar functio

Added to portage

2025-04-18

kosmindoormap - 25.04.0
Ebuild name:

dev-libs/kosmindoormap-25.04.0

Description

Data Model and Extraction System for Travel Reservation information

Added to portage

2025-04-18

kpat - 25.04.0
Ebuild name:

kde-apps/kpat-25.04.0

Description

KDE patience game

Added to portage

2025-04-18

kpimtextedit - 25.04.0
Ebuild name:

kde-apps/kpimtextedit-25.04.0

Description

Extended text editor for PIM applications

Added to portage

2025-04-18

kpkpass - 25.04.0
Ebuild name:

kde-apps/kpkpass-25.04.0

Description

Library to deal with Apple Wallet pass files

Added to portage

2025-04-18

kpmcore - 25.04.0
Ebuild name:

sys-libs/kpmcore-25.04.0

Description

Library for managing partitions

Added to portage

2025-04-18

kpublictransport - 25.04.0
Ebuild name:

dev-libs/kpublictransport-25.04.0

Description

Library for accessing public transport timetables and other infor

Added to portage

2025-04-18

kqtquickcharts - 25.04.0
Ebuild name:

kde-apps/kqtquickcharts-25.04.0

Description

Qt Quick plugin for beautiful and interactive charts

Added to portage

2025-04-18

krdc - 25.04.0
Ebuild name:

kde-apps/krdc-25.04.0

Description

Remote desktop connection (RDP and VNC) client

Added to portage

2025-04-18

krecorder - 25.04.0
Ebuild name:

media-sound/krecorder-25.04.0

Description

Convergent audio recording application for Plasma

Added to portage

2025-04-18

kreversi - 25.04.0
Ebuild name:

kde-apps/kreversi-25.04.0

Description

Board game by KDE

Added to portage

2025-04-18

krfb - 25.04.0
Ebuild name:

kde-apps/krfb-25.04.0

Description

VNC-compatible server to share Plasma desktops

Added to portage

2025-04-18

kruler - 25.04.0
Ebuild name:

kde-apps/kruler-25.04.0

Description

Screen ruler for Plasma

Added to portage

2025-04-18

ksanecore - 25.04.0
Ebuild name:

media-libs/ksanecore-25.04.0

Description

Qt-based interface for SANE library to control scanner hardware

Added to portage

2025-04-18

kshisen - 25.04.0
Ebuild name:

kde-apps/kshisen-25.04.0

Description

Solitaire-like game played using the standard set of Mahjong tiles

Added to portage

2025-04-18

ksirk - 25.04.0
Ebuild name:

kde-apps/ksirk-25.04.0

Description

Port of the board game Risk

Added to portage

2025-04-18

ksmtp - 25.04.0
Ebuild name:

kde-apps/ksmtp-25.04.0

Description

Job-based library to send email through an SMTP server

Added to portage

2025-04-18

ksnakeduel - 25.04.0
Ebuild name:

kde-apps/ksnakeduel-25.04.0

Description

KDE Tron game

Added to portage

2025-04-18

kspaceduel - 25.04.0
Ebuild name:

kde-apps/kspaceduel-25.04.0

Description

Space Game by KDE

Added to portage

2025-04-18

ksquares - 25.04.0
Ebuild name:

kde-apps/ksquares-25.04.0

Description

KDE clone of the game squares

Added to portage

2025-04-18

ksudoku - 25.04.0
Ebuild name:

kde-apps/ksudoku-25.04.0

Description

Logic-based symbol placement puzzle by KDE

Added to portage

2025-04-18

ksystemlog - 25.04.0
Ebuild name:

kde-apps/ksystemlog-25.04.0

Description

System log viewer by KDE

Added to portage

2025-04-18

kteatime - 25.04.0
Ebuild name:

kde-apps/kteatime-25.04.0

Description

KDE timer for making a fine cup of tea

Added to portage

2025-04-18

ktimer - 25.04.0
Ebuild name:

kde-apps/ktimer-25.04.0

Description

Little tool to execute programs after some time

Added to portage

2025-04-18

ktorrent - 25.04.0
Ebuild name:

net-p2p/ktorrent-25.04.0

Description

Powerful BitTorrent client based on KDE Frameworks

Added to portage

2025-04-18

ktouch - 25.04.0
Ebuild name:

kde-apps/ktouch-25.04.0

Description

Program that helps to learn and practice touch typing

Added to portage

2025-04-18

ktuberling - 25.04.0
Ebuild name:

kde-apps/ktuberling-25.04.0

Description

Potato game for kids by KDE

Added to portage

2025-04-18

kturtle - 25.04.0
Ebuild name:

kde-apps/kturtle-25.04.0

Description

Educational programming environment using the Logo programming language

Added to portage

2025-04-18

kubrick - 25.04.0
Ebuild name:

kde-apps/kubrick-25.04.0

Description

Game based on the

Added to portage

2025-04-18

kwalletmanager - 25.04.0
Ebuild name:

kde-apps/kwalletmanager-25.04.0

Description

Tool to manage the passwords on your system using KDE Wallet

Added to portage

2025-04-18

kwave - 25.04.0
Ebuild name:

kde-apps/kwave-25.04.0

Description

Sound editor built on KDE Frameworks that can edit many types of audio files

Added to portage

2025-04-18

kweather - 25.04.0
Ebuild name:

kde-misc/kweather-25.04.0

Description

Weather forecast application for Plasma with flat and dynamic/animated vi

Added to portage

2025-04-18

kweathercore - 25.04.0
Ebuild name:

dev-libs/kweathercore-25.04.0

Description

Library for retrieval of weather information including forecasts and

Added to portage

2025-04-18

kwordquiz - 25.04.0
Ebuild name:

kde-apps/kwordquiz-25.04.0

Description

Powerful flashcard and vocabulary learning program

Added to portage

2025-04-18

kwrite - 25.04.0
Ebuild name:

kde-apps/kwrite-25.04.0

Description

Simple text editor based on KDE Frameworks

Added to portage

2025-04-18

lcalc - 2.1.0-r1
Ebuild name:

sci-mathematics/lcalc-2.1.0-r1

Description

Command-line utility and library for L-function computations

Added to portage

2025-04-18

level-zero - 1.21.9
Ebuild name:

dev-libs/level-zero-1.21.9

Description

oneAPI Level Zero headers, loader and validation layer

Added to portage

2025-04-18

libgravatar - 25.04.0
Ebuild name:

kde-apps/libgravatar-25.04.0

Description

Library for gravatar integration

Added to portage

2025-04-18

libkcddb - 25.04.0
Ebuild name:

kde-apps/libkcddb-25.04.0

Description

KDE library for CDDB

Added to portage

2025-04-18

libkcddb-common - 25.04.0
Ebuild name:

kde-apps/libkcddb-common-25.04.0

Description

Added to portage

2025-04-18

libkcompactdisc - 25.04.0
Ebuild name:

kde-apps/libkcompactdisc-25.04.0

Description

Library for playing & ripping CDs

Added to portage

2025-04-18

libkdcraw - 25.04.0
Ebuild name:

kde-apps/libkdcraw-25.04.0

Description

Digital camera raw image library wrapper

Added to portage

2025-04-18

libkdegames - 25.04.0
Ebuild name:

kde-apps/libkdegames-25.04.0

Description

Base library common to many KDE games

Added to portage

2025-04-18

libkdepim - 25.04.0
Ebuild name:

kde-apps/libkdepim-25.04.0

Description

Common PIM libraries

Added to portage

2025-04-18

libkeduvocdocument - 25.04.0
Ebuild name:

kde-apps/libkeduvocdocument-25.04.0

Description

Library for reading/writing KVTML

Added to portage

2025-04-18

libkexiv2 - 25.04.0
Ebuild name:

kde-apps/libkexiv2-25.04.0

Description

Wrapper around exiv2 library

Added to portage

2025-04-18

libkgapi - 25.04.0
Ebuild name:

kde-apps/libkgapi-25.04.0

Description

Library for accessing Google calendar and contact resources

Added to portage

2025-04-18

libkleo - 25.04.0
Ebuild name:

kde-apps/libkleo-25.04.0

Description

Library for encryption handling

Added to portage

2025-04-18

libkmahjongg - 25.04.0
Ebuild name:

kde-apps/libkmahjongg-25.04.0

Description

Mahjongg library based on Qt/KDE Frameworks

Added to portage

2025-04-18

libkomparediff2 - 25.04.0
Ebuild name:

kde-apps/libkomparediff2-25.04.0

Description

Library to compare files and strings

Added to portage

2025-04-18

libksane - 25.04.0
Ebuild name:

kde-apps/libksane-25.04.0

Description

SANE Library interface based on KDE Frameworks

Added to portage

2025-04-18

libksane-common - 25.04.0
Ebuild name:

kde-apps/libksane-common-25.04.0

Description

Added to portage

2025-04-18

libksieve - 25.04.0
Ebuild name:

kde-apps/libksieve-25.04.0

Description

Common PIM libraries

Added to portage

2025-04-18

libktnef - 25.04.0
Ebuild name:

kde-apps/libktnef-25.04.0

Description

Library for handling TNEF data

Added to portage

2025-04-18

libktorrent - 25.04.0
Ebuild name:

net-libs/libktorrent-25.04.0

Description

BitTorrent library based on KDE Frameworks

Added to portage

2025-04-18

logswan - 2.1.15
Ebuild name:

www-misc/logswan-2.1.15

Description

Fast Web log analyzer using probabilistic data structures

Added to portage

2025-04-18

lokalize - 25.04.0
Ebuild name:

kde-apps/lokalize-25.04.0

Description

Localization tool for KDE software and other free and open source softwar

Added to portage

2025-04-18

lskat - 25.04.0
Ebuild name:

kde-apps/lskat-25.04.0

Description

Skat game by KDE

Added to portage

2025-04-18

luau - 0.669
Ebuild name:

dev-lang/luau-0.669

Description

Gradually typed embeddable scripting language derived from Lua

Added to portage

2025-04-18

mailcommon - 25.04.0
Ebuild name:

kde-apps/mailcommon-25.04.0

Description

Common mail library

Added to portage

2025-04-18

mailimporter - 25.04.0
Ebuild name:

kde-apps/mailimporter-25.04.0

Description

Library to import mail from various sources

Added to portage

2025-04-18

marble - 25.04.0
Ebuild name:

kde-apps/marble-25.04.0

Description

Virtual Globe and World Atlas to learn more about Earth

Added to portage

2025-04-18

markdownpart - 25.04.0
Ebuild name:

kde-misc/markdownpart-25.04.0

Description

Markdown viewer KParts plugin based on QTextDocument

Added to portage

2025-04-18

marksman - 2024.12.18
Ebuild name:

dev-util/marksman-2024.12.18

Description

LSP language server for editing Markdown files

Added to portage

2025-04-18

massif-visualizer - 25.04.0
Ebuild name:

dev-util/massif-visualizer-25.04.0

Description

Tool visualising massif data

Added to portage

2025-04-18

mbox-importer - 25.04.0
Ebuild name:

kde-apps/mbox-importer-25.04.0

Description

Import mbox email archives from various sources into Akonadi

Added to portage

2025-04-18

merkuro - 25.04.0
Ebuild name:

app-office/merkuro-25.04.0

Description

Calendar application using Akonadi

Added to portage

2025-04-18

meson - 1.8.0_rc1
Ebuild name:

dev-build/meson-1.8.0_rc1

Description

Open source build system

Added to portage

2025-04-18

messagelib - 25.04.0
Ebuild name:

kde-apps/messagelib-25.04.0

Description

Libraries for messaging functions

Added to portage

2025-04-18

mimetreeparser - 25.04.0
Ebuild name:

kde-apps/mimetreeparser-25.04.0

Description

Libraries for messaging functions

Added to portage

2025-04-18

minuet - 25.04.0
Ebuild name:

kde-apps/minuet-25.04.0

Description

Music Education software by KDE

Added to portage

2025-04-18

mkdocs-material - 9.6.12
Ebuild name:

dev-python/mkdocs-material-9.6.12

Description

A Material Design theme for MkDocs

Added to portage

2025-04-18

nagios-plugins - 2.4.12-r2
Ebuild name:

net-analyzer/nagios-plugins-2.4.12-r2

Description

Official plugins for Nagios

Added to portage

2025-04-18

nanobind - 2.7.0
Ebuild name:

dev-python/nanobind-2.7.0

Description

Tiny and efficient C++/Python bindings

Added to portage

2025-04-18

neochat - 25.04.0
Ebuild name:

net-im/neochat-25.04.0

Description

Client for Matrix, the decentralized communication protocol

Added to portage

2025-04-18

nvidia-drivers - 570.144
Ebuild name:

x11-drivers/nvidia-drivers-570.144

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2025-04-18

okular - 25.04.0
Ebuild name:

kde-apps/okular-25.04.0

Description

Universal document viewer based on KDE Frameworks

Added to portage

2025-04-18

palapeli - 25.04.0
Ebuild name:

kde-apps/palapeli-25.04.0

Description

Jigsaw puzzle game by KDE

Added to portage

2025-04-18

parley - 25.04.0
Ebuild name:

kde-apps/parley-25.04.0

Description

Vocabulary trainer to help you memorize things

Added to portage

2025-04-18

partitionmanager - 25.04.0
Ebuild name:

sys-block/partitionmanager-25.04.0

Description

Utility for management of disks, partitions and file systems

Added to portage

2025-04-18

picmi - 25.04.0
Ebuild name:

kde-apps/picmi-25.04.0

Description

Nonogram logic game by KDE

Added to portage

2025-04-18

pim-data-exporter - 25.04.0
Ebuild name:

kde-apps/pim-data-exporter-25.04.0

Description

Assistant to backup and archive PIM data and configuration

Added to portage

2025-04-18

pim-sieve-editor - 25.04.0
Ebuild name:

kde-apps/pim-sieve-editor-25.04.0

Description

Assistant for editing IMAP Sieve filters

Added to portage

2025-04-18

pimcommon - 25.04.0
Ebuild name:

kde-apps/pimcommon-25.04.0

Description

Common PIM libraries

Added to portage

2025-04-18

poxml - 25.04.0
Ebuild name:

kde-apps/poxml-25.04.0

Description

KDE utility to translate DocBook XML files using gettext po files

Added to portage

2025-04-18

prismlauncher - 9.4
Ebuild name:

games-action/prismlauncher-9.4

Description

Custom, open source Minecraft launcher

Added to portage

2025-04-18

pydantic-core - 2.34.1
Ebuild name:

dev-python/pydantic-core-2.34.1

Description

Core validation logic for pydantic written in Rust

Added to portage

2025-04-18

qrca - 25.04.0
Ebuild name:

media-gfx/qrca-25.04.0

Description

Simple barcode scanner and QR code generator

Added to portage

2025-04-18

repology - 1.2.4
Ebuild name:

app-emacs/repology-1.2.4

Description

Repology API access via Emacs Lisp

Added to portage

2025-04-18

request - 0.3.3_p20220318
Ebuild name:

app-emacs/request-0.3.3_p20220318

Description

Compatible layer for URL request

Added to portage

2025-04-18

rescript-mode - 0.1.0_p20220613
Ebuild name:

app-emacs/rescript-mode-0.1.0_p20220613

Description

Emacs major mode for ReScript

Added to portage

2025-04-18

restclient - 0_p20220426
Ebuild name:

app-emacs/restclient-0_p20220426

Description

HTTP REST client tool for GNU Emacs

Added to portage

2025-04-18

revive - 2.25
Ebuild name:

app-emacs/revive-2.25

Description

Resume Emacs

Added to portage

2025-04-18

rfcview - 0.13
Ebuild name:

app-emacs/rfcview-0.13

Description

An Emacs mode that reformats IETF RFCs for display

Added to portage

2025-04-18

rg - 2.3.0
Ebuild name:

app-emacs/rg-2.3.0

Description

GNU Emacs search tool based on ripgrep

Added to portage

2025-04-18

rocs - 25.04.0
Ebuild name:

kde-apps/rocs-25.04.0

Description

Interface to work with Graph Theory

Added to portage

2025-04-18

rubygems - 3.6.8
Ebuild name:

dev-ruby/rubygems-3.6.8

Description

Centralized Ruby extension management system

Added to portage

2025-04-18

ruff - 0.11.6
Ebuild name:

dev-util/ruff-0.11.6

Description

An extremely fast Python linter, written in Rust

Added to portage

2025-04-18

s3transfer - 0.11.5
Ebuild name:

dev-python/s3transfer-0.11.5

Description

An Amazon S3 Transfer Manager

Added to portage

2025-04-18

signon-kwallet-extension - 25.04.0
Ebuild name:

kde-apps/signon-kwallet-extension-25.04.0

Description

KWallet extension for signond

Added to portage

2025-04-18

skanlite - 25.04.0
Ebuild name:

kde-misc/skanlite-25.04.0

Description

Simple image scanning application based on libksane and KDE Frameworks

Added to portage

2025-04-18

skanpage - 25.04.0
Ebuild name:

media-gfx/skanpage-25.04.0

Description

Multi-page scanning application supporting image and pdf files

Added to portage

2025-04-18

skladnik - 25.04.0
Ebuild name:

games-puzzle/skladnik-25.04.0

Description

The Japanese warehouse keeper sokoban game

Added to portage

2025-04-18

smcipmitool - 2.29.0.250214
Ebuild name:

sys-apps/smcipmitool-2.29.0.250214

Description

An out-of-band utility for interfacing with SuperBlade and IPMI

Added to portage

2025-04-18

sourcegit - 2025.13
Ebuild name:

dev-vcs/sourcegit-2025.13

Description

Open Source Git GUI client using .NET AvaloniaUI

Added to portage

2025-04-18

spirv-llvm-translator - 15.0.11
Ebuild name:

dev-util/spirv-llvm-translator-15.0.11

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 16.0.11
Ebuild name:

dev-util/spirv-llvm-translator-16.0.11

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 17.0.11
Ebuild name:

dev-util/spirv-llvm-translator-17.0.11

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 18.1.11
Ebuild name:

dev-util/spirv-llvm-translator-18.1.11

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 19.1.6
Ebuild name:

dev-util/spirv-llvm-translator-19.1.6

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 20.1.1
Ebuild name:

dev-util/spirv-llvm-translator-20.1.1

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

sqlglot - 26.15.0
Ebuild name:

dev-python/sqlglot-26.15.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2025-04-18

step - 25.04.0
Ebuild name:

kde-apps/step-25.04.0

Description

Interactive physics simulator

Added to portage

2025-04-18

svgpart - 25.04.0
Ebuild name:

kde-apps/svgpart-25.04.0

Description

Kpart for viewing SVGs

Added to portage

2025-04-18

sweeper - 25.04.0
Ebuild name:

kde-apps/sweeper-25.04.0

Description

Privacy settings widget to clean unwanted traces on the system

Added to portage

2025-04-18

thumbnailers - 25.04.0
Ebuild name:

kde-apps/thumbnailers-25.04.0

Description

Metapackage for KIO thumbnail generators

Added to portage

2025-04-18

tokodon - 25.04.0
Ebuild name:

net-im/tokodon-25.04.0

Description

Mastodon client for Plasma and Plasma Mobile

Added to portage

2025-04-18

tpm2-pytss - 2.3.0-r1
Ebuild name:

dev-python/tpm2-pytss-2.3.0-r1

Description

Python bindings for TSS

Added to portage

2025-04-18

umbrello - 25.04.0
Ebuild name:

kde-apps/umbrello-25.04.0

Description

KDE UML Modeller

Added to portage

2025-04-18

vivaldi - 7.3.3635.11
Ebuild name:

www-client/vivaldi-7.3.3635.11

Description

A browser for our friends

Added to portage

2025-04-18

vivaldi-snapshot - 7.4.3664.3
Ebuild name:

www-client/vivaldi-snapshot-7.4.3664.3

Description

A browser for our friends

Added to portage

2025-04-18

wireshark - 4.4.6-r1
Ebuild name:

net-analyzer/wireshark-4.4.6-r1

Description

Network protocol analyzer (sniffer)

Added to portage

2025-04-18

xlsxwriter - 3.2.3
Ebuild name:

dev-python/xlsxwriter-3.2.3

Description

Python module for creating Excel XLSX files

Added to portage

2025-04-18

yakuake - 25.04.0
Ebuild name:

kde-apps/yakuake-25.04.0

Description

Quake-style terminal emulator based on konsole

Added to portage

2025-04-18

zanshin - 25.04.0
Ebuild name:

kde-misc/zanshin-25.04.0

Description

Getting things done application by KDE

Added to portage

2025-04-18

zellij - 0.42.2
Ebuild name:

app-misc/zellij-0.42.2

Description

A terminal workspace with batteries included

Added to portage

2025-04-18

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