Sponsored Content
Full Discussion: T5120 2g ram
Operating Systems Solaris T5120 2g ram Post 302862165 by DustinT on Thursday 10th of October 2013 08:19:00 AM
Old 10-10-2013
Quote:
Originally Posted by DukeNuke2
Install the ldm tools and check the asked command.
D'oh! Thanks....
Code:
ldm ls
NAME             STATE      FLAGS   CONS    VCPU  MEMORY   UTIL  UPTIME
primary          active     -n-cv-  SP      8     2G       0.2%  6m

Code:
ldm list
NAME             STATE      FLAGS   CONS    VCPU  MEMORY   UTIL  UPTIME
primary          active     -n-cv-  SP      8     2G        22%  5m
dtrapani@atlopscenter:~$ ldm ls-config
factory-default
ldom_jet
xvmconfig [next poweron]

So, I really just need a simple, bare metal OS install. No ldoms needed.

---------- Post updated at 08:19 AM ---------- Previous update was at 08:12 AM ----------

Just a quick note, I successfully ran the following command
Code:
ldm add-memory 15g primary

ldm list output now shows 15g ram available to the primary. I'd still like to revert to a simple install. Did I use the wrong installation media?
 

10 More Discussions You Might Find Interesting

1. Solaris

how to hardware RAID 1 on T5120

Hi, I have t5120 sparc and I have 2 146 G drives in the system. I will be installing solaris 10 and also want the system mirrored using Hardware RAID "1" The System did come preinstalled as it comes from sun. I did not do much on it. I booted system using boot cdrom -s gave format... (6 Replies)
Discussion started by: upengan78
6 Replies

2. Red Hat

red hat Linux 5.0 is detecting 3gb ram but physical ram is 16gb

Hi, On server 64bit Hw Arch , Linux 5.0(32bit) is installed it is showing only 3gb of ram though physical is 16gb can u give me idea why? (4 Replies)
Discussion started by: manoj.solaris
4 Replies

3. Solaris

firmware update on t5120

Hi, I am using 3 t5120 sparc systems, OS solaris 10. I am confused by update manager behaviour and sun support. Sun support guy, tells me install patch : 136932-09 (#136932-09: Hardware/PROM: SPARC Enterprise T5120 & T5220 Sun System Firmware with LDOMS support) When I checked... (4 Replies)
Discussion started by: upengan78
4 Replies

4. Solaris

How to destroy hardware raid on T5120

Hi, I have problem creating hardware raid on T5120 with 4 disks. After the hardware raid 1 created, then I used the raidctl -l c1t0d0 and raidctl -l c1t2d0 the output of volume c1t0d0 contain disk 0.0.0 0.1.0, also the volume c1t2d0 contain disk 0.0.0 0.1.0 and should be 0.2.0 0.3.0 so I... (15 Replies)
Discussion started by: netlink
15 Replies

5. Solaris

Small issue with Sun Sparc Enterprise T5120

Good Day, We have bought Sun Sparc Enterprise T5120 with pre-installed Solaris 10 Sparc But i need on this server Solaris 9. I have inserted in to DVD-rom (USB DVD-rom) with Solaris 9 for Sparc. Then log into shell and type: reboot -- cdrom. System rebooted and i have this message: ... (3 Replies)
Discussion started by: A.Shalin
3 Replies

6. Solaris

change root password on t5120

hi all, i have a problem with a sun server, since a while the root password has been lost and now that we need to give maintenance to the services hosted in it, we cant access it, i tried a method to change it by booting from cd but i cant direct the server to boot from the cd. (The server is on... (3 Replies)
Discussion started by: darklilith
3 Replies

7. Solaris

conecting to t5120 with hyperterminal....

greetings. im a very new user to solaris (and to servers for that matter) and i need to conect to a t5120 sun server, i tried using the SER-MGT port on the back of the server, then to a rj-45/db-9 adaptor, and to a serial-usb adaptor (my laptop doesn't have a com port). when i try to conect with... (2 Replies)
Discussion started by: darklilith
2 Replies

8. Solaris

Sun T5120 hardware RAID question

Hi everyone I've just purchased a Sun T5120 server with 2 internal disks. I've configured hardware RAID (mirror) and as a result the device tree in Solaris only contains 1 hard drive. My question is, how would I know when one of the drives become faulty? Thanks (2 Replies)
Discussion started by: soliberus
2 Replies

9. Solaris

ILOM question on T5120 server

I have a T5120 server and we found out on a security scan that the web interface for the ILOM is enabled. I have been trying to find this information in the wonderful documentation but have not been successful. Does anyone know if you need the http/https enabled on the ILOM for the serial... (4 Replies)
Discussion started by: rkruck
4 Replies

10. Solaris

SP T5120

I have 2machines, 1 T5120 and 1 T5240. Just wandering everytime we have powershutdown, I need to connect thru SP console to boot the T5120. The other machine T5240 is ok and can boot normally after I press the power button. On T5120, no matter how I press the power button, it just stays there,... (3 Replies)
Discussion started by: lhareigh890
3 Replies
Locale::Codes::LangFam(3pm)				 Perl Programmers Reference Guide			       Locale::Codes::LangFam(3pm)

NAME
Locale::Codes::LangFam - standard codes for language extension identification SYNOPSIS
use Locale::Codes::LangFam; $lext = code2langfam('apa'); # $lext gets 'Apache languages' $code = langfam2code('Apache languages'); # $code gets 'apa' @codes = all_langfam_codes(); @names = all_langfam_names(); DESCRIPTION
The "Locale::Codes::LangFam" module provides access to standard codes used for identifying language families, such as those as defined in ISO 639-5. Most of the routines take an optional additional argument which specifies the code set to use. If not specified, the default ISO 639-5 language family codes will be used. SUPPORTED CODE SETS
There are several different code sets you can use for identifying language families. A code set may be specified using either a name, or a constant that is automatically exported by this module. For example, the two are equivalent: $lext = code2langfam('apa','alpha'); $lext = code2langfam('apa',LOCALE_LANGFAM_ALPHA); The codesets currently supported are: alpha This is the set of three-letter (lowercase) codes from ISO 639-5 such as 'apa' for Apache languages. This is the default code set. ROUTINES
code2langfam ( CODE [,CODESET] ) langfam2code ( NAME [,CODESET] ) langfam_code2code ( CODE ,CODESET ,CODESET2 ) all_langfam_codes ( [CODESET] ) all_langfam_names ( [CODESET] ) Locale::Codes::LangFam::rename_langfam ( CODE ,NEW_NAME [,CODESET] ) Locale::Codes::LangFam::add_langfam ( CODE ,NAME [,CODESET] ) Locale::Codes::LangFam::delete_langfam ( CODE [,CODESET] ) Locale::Codes::LangFam::add_langfam_alias ( NAME ,NEW_NAME ) Locale::Codes::LangFam::delete_langfam_alias ( NAME ) Locale::Codes::LangFam::rename_langfam_code ( CODE ,NEW_CODE [,CODESET] ) Locale::Codes::LangFam::add_langfam_code_alias ( CODE ,NEW_CODE [,CODESET] ) Locale::Codes::LangFam::delete_langfam_code_alias ( CODE [,CODESET] ) These routines are all documented in the Locale::Codes::API man page. SEE ALSO
Locale::Codes The Locale-Codes distribution. Locale::Codes::API The list of functions supported by this module. http://www.loc.gov/standards/iso639-5/id.php ISO 639-5 . AUTHOR
See Locale::Codes for full author history. Currently maintained by Sullivan Beck (sbeck@cpan.org). COPYRIGHT
Copyright (c) 2011-2013 Sullivan Beck This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.18.2 2013-11-04 Locale::Codes::LangFam(3pm)
All times are GMT -4. The time now is 02:42 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy