Sponsored Content
Full Discussion: Relocatable code, Etcetera
Top Forums UNIX for Dummies Questions & Answers Relocatable code, Etcetera Post 302573685 by theKbStockpiler on Tuesday 15th of November 2011 09:03:48 AM
Old 11-15-2011
I managed to find this Doc.

Introduction to System Software



I have no Idea if this is copywriten so I'll leave off the abbreviation for hyper text transfer protocol.

://www.google.com/url?sa=t&rct=j&q=introduction%2Bto%2Bsystem%2Bsoftware&source=web&cd=3&ved=0CDkQFjAC&url=http%3A%2F% 2Fwww.itswtech.org%2FLec%2FManal(system%2520programming)%2Fch4_8086_Architecture.pdf&ei=2G7CTtSIIIj0 2QWm7d3RDg&usg=AFQjCNGwfFe-FE1GCEbKChWL7sFACZSJNQ&cad=rja
 

7 More Discussions You Might Find Interesting

1. Linux

relocatable kernel

Hi, Is relocatable feature available in SLES? If it is can anyone please tell me the kernel version.. ~Nayana. (0 Replies)
Discussion started by: nayana
0 Replies

2. Linux

Find installed location of a relocatable package

Hi, I am finding the installed location of a package by: rpm -qi <package_name> And then parse the string "Relocations". If i relocate this package during installation with --relocate option , the "Relocations" string still shows the old value. Though the package has been installed on the... (0 Replies)
Discussion started by: vibhor_agarwali
0 Replies

3. AIX

AIX relocatable package help

Hi, I have created a relocatable AIX package named Test. The USIL is /abc bash-2.05b# lsusil INSTALL PATH = /abc COMMENTS = None Generally if a package gets installed in "/opt/Test" and i want to relocate it to "/abc" it gets installed under "/abc/Test". This happens the way in Solaris,... (2 Replies)
Discussion started by: vibhor_agarwali
2 Replies

4. AIX

Uninstall a relocatable package

Hi, If a package has been installed at normal location: installp -u <package_name> uninstalls the package However, if that has been installed relocatable, the above command fails. It requires the relocatable path as the parameter installp -R <relocation_path> -u <package_name> To find... (1 Reply)
Discussion started by: vibhor_agarwali
1 Replies

5. UNIX for Dummies Questions & Answers

If ‘922’ Code does not exist on ‘03’ Record, ‘901’ Code will be there instead, move ‘03’ R

01,011600033,011600033,110516,0834,2,90,,2/ 02,011600033,011103093,1,110317,0834,,2/ 03,105581,,015,+00000416418,,,901,+00000000148,,,922,+000000 00354,,/ 03,113806,,015,+00000559618,,,901,+00000000096,,,922,+000000 00621,,/ 88,902,+0000000025218,,/... (1 Reply)
Discussion started by: sgoud
1 Replies

6. Shell Programming and Scripting

Block of code replacement in Java source code through Unix script

Hi, I want to remove the following code from Source files (or replace the code with empty.) from all the source files in given directory. finally { if (null != hibernateSession && hibernateSession.isOpen()) { //hibernateSession.close(); } } It would be great if the script has... (2 Replies)
Discussion started by: hareeshram
2 Replies

7. UNIX for Dummies Questions & Answers

Can't install rpm package with --prefix in new path.Error: package is not relocatable

Hello, i have downloaded an rpm package "hadoop-0.20.205.0-1.amd64.rpm" in /usr/local/ directory. I'm trying to install the rpm package in a new path/location (/usr/local/hadoop-0.20.205), but i can't. I did: 1st try: Didn't work sudo rpm -i --prefix=/usr/local/hadoop-0.20.205... (1 Reply)
Discussion started by: g_p
1 Replies
Bio::Root::HTTPget(3pm) 				User Contributed Perl Documentation				   Bio::Root::HTTPget(3pm)

NAME
Bio::Root::HTTPget - module for fallback HTTP get operations when LWP:: is unavailable SYNOPSIS
use Bio::Root::HTTPget; my $web = Bio::Root::HTTPget->new(); my $response = $web->get('http://localhost'); $response = $web->get('http://localhost/images'); $response = eval { $web->get('http://fred:secret@localhost/ladies_only/') } or warn $@; $response = eval { $web->get('http://jeff:secret@localhost/ladies_only/') } or warn $@; $response = $web->get('http://localhost/images/navauthors.gif'); $response = $web->get(-url=>'http://www.google.com', -proxy=>'http://www.modperl.com'); DESCRIPTION
This is basically an last-chance module for doing network HTTP get requests in situations where more advanced external CPAN modules such as LWP:: are not installed. The particular reason this module was developed was so that the Open Bio Database Access code can fallback to fetching the default registry files from http://open-bio.org/registry/ without having to depend on external dependencies like Bundle::LWP for network HTTP access. The core of this module was written by Lincoln Stein. It can handle proxies and HTTP-based proxy authentication. FEEDBACK
Mailing Lists User feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to one of the Bioperl mailing lists. Your participation is much appreciated. bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists Reporting Bugs Report bugs to the Bioperl bug tracking system to help us keep track the bugs and their resolution. Bug reports can be submitted via the web: https://redmine.open-bio.org/projects/bioperl/ AUTHOR - Lincoln Stein # Please direct questions and support issues to bioperl-l@bioperl.org Cared for by Chris Dagdigian <dag@sonsorol.org> APPENDIX
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _ get Title : get Usage : my $resp = get(-url => $url); Function: Returns : string Args : -url => URL to HTTPGet -proxy => proxy to use -user => username for proxy or authentication -pass => password for proxy or authentication -timeout => timeout getFH Title : getFH Usage : Function: Example : Returns : string Args : _http_parse_url Title : Usage : Function: Example : Returns : Args : _http_connect Title : Usage : Function: Example : Returns : Args : _encode_base64 Title : Usage : Function: Example : Returns : Args : proxy Title : proxy Usage : $httpproxy = $db->proxy('http') or $db->proxy(['http','ftp'], 'http://myproxy' ) Function: Get/Set a proxy for use of proxy. Defaults to environment variable http_proxy if present. Returns : a string indicating the proxy Args : $protocol : string for the protocol to set/get $proxyurl : url of the proxy to use for the specified protocol $username : username (if proxy requires authentication) $password : password (if proxy requires authentication) clear_proxy Title : clear_proxy Usage : my $old_prozy = $db->clear_proxy('http') Function: Unsets (clears) the proxy for the protocol indicated Returns : a string indicating the old proxy value Args : $protocol : string for the protocol to clear authentication Title : authentication Usage : $db->authentication($user,$pass) Function: Get/Set authentication credentials Returns : Array of user/pass Args : Array or user/pass perl v5.14.2 2012-03-02 Bio::Root::HTTPget(3pm)
All times are GMT -4. The time now is 01:48 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy