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:

82955

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: Tutorials per portage category->net-misc->openvpn

OpenVPN primer


There are as many advantages to VPN tunnels as there are different VPN scenarios. One easy implementation is the "OpenVPN via tun-device" solution. An example: you'd like to connect your laptop to your LAN at home so that you can use your mail client without reconfiguring it anytime you switch from home to internet and back. Let's say your mail-server is 192.168.1.10 in your LAN (192.168.1.0/24) at home, and you have got a router/firewall providing access to the Internet. You connect from work or school and want to read mail. OpenVPN can create two virtual devices for you when connecting two computers through an encrypted tunnel. Naturally you then have the possibility of forwarding traffic into the networks behind them, and thus would be "virtually connected" to your LAN behind the firewall. To enable this, either your firewall or a server behind it should run OpenVPN (if you choose a server in your LAN, you'll have to forward the destination port to the OpenVPN server).

Here's what you need to do:
Code Listing 1: Enable the tun module in your kernel: Kernel config - tun module
          [*] Networking support    
Networking options --->
[ ] Amateur Radio support --->
< > IrDA (infrared) subsystem support --->
< > Bluetooth subsystem support --->
[*] Network device support
< > Dummy net driver support
< > Bonding driver support
< > EQL (serial line load balancing) support
Universal TUN/TAP device driver support
// This option must be enabled


Make sure this module exists and can be loaded. Next, install OpenVPN and it dependencies.
Code Listing 2: Install OpenVPN
emerge openvpn

Now on both server and client, create a directory for your configuration:

Code Listing 3: Make directory
mkdir /etc/openvpn    
mkdir /etc/openvpn/myhomelan


Inside that directory, create a shared key for your VPN session and copy that key to the client's directory, /etc/openvpn/myhomelan.

Code Listing 4: Generate shared key
cd /etc/openvpn/myhomelan    
openvpn --genkey --secret myhomelan-key.txt


Now for the tricky part, the routing. It is important that the two tun devices on the client and server use IP addresses from the same subnet. The configuration files shown below list the type of device, the two end-points of the tunnel, the compression method and the UDP-port on which the tunnel is established. Finally privileges are dropped to user and group as listed:

Code Listing 5: Server-side configuration file /etc/openvpn/myhomelan/local.conf
dev tun    
ifconfig 172.16.1.1 172.16.1.20 // IP of the local
// tun device and its peer
secret /etc/openvpn/myhomelan/myhomelan-key.txt
comp-lzo
port 5000
user nobody
group nobody


The client's configuration needs the tunnel's destination address. This is often a dynamic DNS address, sometimes a fixed IP, depending on your ISP. You also need to route to your home LAN (192.168.1.0 in our example). You can call a shell script from the configuration file that accordingly sets a route.

Code Listing 6: Client-side configuration file /etc/openvpn/myhomelan/local.conf
remote    // or your VPN 
// server's external IP if you have a fixed one
dev tun
ifconfig 172.16.1.20 172.16.1.1 // IP of the local tun
// device and its peer
secret /etc/openvpn/myhomelan/myhomelan-key.txt
comp-lzo
port 5000
user nobody
group nobody
up /etc/openvpn/myhomelan/route.sh // sets up the route
//to the network behind the VPN server


The route command would need to set the client's gateway for the network 192.168.1.0 to its peer's address (172.16.1.1 in our setup).

Code Listing 7: /etc/openvpn/myhomelan/route.sh
#!/bin/bash    
route add -net 192.168.1.0 netmask 255.255.255.0 gw 172.16.1.1


That's it. Start OpenVPN on the server and the client, and check the devices with ifconfig and the routes with route -n. Success!

From http://www.gentoo.org/news/en/gwn/20041011-newsletter.xml
rate this article:
current rating: average rating: 1.6 (45 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
2026-01-26
activesupport - 8.1.2
Ebuild name:

dev-ruby/activesupport-8.1.2

Description

Utility Classes and Extension to the Standard Library

Added to portage

2026-01-26

awkward - 2.8.12
Ebuild name:

dev-python/awkward-2.8.12

Description

Manipulate JSON-like data with NumPy-like idioms

Added to portage

2026-01-26

cachetools - 6.2.5
Ebuild name:

dev-python/cachetools-6.2.5

Description

Extensible memoizing collections and decorators

Added to portage

2026-01-26

cccc - 3.2.0
Ebuild name:

dev-util/cccc-3.2.0

Description

Source metrics (line counts, complexity, etc) for Java and C++

Added to portage

2026-01-26

commons-codec - 1.20.0
Ebuild name:

dev-java/commons-codec-1.20.0

Description

Implementations of common encoders and decoders in Java

Added to portage

2026-01-26

coverage - 7.13.2
Ebuild name:

dev-python/coverage-7.13.2

Description

Code coverage measurement for Python

Added to portage

2026-01-26

eid-mw - 5.1.28
Ebuild name:

app-crypt/eid-mw-5.1.28

Description

Electronic Identity Card middleware supplied by the Belgian Federal Governm

Added to portage

2026-01-26

ensurepip-setuptools - 80.10.2
Ebuild name:

dev-python/ensurepip-setuptools-80.10.2

Description

Shared setuptools wheel for ensurepip Python module

Added to portage

2026-01-26

flatpak - 1.16.3
Ebuild name:

sys-apps/flatpak-1.16.3

Description

Linux application sandboxing and distribution framework

Added to portage

2026-01-26

gcc - 16.0.1_p20260125
Ebuild name:

sys-devel/gcc-16.0.1_p20260125

Description

The GNU Compiler Collection

Added to portage

2026-01-26

git-sources - 6.19_rc7
Ebuild name:

sys-kernel/git-sources-6.19_rc7

Description

The very latest -git version of the Linux kernel

Added to portage

2026-01-26

hcloud - 1.61.0
Ebuild name:

app-admin/hcloud-1.61.0

Description

A command-line interface for Hetzner Cloud

Added to portage

2026-01-26

hypothesis - 6.151.0
Ebuild name:

dev-python/hypothesis-6.151.0

Description

A library for property based testing

Added to portage

2026-01-26

incus - 6.21
Ebuild name:

app-containers/incus-6.21

Description

Modern, secure and powerful system container and virtual machine manager

Added to portage

2026-01-26

jemalloc - 5.3.0-r2
Ebuild name:

dev-libs/jemalloc-5.3.0-r2

Description

Jemalloc is a general-purpose scalable concurrent allocator

Added to portage

2026-01-26

kalarm - 25.12.1-r2
Ebuild name:

kde-apps/kalarm-25.12.1-r2

Description

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

Added to portage

2026-01-26

kdeplasma-addons - 6.5.5-r1
Ebuild name:

kde-plasma/kdeplasma-addons-6.5.5-r1

Description

Extra Plasma applets and engines

Added to portage

2026-01-26

kimageformats - 6.22.0-r1
Ebuild name:

kde-frameworks/kimageformats-6.22.0-r1

Description

Framework providing additional format plugins for Qt's image

Added to portage

2026-01-26

kwin - 6.5.5-r1
Ebuild name:

kde-plasma/kwin-6.5.5-r1

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2026-01-26

libkscreen - 6.5.5-r1
Ebuild name:

kde-plasma/libkscreen-6.5.5-r1

Description

Plasma screen management library

Added to portage

2026-01-26

multidict - 6.7.1
Ebuild name:

dev-python/multidict-6.7.1

Description

multidict implementation

Added to portage

2026-01-26

openpgp-keys-gentoo-auth - 20260125
Ebuild name:

sec-keys/openpgp-keys-gentoo-auth-20260125

Description

Gentoo Authority Keys (GLEP 79)

Added to portage

2026-01-26

openpgp-keys-gentoo-release - 20260125
Ebuild name:

sec-keys/openpgp-keys-gentoo-release-20260125

Description

OpenPGP keys used for Gentoo releases (snapshots, sta

Added to portage

2026-01-26

pebble - 5.2.0
Ebuild name:

dev-python/pebble-5.2.0

Description

Threading and multiprocessing eye-candy

Added to portage

2026-01-26

plasma-workspace - 6.5.5-r1
Ebuild name:

kde-plasma/plasma-workspace-6.5.5-r1

Description

KDE Plasma workspace

Added to portage

2026-01-26

pygresql - 6.2.3
Ebuild name:

dev-python/pygresql-6.2.3

Description

A Python interface for the PostgreSQL database

Added to portage

2026-01-26

pypdf - 6.6.1
Ebuild name:

dev-python/pypdf-6.6.1

Description

Python library to work with PDF files

Added to portage

2026-01-26

python-multipart - 0.0.22
Ebuild name:

dev-python/python-multipart-0.0.22

Description

A streaming multipart parser for Python

Added to portage

2026-01-26

rbpdf - 1.21.4
Ebuild name:

dev-ruby/rbpdf-1.21.4

Description

Ruby on Rails RBPDF plugin

Added to portage

2026-01-26

redmine - 6.0.7
Ebuild name:

www-apps/redmine-6.0.7

Description

Flexible project management web application using the Ruby on Rails framewor

Added to portage

2026-01-26

setuptools - 80.10.2
Ebuild name:

dev-python/setuptools-80.10.2

Description

Collection of extensions to Distutils

Added to portage

2026-01-26

slurp - 1.6.0
Ebuild name:

gui-apps/slurp-1.6.0

Description

Select a region in a Wayland compositor and print it to the standard output

Added to portage

2026-01-26

ukkonen - 1.1.0
Ebuild name:

dev-python/ukkonen-1.1.0

Description

Implementation of bounded Levenshtein distance (Ukkonen)

Added to portage

2026-01-26

wcwidth - 0.4.0
Ebuild name:

dev-python/wcwidth-0.4.0

Description

Measures number of Terminal column cells of wide-character codes

Added to portage

2026-01-26

2026-01-25
Finance-Quote - 1.670.0-r1
Ebuild name:

dev-perl/Finance-Quote-1.670.0-r1

Description

Get stock and mutual fund quotes from various exchanges

Added to portage

2026-01-25

Sys-Virt - 12.0.0
Ebuild name:

dev-perl/Sys-Virt-12.0.0

Description

API for using the libvirt library from Perl

Added to portage

2026-01-25

aws-c-auth - 0.9.3
Ebuild name:

dev-libs/aws-c-auth-0.9.3

Description

AWS C Auth C99 library implementation of AWS client-side authentication.

Added to portage

2026-01-25

aws-crt-cpp - 0.35.4
Ebuild name:

dev-cpp/aws-crt-cpp-0.35.4

Description

C++ wrapper around the aws-c-* libraries

Added to portage

2026-01-25

aws-sdk-cpp - 1.11.712
Ebuild name:

dev-cpp/aws-sdk-cpp-1.11.712

Description

AWS SDK for C++

Added to portage

2026-01-25

cli-helpers - 2.8.1
Ebuild name:

dev-python/cli-helpers-2.8.1

Description

Python helpers for common CLI tasks

Added to portage

2026-01-25

color - 2.2.0
Ebuild name:

dev-ruby/color-2.2.0

Description

Colour management with Ruby

Added to portage

2026-01-25

configuradorfnmt - 5.0.3
Ebuild name:

app-crypt/configuradorfnmt-5.0.3

Description

Spanish government certificate request generator

Added to portage

2026-01-25

coreutils - 9.9-r12
Ebuild name:

sys-apps/coreutils-9.9-r12

Description

Standard GNU utilities (chmod, cp, dd, ls, sort, tr, head, wc, who,...)

Added to portage

2026-01-25

django-cache-url - 3.4.6
Ebuild name:

dev-python/django-cache-url-3.4.6

Description

Use Cache URLs in your Django application

Added to portage

2026-01-25

execline - 2.9.8.1
Ebuild name:

dev-lang/execline-2.9.8.1

Description

A non-interactive scripting language

Added to portage

2026-01-25

faker - 3.6.0
Ebuild name:

dev-ruby/faker-3.6.0

Description

A library for generating fake data such as names, addresses, and phone numbers

Added to portage

2026-01-25

fedora-backgrounds - 43.0.4
Ebuild name:

x11-themes/fedora-backgrounds-43.0.4

Description

A set of default and supplemental wallpapers for Fedora

Added to portage

2026-01-25

fontbox - 2.0.32-r1
Ebuild name:

dev-java/fontbox-2.0.32-r1

Description

An open source Java library for parsing font files

Added to portage

2026-01-25

fop - 2.10-r2
Ebuild name:

dev-java/fop-2.10-r2

Description

XML Graphics Format Object Processor All-In-One

Added to portage

2026-01-25

gcc - 13.4.1_p20260122
Ebuild name:

sys-devel/gcc-13.4.1_p20260122

Description

The GNU Compiler Collection

Added to portage

2026-01-25

gcc - 14.3.1_p20260123
Ebuild name:

sys-devel/gcc-14.3.1_p20260123

Description

The GNU Compiler Collection

Added to portage

2026-01-25

gcc - 15.2.1_p20260124
Ebuild name:

sys-devel/gcc-15.2.1_p20260124

Description

The GNU Compiler Collection

Added to portage

2026-01-25

glibc - 2.41-r10
Ebuild name:

sys-libs/glibc-2.41-r10

Description

GNU libc C library

Added to portage

2026-01-25

gnome-network-displays - 0.99.0
Ebuild name:

gnome-extra/gnome-network-displays-0.99.0

Description

Stream the desktop to Wi-Fi Display capable devices

Added to portage

2026-01-25

harfbuzz - 12.3.2
Ebuild name:

media-libs/harfbuzz-12.3.2

Description

An OpenType text shaping engine

Added to portage

2026-01-25

incus - 6.0.5-r1
Ebuild name:

app-containers/incus-6.0.5-r1

Description

Modern, secure and powerful system container and virtual machine mana

Added to portage

2026-01-25

jdbc-postgresql - 42.7.8
Ebuild name:

dev-java/jdbc-postgresql-42.7.8

Description

Java JDBC 4.2 (JRE 8+) driver for PostgreSQL database

Added to portage

2026-01-25

jetbrains-annotations - 26.0.2.1
Ebuild name:

dev-java/jetbrains-annotations-26.0.2.1

Description

Annotations for JVM-based languages

Added to portage

2026-01-25

junit-pioneer - 1.9.1-r2
Ebuild name:

dev-java/junit-pioneer-1.9.1-r2

Description

JUnit 5 Extension Pack

Added to portage

2026-01-25

kauth - 5.116.0-r1
Ebuild name:

kde-frameworks/kauth-5.116.0-r1

Description

Framework to let applications perform actions as a privileged user

Added to portage

2026-01-25

libqalculate - 5.9.0
Ebuild name:

sci-libs/libqalculate-5.9.0

Description

A modern multi-purpose calculator library

Added to portage

2026-01-25

libsodium - 1.0.21_p20260122
Ebuild name:

dev-libs/libsodium-1.0.21_p20260122

Description

Portable fork of NaCl, a higher-level cryptographic library

Added to portage

2026-01-25

libvirt - 12.0.0
Ebuild name:

app-emulation/libvirt-12.0.0

Description

C toolkit to manipulate virtual machines

Added to portage

2026-01-25

libvirt-python - 12.0.0
Ebuild name:

dev-python/libvirt-python-12.0.0

Description

libvirt Python bindings

Added to portage

2026-01-25

loupe - 49.2
Ebuild name:

media-gfx/loupe-49.2

Description

View images

Added to portage

2026-01-25

lucene++ - 3.0.9-r2
Ebuild name:

dev-cpp/lucene++-3.0.9-r2

Description

C++ port of Lucene library, a high-performance, full-featured text search

Added to portage

2026-01-25

makemkv - 1.18.3
Ebuild name:

media-video/makemkv-1.18.3

Description

Tool for ripping and streaming Blu-ray, HD-DVD and DVD discs

Added to portage

2026-01-25

mkdocstrings - 1.0.2
Ebuild name:

dev-python/mkdocstrings-1.0.2

Description

Automatic documentation from sources, for MkDocs

Added to portage

2026-01-25

mutt - 2.3.0
Ebuild name:

mail-client/mutt-2.3.0

Description

A small but very powerful text-based mail client

Added to portage

2026-01-25

mythtv - 35.0_p20251230
Ebuild name:

media-tv/mythtv-35.0_p20251230

Description

Open Source DVR and media center hub

Added to portage

2026-01-25

openafs - 1.8.14
Ebuild name:

net-fs/openafs-1.8.14

Description

The OpenAFS distributed file system

Added to portage

2026-01-25

openjdk - 26_beta32
Ebuild name:

dev-java/openjdk-26_beta32

Description

Open source implementation of the Java programming language

Added to portage

2026-01-25

openjdk - 27_alpha6
Ebuild name:

dev-java/openjdk-27_alpha6

Description

Open source implementation of the Java programming language

Added to portage

2026-01-25

openjdk - 8.482_p08
Ebuild name:

dev-java/openjdk-8.482_p08

Description

Open source implementation of the Java programming language

Added to portage

2026-01-25

openpgp-keys-apache-commons - 20251102
Ebuild name:

sec-keys/openpgp-keys-apache-commons-20251102

Description

OpenPGP keys used by commons.apache.org

Added to portage

2026-01-25

openpgp-keys-libjpeg-turbo - 20260124
Ebuild name:

sec-keys/openpgp-keys-libjpeg-turbo-20260124

Description

OpenPGP key used by media-libs/libjpeg-turbo

Added to portage

2026-01-25

openrc-settingsd - 1.5.0
Ebuild name:

app-admin/openrc-settingsd-1.5.0

Description

System settings D-Bus service for OpenRC

Added to portage

2026-01-25

openttd - 15.1
Ebuild name:

games-simulation/openttd-15.1

Description

A clone of Transport Tycoon Deluxe

Added to portage

2026-01-25

pass - 1.7.4-r4
Ebuild name:

app-admin/pass-1.7.4-r4

Description

Stores, retrieves, generates, and synchronizes passwords securely

Added to portage

2026-01-25

passff-host - 1.2.5
Ebuild name:

www-plugins/passff-host-1.2.5

Description

Host app for the PassFF WebExtension

Added to portage

2026-01-25

pdfbox - 2.0.32-r1
Ebuild name:

dev-java/pdfbox-2.0.32-r1

Description

Java library and utilities for working with PDF documents

Added to portage

2026-01-25

plantuml - 1.2026.1
Ebuild name:

media-gfx/plantuml-1.2026.1

Description

Draw UML diagrams using a simple and human readable text description

Added to portage

2026-01-25

powermock-reflect - 2.0.9
Ebuild name:

dev-java/powermock-reflect-2.0.9

Description

Various utilities for accessing internals of a class

Added to portage

2026-01-25

procps - 4.0.5-r4
Ebuild name:

sys-process/procps-4.0.5-r4

Description

Standard informational utilities and process-handling tools

Added to portage

2026-01-25

puma - 7.2.0
Ebuild name:

www-servers/puma-7.2.0

Description

a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rac

Added to portage

2026-01-25

pycollada - 0.9.3
Ebuild name:

dev-python/pycollada-0.9.3

Description

Python library for reading and writing COLLADA documents

Added to portage

2026-01-25

qalculate-gtk - 5.9.0
Ebuild name:

sci-calculators/qalculate-gtk-5.9.0

Description

Modern multi-purpose calculator

Added to portage

2026-01-25

qalculate-qt - 5.9.0
Ebuild name:

sci-calculators/qalculate-qt-5.9.0

Description

Qt-based UI for libqalculate

Added to portage

2026-01-25

qpdf - 12.3.2
Ebuild name:

app-text/qpdf-12.3.2

Description

Command-line tool for structural, content-preserving transformation of PDF fil

Added to portage

2026-01-25

quickcrypt - 0.9.2b-r1
Ebuild name:

app-crypt/quickcrypt-0.9.2b-r1

Description

gives you a quick MD5 Password from any string

Added to portage

2026-01-25

rainbowcrack - 1.8
Ebuild name:

app-crypt/rainbowcrack-1.8

Description

Hash cracker that precomputes plaintext - ciphertext pairs in advance

Added to portage

2026-01-25

redoflacs - 1.1.0
Ebuild name:

media-sound/redoflacs-1.1.0

Description

Bash commandline flac compressor, verifier, organizer, analyzer, retagg

Added to portage

2026-01-25

rhash - 1.4.5
Ebuild name:

app-crypt/rhash-1.4.5

Description

Console utility and library for computing and verifying file hash sums

Added to portage

2026-01-25

rhash - 1.4.6-r1
Ebuild name:

app-crypt/rhash-1.4.6-r1

Description

Console utility and library for computing and verifying file hash sums

Added to portage

2026-01-25

rich - 14.3.1
Ebuild name:

dev-python/rich-14.3.1

Description

Python library for rendering rich text, tables, etc. to the terminal

Added to portage

2026-01-25

rotix - 0.83-r3
Ebuild name:

app-crypt/rotix-0.83-r3

Description

Rotix allows you to generate rotational obfuscations

Added to portage

2026-01-25

rpm-sequoia - 1.10.0
Ebuild name:

app-crypt/rpm-sequoia-1.10.0

Description

Implementation of the RPM PGP interface using Sequoia

Added to portage

2026-01-25

rpm-sequoia - 1.9.0
Ebuild name:

app-crypt/rpm-sequoia-1.9.0

Description

Implementation of the RPM PGP interface using Sequoia

Added to portage

2026-01-25

s6 - 2.14.0.1
Ebuild name:

sys-apps/s6-2.14.0.1

Description

skarnet.org's small and secure supervision software suite

Added to portage

2026-01-25

s6-frontend - 0.0.1.1-r1
Ebuild name:

sys-apps/s6-frontend-0.0.1.1-r1

Description

Frontend to the s6 init system

Added to portage

2026-01-25

s6-networking - 2.7.2.1
Ebuild name:

net-misc/s6-networking-2.7.2.1

Description

Suite of small networking utilities for Unix systems

Added to portage

2026-01-25

s6-rc - 0.6.0.0
Ebuild name:

sys-apps/s6-rc-0.6.0.0

Description

Service manager for the s6 supervision suite

Added to portage

2026-01-25

scram - 3.2
Ebuild name:

dev-java/scram-3.2

Description

SCRAM (RFC 5802) Java implementation

Added to portage

2026-01-25

skalibs - 2.14.5.1
Ebuild name:

dev-libs/skalibs-2.14.5.1

Description

General-purpose libraries from skarnet.org

Added to portage

2026-01-25

snort - 2.9.20-r1
Ebuild name:

net-analyzer/snort-2.9.20-r1

Description

The de facto standard for intrusion detection/prevention

Added to portage

2026-01-25

sof-firmware - 2025.12.1
Ebuild name:

sys-firmware/sof-firmware-2025.12.1

Description

Sound Open Firmware (SOF) binary files

Added to portage

2026-01-25

tiff - 4.7.1
Ebuild name:

media-libs/tiff-4.7.1

Description

Tag Image File Format (TIFF) library

Added to portage

2026-01-25

tomcat - 9.0.115
Ebuild name:

www-servers/tomcat-9.0.115

Description

Tomcat Servlet-4.0/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container

Added to portage

2026-01-25

waffle-jna - 3.5.1
Ebuild name:

dev-java/waffle-jna-3.5.1

Description

Enable drop-in Windows Single Sign On for popular Java web servers

Added to portage

2026-01-25

webapp-config - 1.56
Ebuild name:

app-admin/webapp-config-1.56

Description

Gentoo's installer for web-based applications

Added to portage

2026-01-25

wine-staging - 11.1
Ebuild name:

app-emulation/wine-staging-11.1

Description

Free implementation of Windows(tm) on Unix, with Wine-Staging patch

Added to portage

2026-01-25

wrapt - 2.1.0_rc1
Ebuild name:

dev-python/wrapt-2.1.0_rc1

Description

Module for decorators, wrappers and monkey patching

Added to portage

2026-01-25

x25519 - 1.0.11
Ebuild name:

dev-ruby/x25519-1.0.11

Description

Key exchange via the X25519 (Curve25519) Elliptic Curve Diffie-Hellman funct

Added to portage

2026-01-25

xmpbox - 2.0.32-r1
Ebuild name:

dev-java/xmpbox-2.0.32-r1

Description

An open source Java tool that implements Adobe's XMP(TM) specification

Added to portage

2026-01-25

xscreensaver - 6.14
Ebuild name:

x11-misc/xscreensaver-6.14

Description

Modular screen saver and locker for the X Window System

Added to portage

2026-01-25

yubico-piv-tool - 2.7.3
Ebuild name:

sys-auth/yubico-piv-tool-2.7.3

Description

Command-line tool and p11-kit module for the YubiKey PIV application

Added to portage

2026-01-25

zabbix - 6.0.43
Ebuild name:

net-analyzer/zabbix-6.0.43

Description

ZABBIX is software for monitoring of your applications, network and serv

Added to portage

2026-01-25

zabbix - 7.0.22
Ebuild name:

net-analyzer/zabbix-7.0.22

Description

ZABBIX is software for monitoring of your applications, network and serv

Added to portage

2026-01-25

zabbix - 7.2.15
Ebuild name:

net-analyzer/zabbix-7.2.15

Description

ZABBIX is software for monitoring of your applications, network and serv

Added to portage

2026-01-25

zabbix - 7.4.6
Ebuild name:

net-analyzer/zabbix-7.4.6

Description

ZABBIX is software for monitoring of your applications, network and serve

Added to portage

2026-01-25

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