in reply to Perl segfaults and wont run. Something to do with libperl.so

Read man rpm. Via rpm, identify the rpm package /usr/bin/perl belongs to (rpm -qf /usr/bin/perl). Run rpm -ql $package to get at the location of libperl.so and check whether it is where expected. Run rpm -verify (or such, consult the manual page of rpm) to verify the integrity of libperl.so found in the output of the package list. If things are wrong (as I suppose they are) re-install the perl core package.

perl -le'print map{pack c,($-++?1:13)+ord}split//,ESEL'

Replies are listed 'Best First'.
Re^2: Perl segfaults and wont run. Something to do with libperl.so
by holpot (Initiate) on Jul 11, 2017 at 17:43 UTC

    Thank you. I removed then reinstalled perl and that seem to fix it.