Sponsored Content
Operating Systems Solaris Solaris Cluster - Futjisu PrimePower 450 Post 302344856 by SmartAntz on Monday 17th of August 2009 10:07:59 PM
Old 08-17-2009
Solaris Cluster - Futjisu PrimePower 450

Hi all,

Current i do a research for the Solaris cluster. THe purpose is to replace the Veritas.

And i saw this link about the system requirement.
Solaris Cluster - Tech Specs
At here, I wish to double confirm that, is it Solaris Cluster not suitable for Futjisu PrimePower 450 ? Any idea or opinion ?

Below is the spec for the Futjisu PrimePower 450
Code:
Below is the  specification
     * Application Area: Computer  Nodes
     * Processors: 1 - 4  SPARC64-V
     * L1 Cache:  256K/CPU
     * L2 Cache: 1 or 2 MB/CPU (for  1.1 or 1.32 Ghz, respectively), 3 MB/CPU for 1.65, 1.87, and 1.98  Ghz
     * Clock speed: 1.1, 1.32, 1.65,  1.87, or 1.98 Ghz
     * Disk Storage Capacity: (hot  swap)
           o Rackmount 4U: 558.0 GB  (147.0 GB x4)
           o Rackmount 7U: 882.0 GB  (147.0 GB x6)
           o Floor-stand: 882.0 GB  (147.0 GB x6)
     * Bus Bandwidth: 14.08  GB/s
     * Memory: Up to 32 GB  DDR1-SDRAM
     * Max. PCI Slots: 6 (Rackmount  4U) - 9 (Rackmount 7U and Floor-stand)
     * On board SCSI controller: SCSI  Ultra 320
     * Redundant components: Power  Supply, Fan, Disks
     * Preventive maintenance alerts:  CPU, Memory, HDD Disk, Fan, PSU
     * Remote diagnosis: XSCF  (eXtended System Control Facility)
 * Operating System: Solaris 8, 9, or  10 Operating Environments

 

7 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Enterprise 450 Solaris 9 Problems

I am just getting started loading an Enterprise 450 Dell with Solaris 9 however I cannot get out of a loop that is not letting me get started. My basic question is what are the key strokes to get you out of a boot sequence so that you can at least clear the hard drive or start an install ... (9 Replies)
Discussion started by: Joe7778
9 Replies

2. High Performance Computing

Building a Solaris Cluster Express cluster in a VirtualBox on OpenSolaris

Provides a description of how to set up a Solaris Cluster Express cluster in a VirtualBox on OpenSolaris. More... (0 Replies)
Discussion started by: Linux Bot
0 Replies

3. Solaris

Sol10 on primepower 850

I've got a console that seems to be hung. all other services (ip, etc) work perfectly. in fact, its still in production... we just don't have console access. so i there are two consoles on this guy.. scfc0 and scfc1. using iompadm from fujitsu, this is what i got: # ./iompadm -c FJSVscf3 info... (1 Reply)
Discussion started by: pupp
1 Replies

4. Solaris

Solaris Cluster

Hi All, i have 2 zone 1- Oracle DB Primary Server 2- Oracle DB Secondary Server i make script do r sync between this 2 zones but i am planning to do is make Solaris cluster between this zones if the primary Server field the secondary server up and running automatically without any... (1 Reply)
Discussion started by: jamisux
1 Replies

5. Solaris

SVM metaset on 2 node Solaris cluster storage replicated to non-clustered Solaris node

Hi, Is it possible to have a Solaris cluster of 2 nodes at SITE-A using SVM and creating metaset using say 2 LUNs (on SAN). Then replicating these 2 LUNs to remote site SITE-B via storage based replication and then using these LUNs by importing them as a metaset on a server at SITE-B which is... (0 Replies)
Discussion started by: dn2011
0 Replies

6. Hardware

primepower 650

Hi all, I have an access Fujitsu primepower 650 that I can play with, the problem is I think there is a hardware problem I need to resolve before I can use it. Tried reading the User manual about the error code and googling it, but no luck, anyone knows here how to troubleshoot one? Error... (2 Replies)
Discussion started by: teknix
2 Replies

7. Solaris

Patching Procedure in Solaris 10 with sun cluster having Solaris zone

Hi Gurus I am not able to find the patching procedure for solaris 10 ( sol10 u11) to latest patchset with sun cluster having failover zones so that same I should follow. Take an instance, there are sol1 and sol2 nodes and having two failover zones like sozone1-rg and sozone2-rg and currently... (1 Reply)
Discussion started by: nick101
1 Replies
extract_font_range(3alleg4)					  Allegro manual				       extract_font_range(3alleg4)

NAME
extract_font_range - Extracts a range of characters from a font. Allegro game programming library. SYNOPSIS
#include <allegro.h> FONT *extract_font_range(FONT *f, int begin, int end) DESCRIPTION
This function extracts a character range from a font and returns a new font that contains only the range of characters selected by this function. You can pass -1 for either the lower or upper bound if you want to select all characters from the start or to the end of the font. Example: FONT *myfont; FONT *capitals; FONT *fontcopy; ... /* Create a font of only capital letters */ capitals = extract_font_range(myfont, 'A', 'Z'); /* Create a copy of the font */ fontcopy = extract_font_range(myfont, -1, -1); ... destroy_font(capitals); destroy_font(fontcopy); RETURN VALUE
Returns a pointer to the new font or NULL on error. Remember that you are responsible for destroying the font when you are finished with it to avoid memory leaks. SEE ALSO
get_font_range_begin(3alleg4), get_font_range_end(3alleg4), merge_fonts(3alleg4), transpose_font(3alleg4), exfont(3alleg4) Allegro version 4.4.2 extract_font_range(3alleg4)
All times are GMT -4. The time now is 09:58 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy