Sponsored Content
Full Discussion: ultra enterprise 3000
Operating Systems Solaris ultra enterprise 3000 Post 302071606 by RTM on Saturday 22nd of April 2006 11:14:25 AM
Old 04-22-2006
If you have Solaris 10 for Sparc, then the install should automatically set up partitions (or give you the option to set them up manually). You can't set up partitions from OBP.
 

9 More Discussions You Might Find Interesting

1. Solaris

keyboard & monitor for SUn ultra enterprise 3000

Hi all, i just purchased Sun Ultra Enterprise 3000, but they did not include with keyboard/mouse . i am very new with this box. could you give me which type of keyboard i can use and video connector to my monitor since serial connectors for keyboard and video is different with my PC. ... (5 Replies)
Discussion started by: waterbear
5 Replies

2. Solaris

ULTRA ENTERPRISE 3000is it worth switching on

Please excuse my noobie ignorance, I have just taken posession of a ULTRA ENTERPRISE 3000 for a song. I know it is old , is it worth powering up, or worth more as scrap metal? Would a $1000 pc have more grunt as a web server? Google doesn't seem to be able to answer my question. I also have 2... (1 Reply)
Discussion started by: kadil
1 Replies

3. Solaris

Sun ultra enterprise 450 server does not power on

Hi, I have a sun ultra enterprise 450 server. There is no power supply to the peripheral components. Can anyone suggest what might be the problem with the server? What do i have to check for? I am new to the solaris and server world. Please suggest in detail. :) Thanks, Ashwini (5 Replies)
Discussion started by: tgashwini
5 Replies

4. Solaris

Problem booting Sun ultra enterprise 450 server

Hi, I have a sun ultra enterprise 450 server. This server powers on and a white screen appears with the system and network information. But it doesnot boot up completely. Booting operation wil be halted by a warning: \usr\sbin\fsck not found. Most likely the mount of \usr failed or the... (5 Replies)
Discussion started by: tgashwini
5 Replies

5. UNIX for Dummies Questions & Answers

Sun ultra enterprise 450 power issue

I've search the forum and came up with someone having the same issue where the power does not going to the main board. I turn the key and nothing, no lights or anything moving. I have another board put it in the same system and it works just fine. Please help, thank you in advance. (2 Replies)
Discussion started by: vhtran
2 Replies

6. Solaris

Sun Ultra Enterprise 4500 not booting

Hi, I hope anyone could help me on this. Here we have an Ultra Enterprise 4500 server. Since a few days ago, when starting the system, it showed a message about a faulty CPU fan. So, we manage to clean it up by removing it and then installing it back (as in the user manual). After that, when... (2 Replies)
Discussion started by: lonchus
2 Replies

7. Solaris

Help with Stubborn Sun Ultra Enterprise 450

Hello everyone...yesterday i've received a Sun Ultra E450 Server Unit and when I try to boot from everything it asks me for Firmware Password.:rolleyes: The unit hasn't been used for 10 years...so no one doesn't yet remember the password.:D Ok,I've searched on the Internet all day long finding... (5 Replies)
Discussion started by: Daiman
5 Replies

8. Hardware

Sun Enterprise 3000

I got a coffee table(enterprise 3000) for free from a friend a couple of months ago, and I'm trying to convince it to boot. List of cards 1x Clock Board 1x I/O board 2x CPU Boards 1x SCSI board? It has 2 SCSI headers on it anyway In addition, its HDD rack is almost full of 18GB drives.... (3 Replies)
Discussion started by: dpeterson309
3 Replies

9. What is on Your Mind?

Congrats to RudiC - 3000 Thanks!

Congratulations to RudiC for crossing the magic boundary of being thanked 3000 times! As someone who often has profited greatly from your insight i stand in awe before this achievement. Thank you for your ongoing dedication and thank you for your willingness to share your knowledge! bakunin ... (15 Replies)
Discussion started by: bakunin
15 Replies
struct::disjointset(3tcl)					Tcl Data Structures					 struct::disjointset(3tcl)

__________________________________________________________________________________________________________________________________________________

NAME
struct::disjointset - Disjoint set data structure SYNOPSIS
package require Tcl 8.4 package require struct::disjointset ?1.0? ::struct::disjointset disjointsetName disjointsetName option ?arg arg ...? disjointsetName add-partition elements disjointsetName partitions disjointsetName num-partitions disjointsetName equal a b disjointsetName merge a b disjointsetName find e disjointsetName destroy _________________________________________________________________ DESCRIPTION
This package provides disjoint sets. An alternative name for this kind of structure is merge-find. Normally when dealing with sets and their elements the question is "Is this element E contained in this set S?", with both E and S known. Here the question is "Which of several sets contains the element E?". I.e. while the element is known, the set is not, and we wish to find it quickly. It is not quite the inverse of the original question, but close. Another operation which is often wanted is that of quickly merging two sets into one, with the result still fast for finding elements. Hence the alternative term merge-find for this. Why now is this named a disjoint-set ? Because another way of describing the whole situation is that we have o a finite set S, containing o a number of elements E, split into o a set of partitions P. The latter term applies, because the intersection of each pair P, P' of partitions is empty, with the union of all partitions covering the whole set. o An alternative name for the partitions would be equvalence classes, and all elements in the same class are considered as equal. Here is a pictorial representation of the concepts listed above: +-----------------+ The outer lines are the boundaries of the set S. | / | The inner regions delineated by the skewed lines | * / * | are the partitions P. The *'s denote the elements | * / | E in the set, each in a single partition, their |* / | equivalence class. | / * | | / * / | | * / * / | | / / | | / / * | | / * | | / * | +-----------------+ For more information see http://en.wikipedia.org/wiki/Disjoint_set_data_structure. API
The package exports a single command, ::struct::disjointset. All functionality provided here can be reached through a subcommand of this command. ::struct::disjointset disjointsetName Creates a new disjoint set object with an associated global Tcl command whose name is disjointsetName. This command may be used to invoke various operations on the disjointset. It has the following general form: disjointsetName option ?arg arg ...? The option and the args determine the exact behavior of the command. The following commands are possible for disjointset objects: disjointsetName add-partition elements Creates a new partition in specified disjoint set, and fills it with the values found in the set of elements. The command maintains the integrity of the disjoint set, i.e. it verifies that none of the elements are already part of the disjoint set and throws an error otherwise. The result of the command is the empty string. disjointsetName partitions Returns the set of partitions the named disjoint set currently consists of. disjointsetName num-partitions Returns the number of partitions the named disjoint set currently consists of. disjointsetName equal a b Determines if the two elements a and b of the disjoint set belong to the same partition. The result of the method is a boolean value, True if the two elements are contained in the same partition, and False otherwise. An error will be thrown if either a or b are not elements of the disjoint set. disjointsetName merge a b Determines the partitions the elements a and b are contained in and merges them into a single partition. If the two elements were already contained in the same partition nothing will change. The result of the method is the empty string. disjointsetName find e Returns the partition of the disjoint set which contains the element e. disjointsetName destroy Destroys the disjoint set object and all associated memory. BUGS, IDEAS, FEEDBACK This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category struct :: disjointset of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have for either package and/or documentation. KEYWORDS
disjoint set, equivalence class, find, merge find, partition, partitioned set, union CATEGORY
Data structures struct 1.0 struct::disjointset(3tcl)
All times are GMT -4. The time now is 06:01 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy