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:

83346

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-02-17
deskflow - 1.26.0
Ebuild name:

gui-apps/deskflow-1.26.0

Description

Share a mouse and keyboard between computers (FOSS version of Synergy)

Added to portage

2026-02-17

dune - 3.21.1
Ebuild name:

dev-ml/dune-3.21.1

Description

A composable build system for OCaml

Added to portage

2026-02-17

dune-build-info - 3.21.1
Ebuild name:

dev-ml/dune-build-info-3.21.1

Description

Embed locations informations inside executable and libraries

Added to portage

2026-02-17

dune-configurator - 3.21.1
Ebuild name:

dev-ml/dune-configurator-3.21.1

Description

Helper library for gathering system configuration

Added to portage

2026-02-17

dune-site - 3.21.1
Ebuild name:

dev-ml/dune-site-3.21.1

Description

Embed locations informations inside executable and libraries

Added to portage

2026-02-17

firefox - 147.0.4
Ebuild name:

www-client/firefox-147.0.4

Description

Firefox Web Browser

Added to portage

2026-02-17

gamescope - 3.16.20
Ebuild name:

gui-wm/gamescope-3.16.20

Description

Efficient micro-compositor for running games

Added to portage

2026-02-17

genkernel - 4.3.18
Ebuild name:

sys-kernel/genkernel-4.3.18

Description

Gentoo automatic kernel building scripts

Added to portage

2026-02-17

gentoo-sources - 6.12.73
Ebuild name:

sys-kernel/gentoo-sources-6.12.73

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-02-17

gentoo-sources - 6.18.12
Ebuild name:

sys-kernel/gentoo-sources-6.18.12

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-02-17

gentoo-sources - 6.19.2
Ebuild name:

sys-kernel/gentoo-sources-6.19.2

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-02-17

gentoo-sources - 6.6.126
Ebuild name:

sys-kernel/gentoo-sources-6.6.126

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-02-17

godot - 4.6.1
Ebuild name:

dev-games/godot-4.6.1

Description

Multi-platform 2D and 3D game engine with a feature-rich editor

Added to portage

2026-02-17

libquotient - 0.9.6
Ebuild name:

net-libs/libquotient-0.9.6

Description

Qt-based SDK to develop applications for Matrix

Added to portage

2026-02-17

pdfcrack - 0.20-r1
Ebuild name:

app-crypt/pdfcrack-0.20-r1

Description

Tool for recovering passwords and content from PDF-files

Added to portage

2026-02-17

pdfcrack - 0.21
Ebuild name:

app-crypt/pdfcrack-0.21

Description

Tool for recovering passwords and content from PDF-files

Added to portage

2026-02-17

qtgui - 5.15.18-r1
Ebuild name:

dev-qt/qtgui-5.15.18-r1

Description

The GUI module and platform plugins for the Qt5 framework

Added to portage

2026-02-17

sox - 14.4.4.1-r1
Ebuild name:

media-sound/sox-14.4.4.1-r1

Description

The swiss army knife of sound processing programs

Added to portage

2026-02-17

sox - 14.6.0.4-r1
Ebuild name:

media-sound/sox-14.6.0.4-r1

Description

The swiss army knife of sound processing programs

Added to portage

2026-02-17

tellico - 4.2
Ebuild name:

kde-misc/tellico-4.2

Description

Collection manager based on KDE Frameworks

Added to portage

2026-02-17

vanilla-sources - 6.12.73
Ebuild name:

sys-kernel/vanilla-sources-6.12.73

Description

Full sources for the Linux kernel

Added to portage

2026-02-17

vanilla-sources - 6.18.12
Ebuild name:

sys-kernel/vanilla-sources-6.18.12

Description

Full sources for the Linux kernel

Added to portage

2026-02-17

vanilla-sources - 6.19.2
Ebuild name:

sys-kernel/vanilla-sources-6.19.2

Description

Full sources for the Linux kernel

Added to portage

2026-02-17

vanilla-sources - 6.6.126
Ebuild name:

sys-kernel/vanilla-sources-6.6.126

Description

Full sources for the Linux kernel

Added to portage

2026-02-17

vivaldi - 7.8.3925.66
Ebuild name:

www-client/vivaldi-7.8.3925.66

Description

A browser for our friends

Added to portage

2026-02-17

vivaldi-snapshot - 7.9.3950.5
Ebuild name:

www-client/vivaldi-snapshot-7.9.3950.5

Description

A browser for our friends

Added to portage

2026-02-17

xdg - 3.21.1
Ebuild name:

dev-ml/xdg-3.21.1

Description

XDG Base Directory Specification

Added to portage

2026-02-17

2026-02-16
alot - 0.11-r2
Ebuild name:

mail-client/alot-0.11-r2

Description

Experimental terminal UI for net-mail/notmuch written in Python

Added to portage

2026-02-16

atuin - 18.12.1
Ebuild name:

app-shells/atuin-18.12.1

Description

Shell history manager supporting encrypted synchronisation

Added to portage

2026-02-16

cdemu - 3.3.0
Ebuild name:

app-cdr/cdemu-3.3.0

Description

Command-line tool for controlling cdemu-daemon

Added to portage

2026-02-16

cdemu-daemon - 3.3.0
Ebuild name:

app-cdr/cdemu-daemon-3.3.0

Description

Daemon of the CDEmu optical media image mounting suite

Added to portage

2026-02-16

cfv - 3.2.0
Ebuild name:

app-arch/cfv-3.2.0

Description

Command-line File Verify - versatile file checksum creator and verifier

Added to portage

2026-02-16

createrepo_c - 1.2.2-r1
Ebuild name:

app-arch/createrepo_c-1.2.2-r1

Description

C implementation of createrepo

Added to portage

2026-02-16

dist-kernel - 6.12.72
Ebuild name:

virtual/dist-kernel-6.12.72

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-16

dist-kernel - 6.18.11
Ebuild name:

virtual/dist-kernel-6.18.11

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-16

dist-kernel - 6.6.125
Ebuild name:

virtual/dist-kernel-6.6.125

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-16

fastfetch - 2.59.0
Ebuild name:

app-misc/fastfetch-2.59.0

Description

Fast neofetch-like system information tool

Added to portage

2026-02-16

firefox-bin - 140.7.1
Ebuild name:

www-client/firefox-bin-140.7.1

Description

Firefox Web Browser

Added to portage

2026-02-16

firefox-bin - 147.0.4
Ebuild name:

www-client/firefox-bin-147.0.4

Description

Firefox Web Browser

Added to portage

2026-02-16

freenet - 0.7.5_p1506
Ebuild name:

net-p2p/freenet-0.7.5_p1506

Description

Freenet REference Daemon

Added to portage

2026-02-16

gcc - 16.0.1_p20260215
Ebuild name:

sys-devel/gcc-16.0.1_p20260215

Description

The GNU Compiler Collection

Added to portage

2026-02-16

gcdemu - 3.3.0
Ebuild name:

app-cdr/gcdemu-3.3.0

Description

Gtk+ GUI for controlling cdemu-daemon

Added to portage

2026-02-16

gentoo-kernel - 6.12.72
Ebuild name:

sys-kernel/gentoo-kernel-6.12.72

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-16

gentoo-kernel - 6.18.11
Ebuild name:

sys-kernel/gentoo-kernel-6.18.11

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-16

gentoo-kernel - 6.6.125
Ebuild name:

sys-kernel/gentoo-kernel-6.6.125

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-16

gentoo-kernel-bin - 6.12.72
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.72

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-16

gentoo-kernel-bin - 6.18.11
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.11

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-16

gentoo-kernel-bin - 6.6.125
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.125

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-16

huggingface_hub - 1.3.7
Ebuild name:

sci-ml/huggingface_hub-1.3.7

Description

a client library to interact with the Hugging Face Hub

Added to portage

2026-02-16

immutabledict - 4.3.1
Ebuild name:

dev-python/immutabledict-4.3.1

Description

An immutable wrapper around dictionaries

Added to portage

2026-02-16

jsonschema-path - 0.4.0_beta6
Ebuild name:

dev-python/jsonschema-path-0.4.0_beta6

Description

JSONSchema Spec with object-oriented paths

Added to portage

2026-02-16

libmirage - 3.3.1
Ebuild name:

dev-libs/libmirage-3.3.1

Description

CD and DVD image access library

Added to portage

2026-02-16

librecad - 2.2.2_alpha1_pre20260215
Ebuild name:

media-gfx/librecad-2.2.2_alpha1_pre20260215

Description

Generic 2D CAD program

Added to portage

2026-02-16

maturin - 1.12.1
Ebuild name:

dev-util/maturin-1.12.1

Description

Build and publish crates with pyo3, rust-cpython and cffi bindings

Added to portage

2026-02-16

maturin - 1.12.2
Ebuild name:

dev-util/maturin-1.12.2

Description

Build and publish crates with pyo3, rust-cpython and cffi bindings

Added to portage

2026-02-16

mumble - 1.6.0_pre20260215
Ebuild name:

net-voip/mumble-1.6.0_pre20260215

Description

Mumble is an open source, low-latency, high quality voice chat so

Added to portage

2026-02-16

murmur - 1.6.0_pre20260215
Ebuild name:

net-voip/murmur-1.6.0_pre20260215

Description

Mumble is an open source, low-latency, high quality voice chat so

Added to portage

2026-02-16

notmuch - 0.40
Ebuild name:

net-mail/notmuch-0.40

Description

Thread-based e-mail indexer, supporting quick search and tagging

Added to portage

2026-02-16

nzbget - 26.0
Ebuild name:

net-nntp/nzbget-26.0

Description

A command-line based binary newsgrabber supporting .nzb files

Added to portage

2026-02-16

p11-kit - 0.26.2
Ebuild name:

app-crypt/p11-kit-0.26.2

Description

Provides a standard configuration setup for installing PKCS11

Added to portage

2026-02-16

paperkey - 1.6
Ebuild name:

app-crypt/paperkey-1.6

Description

OpenPGP key archiver

Added to portage

2026-02-16

pathable - 0.5.0_beta6
Ebuild name:

dev-python/pathable-0.5.0_beta6

Description

Object-oriented paths

Added to portage

2026-02-16

platformdirs - 4.9.2
Ebuild name:

dev-python/platformdirs-4.9.2

Description

A small Python module for determining appropriate platform-specific d

Added to portage

2026-02-16

prismlauncher - 10.0.5
Ebuild name:

games-action/prismlauncher-10.0.5

Description

Custom, open source Minecraft launcher

Added to portage

2026-02-16

pymdown-extensions - 10.21
Ebuild name:

dev-python/pymdown-extensions-10.21

Description

Extensions for Python Markdown

Added to portage

2026-02-16

python-socks - 2.8.1
Ebuild name:

dev-python/python-socks-2.8.1

Description

SOCKS4, SOCKS5, HTTP tunneling functionality for Python

Added to portage

2026-02-16

rubber - 1.6.7-r1
Ebuild name:

dev-tex/rubber-1.6.7-r1

Description

LaTeX wrapper for automatically building documents

Added to portage

2026-02-16

sipp - 3.7.7
Ebuild name:

net-misc/sipp-3.7.7

Description

A free Open Source test tool / traffic generator for the SIP protocol

Added to portage

2026-02-16

smb4k - 4.0.6
Ebuild name:

net-misc/smb4k-4.0.6

Description

Advanced network neighborhood browser

Added to portage

2026-02-16

stalwart-cli - 0.15.5
Ebuild name:

net-mail/stalwart-cli-0.15.5

Description

Stalwart Mail Server command line utility

Added to portage

2026-02-16

stalwart-mail - 0.15.5
Ebuild name:

net-mail/stalwart-mail-0.15.5

Description

Stalwart Mail Server

Added to portage

2026-02-16

tifffile - 2026.2.15
Ebuild name:

dev-python/tifffile-2026.2.15

Description

Read and write TIFF files

Added to portage

2026-02-16

tox - 4.36.0
Ebuild name:

dev-python/tox-4.36.0

Description

virtualenv-based automation of test activities

Added to portage

2026-02-16

vanilla-kernel - 6.12.72
Ebuild name:

sys-kernel/vanilla-kernel-6.12.72

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-16

vanilla-kernel - 6.18.11
Ebuild name:

sys-kernel/vanilla-kernel-6.18.11

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-16

vanilla-kernel - 6.6.125
Ebuild name:

sys-kernel/vanilla-kernel-6.6.125

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-16

vimpc - 0.09.2_p20230330
Ebuild name:

media-sound/vimpc-0.09.2_p20230330

Description

ncurses based mpd client with vi-like key bindings

Added to portage

2026-02-16

vlc - 4.0.0_pre20260215
Ebuild name:

media-video/vlc-4.0.0_pre20260215

Description

Media player and framework with support for most multimedia files

Added to portage

2026-02-16

winbox - 4.0.1
Ebuild name:

app-admin/winbox-4.0.1

Description

Management Software for MikroTik RouterOS

Added to portage

2026-02-16

xmltodict - 1.0.3
Ebuild name:

dev-python/xmltodict-1.0.3

Description

Makes working with XML feel like you are working with JSON

Added to portage

2026-02-16

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