Oracle Trace File Analyzer Prerequisites

Review the list of prerequisites to run Oracle Trace File Analyzer.

Perl Modules

Review the list of Perl modules used by Oracle Trace File Analyzer.

B
Carp
Config
Cwd
Data::Dumper
Date::Calc
Date::Format
Date::Manip
Date::Parse
Encode
English
Exporter
Fcntl
File::Basename
File::Copy
File::Find
File::Path
File::Spec
File::Spec::Functions
File::Temp
FindBin
Getopt::Long
Getopt::Std
IO::File
IO::Handle
IPC::Open2
IPC::Open2 
IPC::Open3
JSON
lib
List::Util
Math::BigInt
Net::Domain
Net::Ping
POSIX
Pod::Usage
Socket
Storable
Sys::Hostname
Term::ANSIColor
Term::ReadLine
Text::ASCIITable
Text::ParseWords
Text::Wrap
Time::Local
Time::Piece
Tokenizer
Win32
Win32::Service
locale
strict
threads
threads::shared
warnings
  • To find the version number of Perl installed on your system, see 3 quick ways to find out the version number of an installed Perl module from the terminal.
  • To check if a module is installed on your system:
    # perldoc -l Socket
    /usr/lib64/perl5/vendor_perl/Socket.pm
    #
    # perldoc -l Sys::Hostname
    /usr/lib64/perl5/Sys/Hostname.pm
    #
    # perldoc -l XML::Simple
    No documentation found for "XML::Simple".
    #
  • To check the version of a module that is installed on your system:
    # perldoc -m Socket | grep 'VERSION.*='
    our $VERSION = '2.010';
    # 
    # perldoc -m Sys::Hostname | grep 'VERSION.*='
    $VERSION = '1.16';
    # 
    # perldoc -m XML::Simple | grep 'VERSION.*='
    No module found for "XML::Simple".
    #