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:

84385

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-04-12
attica - 6.25.0
Ebuild name:

kde-frameworks/attica-6.25.0

Description

Framework providing access to Open Collaboration Services

Added to portage

2026-04-12

baloo - 6.25.0
Ebuild name:

kde-frameworks/baloo-6.25.0

Description

Framework for searching and managing metadata

Added to portage

2026-04-12

bluez-qt - 6.25.0
Ebuild name:

kde-frameworks/bluez-qt-6.25.0

Description

Qt wrapper for Bluez 5 DBus API

Added to portage

2026-04-12

bpftool - 7.6.0-r1
Ebuild name:

dev-util/bpftool-7.6.0-r1

Description

Tool for inspection and simple manipulation of eBPF programs and maps

Added to portage

2026-04-12

bpftool - 7.7.0-r1
Ebuild name:

dev-util/bpftool-7.7.0-r1

Description

Tool for inspection and simple manipulation of eBPF programs and maps

Added to portage

2026-04-12

breeze-icons - 6.25.0
Ebuild name:

kde-frameworks/breeze-icons-6.25.0

Description

Breeze SVG icon theme

Added to portage

2026-04-12

dist-kernel - 6.1.168
Ebuild name:

virtual/dist-kernel-6.1.168

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-04-12

dist-kernel - 6.12.81
Ebuild name:

virtual/dist-kernel-6.12.81

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-04-12

dist-kernel - 6.18.22
Ebuild name:

virtual/dist-kernel-6.18.22

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-04-12

dist-kernel - 6.19.12
Ebuild name:

virtual/dist-kernel-6.19.12

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-04-12

dist-kernel - 6.6.134
Ebuild name:

virtual/dist-kernel-6.6.134

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-04-12

extra-cmake-modules - 6.25.0
Ebuild name:

kde-frameworks/extra-cmake-modules-6.25.0

Description

Extra modules and scripts for CMake

Added to portage

2026-04-12

frameworkintegration - 6.25.0
Ebuild name:

kde-frameworks/frameworkintegration-6.25.0

Description

Framework for integrating Qt applications with KDE Plasm

Added to portage

2026-04-12

fwupd - 2.1.1-r2
Ebuild name:

sys-apps/fwupd-2.1.1-r2

Description

Aims to make updating firmware on Linux automatic, safe and reliable

Added to portage

2026-04-12

gcc - 15.2.1_p20260411
Ebuild name:

sys-devel/gcc-15.2.1_p20260411

Description

The GNU Compiler Collection

Added to portage

2026-04-12

gentoo-kernel - 6.1.168
Ebuild name:

sys-kernel/gentoo-kernel-6.1.168

Description

Linux kernel built with Gentoo patches

Added to portage

2026-04-12

gentoo-kernel - 6.12.81
Ebuild name:

sys-kernel/gentoo-kernel-6.12.81

Description

Linux kernel built with Gentoo patches

Added to portage

2026-04-12

gentoo-kernel - 6.18.22
Ebuild name:

sys-kernel/gentoo-kernel-6.18.22

Description

Linux kernel built with Gentoo patches

Added to portage

2026-04-12

gentoo-kernel - 6.19.12
Ebuild name:

sys-kernel/gentoo-kernel-6.19.12

Description

Linux kernel built with Gentoo patches

Added to portage

2026-04-12

gentoo-kernel - 6.6.134
Ebuild name:

sys-kernel/gentoo-kernel-6.6.134

Description

Linux kernel built with Gentoo patches

Added to portage

2026-04-12

gentoo-kernel-bin - 6.1.168
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.168

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-04-12

gentoo-kernel-bin - 6.12.81
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.81

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-04-12

gentoo-kernel-bin - 6.18.22
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.22

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-04-12

gentoo-kernel-bin - 6.19.12
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.19.12

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-04-12

gentoo-kernel-bin - 6.6.134
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.134

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-04-12

importlib-resources - 7.0.0
Ebuild name:

dev-python/importlib-resources-7.0.0

Description

Read resources from Python packages

Added to portage

2026-04-12

jemalloc - 5.3.0-r3
Ebuild name:

dev-libs/jemalloc-5.3.0-r3

Description

Jemalloc is a general-purpose scalable concurrent allocator

Added to portage

2026-04-12

kapidox - 6.25.0
Ebuild name:

kde-frameworks/kapidox-6.25.0

Description

Framework for building KDE API documentation in a standard format and

Added to portage

2026-04-12

karchive - 6.25.0
Ebuild name:

kde-frameworks/karchive-6.25.0

Description

Framework for reading, creation, and manipulation of various archive

Added to portage

2026-04-12

kauth - 6.25.0
Ebuild name:

kde-frameworks/kauth-6.25.0

Description

Framework to let applications perform actions as a privileged user

Added to portage

2026-04-12

kbookmarks - 6.25.0
Ebuild name:

kde-frameworks/kbookmarks-6.25.0

Description

Framework for managing bookmarks stored in XBEL format

Added to portage

2026-04-12

kcalendarcore - 6.25.0
Ebuild name:

kde-frameworks/kcalendarcore-6.25.0

Description

Library for interfacing with calendars

Added to portage

2026-04-12

kcmutils - 6.25.0
Ebuild name:

kde-frameworks/kcmutils-6.25.0

Description

Framework to work with KDE System Settings modules

Added to portage

2026-04-12

kcodecs - 6.25.0
Ebuild name:

kde-frameworks/kcodecs-6.25.0

Description

Framework for manipulating strings using various encodings

Added to portage

2026-04-12

kcolorscheme - 6.25.0
Ebuild name:

kde-frameworks/kcolorscheme-6.25.0

Description

Framework for downloading and sharing additional application dat

Added to portage

2026-04-12

kcompletion - 6.25.0
Ebuild name:

kde-frameworks/kcompletion-6.25.0

Description

Framework for common completion tasks such as filename or URL com

Added to portage

2026-04-12

kconfig - 6.25.0
Ebuild name:

kde-frameworks/kconfig-6.25.0

Description

Framework for reading and writing configuration

Added to portage

2026-04-12

modus-themes - 5.1.0
Ebuild name:

app-emacs/modus-themes-5.1.0

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-04-12

modus-themes - 5.2.0
Ebuild name:

app-emacs/modus-themes-5.2.0

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-04-12

modus-themes - 9999
Ebuild name:

app-emacs/modus-themes-9999

Description

Highly accessible themes for GNU Emacs

Added to portage

2026-04-12

mysql-workbench - 8.0.46
Ebuild name:

dev-db/mysql-workbench-8.0.46

Description

MySQL Workbench

Added to portage

2026-04-12

pinta - 3.1.2
Ebuild name:

media-gfx/pinta-3.1.2

Description

Pinta is a free, open source program for drawing and image editing

Added to portage

2026-04-12

pysmi - 1.6.3-r1
Ebuild name:

dev-python/pysmi-1.6.3-r1

Description

Pure-Python implementation of SNMP/SMI MIB parsing and conversion library

Added to portage

2026-04-12

qdmr - 0.14.1
Ebuild name:

net-wireless/qdmr-0.14.1

Description

GUI application for configuring and programming cheap DMR radios

Added to portage

2026-04-12

udis86 - 1.7.2-r2
Ebuild name:

dev-libs/udis86-1.7.2-r2

Description

Disassembler library for the x86/-64 architecture sets

Added to portage

2026-04-12

vanilla-kernel - 6.1.168
Ebuild name:

sys-kernel/vanilla-kernel-6.1.168

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-04-12

vanilla-kernel - 6.12.81
Ebuild name:

sys-kernel/vanilla-kernel-6.12.81

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-04-12

vanilla-kernel - 6.18.22
Ebuild name:

sys-kernel/vanilla-kernel-6.18.22

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-04-12

vanilla-kernel - 6.19.12
Ebuild name:

sys-kernel/vanilla-kernel-6.19.12

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-04-12

vanilla-kernel - 6.6.134
Ebuild name:

sys-kernel/vanilla-kernel-6.6.134

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-04-12

2026-04-11
OpenNI2 - 2.2_beta2-r3
Ebuild name:

dev-libs/OpenNI2-2.2_beta2-r3

Description

OpenNI2 SDK

Added to portage

2026-04-11

authlib - 1.6.9-r1
Ebuild name:

dev-python/authlib-1.6.9-r1

Description

A Python library in building OAuth and OpenID Connect servers and clien

Added to portage

2026-04-11

awscli - 1.44.78
Ebuild name:

app-admin/awscli-1.44.78

Description

Universal Command Line Environment for AWS

Added to portage

2026-04-11

bitstring - 4.4.0-r1
Ebuild name:

dev-python/bitstring-4.4.0-r1

Description

A pure Python module for creation and analysis of binary data

Added to portage

2026-04-11

boto3 - 1.42.88
Ebuild name:

dev-python/boto3-1.42.88

Description

The AWS SDK for Python

Added to portage

2026-04-11

botocore - 1.42.88
Ebuild name:

dev-python/botocore-1.42.88

Description

Low-level, data-driven core of boto 3

Added to portage

2026-04-11

build - 1.4.3
Ebuild name:

dev-python/build-1.4.3

Description

A simple, correct PEP517 package builder

Added to portage

2026-04-11

cachelib - 0.13.0-r1
Ebuild name:

dev-python/cachelib-0.13.0-r1

Description

Collection of cache libraries in the same API interface. Extracted fr

Added to portage

2026-04-11

chrome-binary-plugins - 149.0.7779.3_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-149.0.7779.3_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-04-11

chromium - 148.0.7778.5
Ebuild name:

www-client/chromium-148.0.7778.5

Description

Open-source version of Google Chrome web browser

Added to portage

2026-04-11

curl - 8.20.0_rc1
Ebuild name:

net-misc/curl-8.20.0_rc1

Description

A Client that groks URLs

Added to portage

2026-04-11

diffoscope - 317
Ebuild name:

dev-util/diffoscope-317

Description

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

Added to portage

2026-04-11

fex-xtajit - 2604
Ebuild name:

app-emulation/fex-xtajit-2604

Description

A wine emulation dll for running x86 application on an arm64 host

Added to portage

2026-04-11

firecracker-bin - 1.14.4
Ebuild name:

app-emulation/firecracker-bin-1.14.4

Description

Secure and fast microVMs for serverless computing (static buil

Added to portage

2026-04-11

firecracker-bin - 1.15.1
Ebuild name:

app-emulation/firecracker-bin-1.15.1

Description

Secure and fast microVMs for serverless computing (static buil

Added to portage

2026-04-11

firejail - 0.9.80
Ebuild name:

sys-apps/firejail-0.9.80

Description

Security sandbox for any type of processes

Added to portage

2026-04-11

flask-caching - 2.3.1-r1
Ebuild name:

dev-python/flask-caching-2.3.1-r1

Description

Adds caching support to Flask applications

Added to portage

2026-04-11

flatpak - 1.16.6
Ebuild name:

sys-apps/flatpak-1.16.6

Description

Linux application sandboxing and distribution framework

Added to portage

2026-04-11

fwupd - 2.0.20
Ebuild name:

sys-apps/fwupd-2.0.20

Description

Aims to make updating firmware on Linux automatic, safe and reliable

Added to portage

2026-04-11

gcc - 13.4.1_p20260409
Ebuild name:

sys-devel/gcc-13.4.1_p20260409

Description

The GNU Compiler Collection

Added to portage

2026-04-11

gcc - 14.3.1_p20260410
Ebuild name:

sys-devel/gcc-14.3.1_p20260410

Description

The GNU Compiler Collection

Added to portage

2026-04-11

go - 1.25.9
Ebuild name:

dev-lang/go-1.25.9

Description

A concurrent garbage collected and typesafe programming language

Added to portage

2026-04-11

go - 1.26.2
Ebuild name:

dev-lang/go-1.26.2

Description

A concurrent garbage collected and typesafe programming language

Added to portage

2026-04-11

google-chrome-unstable - 149.0.7779.3
Ebuild name:

www-client/google-chrome-unstable-149.0.7779.3

Description

The web browser from Google

Added to portage

2026-04-11

gpgme - 2.0.24-r4
Ebuild name:

dev-ruby/gpgme-2.0.24-r4

Description

Ruby language binding for GnuPG Made Easy

Added to portage

2026-04-11

gpyutils - 0.15.4
Ebuild name:

app-portage/gpyutils-0.15.4

Description

Utitilies for maintaining Python packages

Added to portage

2026-04-11

gsm - 1.0.24
Ebuild name:

media-sound/gsm-1.0.24

Description

Lossy speech compression library and tool

Added to portage

2026-04-11

hiera-eyaml-gpg - 0.7.4-r2
Ebuild name:

dev-ruby/hiera-eyaml-gpg-0.7.4-r2

Description

A GPG backend for hiera-eyaml

Added to portage

2026-04-11

inline-snapshot - 0.32.6
Ebuild name:

dev-python/inline-snapshot-0.32.6

Description

Create and update inline snapshots in your Python tests

Added to portage

2026-04-11

inspircd - 4.9.0
Ebuild name:

net-irc/inspircd-4.9.0

Description

Inspire IRCd - The Stable, High-Performance Modular IRCd

Added to portage

2026-04-11

iperf - 3.21
Ebuild name:

net-misc/iperf-3.21

Description

TCP, UDP, and SCTP network bandwidth measurement tool

Added to portage

2026-04-11

jenkins-bin - 2.541.3
Ebuild name:

dev-util/jenkins-bin-2.541.3

Description

The leading open source automation server

Added to portage

2026-04-11

jenkins-bin - 2.558
Ebuild name:

dev-util/jenkins-bin-2.558

Description

The leading open source automation server

Added to portage

2026-04-11

josm-bin - 19555
Ebuild name:

sci-geosciences/josm-bin-19555

Description

Java-based editor for the OpenStreetMap project

Added to portage

2026-04-11

kcoreaddons - 6.23.0-r1
Ebuild name:

kde-frameworks/kcoreaddons-6.23.0-r1

Description

Framework for solving common problems such as caching, randomi

Added to portage

2026-04-11

kcoreaddons - 6.24.0-r1
Ebuild name:

kde-frameworks/kcoreaddons-6.24.0-r1

Description

Framework for solving common problems such as caching, randomi

Added to portage

2026-04-11

leancrypto - 1.7.2
Ebuild name:

dev-libs/leancrypto-1.7.2

Description

Lean cryptographic library usable for bare-metal environments

Added to portage

2026-04-11

libcap - 2.78
Ebuild name:

sys-libs/libcap-2.78

Description

POSIX 1003.1e capabilities

Added to portage

2026-04-11

libcap-ng - 0.9.3
Ebuild name:

sys-libs/libcap-ng-0.9.3

Description

POSIX 1003.1e capabilities

Added to portage

2026-04-11

libproxy - 0.5.12-r1
Ebuild name:

net-libs/libproxy-0.5.12-r1

Description

Library for automatic proxy configuration management

Added to portage

2026-04-11

libsodium - 1.0.22
Ebuild name:

dev-libs/libsodium-1.0.22

Description

Portable fork of NaCl, a higher-level cryptographic library

Added to portage

2026-04-11

libxmlb - 0.3.25
Ebuild name:

dev-libs/libxmlb-0.3.25

Description

Library to help create and query binary XML blobs

Added to portage

2026-04-11

linux-firmware - 20260410
Ebuild name:

sys-kernel/linux-firmware-20260410

Description

Linux firmware files

Added to portage

2026-04-11

lsof - 4.99.6
Ebuild name:

sys-process/lsof-4.99.6

Description

Lists open files for running Unix processes

Added to portage

2026-04-11

mgorny-dev-scripts - 68
Ebuild name:

app-portage/mgorny-dev-scripts-68

Description

Handy scripts for ebuild development and more

Added to portage

2026-04-11

microsoft-edge - 147.0.3912.60
Ebuild name:

www-client/microsoft-edge-147.0.3912.60

Description

The web browser from Microsoft

Added to portage

2026-04-11

microsoft-edge-beta - 147.0.3912.60
Ebuild name:

www-client/microsoft-edge-beta-147.0.3912.60

Description

The web browser from Microsoft

Added to portage

2026-04-11

minitest - 5.15.0-r2
Ebuild name:

dev-ruby/minitest-5.15.0-r2

Description

minitest/unit is a small and fast replacement for ruby's huge and slow

Added to portage

2026-04-11

mpg123-el - 1.65
Ebuild name:

app-emacs/mpg123-el-1.65

Description

Emacs front-end to mpg123 audio player and OggVorbis audio player

Added to portage

2026-04-11

mu-cite - 8.1_p202011031127
Ebuild name:

app-emacs/mu-cite-8.1_p202011031127

Description

Message citation utilities for emacsen

Added to portage

2026-04-11

nfdump - 1.7.7
Ebuild name:

net-analyzer/nfdump-1.7.7

Description

A set of tools to collect and process netflow data

Added to portage

2026-04-11

nox - 2026.04.10
Ebuild name:

dev-python/nox-2026.04.10

Description

Flexible test automation for Python

Added to portage

2026-04-11

nuitka - 4.0.8
Ebuild name:

dev-python/nuitka-4.0.8

Description

Python to native compiler

Added to portage

2026-04-11

opcodes - 0.3.14-r3
Ebuild name:

dev-python/opcodes-0.3.14-r3

Description

Opcodes Project

Added to portage

2026-04-11

openssl - 4.0.0_beta1
Ebuild name:

dev-libs/openssl-4.0.0_beta1

Description

Robust, full-featured Open Source Toolkit for the Transport Layer Secu

Added to portage

2026-04-11

openssl - 4.0.9999
Ebuild name:

dev-libs/openssl-4.0.9999

Description

Robust, full-featured Open Source Toolkit for the Transport Layer Securit

Added to portage

2026-04-11

opera-developer - 131.0.5863.0
Ebuild name:

www-client/opera-developer-131.0.5863.0

Description

A fast and secure web browser

Added to portage

2026-04-11

php - 8.4.20
Ebuild name:

dev-lang/php-8.4.20

Description

The PHP language runtime engine

Added to portage

2026-04-11

php - 8.5.5
Ebuild name:

dev-lang/php-8.5.5

Description

The PHP language runtime engine

Added to portage

2026-04-11

plex-media-server - 1.43.1.10611
Ebuild name:

media-tv/plex-media-server-1.43.1.10611

Description

Free media library that is intended for use with a plex cli

Added to portage

2026-04-11

postfix - 3.12_pre20260410
Ebuild name:

mail-mta/postfix-3.12_pre20260410

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2026-04-11

prismlauncher - 11.0.0
Ebuild name:

games-action/prismlauncher-11.0.0

Description

Custom, open source Minecraft launcher

Added to portage

2026-04-11

pulseaudio-daemon - 17.0-r2
Ebuild name:

media-sound/pulseaudio-daemon-17.0-r2

Description

Daemon component of PulseAudio (networked sound server)

Added to portage

2026-04-11

pyghmi - 1.6.15
Ebuild name:

dev-python/pyghmi-1.6.15

Description

A pure python implementation of IPMI protocol

Added to portage

2026-04-11

python-multipart - 0.0.25
Ebuild name:

dev-python/python-multipart-0.0.25

Description

A streaming multipart parser for Python

Added to portage

2026-04-11

qmmp - 2.3.2
Ebuild name:

media-sound/qmmp-2.3.2

Description

Qt-based audio player with winamp/xmms skins support

Added to portage

2026-04-11

qtawesome - 1.4.2
Ebuild name:

dev-python/qtawesome-1.4.2

Description

Enables iconic fonts such as Font Awesome in PyQt

Added to portage

2026-04-11

radicale - 3.7.0
Ebuild name:

www-apps/radicale-3.7.0

Description

A simple CalDAV calendar server

Added to portage

2026-04-11

rich - 14.3.4
Ebuild name:

dev-python/rich-14.3.4

Description

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

Added to portage

2026-04-11

rofi-calc - 2.5.1
Ebuild name:

x11-misc/rofi-calc-2.5.1

Description

Do live calculations in rofi

Added to portage

2026-04-11

rqlite - 9.4.1
Ebuild name:

dev-db/rqlite-9.4.1

Description

Replicated SQLite using the Raft consensus protocol

Added to portage

2026-04-11

ruby - 3.2.11
Ebuild name:

dev-lang/ruby-3.2.11

Description

An object-oriented scripting language

Added to portage

2026-04-11

ruby - 3.3.11
Ebuild name:

dev-lang/ruby-3.3.11

Description

An object-oriented scripting language

Added to portage

2026-04-11

ruby - 3.4.9
Ebuild name:

dev-lang/ruby-3.4.9

Description

An object-oriented scripting language

Added to portage

2026-04-11

ruby - 4.0.2
Ebuild name:

dev-lang/ruby-4.0.2

Description

An object-oriented scripting language

Added to portage

2026-04-11

sandbox - 2.47
Ebuild name:

sys-apps/sandbox-2.47

Description

sandbox'd LD_PRELOAD hack

Added to portage

2026-04-11

sasquatch - 4.5.1.6
Ebuild name:

app-arch/sasquatch-4.5.1.6

Description

An extended version of sasquashfs-tools

Added to portage

2026-04-11

sed - 4.9_p20260411
Ebuild name:

sys-apps/sed-4.9_p20260411

Description

Super-useful stream editor

Added to portage

2026-04-11

selenium - 4.43.0
Ebuild name:

dev-python/selenium-4.43.0

Description

Python language binding for Selenium Remote Control

Added to portage

2026-04-11

selenium-manager - 4.43.0
Ebuild name:

dev-util/selenium-manager-4.43.0

Description

CLI tool that manages the browser/driver infrastructure required b

Added to portage

2026-04-11

streamlink - 8.3.0
Ebuild name:

net-misc/streamlink-8.3.0

Description

CLI for extracting streams from websites to a video player of your choice

Added to portage

2026-04-11

stunnel - 5.78
Ebuild name:

net-misc/stunnel-5.78

Description

TLS/SSL - Port Wrapper

Added to portage

2026-04-11

tiled - 1.12.0
Ebuild name:

dev-games/tiled-1.12.0

Description

A general purpose tile map editor

Added to portage

2026-04-11

tvision - 2.2.3-r1
Ebuild name:

dev-libs/tvision-2.2.3-r1

Description

Text User Interface that implements the well known CUA widgets

Added to portage

2026-04-11

unicode-segmentation-rs - 0.2.4
Ebuild name:

dev-python/unicode-segmentation-rs-0.2.4

Description

Unicode segmentation and width for Python using Rust

Added to portage

2026-04-11

uswid - 0.6.0
Ebuild name:

sys-apps/uswid-0.6.0

Description

Pure-Python library and CLI tool for processing SBoM metadata

Added to portage

2026-04-11

vanilla-sources - 6.1.168
Ebuild name:

sys-kernel/vanilla-sources-6.1.168

Description

Full sources for the Linux kernel

Added to portage

2026-04-11

vanilla-sources - 6.12.81
Ebuild name:

sys-kernel/vanilla-sources-6.12.81

Description

Full sources for the Linux kernel

Added to portage

2026-04-11

vanilla-sources - 6.18.22
Ebuild name:

sys-kernel/vanilla-sources-6.18.22

Description

Full sources for the Linux kernel

Added to portage

2026-04-11

vanilla-sources - 6.19.12
Ebuild name:

sys-kernel/vanilla-sources-6.19.12

Description

Full sources for the Linux kernel

Added to portage

2026-04-11

vanilla-sources - 6.6.134
Ebuild name:

sys-kernel/vanilla-sources-6.6.134

Description

Full sources for the Linux kernel

Added to portage

2026-04-11

vivaldi - 7.9.3970.50
Ebuild name:

www-client/vivaldi-7.9.3970.50

Description

A browser for our friends

Added to portage

2026-04-11

vivaldi-snapshot - 7.10.4001.3
Ebuild name:

www-client/vivaldi-snapshot-7.10.4001.3

Description

A browser for our friends

Added to portage

2026-04-11

wrapt - 2.2.0_rc4
Ebuild name:

dev-python/wrapt-2.2.0_rc4

Description

Module for decorators, wrappers and monkey patching

Added to portage

2026-04-11

xdg-dbus-proxy - 0.1.7
Ebuild name:

sys-apps/xdg-dbus-proxy-0.1.7

Description

Filtering proxy for D-Bus connections

Added to portage

2026-04-11

xdg-desktop-portal - 1.20.4-r1
Ebuild name:

sys-apps/xdg-desktop-portal-1.20.4-r1

Description

Desktop integration portal

Added to portage

2026-04-11

xdg-user-dirs - 0.20
Ebuild name:

x11-misc/xdg-user-dirs-0.20

Description

Tool to help manage 'well known' user directories

Added to portage

2026-04-11

zope-configuration - 7.1
Ebuild name:

dev-python/zope-configuration-7.1

Description

Zope Configuration Architecture

Added to portage

2026-04-11

zope-interface - 8.3
Ebuild name:

dev-python/zope-interface-8.3

Description

Interfaces for Python

Added to portage

2026-04-11

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