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:

87428

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-08-04
FBGEMM - 1.7.0-r1
Ebuild name:

sci-ml/FBGEMM-1.7.0-r1

Description

Facebook GEneral Matrix Multiplication

Added to portage

2026-08-04

alsa-scarlett-gui - 1.0_beta9
Ebuild name:

media-sound/alsa-scarlett-gui-1.0_beta9

Description

A UI for Focusrite Scarlett and Clarett audio interfaces

Added to portage

2026-08-04

awscli - 1.45.63
Ebuild name:

app-admin/awscli-1.45.63

Description

Universal Command Line Environment for AWS

Added to portage

2026-08-04

boto3 - 1.43.63
Ebuild name:

dev-python/boto3-1.43.63

Description

The AWS SDK for Python

Added to portage

2026-08-04

botocore - 1.43.63
Ebuild name:

dev-python/botocore-1.43.63

Description

Low-level, data-driven core of boto 3

Added to portage

2026-08-04

cffi - 2.1.1
Ebuild name:

dev-python/cffi-2.1.1

Description

Foreign Function Interface for Python calling C code

Added to portage

2026-08-04

etcd - 3.6.14
Ebuild name:

dev-db/etcd-3.6.14

Description

Highly-available key value store for shared configuration and service discovery

Added to portage

2026-08-04

ffmpeg - 9.0
Ebuild name:

media-video/ffmpeg-9.0

Description

Complete solution to record/convert/stream audio and video

Added to portage

2026-08-04

ffmpeg-compat - 8.1.2
Ebuild name:

media-video/ffmpeg-compat-8.1.2

Description

Complete solution to record/convert/stream audio and video

Added to portage

2026-08-04

firefox-bin - 153.0.3
Ebuild name:

www-client/firefox-bin-153.0.3

Description

Firefox Web Browser

Added to portage

2026-08-04

flux - 2.8.3-r2
Ebuild name:

sys-cluster/flux-2.8.3-r2

Description

Flux is a tool for keeping Kubernetes clusters in sync

Added to portage

2026-08-04

flux - 2.9.3
Ebuild name:

sys-cluster/flux-2.9.3

Description

Flux is a tool for keeping Kubernetes clusters in sync

Added to portage

2026-08-04

fotocx - 26.7
Ebuild name:

media-gfx/fotocx-26.7

Description

Program for improving image files made with a digital camera

Added to portage

2026-08-04

framework-tool-tui - 0.8.5
Ebuild name:

app-laptop/framework-tool-tui-0.8.5

Description

TUI for controlling and monitoring Framework Computers hardware

Added to portage

2026-08-04

gagit - 1
Ebuild name:

dev-vcs/gagit-1

Description

Gentoo AGit workflow tool

Added to portage

2026-08-04

gitolite-gentoo - 3.6.14.1
Ebuild name:

dev-vcs/gitolite-gentoo-3.6.14.1

Description

Highly flexible server for git directory version tracker, Gentoo f

Added to portage

2026-08-04

h2 - 4.4.1
Ebuild name:

dev-python/h2-4.4.1

Description

HTTP/2 State-Machine based protocol implementation

Added to portage

2026-08-04

ipython - 9.16.1
Ebuild name:

dev-python/ipython-9.16.1

Description

Advanced interactive shell for Python

Added to portage

2026-08-04

kubelogin - 1.36.0-r2
Ebuild name:

sys-cluster/kubelogin-1.36.0-r2

Description

kubectl plugin for Kubernetes OpenID Connect authentication

Added to portage

2026-08-04

kubelogin - 1.36.3
Ebuild name:

sys-cluster/kubelogin-1.36.3

Description

kubectl plugin for Kubernetes OpenID Connect authentication

Added to portage

2026-08-04

kubeseal - 0.38.4
Ebuild name:

sys-cluster/kubeseal-0.38.4

Description

Client-side utility for one-way encrypted secrets in kubernetes

Added to portage

2026-08-04

libsdl3 - 3.4.14
Ebuild name:

media-libs/libsdl3-3.4.14

Description

Simple Direct Media Layer

Added to portage

2026-08-04

libtorrent - 0.16.19
Ebuild name:

net-libs/libtorrent-0.16.19

Description

BitTorrent library written in C++ for *nix

Added to portage

2026-08-04

magit-popup - 2.13.3-r1
Ebuild name:

app-emacs/magit-popup-2.13.3-r1

Description

Define prefix-infix-suffix command combos

Added to portage

2026-08-04

mirrorselect - 9998
Ebuild name:

app-portage/mirrorselect-9998

Description

Tool to help select distfiles mirrors for Gentoo

Added to portage

2026-08-04

nvidia-drivers - 595.44.13
Ebuild name:

x11-drivers/nvidia-drivers-595.44.13

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-08-04

nvidia-drivers - 595.91.07
Ebuild name:

x11-drivers/nvidia-drivers-595.91.07

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-08-04

openstacksdk - 4.18.0
Ebuild name:

dev-python/openstacksdk-4.18.0

Description

A collection of libraries for building applications to work with Ope

Added to portage

2026-08-04

os-prober - 1.85
Ebuild name:

sys-boot/os-prober-1.85

Description

Utility to detect other OSs on a set of drives

Added to portage

2026-08-04

pyproject-fmt - 2.27.0
Ebuild name:

dev-python/pyproject-fmt-2.27.0

Description

Format your pyproject.toml file

Added to portage

2026-08-04

pytorch - 2.13.0
Ebuild name:

sci-ml/pytorch-2.13.0

Description

Tensors and Dynamic neural networks in Python with strong GPU acceleration

Added to portage

2026-08-04

rtorrent - 0.16.19
Ebuild name:

net-p2p/rtorrent-0.16.19

Description

BitTorrent Client using libtorrent

Added to portage

2026-08-04

rutorrent - 5.3.11
Ebuild name:

www-apps/rutorrent-5.3.11

Description

ruTorrent is a front-end for the popular Bittorrent client rTorrent

Added to portage

2026-08-04

sabctools - 9.6.3
Ebuild name:

dev-python/sabctools-9.6.3

Description

Module providing raw yEnc encoding/decoding for SABnzbd

Added to portage

2026-08-04

shtab - 1.9.3
Ebuild name:

dev-python/shtab-1.9.3

Description

Automagic shell tab completion for Python CLI applications

Added to portage

2026-08-04

sphinx-autodoc-typehints - 3.13.2
Ebuild name:

dev-python/sphinx-autodoc-typehints-3.13.2

Description

Type hints support for the Sphinx autodoc extension

Added to portage

2026-08-04

traitlets - 5.16.1
Ebuild name:

dev-python/traitlets-5.16.1

Description

A configuration system for Python applications

Added to portage

2026-08-04

typer - 0.27.1
Ebuild name:

dev-python/typer-0.27.1

Description

Build great CLIs. Easy to code. Based on Python type hints

Added to portage

2026-08-04

unreal-tournament - 469e
Ebuild name:

games-fps/unreal-tournament-469e

Description

Modern build of the Unreal Tournament (99) engine

Added to portage

2026-08-04

unreal-tournament-data - 436_p4
Ebuild name:

games-fps/unreal-tournament-data-436_p4

Description

Data files for Unreal Tournament (99)

Added to portage

2026-08-04

uwsm - 0.26.6
Ebuild name:

gui-apps/uwsm-0.26.6

Description

Universal Wayland Session Manager

Added to portage

2026-08-04

virtctl - 1.9.0
Ebuild name:

sys-cluster/virtctl-1.9.0

Description

Control virtual machine related operations on your kubernetes cluster

Added to portage

2026-08-04

xfce4-settings - 4.21.3
Ebuild name:

xfce-base/xfce4-settings-4.21.3

Description

Configuration system for the Xfce desktop environment

Added to portage

2026-08-04

2026-08-03
coverage - 7.15.3
Ebuild name:

dev-python/coverage-7.15.3

Description

Code coverage measurement for Python

Added to portage

2026-08-03

cpp-httplib - 0.51.0
Ebuild name:

dev-cpp/cpp-httplib-0.51.0

Description

C++ HTTP/HTTPS server and client library

Added to portage

2026-08-03

curl - 8.21.0-r1
Ebuild name:

net-misc/curl-8.21.0-r1

Description

A Client that groks URLs

Added to portage

2026-08-03

dist-kernel - 6.12.101
Ebuild name:

virtual/dist-kernel-6.12.101

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-08-03

dist-kernel - 6.18.42
Ebuild name:

virtual/dist-kernel-6.18.42

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-08-03

dist-kernel - 6.6.148
Ebuild name:

virtual/dist-kernel-6.6.148

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-08-03

dist-kernel - 7.1.6
Ebuild name:

virtual/dist-kernel-7.1.6

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-08-03

flrig - 2.0.10-r1
Ebuild name:

media-radio/flrig-2.0.10-r1

Description

Transceiver control program for Amateur Radio use

Added to portage

2026-08-03

gallery-dl - 1.32.9
Ebuild name:

net-misc/gallery-dl-1.32.9

Description

Download image galleries and collections from several image hosting site

Added to portage

2026-08-03

gcc - 13.4.1_p20260729
Ebuild name:

sys-devel/gcc-13.4.1_p20260729

Description

The GNU Compiler Collection

Added to portage

2026-08-03

gcc - 14.4.1_p20260730
Ebuild name:

sys-devel/gcc-14.4.1_p20260730

Description

The GNU Compiler Collection

Added to portage

2026-08-03

gcc - 15.3.1_p20260731
Ebuild name:

sys-devel/gcc-15.3.1_p20260731

Description

The GNU Compiler Collection

Added to portage

2026-08-03

gcc - 16.1.1_p20260731
Ebuild name:

sys-devel/gcc-16.1.1_p20260731

Description

The GNU Compiler Collection

Added to portage

2026-08-03

gcc - 17.0.0_p20260802
Ebuild name:

sys-devel/gcc-17.0.0_p20260802

Description

The GNU Compiler Collection

Added to portage

2026-08-03

gentoo-kernel - 6.12.101
Ebuild name:

sys-kernel/gentoo-kernel-6.12.101

Description

Linux kernel built with Gentoo patches

Added to portage

2026-08-03

gentoo-kernel - 6.18.42
Ebuild name:

sys-kernel/gentoo-kernel-6.18.42

Description

Linux kernel built with Gentoo patches

Added to portage

2026-08-03

gentoo-kernel - 6.6.148
Ebuild name:

sys-kernel/gentoo-kernel-6.6.148

Description

Linux kernel built with Gentoo patches

Added to portage

2026-08-03

gentoo-kernel - 7.1.6
Ebuild name:

sys-kernel/gentoo-kernel-7.1.6

Description

Linux kernel built with Gentoo patches

Added to portage

2026-08-03

gentoo-kernel-bin - 6.12.101
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.101

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-08-03

gentoo-kernel-bin - 6.18.42
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.42

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-08-03

gentoo-kernel-bin - 6.6.148
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.148

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-08-03

gentoo-kernel-bin - 7.1.6
Ebuild name:

sys-kernel/gentoo-kernel-bin-7.1.6

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-08-03

gentoo-kernel-modprep - 6.12.101
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.12.101

Description

Minimal subset of gentoo-kernel-bin for building modules,

Added to portage

2026-08-03

gentoo-kernel-modprep - 6.18.42
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.18.42

Description

Minimal subset of gentoo-kernel-bin for building modules,

Added to portage

2026-08-03

gentoo-kernel-modprep - 6.6.148
Ebuild name:

sys-kernel/gentoo-kernel-modprep-6.6.148

Description

Minimal subset of gentoo-kernel-bin for building modules,

Added to portage

2026-08-03

gentoo-kernel-modprep - 7.1.6
Ebuild name:

sys-kernel/gentoo-kernel-modprep-7.1.6

Description

Minimal subset of gentoo-kernel-bin for building modules, fo

Added to portage

2026-08-03

gentoo-retirement-scripts - 3
Ebuild name:

app-admin/gentoo-retirement-scripts-3

Description

Scripts to help retiring Gentoo developers

Added to portage

2026-08-03

gentoo-sources - 6.12.101
Ebuild name:

sys-kernel/gentoo-sources-6.12.101

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-08-03

gentoo-sources - 6.18.42
Ebuild name:

sys-kernel/gentoo-sources-6.18.42

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-08-03

gentoo-sources - 6.6.148
Ebuild name:

sys-kernel/gentoo-sources-6.6.148

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-08-03

gentoo-sources - 7.1.6
Ebuild name:

sys-kernel/gentoo-sources-7.1.6

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-08-03

git-sources - 7.2_rc6
Ebuild name:

sys-kernel/git-sources-7.2_rc6

Description

The very latest -git version of the Linux kernel

Added to portage

2026-08-03

ideep - 3.12
Ebuild name:

sci-ml/ideep-3.12

Description

Intel Optimization for Chainer

Added to portage

2026-08-03

incus - 7.0.1-r1
Ebuild name:

app-containers/incus-7.0.1-r1

Description

Modern, secure and powerful system container and virtual machine mana

Added to portage

2026-08-03

incus - 7.3-r1
Ebuild name:

app-containers/incus-7.3-r1

Description

Modern, secure and powerful system container and virtual machine manage

Added to portage

2026-08-03

indilib - 2.2.4.1
Ebuild name:

sci-libs/indilib-2.2.4.1

Description

INDI Astronomical Control Protocol library

Added to portage

2026-08-03

krita - 6.0.3-r1
Ebuild name:

media-gfx/krita-6.0.3-r1

Description

Free digital painting application. Digital Painting, Creative Freedom

Added to portage

2026-08-03

mailcrypt - 3.5.9-r3
Ebuild name:

app-emacs/mailcrypt-3.5.9-r3

Description

Provides a simple interface to public key cryptography with OpenPGP

Added to portage

2026-08-03

mame - 0.289-r2
Ebuild name:

games-emulation/mame-0.289-r2

Description

Multiple Arcade Machine Emulator

Added to portage

2026-08-03

marginalia - 2.10
Ebuild name:

app-emacs/marginalia-2.10

Description

Marginalia in the minibuffer

Added to portage

2026-08-03

marginalia - 2.11
Ebuild name:

app-emacs/marginalia-2.11

Description

Marginalia in the minibuffer

Added to portage

2026-08-03

markdown-mode - 2.8
Ebuild name:

app-emacs/markdown-mode-2.8

Description

Major mode for editing Markdown-formatted text files

Added to portage

2026-08-03

mastodon - 2.0.7
Ebuild name:

app-emacs/mastodon-2.0.7

Description

Emacs client for Mastodon, federated microblogging social network

Added to portage

2026-08-03

mastodon - 9999
Ebuild name:

app-emacs/mastodon-9999

Description

Emacs client for Mastodon, federated microblogging social network

Added to portage

2026-08-03

math-symbol-lists - 1.3
Ebuild name:

app-emacs/math-symbol-lists-1.3

Description

Lists of Unicode mathematical symbols and latex commands

Added to portage

2026-08-03

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-08-03

matlab - 8.2.0
Ebuild name:

app-emacs/matlab-8.2.0

Description

Major modes for MATLAB .m and .tlc files

Added to portage

2026-08-03

mattermost-desktop-bin - 6.3.0_rc3
Ebuild name:

net-im/mattermost-desktop-bin-6.3.0_rc3

Description

Mattermost Desktop application

Added to portage

2026-08-03

miller - 6.20.2
Ebuild name:

sys-apps/miller-6.20.2

Description

Tool like sed, awk, cut, join, and sort for name-indexed data (CSV, JSON, ..

Added to portage

2026-08-03

no-littering - 1.9.0
Ebuild name:

app-emacs/no-littering-1.9.0

Description

ELisp library that helps keeping Emacs configuration directory clean

Added to portage

2026-08-03

nvidia-drivers - 580.178.04
Ebuild name:

x11-drivers/nvidia-drivers-580.178.04

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-08-03

nvidia-drivers - 610.57.04
Ebuild name:

x11-drivers/nvidia-drivers-610.57.04

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-08-03

oneDNN - 3.12
Ebuild name:

sci-ml/oneDNN-3.12

Description

oneAPI Deep Neural Network Library

Added to portage

2026-08-03

osm - 2.5
Ebuild name:

app-emacs/osm-2.5

Description

OpenStreetMap tile-based viewer for GNU Emacs

Added to portage

2026-08-03

package-build - 5.0.1
Ebuild name:

app-emacs/package-build-5.0.1

Description

Tools for assembling a package archive

Added to portage

2026-08-03

plasma-bigscreen - 6.7.3-r1
Ebuild name:

kde-plasma/plasma-bigscreen-6.7.3-r1

Description

Plasma shell for TVs

Added to portage

2026-08-03

portalocker - 4.1.0
Ebuild name:

dev-python/portalocker-4.1.0

Description

A library for Python file locking

Added to portage

2026-08-03

pyqt6-sip - 13.12.0
Ebuild name:

dev-python/pyqt6-sip-13.12.0

Description

sip module support for PyQt6

Added to portage

2026-08-03

rarfile - 4.5
Ebuild name:

dev-python/rarfile-4.5

Description

Module for RAR archive reading

Added to portage

2026-08-03

rclone - 1.75.0
Ebuild name:

net-misc/rclone-1.75.0

Description

A program to sync files to and from various cloud storage providers

Added to portage

2026-08-03

s - 1.13.1
Ebuild name:

app-emacs/s-1.13.1

Description

The long lost Emacs string manipulation library

Added to portage

2026-08-03

sip - 6.16.0
Ebuild name:

dev-python/sip-6.16.0

Description

Python bindings generator for C/C++ libraries

Added to portage

2026-08-03

spyder-kernels - 3.1.5-r1
Ebuild name:

dev-python/spyder-kernels-3.1.5-r1

Description

Kernels used by spyder on its ipython console

Added to portage

2026-08-03

symbols-nerd-font - 3.5.0
Ebuild name:

media-fonts/symbols-nerd-font-3.5.0

Description

Symbols-only font containing the Nerd Font icons

Added to portage

2026-08-03

transient - 0.13.6
Ebuild name:

app-emacs/transient-0.13.6

Description

Transient commands abstraction for GNU Emacs

Added to portage

2026-08-03

tree-sitter-erlang - 0.20
Ebuild name:

dev-libs/tree-sitter-erlang-0.20

Description

Erlang programming language grammar for Tree-sitter

Added to portage

2026-08-03

tsm - 8.2.2.0
Ebuild name:

app-backup/tsm-8.2.2.0

Description

IBM Storage Protect (former Tivoli Storage Manager) Backup/Archive Client, A

Added to portage

2026-08-03

vanilla-kernel - 6.12.101
Ebuild name:

sys-kernel/vanilla-kernel-6.12.101

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-08-03

vanilla-kernel - 6.18.42
Ebuild name:

sys-kernel/vanilla-kernel-6.18.42

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-08-03

vanilla-kernel - 6.6.148
Ebuild name:

sys-kernel/vanilla-kernel-6.6.148

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-08-03

vanilla-kernel - 7.1.6
Ebuild name:

sys-kernel/vanilla-kernel-7.1.6

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-08-03

vanilla-sources - 6.12.101
Ebuild name:

sys-kernel/vanilla-sources-6.12.101

Description

Full sources for the Linux kernel

Added to portage

2026-08-03

vanilla-sources - 6.18.42
Ebuild name:

sys-kernel/vanilla-sources-6.18.42

Description

Full sources for the Linux kernel

Added to portage

2026-08-03

vanilla-sources - 6.6.148
Ebuild name:

sys-kernel/vanilla-sources-6.6.148

Description

Full sources for the Linux kernel

Added to portage

2026-08-03

vanilla-sources - 7.1.6
Ebuild name:

sys-kernel/vanilla-sources-7.1.6

Description

Full sources for the Linux kernel

Added to portage

2026-08-03

webob - 1.8.11
Ebuild name:

dev-python/webob-1.8.11

Description

WSGI request and response object

Added to portage

2026-08-03

whenever - 0.10.4
Ebuild name:

dev-python/whenever-0.10.4

Description

Modern datetime library for Python

Added to portage

2026-08-03

with-editor - 3.5.3
Ebuild name:

app-emacs/with-editor-3.5.3

Description

Use the Emacsclient as the of child processes

Added to portage

2026-08-03

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