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:

84169

userrating:

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


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

OpenVPN primer


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

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


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

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

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


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

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


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

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


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

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


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

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


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

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

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-04-04
awscli - 1.44.73
Ebuild name:

app-admin/awscli-1.44.73

Description

Universal Command Line Environment for AWS

Added to portage

2026-04-04

bcc - 0.36.1-r1
Ebuild name:

dev-util/bcc-0.36.1-r1

Description

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

Added to portage

2026-04-04

botan - 3.11.1
Ebuild name:

dev-libs/botan-3.11.1

Description

C++ crypto library

Added to portage

2026-04-04

boto3 - 1.42.83
Ebuild name:

dev-python/boto3-1.42.83

Description

The AWS SDK for Python

Added to portage

2026-04-04

botocore - 1.42.83
Ebuild name:

dev-python/botocore-1.42.83

Description

Low-level, data-driven core of boto 3

Added to portage

2026-04-04

brltty - 6.9
Ebuild name:

app-accessibility/brltty-6.9

Description

Daemon that provides access to the Linux/Unix console for a blind pers

Added to portage

2026-04-04

cfn-lint - 1.48.1
Ebuild name:

dev-python/cfn-lint-1.48.1

Description

CloudFormation Linter

Added to portage

2026-04-04

click - 8.3.2
Ebuild name:

dev-python/click-8.3.2

Description

A Python package for creating beautiful command line interfaces

Added to portage

2026-04-04

cryptsetup - 2.8.6
Ebuild name:

sys-fs/cryptsetup-2.8.6

Description

Tool to setup encrypted devices with dm-crypt

Added to portage

2026-04-04

diffoscope - 316
Ebuild name:

dev-util/diffoscope-316

Description

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

Added to portage

2026-04-04

ethtool - 6.19
Ebuild name:

sys-apps/ethtool-6.19

Description

Utility for examining and tuning ethernet-based network interfaces

Added to portage

2026-04-04

gcc - 13.4.1_p20260402
Ebuild name:

sys-devel/gcc-13.4.1_p20260402

Description

The GNU Compiler Collection

Added to portage

2026-04-04

gcc - 14.3.1_p20260403
Ebuild name:

sys-devel/gcc-14.3.1_p20260403

Description

The GNU Compiler Collection

Added to portage

2026-04-04

hiprt - 2.5.20250428-r1
Ebuild name:

dev-libs/hiprt-2.5.20250428-r1

Description

A ray tracing library for HIP

Added to portage

2026-04-04

icingaweb2-module-director - 1.11.7
Ebuild name:

www-apps/icingaweb2-module-director-1.11.7

Description

Icinga Web 2 plugin for configuration

Added to portage

2026-04-04

imapsync - 2.314
Ebuild name:

net-mail/imapsync-2.314

Description

Tool for incremental and recursive IMAP transfers between mailboxes

Added to portage

2026-04-04

jj - 0.40.0
Ebuild name:

dev-vcs/jj-0.40.0

Description

Jujutsu - an experimental version control system

Added to portage

2026-04-04

keepassxc - 2.7.11-r2
Ebuild name:

app-admin/keepassxc-2.7.11-r2

Description

KeePassXC - KeePass Cross-platform Community Edition

Added to portage

2026-04-04

keepassxc - 2.8.0_pre260316-r1
Ebuild name:

app-admin/keepassxc-2.8.0_pre260316-r1

Description

KeePassXC - KeePass Cross-platform Community Edition

Added to portage

2026-04-04

knot - 3.4.10
Ebuild name:

net-dns/knot-3.4.10

Description

High-performance authoritative-only DNS server

Added to portage

2026-04-04

knot - 3.5.4
Ebuild name:

net-dns/knot-3.5.4

Description

High-performance authoritative-only DNS server

Added to portage

2026-04-04

libqalculate - 5.10.0
Ebuild name:

sci-libs/libqalculate-5.10.0

Description

A modern multi-purpose calculator library

Added to portage

2026-04-04

libsdl2 - 2.32.66
Ebuild name:

media-libs/libsdl2-2.32.66

Description

Simple Direct Media Layer

Added to portage

2026-04-04

libsdl3 - 3.4.4
Ebuild name:

media-libs/libsdl3-3.4.4

Description

Simple Direct Media Layer

Added to portage

2026-04-04

libunistring - 1.4.2
Ebuild name:

dev-libs/libunistring-1.4.2

Description

Library for manipulating Unicode and C strings according to Unicode sta

Added to portage

2026-04-04

marshmallow - 4.3.0
Ebuild name:

dev-python/marshmallow-4.3.0

Description

A library for converting to and from native Python datatypes

Added to portage

2026-04-04

matlab - 6.1_p20241107
Ebuild name:

app-emacs/matlab-6.1_p20241107

Description

Major modes for MATLAB .m and .tlc files

Added to portage

2026-04-04

matlab - 6.1_p20241107
Ebuild name:

app-emacs/matlab-6.1_p20241107

Description

Major modes for MATLAB .m and .tlc files

Added to portage

2026-04-04

mediafile - 0.16.0
Ebuild name:

dev-python/mediafile-0.16.0

Description

Read and write audio files' tags in Python

Added to portage

2026-04-04

meson - 1.11.0_rc2
Ebuild name:

dev-build/meson-1.11.0_rc2

Description

Open source build system

Added to portage

2026-04-04

nextcloud-notify_push - 1.3.1
Ebuild name:

www-apps/nextcloud-notify_push-1.3.1

Description

Push daemon for Nextcloud clients

Added to portage

2026-04-04

openpgp-keys-knot - 20260304
Ebuild name:

sec-keys/openpgp-keys-knot-20260304

Description

OpenPGP keys used by the Knot DNS developers

Added to portage

2026-04-04

openrsync - 0.5.0_p20250127
Ebuild name:

net-misc/openrsync-0.5.0_p20250127

Description

BSD-licensed implementation of rsync

Added to portage

2026-04-04

phlex - 1.11.1
Ebuild name:

dev-ruby/phlex-1.11.1

Description

A framework for building object-oriented views in Ruby

Added to portage

2026-04-04

phlex - 2.2.2
Ebuild name:

dev-ruby/phlex-2.2.2

Description

A framework for building object-oriented views in Ruby

Added to portage

2026-04-04

phlex - 2.3.2
Ebuild name:

dev-ruby/phlex-2.3.2

Description

A framework for building object-oriented views in Ruby

Added to portage

2026-04-04

pound - 4.22
Ebuild name:

www-servers/pound-4.22

Description

A http/https reverse-proxy and load-balancer

Added to portage

2026-04-04

pybtex - 0.26.1
Ebuild name:

dev-python/pybtex-0.26.1

Description

BibTeX-compatible bibliography processor

Added to portage

2026-04-04

pydata-sphinx-theme - 0.17.0
Ebuild name:

dev-python/pydata-sphinx-theme-0.17.0

Description

Bootstrap-based Sphinx theme from the PyData community

Added to portage

2026-04-04

qalculate-gtk - 5.10.0
Ebuild name:

sci-calculators/qalculate-gtk-5.10.0

Description

Modern multi-purpose calculator

Added to portage

2026-04-04

qalculate-qt - 5.10.0
Ebuild name:

sci-calculators/qalculate-qt-5.10.0

Description

Qt-based UI for libqalculate

Added to portage

2026-04-04

redis-knot - 3.5.4
Ebuild name:

net-dns/redis-knot-3.5.4

Description

Redis module for Knot DNS

Added to portage

2026-04-04

regex - 2026.4.4
Ebuild name:

dev-python/regex-2026.4.4

Description

Alternative regular expression module to replace re

Added to portage

2026-04-04

ruff - 0.15.9
Ebuild name:

dev-util/ruff-0.15.9

Description

An extremely fast Python linter, written in Rust

Added to portage

2026-04-04

simdjson - 4.6.1
Ebuild name:

dev-libs/simdjson-4.6.1

Description

SIMD accelerated C++ JSON library

Added to portage

2026-04-04

snapraid - 14.1
Ebuild name:

sys-fs/snapraid-14.1

Description

Backup program with disk array for cold data on existing filesystems

Added to portage

2026-04-04

streamlink - 8.2.1
Ebuild name:

net-misc/streamlink-8.2.1

Description

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

Added to portage

2026-04-04

wine-vanilla - 11.6
Ebuild name:

app-emulation/wine-vanilla-11.6

Description

Free implementation of Windows(tm) on Unix, without external patchs

Added to portage

2026-04-04

xlsx2csv - 0.8.6
Ebuild name:

app-text/xlsx2csv-0.8.6

Description

Convert MS Office xlsx files to CSV

Added to portage

2026-04-04

xmlsec - 1.3.10-r1
Ebuild name:

dev-libs/xmlsec-1.3.10-r1

Description

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

Added to portage

2026-04-04

2026-04-03
android-studio - 2025.3.3.6
Ebuild name:

dev-util/android-studio-2025.3.3.6

Description

Android development environment based on IntelliJ IDEA

Added to portage

2026-04-03

audit - 4.1.4-r1
Ebuild name:

sys-process/audit-4.1.4-r1

Description

Userspace utilities for storing and processing auditing records

Added to portage

2026-04-03

awscli - 1.44.72
Ebuild name:

app-admin/awscli-1.44.72

Description

Universal Command Line Environment for AWS

Added to portage

2026-04-03

azure-core - 1.16.3
Ebuild name:

dev-cpp/azure-core-1.16.3

Description

Azure SDK for C++

Added to portage

2026-04-03

bedrock-server - 1.26.12.2
Ebuild name:

games-server/bedrock-server-1.26.12.2

Description

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

Added to portage

2026-04-03

bitarray - 3.8.1
Ebuild name:

dev-python/bitarray-3.8.1

Description

Efficient arrays of booleans -- C extension

Added to portage

2026-04-03

borgbackup - 1.4.4
Ebuild name:

app-backup/borgbackup-1.4.4

Description

Deduplicating backup program with compression and authenticated encrypt

Added to portage

2026-04-03

boto3 - 1.42.82
Ebuild name:

dev-python/boto3-1.42.82

Description

The AWS SDK for Python

Added to portage

2026-04-03

botocore - 1.42.82
Ebuild name:

dev-python/botocore-1.42.82

Description

Low-level, data-driven core of boto 3

Added to portage

2026-04-03

caffe2 - 2.11.0-r3
Ebuild name:

sci-ml/caffe2-2.11.0-r3

Description

A deep learning framework

Added to portage

2026-04-03

charset-normalizer - 3.4.7
Ebuild name:

dev-python/charset-normalizer-3.4.7

Description

The Real First Universal Charset Detector

Added to portage

2026-04-03

checkpolicy - 3.9
Ebuild name:

sys-apps/checkpolicy-3.9

Description

SELinux policy compiler

Added to portage

2026-04-03

dbus-fast - 4.0.4
Ebuild name:

dev-python/dbus-fast-4.0.4

Description

A faster version of dbus-next

Added to portage

2026-04-03

dieharder - 3.31.1-r5
Ebuild name:

app-crypt/dieharder-3.31.1-r5

Description

An advanced suite for testing the randomness of RNGs

Added to portage

2026-04-03

django-debug-toolbar - 6.3.0
Ebuild name:

dev-python/django-debug-toolbar-6.3.0

Description

A configurable set of panels that display various debug infor

Added to portage

2026-04-03

eduke32 - 20260203.10664
Ebuild name:

games-fps/eduke32-20260203.10664

Description

An open source engine port of the classic PC first person shooter

Added to portage

2026-04-03

electrum - 4.7.2
Ebuild name:

net-misc/electrum-4.7.2

Description

User friendly Bitcoin client

Added to portage

2026-04-03

faudio - 26.04
Ebuild name:

app-emulation/faudio-26.04

Description

Accuracy-focused XAudio reimplementation for open platforms

Added to portage

2026-04-03

feh - 3.11.4
Ebuild name:

media-gfx/feh-3.11.4

Description

A fast, lightweight imageviewer using imlib2

Added to portage

2026-04-03

gentoo-sources - 6.12.80
Ebuild name:

sys-kernel/gentoo-sources-6.12.80

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-04-03

gentoo-sources - 6.18.21
Ebuild name:

sys-kernel/gentoo-sources-6.18.21

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-04-03

gentoo-sources - 6.19.11
Ebuild name:

sys-kernel/gentoo-sources-6.19.11

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-04-03

gentoo-sources - 6.6.132
Ebuild name:

sys-kernel/gentoo-sources-6.6.132

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-04-03

ghostscript-gpl - 10.06.0-r2
Ebuild name:

app-text/ghostscript-gpl-10.06.0-r2

Description

Interpreter for the PostScript language and PDF

Added to portage

2026-04-03

google-api-core - 2.30.2
Ebuild name:

dev-python/google-api-core-2.30.2

Description

Core Library for Google Client Libraries

Added to portage

2026-04-03

googleapis-common-protos - 1.74.0
Ebuild name:

dev-python/googleapis-common-protos-1.74.0

Description

Python classes generated from the common protos in the g

Added to portage

2026-04-03

jupyter-lsp - 2.3.1
Ebuild name:

dev-python/jupyter-lsp-2.3.1

Description

Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab

Added to portage

2026-04-03

libfilezilla - 0.55.2
Ebuild name:

dev-libs/libfilezilla-0.55.2

Description

C++ library offering some basic functionality for platform-independent

Added to portage

2026-04-03

libjpeg-turbo - 3.1.4.1
Ebuild name:

media-libs/libjpeg-turbo-3.1.4.1

Description

MMX, SSE, and SSE2 SIMD accelerated JPEG library

Added to portage

2026-04-03

libselinux - 3.9
Ebuild name:

sys-libs/libselinux-3.9

Description

SELinux userland library

Added to portage

2026-04-03

libsemanage - 3.9
Ebuild name:

sys-libs/libsemanage-3.9

Description

SELinux kernel and policy management library

Added to portage

2026-04-03

libsepol - 3.9
Ebuild name:

sys-libs/libsepol-3.9

Description

SELinux binary policy representation library

Added to portage

2026-04-03

marshmallow - 4.2.4
Ebuild name:

dev-python/marshmallow-4.2.4

Description

A library for converting to and from native Python datatypes

Added to portage

2026-04-03

matlab - 9999
Ebuild name:

app-emacs/matlab-9999

Description

Major modes for MATLAB .m and .tlc files

Added to portage

2026-04-03

mcstrans - 3.9
Ebuild name:

sys-apps/mcstrans-3.9

Description

SELinux context translation to human readable names

Added to portage

2026-04-03

mediafile - 0.15.0
Ebuild name:

dev-python/mediafile-0.15.0

Description

Read and write audio files' tags in Python

Added to portage

2026-04-03

mediawiki - 2.3.1
Ebuild name:

app-emacs/mediawiki-2.3.1

Description

MediaWiki client for Emacs

Added to portage

2026-04-03

minecraft-server - 26.1.1
Ebuild name:

games-server/minecraft-server-26.1.1

Description

The official server for the sandbox video game

Added to portage

2026-04-03

more-itertools - 11.0.1
Ebuild name:

dev-python/more-itertools-11.0.1

Description

More routines for operating on iterables, beyond itertools

Added to portage

2026-04-03

nvidia-drivers - 595.44.05
Ebuild name:

x11-drivers/nvidia-drivers-595.44.05

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-04-03

openapi-core - 0.23.1
Ebuild name:

dev-python/openapi-core-0.23.1

Description

Client-side and server-side support for the OpenAPI Specification v3

Added to portage

2026-04-03

openssh - 10.3_p1
Ebuild name:

net-misc/openssh-10.3_p1

Description

Port of OpenBSD's free SSH release

Added to portage

2026-04-03

peewee - 4.0.4
Ebuild name:

dev-python/peewee-4.0.4

Description

Small Python ORM

Added to portage

2026-04-03

pjproject - 2.15.1-r2
Ebuild name:

net-libs/pjproject-2.15.1-r2

Description

Open source SIP, Media, and NAT Traversal Library

Added to portage

2026-04-03

pjproject - 2.16-r1
Ebuild name:

net-libs/pjproject-2.16-r1

Description

Open source SIP, Media, and NAT Traversal Library

Added to portage

2026-04-03

policycoreutils - 3.9
Ebuild name:

sys-apps/policycoreutils-3.9

Description

SELinux core utilities

Added to portage

2026-04-03

prowlarr-bin - 2.3.5.5323
Ebuild name:

www-apps/prowlarr-bin-2.3.5.5323

Description

An indexer manager/proxy to integrate with your various PVR apps

Added to portage

2026-04-03

pybtex - 0.26.0
Ebuild name:

dev-python/pybtex-0.26.0

Description

BibTeX-compatible bibliography processor

Added to portage

2026-04-03

pydevd - 3.5.0
Ebuild name:

dev-python/pydevd-3.5.0

Description

PyDev.Debugger (used in PyDev, PyCharm and VSCode Python)

Added to portage

2026-04-03

pypugjs - 6.0.2
Ebuild name:

dev-python/pypugjs-6.0.2

Description

Pug (Jade) syntax adapter for Django, Jinja2 and Mako templates

Added to portage

2026-04-03

pyside - 6.10.3
Ebuild name:

dev-python/pyside-6.10.3

Description

Python bindings for the Qt framework

Added to portage

2026-04-03

qutebrowser - 3.7.0
Ebuild name:

www-client/qutebrowser-3.7.0

Description

Keyboard-driven, vim-like browser based on Python and Qt

Added to portage

2026-04-03

restorecond - 3.9
Ebuild name:

sys-apps/restorecond-3.9

Description

Daemon to watch for creation and set default SELinux fcontexts

Added to portage

2026-04-03

secilc - 3.9
Ebuild name:

sys-apps/secilc-3.9

Description

SELinux Common Intermediate Language (CIL) Compiler

Added to portage

2026-04-03

seedfiles - 1.3
Ebuild name:

sys-apps/seedfiles-1.3

Description

Portable drop-in reimplementation of systemd-tmpfiles

Added to portage

2026-04-03

selinux-python - 3.9
Ebuild name:

sys-apps/selinux-python-3.9

Description

SELinux core utilities

Added to portage

2026-04-03

semodule-utils - 3.9
Ebuild name:

sys-apps/semodule-utils-3.9

Description

SELinux policy module utilities

Added to portage

2026-04-03

setools - 4.6.0
Ebuild name:

app-admin/setools-4.6.0

Description

Policy Analysis Tools for SELinux

Added to portage

2026-04-03

signal-desktop-bin - 8.5.0
Ebuild name:

net-im/signal-desktop-bin-8.5.0

Description

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

Added to portage

2026-04-03

stress-ng - 0.21.00
Ebuild name:

app-benchmarks/stress-ng-0.21.00

Description

Stress test for a computer system with various selectable ways

Added to portage

2026-04-03

tinyssh - 20260401
Ebuild name:

net-misc/tinyssh-20260401

Description

A small SSH server with state-of-the-art cryptography

Added to portage

2026-04-03

torchvision - 0.26.0
Ebuild name:

sci-ml/torchvision-0.26.0

Description

Datasets, transforms and models to specific to computer vision

Added to portage

2026-04-03

tree-sitter - 0.26.8
Ebuild name:

dev-libs/tree-sitter-0.26.8

Description

Tree-sitter is a parser generator tool and an incremental parsing libra

Added to portage

2026-04-03

tree-sitter-cli - 0.26.8
Ebuild name:

dev-util/tree-sitter-cli-0.26.8

Description

Command-line tool for creating and testing tree-sitter grammars

Added to portage

2026-04-03

util-linux - 2.41.4
Ebuild name:

sys-apps/util-linux-2.41.4

Description

Various useful Linux utilities

Added to portage

2026-04-03

uutils-coreutils - 0.7.0
Ebuild name:

sys-apps/uutils-coreutils-0.7.0

Description

GNU coreutils rewritten in Rust

Added to portage

2026-04-03

vanilla-sources - 6.6.132
Ebuild name:

sys-kernel/vanilla-sources-6.6.132

Description

Full sources for the Linux kernel

Added to portage

2026-04-03

vaultwarden - 1.35.4-r2
Ebuild name:

app-admin/vaultwarden-1.35.4-r2

Description

Unofficial Bitwarden compatible password manager

Added to portage

2026-04-03

vivaldi - 7.9.3970.47
Ebuild name:

www-client/vivaldi-7.9.3970.47

Description

A browser for our friends

Added to portage

2026-04-03

werkzeug - 3.1.8
Ebuild name:

dev-python/werkzeug-3.1.8

Description

Collection of various utilities for WSGI applications

Added to portage

2026-04-03

wireplumber - 0.5.14
Ebuild name:

media-video/wireplumber-0.5.14

Description

Replacement for pipewire-media-session

Added to portage

2026-04-03

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