Sponsored Content
Full Discussion: Installed Porgrams
Operating Systems Linux Installed Porgrams Post 302180431 by sysgate on Monday 31st of March 2008 07:45:58 AM
Old 03-31-2008
I don't think so, any user can go and download, eventually compile / install software, who may reside in a custom folder, i.e. not always in /usr/bin/ for example, which makes it almost impossible to track.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Installed software

I am a complete novice/dumbo with Unix. How can I ascertain what software is installed on a unix system? Any help is much appreciated. (3 Replies)
Discussion started by: wakeley
3 Replies

2. Shell Programming and Scripting

Two Oracle's installed

In my directory /u01/app/oracle/product I have two Oracle products installed. $ ls 8.1.7 817_http The application installed on the server is using PL/SQL procs to display webpages(not sure how) Now I have to create a similar server for development. Our sysadmin has built up a host... (1 Reply)
Discussion started by: rahulrathod
1 Replies

3. Programming

No dbx installed

I have a problem whith dbx: there is no dbx installed!!! Could someone tell me where do i get dbx program and how to install it? Thanks. (1 Reply)
Discussion started by: calloc
1 Replies

4. UNIX for Advanced & Expert Users

where is grub installed

Hi all, i am reading about USB bootable and it points me to grub in tutorial is issued command: grub grub> find /boot/grub/stage1 but it gives me: Error 15: File not found i do not have any problems with grub, i can choose between M$ and Linux while boot so when i issue: sudo fdisk... (6 Replies)
Discussion started by: wakatana
6 Replies

5. Solaris

apache installed or not

How to check out apache is installed in unix box ? i don't have execute for httpd -v command and also i don't have 'apache' directory under /usr/local but i could able to see many httpd processes running on the server. (2 Replies)
Discussion started by: Masanamuthu
2 Replies

6. AIX

OS Patches installed but they seem as not installed

Hello everyone: I've installed an OS patch into AIX 6.1 by running the following command: instfix -d /tmp/6100-02-03 -k "IZ41855" however it seem not installed instfix -i -k "IZ41855" There was no data for IZ41855 in the fix database. what am I doing wrong? (8 Replies)
Discussion started by: edgarvm
8 Replies

7. Solaris

To get access to installed SE 11

Hello.I am new member on this forum and I glad to salute you, members. I am beginner in Solaris OS. I am installed Solaris 11 on my computer from Live CD. When I try to enter in Solaris OS (which I installed) the system offers to enter login and password. I enter login and password of... (3 Replies)
Discussion started by: User_V
3 Replies

8. Red Hat

Trouble with installed / not installed rpm unixODBC/libodbc.so.1

Hey there, i run 1: on my server (RHEL 6) and getting response that the libodbc is not installed. If i use yum for installation, it tells me, there is no package like this ( 2: ). Since in the description of Definiens is mentioned that the Run-time dependency is unixODBC (libodbc.so.1), I assume... (2 Replies)
Discussion started by: rkirsten
2 Replies

9. OS X (Apple)

Just installed El Capitan...

Just updated from Yosemite to El Capitan on my iMac... What an improvement! The front end is really slick now on this tool... Still using OSX 10.7.5 on my laptop and the Applescript code inside AudioScope.sh is now broken under El Capitan but the rest of AudioScope.sh works on it...... (4 Replies)
Discussion started by: wisecracker
4 Replies

10. UNIX for Beginners Questions & Answers

Bash find version of an installed application but if none is found set variable to App Not Installed

Hello Forum, I'm issuing a one line bash command to look for the version of an installed application and saving the result to a variable like so: APP=application --version But if the application is not installed I want to return to my variable that the Application is not installed. So I'm... (2 Replies)
Discussion started by: greavette
2 Replies
ExtUtils::Installed(3pm)				 Perl Programmers Reference Guide				  ExtUtils::Installed(3pm)

NAME
ExtUtils::Installed - Inventory management of installed modules SYNOPSIS
use ExtUtils::Installed; my ($inst) = ExtUtils::Installed->new( skip_cwd => 1 ); my (@modules) = $inst->modules(); my (@missing) = $inst->validate("DBI"); my $all_files = $inst->files("DBI"); my $files_below_usr_local = $inst->files("DBI", "all", "/usr/local"); my $all_dirs = $inst->directories("DBI"); my $dirs_below_usr_local = $inst->directory_tree("DBI", "prog"); my $packlist = $inst->packlist("DBI"); DESCRIPTION
ExtUtils::Installed provides a standard way to find out what core and module files have been installed. It uses the information stored in .packlist files created during installation to provide this information. In addition it provides facilities to classify the installed files and to extract directory information from the .packlist files. USAGE
The new() function searches for all the installed .packlists on the system, and stores their contents. The .packlists can be queried with the functions described below. Where it searches by default is determined by the settings found in %Config::Config, and what the value is of the PERL5LIB environment variable. METHODS
Unless specified otherwise all method can be called as class methods, or as object methods. If called as class methods then the "default" object will be used, and if necessary created using the current processes %Config and @INC. See the 'default' option to new() for details. new() This takes optional named parameters. Without parameters, this searches for all the installed .packlists on the system using information from %Config::Config and the default module search paths @INC. The packlists are read using the ExtUtils::Packlist module. If the named parameter "skip_cwd" is true, the current directory "." will be stripped from @INC before searching for .packlists. This keeps ExtUtils::Installed from finding modules installed in other perls that happen to be located below the current directory. If the named parameter "config_override" is specified, it should be a reference to a hash which contains all information usually found in %Config::Config. For example, you can obtain the configuration information for a separate perl installation and pass that in. my $yoda_cfg = get_fake_config('yoda'); my $yoda_inst = ExtUtils::Installed->new(config_override=>$yoda_cfg); Similarly, the parameter "inc_override" may be a reference to an array which is used in place of the default module search paths from @INC. use Config; my @dirs = split(/Q$Config{path_sep}E/, $ENV{PERL5LIB}); my $p5libs = ExtUtils::Installed->new(inc_override=>@dirs); Note: You probably do not want to use these options alone, almost always you will want to set both together. The parameter "extra_libs" can be used to specify additional paths to search for installed modules. For instance my $installed = ExtUtils::Installed->new(extra_libs=>["/my/lib/path"]); This should only be necessary if "/my/lib/path" is not in PERL5LIB. Finally there is the 'default', and the related 'default_get' and 'default_set' options. These options control the "default" object which is provided by the class interface to the methods. Setting "default_get" to true tells the constructor to return the default object if it is defined. Setting "default_set" to true tells the constructor to make the default object the constructed object. Setting the "default" option is like setting both to true. This is used primarily internally and probably isn't interesting to any real user. modules() This returns a list of the names of all the installed modules. The perl 'core' is given the special name 'Perl'. files() This takes one mandatory parameter, the name of a module. It returns a list of all the filenames from the package. To obtain a list of core perl files, use the module name 'Perl'. Additional parameters are allowed. The first is one of the strings "prog", "doc" or "all", to select either just program files, just manual files or all files. The remaining parameters are a list of directories. The filenames returned will be restricted to those under the specified directories. directories() This takes one mandatory parameter, the name of a module. It returns a list of all the directories from the package. Additional parameters are allowed. The first is one of the strings "prog", "doc" or "all", to select either just program directories, just manual directories or all directories. The remaining parameters are a list of directories. The directories returned will be restricted to those under the specified directories. This method returns only the leaf directories that contain files from the specified module. directory_tree() This is identical in operation to directories(), except that it includes all the intermediate directories back up to the specified directories. validate() This takes one mandatory parameter, the name of a module. It checks that all the files listed in the modules .packlist actually exist, and returns a list of any missing files. If an optional second argument which evaluates to true is given any missing files will be removed from the .packlist packlist() This returns the ExtUtils::Packlist object for the specified module. version() This returns the version number for the specified module. EXAMPLE
See the example in ExtUtils::Packlist. AUTHOR
Alan Burlison <Alan.Burlison@uk.sun.com> perl v5.16.3 2013-03-04 ExtUtils::Installed(3pm)
All times are GMT -4. The time now is 01:20 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy