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:

83016

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Tutorials per portage category->net-misc->openvpn

OpenVPN primer


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

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


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

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

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


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

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


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

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


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

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


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

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


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

From http://www.gentoo.org/news/en/gwn/20041011-newsletter.xml
rate this article:
current rating: average rating: 1.6 (45 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-01-30
alembic - 1.18.3
Ebuild name:

dev-python/alembic-1.18.3

Description

Database migrations tool, written by the author of SQLAlchemy

Added to portage

2026-01-30

autopage - 0.6.0
Ebuild name:

dev-python/autopage-0.6.0

Description

A library to provide automatic paging for console output

Added to portage

2026-01-30

aws-sam-translator - 1.107.0
Ebuild name:

dev-python/aws-sam-translator-1.107.0

Description

A library that transform SAM templates into AWS CloudFormatio

Added to portage

2026-01-30

awscli - 1.44.28
Ebuild name:

app-admin/awscli-1.44.28

Description

Universal Command Line Environment for AWS

Added to portage

2026-01-30

bibtexparser - 1.4.4
Ebuild name:

dev-python/bibtexparser-1.4.4

Description

A BibTeX parser written in Python

Added to portage

2026-01-30

boto3 - 1.42.38
Ebuild name:

dev-python/boto3-1.42.38

Description

The AWS SDK for Python

Added to portage

2026-01-30

botocore - 1.42.38
Ebuild name:

dev-python/botocore-1.42.38

Description

Low-level, data-driven core of boto 3

Added to portage

2026-01-30

c-blosc2 - 2.23.0
Ebuild name:

dev-libs/c-blosc2-2.23.0

Description

Blocking, shuffling and lossless compression library

Added to portage

2026-01-30

claude-code - 2.1.23
Ebuild name:

dev-util/claude-code-2.1.23

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-01-30

cloudflared - 2026.1.2
Ebuild name:

net-vpn/cloudflared-2026.1.2

Description

A command-line client and tunneling daemon for Cloudflare Tunnel

Added to portage

2026-01-30

courier - 1.6.0
Ebuild name:

mail-mta/courier-1.6.0

Description

An MTA designed specifically for maildirs

Added to portage

2026-01-30

courier-authlib - 0.72.7
Ebuild name:

net-libs/courier-authlib-0.72.7

Description

Courier authentication library

Added to portage

2026-01-30

courier-unicode - 2.5.0
Ebuild name:

net-libs/courier-unicode-2.5.0

Description

Unicode library used by the courier mail server

Added to portage

2026-01-30

cssselect - 1.4.0
Ebuild name:

dev-python/cssselect-1.4.0

Description

Parse CSS3 Selectors and translate them to XPath 1.0

Added to portage

2026-01-30

deno-bin - 2.6.7
Ebuild name:

dev-lang/deno-bin-2.6.7

Description

Modern runtime for JavaScript and TypeScript

Added to portage

2026-01-30

gimp - 3.0.8-r1
Ebuild name:

media-gfx/gimp-3.0.8-r1

Description

GNU Image Manipulation Program

Added to portage

2026-01-30

nanobind - 2.11.0
Ebuild name:

dev-python/nanobind-2.11.0

Description

Tiny and efficient C++/Python bindings

Added to portage

2026-01-30

nbconvert - 7.17.0
Ebuild name:

dev-python/nbconvert-7.17.0

Description

Converting Jupyter Notebooks

Added to portage

2026-01-30

nvidia-drivers - 580.95.05
Ebuild name:

x11-drivers/nvidia-drivers-580.95.05

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-01-30

nvidia-vaapi-driver - 0.0.15
Ebuild name:

media-libs/nvidia-vaapi-driver-0.0.15

Description

A VA-API implemention using NVIDIA's NVDEC

Added to portage

2026-01-30

openjdk-bin - 25.0.2_p10
Ebuild name:

dev-java/openjdk-bin-25.0.2_p10

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-01-30

org-roam - 9999
Ebuild name:

app-emacs/org-roam-9999

Description

Rudimentary Roam replica with Org-mode

Added to portage

2026-01-30

orjson - 3.11.6
Ebuild name:

dev-python/orjson-3.11.6

Description

Fast, correct Python JSON library supporting dataclasses, datetimes, and n

Added to portage

2026-01-30

pdm-backend - 2.4.7
Ebuild name:

dev-python/pdm-backend-2.4.7

Description

A PEP 517 backend for PDM that supports PEP 621 metadata

Added to portage

2026-01-30

protobuf - 6.33.5
Ebuild name:

dev-python/protobuf-6.33.5

Description

Google's Protocol Buffers - Python bindings

Added to portage

2026-01-30

pytokens - 0.4.1
Ebuild name:

dev-python/pytokens-0.4.1

Description

A fast, spec compliant Python 3.13+ tokenizer that runs on older Pythons

Added to portage

2026-01-30

sphinxcontrib-trio - 1.2.0
Ebuild name:

dev-python/sphinxcontrib-trio-1.2.0

Description

Make Sphinx better at documenting Python functions and methods

Added to portage

2026-01-30

steve - 1.5.0
Ebuild name:

dev-build/steve-1.5.0

Description

A load-balancing jobserver for Gentoo

Added to portage

2026-01-30

talk-desktop-bin - 2.0.5
Ebuild name:

net-im/talk-desktop-bin-2.0.5

Description

Nextcloud Talk Desktop client

Added to portage

2026-01-30

thriftpy2 - 0.6.0_beta1
Ebuild name:

dev-python/thriftpy2-0.6.0_beta1

Description

Pure python approach of Apache Thrift

Added to portage

2026-01-30

tifffile - 2026.1.28
Ebuild name:

dev-python/tifffile-2026.1.28

Description

Read and write TIFF files

Added to portage

2026-01-30

types-psutil - 7.2.2.20260130
Ebuild name:

dev-python/types-psutil-7.2.2.20260130

Description

Typing stubs for psutil

Added to portage

2026-01-30

uv - 0.9.28
Ebuild name:

dev-python/uv-0.9.28

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-01-30

uv-build - 0.9.28
Ebuild name:

dev-python/uv-build-0.9.28

Description

PEP517 uv build backend

Added to portage

2026-01-30

wcwidth - 0.5.2
Ebuild name:

dev-python/wcwidth-0.5.2

Description

Measures number of Terminal column cells of wide-character codes

Added to portage

2026-01-30

yt-dlp - 2026.01.29
Ebuild name:

net-misc/yt-dlp-2026.01.29

Description

youtube-dl fork with additional features and fixes

Added to portage

2026-01-30

yt-dlp-ejs - 0.4.0
Ebuild name:

dev-python/yt-dlp-ejs-0.4.0

Description

External JavaScript for yt-dlp supporting many runtimes

Added to portage

2026-01-30

2026-01-29
absl-py - 2.4.0
Ebuild name:

dev-python/absl-py-2.4.0

Description

Abseil Python Common Libraries

Added to portage

2026-01-29

alembic - 1.18.2
Ebuild name:

dev-python/alembic-1.18.2

Description

Database migrations tool, written by the author of SQLAlchemy

Added to portage

2026-01-29

aspell - 0.60.8.2
Ebuild name:

app-text/aspell-0.60.8.2

Description

Free and Open Source spell checker designed to replace Ispell

Added to portage

2026-01-29

avahi - 0.9_rc3
Ebuild name:

net-dns/avahi-0.9_rc3

Description

System which facilitates service discovery on a local network

Added to portage

2026-01-29

awscli - 1.44.27
Ebuild name:

app-admin/awscli-1.44.27

Description

Universal Command Line Environment for AWS

Added to portage

2026-01-29

babl - 0.1.122
Ebuild name:

media-libs/babl-0.1.122

Description

A dynamic, any to any, pixel format conversion library

Added to portage

2026-01-29

bareos - 25.0.1
Ebuild name:

app-backup/bareos-25.0.1

Description

Featureful client/server network backup suite

Added to portage

2026-01-29

bareos - 25.0.1
Ebuild name:

dev-python/bareos-25.0.1

Description

python bindings for bareos network backup suite

Added to portage

2026-01-29

bcc - 0.36.0
Ebuild name:

dev-util/bcc-0.36.0

Description

Tools for BPF-based Linux IO analysis, networking, monitoring, and more

Added to portage

2026-01-29

bedrock-server - 1.21.132.3
Ebuild name:

games-server/bedrock-server-1.21.132.3

Description

The official bedrock (non-java) based server for the sandbox

Added to portage

2026-01-29

borgmatic - 2.1.1
Ebuild name:

app-backup/borgmatic-2.1.1

Description

Automatically create, prune and verify backups with borgbackup

Added to portage

2026-01-29

boto3 - 1.42.37
Ebuild name:

dev-python/boto3-1.42.37

Description

The AWS SDK for Python

Added to portage

2026-01-29

botocore - 1.42.37
Ebuild name:

dev-python/botocore-1.42.37

Description

Low-level, data-driven core of boto 3

Added to portage

2026-01-29

chrome-binary-plugins - 144.0.7559.109
Ebuild name:

www-plugins/chrome-binary-plugins-144.0.7559.109

Description

Binary plugins from Google Chrome for use in Chrom

Added to portage

2026-01-29

chrome-binary-plugins - 145.0.7632.26_beta
Ebuild name:

www-plugins/chrome-binary-plugins-145.0.7632.26_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-01-29

chrome-binary-plugins - 146.0.7647.3_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-146.0.7647.3_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-01-29

chromedriver-bin - 144.0.7559.109
Ebuild name:

www-apps/chromedriver-bin-144.0.7559.109

Description

WebDriver for Chrome

Added to portage

2026-01-29

chromium - 144.0.7559.109
Ebuild name:

www-client/chromium-144.0.7559.109

Description

Open-source version of Google Chrome web browser

Added to portage

2026-01-29

confuse - 2.2.0
Ebuild name:

dev-python/confuse-2.2.0

Description

Confuse is a configuration library for Python that uses YAML

Added to portage

2026-01-29

dunst - 1.13.1
Ebuild name:

x11-misc/dunst-1.13.1

Description

Lightweight replacement for common notification daemons

Added to portage

2026-01-29

dustrac - 2.2.0
Ebuild name:

games-sports/dustrac-2.2.0

Description

Tile-based, cross-platform 2D racing game

Added to portage

2026-01-29

faudio - 26.01
Ebuild name:

app-emulation/faudio-26.01

Description

Accuracy-focused XAudio reimplementation for open platforms

Added to portage

2026-01-29

firefox - 147.0.2
Ebuild name:

www-client/firefox-147.0.2

Description

Firefox Web Browser

Added to portage

2026-01-29

fotocx - 26.2
Ebuild name:

media-gfx/fotocx-26.2

Description

Program for improving image files made with a digital camera

Added to portage

2026-01-29

gimp - 2.10.38-r4
Ebuild name:

media-gfx/gimp-2.10.38-r4

Description

GNU Image Manipulation Program

Added to portage

2026-01-29

google-chrome - 144.0.7559.109
Ebuild name:

www-client/google-chrome-144.0.7559.109

Description

The web browser from Google

Added to portage

2026-01-29

google-chrome-beta - 145.0.7632.26
Ebuild name:

www-client/google-chrome-beta-145.0.7632.26

Description

The web browser from Google

Added to portage

2026-01-29

google-chrome-unstable - 146.0.7647.3
Ebuild name:

www-client/google-chrome-unstable-146.0.7647.3

Description

The web browser from Google

Added to portage

2026-01-29

hoe - 4.6.0
Ebuild name:

dev-ruby/hoe-4.6.0

Description

Hoe extends rake to provide full project automation

Added to portage

2026-01-29

hypothesis - 6.151.3
Ebuild name:

dev-python/hypothesis-6.151.3

Description

A library for property based testing

Added to portage

2026-01-29

hypothesis - 6.151.4
Ebuild name:

dev-python/hypothesis-6.151.4

Description

A library for property based testing

Added to portage

2026-01-29

intel-vc-intrinsics - 0.24.3
Ebuild name:

dev-libs/intel-vc-intrinsics-0.24.3

Description

A set of new intrinsics on top of core LLVM IR instructions

Added to portage

2026-01-29

io-endpoint - 0.17.1
Ebuild name:

dev-ruby/io-endpoint-0.17.1

Description

Provides a separation of concerns interface for IO endpoints

Added to portage

2026-01-29

js8call - 2.5.2
Ebuild name:

media-radio/js8call-2.5.2

Description

Weak signal ham radio communication

Added to portage

2026-01-29

kscreen - 6.5.5-r1
Ebuild name:

kde-plasma/kscreen-6.5.5-r1

Description

KDE Plasma screen management

Added to portage

2026-01-29

libgcrypt - 1.12.0-r1
Ebuild name:

dev-libs/libgcrypt-1.12.0-r1

Description

General purpose crypto library based on the code used in GnuPG

Added to portage

2026-01-29

libpng - 1.6.54
Ebuild name:

media-libs/libpng-1.6.54

Description

Portable Network Graphics library

Added to portage

2026-01-29

libtsm - 4.4.2
Ebuild name:

dev-libs/libtsm-4.4.2

Description

Terminal Emulator State Machine

Added to portage

2026-01-29

lxqt-config - 2.3.1
Ebuild name:

lxqt-base/lxqt-config-2.3.1

Description

LXQt system configuration control center

Added to portage

2026-01-29

mattermost-desktop-bin - 5.13.4
Ebuild name:

net-im/mattermost-desktop-bin-5.13.4

Description

Mattermost Desktop application

Added to portage

2026-01-29

microsoft-edge - 144.0.3719.92
Ebuild name:

www-client/microsoft-edge-144.0.3719.92

Description

The web browser from Microsoft

Added to portage

2026-01-29

microsoft-edge-beta - 145.0.3800.13
Ebuild name:

www-client/microsoft-edge-beta-145.0.3800.13

Description

The web browser from Microsoft

Added to portage

2026-01-29

microsoft-edge-beta - 145.0.3800.22
Ebuild name:

www-client/microsoft-edge-beta-145.0.3800.22

Description

The web browser from Microsoft

Added to portage

2026-01-29

microsoft-edge-dev - 145.0.3800.10
Ebuild name:

www-client/microsoft-edge-dev-145.0.3800.10

Description

The web browser from Microsoft

Added to portage

2026-01-29

microsoft-edge-dev - 146.0.3818.0
Ebuild name:

www-client/microsoft-edge-dev-146.0.3818.0

Description

The web browser from Microsoft

Added to portage

2026-01-29

netpbm - 11.13.2
Ebuild name:

media-libs/netpbm-11.13.2

Description

A set of utilities for converting to/from the netpbm (and related) format

Added to portage

2026-01-29

netpbm - 11.2.21
Ebuild name:

media-libs/netpbm-11.2.21

Description

A set of utilities for converting to/from the netpbm (and related) format

Added to portage

2026-01-29

openjdk-bin - 21.0.10_p7
Ebuild name:

dev-java/openjdk-bin-21.0.10_p7

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-01-29

openjdk-bin - 26_beta32
Ebuild name:

dev-java/openjdk-bin-26_beta32

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-01-29

openjdk-bin - 27_alpha6
Ebuild name:

dev-java/openjdk-bin-27_alpha6

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-01-29

openpgp-keys-annejan - 20260129
Ebuild name:

sec-keys/openpgp-keys-annejan-20260129

Description

OpenPGP key used by Anne Jan Brouwer (annejan)

Added to portage

2026-01-29

openpgp-keys-roddhjav - 20260129
Ebuild name:

sec-keys/openpgp-keys-roddhjav-20260129

Description

OpenPGP key used by Alexandre Pujol (roddhjav)

Added to portage

2026-01-29

openrct2 - 0.4.30
Ebuild name:

games-simulation/openrct2-0.4.30

Description

An open source re-implementation of Chris Sawyer's RollerCoaster T

Added to portage

2026-01-29

opera - 126.0.5750.59
Ebuild name:

www-client/opera-126.0.5750.59

Description

A fast and secure web browser

Added to portage

2026-01-29

opera-developer - 128.0.5790.0
Ebuild name:

www-client/opera-developer-128.0.5790.0

Description

A fast and secure web browser

Added to portage

2026-01-29

org-static-blog - 1.6.0
Ebuild name:

app-emacs/org-static-blog-1.6.0

Description

Static site generator using Emacs's org-mode

Added to portage

2026-01-29

org-static-blog - 1.7.0
Ebuild name:

app-emacs/org-static-blog-1.7.0

Description

Static site generator using Emacs's org-mode

Added to portage

2026-01-29

org-static-blog - 9999
Ebuild name:

app-emacs/org-static-blog-9999

Description

Static site generator using Emacs's org-mode

Added to portage

2026-01-29

org-superstar-mode - 1.5.0
Ebuild name:

app-emacs/org-superstar-mode-1.5.0

Description

Prettify headings and plain lists in Org mode (use UTF8 bullets)

Added to portage

2026-01-29

osm - 1.9
Ebuild name:

app-emacs/osm-1.9

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-29

osm - 2.0
Ebuild name:

app-emacs/osm-2.0

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-29

osm - 2.1
Ebuild name:

app-emacs/osm-2.1

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-29

osm - 2.2
Ebuild name:

app-emacs/osm-2.2

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-29

osm - 9999
Ebuild name:

app-emacs/osm-9999

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-01-29

pass-import - 3.5-r1
Ebuild name:

app-admin/pass-import-3.5-r1

Description

pass extension for importing data from most existing password managers

Added to portage

2026-01-29

pass-update - 2.2.1-r1
Ebuild name:

app-admin/pass-update-2.2.1-r1

Description

pass extension that provides an easy flow for updating passwords

Added to portage

2026-01-29

pbs-installer - 2026.1.27
Ebuild name:

dev-python/pbs-installer-2026.1.27

Description

Installer for Python Build Standalone

Added to portage

2026-01-29

picard - 3.0.0_alpha1
Ebuild name:

media-sound/picard-3.0.0_alpha1

Description

Cross-platform music tagger

Added to portage

2026-01-29

prism - 1.9.0
Ebuild name:

dev-ruby/prism-1.9.0

Description

Prism Ruby parser

Added to portage

2026-01-29

psutil - 7.2.2
Ebuild name:

dev-python/psutil-7.2.2

Description

Retrieve information on running processes and system utilization

Added to portage

2026-01-29

pykeepass - 4.1.1_p1
Ebuild name:

dev-python/pykeepass-4.1.1_p1

Description

Python library to interact with keepass databases (supports KDBX3 and

Added to portage

2026-01-29

qdirstat - 2.0
Ebuild name:

sys-apps/qdirstat-2.0

Description

Qt-based directory statistics

Added to portage

2026-01-29

qtpass - 1.4.0-r3
Ebuild name:

app-admin/qtpass-1.4.0-r3

Description

Multi-platform GUI for pass, the standard unix password manager

Added to portage

2026-01-29

stress-ng - 0.20.00
Ebuild name:

app-benchmarks/stress-ng-0.20.00

Description

Stress test for a computer system with various selectable ways

Added to portage

2026-01-29

stripe - 14.3.0
Ebuild name:

dev-python/stripe-14.3.0

Description

Stripe Python bindings

Added to portage

2026-01-29

thunderbird - 140.7.1
Ebuild name:

mail-client/thunderbird-140.7.1

Description

Thunderbird Mail Client

Added to portage

2026-01-29

thunderbird - 147.0.1
Ebuild name:

mail-client/thunderbird-147.0.1

Description

Thunderbird Mail Client

Added to portage

2026-01-29

thunderbird-bin - 140.7.1
Ebuild name:

mail-client/thunderbird-bin-140.7.1

Description

Thunderbird Mail Client

Added to portage

2026-01-29

thunderbird-bin - 147.0.1
Ebuild name:

mail-client/thunderbird-bin-147.0.1

Description

Thunderbird Mail Client

Added to portage

2026-01-29

tmuxp - 1.64.0
Ebuild name:

app-misc/tmuxp-1.64.0

Description

tmux session manager. built on libtmux

Added to portage

2026-01-29

tomcat - 10.1.52
Ebuild name:

www-servers/tomcat-10.1.52

Description

Tomcat Servlet-6.0/JSP-3.1/EL-5.0/WebSocket-2.1/JASPIC-3.0 Container

Added to portage

2026-01-29

tor - 0.4.8.22
Ebuild name:

net-vpn/tor-0.4.8.22

Description

Anonymizing overlay network for TCP

Added to portage

2026-01-29

transient - 0.11.0-r1
Ebuild name:

app-emacs/transient-0.11.0-r1

Description

Transient commands abstraction for GNU Emacs

Added to portage

2026-01-29

transient - 0.12.0-r1
Ebuild name:

app-emacs/transient-0.12.0-r1

Description

Transient commands abstraction for GNU Emacs

Added to portage

2026-01-29

ttl - 0.15.2
Ebuild name:

net-analyzer/ttl-0.15.2

Description

Modern traceroute/mtr-style TUI with hop stats and optional ASN/geo enrichm

Added to portage

2026-01-29

virtualbox - 7.1.16
Ebuild name:

app-emulation/virtualbox-7.1.16

Description

Family of powerful x86 virtualization products for enterprise and h

Added to portage

2026-01-29

virtualbox - 7.2.6
Ebuild name:

app-emulation/virtualbox-7.2.6

Description

Family of powerful x86 virtualization products for enterprise and ho

Added to portage

2026-01-29

virtualbox-additions - 7.1.16
Ebuild name:

app-emulation/virtualbox-additions-7.1.16

Description

CD image containing guest additions for VirtualBox

Added to portage

2026-01-29

virtualbox-additions - 7.2.6
Ebuild name:

app-emulation/virtualbox-additions-7.2.6

Description

CD image containing guest additions for VirtualBox

Added to portage

2026-01-29

virtualbox-extpack-oracle - 7.1.16
Ebuild name:

app-emulation/virtualbox-extpack-oracle-7.1.16

Description

PUEL extensions for VirtualBox

Added to portage

2026-01-29

virtualbox-extpack-oracle - 7.2.6
Ebuild name:

app-emulation/virtualbox-extpack-oracle-7.2.6

Description

PUEL extensions for VirtualBox

Added to portage

2026-01-29

virtualbox-guest-additions - 7.1.16
Ebuild name:

app-emulation/virtualbox-guest-additions-7.1.16

Description

VirtualBox kernel modules and user-space tools for

Added to portage

2026-01-29

virtualbox-guest-additions - 7.2.6
Ebuild name:

app-emulation/virtualbox-guest-additions-7.2.6

Description

VirtualBox kernel modules and user-space tools for G

Added to portage

2026-01-29

virtualbox-guest-modules - 7.1.16
Ebuild name:

app-emulation/virtualbox-guest-modules-7.1.16

Description

Kernel Modules for Virtualbox Guest Additions

Added to portage

2026-01-29

virtualbox-guest-modules - 7.2.6
Ebuild name:

app-emulation/virtualbox-guest-modules-7.2.6

Description

Kernel Modules for Virtualbox Guest Additions

Added to portage

2026-01-29

virtualbox-kvm - 7.1.16_pre20251103
Ebuild name:

app-emulation/virtualbox-kvm-7.1.16_pre20251103

Description

Family of powerful x86 virtualization products for

Added to portage

2026-01-29

virtualbox-modules - 7.1.16
Ebuild name:

app-emulation/virtualbox-modules-7.1.16

Description

Kernel Modules for Virtualbox

Added to portage

2026-01-29

virtualbox-modules - 7.2.6
Ebuild name:

app-emulation/virtualbox-modules-7.2.6

Description

Kernel Modules for Virtualbox

Added to portage

2026-01-29

xarray - 2026.1.0
Ebuild name:

dev-python/xarray-2026.1.0

Description

N-D labeled arrays and datasets in Python

Added to portage

2026-01-29

zxcvbn - 4.5.0
Ebuild name:

dev-python/zxcvbn-4.5.0

Description

Realistic password strength estimator

Added to portage

2026-01-29

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