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:

70959

userrating:

average rating: 1.2 (8 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: 2.3 (17 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
2024-12-11
Sys-Virt - 10.9.0
Ebuild name:

dev-perl/Sys-Virt-10.9.0

Description

API for using the libvirt library from Perl

Added to portage

2024-12-11

avahi - 0.9_rc2
Ebuild name:

net-dns/avahi-0.9_rc2

Description

System which facilitates service discovery on a local network

Added to portage

2024-12-11

awscli - 1.36.19
Ebuild name:

app-admin/awscli-1.36.19

Description

Universal Command Line Environment for AWS

Added to portage

2024-12-11

basexx - 0.4.1
Ebuild name:

dev-lua/basexx-0.4.1

Description

A base2, base16, base32, base64 and base85 library for Lua

Added to portage

2024-12-11

bash - 5.3_alpha_p20241210
Ebuild name:

app-shells/bash-5.3_alpha_p20241210

Description

The standard GNU Bourne again shell

Added to portage

2024-12-11

binaryheap - 0.4
Ebuild name:

dev-lua/binaryheap-0.4

Description

Binary heap implementation in pure Lua

Added to portage

2024-12-11

cargo-c - 0.10.7
Ebuild name:

dev-util/cargo-c-0.10.7

Description

Helper program to build and install c-like libraries

Added to portage

2024-12-11

cfssl - 1.4.1-r1
Ebuild name:

app-crypt/cfssl-1.4.1-r1

Description

Cloudflare's PKI and TLS toolkit

Added to portage

2024-12-11

cfssl - 1.6.4-r1
Ebuild name:

app-crypt/cfssl-1.6.4-r1

Description

Cloudflare's PKI and TLS toolkit

Added to portage

2024-12-11

cfssl - 1.6.5
Ebuild name:

app-crypt/cfssl-1.6.5

Description

Cloudflare's PKI and TLS toolkit

Added to portage

2024-12-11

compat53 - 0.14.3
Ebuild name:

dev-lua/compat53-0.14.3

Description

Compatibility module providing Lua-5.3-style APIs for Lua 5.2 and 5.1

Added to portage

2024-12-11

cqueues - 20200726_p20241204
Ebuild name:

dev-lua/cqueues-20200726_p20241204

Description

Stackable Continuation Queues

Added to portage

2024-12-11

fifo - 0.2
Ebuild name:

dev-lua/fifo-0.2

Description

Fifo library for Lua

Added to portage

2024-12-11

gcc - 15.0.0_pre20241208-r1
Ebuild name:

sys-devel/gcc-15.0.0_pre20241208-r1

Description

The GNU Compiler Collection

Added to portage

2024-12-11

git-cola - 4.9.0
Ebuild name:

dev-vcs/git-cola-4.9.0

Description

The highly caffeinated git GUI

Added to portage

2024-12-11

gnuradio - 3.10.9.2-r6
Ebuild name:

net-wireless/gnuradio-3.10.9.2-r6

Description

Toolkit that provides signal processing blocks to implement softw

Added to portage

2024-12-11

joplin-desktop - 3.2.3
Ebuild name:

app-office/joplin-desktop-3.2.3

Description

Secure note taking and to-do app with synchronization capabilities

Added to portage

2024-12-11

json-glib - 1.10.6
Ebuild name:

dev-libs/json-glib-1.10.6

Description

Library providing GLib serialization and deserialization for the JSON for

Added to portage

2024-12-11

libvarlink - 24
Ebuild name:

dev-libs/libvarlink-24

Description

C implementation of the Varlink protocol and command line tool

Added to portage

2024-12-11

libvirt - 10.10.0
Ebuild name:

app-emulation/libvirt-10.10.0

Description

C toolkit to manipulate virtual machines

Added to portage

2024-12-11

libvirt-python - 10.10.0
Ebuild name:

dev-python/libvirt-python-10.10.0

Description

libvirt Python bindings

Added to portage

2024-12-11

lpeg-patterns - 0.5
Ebuild name:

dev-lua/lpeg-patterns-0.5

Description

A collection of LPEG patterns

Added to portage

2024-12-11

lua-http - 0.4_p20240908
Ebuild name:

dev-lua/lua-http-0.4_p20240908

Description

HTTP Library for Lua. Supports HTTP(S) 1.0, 1.1 and 2.0; client and

Added to portage

2024-12-11

lua-mmdb - 0.2
Ebuild name:

dev-lua/lua-mmdb-0.2

Description

Maxmind database parser for lua

Added to portage

2024-12-11

mongodb - 5.0.30
Ebuild name:

dev-db/mongodb-5.0.30

Description

A high-performance, open source, schema-free document-oriented database

Added to portage

2024-12-11

nerdctl - 2.0.2
Ebuild name:

app-containers/nerdctl-2.0.2

Description

Docker-compatible CLI for containerd, with support for Compose

Added to portage

2024-12-11

nodejs - 18.20.5
Ebuild name:

net-libs/nodejs-18.20.5

Description

A JavaScript runtime built on Chrome's V8 JavaScript engine

Added to portage

2024-12-11

nodejs - 20.18.1
Ebuild name:

net-libs/nodejs-20.18.1

Description

A JavaScript runtime built on Chrome's V8 JavaScript engine

Added to portage

2024-12-11

nodejs - 22.12.0
Ebuild name:

net-libs/nodejs-22.12.0

Description

A JavaScript runtime built on Chrome's V8 JavaScript engine

Added to portage

2024-12-11

openpgp-keys-alexbarton - 20241211
Ebuild name:

sec-keys/openpgp-keys-alexbarton-20241211

Description

OpenPGP keys used by Alex Barton

Added to portage

2024-12-11

pandoc-bin - 3.6
Ebuild name:

app-text/pandoc-bin-3.6

Description

Conversion between markup formats (binary package)

Added to portage

2024-12-11

po4a - 0.69-r1
Ebuild name:

app-text/po4a-0.69-r1

Description

Tools to ease the translation of documentation

Added to portage

2024-12-11

pyqtgraph - 0.13.7-r2
Ebuild name:

dev-python/pyqtgraph-0.13.7-r2

Description

A pure-python graphics and GUI library built on PyQt and numpy

Added to portage

2024-12-11

riece - 9.0.0-r1
Ebuild name:

app-emacs/riece-9.0.0-r1

Description

A redesign of Liece IRC client

Added to portage

2024-12-11

rnc-mode - 1.0.6-r2
Ebuild name:

app-emacs/rnc-mode-1.0.6-r2

Description

An Emacs mode for editing Relax NG compact schema files

Added to portage

2024-12-11

rpm-spec-mode - 0.15
Ebuild name:

app-emacs/rpm-spec-mode-0.15

Description

Emacs mode to ease editing of RPM spec files

Added to portage

2024-12-11

rpm-spec-mode - 0.16
Ebuild name:

app-emacs/rpm-spec-mode-0.16

Description

Emacs mode to ease editing of RPM spec files

Added to portage

2024-12-11

rudel - 0.3.1
Ebuild name:

app-emacs/rudel-0.3.1

Description

Collaborative editing environment for GNU Emacs

Added to portage

2024-12-11

rudel - 0.3.2
Ebuild name:

app-emacs/rudel-0.3.2

Description

Collaborative editing environment for GNU Emacs

Added to portage

2024-12-11

rust-mode - 1.0.5
Ebuild name:

app-emacs/rust-mode-1.0.5

Description

A major emacs mode for editing Rust source code

Added to portage

2024-12-11

sccache - 0.9.0
Ebuild name:

dev-util/sccache-0.9.0

Description

ccache/distcc like tool with support for rust and cloud storage

Added to portage

2024-12-11

scrcpy - 3.1
Ebuild name:

app-mobilephone/scrcpy-3.1

Description

Display and control your Android device

Added to portage

2024-12-11

slack - 4.41.104
Ebuild name:

net-im/slack-4.41.104

Description

Team collaboration tool

Added to portage

2024-12-11

sslh - 2.1.4
Ebuild name:

net-misc/sslh-2.1.4

Description

Port multiplexer - accept both HTTPS and SSH connections on the same port

Added to portage

2024-12-11

sssd - 2.10.1
Ebuild name:

sys-auth/sssd-2.10.1

Description

System Security Services Daemon provides access to identity and authentication

Added to portage

2024-12-11

transient - 0.8.1
Ebuild name:

app-emacs/transient-0.8.1

Description

Transient commands abstraction for GNU Emacs

Added to portage

2024-12-11

tree-sitter-lua - 0.2.0
Ebuild name:

dev-libs/tree-sitter-lua-0.2.0

Description

Lua grammar for Tree-sitter

Added to portage

2024-12-11

tree-sitter-markdown - 0.3.2
Ebuild name:

dev-libs/tree-sitter-markdown-0.3.2

Description

Markdown grammar for Tree-sitter

Added to portage

2024-12-11

vigra - 1.12.1
Ebuild name:

media-libs/vigra-1.12.1

Description

C++ computer vision library emphasizing customizable algorithms and structu

Added to portage

2024-12-11

wine-mono - 9.3.1
Ebuild name:

app-emulation/wine-mono-9.3.1

Description

Replacement for the .NET runtime and class libraries in Wine

Added to portage

2024-12-11

2024-12-10
awscli - 1.36.18
Ebuild name:

app-admin/awscli-1.36.18

Description

Universal Command Line Environment for AWS

Added to portage

2024-12-10

boto3 - 1.35.77
Ebuild name:

dev-python/boto3-1.35.77

Description

The AWS SDK for Python

Added to portage

2024-12-10

botocore - 1.35.77
Ebuild name:

dev-python/botocore-1.35.77

Description

Low-level, data-driven core of boto 3

Added to portage

2024-12-10

cantera - 3.0.1-r1
Ebuild name:

sci-libs/cantera-3.0.1-r1

Description

Object-oriented tool suite for chemical kinetics, thermodynamics, and tra

Added to portage

2024-12-10

cantera - 3.0.1-r2
Ebuild name:

sci-libs/cantera-3.0.1-r2

Description

Object-oriented tool suite for chemical kinetics, thermodynamics, and tra

Added to portage

2024-12-10

cfn-lint - 1.21.0
Ebuild name:

dev-python/cfn-lint-1.21.0

Description

CloudFormation Linter

Added to portage

2024-12-10

cmake - 3.28.5
Ebuild name:

dev-build/cmake-3.28.5

Description

Cross platform Make

Added to portage

2024-12-10

containerd - 1.7.24
Ebuild name:

app-containers/containerd-1.7.24

Description

A daemon to control runC

Added to portage

2024-12-10

containerd - 2.0.0
Ebuild name:

app-containers/containerd-2.0.0

Description

A daemon to control runC

Added to portage

2024-12-10

cppgir - 2.0_p20240928
Ebuild name:

dev-cpp/cppgir-2.0_p20240928

Description

GObject-Introspection C++ binding wrapper generator

Added to portage

2024-12-10

cri-tools - 1.32.0
Ebuild name:

app-containers/cri-tools-1.32.0

Description

CLI and validation tools for Kubelet Container Runtime (CRI)

Added to portage

2024-12-10

discord - 0.0.77
Ebuild name:

net-im/discord-0.0.77

Description

All-in-one voice and text chat for gamers

Added to portage

2024-12-10

dist-kernel - 6.12.4
Ebuild name:

virtual/dist-kernel-6.12.4

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-12-10

dist-kernel - 6.6.64
Ebuild name:

virtual/dist-kernel-6.6.64

Description

Virtual to depend on any Distribution Kernel

Added to portage

2024-12-10

docker - 27.4.0
Ebuild name:

app-containers/docker-27.4.0

Description

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

Added to portage

2024-12-10

docker-cli - 27.4.0
Ebuild name:

app-containers/docker-cli-27.4.0

Description

the command line binary for docker

Added to portage

2024-12-10

dotnet-sdk - 9.0.101
Ebuild name:

dev-dotnet/dotnet-sdk-9.0.101

Description

Added to portage

2024-12-10

dotnet-sdk-bin - 9.0.101
Ebuild name:

dev-dotnet/dotnet-sdk-bin-9.0.101

Description

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

Added to portage

2024-12-10

egl-wayland - 1.1.17
Ebuild name:

gui-libs/egl-wayland-1.1.17

Description

NVIDIA wayland EGL external platform library

Added to portage

2024-12-10

emacs-updater - 1.19
Ebuild name:

app-admin/emacs-updater-1.19

Description

Rebuild Emacs packages

Added to portage

2024-12-10

eza - 0.20.8
Ebuild name:

sys-apps/eza-0.20.8

Description

A modern, maintained replacement for ls

Added to portage

2024-12-10

firecracker-bin - 1.10.1
Ebuild name:

app-emulation/firecracker-bin-1.10.1

Description

Secure and fast microVMs for serverless computing (static buil

Added to portage

2024-12-10

flacon - 11.4.0
Ebuild name:

media-sound/flacon-11.4.0

Description

Extracts audio tracks from an audio CD image to separate tracks

Added to portage

2024-12-10

gentoo-kernel - 6.12.4
Ebuild name:

sys-kernel/gentoo-kernel-6.12.4

Description

Linux kernel built with Gentoo patches

Added to portage

2024-12-10

gentoo-kernel - 6.6.64
Ebuild name:

sys-kernel/gentoo-kernel-6.6.64

Description

Linux kernel built with Gentoo patches

Added to portage

2024-12-10

gentoo-kernel-bin - 6.12.4
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.4

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-12-10

gentoo-kernel-bin - 6.6.64
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.64

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2024-12-10

go - 1.22.10
Ebuild name:

dev-lang/go-1.22.10

Description

A concurrent garbage collected and typesafe programming language

Added to portage

2024-12-10

go - 1.23.4
Ebuild name:

dev-lang/go-1.23.4

Description

A concurrent garbage collected and typesafe programming language

Added to portage

2024-12-10

google-api-core - 2.24.0
Ebuild name:

dev-python/google-api-core-2.24.0

Description

Core Library for Google Client Libraries

Added to portage

2024-12-10

idea-community - 2024.3.1
Ebuild name:

dev-util/idea-community-2024.3.1

Description

A complete toolset for web, mobile and enterprise development

Added to portage

2024-12-10

jaq - 2.0.1
Ebuild name:

app-misc/jaq-2.0.1

Description

Just another JSON query tool

Added to portage

2024-12-10

kexec-tools - 2.0.30
Ebuild name:

sys-apps/kexec-tools-2.0.30

Description

Load another kernel from the currently executing Linux kernel

Added to portage

2024-12-10

libnvidia-container - 1.17.2
Ebuild name:

sys-libs/libnvidia-container-1.17.2

Description

NVIDIA container runtime library

Added to portage

2024-12-10

libnvidia-container - 9999
Ebuild name:

sys-libs/libnvidia-container-9999

Description

NVIDIA container runtime library

Added to portage

2024-12-10

lowdown - 1.3.2
Ebuild name:

app-text/lowdown-1.3.2

Description

Markdown translator producing HTML5, roff documents in the ms and man format

Added to portage

2024-12-10

mlt - 7.24.0-r1
Ebuild name:

media-libs/mlt-7.24.0-r1

Description

Open source multimedia framework for television broadcasting

Added to portage

2024-12-10

nvidia-container-toolkit - 1.17.3
Ebuild name:

app-containers/nvidia-container-toolkit-1.17.3

Description

NVIDIA container runtime toolkit

Added to portage

2024-12-10

nvidia-container-toolkit - 9999
Ebuild name:

app-containers/nvidia-container-toolkit-9999

Description

NVIDIA container runtime toolkit

Added to portage

2024-12-10

oneDNN - 3.5.3
Ebuild name:

dev-libs/oneDNN-3.5.3

Description

oneAPI Deep Neural Network Library

Added to portage

2024-12-10

oneDNN - 3.6.2
Ebuild name:

dev-libs/oneDNN-3.6.2

Description

oneAPI Deep Neural Network Library

Added to portage

2024-12-10

openpgp-keys-apache-tomcat - 10.1.34
Ebuild name:

sec-keys/openpgp-keys-apache-tomcat-10.1.34

Description

OpenPGP keys used by tomcat.apache.org

Added to portage

2024-12-10

openpgp-keys-apache-tomcat - 11.0.2
Ebuild name:

sec-keys/openpgp-keys-apache-tomcat-11.0.2

Description

OpenPGP keys used by tomcat.apache.org

Added to portage

2024-12-10

openpgp-keys-apache-tomcat - 9.0.98
Ebuild name:

sec-keys/openpgp-keys-apache-tomcat-9.0.98

Description

OpenPGP keys used by tomcat.apache.org

Added to portage

2024-12-10

oprofile - 1.4.0-r1
Ebuild name:

dev-util/oprofile-1.4.0-r1

Description

A transparent low-overhead system-wide profiler

Added to portage

2024-12-10

passenger - 6.0.24
Ebuild name:

www-apache/passenger-6.0.24

Description

Passenger makes deployment of Ruby on Rails applications a breeze

Added to portage

2024-12-10

pdm - 2.22.0
Ebuild name:

dev-python/pdm-2.22.0

Description

Python package and dependency manager supporting the latest PEP standards

Added to portage

2024-12-10

pytest-subtests - 0.14.1
Ebuild name:

dev-python/pytest-subtests-0.14.1

Description

Unittest subTest() support and subtests fixture

Added to portage

2024-12-10

python-box - 7.3.0
Ebuild name:

dev-python/python-box-7.3.0

Description

Python dictionaries with advanced dot notation access

Added to portage

2024-12-10

pytools - 2024.1.20
Ebuild name:

dev-python/pytools-2024.1.20

Description

Collection of tools missing from the Python standard library

Added to portage

2024-12-10

rubber - 1.6.7
Ebuild name:

dev-tex/rubber-1.6.7

Description

A LaTeX wrapper for automatically building documents

Added to portage

2024-12-10

runc - 1.2.1
Ebuild name:

app-containers/runc-1.2.1

Description

runc container cli tools

Added to portage

2024-12-10

runc - 1.2.2
Ebuild name:

app-containers/runc-1.2.2

Description

runc container cli tools

Added to portage

2024-12-10

rust - 1.83.0-r1
Ebuild name:

dev-lang/rust-1.83.0-r1

Description

Systems programming language from Mozilla

Added to portage

2024-12-10

rust-mode - 1.0.6
Ebuild name:

app-emacs/rust-mode-1.0.6

Description

A major emacs mode for editing Rust source code

Added to portage

2024-12-10

s - 1.13.0
Ebuild name:

app-emacs/s-1.13.0

Description

The long lost Emacs string manipulation library

Added to portage

2024-12-10

scad-mode - 93.2-r1
Ebuild name:

app-emacs/scad-mode-93.2-r1

Description

Emacs mode to edit OpenSCAD files

Added to portage

2024-12-10

scala-mode - 2.10.3-r1
Ebuild name:

app-emacs/scala-mode-2.10.3-r1

Description

Scala mode for Emacs

Added to portage

2024-12-10

scala-mode - 2.10.7
Ebuild name:

app-emacs/scala-mode-2.10.7

Description

Scala mode for Emacs

Added to portage

2024-12-10

scala-ts-mode - 1.0.0_p20240820
Ebuild name:

app-emacs/scala-ts-mode-1.0.0_p20240820

Description

Emacs Scala Mode via Tree-Sitter

Added to portage

2024-12-10

scheme-complete - 0.9.9
Ebuild name:

app-emacs/scheme-complete-0.9.9

Description

Scheme tab-completion and word-completion for Emacs

Added to portage

2024-12-10

scikit-learn - 1.6.0
Ebuild name:

dev-python/scikit-learn-1.6.0

Description

Machine learning library for Python

Added to portage

2024-12-10

scim-bridge-el - 0.8.2-r1
Ebuild name:

app-emacs/scim-bridge-el-0.8.2-r1

Description

a SCIM-Bridge client for Emacs

Added to portage

2024-12-10

scss-mode - 0.5.0_p20180123-r1
Ebuild name:

app-emacs/scss-mode-0.5.0_p20180123-r1

Description

Major mode for editing SCSS files in Emacs

Added to portage

2024-12-10

semi - 1.14.7_p20230811
Ebuild name:

app-emacs/semi-1.14.7_p20230811

Description

A library to provide MIME feature for GNU Emacs

Added to portage

2024-12-10

servant - 0.3.0
Ebuild name:

app-emacs/servant-0.3.0

Description

ELPA server written in Emacs Lisp

Added to portage

2024-12-10

sesman - 0.3.4
Ebuild name:

app-emacs/sesman-0.3.4

Description

Generic session manager for Emacs based IDEs

Added to portage

2024-12-10

simdjson - 3.11.2
Ebuild name:

dev-libs/simdjson-3.11.2

Description

SIMD accelerated C++ JSON library

Added to portage

2024-12-10

sourcegit - 8.42
Ebuild name:

dev-vcs/sourcegit-8.42

Description

Open Source Git GUI client using .NET AvaloniaUI

Added to portage

2024-12-10

sqlglot - 25.34.1
Ebuild name:

dev-python/sqlglot-25.34.1

Description

An easily customizable SQL parser and transpiler

Added to portage

2024-12-10

telegram-desktop - 5.9.0
Ebuild name:

net-im/telegram-desktop-5.9.0

Description

Official desktop client for Telegram

Added to portage

2024-12-10

telegram-desktop-bin - 5.9.0
Ebuild name:

net-im/telegram-desktop-bin-5.9.0

Description

Official desktop client for Telegram (binary package)

Added to portage

2024-12-10

tomcat - 10.1.34
Ebuild name:

www-servers/tomcat-10.1.34

Description

Tomcat Servlet-6.0/JSP-3.1/EL-5.0/WebSocket-2.1/JASPIC-3.0 Container

Added to portage

2024-12-10

tomcat - 11.0.2
Ebuild name:

www-servers/tomcat-11.0.2

Description

Tomcat Servlet-6.1/JSP-4.0/EL-6.0/WebSocket-2.2/JASPIC-3.1 Container

Added to portage

2024-12-10

tomcat - 9.0.98
Ebuild name:

www-servers/tomcat-9.0.98

Description

Tomcat Servlet-4.0/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 Container

Added to portage

2024-12-10

vanilla-kernel - 6.12.4
Ebuild name:

sys-kernel/vanilla-kernel-6.12.4

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-12-10

vanilla-kernel - 6.6.64
Ebuild name:

sys-kernel/vanilla-kernel-6.6.64

Description

Linux kernel built from vanilla upstream sources

Added to portage

2024-12-10

winbox - 4.0_beta14
Ebuild name:

app-admin/winbox-4.0_beta14

Description

Management Software for MikroTik RouterOS

Added to portage

2024-12-10

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