Good tips to Unix System Administrator

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Good tips to Unix System Administrator
# 1  
Old 02-27-2002
Good tips to Unix System Administrator

A list with sites that have a good tips to Unix System Administrator :

www.samag.com
www-1.ibm.com/servers/aix/products/aixos/whitepapers/aixmapping.html
http://www.science.uva.nl/pub/solari...is2/index.html
www.spec.org

Witt
witt
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unix System Programmer Vs. Unix System Administrator

Hi friends, I hope you are all fine and doing well. First of all, let me say that I love Unix with passion. But I have one query in my mind that is bothering me. What should I do, Unix System Administration or Unix System Programmering. Could you please tell me the difference between the two. And... (3 Replies)
Discussion started by: gabam
3 Replies

2. UNIX for Dummies Questions & Answers

Unix/Linux System Administrator - Study Advice

Hello all, I really hope that this is the right Forum to post this kind of a question... I have been working in the IT support industry for nearly 3 years now. I started of providing end-user support. So enough to say that I provided my fair share of "have you tried turning it off and on"... (1 Reply)
Discussion started by: kalignas
1 Replies

3. What is on Your Mind?

Unix Administrator and Linux Administrator transition

Hello Unix Experts, I'm going to be graduating with a CIS (Computer Information Systems) degree in the coming year. I have been offered an internship with a job title of Unix Administrator under a well known company. I understand that Unix is used for high-end servers in many large... (1 Reply)
Discussion started by: brentmd24
1 Replies

4. UNIX for Dummies Questions & Answers

Tell me some good unix project in system level programming...

this is very urgent plzzzzzzzzzzzzzzzz........... (0 Replies)
Discussion started by: stalin2020
0 Replies
Login or Register to Ask a Question
QToolTipGroup(3qt)														QToolTipGroup(3qt)

NAME
QToolTipGroup - Collects tool tips into related groups SYNOPSIS
#include <qtooltip.h> Inherits QObject. Public Members QToolTipGroup ( QObject * parent, const char * name = 0 ) ~QToolTipGroup () bool delay () const bool enabled () const Public Slots void setDelay ( bool ) void setEnabled ( bool ) Signals void showTip ( const QString & longText ) void removeTip () Properties bool delay - whether the display of the group text is delayed bool enabled - whether tool tips in the group are enabled DESCRIPTION
The QToolTipGroup class collects tool tips into related groups. Tool tips can display two texts: one in the tip and (optionally) one that is typically in a status bar. QToolTipGroup provides a way to link tool tips to this status bar. QToolTipGroup has practically no API; it is only used as an argument to QToolTip's member functions, for example like this: QToolTipGroup * grp = new QToolTipGroup( this, "tool tip relay" ); connect( grp, SIGNAL(showTip(const QString&)), myLabel, SLOT(setText(const QString&)) ); connect( grp, SIGNAL(removeTip()), myLabel, SLOT(clear()) ); QToolTip::add( giraffeButton, "feed giraffe", grp, "Give the giraffe a meal" ); QToolTip::add( gorillaButton, "feed gorilla", grp, "Give the gorilla a meal" ); This example makes the object myLabel (which you must supply) display (one assumes, though you can make myLabel do anything, of course) the strings "Give the giraffe a meal" and "Give the gorilla a meal" while the relevant tool tips are being displayed. Deleting a tool tip group removes the tool tips in it. See also Help System. MEMBER FUNCTION DOCUMENTATION
QToolTipGroup::QToolTipGroup ( QObject * parent, const char * name = 0 ) Constructs a tool tip group called name, with parent parent. QToolTipGroup::~QToolTipGroup () Destroys this tool tip group and all tool tips in it. bool QToolTipGroup::delay () const Returns TRUE if the display of the group text is delayed; otherwise returns FALSE. See the "delay" property for details. bool QToolTipGroup::enabled () const Returns TRUE if tool tips in the group are enabled; otherwise returns FALSE. See the "enabled" property for details. void QToolTipGroup::removeTip () [signal] This signal is emitted when a tool tip in this group is hidden. See the QToolTipGroup documentation for an example of use. See also showTip(). Example: helpsystem/mainwindow.cpp. void QToolTipGroup::setDelay ( bool ) [slot] Sets whether the display of the group text is delayed. See the "delay" property for details. void QToolTipGroup::setEnabled ( bool ) [slot] Sets whether tool tips in the group are enabled. See the "enabled" property for details. void QToolTipGroup::showTip ( const QString & longText ) [signal] This signal is emitted when one of the tool tips in the group is displayed. longText is the extra text for the displayed tool tip. See also removeTip(). Example: helpsystem/mainwindow.cpp. Property Documentation bool delay This property holds whether the display of the group text is delayed. If set to TRUE (the default), the group text is displayed at the same time as the tool tip. Otherwise, the group text is displayed immediately when the cursor enters the widget. Set this property's value with setDelay() and get this property's value with delay(). bool enabled This property holds whether tool tips in the group are enabled. This property's default is TRUE. Set this property's value with setEnabled() and get this property's value with enabled(). SEE ALSO
http://doc.trolltech.com/qtooltipgroup.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qtooltipgroup.3qt) and the Qt version (3.3.8). Trolltech AS 2 February 2007 QToolTipGroup(3qt)