Sponsored Content
The Lounge What is on Your Mind? How Many Computers Do You Have Root Access At Work? Post 302185117 by Dave Miller on Monday 14th of April 2008 08:59:07 AM
Old 04-14-2008
Maybe I just don't get it.

I would expect those types of indstries to have a computer on every desk, but that they be PCs running Windows, and therefore not considered a 'server' and not counted in this survey.

Even if the computers on everyone's desk was runing some varitey of a unix OS, does that count?

Oh, sure, someone in that company's tech support dept would have access to any of them, particularly after a user called about a problem, but does that count? I think not.

Or am I missing something?
 

8 More Discussions You Might Find Interesting

1. Linux

how to access root priveliges if root password is lost

wish to know how to access root password it root password is forgotten in linux (1 Reply)
Discussion started by: wojtyla
1 Replies

2. SCO

root access

We have SCO 5.0.5 and can't log into system as "root". The system indicates the password is incorrect. No one knows what happened. How can we resolve this issue.. Are there files we can restore from backup...? Any suggestions would be appreciated. Thank you.. (2 Replies)
Discussion started by: RBurer
2 Replies

3. Filesystems, Disks and Memory

Unix Sco Open Server, Windows Computers Problem Access Unix Shared Files Help!!!!!

Hello Moto I hope someone can help We's here at work, have a unix box with sco openserver 5 on it, so it has a nice gui interface.. and also a fair few windows computers.. a system admin guy b4 me, has set up a user called neil, which can, when u try to access the unix box using windows... (2 Replies)
Discussion started by: haggo
2 Replies

4. AIX

root access

Hello I have a question. I have a box with Aix 5.3 but I want to disable root access direct from any terminal or console. I mean If I want to login to 10.10.10.10 login:root password ********* Root access is not permited Which file I have to edit. to the users first login with... (4 Replies)
Discussion started by: lo-lp-kl
4 Replies

5. UNIX for Dummies Questions & Answers

How to allow access to some commands having root privleges to be run bu non root user

hi i am new to unix and i have abig task. i have to \run particular commands having root privileges from a non root user. i know sudo is one of the way but i need sum other approach kindly help Thanks (5 Replies)
Discussion started by: suryashikha
5 Replies

6. Shell Programming and Scripting

How to give root access to non root user?

Currently in my system Red Hat is installed. And Many user connect to my machine via SSH Techia Terminal. I want to give some users a root level access. Can anyone please help me how to make it possible. I too searched on the Google but didn't find the correct way Regards ADI (4 Replies)
Discussion started by: adisky123
4 Replies

7. SuSE

Auditors want more security with root to root access via ssh keys

I access over 100 SUSE SLES servers as root from my admin server, via ssh sessions using ssh keys, so I don't have to enter a password. My SUSE Admin server is setup in the following manner: 1) Remote root access is turned off in the sshd_config file. 2) I am the only user of this admin... (6 Replies)
Discussion started by: dvbell
6 Replies

8. Ubuntu

Root access that can't change root password?

We are having a little problem on a server. We want that some users should be able to do e.g. sudo and become root, but with the restriction that the user can't change root password. That is, a guarantee that we still can login to that server and become root no matter of what the other users will... (2 Replies)
Discussion started by: 244an
2 Replies
XRaiseWindow(3X11)						     MIT X11R4							XRaiseWindow(3X11)

Name
       XRaiseWindow, XLowerWindow, XCirculateSubwindows, XCirculateSubwindowsUp, XCirculateSubwindowsDown, XRestackWindows - change window stack-
       ing order

Syntax
       XRaiseWindow(display, w)
	  Display *display;
	  Window w;

       XLowerWindow(display, w)
	  Display *display;
	  Window w;

       XCirculateSubwindows(display, w, direction)
	  Display *display;
	  Window w;
	  int direction;

       XCirculateSubwindowsUp(display, w)
	  Display *display;
	  Window w;

       XCirculateSubwindowsDown(display, w)
	  Display *display;
	  Window w;

       XRestackWindows(display, windows, nwindows);
	  Display *display;
	  Window windows[];
	  int nwindows;

Arguments
       direction Specifies the direction (up or down) that you want to circulate the window.  You can pass or

       display	 Specifies the connection to the X server.

       nwindows  Specifies the number of windows to be restacked.

       w	 Specifies the window.

       windows	 Specifies an array containing the windows to be restacked.

Description
       The function raises the specified window to the top of the stack so that no sibling window obscures it.	If the windows are regarded as
       overlapping sheets of paper stacked on a desk, then raising a window is analogous to moving the sheet to the top of the stack but leaving
       its x and y location on the desk constant.  Raising a mapped window may generate events for the window and any mapped subwindows that were
       formerly obscured.

       If the override-redirect attribute of the window is and some other client has selected on the parent, the X server generates a event, and
       no processing is performed.  Otherwise, the window is raised.

       can generate a error.

       The function lowers the specified window to the bottom of the stack so that it does not obscure any sibling windows.  If the windows are
       regarded as overlapping sheets of paper stacked on a desk, then lowering a window is analogous to moving the sheet to the bottom of the
       stack but leaving its x and y location on the desk constant.  Lowering a mapped window will generate events on any windows it formerly
       obscured.

       If the override-redirect attribute of the window is and some other client has selected on the parent, the X server generates a event, and
       no processing is performed.  Otherwise, the window is lowered to the bottom of the stack.

       can generate a error.

       The function circulates children of the specified window in the specified direction.  If you specify raises the lowest mapped child (if
       any) that is occluded by another child to the top of the stack.	If you specify lowers the highest mapped child (if any) that occludes
       another child to the bottom of the stack.  Exposure processing is then performed on formerly obscured windows.  If some other client has
       selected on the window, the X server generates a event, and no further processing is performed.	If a child is actually restacked, the X
       server generates a event.

       can generate and errors.

       The function raises the lowest mapped child of the specified window that is partially or completely occluded by another child.  Completely
       unobscured children are not affected.  This is a convenience function equivalent to with specified.

       can generate a error.

       The function lowers the highest mapped child of the specified window that partially or completely occludes another child.  Completely unob-
       scured children are not affected.  This is a convenience function equivalent to with specified.

       can generate a error.

       The function restacks the windows in the order specified, from top to bottom.  The stacking order of the first window in the windows array
       is unaffected, but the other windows in the array are stacked underneath the first window, in the order of the array.  The stacking order
       of the other windows is not affected.  For each window in the window array that is not a child of the specified window, a error results.

       If the override-redirect attribute of a window is and some other client has selected on the parent, the X server generates events for each
       window whose override-redirect flag is not set, and no further processing is performed.	Otherwise, the windows will be restacked in top to
       bottom order.

       can generate error.

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
       XChangeWindowAttributes(3X11), XConfigureWindow(3X11), XCreateWindow(3X11), XDestroyWindow(3X11), XMapWindow(3X11), XUnmapWindow(3X11)
       X Window System: The Complete Reference, Second Edition, Robert W. Scheifler and James Gettys

																XRaiseWindow(3X11)
All times are GMT -4. The time now is 09:05 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy