Sponsored Content
Operating Systems AIX AIX Cluster Show shared file systems. Post 302924655 by Clovis_Sangrail on Tuesday 11th of November 2014 10:20:33 AM
Old 11-11-2014
Hello,
Again thanks for the info, ibmtech & igalvarez. I found man pages and other references to clRGinfo, cllsgrp, clshowres, and cl-lots-of-other-stuff, but these do not seem to be installed in the server I'm working on. Neither are their smit entries:

Code:
 $smit cspoc
 
 lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqk
  x                              ERROR MESSAGE                               x
  x                                                                          x
  x Press Enter or Cancel to return to the                                   x
  x application.                                                             x
  x                                                                          x
  x   1800-007 There are currently no SMIT                                   x
  x   screen entries available for this FastPath.                            x
  x   This FastPath may require installation of                              x
  x   additional software before it can be accessed.                         x
  x                                                                          x
  x F1=Help                 F2=Refresh              F3=Cancel                x
  x Esc+8=Image             Esc+0=Exit              Enter=Do                 x
  mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqj

All I've been assigned to do is to create a particular subdirectory on a set of machines, and it seems that the parent directory (/3500/scratch) is an
an active one on the production cluster, so that's why I'm not seeing it on the inactive node. The 'lspv' listings satisfy me of that. I'd probably get a more explicit determination from the commands you list, were they installed.

Oh well, just another day of working with slightly-less-than-least-privileges Smilie. Thanks again, I will mark this thread closed or solved if possible.
 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

remote file copy across 2 systems (AIX and SCO)

Hello, Pls i need to copy some data from AIX Unix 4.3 to a SCO Openserve 5.0.5 using rcp command. But i keep on having permission error. WHAT IS THE SOLTION OR WHAT COMMAND CAN I USE AGAIN (4 Replies)
Discussion started by: aji
4 Replies

2. AIX

How to debug a shared library(.so file) on AIX?

How to debug a shared library(.so file) on AIX? (1 Reply)
Discussion started by: AlbertGao
1 Replies

3. AIX

IBM AIX on AS/400 Systems

Sry for my beginner question. I didn't find a list with all supported server types for an AIX 5.3 installation. Unfortunately ibm.com page has problems with the sign in so I can't ask in the ibm foum. Will AIX 5.3 run on a 9402, 9404 or 9406 system? Thanks for your help. (3 Replies)
Discussion started by: analyzer
3 Replies

4. UNIX for Dummies Questions & Answers

Printing systems in Solaris, AIX and HP-UX

Hi, Can anybody teach me the printing systems supported for Solaris 9, AIX and HP-UX 11i. Thanks in advance.:) (0 Replies)
Discussion started by: meeraramanathan
0 Replies

5. AIX

Breaking AIX cluster

Hello All, I was just wondering: How do I break a server cluster in an AIX 5.2 environment? Thanks. (1 Reply)
Discussion started by: bbbngowc
1 Replies

6. AIX

changing values for nfs shared file system on aix

Hi, I want to change the values for shared file system in aix for that I have run the command smitty chnfsexp but I am not getting the all the values which I have seen while adding the file system while exporting example smitty chnfsexp but after selecting shared file system using F4... (3 Replies)
Discussion started by: manoj.solaris
3 Replies

7. AIX

Should I be worried about my AIX Cluster?

I have a 2-node Power 7 - 16cpu - 32gb RAM - AIX 6L cluster. The production node has 10 physical cpus (40 cores) and 24gb of RAM. The cluster has been live for 6 weeks and I'm seeing some things on the production node that I think could be of concern but wanted to get some opinions. The... (6 Replies)
Discussion started by: troym72
6 Replies

8. AIX

AIX 5.2 C++ shared object issue

Hi all, I am developing an application with two components. One "c" binary and one "C++" shared object. While execution, the shared object crashes out and core dump is created whenever "new" is executed. But if i use malloc this will work perfectly. I tried to use dbx. Below given was... (1 Reply)
Discussion started by: itssujith
1 Replies

9. AIX

AIX flag to reduce size of shared file

I am using xlC (Version: 11.01.0000.0011). While build i am using "-g" to have debug information in build. there are many object files (>500) due to which resultant shared file (.so) will have huge size. I can't reduce optimization level. Is there any way or flag is present by using which i... (2 Replies)
Discussion started by: Abhi04
2 Replies
QInputDialog(3qt)														 QInputDialog(3qt)

NAME
QInputDialog - Simple convenience dialog to get a single value from the user SYNOPSIS
#include <qinputdialog.h> Inherits QDialog. Static Public Members <li class=fn>QString getText ( const QString & caption, const QString & label, QLineEdit::EchoMode mode = QLineEdit::Normal, const QString & text = QString::null, bool * ok = 0, QWidget * parent = 0, const char * name = 0 ) <li class=fn>int getInteger ( const QString & caption, const QString & label, int value = 0, int minValue = -2147483647, int maxValue = 2147483647, int step = 1, bool * ok = 0, QWidget * parent = 0, const char * name = 0 ) <li class=fn>double getDouble ( const QString & caption, const QString & label, double value = 0, double minValue = -2147483647, double maxValue = 2147483647, int decimals = 1, bool * ok = 0, QWidget * parent = 0, const char * name = 0 ) <li class=fn>QString getItem ( const QString & caption, const QString & label, const QStringList & list, int current = 0, bool editable = TRUE, bool * ok = 0, QWidget * parent = 0, const char * name = 0 ) DESCRIPTION
The QInputDialog class provides a simple convenience dialog to get a single value from the user. The input value can be a string, a number or an item from a list. A label must be set to tell the user what they should enter. Four static convenience functions are provided: getText(), getInteger(), getDouble() and getItem(). All the functions can be used in a similar way, for example: bool ok; QString text = QInputDialog::getText( "MyApp 3000", "Enter your name:", QLineEdit::Normal, QString::null, &ok, this ); if ( ok && !text.isEmpty() ) { // user entered something and pressed OK } else { // user entered nothing or pressed Cancel } <center> [Image Omitted] </center> See also Dialog Classes. MEMBER FUNCTION DOCUMENTATION
double QInputDialog::getDouble ( const QString & caption, const QString & label, double value = 0, double minValue = -2147483647, double maxValue = 2147483647, int decimals = 1, bool * ok = 0, QWidget * parent = 0, const char * name = 0 ) [static] Static convenience function to get a floating point number from the user. caption is the text which is displayed in the title bar of the dialog. label is the text which is shown to the user (it should say what should be entered). value is the default floating point number that the line edit will be set to. minValue and maxValue are the minimum and maximum values the user may choose, and decimals is the maximum number of decimal places the number may have. If ok is not-null *ok will be set to TRUE if the user pressed OK and to FALSE if the user pressed Cancel. The dialog's parent is parent; the dialog is called name. The dialog will be modal. This function returns the floating point number which has been entered by the user. Use this static function like this: bool ok; double res = QInputDialog::getDouble( "MyApp 3000", "Enter a decimal number:", 33.7, 0, 1000, 2, &ok, this ); if ( ok ) { // user entered something and pressed OK } else { // user pressed Cancel } int QInputDialog::getInteger ( const QString & caption, const QString & label, int value = 0, int minValue = -2147483647, int maxValue = 2147483647, int step = 1, bool * ok = 0, QWidget * parent = 0, const char * name = 0 ) [static] Static convenience function to get an integer input from the user. caption is the text which is displayed in the title bar of the dialog. label is the text which is shown to the user (it should say what should be entered). value is the default integer which the spinbox will be set to. minValue and maxValue are the minimum and maximum values the user may choose, and step is the amount by which the values change as the user presses the arrow buttons to increment or decrement the value. If ok is not-null *ok will be set to TRUE if the user pressed OK and to FALSE if the user pressed Cancel. The dialog's parent is parent; the dialog is called name. The dialog will be modal. This function returns the integer which has been entered by the user. Use this static function like this: bool ok; int res = QInputDialog::getInteger( "MyApp 3000", "Enter a number:", 22, 0, 1000, 2, &ok, this ); if ( ok ) { // user entered something and pressed OK } else { // user pressed Cancel } QString QInputDialog::getItem ( const QString & caption, const QString & label, const QStringList & list, int current = 0, bool editable = TRUE, bool * ok = 0, QWidget * parent = 0, const char * name = 0 ) [static] Static convenience function to let the user select an item from a string list. caption is the text which is displayed in the title bar of the dialog. label is the text which is shown to the user (it should say what should be entered). list is the string list which is inserted into the combobox, and current is the number of the item which should be the current item. If editable is TRUE the user can enter their own text; if editable is FALSE the user may only select one of the existing items. If ok is not-null *ok will be set to TRUE if the user pressed OK and to FALSE if the user pressed Cancel. The dialog's parent is parent; the dialog is called name. The dialog will be modal. This function returns the text of the current item, or if editable is TRUE, the current text of the combobox. Use this static function like this: QStringList lst; lst << "First" << "Second" << "Third" << "Fourth" << "Fifth"; bool ok; QString res = QInputDialog::getItem( "MyApp 3000", "Select an item:", lst, 1, TRUE, &ok, this ); if ( ok ) { // user selected an item and pressed OK } else { // user pressed Cancel } QString QInputDialog::getText ( const QString & caption, const QString & label, QLineEdit::EchoMode mode = QLineEdit::Normal, const QString & text = QString::null, bool * ok = 0, QWidget * parent = 0, const char * name = 0 ) [static] Static convenience function to get a string from the user. caption is the text which is displayed in the title bar of the dialog. label is the text which is shown to the user (it should say what should be entered). text is the default text which is placed in the line edit. The mode is the echo mode the line edit will use. If ok is not-null *ok will be set to TRUE if the user pressed OK and to FALSE if the user pressed Cancel. The dialog's parent is parent; the dialog is called name. The dialog will be modal. This function returns the text which has been entered in the line edit. It will not return an empty string. Use this static function like this: bool ok; QString text = QInputDialog::getText( "MyApp 3000", "Enter your name:", QLineEdit::Normal, QString::null, &ok, this ); if ( ok && !text.isEmpty() ) { // user entered something and pressed OK } else { // user entered nothing or pressed Cancel } SEE ALSO
http://doc.trolltech.com/qinputdialog.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 (qinputdialog.3qt) and the Qt version (3.3.8). Trolltech AS 2 February 2007 QInputDialog(3qt)
All times are GMT -4. The time now is 05:29 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy