Hi, I want to chroot an application I'm developing, but I still want coredumps...
_dump.c_
#include <stdlib.h>
int main() {
abort();
}
# gcc dump.c -o dump
# ./dump
Abort trap (core dumped)
# chroot ./ ./dump
Abort trap [note that no core was dumped!]
Anybody?
Kent

