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:

83233

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.
back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-02-12
blackshades - 20070723-r2
Ebuild name:

games-fps/blackshades-20070723-r2

Description

You control a psychic bodyguard, and try to protect the VIP

Added to portage

2026-02-12

blazesym_c - 0.1.7
Ebuild name:

dev-libs/blazesym_c-0.1.7

Description

C bindings for blazesym, a library for address symbolization and related

Added to portage

2026-02-12

calamares - 3.3.14-r6
Ebuild name:

app-admin/calamares-3.3.14-r6

Description

Distribution-independent installer framework

Added to portage

2026-02-12

calamares-gentoo-livecd - 3.3.14_p20260209
Ebuild name:

app-misc/calamares-gentoo-livecd-3.3.14_p20260209

Description

Gentoo Linux Calamares installer configuration fo

Added to portage

2026-02-12

cproc - 0_pre20260113
Ebuild name:

sys-devel/cproc-0_pre20260113

Description

C11 compiler using QBE as backend

Added to portage

2026-02-12

dist-kernel - 5.10.250
Ebuild name:

virtual/dist-kernel-5.10.250

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-12

dist-kernel - 5.15.200
Ebuild name:

virtual/dist-kernel-5.15.200

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-12

dist-kernel - 6.1.163
Ebuild name:

virtual/dist-kernel-6.1.163

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-12

dist-kernel - 6.12.70
Ebuild name:

virtual/dist-kernel-6.12.70

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-12

dist-kernel - 6.18.10
Ebuild name:

virtual/dist-kernel-6.18.10

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-12

dist-kernel - 6.6.124
Ebuild name:

virtual/dist-kernel-6.6.124

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-12

gentoo-kernel - 5.10.250
Ebuild name:

sys-kernel/gentoo-kernel-5.10.250

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel - 5.15.200
Ebuild name:

sys-kernel/gentoo-kernel-5.15.200

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel - 6.1.163
Ebuild name:

sys-kernel/gentoo-kernel-6.1.163

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel - 6.12.70
Ebuild name:

sys-kernel/gentoo-kernel-6.12.70

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel - 6.18.10
Ebuild name:

sys-kernel/gentoo-kernel-6.18.10

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel - 6.6.124
Ebuild name:

sys-kernel/gentoo-kernel-6.6.124

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel-bin - 5.10.250
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.250

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel-bin - 5.15.200
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.200

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel-bin - 6.1.163
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.163

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel-bin - 6.12.70
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.70

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel-bin - 6.18.10
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.10

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-12

gentoo-kernel-bin - 6.6.124
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.124

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-12

libwebsockets - 4.5.2-r1
Ebuild name:

net-libs/libwebsockets-4.5.2-r1

Description

A flexible pure-C library for implementing network protocols

Added to portage

2026-02-12

man-pages - 6.17
Ebuild name:

sys-apps/man-pages-6.17

Description

A somewhat comprehensive collection of Linux man pages

Added to portage

2026-02-12

marisa - 0.2.7
Ebuild name:

dev-libs/marisa-0.2.7

Description

Matching Algorithm with Recursively Implemented StorAge

Added to portage

2026-02-12

mesa - 25.3.5
Ebuild name:

media-libs/mesa-25.3.5

Description

OpenGL-like graphic library for Linux

Added to portage

2026-02-12

mesa - 26.0.0
Ebuild name:

media-libs/mesa-26.0.0

Description

OpenGL-like graphic library for Linux

Added to portage

2026-02-12

mesa_clc - 25.3.5
Ebuild name:

dev-util/mesa_clc-25.3.5

Description

mesa_clc tool used for building OpenCL C to SPIR-V

Added to portage

2026-02-12

mesa_clc - 26.0.0
Ebuild name:

dev-util/mesa_clc-26.0.0

Description

mesa_clc tool used for building OpenCL C to SPIR-V

Added to portage

2026-02-12

moodle - 4.5.10
Ebuild name:

www-apps/moodle-4.5.10

Description

The Moodle Course Management System

Added to portage

2026-02-12

moodle - 5.0.6
Ebuild name:

www-apps/moodle-5.0.6

Description

The Moodle Course Management System

Added to portage

2026-02-12

nginx-mode - 1.1.10
Ebuild name:

app-emacs/nginx-mode-1.1.10

Description

Emacs editing mode for Nginx config files

Added to portage

2026-02-12

nss-docker-ng - 1.1.3
Ebuild name:

sys-auth/nss-docker-ng-1.1.3

Description

NSS plugin for finding Docker containers by their ID or name

Added to portage

2026-02-12

oshu - 2.0.3
Ebuild name:

games-arcade/oshu-2.0.3

Description

Lightweight osu port

Added to portage

2026-02-12

sanlock - 4.2.0
Ebuild name:

sys-cluster/sanlock-4.2.0

Description

shared storage lock manager

Added to portage

2026-02-12

sendmail - 8.18.1.10-r4
Ebuild name:

mail-mta/sendmail-8.18.1.10-r4

Description

Widely-used Mail Transport Agent (MTA)

Added to portage

2026-02-12

sendmail - 8.18.1.15-r2
Ebuild name:

mail-mta/sendmail-8.18.1.15-r2

Description

Widely-used Mail Transport Agent (MTA)

Added to portage

2026-02-12

sendmail - 8.18.1.16-r1
Ebuild name:

mail-mta/sendmail-8.18.1.16-r1

Description

Widely-used Mail Transport Agent (MTA)

Added to portage

2026-02-12

sudo-rs - 0.2.12-r1
Ebuild name:

app-admin/sudo-rs-0.2.12-r1

Description

A memory safe implementation of sudo and su.

Added to portage

2026-02-12

tree - 3.18-r1
Ebuild name:

dev-cpp/tree-3.18-r1

Description

An STL-like tree class

Added to portage

2026-02-12

unbound - 1.24.2-r1
Ebuild name:

net-dns/unbound-1.24.2-r1

Description

A validating, recursive and caching DNS resolver

Added to portage

2026-02-12

vanilla-kernel - 5.10.250
Ebuild name:

sys-kernel/vanilla-kernel-5.10.250

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-12

vanilla-kernel - 5.15.200
Ebuild name:

sys-kernel/vanilla-kernel-5.15.200

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-12

vanilla-kernel - 6.1.163
Ebuild name:

sys-kernel/vanilla-kernel-6.1.163

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-12

vanilla-kernel - 6.12.70
Ebuild name:

sys-kernel/vanilla-kernel-6.12.70

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-12

vanilla-kernel - 6.18.10
Ebuild name:

sys-kernel/vanilla-kernel-6.18.10

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-12

vanilla-kernel - 6.6.124
Ebuild name:

sys-kernel/vanilla-kernel-6.6.124

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-12

vaultwarden - 1.35.3
Ebuild name:

app-admin/vaultwarden-1.35.3

Description

Unofficial Bitwarden compatible password manager

Added to portage

2026-02-12

vaultwarden-web - 2026.1.1
Ebuild name:

www-apps/vaultwarden-web-2026.1.1

Description

Prebuilt web vault frontend for Vaultwarden

Added to portage

2026-02-12

2026-02-11
GeographicLib - 2.7
Ebuild name:

sci-geosciences/GeographicLib-2.7

Description

C++ library for converting geographic coordinate systems

Added to portage

2026-02-11

abiword - 3.0.6-r3
Ebuild name:

app-office/abiword-3.0.6-r3

Description

Fully featured yet light and fast cross platform word processor

Added to portage

2026-02-11

abiword - 3.0.7-r1
Ebuild name:

app-office/abiword-3.0.7-r1

Description

Fully featured yet light and fast cross platform word processor

Added to portage

2026-02-11

alembic - 1.18.4
Ebuild name:

dev-python/alembic-1.18.4

Description

Database migrations tool, written by the author of SQLAlchemy

Added to portage

2026-02-11

assertpy - 1.1
Ebuild name:

dev-python/assertpy-1.1

Description

Simple assertion library for unit testing in python with a fluent API

Added to portage

2026-02-11

at-spi2-core - 2.58.2
Ebuild name:

app-accessibility/at-spi2-core-2.58.2

Description

D-Bus accessibility specifications and registration daemon

Added to portage

2026-02-11

atril - 1.28.3
Ebuild name:

app-text/atril-1.28.3

Description

Atril document viewer for MATE

Added to portage

2026-02-11

awscli - 1.44.36
Ebuild name:

app-admin/awscli-1.44.36

Description

Universal Command Line Environment for AWS

Added to portage

2026-02-11

behave - 1.3.3
Ebuild name:

dev-python/behave-1.3.3

Description

BDD, Python style

Added to portage

2026-02-11

boto3 - 1.42.46
Ebuild name:

dev-python/boto3-1.42.46

Description

The AWS SDK for Python

Added to portage

2026-02-11

botocore - 1.42.46
Ebuild name:

dev-python/botocore-1.42.46

Description

Low-level, data-driven core of boto 3

Added to portage

2026-02-11

bottom - 0.12.3
Ebuild name:

sys-process/bottom-0.12.3

Description

A graphical process/system monitor with a customizable interface

Added to portage

2026-02-11

broot - 1.55.0
Ebuild name:

app-misc/broot-1.55.0

Description

A new way to see and navigate directory trees

Added to portage

2026-02-11

cachetools - 7.0.1
Ebuild name:

dev-python/cachetools-7.0.1

Description

Extensible memoizing collections and decorators

Added to portage

2026-02-11

cake - 6.0.0
Ebuild name:

dev-dotnet/cake-6.0.0

Description

Cake (C Make) is a cross platform build automation system with a C DSL

Added to portage

2026-02-11

cdogs-sdl - 2.4.0
Ebuild name:

games-arcade/cdogs-sdl-2.4.0

Description

Classic overhead run-and-gun game

Added to portage

2026-02-11

checkpassword - 0.90-r6
Ebuild name:

net-mail/checkpassword-0.90-r6

Description

A uniform password checking interface for root applications

Added to portage

2026-02-11

chromium - 145.0.7632.45
Ebuild name:

www-client/chromium-145.0.7632.45

Description

Open-source version of Google Chrome web browser

Added to portage

2026-02-11

chrony_exporter - 0.12.3
Ebuild name:

app-metrics/chrony_exporter-0.12.3

Description

Chrony NTP exporter for Prometheus

Added to portage

2026-02-11

claude-code - 2.1.38
Ebuild name:

dev-util/claude-code-2.1.38

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-02-11

clion - 2025.3.1.1
Ebuild name:

dev-util/clion-2025.3.1.1

Description

A complete toolset for C and C++ development

Added to portage

2026-02-11

clion - 2025.3.2
Ebuild name:

dev-util/clion-2025.3.2

Description

A complete toolset for C and C++ development

Added to portage

2026-02-11

collada-dom - 2.5.0-r3
Ebuild name:

dev-libs/collada-dom-2.5.0-r3

Description

COLLADA Document Object Model (DOM) C++ Library

Added to portage

2026-02-11

connman - 2.0
Ebuild name:

net-misc/connman-2.0

Description

Provides a daemon for managing internet connections

Added to portage

2026-02-11

cpp-httplib - 0.31.0
Ebuild name:

dev-cpp/cpp-httplib-0.31.0

Description

C++ HTTP/HTTPS server and client library

Added to portage

2026-02-11

cppcheck - 2.19.1
Ebuild name:

dev-util/cppcheck-2.19.1

Description

Static analyzer of C/C++ code

Added to portage

2026-02-11

cryptography - 46.0.5
Ebuild name:

dev-python/cryptography-46.0.5

Description

Library providing cryptographic recipes and primitives

Added to portage

2026-02-11

cucumber-expressions - 19.0.0
Ebuild name:

dev-python/cucumber-expressions-19.0.0

Description

Human friendly alternative to Regular Expressions

Added to portage

2026-02-11

cucumber-tag-expressions - 9.0.0
Ebuild name:

dev-python/cucumber-tag-expressions-9.0.0

Description

Cucumber tag expression parser

Added to portage

2026-02-11

delve - 1.26.0
Ebuild name:

dev-go/delve-1.26.0

Description

A source-level debugger for the Go programming language

Added to portage

2026-02-11

diffoscope - 312
Ebuild name:

dev-util/diffoscope-312

Description

Will try to get to the bottom of what makes files or directories different

Added to portage

2026-02-11

dot-forward - 0.71-r6
Ebuild name:

net-mail/dot-forward-0.71-r6

Description

Reads sendmail's .forward files under qmail

Added to portage

2026-02-11

dropbox - 241.4.4853
Ebuild name:

net-misc/dropbox-241.4.4853

Description

Dropbox daemon (pretends to be GUI-less)

Added to portage

2026-02-11

ebuildtester - 48
Ebuild name:

dev-util/ebuildtester-48

Description

A dockerized approach to test a Gentoo package within a clean stage3 conta

Added to portage

2026-02-11

element-desktop-bin - 1.12.10
Ebuild name:

net-im/element-desktop-bin-1.12.10

Description

A glossy Matrix collaboration client for desktop (binary package

Added to portage

2026-02-11

elixir - 1.19.5
Ebuild name:

dev-lang/elixir-1.19.5

Description

Elixir programming language

Added to portage

2026-02-11

ell - 0.82
Ebuild name:

dev-libs/ell-0.82

Description

Embedded Linux Library provides core, low-level functionality for system daemons

Added to portage

2026-02-11

erlang - 28.3.1
Ebuild name:

dev-lang/erlang-28.3.1

Description

Erlang programming language, runtime environment and libraries (OTP)

Added to portage

2026-02-11

ettercap - 0.8.4
Ebuild name:

net-analyzer/ettercap-0.8.4

Description

Suite for man in the middle attacks

Added to portage

2026-02-11

firecracker-bin - 1.14.1
Ebuild name:

app-emulation/firecracker-bin-1.14.1

Description

Secure and fast microVMs for serverless computing (static buil

Added to portage

2026-02-11

framework-laptop-kmod - 0_pre20240915
Ebuild name:

app-laptop/framework-laptop-kmod-0_pre20240915

Description

Kernel module to expose more Framework Laptop stuff

Added to portage

2026-02-11

gnome-calendar - 49.1
Ebuild name:

gnome-extra/gnome-calendar-49.1

Description

Manage your calendars with simple and modern interface

Added to portage

2026-02-11

gnome-console - 49.2
Ebuild name:

gui-apps/gnome-console-49.2

Description

A simple user-friendly terminal emulator for the GNOME desktop

Added to portage

2026-02-11

gnome-maps - 49.4
Ebuild name:

sci-geosciences/gnome-maps-49.4

Description

A map application for GNOME

Added to portage

2026-02-11

gnome-software - 49.3
Ebuild name:

gnome-extra/gnome-software-49.3

Description

Gnome install & update software

Added to portage

2026-02-11

gnutls - 3.8.12
Ebuild name:

net-libs/gnutls-3.8.12

Description

Secure communications library implementing the SSL, TLS and DTLS protocols

Added to portage

2026-02-11

goland - 2025.3.1.1
Ebuild name:

dev-util/goland-2025.3.1.1

Description

Golang IDE by JetBrains

Added to portage

2026-02-11

greenbone-feed-sync - 25.2.0
Ebuild name:

net-analyzer/greenbone-feed-sync-25.2.0

Description

New script for syncing the Greenbone Community Feed

Added to portage

2026-02-11

gsa - 26.10.1
Ebuild name:

net-analyzer/gsa-26.10.1

Description

Greenbone Security Assistant

Added to portage

2026-02-11

gvm-tools - 25.4.5
Ebuild name:

net-analyzer/gvm-tools-25.4.5

Description

Remote control for Greenbone Vulnerability Manager, previously named

Added to portage

2026-02-11

hashcat - 7.1.2-r1
Ebuild name:

app-crypt/hashcat-7.1.2-r1

Description

World's fastest and most advanced password recovery utility

Added to portage

2026-02-11

hyfetch - 2.0.5
Ebuild name:

app-misc/hyfetch-2.0.5

Description

Neofetch with LGBTQ+ pride flags

Added to portage

2026-02-11

immutabledict - 4.3.0
Ebuild name:

dev-python/immutabledict-4.3.0

Description

An immutable wrapper around dictionaries

Added to portage

2026-02-11

intel-microcode - 20260210_p20260211
Ebuild name:

sys-firmware/intel-microcode-20260210_p20260211

Description

Intel IA32/IA64 microcode update data

Added to portage

2026-02-11

iwd - 3.11
Ebuild name:

net-wireless/iwd-3.11

Description

Wireless daemon for linux

Added to portage

2026-02-11

josm-bin - 19481
Ebuild name:

sci-geosciences/josm-bin-19481

Description

Java-based editor for the OpenStreetMap project

Added to portage

2026-02-11

jupyterlab - 4.5.4
Ebuild name:

dev-python/jupyterlab-4.5.4

Description

JupyterLab computational environment

Added to portage

2026-02-11

kexec-tools - 2.0.32-r1
Ebuild name:

sys-apps/kexec-tools-2.0.32-r1

Description

Load another kernel from the currently executing Linux kernel

Added to portage

2026-02-11

leiningen-bin - 2.12.0
Ebuild name:

dev-java/leiningen-bin-2.12.0

Description

Automate Clojure projects without setting your hair on fire

Added to portage

2026-02-11

libconfig - 1.8.2
Ebuild name:

dev-libs/libconfig-1.8.2

Description

Libconfig is a simple library for manipulating structured configuration fi

Added to portage

2026-02-11

libdatrie - 0.2.14
Ebuild name:

dev-libs/libdatrie-0.2.14

Description

Double-Array Trie Library

Added to portage

2026-02-11

libdatrie - 0.2.14-r1
Ebuild name:

dev-libs/libdatrie-0.2.14-r1

Description

Double-Array Trie Library

Added to portage

2026-02-11

libftd2xx - 1.4.33
Ebuild name:

dev-embedded/libftd2xx-1.4.33

Description

Library that allows a direct access to a USB device

Added to portage

2026-02-11

libjxl - 0.11.2
Ebuild name:

media-libs/libjxl-0.11.2

Description

JPEG XL image format reference implementation

Added to portage

2026-02-11

libmateweather - 1.28.2
Ebuild name:

dev-libs/libmateweather-1.28.2

Description

MATE library to access weather information from online services

Added to portage

2026-02-11

libopusenc - 0.3
Ebuild name:

media-libs/libopusenc-0.3

Description

High-level API for encoding .opus files

Added to portage

2026-02-11

libp11 - 0.4.17
Ebuild name:

dev-libs/libp11-0.4.17

Description

Abstraction layer to simplify PKCS11 API

Added to portage

2026-02-11

librist - 0.2.11
Ebuild name:

net-libs/librist-0.2.11

Description

Library for Reliable Internet Stream Transport (RIST) protocol

Added to portage

2026-02-11

libsecp256k1 - 0.7.1
Ebuild name:

dev-libs/libsecp256k1-0.7.1

Description

Optimized C library for EC operations on curve secp256k1

Added to portage

2026-02-11

libthai - 0.1.30
Ebuild name:

dev-libs/libthai-0.1.30

Description

Set of Thai language support routines

Added to portage

2026-02-11

libthai - 0.1.30-r1
Ebuild name:

dev-libs/libthai-0.1.30-r1

Description

Set of Thai language support routines

Added to portage

2026-02-11

liburing - 2.14
Ebuild name:

sys-libs/liburing-2.14

Description

Efficient I/O with io_uring

Added to portage

2026-02-11

litecli - 1.17.1
Ebuild name:

dev-db/litecli-1.17.1

Description

CLI for SQLite with auto-completion and syntax highlighting

Added to portage

2026-02-11

lvm2 - 2.03.37
Ebuild name:

sys-fs/lvm2-2.03.37

Description

User-land utilities for LVM2 (device-mapper) software

Added to portage

2026-02-11

lxdream - 0.9.1-r5
Ebuild name:

games-emulation/lxdream-0.9.1-r5

Description

An emulator for the Sega Dreamcast system

Added to portage

2026-02-11

man-db - 2.13.0-r1
Ebuild name:

sys-apps/man-db-2.13.0-r1

Description

A man replacement that utilizes dbm instead of flat files

Added to portage

2026-02-11

man-db - 2.13.1-r1
Ebuild name:

sys-apps/man-db-2.13.1-r1

Description

A man replacement that utilizes dbm instead of flat files

Added to portage

2026-02-11

mbedtls - 3.6.5
Ebuild name:

net-libs/mbedtls-3.6.5

Description

Cryptographic library for embedded systems

Added to portage

2026-02-11

melonds-jg - 1.1.0
Ebuild name:

games-emulation/melonds-jg-1.1.0

Description

Jolly Good Port of melonDS

Added to portage

2026-02-11

mkdocs-autorefs - 1.4.4
Ebuild name:

dev-python/mkdocs-autorefs-1.4.4

Description

Automatically link across pages in MkDoc

Added to portage

2026-02-11

mod_qos - 11.77
Ebuild name:

www-apache/mod_qos-11.77

Description

A QOS module for the apache webserver

Added to portage

2026-02-11

multipath-tools - 0.14.3
Ebuild name:

sys-fs/multipath-tools-0.14.3

Description

Device mapper target autoconfig

Added to portage

2026-02-11

mycli - 1.51.1
Ebuild name:

dev-db/mycli-1.51.1

Description

CLI for MySQL Database with auto-completion and syntax highlighting

Added to portage

2026-02-11

mydumper - 0.21.3.1
Ebuild name:

dev-db/mydumper-0.21.3.1

Description

A high-performance multi-threaded backup (and restore) toolset for MySQL

Added to portage

2026-02-11

mysqlclient - 2.2.8
Ebuild name:

dev-python/mysqlclient-2.2.8

Description

Python interface to MySQL

Added to portage

2026-02-11

nDPI - 4.8
Ebuild name:

net-libs/nDPI-4.8

Description

Open Source Deep Packet Inspection Software Toolkit

Added to portage

2026-02-11

nbdime - 4.0.4
Ebuild name:

dev-python/nbdime-4.0.4

Description

Diff and merge of Jupyter Notebooks

Added to portage

2026-02-11

nfs-utils - 2.8.5
Ebuild name:

net-fs/nfs-utils-2.8.5

Description

NFS client and server daemons

Added to portage

2026-02-11

nim-mode - 0.4.2_p20231101
Ebuild name:

app-emacs/nim-mode-0.4.2_p20231101

Description

Emacs major mode for the Nim programming language support

Added to portage

2026-02-11

ninja-mode - 1.11.1-r2
Ebuild name:

app-emacs/ninja-mode-1.11.1-r2

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-02-11

ninja-mode - 1.12.0
Ebuild name:

app-emacs/ninja-mode-1.12.0

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-02-11

ninja-mode - 1.12.1
Ebuild name:

app-emacs/ninja-mode-1.12.1

Description

GNU Emacs mode for handling Ninja build files

Added to portage

2026-02-11

nix-mode - 1.5.0
Ebuild name:

app-emacs/nix-mode-1.5.0

Description

GNU Emacs major mode for editing Nix expressions

Added to portage

2026-02-11

no-littering - 1.8.2
Ebuild name:

app-emacs/no-littering-1.8.2

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-02-11

no-littering - 1.8.3
Ebuild name:

app-emacs/no-littering-1.8.3

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-02-11

no-littering - 1.8.4
Ebuild name:

app-emacs/no-littering-1.8.4

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-02-11

openpgp-keys-aacid - 20260210
Ebuild name:

sec-keys/openpgp-keys-aacid-20260210

Description

OpenPGP keys used by Albert Astals Cid

Added to portage

2026-02-11

openpgp-keys-chrislamb - 20260211
Ebuild name:

sec-keys/openpgp-keys-chrislamb-20260211

Description

OpenPGP key used by Chris Lamb

Added to portage

2026-02-11

openpgp-keys-cjwatson - 20260210
Ebuild name:

sec-keys/openpgp-keys-cjwatson-20260210

Description

OpenPGP key used by Colin Watson

Added to portage

2026-02-11

openpgp-keys-coreutils - 20260210
Ebuild name:

sec-keys/openpgp-keys-coreutils-20260210

Description

OpenPGP keys used by GNU coreutils

Added to portage

2026-02-11

openpgp-keys-gnutls - 20260210
Ebuild name:

sec-keys/openpgp-keys-gnutls-20260210

Description

OpenPGP keys used by GnuTLS

Added to portage

2026-02-11

openpgp-keys-handbrake - 20260208
Ebuild name:

sec-keys/openpgp-keys-handbrake-20260208

Description

OpenPGP keys used to sign HandBrake

Added to portage

2026-02-11

openpgp-keys-hughsie - 20260210
Ebuild name:

sec-keys/openpgp-keys-hughsie-20260210

Description

OpenPGP key used by Richard Hughes (hughsie)

Added to portage

2026-02-11

openpgp-keys-lassecollin - 20260210
Ebuild name:

sec-keys/openpgp-keys-lassecollin-20260210

Description

OpenPGP keys used by Lasse Collin

Added to portage

2026-02-11

openpgp-keys-leiningen - 20260128
Ebuild name:

sec-keys/openpgp-keys-leiningen-20260128

Description

OpenPGP keys used to sign Leiningen packages

Added to portage

2026-02-11

openpgp-keys-libseccomp - 20260210
Ebuild name:

sec-keys/openpgp-keys-libseccomp-20260210

Description

OpenPGP key used for sys-libs/libseccomp

Added to portage

2026-02-11

openpgp-keys-libtasn1 - 20260210
Ebuild name:

sec-keys/openpgp-keys-libtasn1-20260210

Description

OpenPGP keys used by GNU Libtasn1

Added to portage

2026-02-11

openpgp-keys-mpc - 20260210
Ebuild name:

sec-keys/openpgp-keys-mpc-20260210

Description

OpenPGP keys used by Andreas Enge (to sign MPC releases)

Added to portage

2026-02-11

openpgp-keys-p11-kit - 20260210
Ebuild name:

sec-keys/openpgp-keys-p11-kit-20260210

Description

OpenPGP key used to sign p11-kit releases

Added to portage

2026-02-11

openpgp-keys-testssl - 20260210
Ebuild name:

sec-keys/openpgp-keys-testssl-20260210

Description

OpenPGP keys used by testssl.sh

Added to portage

2026-02-11

p11-kit - 0.26.2
Ebuild name:

app-crypt/p11-kit-0.26.2

Description

Provides a standard configuration setup for installing PKCS11

Added to portage

2026-02-11

paml - 4.10.10
Ebuild name:

sci-biology/paml-4.10.10

Description

Phylogenetic Analysis by Maximum Likelihood

Added to portage

2026-02-11

papers - 49.4
Ebuild name:

app-text/papers-49.4

Description

A document viewer for the GNOME desktop

Added to portage

2026-02-11

pg-gvm - 22.6.14
Ebuild name:

dev-db/pg-gvm-22.6.14

Description

Greenbone Library for helper functions in PostgreSQL

Added to portage

2026-02-11

pontos - 25.8.1
Ebuild name:

net-analyzer/pontos-25.8.1

Description

Common utilities and tools maintained by Greenbone Networks

Added to portage

2026-02-11

pycharm-professional - 2025.3.1.1
Ebuild name:

dev-util/pycharm-professional-2025.3.1.1

Description

Intelligent Python IDE with unique code assistance and ana

Added to portage

2026-02-11

pypiserver - 2.4.1
Ebuild name:

dev-python/pypiserver-2.4.1

Description

Minimal PyPI server

Added to portage

2026-02-11

pyproject-fmt - 2.15.2
Ebuild name:

dev-python/pyproject-fmt-2.15.2

Description

Format your pyproject.toml file

Added to portage

2026-02-11

pytest-regressions - 2.10.0
Ebuild name:

dev-python/pytest-regressions-2.10.0

Description

Easy to use fixtures to write regression tests

Added to portage

2026-02-11

python-gvm - 26.9.1
Ebuild name:

net-analyzer/python-gvm-26.9.1

Description

Greenbone Vulnerability Management Python Library

Added to portage

2026-02-11

python-pskc - 1.4
Ebuild name:

dev-python/python-pskc-1.4

Description

Python module for handling Portable Symmetric Key Container files

Added to portage

2026-02-11

python-pskc - 9999
Ebuild name:

dev-python/python-pskc-9999

Description

Python module for handling Portable Symmetric Key Container files

Added to portage

2026-02-11

python-tlsh - 4.12.1
Ebuild name:

dev-python/python-tlsh-4.12.1

Description

Fuzzy matching library - C++ extension for Python

Added to portage

2026-02-11

qlog - 0.48.0
Ebuild name:

media-radio/qlog-0.48.0

Description

Amateur radio logbook software

Added to portage

2026-02-11

qpwgraph - 0.9.8
Ebuild name:

media-sound/qpwgraph-0.9.8

Description

PipeWire Graph Qt GUI Interface

Added to portage

2026-02-11

qtconsole - 5.7.1
Ebuild name:

dev-python/qtconsole-5.7.1

Description

Qt-based console for Jupyter with support for rich media output

Added to portage

2026-02-11

rabbitmq-server - 4.1.8
Ebuild name:

net-misc/rabbitmq-server-4.1.8

Description

RabbitMQ is a high-performance AMQP-compliant message broker written

Added to portage

2026-02-11

rabbitmq-server - 4.2.3
Ebuild name:

net-misc/rabbitmq-server-4.2.3

Description

RabbitMQ is a high-performance AMQP-compliant message broker written

Added to portage

2026-02-11

radicale - 3.5.10-r1
Ebuild name:

www-apps/radicale-3.5.10-r1

Description

A simple CalDAV calendar server

Added to portage

2026-02-11

recoll - 1.43.10
Ebuild name:

app-misc/recoll-1.43.10

Description

Personal full text search package

Added to portage

2026-02-11

red-blue-quake2 - 0.1-r2
Ebuild name:

games-fps/red-blue-quake2-0.1-r2

Description

Red-blue Quake II Play quake2 with 3D glasses

Added to portage

2026-02-11

redis - 8.2.4
Ebuild name:

dev-db/redis-8.2.4

Description

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

Added to portage

2026-02-11

redis - 8.4.1
Ebuild name:

dev-db/redis-8.4.1

Description

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

Added to portage

2026-02-11

redis - 8.6.0
Ebuild name:

dev-db/redis-8.6.0

Description

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

Added to portage

2026-02-11

rmg - 0.8.9
Ebuild name:

games-emulation/rmg-0.8.9

Description

Rosalie's Mupen GUI

Added to portage

2026-02-11

roundcube - 1.7_rc3
Ebuild name:

mail-client/roundcube-1.7_rc3

Description

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

Added to portage

2026-02-11

rsync - 3.4.1-r2
Ebuild name:

net-misc/rsync-3.4.1-r2

Description

File transfer program to keep remote files into sync

Added to portage

2026-02-11

rust - 1.93.0
Ebuild name:

dev-lang/rust-1.93.0

Description

Systems programming language originally developed by Mozilla

Added to portage

2026-02-11

rust - 1.94.0_beta20260126
Ebuild name:

dev-lang/rust-1.94.0_beta20260126

Description

Systems programming language originally developed by Mozilla

Added to portage

2026-02-11

rust-bin - 1.93.0
Ebuild name:

dev-lang/rust-bin-1.93.0

Description

Added to portage

2026-02-11

rust-bin - 1.94.0_beta20260126
Ebuild name:

dev-lang/rust-bin-1.94.0_beta20260126

Description

Added to portage

2026-02-11

rust-common - 1.93.0
Ebuild name:

dev-lang/rust-common-1.93.0

Description

Common files shared between multiple slots of Rust

Added to portage

2026-02-11

rust-common - 1.94.0_beta20260126
Ebuild name:

dev-lang/rust-common-1.94.0_beta20260126

Description

Common files shared between multiple slots of Rust

Added to portage

2026-02-11

rust-std - 1.93.0
Ebuild name:

sys-devel/rust-std-1.93.0

Description

Rust standard library, standalone (for crossdev)

Added to portage

2026-02-11

rust-std - 1.94.0_beta20260126
Ebuild name:

sys-devel/rust-std-1.94.0_beta20260126

Description

Rust standard library, standalone (for crossdev)

Added to portage

2026-02-11

sccache - 0.14.0
Ebuild name:

dev-util/sccache-0.14.0

Description

ccache/distcc like tool with support for rust and cloud storage

Added to portage

2026-02-11

scx - 1.0.20
Ebuild name:

sys-kernel/scx-1.0.20

Description

sched_ext schedulers and tools

Added to portage

2026-02-11

scx-loader - 1.0.20
Ebuild name:

sys-kernel/scx-loader-1.0.20

Description

DBUS on-demand loader of sched-ext schedulers

Added to portage

2026-02-11

sfeed - 2.3
Ebuild name:

net-news/sfeed-2.3

Description

Simple RSS and Atom parser

Added to portage

2026-02-11

signal-desktop-bin - 7.86.0
Ebuild name:

net-im/signal-desktop-bin-7.86.0

Description

Allows you to send and receive messages of Signal Messenger on you

Added to portage

2026-02-11

signxml - 4.2.2
Ebuild name:

dev-python/signxml-4.2.2

Description

Python XML Signature and XAdES library

Added to portage

2026-02-11

signxml - 9999
Ebuild name:

dev-python/signxml-9999

Description

Python XML Signature and XAdES library

Added to portage

2026-02-11

skim - 1.9.1
Ebuild name:

app-misc/skim-1.9.1

Description

Command-line fuzzy finder

Added to portage

2026-02-11

skim - 2.0.2
Ebuild name:

app-misc/skim-2.0.2

Description

Command-line fuzzy finder

Added to portage

2026-02-11

socat - 1.8.1.0-r1
Ebuild name:

net-misc/socat-1.8.1.0-r1

Description

Multipurpose relay (SOcket CAT)

Added to portage

2026-02-11

strace - 6.19
Ebuild name:

dev-debug/strace-6.19

Description

Useful diagnostic, instructional, and debugging tool

Added to portage

2026-02-11

supertux - 0.7.0_beta2
Ebuild name:

games-arcade/supertux-0.7.0_beta2

Description

A run 'n jump platforming game featuring Tux the penguin

Added to portage

2026-02-11

systemc - 3.0.2
Ebuild name:

sci-electronics/systemc-3.0.2

Description

A C++ based modeling platform for VLSI and system-level co-design

Added to portage

2026-02-11

talk-desktop-bin - 2.0.6
Ebuild name:

net-im/talk-desktop-bin-2.0.6

Description

Nextcloud Talk Desktop client

Added to portage

2026-02-11

teamviewer - 15.73.5
Ebuild name:

net-misc/teamviewer-15.73.5

Description

All-In-One Solution for Remote Access and Support over the Internet

Added to portage

2026-02-11

testssl - 3.0.10-r1
Ebuild name:

net-analyzer/testssl-3.0.10-r1

Description

Tool to check TLS/SSL cipher support

Added to portage

2026-02-11

testssl - 3.2.2-r1
Ebuild name:

net-analyzer/testssl-3.2.2-r1

Description

Tool to check TLS/SSL cipher support

Added to portage

2026-02-11

tiled - 1.11.2_p20260205
Ebuild name:

dev-games/tiled-1.11.2_p20260205

Description

A general purpose tile map editor

Added to portage

2026-02-11

tlsh - 4.12.1
Ebuild name:

dev-libs/tlsh-4.12.1

Description

Fuzzy matching library

Added to portage

2026-02-11

tree-sitter-lua - 0.4.1
Ebuild name:

dev-libs/tree-sitter-lua-0.4.1

Description

Lua grammar for Tree-sitter

Added to portage

2026-02-11

tree-sitter-markdown - 0.5.2
Ebuild name:

dev-libs/tree-sitter-markdown-0.5.2

Description

Markdown grammar for Tree-sitter

Added to portage

2026-02-11

tree-sitter-markdown-inline - 0.3.2
Ebuild name:

dev-libs/tree-sitter-markdown-inline-0.3.2

Description

Markdown-inline grammar for Tree-sitter

Added to portage

2026-02-11

treesit-auto - 1.0.9
Ebuild name:

app-emacs/treesit-auto-1.0.9

Description

Automatic installation, usage, fallback for tree-sitter modes in Emacs

Added to portage

2026-02-11

trimesh - 4.11.2
Ebuild name:

dev-python/trimesh-4.11.2

Description

Python library for loading and using triangular meshes

Added to portage

2026-02-11

tuxedo-control-center-bin - 2.1.22
Ebuild name:

app-laptop/tuxedo-control-center-bin-2.1.22

Description

Tool to control performance, energy, fan and comfort se

Added to portage

2026-02-11

tuxedo-drivers - 4.18.2
Ebuild name:

app-laptop/tuxedo-drivers-4.18.2

Description

Kernel modules for TUXEDO laptops

Added to portage

2026-02-11

ucx - 1.19.0
Ebuild name:

sys-cluster/ucx-1.19.0

Description

Unified Communication X

Added to portage

2026-02-11

upx - 5.1.0
Ebuild name:

app-arch/upx-5.1.0

Description

Ultimate Packer for eXecutables (free version using UCL compression and not NRV)

Added to portage

2026-02-11

upx-bin - 5.1.0
Ebuild name:

app-arch/upx-bin-5.1.0

Description

Ultimate Packer for eXecutables, binary version with proprietary NRV compres

Added to portage

2026-02-11

uv - 0.10.2
Ebuild name:

dev-python/uv-0.10.2

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-02-11

uv-build - 0.10.2
Ebuild name:

dev-python/uv-build-0.10.2

Description

PEP517 uv build backend

Added to portage

2026-02-11

vdr - 2.7.9
Ebuild name:

media-video/vdr-2.7.9

Description

Video Disk Recorder - turns a pc into a powerful set top box for DVB

Added to portage

2026-02-11

vdr-live - 3.5.3
Ebuild name:

media-plugins/vdr-live-3.5.3

Description

VDR Plugin Web Access To Settings

Added to portage

2026-02-11

vdr-markad - 4.2.17
Ebuild name:

media-plugins/vdr-markad-4.2.17

Description

VDR Plugin mark advertising in VDR recordings

Added to portage

2026-02-11

vdr-satip - 2.5.1
Ebuild name:

media-plugins/vdr-satip-2.5.1

Description

VDR Plugin integrates SAT>IP network devices seamlessly into VDR

Added to portage

2026-02-11

volatility3 - 2.27.0
Ebuild name:

app-forensics/volatility3-2.27.0

Description

Framework for analyzing volatile memory

Added to portage

2026-02-11

whatsapp-desktop-bin - 0.5.4
Ebuild name:

net-im/whatsapp-desktop-bin-0.5.4

Description

Unofficial electron-based wrapper around WhatsApp Web

Added to portage

2026-02-11

xdebug - 3.5.0
Ebuild name:

dev-php/xdebug-3.5.0

Description

A PHP debugging and profiling extension

Added to portage

2026-02-11

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 87.0 ms