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:

75903

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
2025-06-01
R - 4.5.0
Ebuild name:

dev-lang/R-4.5.0

Description

Language and environment for statistical computing and graphics

Added to portage

2025-06-01

aiohttp - 3.12.6
Ebuild name:

dev-python/aiohttp-3.12.6

Description

HTTP client/server for asyncio

Added to portage

2025-06-01

aiounittest - 1.5.0-r1
Ebuild name:

dev-python/aiounittest-1.5.0-r1

Description

Test asyncio code more easily

Added to portage

2025-06-01

audioop-lts - 0.2.1
Ebuild name:

dev-python/audioop-lts-0.2.1

Description

An LTS port of Python's audioop module

Added to portage

2025-06-01

audioread - 3.0.1-r1
Ebuild name:

dev-python/audioread-3.0.1-r1

Description

Wrapper for audio file decoding using FFmpeg or GStreamer

Added to portage

2025-06-01

beets - 2.3.1
Ebuild name:

media-sound/beets-2.3.1

Description

Media library management system for obsessive music geeks

Added to portage

2025-06-01

bindfs - 1.18.0
Ebuild name:

sys-fs/bindfs-1.18.0

Description

FUSE filesystem for bind mounting with altered permissions

Added to portage

2025-06-01

cattrs - 25.1.0
Ebuild name:

dev-python/cattrs-25.1.0

Description

Composable complex class support for attrs and dataclasses

Added to portage

2025-06-01

cmd2 - 2.6.0
Ebuild name:

dev-python/cmd2-2.6.0

Description

Extra features for standard library's cmd module

Added to portage

2025-06-01

colorized-logs - 2.7
Ebuild name:

sys-apps/colorized-logs-2.7

Description

Tools for logs with ANSI color

Added to portage

2025-06-01

csv - 3.3.5
Ebuild name:

dev-ruby/csv-3.3.5

Description

The CSV library provides a complete interface to CSV files and data

Added to portage

2025-06-01

curtsies - 0.4.2-r1
Ebuild name:

dev-python/curtsies-0.4.2-r1

Description

Curses-like terminal wrapper, with colored strings

Added to portage

2025-06-01

debian-archive-keyring - 2025.1
Ebuild name:

app-crypt/debian-archive-keyring-2025.1

Description

GnuPG archive keys of the Debian archive

Added to portage

2025-06-01

diffoscope - 297
Ebuild name:

dev-util/diffoscope-297

Description

Will try to get to the bottom of what makes files or directories different

Added to portage

2025-06-01

dill - 0.4.0
Ebuild name:

dev-python/dill-0.4.0

Description

Serialize all of Python (almost)

Added to portage

2025-06-01

eselect-zig - 2
Ebuild name:

app-eselect/eselect-zig-2

Description

Manages Zig versions

Added to portage

2025-06-01

exempi - 2.6.6
Ebuild name:

media-libs/exempi-2.6.6

Description

Port of the Adobe XMP SDK to work on UNIX

Added to portage

2025-06-01

gcc - 13.3.1_p20250530
Ebuild name:

sys-devel/gcc-13.3.1_p20250530

Description

The GNU Compiler Collection

Added to portage

2025-06-01

gcc - 14.3.1_p20250530
Ebuild name:

sys-devel/gcc-14.3.1_p20250530

Description

The GNU Compiler Collection

Added to portage

2025-06-01

gcc - 15.1.1_p20250531
Ebuild name:

sys-devel/gcc-15.1.1_p20250531

Description

The GNU Compiler Collection

Added to portage

2025-06-01

git-machete - 3.35.1
Ebuild name:

dev-vcs/git-machete-3.35.1

Description

Probably the sharpest git repo organizer & rebase/merge workflow aut

Added to portage

2025-06-01

gnome-mahjongg - 47.2
Ebuild name:

games-board/gnome-mahjongg-47.2

Description

Disassemble a pile of tiles by removing matching pairs

Added to portage

2025-06-01

gnome-software - 47.5
Ebuild name:

gnome-extra/gnome-software-47.5

Description

Gnome install & update software

Added to portage

2025-06-01

gnome-sudoku - 47.3
Ebuild name:

games-puzzle/gnome-sudoku-47.3

Description

Test your logic skills in this number grid puzzle

Added to portage

2025-06-01

gnome-system-monitor - 47.1
Ebuild name:

gnome-extra/gnome-system-monitor-47.1

Description

The Gnome System Monitor

Added to portage

2025-06-01

gnome-user-docs - 47.6
Ebuild name:

gnome-extra/gnome-user-docs-47.6

Description

GNOME end user documentation

Added to portage

2025-06-01

hugo - 0.147.7
Ebuild name:

www-apps/hugo-0.147.7

Description

Fast static HTML and CSS website generator

Added to portage

2025-06-01

hypothesis - 6.132.0
Ebuild name:

dev-python/hypothesis-6.132.0

Description

A library for property based testing

Added to portage

2025-06-01

ipython - 8.37.0
Ebuild name:

dev-python/ipython-8.37.0

Description

Advanced interactive shell for Python

Added to portage

2025-06-01

ipython - 9.3.0
Ebuild name:

dev-python/ipython-9.3.0

Description

Advanced interactive shell for Python

Added to portage

2025-06-01

jsonschema-path - 0.3.4-r1
Ebuild name:

dev-python/jsonschema-path-0.3.4-r1

Description

JSONSchema Spec with object-oriented paths

Added to portage

2025-06-01

lap - 0.5.12
Ebuild name:

dev-python/lap-0.5.12

Description

Linear Assignment Problem solver (LAPJV/LAPMOD)

Added to portage

2025-06-01

libconfig - 1.8.1
Ebuild name:

dev-libs/libconfig-1.8.1

Description

Libconfig is a simple library for manipulating structured configuration fi

Added to portage

2025-06-01

oauth2 - 2.0.12
Ebuild name:

dev-ruby/oauth2-2.0.12

Description

Wrapper for the OAuth 2.0 protocol with a similar style to the OAuth gem

Added to portage

2025-06-01

optipng - 7.9.1
Ebuild name:

media-gfx/optipng-7.9.1

Description

Recompress PNG files to a smaller size without loss of information

Added to portage

2025-06-01

overrides - 7.7.0-r1
Ebuild name:

dev-python/overrides-7.7.0-r1

Description

A decorator to automatically detect mismatch when overriding a method

Added to portage

2025-06-01

parso - 0.8.4-r1
Ebuild name:

dev-python/parso-0.8.4-r1

Description

A python parser that supports error recovery and round-trip parsing

Added to portage

2025-06-01

po-mode - 0.22
Ebuild name:

app-emacs/po-mode-0.22

Description

Major mode for GNU gettext PO files

Added to portage

2025-06-01

poke - 3.0
Ebuild name:

app-emacs/poke-3.0

Description

Emacs meets GNU poke

Added to portage

2025-06-01

ptyxis - 47.13
Ebuild name:

x11-terms/ptyxis-47.13

Description

A terminal for a container-oriented desktop

Added to portage

2025-06-01

puddletag - 2.4.0-r1
Ebuild name:

media-sound/puddletag-2.4.0-r1

Description

Audio tag editor

Added to portage

2025-06-01

pyacoustid - 1.3.0-r1
Ebuild name:

dev-python/pyacoustid-1.3.0-r1

Description

Python bindings for Chromaprint and the AcoustID web service

Added to portage

2025-06-01

pyxdg - 0.28-r2
Ebuild name:

dev-python/pyxdg-0.28-r2

Description

A Python module to deal with freedesktop.org specifications

Added to portage

2025-06-01

quodlibet - 4.6.0-r3
Ebuild name:

media-sound/quodlibet-4.6.0-r3

Description

audio library tagger, manager, and player for GTK+

Added to portage

2025-06-01

quodlibet - 4.7.1
Ebuild name:

media-sound/quodlibet-4.7.1

Description

audio library tagger, manager, and player for GTK+

Added to portage

2025-06-01

screen - 4.9.1-r2
Ebuild name:

app-misc/screen-4.9.1-r2

Description

screen manager with VT100/ANSI terminal emulation

Added to portage

2025-06-01

snakeoil - 0.10.11
Ebuild name:

dev-python/snakeoil-0.10.11

Description

misc common functionality and useful optimizations

Added to portage

2025-06-01

vifm - 0.14.2
Ebuild name:

app-misc/vifm-0.14.2

Description

Console file manager with vi(m)-like keybindings

Added to portage

2025-06-01

zig - 0.14.1
Ebuild name:

dev-lang/zig-0.14.1

Description

A robust, optimal, and maintainable programming language

Added to portage

2025-06-01

zig-bin - 0.14.1
Ebuild name:

dev-lang/zig-bin-0.14.1

Description

A robust, optimal, and maintainable programming language

Added to portage

2025-06-01

2025-05-31
apsw - 3.50.0.0
Ebuild name:

dev-python/apsw-3.50.0.0

Description

APSW - Another Python SQLite Wrapper

Added to portage

2025-05-31

awscli - 1.40.26
Ebuild name:

app-admin/awscli-1.40.26

Description

Universal Command Line Environment for AWS

Added to portage

2025-05-31

base64 - 0.3.0
Ebuild name:

dev-ruby/base64-0.3.0

Description

Support for encoding and decoding binary data using a Base64 representation.

Added to portage

2025-05-31

bash - 5.3_rc1_p20250530
Ebuild name:

app-shells/bash-5.3_rc1_p20250530

Description

The standard GNU Bourne again shell

Added to portage

2025-05-31

bcc - 0.35.0
Ebuild name:

dev-util/bcc-0.35.0

Description

Tools for BPF-based Linux IO analysis, networking, monitoring, and more

Added to portage

2025-05-31

benchmark - 0.4.1
Ebuild name:

dev-ruby/benchmark-0.4.1

Description

A performance benchmarking library

Added to portage

2025-05-31

bigdecimal - 3.2.1
Ebuild name:

dev-ruby/bigdecimal-3.2.1

Description

Arbitrary-precision decimal floating-point number library for Ruby

Added to portage

2025-05-31

boto3 - 1.38.27
Ebuild name:

dev-python/boto3-1.38.27

Description

The AWS SDK for Python

Added to portage

2025-05-31

botocore - 1.38.27
Ebuild name:

dev-python/botocore-1.38.27

Description

Low-level, data-driven core of boto 3

Added to portage

2025-05-31

caja - 1.28.0-r2
Ebuild name:

mate-base/caja-1.28.0-r2

Description

Caja file manager for the MATE desktop

Added to portage

2025-05-31

caja-actions - 1.28.0-r1
Ebuild name:

mate-extra/caja-actions-1.28.0-r1

Description

Caja Actions

Added to portage

2025-05-31

caldav - 1.6.0
Ebuild name:

dev-python/caldav-1.6.0

Description

CalDAV (RFC4791) client library for Python

Added to portage

2025-05-31

cinnamon - 6.2.9-r1
Ebuild name:

gnome-extra/cinnamon-6.2.9-r1

Description

A fork of GNOME Shell with layout similar to GNOME 2

Added to portage

2025-05-31

cinnamon - 6.4.8-r1
Ebuild name:

gnome-extra/cinnamon-6.4.8-r1

Description

A fork of GNOME Shell with layout similar to GNOME 2

Added to portage

2025-05-31

dia - 0.97.3-r4
Ebuild name:

app-office/dia-0.97.3-r4

Description

Diagram/flowchart creation program

Added to portage

2025-05-31

epiphany - 46.4-r1
Ebuild name:

www-client/epiphany-46.4-r1

Description

GNOME webbrowser based on Webkit

Added to portage

2025-05-31

epiphany - 47.2-r1
Ebuild name:

www-client/epiphany-47.2-r1

Description

GNOME webbrowser based on Webkit

Added to portage

2025-05-31

epiphany - 47.7-r1
Ebuild name:

www-client/epiphany-47.7-r1

Description

GNOME webbrowser based on Webkit

Added to portage

2025-05-31

evince - 46.3.1-r1
Ebuild name:

app-text/evince-46.3.1-r1

Description

Simple document viewer for GNOME

Added to portage

2025-05-31

evince - 48.0-r1
Ebuild name:

app-text/evince-48.0-r1

Description

Simple document viewer for GNOME

Added to portage

2025-05-31

evolution - 3.52.4-r3
Ebuild name:

mail-client/evolution-3.52.4-r3

Description

Integrated mail, addressbook and calendaring functionality

Added to portage

2025-05-31

evolution - 3.54.3-r1
Ebuild name:

mail-client/evolution-3.54.3-r1

Description

Integrated mail, addressbook and calendaring functionality

Added to portage

2025-05-31

evolution-data-server - 3.52.4-r3
Ebuild name:

gnome-extra/evolution-data-server-3.52.4-r3

Description

Evolution groupware backend

Added to portage

2025-05-31

evolution-data-server - 3.54.3-r1
Ebuild name:

gnome-extra/evolution-data-server-3.54.3-r1

Description

Evolution groupware backend

Added to portage

2025-05-31

evolution-ews - 3.52.4-r1
Ebuild name:

gnome-extra/evolution-ews-3.52.4-r1

Description

Evolution module for connecting to Microsoft Exchange Web Servi

Added to portage

2025-05-31

evolution-ews - 3.54.3.0-r1
Ebuild name:

gnome-extra/evolution-ews-3.54.3.0-r1

Description

Evolution module for connecting to Microsoft Exchange Web Ser

Added to portage

2025-05-31

fantomas - 7.0.2
Ebuild name:

dev-dotnet/fantomas-7.0.2

Description

FSharp source code formatter

Added to portage

2025-05-31

gentoo-elections - 0_p20240831
Ebuild name:

app-misc/gentoo-elections-0_p20240831

Description

Gentoo election control data and scripts

Added to portage

2025-05-31

glade - 3.40.0-r2
Ebuild name:

dev-util/glade-3.40.0-r2

Description

A user interface designer for GTK+ and GNOME

Added to portage

2025-05-31

gnome-applets - 3.46.0-r1
Ebuild name:

gnome-base/gnome-applets-3.46.0-r1

Description

Applets for the GNOME Flashback Panel

Added to portage

2025-05-31

gnome-applets - 3.50.0-r1
Ebuild name:

gnome-base/gnome-applets-3.50.0-r1

Description

Applets for the GNOME Flashback Panel

Added to portage

2025-05-31

gnome-applets - 3.52.0-r1
Ebuild name:

gnome-base/gnome-applets-3.52.0-r1

Description

Applets for the GNOME Flashback Panel

Added to portage

2025-05-31

gnome-applets - 3.54.0-r1
Ebuild name:

gnome-base/gnome-applets-3.54.0-r1

Description

Applets for the GNOME Flashback Panel

Added to portage

2025-05-31

gnome-boxes - 46.1-r1
Ebuild name:

gnome-extra/gnome-boxes-46.1-r1

Description

Simple GNOME application to access remote or virtual systems

Added to portage

2025-05-31

gnome-boxes - 47.0-r1
Ebuild name:

gnome-extra/gnome-boxes-47.0-r1

Description

Simple GNOME application to access remote or virtual systems

Added to portage

2025-05-31

gnome-builder - 46.3-r1
Ebuild name:

dev-util/gnome-builder-46.3-r1

Description

An IDE for writing GNOME-based software

Added to portage

2025-05-31

gnome-builder - 47.2-r1
Ebuild name:

dev-util/gnome-builder-47.2-r1

Description

An IDE for writing GNOME-based software

Added to portage

2025-05-31

gnome-calculator - 46.1-r1
Ebuild name:

gnome-extra/gnome-calculator-46.1-r1

Description

A calculator application for GNOME

Added to portage

2025-05-31

gnome-calculator - 47.1-r1
Ebuild name:

gnome-extra/gnome-calculator-47.1-r1

Description

A calculator application for GNOME

Added to portage

2025-05-31

gnome-calculator - 47.3-r1
Ebuild name:

gnome-extra/gnome-calculator-47.3-r1

Description

A calculator application for GNOME

Added to portage

2025-05-31

gnome-chemistry-utils - 0.14.17_p6-r4
Ebuild name:

sci-chemistry/gnome-chemistry-utils-0.14.17_p6-r4

Description

Programs and library containing GTK widgets and C

Added to portage

2025-05-31

gnome-connections - 46.0-r1
Ebuild name:

net-misc/gnome-connections-46.0-r1

Description

A remote desktop client for the GNOME desktop environment

Added to portage

2025-05-31

gnome-connections - 47.0-r1
Ebuild name:

net-misc/gnome-connections-47.0-r1

Description

A remote desktop client for the GNOME desktop environment

Added to portage

2025-05-31

gnome-connections - 47.2.1-r1
Ebuild name:

net-misc/gnome-connections-47.2.1-r1

Description

A remote desktop client for the GNOME desktop environment

Added to portage

2025-05-31

gnome-control-center - 46.4-r2
Ebuild name:

gnome-base/gnome-control-center-46.4-r2

Description

GNOME's main interface to configure various aspects of the

Added to portage

2025-05-31

gnome-control-center - 47.3-r1
Ebuild name:

gnome-base/gnome-control-center-47.3-r1

Description

GNOME's main interface to configure various aspects of the

Added to portage

2025-05-31

gnome-maps - 46.11-r1
Ebuild name:

sci-geosciences/gnome-maps-46.11-r1

Description

A map application for GNOME

Added to portage

2025-05-31

gnome-maps - 47.3-r1
Ebuild name:

sci-geosciences/gnome-maps-47.3-r1

Description

A map application for GNOME

Added to portage

2025-05-31

gnome-online-accounts - 3.48.1-r1
Ebuild name:

net-libs/gnome-online-accounts-3.48.1-r1

Description

GNOME framework for accessing online accounts

Added to portage

2025-05-31

gnome-online-accounts - 3.50.4-r1
Ebuild name:

net-libs/gnome-online-accounts-3.50.4-r1

Description

GNOME framework for accessing online accounts

Added to portage

2025-05-31

gnome-online-accounts - 3.52.3.1-r1
Ebuild name:

net-libs/gnome-online-accounts-3.52.3.1-r1

Description

GNOME framework for accessing online accounts

Added to portage

2025-05-31

gnome-shell - 46.7-r1
Ebuild name:

gnome-base/gnome-shell-46.7-r1

Description

Provides core UI functions for the GNOME desktop

Added to portage

2025-05-31

gnome-shell - 47.3-r2
Ebuild name:

gnome-base/gnome-shell-47.3-r2

Description

Provides core UI functions for the GNOME desktop

Added to portage

2025-05-31

gnome-system-monitor - 45.0.2-r1
Ebuild name:

gnome-extra/gnome-system-monitor-45.0.2-r1

Description

The Gnome System Monitor

Added to portage

2025-05-31

gnome-system-monitor - 46.0-r2
Ebuild name:

gnome-extra/gnome-system-monitor-46.0-r2

Description

The Gnome System Monitor

Added to portage

2025-05-31

gnome-system-monitor - 47.0-r1
Ebuild name:

gnome-extra/gnome-system-monitor-47.0-r1

Description

The Gnome System Monitor

Added to portage

2025-05-31

gnumeric - 1.12.57-r1
Ebuild name:

app-office/gnumeric-1.12.57-r1

Description

The GNOME Spreadsheet

Added to portage

2025-05-31

gnumeric - 1.12.59-r1
Ebuild name:

app-office/gnumeric-1.12.59-r1

Description

The GNOME Spreadsheet

Added to portage

2025-05-31

goffice - 0.10.57-r1
Ebuild name:

x11-libs/goffice-0.10.57-r1

Description

A library of document-centric objects and utilities

Added to portage

2025-05-31

goffice - 0.10.59-r1
Ebuild name:

x11-libs/goffice-0.10.59-r1

Description

A library of document-centric objects and utilities

Added to portage

2025-05-31

gtk-doc - 1.33.2-r2
Ebuild name:

dev-util/gtk-doc-1.33.2-r2

Description

GTK+ Documentation Generator

Added to portage

2025-05-31

gtk-doc - 1.34.0-r1
Ebuild name:

dev-util/gtk-doc-1.34.0-r1

Description

GTK+ Documentation Generator

Added to portage

2025-05-31

gtksourceview - 2.10.5-r5
Ebuild name:

x11-libs/gtksourceview-2.10.5-r5

Description

Text widget implementing syntax highlighting and other features

Added to portage

2025-05-31

gtksourceview - 3.24.11-r2
Ebuild name:

x11-libs/gtksourceview-3.24.11-r2

Description

A text widget implementing syntax highlighting and other features

Added to portage

2025-05-31

gtksourceview - 3.24.11-r4
Ebuild name:

x11-libs/gtksourceview-3.24.11-r4

Description

A text widget implementing syntax highlighting and other features

Added to portage

2025-05-31

gtksourceview - 4.8.4-r2
Ebuild name:

x11-libs/gtksourceview-4.8.4-r2

Description

A text widget implementing syntax highlighting and other features

Added to portage

2025-05-31

gtksourceview - 5.12.1-r2
Ebuild name:

gui-libs/gtksourceview-5.12.1-r2

Description

A text widget implementing syntax highlighting and other features

Added to portage

2025-05-31

gtksourceview - 5.14.2-r1
Ebuild name:

gui-libs/gtksourceview-5.14.2-r1

Description

A text widget implementing syntax highlighting and other features

Added to portage

2025-05-31

gtranslator - 46.1-r1
Ebuild name:

app-text/gtranslator-46.1-r1

Description

GNOME Translation Editor

Added to portage

2025-05-31

gtranslator - 47.1-r1
Ebuild name:

app-text/gtranslator-47.1-r1

Description

GNOME Translation Editor

Added to portage

2025-05-31

gvfs - 1.52.3-r2
Ebuild name:

gnome-base/gvfs-1.52.3-r2

Description

Virtual filesystem implementation for GIO

Added to portage

2025-05-31

gvfs - 1.56.1-r2
Ebuild name:

gnome-base/gvfs-1.56.1-r2

Description

Virtual filesystem implementation for GIO

Added to portage

2025-05-31

hypothesis - 6.131.32
Ebuild name:

dev-python/hypothesis-6.131.32

Description

A library for property based testing

Added to portage

2025-05-31

incus - 6.13
Ebuild name:

app-containers/incus-6.13

Description

Modern, secure and powerful system container and virtual machine manager

Added to portage

2025-05-31

iotop-c - 1.30
Ebuild name:

sys-process/iotop-c-1.30

Description

top utility for IO (C port)

Added to portage

2025-05-31

iproute2 - 6.15.0
Ebuild name:

sys-apps/iproute2-6.15.0

Description

kernel routing and traffic control utilities

Added to portage

2025-05-31

kbd - 2.8.0
Ebuild name:

sys-apps/kbd-2.8.0

Description

Keyboard and console utilities

Added to portage

2025-05-31

libfprint - 1.94.9
Ebuild name:

sys-auth/libfprint-1.94.9

Description

Library to add support for consumer fingerprint readers

Added to portage

2025-05-31

libgda - 5.2.9-r3
Ebuild name:

gnome-extra/libgda-5.2.9-r3

Description

GNOME database access library

Added to portage

2025-05-31

libgedit-gtksourceview - 299.0.4-r1
Ebuild name:

gui-libs/libgedit-gtksourceview-299.0.4-r1

Description

Gedit Technology - Source code editing widget

Added to portage

2025-05-31

libgedit-gtksourceview - 299.3.0-r1
Ebuild name:

gui-libs/libgedit-gtksourceview-299.3.0-r1

Description

Gedit Technology - Source code editing widget

Added to portage

2025-05-31

libgedit-gtksourceview - 299.4.0-r1
Ebuild name:

gui-libs/libgedit-gtksourceview-299.4.0-r1

Description

Gedit Technology - Source code editing widget

Added to portage

2025-05-31

libgepub - 0.7.1-r1
Ebuild name:

app-text/libgepub-0.7.1-r1

Description

GObject based library for handling and rendering epub documents

Added to portage

2025-05-31

libglade - 2.6.4-r5
Ebuild name:

gnome-base/libglade-2.6.4-r5

Description

Library to construct graphical interfaces at runtime

Added to portage

2025-05-31

libgrss - 0.7.0-r2
Ebuild name:

net-libs/libgrss-0.7.0-r2

Description

Library for easy management of RSS/Atom/Pie feeds

Added to portage

2025-05-31

libgsf - 1.14.53-r1
Ebuild name:

gnome-extra/libgsf-1.14.53-r1

Description

The GNOME Structured File Library

Added to portage

2025-05-31

libgweather - 4.4.2-r1
Ebuild name:

dev-libs/libgweather-4.4.2-r1

Description

Location and timezone database and weather-lookup library

Added to portage

2025-05-31

libmateweather - 1.28.0-r1
Ebuild name:

dev-libs/libmateweather-1.28.0-r1

Description

MATE library to access weather information from online services

Added to portage

2025-05-31

librsvg - 2.40.21-r1
Ebuild name:

gnome-base/librsvg-2.40.21-r1

Description

Scalable Vector Graphics (SVG) rendering library

Added to portage

2025-05-31

librsvg - 2.57.3-r3
Ebuild name:

gnome-base/librsvg-2.57.3-r3

Description

Scalable Vector Graphics (SVG) rendering library

Added to portage

2025-05-31

librsvg - 2.58.2-r3
Ebuild name:

gnome-base/librsvg-2.58.2-r3

Description

Scalable Vector Graphics (SVG) rendering library

Added to portage

2025-05-31

librsvg - 2.58.5-r1
Ebuild name:

gnome-base/librsvg-2.58.5-r1

Description

Scalable Vector Graphics (SVG) rendering library

Added to portage

2025-05-31

libvncserver - 0.9.15-r1
Ebuild name:

net-libs/libvncserver-0.9.15-r1

Description

library for creating vnc servers

Added to portage

2025-05-31

libxslt - 1.1.43-r1
Ebuild name:

dev-libs/libxslt-1.1.43-r1

Description

XSLT libraries and tools

Added to portage

2025-05-31

magic-wormhole - 0.19.2
Ebuild name:

dev-python/magic-wormhole-0.19.2

Description

Get Things From One Computer To Another, Safely

Added to portage

2025-05-31

mate-applets - 1.28.0-r1
Ebuild name:

mate-base/mate-applets-1.28.0-r1

Description

Applets for the MATE Desktop and Panel

Added to portage

2025-05-31

mate-calc - 1.28.0-r1
Ebuild name:

mate-extra/mate-calc-1.28.0-r1

Description

Calculator for MATE

Added to portage

2025-05-31

mate-control-center - 1.28.0-r2
Ebuild name:

mate-base/mate-control-center-1.28.0-r2

Description

The MATE Desktop configuration tool

Added to portage

2025-05-31

mate-media - 1.28.1-r2
Ebuild name:

mate-extra/mate-media-1.28.1-r2

Description

Multimedia related programs for the MATE desktop

Added to portage

2025-05-31

mate-notification-daemon - 1.28.1-r2
Ebuild name:

x11-misc/mate-notification-daemon-1.28.1-r2

Description

MATE Notification daemon

Added to portage

2025-05-31

mate-panel - 1.28.1-r1
Ebuild name:

mate-base/mate-panel-1.28.1-r1

Description

The MATE panel

Added to portage

2025-05-31

mate-panel - 1.28.4-r1
Ebuild name:

mate-base/mate-panel-1.28.4-r1

Description

The MATE panel

Added to portage

2025-05-31

mate-system-monitor - 1.28.0-r1
Ebuild name:

mate-extra/mate-system-monitor-1.28.0-r1

Description

The MATE System Monitor

Added to portage

2025-05-31

mate-system-monitor - 1.28.1-r1
Ebuild name:

mate-extra/mate-system-monitor-1.28.1-r1

Description

The MATE System Monitor

Added to portage

2025-05-31

mitmproxy-linux - 0.12.5
Ebuild name:

net-proxy/mitmproxy-linux-0.12.5

Description

mitmproxy's Rust bits

Added to portage

2025-05-31

mitmproxy-rs - 0.12.5
Ebuild name:

net-proxy/mitmproxy-rs-0.12.5

Description

mitmproxy's Rust bits

Added to portage

2025-05-31

nemo - 6.2.8-r1
Ebuild name:

gnome-extra/nemo-6.2.8-r1

Description

A file manager for Cinnamon, forked from Nautilus

Added to portage

2025-05-31

netdiscover - 0.20
Ebuild name:

net-analyzer/netdiscover-0.20

Description

Active/passive address reconnaissance tool

Added to portage

2025-05-31

nprolog - 4.36
Ebuild name:

dev-lang/nprolog-4.36

Description

Interpreter and compiler to be compatible with Arity/Prolog32

Added to portage

2025-05-31

osu-lazer - 2025.424.0
Ebuild name:

games-arcade/osu-lazer-2025.424.0

Description

A free-to-win rhythm game and a final iteration of the osu game c

Added to portage

2025-05-31

pandoc-bin - 3.7.0.2
Ebuild name:

app-text/pandoc-bin-3.7.0.2

Description

Conversion between markup formats (binary package)

Added to portage

2025-05-31

pathable - 0.5.0_alpha2
Ebuild name:

dev-python/pathable-0.5.0_alpha2

Description

Object-oriented paths

Added to portage

2025-05-31

planner - 0.14.91-r1
Ebuild name:

app-office/planner-0.14.91-r1

Description

Project manager for Gnome

Added to portage

2025-05-31

planner - 0.14.92-r1
Ebuild name:

app-office/planner-0.14.92-r1

Description

Project manager for Gnome

Added to portage

2025-05-31

plz - 0.7.2
Ebuild name:

app-emacs/plz-0.7.2

Description

HTTP library with curl backend for GNU Emacs

Added to portage

2025-05-31

plz - 0.9.1
Ebuild name:

app-emacs/plz-0.9.1

Description

HTTP library with curl backend for GNU Emacs

Added to portage

2025-05-31

process_executer - 3.2.4
Ebuild name:

dev-ruby/process_executer-3.2.4

Description

An API for executing commands in a subprocess

Added to portage

2025-05-31

pyrate-limiter - 3.7.1
Ebuild name:

dev-python/pyrate-limiter-3.7.1

Description

Python Rate-Limiter using Leaky-Bucket Algorimth Family

Added to portage

2025-05-31

pytest-regressions - 2.8.0
Ebuild name:

dev-python/pytest-regressions-2.8.0

Description

Easy to use fixtures to write regression tests

Added to portage

2025-05-31

rake - 13.3.0
Ebuild name:

dev-ruby/rake-13.3.0

Description

Make-like scripting in Ruby

Added to portage

2025-05-31

sasquatch - 4.5.1.5
Ebuild name:

app-arch/sasquatch-4.5.1.5

Description

An extended version of sasquashfs-tools

Added to portage

2025-05-31

scrcpy - 3.2-r1
Ebuild name:

app-mobilephone/scrcpy-3.2-r1

Description

Display and control your Android device

Added to portage

2025-05-31

sddm - 0.21.0_p20250502-r1
Ebuild name:

x11-misc/sddm-0.21.0_p20250502-r1

Description

Simple Desktop Display Manager

Added to portage

2025-05-31

simsimd - 6.4.5
Ebuild name:

dev-python/simsimd-6.4.5

Description

Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm

Added to portage

2025-05-31

spidermonkey - 128.11.0
Ebuild name:

dev-lang/spidermonkey-128.11.0

Description

Mozilla's JavaScript engine written in C and C++

Added to portage

2025-05-31

sqlite - 3.50.0
Ebuild name:

dev-db/sqlite-3.50.0

Description

SQL database engine

Added to portage

2025-05-31

srt - 1.5.4-r1
Ebuild name:

net-libs/srt-1.5.4-r1

Description

Secure Reliable Transport (SRT) library and tools

Added to portage

2025-05-31

tesseract - 5.5.1
Ebuild name:

app-text/tesseract-5.5.1

Description

An OCR Engine, originally developed at HP, now open source

Added to portage

2025-05-31

tracker - 3.6.0-r2
Ebuild name:

app-misc/tracker-3.6.0-r2

Description

A tagging metadata database, search tool and indexer

Added to portage

2025-05-31

tracker-miners - 3.6.2-r2
Ebuild name:

app-misc/tracker-miners-3.6.2-r2

Description

Collection of data extractors for Tracker/Nepomuk

Added to portage

2025-05-31

uncrustify - 0.81.0
Ebuild name:

dev-util/uncrustify-0.81.0

Description

C/C++/C/D/Java/Pawn code indenter and beautifier

Added to portage

2025-05-31

uv - 0.7.9
Ebuild name:

dev-python/uv-0.7.9

Description

A Python package installer and resolver, written in Rust

Added to portage

2025-05-31

uv-build - 0.7.9
Ebuild name:

dev-python/uv-build-0.7.9

Description

PEP517 uv build backend

Added to portage

2025-05-31

warlock - 2.1.0
Ebuild name:

dev-python/warlock-2.1.0

Description

Python object model built on JSON schema and JSON patch

Added to portage

2025-05-31

ydotool - 1.0.4-r4
Ebuild name:

x11-misc/ydotool-1.0.4-r4

Description

Generic command-line automation tool (no X

Added to portage

2025-05-31

yelp - 42.2-r2
Ebuild name:

gnome-extra/yelp-42.2-r2

Description

Help browser for GNOME

Added to portage

2025-05-31

yelp-tools - 42.1-r1
Ebuild name:

app-text/yelp-tools-42.1-r1

Description

Collection of tools for building and converting documentation

Added to portage

2025-05-31

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