Sponsored Content
Full Discussion: Netra 1120 vmstat
Operating Systems Solaris Netra 1120 vmstat Post 302559120 by pepi on Monday 26th of September 2011 09:16:41 AM
Old 09-26-2011
Great your input has been noted and will be remembered. Thanks
 

10 More Discussions You Might Find Interesting

1. Solaris

Netra T1 105 problem

Hey All Thanks in Advance. Iam facing a problem with Netra T1 105 Ram issuse.I have 1 gb ram in the server but when it boots up in ok prompt or in banner it shows 768 mb Ram , if i put 512 mb Ram it show 368 mb Ram but this all ram if i connect in anthore netra server its shows 1 gb and... (1 Reply)
Discussion started by: solaris8in
1 Replies

2. Solaris

Netra T1 LOM Password Reset

Hello All, I had bought Netra T1 AC200 couple of months ago and has setup a user and password in LOMlite but I forgot the password. when i connect to the server i get the LOMlite prompt and i cant connect to the Serial console (there is no prompt). I have tried the JP13 JP14 and JP15... (1 Reply)
Discussion started by: Pratik Gharti
1 Replies

3. Solaris

Netra X1 will not power on - any ideas?

Hi, I have a Netra X1 that will not power on - either using the toggle switch or by using the "poweron" command at the LOM prompt. Has anyone seen this behaviour before or better still how to fix it. The LOM seems to be functioning fine but I cannot get the box to powerup. I thought it might... (0 Replies)
Discussion started by: gcoco
0 Replies

4. What is on Your Mind?

need some hardware for netra t1

guys - not sure where to post this one but i figured this was the likely spot. i need a sun dvd slimline for netra t1. hcl matrix has this for production/manufac. number: X7288A / 540-5014. anyone have a good spot to get this stuff? does anyone have an extra laying around to sell? i hate going... (2 Replies)
Discussion started by: pupp
2 Replies

5. Solaris

sun netra t1

so i've grabbed this sun netra t1 for some small dev work. now obviously i need to install sol10. no problem done it a million times except for the fact that i've never actually done it w/o a term server. so i grab a usb to serial and a serial to rj45 (the one you get in every cisco order.. roll... (24 Replies)
Discussion started by: pupp
24 Replies

6. Solaris

Netra V440 & Netra 1290 keyswitch

Hello, I wrote a script which monitor the keyswitch state repeatedly each 10 minutes. I'm extracting the keyswitch status by using prtdiag. The script works fine for Netra v440 , but I found that prtdiag under Netra 1290 don't give keyswitch status. unlike Netra 440 server , I found that... (2 Replies)
Discussion started by: Alalush
2 Replies

7. Solaris

Netra Remote Dial-in Problem

Looking for ideas on why I can't dial into our new Avaya CMS server (Sun Netra 210 - Sol 9) - remotely thru our ASA - site admin software. Running R3-V13 Avaya CMS software - just did a fresh install of the CMS software - install went perfect. The Sun supplied DB9 connector is installed... (1 Reply)
Discussion started by: drewmich
1 Replies

8. Solaris

Need Help to create LOM Cable Netra x1

hi all, I have a SUN NETRA x1. To Installation need LOM cable . There are ways that you can help me to make LOM Cable ? as the information I have serial cable CISCO Cisco and I have been trying to connect but only blank (2 Replies)
Discussion started by: moslemovic
2 Replies

9. Solaris

netra 240 difference

Hi, sunfire v240 and netra 240 are looks similar. system board, memory and processors are similar, then why netra 240 called as telco server? can anyone tell the difference. RJS (1 Reply)
Discussion started by: rajasekg
1 Replies

10. Solaris

Need help -- netra 5 Solaris enterprise 2

I need help to resurrect very old netra machines. two of them are netra enterprise 2 and they do not boot with the message Cant open boot device The IDPROM contents are invalid Boot device: net File and args the host is not connected to any LAN I brought up another Netra 5 connected to... (3 Replies)
Discussion started by: rk2153
3 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 01:34 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy