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:

75718

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->openssh

Create a chrooted ssh user

This tutorial explains how to install and configure a chroot enviroment for an ssh user. This setup enables you to give out ssh accounts without having to fear that this user can see all files on the system.

Installing ssh

First you need to have a patched version of the sshd server. Luckily these patches can be enabled with the use flag "chroot" in the sshd use flags.
#echo "net-misc/openssh chroot" >> /etc/portage/package.use
#emerge openssh

creating the chroot enviroment

We will create our chroot enviroment in /home/chroot.
To make the chroot work, run the following commands to make the needed directories and devices for the chrooted user.
mkdir /home/chroot/
mkdir /home/chroot/home/
cd /home/chroot
mkdir etc
mkdir bin
mkdir lib
mkdir usr
mkdir usr/bin
mkdir dev
mknod dev/null c 1 3
mknod dev/zero c 1 5

Now we need to populate the directories with some binaries.
copy the following script into a file. If you need more apps, add them
to the APPS line.

APPS="/bin/bash /bin/ls /bin/mkdir /bin/mv /bin/pwd /bin/rm /usr/bin/id /usr/bin/ssh /bin/ping /usr/bin/dircolors"
for prog in $APPS; do
cp $prog ./$prog

# obtain a list of related libraries
ldd $prog > /dev/null
if [ "$?" = 0 ] ; then
LIBS=`ldd $prog | awk '{ print $3 }'`
for l in $LIBS; do
mkdir ./`dirname $l` > /dev/null 2>&1
cp $l ./$l
done
fi
done

After you have run the script, your chroot enviroment is almost done.
run

cp /lib/libnss_compat.so.2 /lib/libnsl.so.1 /lib/libnss_files.so.2 ./lib/
echo '#!/bin/bash' > usr/bin/groups
echo "id -Gn" >> usr/bin/groups
touch etc/passwd
grep /etc/passwd -e "^root" > etc/passwd
to copy some libraries and user information into the chroot.
You should also copy the line of the group in which you will create new users from /etc/group to /home/chroot/etc/group. In this tutorial we will create users in the group users, so we do this:
grep /etc/group -e "^root" -e "^users" > etc/group

and restart SSH:
/etc/init.d/ssh restart

Creating chrooted users

ssh decides which user should be chrooted and which not by the "home directory" entry in the /etc/passwd.
Example for a non-chrooted user:
user_a:x:2002:100:User A:/home/user_a:/bin/bash
This user will be chrooted:
user_b:x:2003:100:User B:/home/chroot/./home/user_b:/bin/bash
Now lets add a testuser to the chrooted user list:
useradd -s /bin/bash -m -d /home/chroot/./home/testuser -c "testuser" -g users testuser

Then we give testuser a password:
passwd testuser

Finally, we have to copy the line for testuser in /etc/passwd to /home/chroot/etc/passwd:
grep /etc/passwd -e "^testuser" >> /home/chroot/etc/passwd


Now log in as testuser and see if everything worked.

Have fun
rate this article:
current rating: average rating: 1.2 (48 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-05-29
ada_language_server - 25.0.20241014-r4
Ebuild name:

dev-ada/ada_language_server-25.0.20241014-r4

Description

a Language Server Protocol for Ada/SPARK

Added to portage

2025-05-29

aiohttp - 3.12.4
Ebuild name:

dev-python/aiohttp-3.12.4

Description

HTTP client/server for asyncio

Added to portage

2025-05-29

awscli - 1.40.24
Ebuild name:

app-admin/awscli-1.40.24

Description

Universal Command Line Environment for AWS

Added to portage

2025-05-29

bacula - 15.0.3-r1
Ebuild name:

app-backup/bacula-15.0.3-r1

Description

Featureful client/server network backup suite

Added to portage

2025-05-29

boto3 - 1.38.25
Ebuild name:

dev-python/boto3-1.38.25

Description

The AWS SDK for Python

Added to portage

2025-05-29

botocore - 1.38.25
Ebuild name:

dev-python/botocore-1.38.25

Description

Low-level, data-driven core of boto 3

Added to portage

2025-05-29

braintree - 4.36.0
Ebuild name:

dev-python/braintree-4.36.0

Description

Braintree Python Library

Added to portage

2025-05-29

chrome-binary-plugins - 137.0.7151.55
Ebuild name:

www-plugins/chrome-binary-plugins-137.0.7151.55

Description

Binary plugins from Google Chrome for use in Chromi

Added to portage

2025-05-29

chrome-binary-plugins - 138.0.7191.0_alpha
Ebuild name:

www-plugins/chrome-binary-plugins-138.0.7191.0_alpha

Description

Binary plugins from Google Chrome for use in C

Added to portage

2025-05-29

chrome-binary-plugins - 138.0.7204.4_beta
Ebuild name:

www-plugins/chrome-binary-plugins-138.0.7204.4_beta

Description

Binary plugins from Google Chrome for use in Ch

Added to portage

2025-05-29

chromedriver-bin - 137.0.7151.55
Ebuild name:

www-apps/chromedriver-bin-137.0.7151.55

Description

WebDriver for Chrome

Added to portage

2025-05-29

chromium - 137.0.7151.55
Ebuild name:

www-client/chromium-137.0.7151.55

Description

Open-source version of Google Chrome web browser

Added to portage

2025-05-29

chromium - 138.0.7204.4
Ebuild name:

www-client/chromium-138.0.7204.4

Description

Open-source version of Google Chrome web browser

Added to portage

2025-05-29

fonttools - 4.58.1
Ebuild name:

dev-python/fonttools-4.58.1

Description

Library for manipulating TrueType, OpenType, AFM and Type1 fonts

Added to portage

2025-05-29

fpylll - 0.6.3-r1
Ebuild name:

dev-python/fpylll-0.6.3-r1

Description

Python bindings for sci-libs/fplll

Added to portage

2025-05-29

fs - 2.4.16-r1
Ebuild name:

dev-python/fs-2.4.16-r1

Description

Filesystem abstraction layer

Added to portage

2025-05-29

geeqie - 2.6
Ebuild name:

media-gfx/geeqie-2.6

Description

A lightweight GTK image viewer forked from GQview

Added to portage

2025-05-29

google-chrome - 137.0.7151.55
Ebuild name:

www-client/google-chrome-137.0.7151.55

Description

The web browser from Google

Added to portage

2025-05-29

google-chrome-beta - 138.0.7204.4
Ebuild name:

www-client/google-chrome-beta-138.0.7204.4

Description

The web browser from Google

Added to portage

2025-05-29

google-chrome-unstable - 138.0.7191.0
Ebuild name:

www-client/google-chrome-unstable-138.0.7191.0

Description

The web browser from Google

Added to portage

2025-05-29

inline-snapshot - 0.23.2
Ebuild name:

dev-python/inline-snapshot-0.23.2

Description

Create and update inline snapshots in your Python tests

Added to portage

2025-05-29

linbox - 1.7.0-r2
Ebuild name:

sci-libs/linbox-1.7.0-r2

Description

C++ template library for integer and finite-field linear algebra

Added to portage

2025-05-29

mesa - 25.0.7
Ebuild name:

media-libs/mesa-25.0.7

Description

OpenGL-like graphic library for Linux

Added to portage

2025-05-29

mesa_clc - 25.0.7
Ebuild name:

dev-util/mesa_clc-25.0.7

Description

mesa_clc tool used for building OpenCL C to SPIR-V

Added to portage

2025-05-29

microsoft-edge - 136.0.3240.92
Ebuild name:

www-client/microsoft-edge-136.0.3240.92

Description

The web browser from Microsoft

Added to portage

2025-05-29

microsoft-edge-beta - 137.0.3296.39
Ebuild name:

www-client/microsoft-edge-beta-137.0.3296.39

Description

The web browser from Microsoft

Added to portage

2025-05-29

microsoft-edge-beta - 137.0.3296.50
Ebuild name:

www-client/microsoft-edge-beta-137.0.3296.50

Description

The web browser from Microsoft

Added to portage

2025-05-29

microsoft-edge-dev - 138.0.3338.1
Ebuild name:

www-client/microsoft-edge-dev-138.0.3338.1

Description

The web browser from Microsoft

Added to portage

2025-05-29

mkdocs-git-revision-date-localized-plugin - 1.4.7
Ebuild name:

dev-python/mkdocs-git-revision-date-localized-plugin-1.4.7

Description

Display the localized date of the last g

Added to portage

2025-05-29

nagios - 4.5.9
Ebuild name:

net-analyzer/nagios-4.5.9

Description

The Nagios metapackage

Added to portage

2025-05-29

nagios-core - 4.5.9
Ebuild name:

net-analyzer/nagios-core-4.5.9

Description

Nagios core - monitoring daemon, web GUI, and documentation

Added to portage

2025-05-29

nushell - 0.104.1
Ebuild name:

app-shells/nushell-0.104.1

Description

A new type of shell, written in Rust

Added to portage

2025-05-29

opera - 119.0.5497.56
Ebuild name:

www-client/opera-119.0.5497.56

Description

A fast and secure web browser

Added to portage

2025-05-29

opera-beta - 120.0.5543.4
Ebuild name:

www-client/opera-beta-120.0.5543.4

Description

A fast and secure web browser

Added to portage

2025-05-29

opera-developer - 121.0.5544.0
Ebuild name:

www-client/opera-developer-121.0.5544.0

Description

A fast and secure web browser

Added to portage

2025-05-29

paper-clip - 5.5.2
Ebuild name:

app-text/paper-clip-5.5.2

Description

Edit the title, author, keywords and more details of PDF documents

Added to portage

2025-05-29

phonenumbers - 9.0.6
Ebuild name:

dev-python/phonenumbers-9.0.6

Description

Python port of Google's libphonenumber

Added to portage

2025-05-29

poke - 3.0
Ebuild name:

app-emacs/poke-3.0

Description

Emacs meets GNU poke

Added to portage

2025-05-29

poke - 3.2
Ebuild name:

app-emacs/poke-3.2

Description

Emacs meets GNU poke

Added to portage

2025-05-29

poke - 3.2
Ebuild name:

app-emacs/poke-3.2

Description

Emacs meets GNU poke

Added to portage

2025-05-29

poke-mode - 3.0
Ebuild name:

app-emacs/poke-mode-3.0

Description

Major mode for editing Poke programs

Added to portage

2025-05-29

protobuf - 5.29.4-r1
Ebuild name:

dev-python/protobuf-5.29.4-r1

Description

Google's Protocol Buffers - Python bindings

Added to portage

2025-05-29

protobuf - 5.29.5
Ebuild name:

dev-python/protobuf-5.29.5

Description

Google's Protocol Buffers - Python bindings

Added to portage

2025-05-29

protobuf - 6.30.2-r1
Ebuild name:

dev-python/protobuf-6.30.2-r1

Description

Google's Protocol Buffers - Python bindings

Added to portage

2025-05-29

python-jose - 3.5.0
Ebuild name:

dev-python/python-jose-3.5.0

Description

A JavaScript Object Signing and Encryption (JOSE) implementation in Py

Added to portage

2025-05-29

rclone - 1.69.3
Ebuild name:

net-misc/rclone-1.69.3

Description

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

Added to portage

2025-05-29

redict - 7.3.3
Ebuild name:

dev-db/redict-7.3.3

Description

A persistent caching system, key-value, and data structures database

Added to portage

2025-05-29

vertico - 2.2
Ebuild name:

app-emacs/vertico-2.2

Description

Vertical interactive completion

Added to portage

2025-05-29

virtualbox-guest-modules - 7.0.26-r1
Ebuild name:

app-emulation/virtualbox-guest-modules-7.0.26-r1

Description

Kernel Modules for Virtualbox Guest Additions

Added to portage

2025-05-29

virtualbox-modules - 7.0.26-r1
Ebuild name:

app-emulation/virtualbox-modules-7.0.26-r1

Description

Kernel Modules for Virtualbox

Added to portage

2025-05-29

2025-05-28
absl-py - 2.3.0
Ebuild name:

dev-python/absl-py-2.3.0

Description

Abseil Python Common Libraries

Added to portage

2025-05-28

automake - 1.18
Ebuild name:

dev-build/automake-1.18

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2025-05-28

automake-vanilla - 1.18
Ebuild name:

dev-build/automake-vanilla-1.18

Description

Used to generate Makefile.in from Makefile.am

Added to portage

2025-05-28

automake-wrapper - 20250528
Ebuild name:

dev-build/automake-wrapper-20250528

Description

Wrapper for automake to manage multiple automake versions

Added to portage

2025-05-28

awscli - 1.40.23
Ebuild name:

app-admin/awscli-1.40.23

Description

Universal Command Line Environment for AWS

Added to portage

2025-05-28

boto3 - 1.38.24
Ebuild name:

dev-python/boto3-1.38.24

Description

The AWS SDK for Python

Added to portage

2025-05-28

botocore - 1.38.24
Ebuild name:

dev-python/botocore-1.38.24

Description

Low-level, data-driven core of boto 3

Added to portage

2025-05-28

clang - 21.0.0_pre20250528
Ebuild name:

dev-python/clang-21.0.0_pre20250528

Description

Python bindings for llvm-core/clang

Added to portage

2025-05-28

clang - 21.0.0_pre20250528
Ebuild name:

llvm-core/clang-21.0.0_pre20250528

Description

C language family frontend for LLVM

Added to portage

2025-05-28

clang-common - 21.0.0_pre20250528
Ebuild name:

llvm-core/clang-common-21.0.0_pre20250528

Description

Common files shared between multiple slots of clang

Added to portage

2025-05-28

clang-runtime - 21.0.0_pre20250528
Ebuild name:

llvm-core/clang-runtime-21.0.0_pre20250528

Description

Meta-ebuild for clang runtime libraries

Added to portage

2025-05-28

clucene - 2.3.3.4-r11
Ebuild name:

dev-cpp/clucene-2.3.3.4-r11

Description

High-performance, full-featured text search engine based off of lucene

Added to portage

2025-05-28

compiler-rt - 21.0.0_pre20250528
Ebuild name:

llvm-runtimes/compiler-rt-21.0.0_pre20250528

Description

Compiler runtime library for clang (built-in part)

Added to portage

2025-05-28

compiler-rt-sanitizers - 21.0.0_pre20250528
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-21.0.0_pre20250528

Description

Compiler runtime libraries for clang (sanit

Added to portage

2025-05-28

cpuid2cpuflags - 16
Ebuild name:

app-portage/cpuid2cpuflags-16

Description

Tool to guess CPU_FLAGS_* flags for the host

Added to portage

2025-05-28

diffoscope - 296
Ebuild name:

dev-util/diffoscope-296

Description

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

Added to portage

2025-05-28

dnsviz - 0.11.1
Ebuild name:

net-dns/dnsviz-0.11.1

Description

Tool suite for analysis and visualization of DNS and DNSSEC

Added to portage

2025-05-28

dropbox - 225.4.4896
Ebuild name:

net-misc/dropbox-225.4.4896

Description

Dropbox daemon (pretends to be GUI-less)

Added to portage

2025-05-28

excon - 1.2.7
Ebuild name:

dev-ruby/excon-1.2.7

Description

EXtended http(s) CONnections

Added to portage

2025-05-28

faraday-net_http - 3.4.0
Ebuild name:

dev-ruby/faraday-net_http-3.4.0

Description

Faraday adapter for Net

Added to portage

2025-05-28

firefox - 128.11.0
Ebuild name:

www-client/firefox-128.11.0

Description

Firefox Web Browser

Added to portage

2025-05-28

firefox-bin - 128.11.0
Ebuild name:

www-client/firefox-bin-128.11.0

Description

Firefox Web Browser

Added to portage

2025-05-28

flang - 21.0.0_pre20250528
Ebuild name:

llvm-core/flang-21.0.0_pre20250528

Description

LLVM's Fortran frontend

Added to portage

2025-05-28

flang-rt - 21.0.0_pre20250528
Ebuild name:

llvm-runtimes/flang-rt-21.0.0_pre20250528

Description

LLVM's Fortran runtime

Added to portage

2025-05-28

gitlab-runner - 17.11.2
Ebuild name:

dev-util/gitlab-runner-17.11.2

Description

The official GitLab Runner, written in Go

Added to portage

2025-05-28

gitlab-runner - 18.0.2
Ebuild name:

dev-util/gitlab-runner-18.0.2

Description

The official GitLab Runner, written in Go

Added to portage

2025-05-28

guestfs-tools - 1.54.0
Ebuild name:

app-emulation/guestfs-tools-1.54.0

Description

Tools for accessing, inspecting, and modifying virtual machine (

Added to portage

2025-05-28

hatch-vcs - 0.5.0
Ebuild name:

dev-python/hatch-vcs-0.5.0

Description

Hatch plugin for versioning with your preferred VCS

Added to portage

2025-05-28

hidapi - 0.15.0
Ebuild name:

dev-libs/hidapi-0.15.0

Description

A multi-platform library for USB and Bluetooth HID-Class devices

Added to portage

2025-05-28

hypothesis - 6.131.30
Ebuild name:

dev-python/hypothesis-6.131.30

Description

A library for property based testing

Added to portage

2025-05-28

jupyter-core - 5.8.1
Ebuild name:

dev-python/jupyter-core-5.8.1

Description

Core common functionality of Jupyter projects

Added to portage

2025-05-28

kubelogin - 1.32.4
Ebuild name:

sys-cluster/kubelogin-1.32.4

Description

kubectl plugin for Kubernetes OpenID Connect authentication

Added to portage

2025-05-28

kubeseal - 0.29.0
Ebuild name:

sys-cluster/kubeseal-0.29.0

Description

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

Added to portage

2025-05-28

lcalc - 2.1.1
Ebuild name:

sci-mathematics/lcalc-2.1.1

Description

Command-line utility and library for L-function computations

Added to portage

2025-05-28

libclc - 21.0.0_pre20250528
Ebuild name:

llvm-core/libclc-21.0.0_pre20250528

Description

OpenCL C library

Added to portage

2025-05-28

libcst - 1.8.0
Ebuild name:

dev-python/libcst-1.8.0

Description

A concrete syntax tree with AST-like properties for Python

Added to portage

2025-05-28

libcxx - 21.0.0_pre20250528
Ebuild name:

llvm-runtimes/libcxx-21.0.0_pre20250528

Description

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

Added to portage

2025-05-28

libcxxabi - 21.0.0_pre20250528
Ebuild name:

llvm-runtimes/libcxxabi-21.0.0_pre20250528

Description

Low level support for a standard C++ library

Added to portage

2025-05-28

libdnet - 1.18.0-r3
Ebuild name:

dev-libs/libdnet-1.18.0-r3

Description

Simplified, portable interface to several low-level networking routines

Added to portage

2025-05-28

libgcc - 21.0.0_pre20250528
Ebuild name:

llvm-runtimes/libgcc-21.0.0_pre20250528

Description

Compiler runtime library for clang, compatible with libgcc_

Added to portage

2025-05-28

libguestfs - 1.55.13
Ebuild name:

app-emulation/libguestfs-1.55.13

Description

Tools for accessing, inspecting, and modifying virtual machine (VM

Added to portage

2025-05-28

libunwind - 21.0.0_pre20250528
Ebuild name:

llvm-runtimes/libunwind-21.0.0_pre20250528

Description

C++ runtime stack unwinder from LLVM

Added to portage

2025-05-28

libxkbcommon - 1.10.0
Ebuild name:

x11-libs/libxkbcommon-1.10.0

Description

Keymap handling library for toolkits and window systems

Added to portage

2025-05-28

lit - 21.0.0_pre20250528
Ebuild name:

dev-python/lit-21.0.0_pre20250528

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2025-05-28

lld - 21.0.0_pre20250528
Ebuild name:

llvm-core/lld-21.0.0_pre20250528

Description

The LLVM linker (link editor)

Added to portage

2025-05-28

lldb - 21.0.0_pre20250528
Ebuild name:

llvm-core/lldb-21.0.0_pre20250528

Description

The LLVM debugger

Added to portage

2025-05-28

llvm - 21.0.0_pre20250528
Ebuild name:

dev-ml/llvm-21.0.0_pre20250528

Description

OCaml bindings for LLVM

Added to portage

2025-05-28

llvm - 21.0.0_pre20250528
Ebuild name:

llvm-core/llvm-21.0.0_pre20250528

Description

Low Level Virtual Machine

Added to portage

2025-05-28

llvm-common - 21.0.0_pre20250528
Ebuild name:

llvm-core/llvm-common-21.0.0_pre20250528

Description

Common files shared between multiple slots of LLVM

Added to portage

2025-05-28

mbedtls - 2.28.10
Ebuild name:

net-libs/mbedtls-2.28.10

Description

Cryptographic library for embedded systems

Added to portage

2025-05-28

mbedtls - 3.6.3.1
Ebuild name:

net-libs/mbedtls-3.6.3.1

Description

Cryptographic library for embedded systems

Added to portage

2025-05-28

method_source - 1.1.0-r1
Ebuild name:

dev-ruby/method_source-1.1.0-r1

Description

Retrieve the source code for a method

Added to portage

2025-05-28

mgorny-dev-scripts - 61
Ebuild name:

app-portage/mgorny-dev-scripts-61

Description

Handy scripts for ebuild development and more

Added to portage

2025-05-28

miniflux - 2.2.9
Ebuild name:

www-apps/miniflux-2.2.9

Description

Minimalist and opinionated feed reader

Added to portage

2025-05-28

mlir - 21.0.0_pre20250528
Ebuild name:

llvm-core/mlir-21.0.0_pre20250528

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2025-05-28

moar - 1.31.8
Ebuild name:

sys-apps/moar-1.31.8

Description

Pager designed to do the right thing without any configuration

Added to portage

2025-05-28

normalize - 0.7.7-r2
Ebuild name:

media-sound/normalize-0.7.7-r2

Description

Audio file volume normalizer

Added to portage

2025-05-28

nuitka - 2.7.4
Ebuild name:

dev-python/nuitka-2.7.4

Description

Python to native compiler

Added to portage

2025-05-28

octave - 9.2.0-r2
Ebuild name:

sci-mathematics/octave-9.2.0-r2

Description

High-level interactive language for numerical computations

Added to portage

2025-05-28

offload - 21.0.0_pre20250528
Ebuild name:

llvm-runtimes/offload-21.0.0_pre20250528

Description

OpenMP offloading support

Added to portage

2025-05-28

openmp - 21.0.0_pre20250528
Ebuild name:

llvm-runtimes/openmp-21.0.0_pre20250528

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2025-05-28

openpgp-keys-karlberry - 20250528
Ebuild name:

sec-keys/openpgp-keys-karlberry-20250528

Description

OpenPGP keys used by Karl Berry

Added to portage

2025-05-28

ox - 2.14.23
Ebuild name:

dev-ruby/ox-2.14.23

Description

A fast XML parser and Object marshaller

Added to portage

2025-05-28

pikepdf - 9.8.1
Ebuild name:

dev-python/pikepdf-9.8.1

Description

Python library to work with pdf files based on qpdf

Added to portage

2025-05-28

plotly - 6.1.2
Ebuild name:

dev-python/plotly-6.1.2

Description

Browser-based graphing library for Python

Added to portage

2025-05-28

polly - 21.0.0_pre20250528
Ebuild name:

llvm-core/polly-21.0.0_pre20250528

Description

Polyhedral optimizations for LLVM

Added to portage

2025-05-28

polymode - 0.2.2_p20220322
Ebuild name:

app-emacs/polymode-0.2.2_p20220322

Description

Framework for Multiple Major Modes in Emacs

Added to portage

2025-05-28

popup - 0.5.9
Ebuild name:

app-emacs/popup-0.5.9

Description

Visual popup interface library for Emacs

Added to portage

2025-05-28

popwin - 1.0.0
Ebuild name:

app-emacs/popwin-1.0.0

Description

Popup window manager for Emacs

Added to portage

2025-05-28

pysmi - 1.6.2
Ebuild name:

dev-python/pysmi-1.6.2

Description

Pure-Python implementation of SNMP/SMI MIB parsing and conversion library

Added to portage

2025-05-28

pytest-lazy-fixtures - 1.1.4
Ebuild name:

dev-python/pytest-lazy-fixtures-1.1.4

Description

Allows you to use fixtures in @pytest.mark.parametrize

Added to portage

2025-05-28

python - 3.10.9999
Ebuild name:

dev-lang/python-3.10.9999

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2025-05-28

python - 3.11.9999
Ebuild name:

dev-lang/python-3.11.9999

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2025-05-28

python - 3.12.9999
Ebuild name:

dev-lang/python-3.12.9999

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2025-05-28

python - 3.13.9999
Ebuild name:

dev-lang/python-3.13.9999

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2025-05-28

python - 3.13.9999-r100
Ebuild name:

dev-lang/python-3.13.9999-r100

Description

Freethreading (no-GIL) version of Python programming language

Added to portage

2025-05-28

python - 3.15.9999
Ebuild name:

dev-lang/python-3.15.9999

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2025-05-28

python - 3.9.9999
Ebuild name:

dev-lang/python-3.9.9999

Description

An interpreted, interactive, object-oriented programming language

Added to portage

2025-05-28

python-tests - 3.11.9999
Ebuild name:

dev-python/python-tests-3.11.9999

Description

Test modules from dev-lang/python

Added to portage

2025-05-28

python-tests - 3.12.9999
Ebuild name:

dev-python/python-tests-3.12.9999

Description

Test modules from dev-lang/python

Added to portage

2025-05-28

python-tests - 3.13.9999
Ebuild name:

dev-python/python-tests-3.13.9999

Description

Test modules from dev-lang/python

Added to portage

2025-05-28

python-tests - 3.13.9999-r100
Ebuild name:

dev-python/python-tests-3.13.9999-r100

Description

Test modules from dev-lang/python

Added to portage

2025-05-28

pytools - 2025.1.6
Ebuild name:

dev-python/pytools-2025.1.6

Description

Collection of tools missing from the Python standard library

Added to portage

2025-05-28

qiskit - 2.0.2
Ebuild name:

dev-python/qiskit-2.0.2

Description

An open-source SDK for working with quantum computers

Added to portage

2025-05-28

redis - 7.2.9
Ebuild name:

dev-db/redis-7.2.9

Description

A persistent caching system, key-value, and data structures database

Added to portage

2025-05-28

redis - 7.4.4
Ebuild name:

dev-db/redis-7.4.4

Description

A persistent caching system, key-value, and data structures database

Added to portage

2025-05-28

redis - 8.0.2
Ebuild name:

dev-db/redis-8.0.2

Description

A persistent caching system, key-value, and data structures database

Added to portage

2025-05-28

rspec - 3.13.1
Ebuild name:

dev-ruby/rspec-3.13.1

Description

A Behaviour Driven Development (BDD) framework for Ruby

Added to portage

2025-05-28

rspec-core - 3.13.4
Ebuild name:

dev-ruby/rspec-core-3.13.4

Description

A Behaviour Driven Development (BDD) framework for Ruby

Added to portage

2025-05-28

rspec-expectations - 3.13.5
Ebuild name:

dev-ruby/rspec-expectations-3.13.5

Description

A Behaviour Driven Development (BDD) framework for Ruby

Added to portage

2025-05-28

rspec-mocks - 3.13.5
Ebuild name:

dev-ruby/rspec-mocks-3.13.5

Description

A Behaviour Driven Development (BDD) framework for Ruby

Added to portage

2025-05-28

rspec-support - 3.13.4
Ebuild name:

dev-ruby/rspec-support-3.13.4

Description

A Behaviour Driven Development (BDD) framework for Ruby

Added to portage

2025-05-28

rssguard - 4.8.5
Ebuild name:

net-news/rssguard-4.8.5

Description

Simple (yet powerful) news feed reader

Added to portage

2025-05-28

selinux-knot - 2.20240226-r2
Ebuild name:

sec-policy/selinux-knot-2.20240226-r2

Description

SELinux policy for knot

Added to portage

2025-05-28

selinux-knot - 2.20240916-r1
Ebuild name:

sec-policy/selinux-knot-2.20240916-r1

Description

SELinux policy for knot

Added to portage

2025-05-28

selinux-knot - 2.20250213-r1
Ebuild name:

sec-policy/selinux-knot-2.20250213-r1

Description

SELinux policy for knot

Added to portage

2025-05-28

selinux-knot - 9999
Ebuild name:

sec-policy/selinux-knot-9999

Description

SELinux policy for knot

Added to portage

2025-05-28

sslh - 2.2.4
Ebuild name:

net-misc/sslh-2.2.4

Description

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

Added to portage

2025-05-28

stunnel - 5.75
Ebuild name:

net-misc/stunnel-5.75

Description

TLS/SSL - Port Wrapper

Added to portage

2025-05-28

thunderbird - 139.0
Ebuild name:

mail-client/thunderbird-139.0

Description

Thunderbird Mail Client

Added to portage

2025-05-28

thunderbird-bin - 139.0
Ebuild name:

mail-client/thunderbird-bin-139.0

Description

Thunderbird Mail Client

Added to portage

2025-05-28

vcard - 0.4.0
Ebuild name:

dev-ruby/vcard-0.4.0

Description

Ruby vcard support extracted from Vpim

Added to portage

2025-05-28

virtctl - 1.5.1
Ebuild name:

sys-cluster/virtctl-1.5.1

Description

Control virtual machine related operations on your kubernetes cluster

Added to portage

2025-05-28

winbox - 4.0_beta21
Ebuild name:

app-admin/winbox-4.0_beta21

Description

Management Software for MikroTik RouterOS

Added to portage

2025-05-28

wiremix - 0.4.0
Ebuild name:

media-sound/wiremix-0.4.0

Description

A TUI mixer for PipeWire

Added to portage

2025-05-28

yara-python - 4.5.4
Ebuild name:

dev-python/yara-python-4.5.4

Description

Python interface for a malware identification and classification tool

Added to portage

2025-05-28

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