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:

86072

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.5 (69 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-06-20
xl2tpd - 1.3.20-r1
Ebuild name:

net-dialup/xl2tpd-1.3.20-r1

Description

A modern version of the Layer 2 Tunneling Protocol (L2TP) daemon

Added to portage

2026-06-20

2026-06-19
aml - 1.0.0
Ebuild name:

dev-libs/aml-1.0.0

Description

Event timer executor loop

Added to portage

2026-06-19

android-file-transfer-linux - 4.5-r1
Ebuild name:

sys-fs/android-file-transfer-linux-4.5-r1

Description

Android File Transfer for Linux

Added to portage

2026-06-19

asterisk - 20.20.0
Ebuild name:

net-misc/asterisk-20.20.0

Description

Asterisk A Modular Open Source PBX System

Added to portage

2026-06-19

asterisk - 22.10.0
Ebuild name:

net-misc/asterisk-22.10.0

Description

Asterisk A Modular Open Source PBX System

Added to portage

2026-06-19

asterisk - 23.4.0
Ebuild name:

net-misc/asterisk-23.4.0

Description

Asterisk A Modular Open Source PBX System

Added to portage

2026-06-19

awscli - 1.45.33
Ebuild name:

app-admin/awscli-1.45.33

Description

Universal Command Line Environment for AWS

Added to portage

2026-06-19

boltons - 26.0.0
Ebuild name:

dev-python/boltons-26.0.0

Description

Pure-python utilities in the same spirit as the standard library

Added to portage

2026-06-19

boost - 1.90.0-r2
Ebuild name:

dev-libs/boost-1.90.0-r2

Description

Boost Libraries for C++

Added to portage

2026-06-19

boost - 1.91.0-r1
Ebuild name:

dev-libs/boost-1.91.0-r1

Description

Boost Libraries for C++

Added to portage

2026-06-19

boto3 - 1.43.33
Ebuild name:

dev-python/boto3-1.43.33

Description

The AWS SDK for Python

Added to portage

2026-06-19

botocore - 1.43.33
Ebuild name:

dev-python/botocore-1.43.33

Description

Low-level, data-driven core of boto 3

Added to portage

2026-06-19

bpf-toolchain - 16.1.0_p2
Ebuild name:

sys-devel/bpf-toolchain-16.1.0_p2

Description

All-in-one bpf toolchain for building DTrace and systemd without

Added to portage

2026-06-19

cache_tab - 1.0.34
Ebuild name:

dev-erlang/cache_tab-1.0.34

Description

In-memory cache Erlang and Elixir library

Added to portage

2026-06-19

curl - 8.20.0
Ebuild name:

net-misc/curl-8.20.0

Description

A Client that groks URLs

Added to portage

2026-06-19

discord - 1.0.143
Ebuild name:

net-im/discord-1.0.143

Description

All-in-one voice and text chat for gamers

Added to portage

2026-06-19

dist-kernel - 6.1.176
Ebuild name:

virtual/dist-kernel-6.1.176

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-06-19

dist-kernel - 6.12.94
Ebuild name:

virtual/dist-kernel-6.12.94

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-06-19

dist-kernel - 6.18.36
Ebuild name:

virtual/dist-kernel-6.18.36

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-06-19

dist-kernel - 6.6.143
Ebuild name:

virtual/dist-kernel-6.6.143

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-06-19

dist-kernel - 7.0.13
Ebuild name:

virtual/dist-kernel-7.0.13

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-06-19

django-debug-toolbar - 7.0.0
Ebuild name:

dev-python/django-debug-toolbar-7.0.0

Description

A configurable set of panels that display various debug infor

Added to portage

2026-06-19

drupal - 10.5.12
Ebuild name:

www-apps/drupal-10.5.12

Description

PHP-based open-source platform and content management system

Added to portage

2026-06-19

drupal - 10.6.11
Ebuild name:

www-apps/drupal-10.6.11

Description

PHP-based open-source platform and content management system

Added to portage

2026-06-19

drupal - 11.2.14
Ebuild name:

www-apps/drupal-11.2.14

Description

PHP-based open-source platform and content management system

Added to portage

2026-06-19

drupal - 11.3.12
Ebuild name:

www-apps/drupal-11.3.12

Description

PHP-based open-source platform and content management system

Added to portage

2026-06-19

eimp - 1.0.27
Ebuild name:

dev-erlang/eimp-1.0.27

Description

Erlang Image Manipulation Process

Added to portage

2026-06-19

ejabberd - 26.04
Ebuild name:

net-im/ejabberd-26.04

Description

Robust, scalable and extensible XMPP server

Added to portage

2026-06-19

eredis - 1.7.1
Ebuild name:

dev-erlang/eredis-1.7.1

Description

Erlang Redis client

Added to portage

2026-06-19

esip - 1.0.60
Ebuild name:

dev-erlang/esip-1.0.60

Description

ProcessOne SIP server component

Added to portage

2026-06-19

exfatprogs - 1.4.2
Ebuild name:

sys-fs/exfatprogs-1.4.2

Description

Userspace utilities for the exFAT filesystem

Added to portage

2026-06-19

ezlib - 1.0.16
Ebuild name:

dev-erlang/ezlib-1.0.16

Description

Native zlib driver for Erlang and Elixir

Added to portage

2026-06-19

fast_tls - 1.1.26
Ebuild name:

dev-erlang/fast_tls-1.1.26

Description

TLS/SSL native driver for Erlang and Elixir

Added to portage

2026-06-19

fast_xml - 1.1.60
Ebuild name:

dev-erlang/fast_xml-1.1.60

Description

Fast Expat based Erlang XML parsing library

Added to portage

2026-06-19

fast_yaml - 1.0.40
Ebuild name:

dev-erlang/fast_yaml-1.0.40

Description

Fast Yaml native library for Erlang and Elixir

Added to portage

2026-06-19

fuse - 1.8.0
Ebuild name:

app-emulation/fuse-1.8.0

Description

Free Unix Spectrum Emulator by Philip Kendall

Added to portage

2026-06-19

fuse-utils - 1.4.5
Ebuild name:

app-emulation/fuse-utils-1.4.5

Description

Utils for the Free Unix Spectrum Emulator by Philip Kendall

Added to portage

2026-06-19

gcc - 13.4.1_p20260617
Ebuild name:

sys-devel/gcc-13.4.1_p20260617

Description

The GNU Compiler Collection

Added to portage

2026-06-19

gcc - 14.3.1_p20260618
Ebuild name:

sys-devel/gcc-14.3.1_p20260618

Description

The GNU Compiler Collection

Added to portage

2026-06-19

gentoo-kernel - 6.1.176
Ebuild name:

sys-kernel/gentoo-kernel-6.1.176

Description

Linux kernel built with Gentoo patches

Added to portage

2026-06-19

gentoo-kernel - 6.12.94
Ebuild name:

sys-kernel/gentoo-kernel-6.12.94

Description

Linux kernel built with Gentoo patches

Added to portage

2026-06-19

gentoo-kernel - 6.18.36
Ebuild name:

sys-kernel/gentoo-kernel-6.18.36

Description

Linux kernel built with Gentoo patches

Added to portage

2026-06-19

gentoo-kernel - 6.6.143
Ebuild name:

sys-kernel/gentoo-kernel-6.6.143

Description

Linux kernel built with Gentoo patches

Added to portage

2026-06-19

gentoo-kernel - 7.0.13
Ebuild name:

sys-kernel/gentoo-kernel-7.0.13

Description

Linux kernel built with Gentoo patches

Added to portage

2026-06-19

gentoo-kernel-bin - 6.1.176
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.176

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-06-19

gentoo-kernel-bin - 6.12.94
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.94

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-06-19

gentoo-kernel-bin - 6.18.36
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.36

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-06-19

gentoo-kernel-bin - 6.6.143
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.143

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-06-19

gentoo-kernel-bin - 7.0.13
Ebuild name:

sys-kernel/gentoo-kernel-bin-7.0.13

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-06-19

gentoo-kernel-modprep - 7.0.13
Ebuild name:

sys-kernel/gentoo-kernel-modprep-7.0.13

Description

Minimal subset of gentoo-kernel-bin for building modules, f

Added to portage

2026-06-19

gentoo-sources - 6.12.94
Ebuild name:

sys-kernel/gentoo-sources-6.12.94

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-06-19

gentoo-sources - 6.18.36
Ebuild name:

sys-kernel/gentoo-sources-6.18.36

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-06-19

gentoo-sources - 6.6.143
Ebuild name:

sys-kernel/gentoo-sources-6.6.143

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-06-19

gentoo-sources - 7.0.13
Ebuild name:

sys-kernel/gentoo-sources-7.0.13

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-06-19

gentoo-sources - 7.1.1
Ebuild name:

sys-kernel/gentoo-sources-7.1.1

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-06-19

godot - 4.7
Ebuild name:

dev-games/godot-4.7

Description

Multi-platform 2D and 3D game engine with a feature-rich editor

Added to portage

2026-06-19

hcloud - 2.22.0
Ebuild name:

dev-python/hcloud-2.22.0

Description

Official Hetzner Cloud python library

Added to portage

2026-06-19

hypothesis - 6.155.5
Ebuild name:

dev-python/hypothesis-6.155.5

Description

A library for property based testing

Added to portage

2026-06-19

ibus - 1.5.34
Ebuild name:

app-i18n/ibus-1.5.34

Description

Intelligent Input Bus for Linux / Unix OS

Added to portage

2026-06-19

idna - 7.1.0
Ebuild name:

dev-erlang/idna-7.1.0

Description

Erlang IDNA implementation

Added to portage

2026-06-19

jc - 1.25.7
Ebuild name:

dev-python/jc-1.25.7

Description

Converts the output of popular command-line tools and file-types to JSON

Added to portage

2026-06-19

jose - 1.11.12
Ebuild name:

dev-erlang/jose-1.11.12

Description

JSON Object Signing and Encryption (JOSE) for Erlang and Elixir

Added to portage

2026-06-19

kwin - 6.7.0-r1
Ebuild name:

kde-plasma/kwin-6.7.0-r1

Description

Flexible, composited Window Manager for windowing systems on Linux

Added to portage

2026-06-19

libspectrum - 1.6.1
Ebuild name:

app-emulation/libspectrum-1.6.1

Description

Spectrum emulation library

Added to portage

2026-06-19

linux-headers - 7.0
Ebuild name:

sys-kernel/linux-headers-7.0

Description

Added to portage

2026-06-19

linux-headers - 7.1
Ebuild name:

sys-kernel/linux-headers-7.1

Description

Added to portage

2026-06-19

llhttp - 9.4.2
Ebuild name:

net-libs/llhttp-9.4.2

Description

Port of http_parser to llparse

Added to portage

2026-06-19

magit - 9999
Ebuild name:

app-emacs/magit-9999

Description

A Git porcelain inside Emacs

Added to portage

2026-06-19

magit-popup - 2.13.3-r1
Ebuild name:

app-emacs/magit-popup-2.13.3-r1

Description

Define prefix-infix-suffix command combos

Added to portage

2026-06-19

mattermost-desktop-bin - 5.13.7
Ebuild name:

net-im/mattermost-desktop-bin-5.13.7

Description

Mattermost Desktop application

Added to portage

2026-06-19

mattermost-desktop-bin - 6.2.1
Ebuild name:

net-im/mattermost-desktop-bin-6.2.1

Description

Mattermost Desktop application

Added to portage

2026-06-19

maturin - 1.14.1
Ebuild name:

dev-util/maturin-1.14.1

Description

Build and publish crates with pyo3, rust-cpython and cffi bindings

Added to portage

2026-06-19

mgorny-dev-scripts - 79
Ebuild name:

app-portage/mgorny-dev-scripts-79

Description

Handy scripts for ebuild development and more

Added to portage

2026-06-19

mgorny-dev-scripts - 80
Ebuild name:

app-portage/mgorny-dev-scripts-80

Description

Handy scripts for ebuild development and more

Added to portage

2026-06-19

mqtree - 1.0.20
Ebuild name:

dev-erlang/mqtree-1.0.20

Description

Index tree for MQTT topic filters

Added to portage

2026-06-19

msgpack - 1.2.1
Ebuild name:

dev-python/msgpack-1.2.1

Description

MessagePack (de)serializer for Python

Added to portage

2026-06-19

mycli - 1.74.1
Ebuild name:

dev-db/mycli-1.74.1

Description

CLI for MySQL Database with auto-completion and syntax highlighting

Added to portage

2026-06-19

mysql - 8.0.46-r1
Ebuild name:

dev-db/mysql-8.0.46-r1

Description

A fast, multi-threaded, multi-user SQL database server

Added to portage

2026-06-19

mysql - 8.4.10
Ebuild name:

dev-db/mysql-8.4.10

Description

Fast, multi-threaded, multi-user SQL database server

Added to portage

2026-06-19

nanobind - 2.13.0
Ebuild name:

dev-python/nanobind-2.13.0

Description

Tiny and efficient C++/Python bindings

Added to portage

2026-06-19

neatvnc - 1.0.0
Ebuild name:

gui-libs/neatvnc-1.0.0

Description

Liberally licensed VNC server library with a clean interface

Added to portage

2026-06-19

nginx - 1.30.3
Ebuild name:

www-servers/nginx-1.30.3

Description

Added to portage

2026-06-19

nginx - 1.31.2
Ebuild name:

www-servers/nginx-1.31.2

Description

Added to portage

2026-06-19

nzbget - 26.2
Ebuild name:

net-nntp/nzbget-26.2

Description

A command-line based binary newsgrabber supporting .nzb files

Added to portage

2026-06-19

openpgp-keys-mdroth - 20260619
Ebuild name:

sec-keys/openpgp-keys-mdroth-20260619

Description

OpenPGP key used by Michael Roth (mdroth)

Added to portage

2026-06-19

openpgp-keys-openssl - 20260617-r1
Ebuild name:

sec-keys/openpgp-keys-openssl-20260617-r1

Description

OpenPGP keys used by OpenSSL

Added to portage

2026-06-19

p1_acme - 1.0.31
Ebuild name:

dev-erlang/p1_acme-1.0.31

Description

ACME client library for Erlang

Added to portage

2026-06-19

p1_mysql - 1.0.28
Ebuild name:

dev-erlang/p1_mysql-1.0.28

Description

Pure Erlang MySQL driver

Added to portage

2026-06-19

p1_pgsql - 1.1.41
Ebuild name:

dev-erlang/p1_pgsql-1.1.41

Description

Pure Erlang PostgreSQL driver

Added to portage

2026-06-19

p1_utils - 1.0.29
Ebuild name:

dev-erlang/p1_utils-1.0.29

Description

Erlang utility modules from ProcessOne

Added to portage

2026-06-19

pecl-parallel - 1.2.14
Ebuild name:

dev-php/pecl-parallel-1.2.14

Description

A succint parallel concurrency API for PHP

Added to portage

2026-06-19

pecl-raphf - 2.0.2
Ebuild name:

dev-php/pecl-raphf-2.0.2

Description

A reusable, persistent handle and resource factory API

Added to portage

2026-06-19

pkgcheck - 0.10.40
Ebuild name:

dev-util/pkgcheck-0.10.40

Description

pkgcore-based QA utility for ebuild repos

Added to portage

2026-06-19

pkgcore - 0.12.34
Ebuild name:

sys-apps/pkgcore-0.12.34

Description

a framework for package management

Added to portage

2026-06-19

pygal - 3.1.3
Ebuild name:

dev-python/pygal-3.1.3

Description

A python SVG charts generator

Added to portage

2026-06-19

qemu - 10.0.10
Ebuild name:

app-emulation/qemu-10.0.10

Description

QEMU + Kernel-based Virtual Machine userland tools

Added to portage

2026-06-19

qemu - 10.2.3
Ebuild name:

app-emulation/qemu-10.2.3

Description

QEMU + Kernel-based Virtual Machine userland tools

Added to portage

2026-06-19

rpi-eeprom - 28.27_p1
Ebuild name:

dev-embedded/rpi-eeprom-28.27_p1

Description

Updater for Raspberry Pi 4/5 bootloader and the VL805 USB controll

Added to portage

2026-06-19

signal-desktop-bin - 8.15.0
Ebuild name:

net-im/signal-desktop-bin-8.15.0

Description

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

Added to portage

2026-06-19

snakeoil - 0.11.1
Ebuild name:

dev-python/snakeoil-0.11.1

Description

misc common functionality and useful optimizations

Added to portage

2026-06-19

stringprep - 1.0.34
Ebuild name:

dev-erlang/stringprep-1.0.34

Description

Fast Stringprep implementation for Erlang and Elixir

Added to portage

2026-06-19

stun - 1.2.22
Ebuild name:

dev-erlang/stun-1.2.22

Description

STUN and TURN library for Erlang and Elixir

Added to portage

2026-06-19

svglib - 2.0.2
Ebuild name:

dev-python/svglib-2.0.2

Description

Pure-Python library for reading and converting SVG

Added to portage

2026-06-19

uv - 0.11.22
Ebuild name:

dev-python/uv-0.11.22

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-06-19

uv-build - 0.11.22
Ebuild name:

dev-python/uv-build-0.11.22

Description

PEP517 uv build backend

Added to portage

2026-06-19

vanilla-kernel - 6.1.176
Ebuild name:

sys-kernel/vanilla-kernel-6.1.176

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-06-19

vanilla-kernel - 6.12.94
Ebuild name:

sys-kernel/vanilla-kernel-6.12.94

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-06-19

vanilla-kernel - 6.18.36
Ebuild name:

sys-kernel/vanilla-kernel-6.18.36

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-06-19

vanilla-kernel - 6.6.143
Ebuild name:

sys-kernel/vanilla-kernel-6.6.143

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-06-19

vanilla-kernel - 7.0.13
Ebuild name:

sys-kernel/vanilla-kernel-7.0.13

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-06-19

vanilla-sources - 5.10.259
Ebuild name:

sys-kernel/vanilla-sources-5.10.259

Description

Full sources for the Linux kernel

Added to portage

2026-06-19

vanilla-sources - 5.15.210
Ebuild name:

sys-kernel/vanilla-sources-5.15.210

Description

Full sources for the Linux kernel

Added to portage

2026-06-19

vanilla-sources - 6.1.176
Ebuild name:

sys-kernel/vanilla-sources-6.1.176

Description

Full sources for the Linux kernel

Added to portage

2026-06-19

vanilla-sources - 6.18.36
Ebuild name:

sys-kernel/vanilla-sources-6.18.36

Description

Full sources for the Linux kernel

Added to portage

2026-06-19

vanilla-sources - 6.6.143
Ebuild name:

sys-kernel/vanilla-sources-6.6.143

Description

Full sources for the Linux kernel

Added to portage

2026-06-19

vanilla-sources - 7.0.13
Ebuild name:

sys-kernel/vanilla-sources-7.0.13

Description

Full sources for the Linux kernel

Added to portage

2026-06-19

vanilla-sources - 7.1.1
Ebuild name:

sys-kernel/vanilla-sources-7.1.1

Description

Full sources for the Linux kernel

Added to portage

2026-06-19

virtualbox - 7.2.10
Ebuild name:

app-emulation/virtualbox-7.2.10

Description

Family of powerful x86 virtualization products for enterprise and h

Added to portage

2026-06-19

virtualbox-additions - 7.2.10
Ebuild name:

app-emulation/virtualbox-additions-7.2.10

Description

CD image containing guest additions for VirtualBox

Added to portage

2026-06-19

virtualbox-extpack-oracle - 7.2.10
Ebuild name:

app-emulation/virtualbox-extpack-oracle-7.2.10

Description

PUEL extensions for VirtualBox

Added to portage

2026-06-19

virtualbox-guest-additions - 7.2.10
Ebuild name:

app-emulation/virtualbox-guest-additions-7.2.10

Description

VirtualBox kernel modules and user-space tools for

Added to portage

2026-06-19

virtualbox-guest-modules - 7.2.10
Ebuild name:

app-emulation/virtualbox-guest-modules-7.2.10

Description

Kernel Modules for Virtualbox Guest Additions

Added to portage

2026-06-19

virtualbox-kvm - 7.2.10_pre20260201
Ebuild name:

app-emulation/virtualbox-kvm-7.2.10_pre20260201

Description

Family of powerful x86 virtualization products for

Added to portage

2026-06-19

virtualbox-modules - 7.2.10
Ebuild name:

app-emulation/virtualbox-modules-7.2.10

Description

Kernel Modules for Virtualbox

Added to portage

2026-06-19

wayvnc - 0.10.0
Ebuild name:

gui-apps/wayvnc-0.10.0

Description

VNC server for wlroots based Wayland compositors

Added to portage

2026-06-19

weston - 15.0.91
Ebuild name:

dev-libs/weston-15.0.91

Description

Wayland reference compositor

Added to portage

2026-06-19

wireplumber - 0.5.15
Ebuild name:

media-video/wireplumber-0.5.15

Description

Replacement for pipewire-media-session

Added to portage

2026-06-19

xmpp - 1.13.3
Ebuild name:

dev-erlang/xmpp-1.13.3

Description

XMPP parsing and serialization library on top of Fast XML

Added to portage

2026-06-19

yconf - 1.0.23
Ebuild name:

dev-erlang/yconf-1.0.23

Description

YAML configuration processor

Added to portage

2026-06-19

zeep - 4.3.3
Ebuild name:

dev-python/zeep-4.3.3

Description

A modern/fast Python SOAP client based on lxml / requests

Added to portage

2026-06-19

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