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:

88686

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-25
awscli - 2.37.2
Ebuild name:

app-admin/awscli-2.37.2

Description

Universal Command Line Environment for AWS

Added to portage

2026-09-25

boto3 - 1.43.102
Ebuild name:

dev-python/boto3-1.43.102

Description

The AWS SDK for Python

Added to portage

2026-09-25

botocore - 1.43.102
Ebuild name:

dev-python/botocore-1.43.102

Description

Low-level, data-driven core of boto 3

Added to portage

2026-09-25

c-blosc2 - 3.3.5
Ebuild name:

dev-libs/c-blosc2-3.3.5

Description

Blocking, shuffling and lossless compression library

Added to portage

2026-09-25

chafa - 1.18.3
Ebuild name:

media-gfx/chafa-1.18.3

Description

versatile and fast Unicode/ASCII/ANSI graphics renderer

Added to portage

2026-09-25

containerd - 2.4.1
Ebuild name:

app-containers/containerd-2.4.1

Description

A daemon to control runC

Added to portage

2026-09-25

django-js-asset - 4.2.0
Ebuild name:

dev-python/django-js-asset-4.2.0

Description

Script tag with additional attributes for django.forms.Media

Added to portage

2026-09-25

gallery-dl - 1.32.13
Ebuild name:

net-misc/gallery-dl-1.32.13

Description

Download image galleries and collections from several image hosting sit

Added to portage

2026-09-25

ggml - 0.25.3
Ebuild name:

sci-ml/ggml-0.25.3

Description

Tensor library for machine learning

Added to portage

2026-09-25

github-cli - 2.101.0
Ebuild name:

dev-util/github-cli-2.101.0

Description

GitHub CLI

Added to portage

2026-09-25

gitlab-cli - 1.119.0
Ebuild name:

dev-util/gitlab-cli-1.119.0

Description

the official gitlab command line interface

Added to portage

2026-09-25

golangci-lint - 2.14.0
Ebuild name:

dev-go/golangci-lint-2.14.0

Description

Fast linters runner for Go

Added to portage

2026-09-25

google-api-core - 2.39.0
Ebuild name:

dev-python/google-api-core-2.39.0

Description

Core Library for Google Client Libraries

Added to portage

2026-09-25

google-auth - 2.58.1
Ebuild name:

dev-python/google-auth-2.58.1

Description

Google Authentication Library

Added to portage

2026-09-25

googleapis-common-protos - 1.75.4
Ebuild name:

dev-python/googleapis-common-protos-1.75.4

Description

Python classes generated from the common protos in the g

Added to portage

2026-09-25

groovy-emacs-modes - 2.1
Ebuild name:

app-emacs/groovy-emacs-modes-2.1

Description

Groovy major mode, grails minor mode, and a groovy inferior mode

Added to portage

2026-09-25

gruvbox-theme - 1.30.2
Ebuild name:

app-emacs/gruvbox-theme-1.30.2

Description

Gruvbox is a retro groove color scheme, now in Emacs

Added to portage

2026-09-25

gruvbox-theme - 1.30.3
Ebuild name:

app-emacs/gruvbox-theme-1.30.3

Description

Gruvbox is a retro groove color scheme, now in Emacs

Added to portage

2026-09-25

gruvbox-theme - 9999
Ebuild name:

app-emacs/gruvbox-theme-9999

Description

Gruvbox is a retro groove color scheme, now in Emacs

Added to portage

2026-09-25

h4x0r - 0.13-r1
Ebuild name:

app-emacs/h4x0r-0.13-r1

Description

Aid in writing like a script kiddie does

Added to portage

2026-09-25

haskell-mode - 17.4
Ebuild name:

app-emacs/haskell-mode-17.4

Description

Mode for editing (and running) Haskell programs in Emacs

Added to portage

2026-09-25

linode-cli - 5.69.0
Ebuild name:

app-admin/linode-cli-5.69.0

Description

Official command-line interface for interacting with the Linode API

Added to portage

2026-09-25

linode-metadata - 0.4.0
Ebuild name:

dev-python/linode-metadata-0.4.0

Description

Python bindings for the Linode Metadata Service

Added to portage

2026-09-25

magit - 4.7.1
Ebuild name:

app-emacs/magit-4.7.1

Description

A Git porcelain inside Emacs

Added to portage

2026-09-25

netpbm - 11.15.8
Ebuild name:

media-libs/netpbm-11.15.8

Description

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

Added to portage

2026-09-25

netpbm - 11.2.30
Ebuild name:

media-libs/netpbm-11.2.30

Description

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

Added to portage

2026-09-25

ollama - 0.34.4
Ebuild name:

sci-ml/ollama-0.34.4

Description

Get up and running with Llama 3, Mistral, Gemma, and other language models

Added to portage

2026-09-25

openjdk-bin - 27_p35
Ebuild name:

dev-java/openjdk-bin-27_p35

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-09-25

openjdk-bin - 28_alpha16
Ebuild name:

dev-java/openjdk-bin-28_alpha16

Description

Prebuilt Java JDK binaries provided by Eclipse Temurin

Added to portage

2026-09-25

package-build - 5.0.3
Ebuild name:

app-emacs/package-build-5.0.3

Description

Tools for assembling a package archive

Added to portage

2026-09-25

phonenumbers - 9.0.40
Ebuild name:

dev-python/phonenumbers-9.0.40

Description

Python port of Google's libphonenumber

Added to portage

2026-09-25

pymongo - 4.18.2
Ebuild name:

dev-python/pymongo-4.18.2

Description

Python driver for MongoDB

Added to portage

2026-09-25

pytz - 2026.4
Ebuild name:

dev-python/pytz-2026.4

Description

World timezone definitions for Python

Added to portage

2026-09-25

sqlalchemy - 2.1.0
Ebuild name:

dev-python/sqlalchemy-2.1.0

Description

Python SQL toolkit and Object Relational Mapper

Added to portage

2026-09-25

stripe-mock - 0.204.0
Ebuild name:

dev-util/stripe-mock-0.204.0

Description

Mock HTTP server that responds like the real Stripe API

Added to portage

2026-09-25

systemd-utils - 262
Ebuild name:

sys-apps/systemd-utils-262

Description

Utilities split out from systemd for OpenRC users

Added to portage

2026-09-25

tox - 4.64.2
Ebuild name:

dev-python/tox-4.64.2

Description

virtualenv-based automation of test activities

Added to portage

2026-09-25

untangle-https-backup - 0.2.0
Ebuild name:

app-backup/untangle-https-backup-0.2.0

Description

Back up Untangle configurations via the web admin UI

Added to portage

2026-09-25

uv - 0.12.19
Ebuild name:

dev-python/uv-0.12.19

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-09-25

uv-build - 0.12.19
Ebuild name:

dev-python/uv-build-0.12.19

Description

PEP517 uv build backend

Added to portage

2026-09-25

vertico - 2.15
Ebuild name:

app-emacs/vertico-2.15

Description

Vertical interactive completion

Added to portage

2026-09-25

virtualenv - 21.12.1
Ebuild name:

dev-python/virtualenv-21.12.1

Description

Virtual Python Environment builder

Added to portage

2026-09-25

ytmusicapi - 1.12.3
Ebuild name:

dev-python/ytmusicapi-1.12.3

Description

Unofficial API for YouTube Music

Added to portage

2026-09-25

zabbix - 6.0.48-r1
Ebuild name:

net-analyzer/zabbix-6.0.48-r1

Description

ZABBIX is software for monitoring of your applications, network and s

Added to portage

2026-09-25

zabbix - 7.0.30-r1
Ebuild name:

net-analyzer/zabbix-7.0.30-r1

Description

ZABBIX is software for monitoring of your applications, network and s

Added to portage

2026-09-25

zabbix - 7.0.31-r1
Ebuild name:

net-analyzer/zabbix-7.0.31-r1

Description

ZABBIX is software for monitoring of your applications, network and s

Added to portage

2026-09-25

zabbix - 7.4.14-r1
Ebuild name:

net-analyzer/zabbix-7.4.14-r1

Description

ZABBIX is software for monitoring of your applications, network and s

Added to portage

2026-09-25

zabbix - 7.4.15-r1
Ebuild name:

net-analyzer/zabbix-7.4.15-r1

Description

ZABBIX is software for monitoring of your applications, network and s

Added to portage

2026-09-25

zedis - 0.11.1
Ebuild name:

dev-db/zedis-0.11.1

Description

Blazing-fast native Redis GUI built with Rust and GPUI

Added to portage

2026-09-25

zsnes - 2.3.2
Ebuild name:

games-emulation/zsnes-2.3.2

Description

Fork of the classic Super Nintendo emulator

Added to portage

2026-09-25

2026-09-24
ack - 3.10.0
Ebuild name:

sys-apps/ack-3.10.0

Description

ack is a tool like grep, optimized for programmers

Added to portage

2026-09-24

avahi - 0.9_rc5
Ebuild name:

net-dns/avahi-0.9_rc5

Description

System which facilitates service discovery on a local network

Added to portage

2026-09-24

awscli - 2.37.1
Ebuild name:

app-admin/awscli-2.37.1

Description

Universal Command Line Environment for AWS

Added to portage

2026-09-24

awscrt - 0.37.0
Ebuild name:

dev-python/awscrt-0.37.0

Description

A common runtime for AWS Python projects

Added to portage

2026-09-24

boto3 - 1.43.101
Ebuild name:

dev-python/boto3-1.43.101

Description

The AWS SDK for Python

Added to portage

2026-09-24

botocore - 1.43.101
Ebuild name:

dev-python/botocore-1.43.101

Description

Low-level, data-driven core of boto 3

Added to portage

2026-09-24

castxml - 0.8.0
Ebuild name:

dev-libs/castxml-0.8.0

Description

C-family abstract syntax tree XML output tool

Added to portage

2026-09-24

chrome-binary-plugins - 154.0.8037.57
Ebuild name:

www-plugins/chrome-binary-plugins-154.0.8037.57

Description

Binary plugins from Google Chrome for use in Chromi

Added to portage

2026-09-24

chrome-binary-plugins - 155.0.8059.12_beta
Ebuild name:

www-plugins/chrome-binary-plugins-155.0.8059.12_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-09-24

chrome-binary-plugins - 156.0.8063.3_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-156.0.8063.3_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-09-24

chromedriver-bin - 154.0.8037.57
Ebuild name:

www-apps/chromedriver-bin-154.0.8037.57

Description

WebDriver for Chrome

Added to portage

2026-09-24

claude-code - 2.1.280
Ebuild name:

dev-util/claude-code-2.1.280

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2026-09-24

clusterssh - 4.19
Ebuild name:

net-misc/clusterssh-4.19

Description

Concurrent Multi-Server Terminal Access

Added to portage

2026-09-24

containerd - 2.4.0
Ebuild name:

app-containers/containerd-2.4.0

Description

A daemon to control runC

Added to portage

2026-09-24

docker - 29.8.1
Ebuild name:

app-containers/docker-29.8.1

Description

The core functions you need to create Docker images and run Docker con

Added to portage

2026-09-24

docker-cli - 29.8.1
Ebuild name:

app-containers/docker-cli-29.8.1

Description

the command line binary for docker

Added to portage

2026-09-24

dropbox - 270.4.3312
Ebuild name:

net-misc/dropbox-270.4.3312

Description

Dropbox daemon (pretends to be GUI-less)

Added to portage

2026-09-24

filelock - 4.0.3
Ebuild name:

dev-python/filelock-4.0.3

Description

A platform independent file lock for Python

Added to portage

2026-09-24

flake8 - 7.4.1
Ebuild name:

dev-python/flake8-7.4.1

Description

A wrapper around PyFlakes, pep8 & mccabe

Added to portage

2026-09-24

fonttools - 4.66.0
Ebuild name:

dev-python/fonttools-4.66.0

Description

Library for manipulating TrueType, OpenType, AFM and Type1 fonts

Added to portage

2026-09-24

framework_tool - 0.6.6
Ebuild name:

app-laptop/framework_tool-0.6.6

Description

Tool to control Framework Computer systems

Added to portage

2026-09-24

freerdp - 3.32.0
Ebuild name:

net-misc/freerdp-3.32.0

Description

Free implementation of the Remote Desktop Protocol

Added to portage

2026-09-24

fwupd - 2.1.8
Ebuild name:

sys-apps/fwupd-2.1.8

Description

Aims to make updating firmware on Linux automatic, safe and reliable

Added to portage

2026-09-24

girara - 2026.07.18
Ebuild name:

dev-libs/girara-2026.07.18

Description

UI library that focuses on simplicity and minimalism

Added to portage

2026-09-24

gnupg - 2.5.24
Ebuild name:

app-crypt/gnupg-2.5.24

Description

The GNU Privacy Guard, a GPL OpenPGP implementation

Added to portage

2026-09-24

google-chrome - 154.0.8037.57
Ebuild name:

www-client/google-chrome-154.0.8037.57

Description

The web browser from Google

Added to portage

2026-09-24

google-chrome-beta - 155.0.8059.12
Ebuild name:

www-client/google-chrome-beta-155.0.8059.12

Description

The web browser from Google

Added to portage

2026-09-24

google-chrome-unstable - 156.0.8063.3
Ebuild name:

www-client/google-chrome-unstable-156.0.8063.3

Description

The web browser from Google

Added to portage

2026-09-24

haskell-mode - 17.5_p20260206
Ebuild name:

app-emacs/haskell-mode-17.5_p20260206

Description

Mode for editing (and running) Haskell programs in Emacs

Added to portage

2026-09-24

haskell-mode - 9999
Ebuild name:

app-emacs/haskell-mode-9999

Description

Mode for editing (and running) Haskell programs in Emacs

Added to portage

2026-09-24

haxe-mode - 0.3.3
Ebuild name:

app-emacs/haxe-mode-0.3.3

Description

Major mode for editing Haxe files

Added to portage

2026-09-24

helm - 4.0.7
Ebuild name:

app-emacs/helm-4.0.7

Description

Emacs incremental completion and selection narrowing framework

Added to portage

2026-09-24

httpx2 - 2.13.1
Ebuild name:

dev-python/httpx2-2.13.1

Description

The next generation HTTP client (Pydantic fork)

Added to portage

2026-09-24

hypothesis - 6.168.1
Ebuild name:

dev-python/hypothesis-6.168.1

Description

A library for property based testing

Added to portage

2026-09-24

imagemagick - 7.1.2.31
Ebuild name:

media-gfx/imagemagick-7.1.2.31

Description

A collection of tools and libraries for many image formats

Added to portage

2026-09-24

kitty - 0.49.1
Ebuild name:

x11-terms/kitty-0.49.1

Description

Fast, feature-rich, GPU-based terminal

Added to portage

2026-09-24

kitty-shell-integration - 0.49.1
Ebuild name:

x11-terms/kitty-shell-integration-0.49.1

Description

Shell integration scripts for kitty, a GPU-based terminal

Added to portage

2026-09-24

kitty-terminfo - 0.49.1
Ebuild name:

x11-terms/kitty-terminfo-0.49.1

Description

Terminfo for kitty, a GPU-based terminal emulator

Added to portage

2026-09-24

libcpuid - 0.8.2
Ebuild name:

dev-libs/libcpuid-0.8.2

Description

A small C library for x86 (and x86_64) CPU detection and feature extraction

Added to portage

2026-09-24

microsoft-edge - 153.0.4234.48
Ebuild name:

www-client/microsoft-edge-153.0.4234.48

Description

The web browser from Microsoft

Added to portage

2026-09-24

microsoft-edge-beta - 154.0.4258.24
Ebuild name:

www-client/microsoft-edge-beta-154.0.4258.24

Description

The web browser from Microsoft

Added to portage

2026-09-24

microsoft-edge-beta - 154.0.4258.32
Ebuild name:

www-client/microsoft-edge-beta-154.0.4258.32

Description

The web browser from Microsoft

Added to portage

2026-09-24

microsoft-edge-beta - 155.0.4283.13
Ebuild name:

www-client/microsoft-edge-beta-155.0.4283.13

Description

The web browser from Microsoft

Added to portage

2026-09-24

microsoft-edge-dev - 155.0.4273.0
Ebuild name:

www-client/microsoft-edge-dev-155.0.4273.0

Description

The web browser from Microsoft

Added to portage

2026-09-24

microsoft-edge-dev - 156.0.4285.0
Ebuild name:

www-client/microsoft-edge-dev-156.0.4285.0

Description

The web browser from Microsoft

Added to portage

2026-09-24

ntfs3g - 2026.9.18-r1
Ebuild name:

sys-fs/ntfs3g-2026.9.18-r1

Description

Open source read-write NTFS driver that runs under FUSE

Added to portage

2026-09-24

nwjs - 0.116.0
Ebuild name:

dev-libs/nwjs-0.116.0

Description

Framework that lets you call all Node.js modules directly from the DOM

Added to portage

2026-09-24

pf-sources - 7.2_p6
Ebuild name:

sys-kernel/pf-sources-7.2_p6

Description

Added to portage

2026-09-24

plasma-wayland-protocols - 1.23.0
Ebuild name:

dev-libs/plasma-wayland-protocols-1.23.0

Description

Plasma Specific Protocols for Wayland

Added to portage

2026-09-24

postgresql - 19_beta4
Ebuild name:

dev-db/postgresql-19_beta4

Description

PostgreSQL RDBMS

Added to portage

2026-09-24

pyjwt - 2.15.0
Ebuild name:

dev-python/pyjwt-2.15.0

Description

JSON Web Token implementation in Python

Added to portage

2026-09-24

pylint - 4.0.9
Ebuild name:

dev-python/pylint-4.0.9

Description

Python code static checker

Added to portage

2026-09-24

pytorch - 2.14.0-r4
Ebuild name:

sci-ml/pytorch-2.14.0-r4

Description

Tensors and Dynamic neural networks in Python with strong GPU acceleration

Added to portage

2026-09-24

qt-creator - 20.0.2
Ebuild name:

dev-qt/qt-creator-20.0.2

Description

Lightweight IDE for C++/QML development centering around Qt

Added to portage

2026-09-24

setuptools-scm - 10.3.4
Ebuild name:

dev-python/setuptools-scm-10.3.4

Description

Manage versions by scm tags via setuptools

Added to portage

2026-09-24

soupsieve - 2.10
Ebuild name:

dev-python/soupsieve-2.10

Description

A modern CSS selector implementation for BeautifulSoup

Added to portage

2026-09-24

starlette - 1.7.0
Ebuild name:

dev-python/starlette-1.7.0

Description

The little ASGI framework that shines

Added to portage

2026-09-24

tor - 0.4.9.13
Ebuild name:

net-vpn/tor-0.4.9.13

Description

Anonymizing overlay network for TCP

Added to portage

2026-09-24

tox - 4.64.1
Ebuild name:

dev-python/tox-4.64.1

Description

virtualenv-based automation of test activities

Added to portage

2026-09-24

types-docutils - 0.23.0.20260923
Ebuild name:

dev-python/types-docutils-0.23.0.20260923

Description

Typing stubs for docutils

Added to portage

2026-09-24

untangle - 1.3.0
Ebuild name:

dev-python/untangle-1.3.0

Description

Convert XML documents into Python objects

Added to portage

2026-09-24

upterm - 0.31.0
Ebuild name:

app-misc/upterm-0.31.0

Description

Instant Terminal Sharing

Added to portage

2026-09-24

urwid - 4.1.7
Ebuild name:

dev-python/urwid-4.1.7

Description

Curses-based user interface library for Python

Added to portage

2026-09-24

uzdoom - 5.0.3
Ebuild name:

games-engines/uzdoom-5.0.3

Description

Modder-friendly hardware-accelerated source port of the DOOM engine

Added to portage

2026-09-24

vcmi - 1.7.5
Ebuild name:

games-strategy/vcmi-1.7.5

Description

Open-source engine for Heroes of Might and Magic III

Added to portage

2026-09-24

vcs-versioning - 2.5.0
Ebuild name:

dev-python/vcs-versioning-2.5.0

Description

Core VCS versioning functionality from setuptools-scm

Added to portage

2026-09-24

virtualenv - 21.12.0
Ebuild name:

dev-python/virtualenv-21.12.0

Description

Virtual Python Environment builder

Added to portage

2026-09-24

vlc - 3.0.24
Ebuild name:

media-video/vlc-3.0.24

Description

Media player and framework with support for most multimedia files and stream

Added to portage

2026-09-24

wcwidth - 0.9.1
Ebuild name:

dev-python/wcwidth-0.9.1

Description

Measures number of Terminal column cells of wide-character codes

Added to portage

2026-09-24

wiremix - 0.11.0
Ebuild name:

media-sound/wiremix-0.11.0

Description

A TUI mixer for PipeWire

Added to portage

2026-09-24

xwaylandvideobridge - 0.5.3
Ebuild name:

gui-apps/xwaylandvideobridge-0.5.3

Description

Screenshare Wayland windows to XWayland apps

Added to portage

2026-09-24

zathura - 2026.07.18
Ebuild name:

app-text/zathura-2026.07.18

Description

Highly customizable & functional document viewer

Added to portage

2026-09-24

zathura-cb - 2026.07.18
Ebuild name:

app-text/zathura-cb-2026.07.18

Description

Comic book plug-in for zathura with 7zip, rar, tar and zip support

Added to portage

2026-09-24

zathura-djvu - 2026.07.18
Ebuild name:

app-text/zathura-djvu-2026.07.18

Description

DjVu plug-in for zathura

Added to portage

2026-09-24

zathura-pdf-mupdf - 2026.07.18
Ebuild name:

app-text/zathura-pdf-mupdf-2026.07.18

Description

PDF support for zathura using the mupdf PDF rendering library

Added to portage

2026-09-24

zathura-pdf-poppler - 2026.07.18
Ebuild name:

app-text/zathura-pdf-poppler-2026.07.18

Description

PDF plug-in for zathura

Added to portage

2026-09-24

zathura-ps - 2026.07.18
Ebuild name:

app-text/zathura-ps-2026.07.18

Description

PostScript plug-in for zathura

Added to portage

2026-09-24

zen-sources - 7.2.7
Ebuild name:

sys-kernel/zen-sources-7.2.7

Description

The Zen Kernel Live Sources

Added to portage

2026-09-24

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