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:

85231

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-05-19
awscli - 1.45.10
Ebuild name:

app-admin/awscli-1.45.10

Description

Universal Command Line Environment for AWS

Added to portage

2026-05-19

black - 26.5.1
Ebuild name:

dev-python/black-26.5.1

Description

The uncompromising Python code formatter

Added to portage

2026-05-19

boto3 - 1.43.10
Ebuild name:

dev-python/boto3-1.43.10

Description

The AWS SDK for Python

Added to portage

2026-05-19

botocore - 1.43.10
Ebuild name:

dev-python/botocore-1.43.10

Description

Low-level, data-driven core of boto 3

Added to portage

2026-05-19

cachetools - 7.1.3
Ebuild name:

dev-python/cachetools-7.1.3

Description

Extensible memoizing collections and decorators

Added to portage

2026-05-19

clojure - 1.12.5
Ebuild name:

dev-lang/clojure-1.12.5

Description

General-purpose programming language with an emphasis on functional program

Added to portage

2026-05-19

closure-compiler-bin - 20260513
Ebuild name:

dev-lang/closure-compiler-bin-20260513

Description

JavaScript optimizing compiler

Added to portage

2026-05-19

consoleet-utils - 1.11
Ebuild name:

app-misc/consoleet-utils-1.11

Description

Set of utilities for manipulating terminal fonts and colors

Added to portage

2026-05-19

crystal - 1.20.2
Ebuild name:

dev-lang/crystal-1.20.2

Description

The Crystal Programming Language

Added to portage

2026-05-19

cxxtools - 3.0-r4
Ebuild name:

dev-libs/cxxtools-3.0-r4

Description

Collection of general purpose C++-classes

Added to portage

2026-05-19

decorator - 5.3.1
Ebuild name:

dev-python/decorator-5.3.1

Description

Simplifies the usage of decorators for the average programmer

Added to portage

2026-05-19

devcontainer - 0.87.0
Ebuild name:

app-containers/devcontainer-0.87.0

Description

Reference implementation of the Development Containers specifica

Added to portage

2026-05-19

fable - 4.29.0-r2
Ebuild name:

dev-dotnet/fable-4.29.0-r2

Description

F to JavaScript, TypeScript, Python, Rust and Dart Compiler

Added to portage

2026-05-19

fable - 5.0.0-r2
Ebuild name:

dev-dotnet/fable-5.0.0-r2

Description

F to JavaScript, TypeScript, Python, Rust and Dart Compiler

Added to portage

2026-05-19

fish - 4.7.1
Ebuild name:

app-shells/fish-4.7.1

Description

Friendly Interactive SHell

Added to portage

2026-05-19

hypothesis - 6.152.8
Ebuild name:

dev-python/hypothesis-6.152.8

Description

A library for property based testing

Added to portage

2026-05-19

icalendar - 7.1.1
Ebuild name:

dev-python/icalendar-7.1.1

Description

RFC 5545 compatible parser and generator of iCalendar files

Added to portage

2026-05-19

jf - 1.0.0
Ebuild name:

app-misc/jf-1.0.0

Description

A small utility to safely format and print JSON objects in the commandline

Added to portage

2026-05-19

joplin-desktop - 3.7.1
Ebuild name:

app-office/joplin-desktop-3.7.1

Description

Secure note taking and to-do app with synchronization capabilities

Added to portage

2026-05-19

libpqxx - 7.10.6
Ebuild name:

dev-libs/libpqxx-7.10.6

Description

Standard front-end for writing C++ programs that use PostgreSQL

Added to portage

2026-05-19

libpqxx - 7.10.7
Ebuild name:

dev-libs/libpqxx-7.10.7

Description

Standard front-end for writing C++ programs that use PostgreSQL

Added to portage

2026-05-19

libpqxx - 8.0.1
Ebuild name:

dev-libs/libpqxx-8.0.1

Description

Standard front-end for writing C++ programs that use PostgreSQL

Added to portage

2026-05-19

libtmux - 0.57.1
Ebuild name:

dev-python/libtmux-0.57.1

Description

Typed library that provides an ORM wrapper for tmux, a terminal multiplex

Added to portage

2026-05-19

lxml - 6.1.1
Ebuild name:

dev-python/lxml-6.1.1

Description

A Pythonic binding for the libxml2 and libxslt libraries

Added to portage

2026-05-19

moolticute - 1.03.0-r2
Ebuild name:

app-crypt/moolticute-1.03.0-r2

Description

Mooltipass crossplatform daemon/tools

Added to portage

2026-05-19

moolticute - 9999
Ebuild name:

app-crypt/moolticute-9999

Description

Mooltipass crossplatform daemon/tools

Added to portage

2026-05-19

mycli - 1.72.1
Ebuild name:

dev-db/mycli-1.72.1

Description

CLI for MySQL Database with auto-completion and syntax highlighting

Added to portage

2026-05-19

nasty - 0.6-r2
Ebuild name:

app-crypt/nasty-0.6-r2

Description

Proof-of-concept GPG passphrase recovery tool

Added to portage

2026-05-19

numpy - 2.4.6
Ebuild name:

dev-python/numpy-2.4.6

Description

Fast array and numerical python library

Added to portage

2026-05-19

openstacksdk - 4.13.0
Ebuild name:

dev-python/openstacksdk-4.13.0

Description

A collection of libraries for building applications to work with Ope

Added to portage

2026-05-19

oslo-config - 10.4.0
Ebuild name:

dev-python/oslo-config-10.4.0

Description

Oslo Configuration API

Added to portage

2026-05-19

oslo-context - 6.4.0
Ebuild name:

dev-python/oslo-context-6.4.0

Description

Helpers to maintain useful information about a request context

Added to portage

2026-05-19

oslo-i18n - 6.8.0
Ebuild name:

dev-python/oslo-i18n-6.8.0

Description

Oslo i18n library

Added to portage

2026-05-19

oslo-log - 8.2.0
Ebuild name:

dev-python/oslo-log-8.2.0

Description

OpenStack logging config library, configuration for all openstack project

Added to portage

2026-05-19

oslo-serialization - 5.10.0
Ebuild name:

dev-python/oslo-serialization-5.10.0

Description

Oslo Serialization library

Added to portage

2026-05-19

patool - 4.0.5
Ebuild name:

app-arch/patool-4.0.5

Description

Portable archive file manager

Added to portage

2026-05-19

python-ironicclient - 6.1.0
Ebuild name:

dev-python/python-ironicclient-6.1.0

Description

Python bindings for the Ironic API

Added to portage

2026-05-19

python-openstackclient - 10.0.0
Ebuild name:

dev-python/python-openstackclient-10.0.0

Description

A client for the OpenStack APIs

Added to portage

2026-05-19

requests-ratelimiter - 0.10.0
Ebuild name:

dev-python/requests-ratelimiter-0.10.0

Description

Rate-limiting for the requests library

Added to portage

2026-05-19

setuptools-gettext - 0.1.17
Ebuild name:

dev-python/setuptools-gettext-0.1.17

Description

Setuptools plugin for building mo files

Added to portage

2026-05-19

stevedore - 5.8.0
Ebuild name:

dev-python/stevedore-5.8.0

Description

Manage dynamic plugins for Python applications

Added to portage

2026-05-19

superqt - 0.8.2
Ebuild name:

dev-python/superqt-0.8.2

Description

Missing widgets and components for PyQt/PySide

Added to portage

2026-05-19

tuf - 7.0.0
Ebuild name:

dev-python/tuf-7.0.0

Description

A secure updater framework for Python

Added to portage

2026-05-19

types-docutils - 0.22.3.20260518
Ebuild name:

dev-python/types-docutils-0.22.3.20260518

Description

Typing stubs for docutils

Added to portage

2026-05-19

types-gdb - 16.3.0.20260518
Ebuild name:

dev-python/types-gdb-16.3.0.20260518

Description

Typing stubs for gdb

Added to portage

2026-05-19

types-psutil - 7.2.2.20260518
Ebuild name:

dev-python/types-psutil-7.2.2.20260518

Description

Typing stubs for psutil

Added to portage

2026-05-19

types-python-dateutil - 2.9.0.20260518
Ebuild name:

dev-python/types-python-dateutil-2.9.0.20260518

Description

Typing stubs for python-dateutil

Added to portage

2026-05-19

types-setuptools - 82.0.0.20260518
Ebuild name:

dev-python/types-setuptools-82.0.0.20260518

Description

Typing stubs for setuptools

Added to portage

2026-05-19

uv - 0.11.15
Ebuild name:

dev-python/uv-0.11.15

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-05-19

xmlsec - 1.3.11-r1
Ebuild name:

dev-libs/xmlsec-1.3.11-r1

Description

Command line tool for signing, verifying, encrypting and decrypting XML

Added to portage

2026-05-19

2026-05-18
RyzenAdj - 0.19.0
Ebuild name:

sys-power/RyzenAdj-0.19.0

Description

The power management tool for mobile and desktop Ryzen APUs

Added to portage

2026-05-18

apparmor - 4.1.7
Ebuild name:

sys-apps/apparmor-4.1.7

Description

Userspace utils and init scripts for the AppArmor application security syst

Added to portage

2026-05-18

apparmor-profiles - 4.1.7
Ebuild name:

sec-policy/apparmor-profiles-4.1.7

Description

A collection of profiles for the AppArmor application security s

Added to portage

2026-05-18

apparmor-utils - 4.1.7
Ebuild name:

sys-apps/apparmor-utils-4.1.7

Description

Additional userspace utils to assist with AppArmor profile management

Added to portage

2026-05-18

bird - 2.17.3-r1
Ebuild name:

net-misc/bird-2.17.3-r1

Description

A routing daemon implementing OSPF, RIPv2 & BGP for IPv4 & IPv6

Added to portage

2026-05-18

bird - 2.17.4
Ebuild name:

net-misc/bird-2.17.4

Description

A routing daemon implementing OSPF, RIPv2 & BGP for IPv4 & IPv6

Added to portage

2026-05-18

bird - 2.18.1
Ebuild name:

net-misc/bird-2.18.1

Description

A routing daemon implementing OSPF, RIPv2 & BGP for IPv4 & IPv6

Added to portage

2026-05-18

bird - 3.1.5-r1
Ebuild name:

net-misc/bird-3.1.5-r1

Description

A routing daemon implementing OSPF, RIPv2 & BGP for IPv4 & IPv6

Added to portage

2026-05-18

bird - 3.1.6
Ebuild name:

net-misc/bird-3.1.6

Description

A routing daemon implementing OSPF, RIPv2 & BGP for IPv4 & IPv6

Added to portage

2026-05-18

bird - 3.2.1
Ebuild name:

net-misc/bird-3.2.1

Description

A routing daemon implementing OSPF, RIPv2 & BGP for IPv4 & IPv6

Added to portage

2026-05-18

boost - 1.91.0
Ebuild name:

dev-libs/boost-1.91.0

Description

Boost Libraries for C++

Added to portage

2026-05-18

clog - 1.3.0-r2
Ebuild name:

app-admin/clog-1.3.0-r2

Description

Colorized log tail utility

Added to portage

2026-05-18

dbus-fast - 4.2.8
Ebuild name:

dev-python/dbus-fast-4.2.8

Description

A faster version of dbus-next

Added to portage

2026-05-18

dbus-fast - 4.3.0
Ebuild name:

dev-python/dbus-fast-4.3.0

Description

A faster version of dbus-next

Added to portage

2026-05-18

decorator - 5.3.0
Ebuild name:

dev-python/decorator-5.3.0

Description

Simplifies the usage of decorators for the average programmer

Added to portage

2026-05-18

dist-kernel - 5.10.256_p1
Ebuild name:

virtual/dist-kernel-5.10.256_p1

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-18

dist-kernel - 5.15.207_p1
Ebuild name:

virtual/dist-kernel-5.15.207_p1

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-18

dist-kernel - 6.1.173_p1
Ebuild name:

virtual/dist-kernel-6.1.173_p1

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-18

dist-kernel - 6.12.90
Ebuild name:

virtual/dist-kernel-6.12.90

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-18

dist-kernel - 6.18.32
Ebuild name:

virtual/dist-kernel-6.18.32

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-18

dist-kernel - 6.6.140
Ebuild name:

virtual/dist-kernel-6.6.140

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-18

dist-kernel - 7.0.9
Ebuild name:

virtual/dist-kernel-7.0.9

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-05-18

facter - 4.10.0-r1
Ebuild name:

dev-ruby/facter-4.10.0-r1

Description

A cross-platform ruby library for retrieving facts from operating systems

Added to portage

2026-05-18

firefox-bin - 151.0
Ebuild name:

www-client/firefox-bin-151.0

Description

Firefox Web Browser

Added to portage

2026-05-18

gcc - 17.0.0_p20260517
Ebuild name:

sys-devel/gcc-17.0.0_p20260517

Description

The GNU Compiler Collection

Added to portage

2026-05-18

genshi - 0.7.11
Ebuild name:

dev-python/genshi-0.7.11

Description

Python toolkit for stream-based generation of output for the web

Added to portage

2026-05-18

gentoo-kernel - 5.10.256_p1
Ebuild name:

sys-kernel/gentoo-kernel-5.10.256_p1

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-18

gentoo-kernel - 5.15.207_p1
Ebuild name:

sys-kernel/gentoo-kernel-5.15.207_p1

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-18

gentoo-kernel - 6.1.173_p1
Ebuild name:

sys-kernel/gentoo-kernel-6.1.173_p1

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-18

gentoo-kernel - 6.12.90
Ebuild name:

sys-kernel/gentoo-kernel-6.12.90

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-18

gentoo-kernel - 6.18.32
Ebuild name:

sys-kernel/gentoo-kernel-6.18.32

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-18

gentoo-kernel - 6.6.140
Ebuild name:

sys-kernel/gentoo-kernel-6.6.140

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-18

gentoo-kernel - 7.0.9
Ebuild name:

sys-kernel/gentoo-kernel-7.0.9

Description

Linux kernel built with Gentoo patches

Added to portage

2026-05-18

gentoo-kernel-bin - 5.10.256_p1
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.256_p1

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-18

gentoo-kernel-bin - 5.15.207_p1
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.207_p1

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-18

gentoo-kernel-bin - 6.1.173_p1
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.173_p1

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-18

gentoo-kernel-bin - 6.12.90
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.90

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-18

gentoo-kernel-bin - 6.18.32
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.32

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-18

gentoo-kernel-bin - 6.6.140
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.140

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-18

gentoo-kernel-bin - 7.0.9
Ebuild name:

sys-kernel/gentoo-kernel-bin-7.0.9

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-05-18

git-sources - 7.1_rc4
Ebuild name:

sys-kernel/git-sources-7.1_rc4

Description

The very latest -git version of the Linux kernel

Added to portage

2026-05-18

gnuradio - 3.10.12.0-r3
Ebuild name:

net-wireless/gnuradio-3.10.12.0-r3

Description

Toolkit that provides signal processing blocks to implement soft

Added to portage

2026-05-18

gpxsee - 16.7
Ebuild name:

sci-geosciences/gpxsee-16.7

Description

Viewer and analyzer that supports gpx, tcx, kml, fit, igc and nmea file

Added to portage

2026-05-18

gr-iqbal - 0.38.3-r1
Ebuild name:

net-wireless/gr-iqbal-0.38.3-r1

Description

gnuradio I/Q balancing

Added to portage

2026-05-18

hd-idle - 1.05-r5
Ebuild name:

sys-apps/hd-idle-1.05-r5

Description

Utility for spinning down hard disks after a period of idle time

Added to portage

2026-05-18

json-schema - 5.2.2
Ebuild name:

dev-ruby/json-schema-5.2.2

Description

Ruby JSON Schema Validator

Added to portage

2026-05-18

libapparmor - 4.1.7
Ebuild name:

sys-libs/libapparmor-4.1.7

Description

Library to support AppArmor userspace utilities

Added to portage

2026-05-18

libfido2 - 1.17.0
Ebuild name:

dev-libs/libfido2-1.17.0

Description

Provides library functionality for FIDO 2.0

Added to portage

2026-05-18

libredwg - 0.13.4
Ebuild name:

media-gfx/libredwg-0.13.4

Description

C library to handle DWG files

Added to portage

2026-05-18

lmod - 9.2.1
Ebuild name:

sys-cluster/lmod-9.2.1

Description

Environment Module System based on Lua

Added to portage

2026-05-18

mirrorselect - 2.6.4
Ebuild name:

app-portage/mirrorselect-2.6.4

Description

Tool to help select distfiles mirrors for Gentoo

Added to portage

2026-05-18

monkeysphere - 0.44-r2
Ebuild name:

app-crypt/monkeysphere-0.44-r2

Description

Leverage the OpenPGP web of trust for OpenSSH and Web authentication

Added to portage

2026-05-18

openfact - 5.6.1
Ebuild name:

dev-ruby/openfact-5.6.1

Description

OpenFact, a system inventory tool (community implementation of Facter)

Added to portage

2026-05-18

openvox - 8.27.0
Ebuild name:

app-admin/openvox-8.27.0

Description

OpenVox agent and apply tools for Puppet-compatible configuration manageme

Added to portage

2026-05-18

postfix - 3.11.3
Ebuild name:

mail-mta/postfix-3.11.3

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2026-05-18

postfix - 3.12_pre20260516
Ebuild name:

mail-mta/postfix-3.12_pre20260516

Description

A fast and secure drop-in replacement for sendmail

Added to portage

2026-05-18

python-multipart - 0.0.29
Ebuild name:

dev-python/python-multipart-0.0.29

Description

A streaming multipart parser for Python

Added to portage

2026-05-18

qtpy - 2.4.3-r3
Ebuild name:

dev-python/qtpy-2.4.3-r3

Description

Abstraction layer on top of PyQt and PySide with additional custom QWidget

Added to portage

2026-05-18

raspberrypi-firmware - 1.20260513
Ebuild name:

sys-boot/raspberrypi-firmware-1.20260513

Description

Raspberry Pi (all versions) bootloader and GPU firmware

Added to portage

2026-05-18

raspberrypi-image - 6.18.29_p20260513
Ebuild name:

sys-kernel/raspberrypi-image-6.18.29_p20260513

Description

Raspberry Pi (all versions) kernel and modules

Added to portage

2026-05-18

raspberrypi-sources - 6.18.29_p20260513
Ebuild name:

sys-kernel/raspberrypi-sources-6.18.29_p20260513

Description

Raspberry Pi kernel sources

Added to portage

2026-05-18

repoze-lru - 0.8
Ebuild name:

dev-python/repoze-lru-0.8

Description

A tiny LRU cache implementation and decorator

Added to portage

2026-05-18

rpi-eeprom - 28.17_p1
Ebuild name:

dev-embedded/rpi-eeprom-28.17_p1

Description

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

Added to portage

2026-05-18

scanf - 1.0.0
Ebuild name:

dev-ruby/scanf-1.0.0

Description

Ruby implementation of the C function scanf(3)

Added to portage

2026-05-18

srs - 6.0.48
Ebuild name:

media-video/srs-6.0.48

Description

Simple Realtime media Server

Added to portage

2026-05-18

tavern - 3.5.0
Ebuild name:

dev-python/tavern-3.5.0

Description

A tool, library, and Pytest plugin for testing RESTful APIs

Added to portage

2026-05-18

vanilla-kernel - 6.12.90
Ebuild name:

sys-kernel/vanilla-kernel-6.12.90

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-18

vanilla-kernel - 6.18.32
Ebuild name:

sys-kernel/vanilla-kernel-6.18.32

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-18

vanilla-kernel - 6.6.140
Ebuild name:

sys-kernel/vanilla-kernel-6.6.140

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-18

vanilla-kernel - 7.0.9
Ebuild name:

sys-kernel/vanilla-kernel-7.0.9

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-05-18

yacas - 1.9.1-r3
Ebuild name:

sci-mathematics/yacas-1.9.1-r3

Description

General purpose computer algebra system

Added to portage

2026-05-18

zedis - 0.4.0
Ebuild name:

dev-db/zedis-0.4.0

Description

Blazing-fast native Redis GUI built with Rust and GPUI

Added to portage

2026-05-18

zeroconf - 0.149.5
Ebuild name:

dev-python/zeroconf-0.149.5

Description

Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi comp

Added to portage

2026-05-18

zipstream-ng - 1.9.2
Ebuild name:

dev-python/zipstream-ng-1.9.2

Description

A modern and easy to use streamable zip file generator

Added to portage

2026-05-18

zynaddsubfx - 3.0.6-r8
Ebuild name:

media-sound/zynaddsubfx-3.0.6-r8

Description

Software synthesizer capable of making a countless number of instr

Added to portage

2026-05-18

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