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:

80457

userrating:

average rating: 1.2 (50 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.7 (41 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
2025-08-28
alembic - 1.16.5
Ebuild name:

dev-python/alembic-1.16.5

Description

Database migrations tool, written by the author of SQLAlchemy

Added to portage

2025-08-28

awscli - 1.42.19
Ebuild name:

app-admin/awscli-1.42.19

Description

Universal Command Line Environment for AWS

Added to portage

2025-08-28

boto3 - 1.40.19
Ebuild name:

dev-python/boto3-1.40.19

Description

The AWS SDK for Python

Added to portage

2025-08-28

botocore - 1.40.19
Ebuild name:

dev-python/botocore-1.40.19

Description

Low-level, data-driven core of boto 3

Added to portage

2025-08-28

chrome-binary-plugins - 139.0.7258.154
Ebuild name:

www-plugins/chrome-binary-plugins-139.0.7258.154

Description

Binary plugins from Google Chrome for use in Chrom

Added to portage

2025-08-28

chrome-binary-plugins - 140.0.7339.41_beta
Ebuild name:

www-plugins/chrome-binary-plugins-140.0.7339.41_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2025-08-28

chromium - 139.0.7258.154
Ebuild name:

www-client/chromium-139.0.7258.154

Description

Open-source version of Google Chrome web browser

Added to portage

2025-08-28

chrony - 4.8
Ebuild name:

net-misc/chrony-4.8

Description

NTP client and server programs

Added to portage

2025-08-28

claude-code - 1.0.93
Ebuild name:

dev-util/claude-code-1.0.93

Description

Claude Code - an agentic coding tool by Anthropic

Added to portage

2025-08-28

dnscrypt-proxy - 2.1.13
Ebuild name:

net-dns/dnscrypt-proxy-2.1.13

Description

Flexible DNS proxy, with support for encrypted DNS protocols

Added to portage

2025-08-28

dustrac - 2.1.1
Ebuild name:

games-sports/dustrac-2.1.1

Description

Tile-based, cross-platform 2D racing game

Added to portage

2025-08-28

firefox-bin - 142.0.1
Ebuild name:

www-client/firefox-bin-142.0.1

Description

Firefox Web Browser

Added to portage

2025-08-28

flameshot - 13.1.0
Ebuild name:

media-gfx/flameshot-13.1.0

Description

Powerful yet simple to use screenshot software

Added to portage

2025-08-28

fonttools - 4.59.2
Ebuild name:

dev-python/fonttools-4.59.2

Description

Library for manipulating TrueType, OpenType, AFM and Type1 fonts

Added to portage

2025-08-28

google-chrome - 139.0.7258.154
Ebuild name:

www-client/google-chrome-139.0.7258.154

Description

The web browser from Google

Added to portage

2025-08-28

google-chrome-beta - 140.0.7339.41
Ebuild name:

www-client/google-chrome-beta-140.0.7339.41

Description

The web browser from Google

Added to portage

2025-08-28

google-chrome-unstable - 141.0.7367.0
Ebuild name:

www-client/google-chrome-unstable-141.0.7367.0

Description

The web browser from Google

Added to portage

2025-08-28

hashcat - 7.1.2
Ebuild name:

app-crypt/hashcat-7.1.2

Description

World's fastest and most advanced password recovery utility

Added to portage

2025-08-28

hypothesis - 6.138.6
Ebuild name:

dev-python/hypothesis-6.138.6

Description

A library for property based testing

Added to portage

2025-08-28

joblib - 1.5.2
Ebuild name:

dev-python/joblib-1.5.2

Description

Tools to provide lightweight pipelining in Python

Added to portage

2025-08-28

jupyter-lsp - 2.3.0
Ebuild name:

dev-python/jupyter-lsp-2.3.0

Description

Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab

Added to portage

2025-08-28

libthreadar - 1.6.1
Ebuild name:

dev-libs/libthreadar-1.6.1

Description

Threading library used by dar archiver

Added to portage

2025-08-28

loky - 3.5.6
Ebuild name:

dev-python/loky-3.5.6

Description

Robust and reusable Executor for joblib

Added to portage

2025-08-28

microsoft-edge - 139.0.3405.119
Ebuild name:

www-client/microsoft-edge-139.0.3405.119

Description

The web browser from Microsoft

Added to portage

2025-08-28

microsoft-edge-beta - 140.0.3485.31
Ebuild name:

www-client/microsoft-edge-beta-140.0.3485.31

Description

The web browser from Microsoft

Added to portage

2025-08-28

microsoft-edge-dev - 141.0.3514.0
Ebuild name:

www-client/microsoft-edge-dev-141.0.3514.0

Description

The web browser from Microsoft

Added to portage

2025-08-28

nftables - 1.1.5
Ebuild name:

net-firewall/nftables-1.1.5

Description

Linux kernel firewall, NAT and packet mangling tools

Added to portage

2025-08-28

opera - 120.0.5543.201
Ebuild name:

www-client/opera-120.0.5543.201

Description

A fast and secure web browser

Added to portage

2025-08-28

projectile - 2.8.0-r1
Ebuild name:

app-emacs/projectile-2.8.0-r1

Description

A project interaction library for Emacs

Added to portage

2025-08-28

prompt-toolkit - 3.0.52
Ebuild name:

dev-python/prompt-toolkit-3.0.52

Description

Building powerful interactive command lines in Python

Added to portage

2025-08-28

pyspelling - 2.11
Ebuild name:

dev-python/pyspelling-2.11

Description

Spell checker automation tool

Added to portage

2025-08-28

rapidfuzz - 3.14.0
Ebuild name:

dev-python/rapidfuzz-3.14.0

Description

Rapid fuzzy string matching in Python using various string metrics

Added to portage

2025-08-28

rapidfuzz-cpp - 3.3.3
Ebuild name:

dev-cpp/rapidfuzz-cpp-3.3.3

Description

Rapid fuzzy string matching in C++

Added to portage

2025-08-28

rpds-py - 0.27.1
Ebuild name:

dev-python/rpds-py-0.27.1

Description

Python bindings to Rust's persistent data structures (rpds)

Added to portage

2025-08-28

sedlex - 3.6
Ebuild name:

dev-ml/sedlex-3.6

Description

Added to portage

2025-08-28

soupsieve - 2.8
Ebuild name:

dev-python/soupsieve-2.8

Description

A modern CSS selector implementation for BeautifulSoup

Added to portage

2025-08-28

spdx_licenses - 1.4.0
Ebuild name:

dev-ml/spdx_licenses-1.4.0

Description

A library providing a strict SPDX License Expression parser

Added to portage

2025-08-28

sqlglot - 27.9.0
Ebuild name:

dev-python/sqlglot-27.9.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2025-08-28

stdcompat - 21.1
Ebuild name:

dev-ml/stdcompat-21.1

Description

Compatibility module for OCaml standard library

Added to portage

2025-08-28

stripe - 12.5.0
Ebuild name:

dev-python/stripe-12.5.0

Description

Stripe Python bindings

Added to portage

2025-08-28

tifffile - 2025.8.28
Ebuild name:

dev-python/tifffile-2025.8.28

Description

Read and write TIFF files

Added to portage

2025-08-28

vivaldi-snapshot - 7.6.3791.3
Ebuild name:

www-client/vivaldi-snapshot-7.6.3791.3

Description

A browser for our friends

Added to portage

2025-08-28

wayfire - 0.10.0
Ebuild name:

gui-wm/wayfire-0.10.0

Description

compiz like 3D wayland compositor

Added to portage

2025-08-28

wayfire-plugins-extra - 0.10.0
Ebuild name:

gui-libs/wayfire-plugins-extra-0.10.0

Description

extra plugins for wayfire

Added to portage

2025-08-28

wcm - 0.10.0
Ebuild name:

gui-apps/wcm-0.10.0

Description

Wayfire Config Manager

Added to portage

2025-08-28

wf-config - 0.10.0
Ebuild name:

gui-libs/wf-config-0.10.0

Description

library for managing wayfire configuration files

Added to portage

2025-08-28

wf-shell - 0.10.0
Ebuild name:

gui-apps/wf-shell-0.10.0

Description

Compiz like 3D wayland compositor

Added to portage

2025-08-28

yt-dlp - 2025.08.27
Ebuild name:

net-misc/yt-dlp-2025.08.27

Description

youtube-dl fork with additional features and fixes

Added to portage

2025-08-28

yubihsm-shell - 2.6.0
Ebuild name:

app-crypt/yubihsm-shell-2.6.0

Description

Components used to interact with the YubiHSM 2

Added to portage

2025-08-28

yyjson - 0.12.0
Ebuild name:

dev-libs/yyjson-0.12.0

Description

Fast JSON library in C

Added to portage

2025-08-28

2025-08-27
algol68g - 3.8.0
Ebuild name:

dev-lang/algol68g-3.8.0

Description

Algol 68 Genie compiler-interpreter

Added to portage

2025-08-27

asclock - 2.0.12-r5
Ebuild name:

x11-plugins/asclock-2.0.12-r5

Description

Clock applet for AfterStep

Added to portage

2025-08-27

authlib - 1.6.3
Ebuild name:

dev-python/authlib-1.6.3

Description

A Python library in building OAuth and OpenID Connect servers and clients

Added to portage

2025-08-27

awscli - 1.42.18
Ebuild name:

app-admin/awscli-1.42.18

Description

Universal Command Line Environment for AWS

Added to portage

2025-08-27

boto3 - 1.40.18
Ebuild name:

dev-python/boto3-1.40.18

Description

The AWS SDK for Python

Added to portage

2025-08-27

botocore - 1.40.18
Ebuild name:

dev-python/botocore-1.40.18

Description

Low-level, data-driven core of boto 3

Added to portage

2025-08-27

cfn-lint - 1.39.1
Ebuild name:

dev-python/cfn-lint-1.39.1

Description

CloudFormation Linter

Added to portage

2025-08-27

clang - 21.1.0
Ebuild name:

dev-python/clang-21.1.0

Description

Python bindings for llvm-core/clang

Added to portage

2025-08-27

clang - 21.1.0
Ebuild name:

llvm-core/clang-21.1.0

Description

C language family frontend for LLVM

Added to portage

2025-08-27

clang-common - 21.1.0
Ebuild name:

llvm-core/clang-common-21.1.0

Description

Common files shared between multiple slots of clang

Added to portage

2025-08-27

clang-runtime - 21.1.0
Ebuild name:

llvm-core/clang-runtime-21.1.0

Description

Meta-ebuild for clang runtime libraries

Added to portage

2025-08-27

compiler-rt - 21.1.0
Ebuild name:

llvm-runtimes/compiler-rt-21.1.0

Description

Compiler runtime library for clang (built-in part)

Added to portage

2025-08-27

compiler-rt-sanitizers - 21.1.0
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-21.1.0

Description

Compiler runtime libraries for clang (sanitizers & xray

Added to portage

2025-08-27

discord - 0.0.107
Ebuild name:

net-im/discord-0.0.107

Description

All-in-one voice and text chat for gamers

Added to portage

2025-08-27

email-validator - 2.3.0
Ebuild name:

dev-python/email-validator-2.3.0

Description

A robust email syntax and deliverability validation library

Added to portage

2025-08-27

fakefs - 3.0.2
Ebuild name:

dev-ruby/fakefs-3.0.2

Description

A fake filesystem. Use it in your tests

Added to portage

2025-08-27

faker - 37.6.0
Ebuild name:

dev-python/faker-37.6.0

Description

A Python package that generates fake data for you

Added to portage

2025-08-27

fd - 10.3.0
Ebuild name:

sys-apps/fd-10.3.0

Description

Alternative to find that provides sensible defaults for 80% of the use cases

Added to portage

2025-08-27

flang - 21.1.0
Ebuild name:

llvm-core/flang-21.1.0

Description

LLVM's Fortran frontend

Added to portage

2025-08-27

flang-rt - 21.1.0
Ebuild name:

llvm-runtimes/flang-rt-21.1.0

Description

LLVM's Fortran runtime

Added to portage

2025-08-27

fonttools - 4.59.0-r1
Ebuild name:

dev-python/fonttools-4.59.0-r1

Description

Library for manipulating TrueType, OpenType, AFM and Type1 fonts

Added to portage

2025-08-27

fonttools - 4.59.1-r1
Ebuild name:

dev-python/fonttools-4.59.1-r1

Description

Library for manipulating TrueType, OpenType, AFM and Type1 fonts

Added to portage

2025-08-27

fractal - 12.1
Ebuild name:

net-im/fractal-12.1

Description

Matrix messaging app for GNOME written in Rust

Added to portage

2025-08-27

geos - 3.14.0
Ebuild name:

sci-libs/geos-3.14.0

Description

Geometry engine library for Geographic Information Systems

Added to portage

2025-08-27

griffe - 1.13.0
Ebuild name:

dev-python/griffe-1.13.0

Description

Signature generator for Python programs

Added to portage

2025-08-27

harfbuzz - 11.4.4
Ebuild name:

media-libs/harfbuzz-11.4.4

Description

An OpenType text shaping engine

Added to portage

2025-08-27

kubo - 0.36.0
Ebuild name:

net-p2p/kubo-0.36.0

Description

Main implementation of IPFS

Added to portage

2025-08-27

libclc - 21.1.0
Ebuild name:

llvm-core/libclc-21.1.0

Description

OpenCL C library

Added to portage

2025-08-27

libcxx - 21.1.0
Ebuild name:

llvm-runtimes/libcxx-21.1.0

Description

New implementation of the C++ standard library, targeting C++11

Added to portage

2025-08-27

libcxxabi - 21.1.0
Ebuild name:

llvm-runtimes/libcxxabi-21.1.0

Description

Low level support for a standard C++ library

Added to portage

2025-08-27

libgcc - 21.1.0
Ebuild name:

llvm-runtimes/libgcc-21.1.0

Description

Compiler runtime library for clang, compatible with libgcc_s

Added to portage

2025-08-27

libunwind - 21.1.0
Ebuild name:

llvm-runtimes/libunwind-21.1.0

Description

C++ runtime stack unwinder from LLVM

Added to portage

2025-08-27

lit - 21.1.0
Ebuild name:

dev-python/lit-21.1.0

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2025-08-27

lld - 21.1.0
Ebuild name:

llvm-core/lld-21.1.0

Description

The LLVM linker (link editor)

Added to portage

2025-08-27

lldb - 21.1.0
Ebuild name:

llvm-core/lldb-21.1.0

Description

The LLVM debugger

Added to portage

2025-08-27

llvm - 21.1.0
Ebuild name:

dev-ml/llvm-21.1.0

Description

OCaml bindings for LLVM

Added to portage

2025-08-27

llvm - 21.1.0
Ebuild name:

llvm-core/llvm-21.1.0

Description

Low Level Virtual Machine

Added to portage

2025-08-27

llvm-common - 21.1.0
Ebuild name:

llvm-core/llvm-common-21.1.0

Description

Common files shared between multiple slots of LLVM

Added to portage

2025-08-27

maturin - 1.9.4
Ebuild name:

dev-util/maturin-1.9.4

Description

Build and publish crates with pyo3, rust-cpython and cffi bindings

Added to portage

2025-08-27

mkdocs-autorefs - 1.4.3
Ebuild name:

dev-python/mkdocs-autorefs-1.4.3

Description

Automatically link across pages in MkDoc

Added to portage

2025-08-27

mkdocstrings-python - 1.18.0
Ebuild name:

dev-python/mkdocstrings-python-1.18.0

Description

Python handler for dev-python/mkdocstrings

Added to portage

2025-08-27

mlir - 21.1.0
Ebuild name:

llvm-core/mlir-21.1.0

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2025-08-27

nginx - 1.28.0-r1
Ebuild name:

www-servers/nginx-1.28.0-r1

Description

Added to portage

2025-08-27

nginx - 1.29.0-r3
Ebuild name:

www-servers/nginx-1.29.0-r3

Description

Added to portage

2025-08-27

nginx - 1.29.1-r1
Ebuild name:

www-servers/nginx-1.29.1-r1

Description

Added to portage

2025-08-27

nginx-unit - 1.34.2-r1
Ebuild name:

www-servers/nginx-unit-1.34.2-r1

Description

Dynamic web and application server

Added to portage

2025-08-27

nuitka - 2.7.13
Ebuild name:

dev-python/nuitka-2.7.13

Description

Python to native compiler

Added to portage

2025-08-27

num - 1.6-r1
Ebuild name:

dev-ml/num-1.6-r1

Description

Library for arbitrary-precision integer and rational arithmetic

Added to portage

2025-08-27

offload - 21.1.0
Ebuild name:

llvm-runtimes/offload-21.1.0

Description

OpenMP offloading support

Added to portage

2025-08-27

openmp - 21.1.0
Ebuild name:

llvm-runtimes/openmp-21.1.0

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2025-08-27

orjson - 3.11.3
Ebuild name:

dev-python/orjson-3.11.3

Description

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

Added to portage

2025-08-27

pbs-installer - 2025.08.27
Ebuild name:

dev-python/pbs-installer-2025.08.27

Description

Installer for Python Build Standalone

Added to portage

2025-08-27

pkg-config - 1.6.3
Ebuild name:

dev-ruby/pkg-config-1.6.3

Description

A pkg-config implementation by Ruby

Added to portage

2025-08-27

platformdirs - 4.4.0
Ebuild name:

dev-python/platformdirs-4.4.0

Description

A small Python module for determining appropriate platform-specific d

Added to portage

2025-08-27

polly - 21.1.0
Ebuild name:

llvm-core/polly-21.1.0

Description

Polyhedral optimizations for LLVM

Added to portage

2025-08-27

postgis - 3.6.0_rc2
Ebuild name:

dev-db/postgis-3.6.0_rc2

Description

Geographic Objects for PostgreSQL

Added to portage

2025-08-27

ppxlib - 0.36.1-r1
Ebuild name:

dev-ml/ppxlib-0.36.1-r1

Description

Base library and tools for ppx rewriters

Added to portage

2025-08-27

proj - 9.6.2
Ebuild name:

sci-libs/proj-9.6.2

Description

PROJ coordinate transformation software

Added to portage

2025-08-27

projectile - 2.9.1
Ebuild name:

app-emacs/projectile-2.9.1

Description

A project interaction library for Emacs

Added to portage

2025-08-27

proofgeneral - 4.5
Ebuild name:

app-emacs/proofgeneral-4.5

Description

A generic interface for proof assistants

Added to portage

2025-08-27

python-lsp-server - 1.13.1
Ebuild name:

dev-python/python-lsp-server-1.13.1

Description

Python Language Server for the Language Server Protocol

Added to portage

2025-08-27

qdirstat - 1.9_p20250726-r1
Ebuild name:

sys-apps/qdirstat-1.9_p20250726-r1

Description

Qt-based directory statistics

Added to portage

2025-08-27

qmmp - 2.2.8
Ebuild name:

media-sound/qmmp-2.2.8

Description

Qt-based audio player with winamp/xmms skins support

Added to portage

2025-08-27

recog - 3.1.21
Ebuild name:

dev-ruby/recog-3.1.21

Description

Pattern recognition for hosts, services, and content

Added to portage

2025-08-27

rofi-calc - 2.4.0
Ebuild name:

x11-misc/rofi-calc-2.4.0

Description

Do live calculations in rofi

Added to portage

2025-08-27

rubyzip - 3.0.2
Ebuild name:

dev-ruby/rubyzip-3.0.2

Description

A ruby library for reading and writing zip files

Added to portage

2025-08-27

sent - 1_p20230110
Ebuild name:

x11-misc/sent-1_p20230110

Description

Simple plaintext presentation tool

Added to portage

2025-08-27

spacefm - 1.0.6-r5
Ebuild name:

x11-misc/spacefm-1.0.6-r5

Description

A multi-panel tabbed file manager

Added to portage

2025-08-27

sus - 0.34.0
Ebuild name:

dev-ruby/sus-0.34.0

Description

A fast and scalable test runner

Added to portage

2025-08-27

trove-classifiers - 2025.8.26.11
Ebuild name:

dev-python/trove-classifiers-2025.8.26.11

Description

Canonical source for classifiers on PyPI (pypi.org)

Added to portage

2025-08-27

umbrello - 25.11.70_pre20250827
Ebuild name:

kde-apps/umbrello-25.11.70_pre20250827

Description

KDE UML Modeller

Added to portage

2025-08-27

vitables - 3.1.0
Ebuild name:

sci-misc/vitables-3.1.0

Description

A graphical tool for browsing / editing files in both PyTables and HDF5 for

Added to portage

2025-08-27

vivaldi-snapshot - 7.6.3787.3
Ebuild name:

www-client/vivaldi-snapshot-7.6.3787.3

Description

A browser for our friends

Added to portage

2025-08-27

waypipe - 0.9.2-r1
Ebuild name:

gui-apps/waypipe-0.9.2-r1

Description

Transparent network proxy for Wayland compositors

Added to portage

2025-08-27

xfsprogs - 6.16.0
Ebuild name:

sys-fs/xfsprogs-6.16.0

Description

XFS filesystem utilities

Added to portage

2025-08-27

zfs - 2.3.4
Ebuild name:

sys-fs/zfs-2.3.4

Description

Userland utilities for ZFS Linux kernel module

Added to portage

2025-08-27

zfs - 2.4.0_rc1
Ebuild name:

sys-fs/zfs-2.4.0_rc1

Description

Userland utilities for ZFS Linux kernel module

Added to portage

2025-08-27

zfs-kmod - 2.3.4
Ebuild name:

sys-fs/zfs-kmod-2.3.4

Description

Linux ZFS kernel module for sys-fs/zfs

Added to portage

2025-08-27

zfs-kmod - 2.4.0_rc1
Ebuild name:

sys-fs/zfs-kmod-2.4.0_rc1

Description

Linux ZFS kernel module for sys-fs/zfs

Added to portage

2025-08-27

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 88.8 ms