Learn how Nth Generation Reduced server sprawl


 
Thread Tools Search this Thread
Operating Systems HP-UX HP Server News and Podcasts RSS Learn how Nth Generation Reduced server sprawl
# 1  
Old 09-09-2008
Learn how Nth Generation Reduced server sprawl

Learn how Matthew Weiner, Project Manager from Nth Generation was able to reduce server sprawl and focus IT support on business critical applications while providing the flexibility to grow his business and contain future costs.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Pdf file format generation error in Solaris 8 server

Hi experts. We have Solaris 8 server and we set as reporting server. We are facing problem that, it is not generating pdf files in a specified format. give your valuable suggestions that, what i have to check and what are the necessary step i have to do (4 Replies)
Discussion started by: siddulamadhu
4 Replies

2. Shell Programming and Scripting

Calculating average for every Nth line in the Nth column

Is there an awk script that can easily perform the following operation? I have a data file that is in the format of 1944-12,5.6 1945-01,9.8 1945-02,6.7 1945-03,9.3 1945-04,5.9 1945-05,0.7 1945-06,0.0 1945-07,0.0 1945-08,0.0 1945-09,0.0 1945-10,0.2 1945-11,10.5 1945-12,22.3... (3 Replies)
Discussion started by: ncwxpanther
3 Replies

3. Shell Programming and Scripting

Using AWK to find top Nth values in Nth column

I have an awk script to find the maximum value of the 2nd column of a 2 column datafile, but I need to find the top 5 maximum values of the 2nd column. Here is the script that works for the maximum value. awk 'BEGIN { subjectmax=$1 ; max=0} $2 >= max {subjectmax=$1 ; max=$2} END {print... (3 Replies)
Discussion started by: ncwxpanther
3 Replies

4. AIX

virutal unix server to learn awk..

Hi Guys, My laptop has a Windows XP installed. i like to learn awk command on the aix server.. i don knw how to dual boot the linux servers on my XP.. is there any virtual unix program which runs on windows which will allow me to learn 'awk ' command.. Please help me guys.. ... (2 Replies)
Discussion started by: mac4rfree
2 Replies

5. UNIX for Dummies Questions & Answers

newbie: way to learn more about server's resource usage

I have a dedicated server running centos. It is "slightly managed" meaning I get a little help if I desperately need it; otherwise on my own. Many of the programs on this server I've had to write myself (less than optimal code for sure). Others are commercial but some are renowned resource... (2 Replies)
Discussion started by: blakekr
2 Replies
Login or Register to Ask a Question
XSetInputFocus(3X11)						     MIT X11R4						      XSetInputFocus(3X11)

Name
       XSetInputFocus, XGetInputFocus - control input focus

Syntax
       XSetInputFocus(display, focus, revert_to, time)
	  Display *display;
	  Window focus;
	  int revert_to;
	  Time time;

       XGetInputFocus(display, focus_return, revert_to_return)
	  Display *display;
	  Window *focus_return;
	  int *revert_to_return;

Arguments
       display	 Specifies the connection to the X server.

       focus	 Specifies the window, or

       focus_return
		 Returns the focus window, or

       revert_to Specifies where the input focus reverts to if the window becomes not viewable.  You can pass or

       revert_to_return
		 Returns the current focus state or

       time	 Specifies the time.  You can pass either a timestamp or

Description
       The function changes the input focus and the last-focus-change time.  It has no effect if the specified time is earlier than the current
       last-focus-change time or is later than the current X server time.  Otherwise, the last-focus-change time is set to the specified time is
       replaced by the current X server time).	causes the X server to generate and events.

       Depending on the focus argument, the following occurs:

       o    If focus is all keyboard events are discarded until a new focus window is set, and the revert_to argument is ignored.

       o    If focus is a window, it becomes the keyboard's focus window.  If a generated keyboard event would normally be reported to this window
	    or one of its inferiors, the event is reported as usual.  Otherwise, the event is reported relative to the focus window.

       o    If focus is the focus window is dynamically taken to be the root window of whatever screen the pointer is on at each keyboard event.
	    In this case, the revert_to argument is ignored.

       The specified focus window must be viewable at the time is called, or a error results.  If the focus window later becomes not viewable, the
       X server evaluates the revert_to argument to determine the new focus window as follows:

       o    If revert_to is the focus reverts to the parent (or the closest viewable ancestor), and the new revert_to value is taken to be

       o    If revert_to is or the focus reverts to or respectively.  When the focus reverts, the X server generates and events, but the last-
	    focus-change time is not affected.

       can generate and errors.

       The function returns the focus window and the current focus state.

Diagnostics
       Some numeric value falls outside the range of values accepted by the request.
		 Unless a specific range is specified for an argument, the full range defined by the argument's type is accepted. Any argument
		 defined as a set of alternatives can generate this error.

       A value for a Window argument does not name a defined Window.

See Also
       XWarpPointer(3X11)
       X Window System: The Complete Reference, Second Edition, Robert W. Scheifler and James Gettys

															      XSetInputFocus(3X11)