Sponsored Content
Full Discussion: AIX 4.3.x ISO?
Operating Systems AIX AIX 4.3.x ISO? Post 302241487 by thomn8r on Monday 29th of September 2008 01:09:57 PM
Old 09-29-2008
AIX 4.3.x ISO?

I just had someone ask me for AIX 4.3.3 media; I used to have it, but the disks got thrown out a couple of years ago when we moved between buildings.

Does anyone have 4.3 ISO's handy, or would be willing to make ISO images for me?

Thanks!
 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Mounting an ISO As a file system in AIX

I want to mount an ISO image as a file system in AIX, have been unable to find a utility to do so after scouring the net. Bryan (1 Reply)
Discussion started by: murdaugh
1 Replies

2. UNIX for Dummies Questions & Answers

.iso in linux???

dear experts How can I extract the files and install an application that has a postfix of .iso ??? could you please advise what is iso in linux Red hat and what is a file.iso ?? Very Best Regards (7 Replies)
Discussion started by: Reza Nazarian
7 Replies

3. UNIX for Dummies Questions & Answers

Copy iso

How do I copy and burn an iso image on to a Cd. I tried used commands copy, paste, and then burn, but it did not work. :confused: (1 Reply)
Discussion started by: faron17
1 Replies

4. Solaris

Solaris 10 ISO

I'm download Sun Solaris 10 8/07 SPARC in 2 DVD ISO. (From sun.com) First ISO burn OK, but Second ISO my k3b does not distinguish as ISO a format, though all md5 sum OK! Please help! ( (2 Replies)
Discussion started by: jess_t03
2 Replies

5. Solaris

solaris 8 and 9 iso

hi i downloaded solaris 8 and 9 iso from sun.com. i can mount it with winmount and i can see files. but when running it from vmware it won't boot. i even do it on physical server, it won't boot as well. what should i do to make this installation boot? thanks itik (1 Reply)
Discussion started by: itik
1 Replies

6. AIX

How to mount an ISO image in AIX 5.2

Hi, Could anyone let me know how to mount an ISO image in AIX 5.2 ? --SaiP (2 Replies)
Discussion started by: saip
2 Replies

7. AIX

AIX ISO image file

Hi all, Can anyone get the link to download the iso image of AIX as i am new to AIX need to study and work on the concepts of AIX. Thnx in advance... VINU:) (3 Replies)
Discussion started by: vinuvinod
3 Replies

8. Red Hat

How to make boot.iso image from rhel6 installation dvd iso ?

Hello Everyone, Can anyone let me know how to make minimal boot.iso from rhl6 installation dvd iso image. I have a dvd image with me but i want to make just a minimal boot media. Somehow it is not shipped with dvd iso. I know we can download boot.iso from redhat site but is there any anyway we... (5 Replies)
Discussion started by: Rohit Bhanot
5 Replies

9. AIX

AIX 4.3 ISO download link require

i need to download 4.3 ISO because my server rs6000 no display and i want to install on ther intel server to get data Also, help me installed cobol database on aix server can work on sco cobol ? (2 Replies)
Discussion started by: Rajan Ghanshyam
2 Replies
Lingua::StopWords(3pm)					User Contributed Perl Documentation				    Lingua::StopWords(3pm)

NAME
Lingua::StopWords - Stop words for several languages. SYNOPSIS
use Lingua::StopWords qw( getStopWords ); my $stopwords = getStopWords('en'); my @words = qw( i am the walrus goo goo g'joob ); # prints "walrus goo goo g'joob" print join ' ', grep { !$stopwords->{$_} } @words; DESCRIPTION
In keyword search, it is common practice to suppress a collection of "stopwords": words such as "the", "and", "maybe", etc. which exist in in a large number of documents and do not tell you anything important about any document which contains them. This module provides such "stoplists" in several languages. Supported Languages |-----------------------------------------------------------| | Language | ISO code | default encoding | also available | |-----------------------------------------------------------| | Danish | da | ISO-8859-1 | UTF-8 | | Dutch | nl | ISO-8859-1 | UTF-8 | | English | en | ISO-8859-1 | UTF-8 | | Finnish | fi | ISO-8859-1 | UTF-8 | | French | fr | ISO-8859-1 | UTF-8 | | German | de | ISO-8859-1 | UTF-8 | | Hungarian | hu | ISO-8859-1 | UTF-8 | | Italian | it | ISO-8859-1 | UTF-8 | | Norwegian | no | ISO-8859-1 | UTF-8 | | Portuguese | pt | ISO-8859-1 | UTF-8 | | Spanish | es | ISO-8859-1 | UTF-8 | | Swedish | sv | ISO-8859-1 | UTF-8 | | Russian | ru | KOI8-R | UTF-8 | |-----------------------------------------------------------| FUNCTIONS
getStopWords my $stoplist = getStopWords('en'); my $utf8_stoplist = getStopWords('en', 'UTF-8'); Retrieve a stoplist in the form of a hashref where the keys are all stopwords and the values are all 1. $stoplist = { and => 1, if => 1, # ... }; getStopWords() expects 1-2 arguments. The first, which is required, is an ISO code representing a supported language. If the ISO code cannot be found, getStopWords returns undef. The second argument should be 'UTF-8' if you want the stopwords encoded in UTF-8. The UTF-8 flag will be turned on, so make sure you understand all the implications of that. SEE ALSO
The stoplists supplied by this module were created as part of the Snowball project (see <http://snowball.tartarus.org>, Lingua::Stem::Snowball). Lingua::EN::StopWords provides a different stoplist for English. AUTHOR
Maintained by Marvin Humphrey <marvin at rectangular dot com>. Original author Fabien Potencier, <fabpot at cpan dot org>. COPYRIGHT AND LICENSE
Copyright 2004-2008 Fabien Potencier, Marvin Humphrey This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.3 or, at your option, any later version of Perl 5 you may have available. perl v5.10.0 2009-02-23 Lingua::StopWords(3pm)
All times are GMT -4. The time now is 08:49 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy