What's the perl version in 8.0?

Status
Not open for further replies.

codenamezero

Explorer
Joined
Sep 4, 2011
Messages
59
Could someone tell me the version of perl that came with 8.0?
i was trying to do some more hacking and did a pkg_add -r perl and override the existing package...

Now i'm getting this:
Code:
freenas# perl
/libexec/ld-elf.so.1: Shared object "libperl.so" not found, required by "perl"


So trying to find out the existing version and perhaps run portupgrade to upgrade it.
 

masterpc

Dabbler
Joined
Sep 12, 2011
Messages
17
I'm using recent nightly version, FreeNAS-8r7661-amd64.
I guess 8.0 has the same version.

[root@jnas] /mnt/jtorrent/.transmission# perl -v

This is perl 5, version 12, subversion 4 (v5.12.4) built for amd64-freebsd
 

codenamezero

Explorer
Joined
Sep 4, 2011
Messages
59
I end up fixing my perl the ghetto way... and it seem to work.

Code:
freenas# cd /mnt/FREENAS
freenas# mkdir perl
freenas# cd perl
freenas# pkg_add -r perl -K
freenas# tar -xjf perl.tbz -C /mnt/FREENAS/perl/
freenas# cp /mnt/FREENAS/perl/lib/perl5/5.10.1/mach/CORE/libperl.so /lib
freenas# perl -v

This is perl, v5.10.1 (*) built for amd64-freebsd

Copyright 1987-2009, Larry Wall

Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.

Complete documentation for Perl, including FAQ lists, should be found on
this system using "man perl" or "perldoc perl".  If you have access to the
Internet, point your browser at http://www.perl.org/, the Perl Home Page.



lol :cool:
 

RobPet

Cadet
Joined
Jul 17, 2011
Messages
7
what are you mounting to /mnt/FREENAS?
-Rob

I end up fixing my perl the ghetto way... and it seem to work.

Code:
freenas# cd /mnt/FREENAS
freenas# mkdir perl
freenas# cd perl
freenas# pkg_add -r perl -K
freenas# tar -xjf perl.tbz -C /mnt/FREENAS/perl/
freenas# cp /mnt/FREENAS/perl/lib/perl5/5.10.1/mach/CORE/libperl.so /lib
freenas# perl -v

This is perl, v5.10.1 (*) built for amd64-freebsd

Copyright 1987-2009, Larry Wall

Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.

Complete documentation for Perl, including FAQ lists, should be found on
this system using "man perl" or "perldoc perl".  If you have access to the
Internet, point your browser at http://www.perl.org/, the Perl Home Page.



lol :cool:
 

codenamezero

Explorer
Joined
Sep 4, 2011
Messages
59
/mnt/FREENAS is my actual RAID5 storage location, since we have so little space under / i was actually unable to install the new perl properly, it didn't have enough space to untar the whole thing (which may explain the reason why it messed up the initial perl install).

So i end up getting the package again, and dump it in my storage location and untar it there.
 
Status
Not open for further replies.
Top