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:

88398

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-09-15
aiostream - 0.8.0
Ebuild name:

dev-python/aiostream-0.8.0

Description

Generator-based operators for asynchronous iteration

Added to portage

2026-09-15

anydesk - 8.0.4-r1
Ebuild name:

net-misc/anydesk-8.0.4-r1

Description

Feature rich multi-platform remote desktop application

Added to portage

2026-09-15

asymptote - 3.15
Ebuild name:

media-gfx/asymptote-3.15

Description

A vector graphics language that provides a framework for technical drawing

Added to portage

2026-09-15

b2sdk - 2.13.0
Ebuild name:

dev-python/b2sdk-2.13.0

Description

Library to access Backblaze B2 cloud storage

Added to portage

2026-09-15

bgpq4 - 1.16
Ebuild name:

net-misc/bgpq4-1.16

Description

Generate access-lists for various routers, maintained fork of bgpq3

Added to portage

2026-09-15

blessed - 1.50.0
Ebuild name:

dev-python/blessed-1.50.0

Description

Library for making terminal apps using colors, keyboard input and positio

Added to portage

2026-09-15

boto3 - 1.43.94
Ebuild name:

dev-python/boto3-1.43.94

Description

The AWS SDK for Python

Added to portage

2026-09-15

botocore - 1.43.94
Ebuild name:

dev-python/botocore-1.43.94

Description

Low-level, data-driven core of boto 3

Added to portage

2026-09-15

claude-code - 2.1.270
Ebuild name:

dev-util/claude-code-2.1.270

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-09-15

dulwich - 1.2.15
Ebuild name:

dev-python/dulwich-1.2.15

Description

Pure-Python implementation of the Git file formats and protocols

Added to portage

2026-09-15

faker - 40.39.0
Ebuild name:

dev-python/faker-40.39.0

Description

A Python package that generates fake data for you

Added to portage

2026-09-15

firefox - 156.0
Ebuild name:

www-client/firefox-156.0

Description

Firefox Web Browser

Added to portage

2026-09-15

firefox-l10n - 156.0
Ebuild name:

www-client/firefox-l10n-156.0

Description

Firefox Web Browser's translation files

Added to portage

2026-09-15

google-api-core - 2.37.0
Ebuild name:

dev-python/google-api-core-2.37.0

Description

Core Library for Google Client Libraries

Added to portage

2026-09-15

gpxsee - 16.15
Ebuild name:

sci-geosciences/gpxsee-16.15

Description

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

Added to portage

2026-09-15

greenlet - 3.5.6
Ebuild name:

dev-python/greenlet-3.5.6

Description

Lightweight in-process concurrent programming

Added to portage

2026-09-15

grpcio - 1.84.0
Ebuild name:

dev-python/grpcio-1.84.0

Description

HTTP/2-based RPC framework

Added to portage

2026-09-15

grpcio-status - 1.84.0
Ebuild name:

dev-python/grpcio-status-1.84.0

Description

Reference package for GRPC Python status proto mapping

Added to portage

2026-09-15

httpx2 - 2.13.0
Ebuild name:

dev-python/httpx2-2.13.0

Description

The next generation HTTP client (Pydantic fork)

Added to portage

2026-09-15

jellyfin-bin - 12.1
Ebuild name:

www-apps/jellyfin-bin-12.1

Description

Jellyfin puts you in control of managing and streaming your media

Added to portage

2026-09-15

jitterentropy-rngd - 1.2.8
Ebuild name:

app-crypt/jitterentropy-rngd-1.2.8

Description

Jitter RNG daemon

Added to portage

2026-09-15

johntheripper - 1.8.0-r2
Ebuild name:

app-crypt/johntheripper-1.8.0-r2

Description

fast password cracker

Added to portage

2026-09-15

johntheripper - 1.9.0
Ebuild name:

app-crypt/johntheripper-1.9.0

Description

fast password cracker

Added to portage

2026-09-15

johntheripper-jumbo - 1.9.0_p20240102
Ebuild name:

app-crypt/johntheripper-jumbo-1.9.0_p20240102

Description

Fast password cracker, community enhanced version

Added to portage

2026-09-15

johntheripper-jumbo - 1.9.0_p20250216-r1
Ebuild name:

app-crypt/johntheripper-jumbo-1.9.0_p20250216-r1

Description

Fast password cracker, community enhanced version

Added to portage

2026-09-15

johntheripper-jumbo - 1.9.0_p20250703
Ebuild name:

app-crypt/johntheripper-jumbo-1.9.0_p20250703

Description

Fast password cracker, community enhanced version

Added to portage

2026-09-15

johntheripper-jumbo - 9999
Ebuild name:

app-crypt/johntheripper-jumbo-9999

Description

Fast password cracker, community enhanced version

Added to portage

2026-09-15

liburing - 2.15
Ebuild name:

sys-libs/liburing-2.15

Description

Efficient I/O with io_uring

Added to portage

2026-09-15

mariadb-connector-odbc - 3.1.23
Ebuild name:

dev-db/mariadb-connector-odbc-3.1.23

Description

MariaDB Connector/ODBC

Added to portage

2026-09-15

mariadb-connector-odbc - 3.2.9
Ebuild name:

dev-db/mariadb-connector-odbc-3.2.9

Description

MariaDB Connector/ODBC

Added to portage

2026-09-15

mattermost-desktop-bin - 6.2.4_rc1
Ebuild name:

net-im/mattermost-desktop-bin-6.2.4_rc1

Description

Mattermost Desktop application

Added to portage

2026-09-15

mattermost-desktop-bin - 6.3.1_rc1
Ebuild name:

net-im/mattermost-desktop-bin-6.3.1_rc1

Description

Mattermost Desktop application

Added to portage

2026-09-15

mysqlclient - 2.3.0
Ebuild name:

dev-python/mysqlclient-2.3.0

Description

Python interface to MySQL

Added to portage

2026-09-15

ncurses - 6.6_p20260411-r1
Ebuild name:

sys-libs/ncurses-6.6_p20260411-r1

Description

Console display library

Added to portage

2026-09-15

ncurses - 6.6_p20260912
Ebuild name:

sys-libs/ncurses-6.6_p20260912

Description

Console display library

Added to portage

2026-09-15

nfft - 3.5.3-r1
Ebuild name:

sci-libs/nfft-3.5.3-r1

Description

library for nonequispaced discrete Fourier transformations

Added to portage

2026-09-15

ppp - 2.5.4
Ebuild name:

net-dialup/ppp-2.5.4

Description

Point-to-Point Protocol (PPP)

Added to portage

2026-09-15

pymdown-extensions - 12.0
Ebuild name:

dev-python/pymdown-extensions-12.0

Description

Extensions for Python Markdown

Added to portage

2026-09-15

rfc3161-client - 1.0.9
Ebuild name:

dev-python/rfc3161-client-1.0.9

Description

An Opinionated Python RFC3161 Client

Added to portage

2026-09-15

s2n-tls - 1.7.10
Ebuild name:

dev-libs/s2n-tls-1.7.10

Description

s2n-tls is a C99 implementation of the TLS/SSL protocols

Added to portage

2026-09-15

setuptools-scm - 10.3.2
Ebuild name:

dev-python/setuptools-scm-10.3.2

Description

Manage versions by scm tags via setuptools

Added to portage

2026-09-15

siegfried - 1.11.7
Ebuild name:

app-misc/siegfried-1.11.7

Description

Signature-based file format identification

Added to portage

2026-09-15

sqlalchemy - 2.0.53
Ebuild name:

dev-python/sqlalchemy-2.0.53

Description

Python SQL toolkit and Object Relational Mapper

Added to portage

2026-09-15

tornado - 6.5.9
Ebuild name:

dev-python/tornado-6.5.9

Description

Python web framework and asynchronous networking library

Added to portage

2026-09-15

unidiff - 1.0.1
Ebuild name:

dev-python/unidiff-1.0.1

Description

Unified diff parsing/metadata extraction library

Added to portage

2026-09-15

uv - 0.12.14
Ebuild name:

dev-python/uv-0.12.14

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-09-15

uv-build - 0.12.14
Ebuild name:

dev-python/uv-build-0.12.14

Description

PEP517 uv build backend

Added to portage

2026-09-15

uvicorn - 0.53.0
Ebuild name:

dev-python/uvicorn-0.53.0

Description

Lightning-fast ASGI server implementation

Added to portage

2026-09-15

winbox - 4.4
Ebuild name:

app-admin/winbox-4.4

Description

Management Software for MikroTik RouterOS

Added to portage

2026-09-15

xvfbwrapper - 0.2.33
Ebuild name:

dev-python/xvfbwrapper-0.2.33

Description

Python wrapper for running a display inside X virtual framebuffer

Added to portage

2026-09-15

2026-09-14
ardour - 9.8.0
Ebuild name:

media-sound/ardour-9.8.0

Description

Digital Audio Workstation

Added to portage

2026-09-14

ast-serialize - 0.11.2
Ebuild name:

dev-python/ast-serialize-0.11.2

Description

Python bindings for mypy AST serialization

Added to portage

2026-09-14

asterisk-g729 - 20.0.3.1.12
Ebuild name:

net-misc/asterisk-g729-20.0.3.1.12

Description

G.729 codec and supporting files for asterisk

Added to portage

2026-09-14

asterisk-g729 - 21.0.3.1.12
Ebuild name:

net-misc/asterisk-g729-21.0.3.1.12

Description

G.729 codec and supporting files for asterisk

Added to portage

2026-09-14

asterisk-g729 - 22.0.3.1.12
Ebuild name:

net-misc/asterisk-g729-22.0.3.1.12

Description

G.729 codec and supporting files for asterisk

Added to portage

2026-09-14

asterisk-g729 - 23.0.3.1.12
Ebuild name:

net-misc/asterisk-g729-23.0.3.1.12

Description

G.729 codec and supporting files for asterisk

Added to portage

2026-09-14

atari800 - 7.2.1
Ebuild name:

games-emulation/atari800-7.2.1

Description

Emulator of Atari 8-bit computer systems and 5200 game console

Added to portage

2026-09-14

aws-c-s3 - 1.1.1-r1
Ebuild name:

dev-libs/aws-c-s3-1.1.1-r1

Description

AWS C S3 async library

Added to portage

2026-09-14

bcachefs-tools - 1.39.6
Ebuild name:

sys-fs/bcachefs-tools-1.39.6

Description

Tools for bcachefs

Added to portage

2026-09-14

ceph - 20.2.1-r5
Ebuild name:

sys-cluster/ceph-20.2.1-r5

Description

Ceph distributed filesystem

Added to portage

2026-09-14

ceph - 20.2.4-r1
Ebuild name:

sys-cluster/ceph-20.2.4-r1

Description

Ceph distributed filesystem

Added to portage

2026-09-14

coverage - 7.16.1
Ebuild name:

dev-python/coverage-7.16.1

Description

Code coverage measurement for Python

Added to portage

2026-09-14

dist-kernel - 6.1.188
Ebuild name:

virtual/dist-kernel-6.1.188

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-09-14

dist-kernel - 6.12.110
Ebuild name:

virtual/dist-kernel-6.12.110

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-09-14

dist-kernel - 6.18.52
Ebuild name:

virtual/dist-kernel-6.18.52

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-09-14

dist-kernel - 6.6.157
Ebuild name:

virtual/dist-kernel-6.6.157

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-09-14

dist-kernel - 7.2.6
Ebuild name:

virtual/dist-kernel-7.2.6

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-09-14

firefox-bin - 156.0
Ebuild name:

www-client/firefox-bin-156.0

Description

Firefox Web Browser

Added to portage

2026-09-14

gcc - 17.0.0_p20260913
Ebuild name:

sys-devel/gcc-17.0.0_p20260913

Description

The GNU Compiler Collection

Added to portage

2026-09-14

gentoo-kernel - 6.1.188
Ebuild name:

sys-kernel/gentoo-kernel-6.1.188

Description

Linux kernel built with Gentoo patches

Added to portage

2026-09-14

gentoo-kernel - 6.12.110
Ebuild name:

sys-kernel/gentoo-kernel-6.12.110

Description

Linux kernel built with Gentoo patches

Added to portage

2026-09-14

gentoo-kernel - 6.18.52
Ebuild name:

sys-kernel/gentoo-kernel-6.18.52

Description

Linux kernel built with Gentoo patches

Added to portage

2026-09-14

gentoo-kernel - 6.6.157
Ebuild name:

sys-kernel/gentoo-kernel-6.6.157

Description

Linux kernel built with Gentoo patches

Added to portage

2026-09-14

gentoo-kernel - 7.2.6
Ebuild name:

sys-kernel/gentoo-kernel-7.2.6

Description

Linux kernel built with Gentoo patches

Added to portage

2026-09-14

gentoo-kernel-bin - 6.1.188
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.188

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-09-14

gentoo-kernel-bin - 6.12.110
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.110

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-09-14

gentoo-kernel-bin - 6.18.52
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.52

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-09-14

gentoo-kernel-bin - 6.6.157
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.157

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-09-14

gentoo-kernel-bin - 7.2.6
Ebuild name:

sys-kernel/gentoo-kernel-bin-7.2.6

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-09-14

gentoo-kernel-modprep - 6.1.188
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.1.188

Description

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

Added to portage

2026-09-14

gentoo-kernel-modprep - 6.12.110
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.12.110

Description

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

Added to portage

2026-09-14

gentoo-kernel-modprep - 6.18.52
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.18.52

Description

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

Added to portage

2026-09-14

gentoo-kernel-modprep - 6.6.157
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.6.157

Description

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

Added to portage

2026-09-14

gentoo-kernel-modprep - 7.2.6
Ebuild name:

sys-kernel/gentoo-kernel-modprep-7.2.6

Description

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

Added to portage

2026-09-14

gentoo-sources - 6.1.188
Ebuild name:

sys-kernel/gentoo-sources-6.1.188

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-09-14

gentoo-sources - 6.12.110
Ebuild name:

sys-kernel/gentoo-sources-6.12.110

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-09-14

gentoo-sources - 6.18.52
Ebuild name:

sys-kernel/gentoo-sources-6.18.52

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-09-14

gentoo-sources - 6.6.157
Ebuild name:

sys-kernel/gentoo-sources-6.6.157

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-09-14

gentoo-sources - 7.2.6
Ebuild name:

sys-kernel/gentoo-sources-7.2.6

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-09-14

git-sources - 7.3_rc3
Ebuild name:

sys-kernel/git-sources-7.3_rc3

Description

The very latest -git version of the Linux kernel

Added to portage

2026-09-14

gmmlib - 22.10.2
Ebuild name:

media-libs/gmmlib-22.10.2

Description

Intel Graphics Memory Management Library

Added to portage

2026-09-14

gnome-extra-apps - 48.0-r1
Ebuild name:

gnome-base/gnome-extra-apps-48.0-r1

Description

Sub-meta package for the applications of GNOME

Added to portage

2026-09-14

gnome-photos - 44.0-r1
Ebuild name:

media-gfx/gnome-photos-44.0-r1

Description

Access, organize and share your photos on GNOME

Added to portage

2026-09-14

hip - 7.2.0-r2
Ebuild name:

dev-util/hip-7.2.0-r2

Description

C++ Heterogeneous-Compute Interface for Portability

Added to portage

2026-09-14

js2-mode - 20231224
Ebuild name:

app-emacs/js2-mode-20231224

Description

Improved JavaScript editing mode for GNU Emacs

Added to portage

2026-09-14

julia-mode - 0.4_p20211023
Ebuild name:

app-emacs/julia-mode-0.4_p20211023

Description

Emacs major mode for the Julia programming language

Added to portage

2026-09-14

kineto - 0.4.0_p20260805-r1
Ebuild name:

sci-ml/kineto-0.4.0_p20260805-r1

Description

part of the PyTorch Profiler

Added to portage

2026-09-14

libpcap - 1.11.0
Ebuild name:

net-libs/libpcap-1.11.0

Description

System-independent library for user-level network packet capture

Added to portage

2026-09-14

libva-intel-media-driver - 26.3.3
Ebuild name:

media-libs/libva-intel-media-driver-26.3.3

Description

Intel Media Driver for VA-API (iHD)

Added to portage

2026-09-14

merkuro - 26.04.3-r1
Ebuild name:

app-office/merkuro-26.04.3-r1

Description

Calendar application using Akonadi

Added to portage

2026-09-14

merkuro - 26.08.1-r1
Ebuild name:

app-office/merkuro-26.08.1-r1

Description

Calendar application using Akonadi

Added to portage

2026-09-14

moodle - 4.5.14
Ebuild name:

www-apps/moodle-4.5.14

Description

The Moodle Course Management System

Added to portage

2026-09-14

moodle - 5.0.10
Ebuild name:

www-apps/moodle-5.0.10

Description

The Moodle Course Management System

Added to portage

2026-09-14

moodle - 5.2.3
Ebuild name:

www-apps/moodle-5.2.3

Description

The Moodle Course Management System

Added to portage

2026-09-14

mpg123-base - 1.33.7
Ebuild name:

media-sound/mpg123-base-1.33.7

Description

Realtime MPEG 1.0/2.0/2.5 audio player for layers 1, 2 and 3

Added to portage

2026-09-14

mpg123-output-plugins - 1.33.7
Ebuild name:

media-plugins/mpg123-output-plugins-1.33.7

Description

Plugins for mpg123, the realtime MPEG 1.0/2.0/2.5 audio

Added to portage

2026-09-14

mrouted - 4.7
Ebuild name:

net-misc/mrouted-4.7

Description

IP multicast routing daemon

Added to portage

2026-09-14

opencv - 4.14.0
Ebuild name:

media-libs/opencv-4.14.0

Description

A collection of algorithms and sample code for various computer vision pro

Added to portage

2026-09-14

openpgp-keys-thomasorgis - 20260913
Ebuild name:

sec-keys/openpgp-keys-thomasorgis-20260913

Description

OpenPGP keys used by Thomas Orgis

Added to portage

2026-09-14

openvox - 8.27.0-r1
Ebuild name:

app-admin/openvox-8.27.0-r1

Description

OpenVox agent and apply tools for Puppet-compatible configuration manag

Added to portage

2026-09-14

pandora_box - 0.24.0
Ebuild name:

sys-apps/pandora_box-0.24.0

Description

Syd's log inspector & profile writer

Added to portage

2026-09-14

pdm - 2.29.1
Ebuild name:

dev-python/pdm-2.29.1

Description

Python package and dependency manager supporting the latest PEP standards

Added to portage

2026-09-14

portalocker - 4.3.2
Ebuild name:

dev-python/portalocker-4.3.2

Description

A library for Python file locking

Added to portage

2026-09-14

puppet - 8.10.0-r2
Ebuild name:

app-admin/puppet-8.10.0-r2

Description

A system automation and configuration management software

Added to portage

2026-09-14

quickjs-ng - 0.16.2
Ebuild name:

dev-libs/quickjs-ng-0.16.2

Description

QuickJS, the Next Generation a mighty JavaScript engine

Added to portage

2026-09-14

samba - 4.24.7
Ebuild name:

net-fs/samba-4.24.7

Description

Samba Suite Version 4

Added to portage

2026-09-14

setuptools-scm - 10.3.0
Ebuild name:

dev-python/setuptools-scm-10.3.0

Description

Manage versions by scm tags via setuptools

Added to portage

2026-09-14

spectre-meltdown-checker - 26.36.0913490
Ebuild name:

app-admin/spectre-meltdown-checker-26.36.0913490

Description

Spectre & Meltdown vulnerability/mitigation checke

Added to portage

2026-09-14

spirv-llvm-translator - 17.0.27
Ebuild name:

dev-util/spirv-llvm-translator-17.0.27

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-09-14

spirv-llvm-translator - 18.1.27
Ebuild name:

dev-util/spirv-llvm-translator-18.1.27

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-09-14

spirv-llvm-translator - 19.1.22
Ebuild name:

dev-util/spirv-llvm-translator-19.1.22

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-09-14

spirv-llvm-translator - 20.1.17
Ebuild name:

dev-util/spirv-llvm-translator-20.1.17

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-09-14

spirv-llvm-translator - 21.1.11
Ebuild name:

dev-util/spirv-llvm-translator-21.1.11

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-09-14

spirv-llvm-translator - 22.1.6
Ebuild name:

dev-util/spirv-llvm-translator-22.1.6

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-09-14

spirv-llvm-translator - 23.1.1
Ebuild name:

dev-util/spirv-llvm-translator-23.1.1

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2026-09-14

syd - 3.59.0
Ebuild name:

sys-apps/syd-3.59.0

Description

seccomp and landlock based application sandbox with support for namespaces

Added to portage

2026-09-14

syrupy - 6.1.1
Ebuild name:

dev-python/syrupy-6.1.1

Description

The sweeter pytest snapshot plugin

Added to portage

2026-09-14

vanilla-kernel - 6.1.188
Ebuild name:

sys-kernel/vanilla-kernel-6.1.188

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-09-14

vanilla-kernel - 6.12.110
Ebuild name:

sys-kernel/vanilla-kernel-6.12.110

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-09-14

vanilla-kernel - 6.18.52
Ebuild name:

sys-kernel/vanilla-kernel-6.18.52

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-09-14

vanilla-kernel - 6.6.157
Ebuild name:

sys-kernel/vanilla-kernel-6.6.157

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-09-14

vanilla-kernel - 7.2.6
Ebuild name:

sys-kernel/vanilla-kernel-7.2.6

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-09-14

vanilla-sources - 6.1.188
Ebuild name:

sys-kernel/vanilla-sources-6.1.188

Description

Full sources for the Linux kernel

Added to portage

2026-09-14

vanilla-sources - 6.12.110
Ebuild name:

sys-kernel/vanilla-sources-6.12.110

Description

Full sources for the Linux kernel

Added to portage

2026-09-14

vanilla-sources - 6.18.52
Ebuild name:

sys-kernel/vanilla-sources-6.18.52

Description

Full sources for the Linux kernel

Added to portage

2026-09-14

vanilla-sources - 6.6.157
Ebuild name:

sys-kernel/vanilla-sources-6.6.157

Description

Full sources for the Linux kernel

Added to portage

2026-09-14

vanilla-sources - 7.2.6
Ebuild name:

sys-kernel/vanilla-sources-7.2.6

Description

Full sources for the Linux kernel

Added to portage

2026-09-14

vcs-versioning - 2.4.0
Ebuild name:

dev-python/vcs-versioning-2.4.0

Description

Core VCS versioning functionality from setuptools-scm

Added to portage

2026-09-14

viking - 1.11-r1
Ebuild name:

sci-geosciences/viking-1.11-r1

Description

GPS data editor and analyzer

Added to portage

2026-09-14

xvfbwrapper - 0.2.32
Ebuild name:

dev-python/xvfbwrapper-0.2.32

Description

Python wrapper for running a display inside X virtual framebuffer

Added to portage

2026-09-14

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