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:

86702

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



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-07-09
alertmanager - 0.33.1
Ebuild name:

app-metrics/alertmanager-0.33.1

Description

Alertmanager for alerts sent by client applications such as Prometh

Added to portage

2026-07-09

awscli - 1.45.44
Ebuild name:

app-admin/awscli-1.45.44

Description

Universal Command Line Environment for AWS

Added to portage

2026-07-09

batteries - 3.11.0
Ebuild name:

dev-ml/batteries-3.11.0

Description

A community-maintained standard library extension

Added to portage

2026-07-09

blackbox_exporter - 0.28.0
Ebuild name:

app-metrics/blackbox_exporter-0.28.0

Description

Prometheus exporter for blackbox probing via HTTP, HTTPS, DNS,

Added to portage

2026-07-09

blessed - 1.47.0
Ebuild name:

dev-python/blessed-1.47.0

Description

Library for making terminal apps using colors, keyboard input and positio

Added to portage

2026-07-09

boto3 - 1.43.44
Ebuild name:

dev-python/boto3-1.43.44

Description

The AWS SDK for Python

Added to portage

2026-07-09

botocore - 1.43.44
Ebuild name:

dev-python/botocore-1.43.44

Description

Low-level, data-driven core of boto 3

Added to portage

2026-07-09

c-ares - 1.34.8
Ebuild name:

net-dns/c-ares-1.34.8

Description

C library that resolves names asynchronously

Added to portage

2026-07-09

cloudflared - 2026.7.0
Ebuild name:

net-vpn/cloudflared-2026.7.0

Description

A command-line client and tunneling daemon for Cloudflare Tunnel

Added to portage

2026-07-09

discord - 1.0.146
Ebuild name:

net-im/discord-1.0.146

Description

All-in-one voice and text chat for gamers

Added to portage

2026-07-09

filelock - 3.29.7
Ebuild name:

dev-python/filelock-3.29.7

Description

A platform independent file lock for Python

Added to portage

2026-07-09

flask-caching - 2.4.1
Ebuild name:

dev-python/flask-caching-2.4.1

Description

Adds caching support to Flask applications

Added to portage

2026-07-09

genshi - 0.7.11-r1
Ebuild name:

dev-python/genshi-0.7.11-r1

Description

Python toolkit for stream-based generation of output for the web

Added to portage

2026-07-09

ggml - 0.15.3-r2
Ebuild name:

sci-ml/ggml-0.15.3-r2

Description

Tensor library for machine learning

Added to portage

2026-07-09

grpcio - 1.82.1
Ebuild name:

dev-python/grpcio-1.82.1

Description

HTTP/2-based RPC framework

Added to portage

2026-07-09

grpcio-status - 1.82.1
Ebuild name:

dev-python/grpcio-status-1.82.1

Description

Reference package for GRPC Python status proto mapping

Added to portage

2026-07-09

hypothesis - 6.156.4
Ebuild name:

dev-python/hypothesis-6.156.4

Description

A library for property based testing

Added to portage

2026-07-09

joserfc - 1.7.3
Ebuild name:

dev-python/joserfc-1.7.3

Description

A Python library for JOSE RFCs JWS, JWE, JWK, JWA, JWT

Added to portage

2026-07-09

librt - 0.13.0
Ebuild name:

dev-python/librt-0.13.0

Description

Mypyc runtime library

Added to portage

2026-07-09

musescore - 4.7.4
Ebuild name:

media-sound/musescore-4.7.4

Description

WYSIWYG Music Score Typesetter

Added to portage

2026-07-09

nwipe - 0.41
Ebuild name:

app-crypt/nwipe-0.41

Description

Securely erase disks using a variety of recognized methods

Added to portage

2026-07-09

onak - 0.6.3
Ebuild name:

app-crypt/onak-0.6.3

Description

onak is an OpenPGP keyserver

Added to portage

2026-07-09

onak - 0.6.4
Ebuild name:

app-crypt/onak-0.6.4

Description

onak is an OpenPGP keyserver

Added to portage

2026-07-09

ophcrack - 3.8.0-r2
Ebuild name:

app-crypt/ophcrack-3.8.0-r2

Description

A time-memory-trade-off-cracker

Added to portage

2026-07-09

ophcrack - 3.8.0-r2
Ebuild name:

app-crypt/ophcrack-3.8.0-r2

Description

A time-memory-trade-off-cracker

Added to portage

2026-07-09

patch - 3.1.2
Ebuild name:

dev-ml/patch-3.1.2

Description

Patch library purely in OCaml

Added to portage

2026-07-09

perl - 5.44.0_rc2
Ebuild name:

dev-lang/perl-5.44.0_rc2

Description

Larry Wall's Practical Extraction and Report Language

Added to portage

2026-07-09

perl-IO-Compress - 2.220.0-r1
Ebuild name:

virtual/perl-IO-Compress-2.220.0-r1

Description

Virtual for

Added to portage

2026-07-09

perl-IO-Compress - 2.223.0
Ebuild name:

virtual/perl-IO-Compress-2.223.0

Description

Virtual for

Added to portage

2026-07-09

perl-Module-CoreList - 5.202.607.80
Ebuild name:

virtual/perl-Module-CoreList-5.202.607.80

Description

Virtual for

Added to portage

2026-07-09

pkixssh - 19.0
Ebuild name:

net-misc/pkixssh-19.0

Description

OpenSSH fork with X.509 v3 certificate support

Added to portage

2026-07-09

proto-plus - 1.28.1
Ebuild name:

dev-python/proto-plus-1.28.1

Description

Beautiful, Pythonic protocol buffers

Added to portage

2026-07-09

pwvucontrol - 0.5.3
Ebuild name:

media-sound/pwvucontrol-0.5.3

Description

Volume control applet for Pipewire

Added to portage

2026-07-09

pyasn1 - 0.6.4
Ebuild name:

dev-python/pyasn1-0.6.4

Description

ASN.1 library for Python

Added to portage

2026-07-09

pypresence - 4.6.2
Ebuild name:

dev-python/pypresence-4.6.2

Description

Complete Discord IPC and Rich Presence wrapper library in Python

Added to portage

2026-07-09

pyproject-fmt - 2.25.2
Ebuild name:

dev-python/pyproject-fmt-2.25.2

Description

Format your pyproject.toml file

Added to portage

2026-07-09

python-discovery - 1.4.4
Ebuild name:

dev-python/python-discovery-1.4.4

Description

Python interpreter discovery

Added to portage

2026-07-09

rarfile - 4.3
Ebuild name:

dev-python/rarfile-4.3

Description

Module for RAR archive reading

Added to portage

2026-07-09

rust-parallel - 1.23.0
Ebuild name:

sys-process/rust-parallel-1.23.0

Description

Fast command line app to run commands in parallel

Added to portage

2026-07-09

scripttest - 3.0
Ebuild name:

dev-python/scripttest-3.0

Description

Helper to test command-line scripts

Added to portage

2026-07-09

solaar - 1.1.20
Ebuild name:

app-misc/solaar-1.1.20

Description

Linux Device Manager for Logitech Unifying Receivers and Paired Devices

Added to portage

2026-07-09

testfixtures - 12.3.0
Ebuild name:

dev-python/testfixtures-12.3.0

Description

A collection of helpers and mock objects for unit tests and doc test

Added to portage

2026-07-09

textx - 4.4.0
Ebuild name:

dev-python/textx-4.4.0

Description

Meta-language for DSL implementation inspired by Xtext

Added to portage

2026-07-09

throttled - 0.12
Ebuild name:

sys-power/throttled-0.12

Description

Daemon to work around throttling issues on some Intel laptops

Added to portage

2026-07-09

timezone-data - 2026c
Ebuild name:

sys-libs/timezone-data-2026c

Description

Timezone data (/usr/share/zoneinfo) and utilities (tzselect/zic/zdump)

Added to portage

2026-07-09

tox - 4.56.4
Ebuild name:

dev-python/tox-4.56.4

Description

virtualenv-based automation of test activities

Added to portage

2026-07-09

uvicorn - 0.51.0
Ebuild name:

dev-python/uvicorn-0.51.0

Description

Lightning-fast ASGI server implementation

Added to portage

2026-07-09

visual-fill-column - 2.7.1
Ebuild name:

app-emacs/visual-fill-column-2.7.1

Description

GNU Emacs mode for wrapping visual-line-mode buffers at fill-col

Added to portage

2026-07-09

winbox - 4.2
Ebuild name:

app-admin/winbox-4.2

Description

Management Software for MikroTik RouterOS

Added to portage

2026-07-09

2026-07-08
awscli - 1.45.42
Ebuild name:

app-admin/awscli-1.45.42

Description

Universal Command Line Environment for AWS

Added to portage

2026-07-08

bash-completion - 2.18.0
Ebuild name:

app-shells/bash-completion-2.18.0

Description

Programmable Completion for bash

Added to portage

2026-07-08

bluez - 5.87
Ebuild name:

net-wireless/bluez-5.87

Description

Bluetooth Tools and System Daemons for Linux

Added to portage

2026-07-08

boto3 - 1.43.42
Ebuild name:

dev-python/boto3-1.43.42

Description

The AWS SDK for Python

Added to portage

2026-07-08

botocore - 1.43.42
Ebuild name:

dev-python/botocore-1.43.42

Description

Low-level, data-driven core of boto 3

Added to portage

2026-07-08

charset-normalizer - 3.4.9
Ebuild name:

dev-python/charset-normalizer-3.4.9

Description

The Real First Universal Charset Detector

Added to portage

2026-07-08

clang - 23.0.0_pre20260707
Ebuild name:

dev-python/clang-23.0.0_pre20260707

Description

Python bindings for llvm-core/clang

Added to portage

2026-07-08

clang - 23.0.0_pre20260707
Ebuild name:

llvm-core/clang-23.0.0_pre20260707

Description

C language family frontend for LLVM

Added to portage

2026-07-08

clang-common - 23.0.0_pre20260707
Ebuild name:

llvm-core/clang-common-23.0.0_pre20260707

Description

Common files shared between multiple slots of clang

Added to portage

2026-07-08

cmd2 - 4.1.0
Ebuild name:

dev-python/cmd2-4.1.0

Description

Extra features for standard library's cmd module

Added to portage

2026-07-08

compiler-rt - 23.0.0_pre20260707
Ebuild name:

llvm-runtimes/compiler-rt-23.0.0_pre20260707

Description

Compiler runtime library for clang (built-in part)

Added to portage

2026-07-08

compiler-rt-sanitizers - 23.0.0_pre20260707
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-23.0.0_pre20260707

Description

Compiler runtime libraries for clang (sanit

Added to portage

2026-07-08

dbeaver-bin - 26.1.2
Ebuild name:

dev-db/dbeaver-bin-26.1.2

Description

Free universal database tool (community edition)

Added to portage

2026-07-08

django - 5.2.16
Ebuild name:

dev-python/django-5.2.16

Description

High-level Python web framework

Added to portage

2026-07-08

django - 6.0.7
Ebuild name:

dev-python/django-6.0.7

Description

High-level Python web framework

Added to portage

2026-07-08

ena-driver - 2.17.2
Ebuild name:

net-misc/ena-driver-2.17.2

Description

Amazon EC2 Elastic Network Adapter (ENA) kernel driver

Added to portage

2026-07-08

flang - 23.0.0_pre20260707
Ebuild name:

llvm-core/flang-23.0.0_pre20260707

Description

LLVM's Fortran frontend

Added to portage

2026-07-08

flang-rt - 23.0.0_pre20260707
Ebuild name:

llvm-runtimes/flang-rt-23.0.0_pre20260707

Description

LLVM's Fortran runtime

Added to portage

2026-07-08

fzf - 0.74.0
Ebuild name:

app-shells/fzf-0.74.0

Description

General-purpose command-line fuzzy finder, written in Golang

Added to portage

2026-07-08

google-auth - 2.55.2
Ebuild name:

dev-python/google-auth-2.55.2

Description

Google Authentication Library

Added to portage

2026-07-08

gpxsee - 16.11
Ebuild name:

sci-geosciences/gpxsee-16.11

Description

Viewer and analyzer that supports gpx, tcx, kml, fit, igc and nmea fil

Added to portage

2026-07-08

hatchling - 1.31.0
Ebuild name:

dev-python/hatchling-1.31.0

Description

Modern, extensible Python build backend

Added to portage

2026-07-08

hg-evolve - 12.0.0
Ebuild name:

dev-vcs/hg-evolve-12.0.0

Description

enables the changeset evolution feature of Mercurial

Added to portage

2026-07-08

hypothesis - 6.156.2
Ebuild name:

dev-python/hypothesis-6.156.2

Description

A library for property based testing

Added to portage

2026-07-08

libXfont2 - 2.0.8
Ebuild name:

x11-libs/libXfont2-2.0.8

Description

X.Org Xfont library

Added to portage

2026-07-08

libclc - 23.0.0_pre20260707
Ebuild name:

llvm-runtimes/libclc-23.0.0_pre20260707

Description

OpenCL C library

Added to portage

2026-07-08

libcxx - 23.0.0_pre20260707
Ebuild name:

llvm-runtimes/libcxx-23.0.0_pre20260707

Description

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

Added to portage

2026-07-08

libcxxabi - 23.0.0_pre20260707
Ebuild name:

llvm-runtimes/libcxxabi-23.0.0_pre20260707

Description

Low level support for a standard C++ library

Added to portage

2026-07-08

libgcc - 23.0.0_pre20260707
Ebuild name:

llvm-runtimes/libgcc-23.0.0_pre20260707

Description

Compiler runtime library for clang, compatible with libgcc_

Added to portage

2026-07-08

librevenge - 0.0.6
Ebuild name:

dev-libs/librevenge-0.0.6

Description

Helper library for REVerse ENGineered formats filters

Added to portage

2026-07-08

libstaroffice - 0.0.8
Ebuild name:

app-text/libstaroffice-0.0.8

Description

Import filter for old StarOffice documents

Added to portage

2026-07-08

libunwind - 23.0.0_pre20260707
Ebuild name:

llvm-runtimes/libunwind-23.0.0_pre20260707

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-07-08

liferea - 1.16.12
Ebuild name:

net-news/liferea-1.16.12

Description

News Aggregator for RDF/RSS/CDF/Atom/Echo feeds

Added to portage

2026-07-08

liquidprompt - 2.3.0
Ebuild name:

app-shells/liquidprompt-2.3.0

Description

Full-featured & carefully designed adaptive prompt for Bash & Zsh

Added to portage

2026-07-08

lit - 23.0.0_pre20260707
Ebuild name:

dev-python/lit-23.0.0_pre20260707

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-07-08

lld - 23.0.0_pre20260707
Ebuild name:

llvm-core/lld-23.0.0_pre20260707

Description

The LLVM linker (link editor)

Added to portage

2026-07-08

lldb - 23.0.0_pre20260707
Ebuild name:

llvm-core/lldb-23.0.0_pre20260707

Description

The LLVM debugger

Added to portage

2026-07-08

llvm - 23.0.0_pre20260707
Ebuild name:

dev-ml/llvm-23.0.0_pre20260707

Description

OCaml bindings for LLVM

Added to portage

2026-07-08

llvm - 23.0.0_pre20260707
Ebuild name:

llvm-core/llvm-23.0.0_pre20260707

Description

Low Level Virtual Machine

Added to portage

2026-07-08

llvm-common - 23.0.0_pre20260707
Ebuild name:

llvm-core/llvm-common-23.0.0_pre20260707

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-07-08

mdbook - 0.5.4
Ebuild name:

app-text/mdbook-0.5.4

Description

Create a book from markdown files

Added to portage

2026-07-08

mlir - 23.0.0_pre20260707
Ebuild name:

llvm-core/mlir-23.0.0_pre20260707

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-07-08

moolticute - 1.03.0-r2
Ebuild name:

app-crypt/moolticute-1.03.0-r2

Description

Mooltipass crossplatform daemon/tools

Added to portage

2026-07-08

moolticute - 9999
Ebuild name:

app-crypt/moolticute-9999

Description

Mooltipass crossplatform daemon/tools

Added to portage

2026-07-08

mypy - 2.2.0
Ebuild name:

dev-python/mypy-2.2.0

Description

Optional static typing for Python

Added to portage

2026-07-08

nasty - 0.6-r2
Ebuild name:

app-crypt/nasty-0.6-r2

Description

Proof-of-concept GPG passphrase recovery tool

Added to portage

2026-07-08

netpbm - 11.15.2
Ebuild name:

media-libs/netpbm-11.15.2

Description

A set of utilities for converting to/from the netpbm (and related) format

Added to portage

2026-07-08

nitrocli - 0.4.1-r2
Ebuild name:

app-crypt/nitrocli-0.4.1-r2

Description

A command line tool for interacting with Nitrokey devices

Added to portage

2026-07-08

nushell - 0.114.0
Ebuild name:

app-shells/nushell-0.114.0

Description

A new type of shell, written in Rust

Added to portage

2026-07-08

nvidia-drivers - 610.43.03
Ebuild name:

x11-drivers/nvidia-drivers-610.43.03

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2026-07-08

nwipe - 0.41
Ebuild name:

app-crypt/nwipe-0.41

Description

Securely erase disks using a variety of recognized methods

Added to portage

2026-07-08

openmp - 23.0.0_pre20260707
Ebuild name:

llvm-runtimes/openmp-23.0.0_pre20260707

Description

OpenMP runtime libraries for LLVM/clang compiler

Added to portage

2026-07-08

openmp-amdgcn-amd-amdhsa - 23.0.0_pre20260707
Ebuild name:

llvm-runtimes/openmp-amdgcn-amd-amdhsa-23.0.0_pre20260707

Description

OpenMP target library for amdgcn devices

Added to portage

2026-07-08

openmp-nvptx64-nvidia-cuda - 23.0.0_pre20260707
Ebuild name:

llvm-runtimes/openmp-nvptx64-nvidia-cuda-23.0.0_pre20260707

Description

OpenMP target library for nvptx64 devic

Added to portage

2026-07-08

openmp-spirv64-intel - 23.0.0_pre20260707
Ebuild name:

llvm-runtimes/openmp-spirv64-intel-23.0.0_pre20260707

Description

OpenMP target library for spirv64 Intel devic

Added to portage

2026-07-08

openssh - 10.4_p1
Ebuild name:

net-misc/openssh-10.4_p1

Description

Port of OpenBSD's free SSH release

Added to portage

2026-07-08

pixi - 0.72.1
Ebuild name:

dev-util/pixi-0.72.1

Description

A package management and workflow tool

Added to portage

2026-07-08

polly - 23.0.0_pre20260707
Ebuild name:

llvm-core/polly-23.0.0_pre20260707

Description

Polyhedral optimizations for LLVM

Added to portage

2026-07-08

ponyprog - 3.1.4_p20250501-r1
Ebuild name:

dev-embedded/ponyprog-3.1.4_p20250501-r1

Description

EEPROM and microcontroller programmer/flasher

Added to portage

2026-07-08

prowlarr-bin - 2.5.1.5460
Ebuild name:

www-apps/prowlarr-bin-2.5.1.5460

Description

An indexer manager/proxy to integrate with your various PVR apps

Added to portage

2026-07-08

qtkeychain - 0.17.0
Ebuild name:

dev-libs/qtkeychain-0.17.0

Description

Qt API for storing passwords securely

Added to portage

2026-07-08

recoll - 1.44.0
Ebuild name:

app-misc/recoll-1.44.0

Description

Personal full text search package

Added to portage

2026-07-08

sbcl - 2.6.6
Ebuild name:

dev-lisp/sbcl-2.6.6

Description

Steel Bank Common Lisp (SBCL) is an implementation of ANSI Common Lisp

Added to portage

2026-07-08

scdoc - 1.11.5
Ebuild name:

app-text/scdoc-1.11.5

Description

Standalone tool for generating man pages with a simple syntax

Added to portage

2026-07-08

scikit-build-core - 1.0.1
Ebuild name:

dev-python/scikit-build-core-1.0.1

Description

Build backend for CMake based projects

Added to portage

2026-07-08

sigstore - 4.4.0-r1
Ebuild name:

dev-python/sigstore-4.4.0-r1

Description

A tool for signing Python package distributions

Added to portage

2026-07-08

sphinxcontrib-mermaid - 2.0.3
Ebuild name:

dev-python/sphinxcontrib-mermaid-2.0.3

Description

Sphinx spelling extension

Added to portage

2026-07-08

stellarsolver - 2.8
Ebuild name:

sci-libs/stellarsolver-2.8

Description

Cross-platform Sextractor and Astrometry.net-Based internal astrometric

Added to portage

2026-07-08

svg-path - 7.1
Ebuild name:

dev-python/svg-path-7.1

Description

SVG path objects and parser

Added to portage

2026-07-08

synapse - 1.156.0
Ebuild name:

net-im/synapse-1.156.0

Description

Reference implementation of Matrix homeserver

Added to portage

2026-07-08

syrupy - 5.5.2
Ebuild name:

dev-python/syrupy-5.5.2

Description

The sweeter pytest snapshot plugin

Added to portage

2026-07-08

tox - 4.56.2
Ebuild name:

dev-python/tox-4.56.2

Description

virtualenv-based automation of test activities

Added to portage

2026-07-08

tqdm - 4.68.4
Ebuild name:

dev-python/tqdm-4.68.4

Description

Add a progress meter to your loops in a second

Added to portage

2026-07-08

uv - 0.11.28
Ebuild name:

dev-python/uv-0.11.28

Description

A Python package installer and resolver, written in Rust

Added to portage

2026-07-08

uv-build - 0.11.28
Ebuild name:

dev-python/uv-build-0.11.28

Description

PEP517 uv build backend

Added to portage

2026-07-08

wine-proton - 11.0.1
Ebuild name:

app-emulation/wine-proton-11.0.1

Description

Valve Software's fork of Wine

Added to portage

2026-07-08

wlroots - 0.20.2
Ebuild name:

gui-libs/wlroots-0.20.2

Description

Pluggable, composable, unopinionated modules for building a Wayland composi

Added to portage

2026-07-08

xkbutils - 1.0.7
Ebuild name:

x11-apps/xkbutils-1.0.7

Description

X.Org xkbutils application

Added to portage

2026-07-08

xlsatoms - 1.1.5
Ebuild name:

x11-apps/xlsatoms-1.1.5

Description

list interned atoms defined on server

Added to portage

2026-07-08

xlsfonts - 1.0.9
Ebuild name:

x11-apps/xlsfonts-1.0.9

Description

X.Org xlsfonts application

Added to portage

2026-07-08

xorg-server - 21.1.24
Ebuild name:

x11-base/xorg-server-21.1.24

Description

X.Org X servers

Added to portage

2026-07-08

xwayland - 24.1.13
Ebuild name:

x11-base/xwayland-24.1.13

Description

Standalone X server running under Wayland

Added to portage

2026-07-08

zedis - 0.5.2
Ebuild name:

dev-db/zedis-0.5.2

Description

Blazing-fast native Redis GUI built with Rust and GPUI

Added to portage

2026-07-08

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