Tagged Questions
4
votes
5answers
714 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
178 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
480 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
28 views
Openssh: session closed after login with chroot
Can't make chroot work with sshd. after i put the correct password the window is closed
this is what i have in auth.log
Feb 20 14:24:44 host-37 sshd[7113]: pam_unix(sshd:session): session opened ...
0
votes
1answer
97 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 -; ...