in reply to External command execution - Strange Error - No child process

The backtick operator returns the output of the command. The system function actually returns the exit value itself. If you want the exit value do this:

my $exit_value = system($tar_command) ; die "tar failed: ".$exit_value / 256."\n" if $exit_value != 0 ;