Sponsored Content
Full Discussion: question about clusters
Special Forums UNIX and Linux Applications High Performance Computing question about clusters Post 56747 by hexadecimal0011 on Sunday 10th of October 2004 05:53:59 PM
Old 10-10-2004
question about clusters

hello all...first off let me say hi and im really glad to be apart of this community....tried to join awhile back but i couldnt for some reason

im a highschool student and im eager to learn and what im trying to learn now is clusters
i have 3 computers in my room all connected on a simple hub

what i wish to do is install openmosix on my main computer *this one* wich is slackware 10.0

the other 2 computers are currently windows but will be other various linux distros being i just got wine running correctly...i have yet to choose the distro but i do have a few copies of cluster knoppix that i will mess around with in the mean time

now when it comes to openmosix and clusters i have little to no idea what im doing...ive been searching google as how to install and setup openmosix on slackware but havent been very sucessfull


thank you all for your help

p.s. ive been a member of AntiOnline for a few years now so kinda no what im doing when it comes to posting and forums
 

8 More Discussions You Might Find Interesting

1. Solaris

about Solaris Patch Clusters md5sum

Hi, for Solaris Patch Clusters version 10_x86_Recommended.zip (Jul 15 2009 / 817 MB - SunSolve) MD5: be40488b0fb1d081deda69dbca415be3 is correct? (the problem is that I don't have an account. ...therefore I can't login on Sunsolve for view MD5 page) yes, is a terrible thread! ... (3 Replies)
Discussion started by: gxmsgx
3 Replies

2. Solaris

meaning of states in sun clusters

Hi Everybody, As I am new to Sun Clusters, Please help me what is "online but not monitored" state of resources and "online - service is online" in status message. Thank you. (1 Reply)
Discussion started by: mayahari
1 Replies

3. Solaris

jumpstart install clusters

Hello, I'm trying to jumpstart a machine with Solaris 10, however the disks in my machine are only 18GB, but I want to have all the developer packages but none of the X windows stuff that can be quite large. Wondered if it was possible to somehow get a list of all packages and remove the ones... (4 Replies)
Discussion started by: Actuator
4 Replies

4. Solaris

VCS Clusters

:)Hi, can someone please explain VCS clustering and where do we need VCS clusters ..? :o:)Thanks in advance :o:) (1 Reply)
Discussion started by: amitbisht9
1 Replies

5. High Performance Computing

I/O bound computing clusters

I want to build a computing cluster and have been looking into grid solutions. My understanding from grid solutions is that participating nodes have to actually sign up to participate in a computation and that an isolated piece of work is sent to the node through a request from that node (pull).... (4 Replies)
Discussion started by: figaro
4 Replies

6. Red Hat

How to configure redhat clusters on VMWARE?

I'm using redhat 5.1 installed on VMware work station9. Can you guys help me to configure redhat clusters. (1 Reply)
Discussion started by: karthik9358
1 Replies

7. Shell Programming and Scripting

Getting unique based on clusters

Hi, I have a file with 25 clusters and each cluster has multiple rows. I need to find the unique genes in each cluster and assign them Annotation Cluster 2 Enrichment Score: 10.199579524507685 Category Term Count % PValue Genes List Total Pop Hits Pop Total Fold... (1 Reply)
Discussion started by: Diya123
1 Replies

8. AIX

[Tip] FS-Manipulation in 7.1.3-Clusters

In principle it is possible to create FSes on shared volume groups with cluster methods (also known as C-SPOC), either from the command line or using the respective SMIT menus. In practice, however, many options are missing in the C-SPOC variants. For instance, it is not possible to add a... (6 Replies)
Discussion started by: bakunin
6 Replies
TM::IndexAble(3pm)					User Contributed Perl Documentation					TM::IndexAble(3pm)

NAME
TM::IndexAble - Topic Maps, Trait to provide lazy and eager indices SYNOPSIS
my $tm = new TM... # get any map use Class::Trait; Class::Trait->apply ($tm, "TM::IndexAble"); # apply the trait # add a lazy cache for subclassing and instanceOf $tm->index ({ axis => 'taxo' }); $tm->index ({ axis => 'taxo', closed => 0}); # the same, lazy is NOT closed # add eager cache (= index) for taxonometrics $tm->index ({ axis => 'taxo', closed => 1}); # eager is closed, will take some time # add index for characteristics $tm->index ({ axis => 'char'}); $tm->index ({ axis => 'char', closed => 1}); # can be closed as well # ditto for reification $tm->index ({ axis => 'reify'}); $tm->index ({ axis => 'reify', closed => 1}); # create index/caches, but separate from map itself $tm->index ({ axis => 'reify', closed => 0, detached => {} }); my %stats = $tm->index; # get current indices + statistics DESCRIPTION
Like TM::Index, this package also adds index/caching capabilities to any topic map stored via TM (or any of its subclasses). The difference, though, is that the index/caching functionality is added as a trait, and not via an explicit attachment. The indices are - by default - part of the map, and not standalone objects as with TM::Index. When you add an index/cache then you simply use precomputed navigation results for the TM methods "match_forall" and "is_reified" (but not used for "reifies"). As with TM::Index you can create caching (lazy indexing) and full indices (eager precaching). Map Attachment To enrich a map with an index/cache, you call the method "index" provided here. The index/cache will by default be stored inside the map. That may be convenient in most cases. If not - as with some storage techniques - you can detach the index to live within your scope. For that purpose you simply pass in an empty hash reference. It is then your responsibility to get rid of it afterwards. Having the index detached also opens the way for you to make the index persistent. INTERFACE
Methods Following methods are mixed into the class/object: index $tm->index ({ %spec }, ...) This method establishes one or more indices/caches to the topic map. Each cache/index is described with its own hash reference. Which navigation axes should be covered by a single cache/index is specified with the "axis" field. It can have as value one of the axes in TM::Axes, or one of the following values: "taxo" Shortcut for the axes: "subclass.type" "superclass.type" "class.type" "instance.type" "char" Shortcut for the axes: "char.topic" "char.value" "char.type" "char.type.value" "char.topic.type" "reify" To control whether a cache (lazy indexing) or a full index (eager caching) should be used, the field "closed" can have two values (default is 0): 0: The default is to keep the index lazy. In this mode the index is empty at the start and it will learn more and more on its own. In this sense, the index lives under an open world assumption (hence the name), as the absence of information does not mean that there is no result. 1: A closed world index has to be populated to be useful. If a query is launched and the result is stored in the index, then it will be used, like for an open index. If no result in the index is found for a query, the empty result will be assumed. Additionally, a field "detached" can be passed in for one cache/index. It MUST contain a hash reference. Example: $tm->index ( { axis => 'reify', closed => 0, detached => {} }, { axis => 'char', closed => 1 } ); The method returns a hash with some statistical information for every axis: "requests" Number of requests since inception of the index. "hits" Number of cache hits since inception. For an eager cache (i.e. index) this number should be the same as "requests" deindex $tm->deindex ($axis, ....) $tm->deindex ($index, ....) This method gets rid of certain indices/caches, as specified by their axes. Since v1.55: You can also pass in the hash reference of the index (in the detached case). Since v1.55: Also the expansion of axes (like for "index") works now. SEE ALSO
TM, TM::Index COPYRIGHT AND LICENSE
Copyright 20(10) by Robert Barta, <drrho@cpan.org> This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-09-15 TM::IndexAble(3pm)
All times are GMT -4. The time now is 09:29 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy