Tagged Questions

4
votes
5answers
696 views

chroot + execvp + bash

Update Got it! See my solution (fifth comment) Here is my problen: I have created a small binary called "jail" and in /etc/password I have made it the default shell for a test user. Here is the -- ...
3
votes
2answers
173 views

Python script opening a bash prompt terminating the script

I want to write a chroot wrapper in python. The script will be copying some files, setting up some other stuff and then executing chroot and should land me in a chroot shell. The tricky part is that ...
2
votes
2answers
460 views

Bash: Chroot command passing 2 string parameters or better run a series of commands

I would like to do something like this: chroot /mount-point /path/to/script $var1 $var 2 Will this work? Will the chrooted Perl script be passed on these 2 parameters? If not, how to do this? ...
0
votes
1answer
77 views

Bash: executing commands from within a chroot and switch user

Im writing a script that should do this... chroot /chroot_dir/ su - ./startup.sh (This should run within the su environment) I have tried this approach: chroot /chroot_dir /bin/bash -c " su -; ...