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:

82083

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.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-11-15
attica - 6.20.0
Ebuild name:

kde-frameworks/attica-6.20.0

Description

Framework providing access to Open Collaboration Services

Added to portage

2025-11-15

baloo - 6.20.0
Ebuild name:

kde-frameworks/baloo-6.20.0

Description

Framework for searching and managing metadata

Added to portage

2025-11-15

bluez-qt - 6.20.0
Ebuild name:

kde-frameworks/bluez-qt-6.20.0

Description

Qt wrapper for Bluez 5 DBus API

Added to portage

2025-11-15

breeze-icons - 6.20.0
Ebuild name:

kde-frameworks/breeze-icons-6.20.0

Description

Breeze SVG icon theme

Added to portage

2025-11-15

extra-cmake-modules - 6.20.0
Ebuild name:

kde-frameworks/extra-cmake-modules-6.20.0

Description

Extra modules and scripts for CMake

Added to portage

2025-11-15

frameworkintegration - 6.20.0
Ebuild name:

kde-frameworks/frameworkintegration-6.20.0

Description

Framework for integrating Qt applications with KDE Plasm

Added to portage

2025-11-15

kapidox - 6.20.0
Ebuild name:

kde-frameworks/kapidox-6.20.0

Description

Framework for building KDE API documentation in a standard format and

Added to portage

2025-11-15

karchive - 6.20.0
Ebuild name:

kde-frameworks/karchive-6.20.0

Description

Framework for reading, creation, and manipulation of various archive

Added to portage

2025-11-15

kauth - 6.20.0
Ebuild name:

kde-frameworks/kauth-6.20.0

Description

Framework to let applications perform actions as a privileged user

Added to portage

2025-11-15

kbookmarks - 6.20.0
Ebuild name:

kde-frameworks/kbookmarks-6.20.0

Description

Framework for managing bookmarks stored in XBEL format

Added to portage

2025-11-15

kcalendarcore - 6.20.0
Ebuild name:

kde-frameworks/kcalendarcore-6.20.0

Description

Library for interfacing with calendars

Added to portage

2025-11-15

kcmutils - 6.20.0
Ebuild name:

kde-frameworks/kcmutils-6.20.0

Description

Framework to work with KDE System Settings modules

Added to portage

2025-11-15

kcodecs - 6.20.0
Ebuild name:

kde-frameworks/kcodecs-6.20.0

Description

Framework for manipulating strings using various encodings

Added to portage

2025-11-15

kcolorscheme - 6.20.0
Ebuild name:

kde-frameworks/kcolorscheme-6.20.0

Description

Framework for downloading and sharing additional application dat

Added to portage

2025-11-15

kcompletion - 6.20.0
Ebuild name:

kde-frameworks/kcompletion-6.20.0

Description

Framework for common completion tasks such as filename or URL com

Added to portage

2025-11-15

kconfig - 6.20.0
Ebuild name:

kde-frameworks/kconfig-6.20.0

Description

Framework for reading and writing configuration

Added to portage

2025-11-15

kconfigwidgets - 6.20.0
Ebuild name:

kde-frameworks/kconfigwidgets-6.20.0

Description

Framework providing an assortment of configuration-related wid

Added to portage

2025-11-15

kcontacts - 6.20.0
Ebuild name:

kde-frameworks/kcontacts-6.20.0

Description

Address book API based on KDE Frameworks

Added to portage

2025-11-15

kcoreaddons - 6.20.0
Ebuild name:

kde-frameworks/kcoreaddons-6.20.0

Description

Framework for solving common problems such as caching, randomisat

Added to portage

2025-11-15

kcrash - 6.20.0
Ebuild name:

kde-frameworks/kcrash-6.20.0

Description

Framework for intercepting and handling application crashes

Added to portage

2025-11-15

kdav - 6.20.0
Ebuild name:

kde-frameworks/kdav-6.20.0

Description

DAV protocol implemention with KJobs

Added to portage

2025-11-15

kdbusaddons - 6.20.0
Ebuild name:

kde-frameworks/kdbusaddons-6.20.0

Description

Framework for registering services and applications per freedeskt

Added to portage

2025-11-15

kdeclarative - 6.20.0
Ebuild name:

kde-frameworks/kdeclarative-6.20.0

Description

Framework providing integration of QML and KDE work spaces

Added to portage

2025-11-15

kded - 6.20.0
Ebuild name:

kde-frameworks/kded-6.20.0

Description

Central daemon of KDE workspaces

Added to portage

2025-11-15

kdesu - 6.20.0
Ebuild name:

kde-frameworks/kdesu-6.20.0

Description

Framework to handle super user actions

Added to portage

2025-11-15

kdnssd - 6.20.0
Ebuild name:

kde-frameworks/kdnssd-6.20.0

Description

Framework for network service discovery using Zeroconf

Added to portage

2025-11-15

kdoctools - 6.20.0
Ebuild name:

kde-frameworks/kdoctools-6.20.0

Description

Tools to generate documentation in various formats from DocBook fil

Added to portage

2025-11-15

kfilemetadata - 6.20.0
Ebuild name:

kde-frameworks/kfilemetadata-6.20.0

Description

Library for extracting file metadata

Added to portage

2025-11-15

kglobalaccel - 6.20.0
Ebuild name:

kde-frameworks/kglobalaccel-6.20.0

Description

Framework to handle global shortcuts

Added to portage

2025-11-15

kguiaddons - 6.20.0
Ebuild name:

kde-frameworks/kguiaddons-6.20.0

Description

Framework providing assorted high-level user interface components

Added to portage

2025-11-15

kholidays - 6.20.0
Ebuild name:

kde-frameworks/kholidays-6.20.0

Description

Library to determine holidays and other special events for a geogra

Added to portage

2025-11-15

ki18n - 6.20.0
Ebuild name:

kde-frameworks/ki18n-6.20.0

Description

Framework based on Gettext for internationalizing user interface text

Added to portage

2025-11-15

kiconthemes - 6.20.0
Ebuild name:

kde-frameworks/kiconthemes-6.20.0

Description

Framework for icon theming and configuration

Added to portage

2025-11-15

kidletime - 6.20.0
Ebuild name:

kde-frameworks/kidletime-6.20.0

Description

Framework for detection and notification of device idle time

Added to portage

2025-11-15

kimageformats - 6.20.0
Ebuild name:

kde-frameworks/kimageformats-6.20.0

Description

Framework providing additional format plugins for Qt's image I/

Added to portage

2025-11-15

kio - 6.20.0
Ebuild name:

kde-frameworks/kio-6.20.0

Description

Framework providing transparent file and data management

Added to portage

2025-11-15

kirigami - 6.20.0
Ebuild name:

kde-frameworks/kirigami-6.20.0

Description

Lightweight user interface framework for mobile and convergent appli

Added to portage

2025-11-15

kitemmodels - 6.20.0
Ebuild name:

kde-frameworks/kitemmodels-6.20.0

Description

Framework providing data models to help with tasks such as sortin

Added to portage

2025-11-15

kitemviews - 6.20.0
Ebuild name:

kde-frameworks/kitemviews-6.20.0

Description

Framework providing additional widgets for item models

Added to portage

2025-11-15

kjobwidgets - 6.20.0
Ebuild name:

kde-frameworks/kjobwidgets-6.20.0

Description

Framework providing assorted widgets for showing the progress of

Added to portage

2025-11-15

knewstuff - 6.20.0
Ebuild name:

kde-frameworks/knewstuff-6.20.0

Description

Framework for downloading and sharing additional application data

Added to portage

2025-11-15

knotifications - 6.20.0
Ebuild name:

kde-frameworks/knotifications-6.20.0

Description

Framework for notifying the user of an event

Added to portage

2025-11-15

knotifyconfig - 6.20.0
Ebuild name:

kde-frameworks/knotifyconfig-6.20.0

Description

Framework for configuring desktop notifications

Added to portage

2025-11-15

kpackage - 6.20.0
Ebuild name:

kde-frameworks/kpackage-6.20.0

Description

Framework to install and load packages of non binary content

Added to portage

2025-11-15

kparts - 6.20.0
Ebuild name:

kde-frameworks/kparts-6.20.0

Description

Framework providing elaborate user-interface components

Added to portage

2025-11-15

kpeople - 6.20.0
Ebuild name:

kde-frameworks/kpeople-6.20.0

Description

KDE contact person abstraction library

Added to portage

2025-11-15

kplotting - 6.20.0
Ebuild name:

kde-frameworks/kplotting-6.20.0

Description

Framework providing easy data-plotting functions

Added to portage

2025-11-15

mariadb - 11.8.5
Ebuild name:

dev-db/mariadb-11.8.5

Description

An enhanced, drop-in replacement for MySQL

Added to portage

2025-11-15

scala-cli-bin - 1.10.1
Ebuild name:

dev-java/scala-cli-bin-1.10.1

Description

CLI to interact with Scala and Java

Added to portage

2025-11-15

trove-classifiers - 2025.11.14.15
Ebuild name:

dev-python/trove-classifiers-2025.11.14.15

Description

Canonical source for classifiers on PyPI (pypi.org)

Added to portage

2025-11-15

2025-11-14
86Box - 5.2
Ebuild name:

app-emulation/86Box-5.2

Description

Emulator of x86-based machines based on PCem

Added to portage

2025-11-14

acme-client - 2.0.27
Ebuild name:

dev-ruby/acme-client-2.0.27

Description

A Ruby client for the letsencrypt's ACME protocol

Added to portage

2025-11-14

awscli - 1.42.73
Ebuild name:

app-admin/awscli-1.42.73

Description

Universal Command Line Environment for AWS

Added to portage

2025-11-14

bedrock-server - 1.21.123.2
Ebuild name:

games-server/bedrock-server-1.21.123.2

Description

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

Added to portage

2025-11-14

bluetui - 0.8.0
Ebuild name:

net-wireless/bluetui-0.8.0

Description

TUI for managing bluetooth on Linux

Added to portage

2025-11-14

boto3 - 1.40.73
Ebuild name:

dev-python/boto3-1.40.73

Description

The AWS SDK for Python

Added to portage

2025-11-14

botocore - 1.40.73
Ebuild name:

dev-python/botocore-1.40.73

Description

Low-level, data-driven core of boto 3

Added to portage

2025-11-14

cachetools - 6.2.2
Ebuild name:

dev-python/cachetools-6.2.2

Description

Extensible memoizing collections and decorators

Added to portage

2025-11-14

cb2bib - 2.0.3
Ebuild name:

app-text/cb2bib-2.0.3

Description

Tool for extracting unformatted bibliographic references

Added to portage

2025-11-14

coco - 2014.12.25-r1
Ebuild name:

dev-dotnet/coco-2014.12.25-r1

Description

The compiler generator Coco/R for C

Added to portage

2025-11-14

dist-kernel - 6.12.58
Ebuild name:

virtual/dist-kernel-6.12.58

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-11-14

dist-kernel - 6.17.8
Ebuild name:

virtual/dist-kernel-6.17.8

Description

Virtual to depend on any Distribution Kernel

Added to portage

2025-11-14

dns-lexicon - 3.23.1
Ebuild name:

dev-python/dns-lexicon-3.23.1

Description

Manipulate DNS records on various DNS providers in a standardized/agn

Added to portage

2025-11-14

dotnet-runtime-nugets - 10.0.0
Ebuild name:

dev-dotnet/dotnet-runtime-nugets-10.0.0

Description

.NET runtime nugets

Added to portage

2025-11-14

dotnet-runtime-nugets - 8.0.22
Ebuild name:

dev-dotnet/dotnet-runtime-nugets-8.0.22

Description

.NET runtime nugets

Added to portage

2025-11-14

dotnet-runtime-nugets - 9.0.11
Ebuild name:

dev-dotnet/dotnet-runtime-nugets-9.0.11

Description

.NET runtime nugets

Added to portage

2025-11-14

dotnet-sdk - 10.0
Ebuild name:

virtual/dotnet-sdk-10.0

Description

Virtual for .NET SDK

Added to portage

2025-11-14

dotnet-sdk-bin - 10.0.100
Ebuild name:

dev-dotnet/dotnet-sdk-bin-10.0.100

Description

.NET is a free, cross-platform, open-source developer platform

Added to portage

2025-11-14

duplicity - 3.0.6.1
Ebuild name:

app-backup/duplicity-3.0.6.1

Description

Secure backup system using gnupg to encrypt data

Added to portage

2025-11-14

endless-sky - 0.10.14-r1
Ebuild name:

games-strategy/endless-sky-0.10.14-r1

Description

Space exploration, trading & combat in the tradition of Termi

Added to portage

2025-11-14

endless-sky - 0.10.16-r1
Ebuild name:

games-strategy/endless-sky-0.10.16-r1

Description

Space exploration, trading & combat in the tradition of Termi

Added to portage

2025-11-14

faudio - 25.11
Ebuild name:

app-emulation/faudio-25.11

Description

Accuracy-focused XAudio reimplementation for open platforms

Added to portage

2025-11-14

findpython - 0.7.1
Ebuild name:

dev-python/findpython-0.7.1

Description

A utility to find python versions on your system

Added to portage

2025-11-14

fsautocomplete - 0.81.0
Ebuild name:

dev-dotnet/fsautocomplete-0.81.0

Description

F language server using the Language Server Protocol

Added to portage

2025-11-14

gentoo-kernel - 6.12.58
Ebuild name:

sys-kernel/gentoo-kernel-6.12.58

Description

Linux kernel built with Gentoo patches

Added to portage

2025-11-14

gentoo-kernel - 6.17.8
Ebuild name:

sys-kernel/gentoo-kernel-6.17.8

Description

Linux kernel built with Gentoo patches

Added to portage

2025-11-14

gentoo-kernel-bin - 6.12.58
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.58

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-11-14

gentoo-kernel-bin - 6.17.8
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.17.8

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2025-11-14

gentoo-sources - 6.12.58
Ebuild name:

sys-kernel/gentoo-sources-6.12.58

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-11-14

gentoo-sources - 6.17.8
Ebuild name:

sys-kernel/gentoo-sources-6.17.8

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2025-11-14

greetd - 0-r4
Ebuild name:

acct-user/greetd-0-r4

Description

User for gui-libs/greetd

Added to portage

2025-11-14

haml - 6.4.0
Ebuild name:

dev-ruby/haml-6.4.0

Description

A ruby web page templating engine

Added to portage

2025-11-14

inadyn - 2.13.0
Ebuild name:

net-dns/inadyn-2.13.0

Description

Dynamic DNS client with multiple SSL/TLS library support

Added to portage

2025-11-14

jenkins-bin - 2.528.2
Ebuild name:

dev-util/jenkins-bin-2.528.2

Description

The leading open source automation server

Added to portage

2025-11-14

lanes - 3.17.2
Ebuild name:

dev-lua/lanes-3.17.2

Description

Lightweight, native, lazy evaluating multithreading library

Added to portage

2025-11-14

libevdev - 0.13
Ebuild name:

dev-python/libevdev-0.13

Description

Python wrappers for the libevdev library

Added to portage

2025-11-14

mattermost-desktop-bin - 6.0.0
Ebuild name:

net-im/mattermost-desktop-bin-6.0.0

Description

Mattermost Desktop application

Added to portage

2025-11-14

mercurial - 7.1.2
Ebuild name:

dev-vcs/mercurial-7.1.2

Description

Scalable distributed SCM

Added to portage

2025-11-14

minecraft-server - 1.21.10
Ebuild name:

games-server/minecraft-server-1.21.10

Description

The official server for the sandbox video game

Added to portage

2025-11-14

mpack - 1.0.13
Ebuild name:

dev-lua/mpack-1.0.13

Description

Lua bindings for libmpack

Added to portage

2025-11-14

nake - 3.0.0-r2
Ebuild name:

dev-dotnet/nake-3.0.0-r2

Description

C scripting build automation task runner

Added to portage

2025-11-14

net-http - 0.8.0
Ebuild name:

dev-ruby/net-http-0.8.0

Description

HTTP client api for Ruby

Added to portage

2025-11-14

networkmanager-strongswan - 1.6.3
Ebuild name:

net-vpn/networkmanager-strongswan-1.6.3

Description

NetworkManager StrongSwan plugin

Added to portage

2025-11-14

nextcloud-client - 4.0.1
Ebuild name:

net-misc/nextcloud-client-4.0.1

Description

Desktop Syncing Client for Nextcloud

Added to portage

2025-11-14

nginx - 1.28.0-r3
Ebuild name:

www-servers/nginx-1.28.0-r3

Description

Added to portage

2025-11-14

nginx - 1.29.1-r3
Ebuild name:

www-servers/nginx-1.29.1-r3

Description

Added to portage

2025-11-14

nginx - 1.29.3-r1
Ebuild name:

www-servers/nginx-1.29.3-r1

Description

Added to portage

2025-11-14

nodejs - 22.21.1
Ebuild name:

net-libs/nodejs-22.21.1

Description

A JavaScript runtime built on Chrome's V8 JavaScript engine

Added to portage

2025-11-14

onerng - 3.7-r1
Ebuild name:

sys-apps/onerng-3.7-r1

Description

Software for the Open Hardware Random Number Generator called OneRNG

Added to portage

2025-11-14

openrct2 - 0.4.28
Ebuild name:

games-simulation/openrct2-0.4.28

Description

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

Added to portage

2025-11-14

openstacksdk - 4.8.0
Ebuild name:

dev-python/openstacksdk-4.8.0

Description

A collection of libraries for building applications to work with Open

Added to portage

2025-11-14

oslo-config - 10.1.0
Ebuild name:

dev-python/oslo-config-10.1.0

Description

Oslo Configuration API

Added to portage

2025-11-14

oslo-i18n - 6.7.0
Ebuild name:

dev-python/oslo-i18n-6.7.0

Description

Oslo i18n library

Added to portage

2025-11-14

pgbouncer - 1.25.0
Ebuild name:

dev-db/pgbouncer-1.25.0

Description

Lightweight connection pooler for PostgreSQL

Added to portage

2025-11-14

poke - 3.2
Ebuild name:

app-emacs/poke-3.2

Description

Emacs meets GNU poke

Added to portage

2025-11-14

postgresql - 14.20
Ebuild name:

dev-db/postgresql-14.20

Description

PostgreSQL RDBMS

Added to portage

2025-11-14

postgresql - 15.15
Ebuild name:

dev-db/postgresql-15.15

Description

PostgreSQL RDBMS

Added to portage

2025-11-14

postgresql - 16.11
Ebuild name:

dev-db/postgresql-16.11

Description

PostgreSQL RDBMS

Added to portage

2025-11-14

postgresql - 17.7
Ebuild name:

dev-db/postgresql-17.7

Description

PostgreSQL RDBMS

Added to portage

2025-11-14

postgresql - 18.1
Ebuild name:

dev-db/postgresql-18.1

Description

PostgreSQL RDBMS

Added to portage

2025-11-14

protobuf - 6.33.1
Ebuild name:

dev-python/protobuf-6.33.1

Description

Google's Protocol Buffers - Python bindings

Added to portage

2025-11-14

pylint - 4.0.3
Ebuild name:

dev-python/pylint-4.0.3

Description

Python code static checker

Added to portage

2025-11-14

pyside - 6.10.0
Ebuild name:

dev-python/pyside-6.10.0

Description

Python bindings for the Qt framework

Added to portage

2025-11-14

python-swiftclient - 4.9.0
Ebuild name:

dev-python/python-swiftclient-4.9.0

Description

Python bindings to the OpenStack Object Storage API

Added to portage

2025-11-14

reaper-bin - 7.53
Ebuild name:

media-sound/reaper-bin-7.53

Description

Digital audio workstation

Added to portage

2025-11-14

ripgrep-all - 0.10.10
Ebuild name:

sys-apps/ripgrep-all-0.10.10

Description

Like ripgrep, but also search in PDFs, E-Books, Office documents, arch

Added to portage

2025-11-14

rtl-sdr - 2.0.2-r3
Ebuild name:

net-wireless/rtl-sdr-2.0.2-r3

Description

Turns your Realtek RTL2832 based DVB dongle into a SDR receiver

Added to portage

2025-11-14

rtl-sdr-blog - 1.3.6-r2
Ebuild name:

net-wireless/rtl-sdr-blog-1.3.6-r2

Description

Modified Osmocom drivers with enhancements for RTL-SDR Blog V3 a

Added to portage

2025-11-14

ruff - 0.14.5
Ebuild name:

dev-util/ruff-0.14.5

Description

An extremely fast Python linter, written in Rust

Added to portage

2025-11-14

simpleini - 4.25
Ebuild name:

dev-cpp/simpleini-4.25

Description

C++ library providing a simple API to read and write INI-style files

Added to portage

2025-11-14

sphinx-lv2-theme - 1.4.6
Ebuild name:

dev-python/sphinx-lv2-theme-1.4.6

Description

Minimal pure-CSS Sphinx theme using the LV2 plugin documentation

Added to portage

2025-11-14

spirv-llvm-translator - 15.0.18
Ebuild name:

dev-util/spirv-llvm-translator-15.0.18

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-11-14

spirv-llvm-translator - 16.0.18
Ebuild name:

dev-util/spirv-llvm-translator-16.0.18

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-11-14

spirv-llvm-translator - 17.0.18
Ebuild name:

dev-util/spirv-llvm-translator-17.0.18

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-11-14

spirv-llvm-translator - 18.1.18
Ebuild name:

dev-util/spirv-llvm-translator-18.1.18

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-11-14

spirv-llvm-translator - 19.1.13
Ebuild name:

dev-util/spirv-llvm-translator-19.1.13

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-11-14

spirv-llvm-translator - 20.1.8
Ebuild name:

dev-util/spirv-llvm-translator-20.1.8

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-11-14

spirv-llvm-translator - 21.1.2
Ebuild name:

dev-util/spirv-llvm-translator-21.1.2

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-11-14

stress-ng - 0.19.06
Ebuild name:

app-benchmarks/stress-ng-0.19.06

Description

Stress test for a computer system with various selectable ways

Added to portage

2025-11-14

tempest - 46.0.0
Ebuild name:

dev-python/tempest-46.0.0

Description

OpenStack Integration Testing

Added to portage

2025-11-14

thunderbird - 145.0
Ebuild name:

mail-client/thunderbird-145.0

Description

Thunderbird Mail Client

Added to portage

2025-11-14

thunderbird-bin - 145.0
Ebuild name:

mail-client/thunderbird-bin-145.0

Description

Thunderbird Mail Client

Added to portage

2025-11-14

tins - 1.47.0
Ebuild name:

dev-ruby/tins-1.47.0

Description

All the stuff that isn't good enough for a real library

Added to portage

2025-11-14

tor - 0.4.8.20-r1
Ebuild name:

net-vpn/tor-0.4.8.20-r1

Description

Anonymizing overlay network for TCP

Added to portage

2025-11-14

typeprof - 0.31.0
Ebuild name:

dev-ruby/typeprof-0.31.0

Description

Performs a type analysis of non-annotated Ruby code

Added to portage

2025-11-14

unifi - 9.5.21
Ebuild name:

net-wireless/unifi-9.5.21

Description

A Management Controller for Ubiquiti Networks UniFi APs

Added to portage

2025-11-14

unrar - 7.2.1
Ebuild name:

app-arch/unrar-7.2.1

Description

Uncompress rar files

Added to portage

2025-11-14

vanilla-kernel - 6.12.58
Ebuild name:

sys-kernel/vanilla-kernel-6.12.58

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-11-14

vanilla-kernel - 6.17.8
Ebuild name:

sys-kernel/vanilla-kernel-6.17.8

Description

Linux kernel built from vanilla upstream sources

Added to portage

2025-11-14

vanilla-sources - 6.12.58
Ebuild name:

sys-kernel/vanilla-sources-6.12.58

Description

Full sources for the Linux kernel

Added to portage

2025-11-14

vanilla-sources - 6.17.8
Ebuild name:

sys-kernel/vanilla-sources-6.17.8

Description

Full sources for the Linux kernel

Added to portage

2025-11-14

wayfire - 0.10.0-r1
Ebuild name:

gui-wm/wayfire-0.10.0-r1

Description

compiz like 3D wayland compositor

Added to portage

2025-11-14

wine-proton - 10.0.3
Ebuild name:

app-emulation/wine-proton-10.0.3

Description

Valve Software's fork of Wine

Added to portage

2025-11-14

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: 93.4 ms