How to read the man page for commands related to cluster


 
Thread Tools Search this Thread
Operating Systems Solaris How to read the man page for commands related to cluster
# 1  
Old 08-16-2010
How to read the man page for commands related to cluster

Hi Experts,

In my system cluster is installed and the related files are inside /usr/cluster. I want to use the man page of command which are related to cluster.
The man pages related to cluster are inside /usr/cluster/man, however I am not sure how can I read the man page for command e.g. scconf etc.
I’ve no root access on this system

Thanks

Last edited by kumarmani; 08-16-2010 at 09:50 AM..
# 2  
Old 08-16-2010
Code:
MANPATH=/usr/cluster/man man scconf

You can also write
Code:
MANPATH=$MANPATH:/usr/cluster/man
export MANPATH

into your .profile to make this permanent, so that you can simply write "man scconf".
# 3  
Old 08-16-2010
Appreciate your help and its worked, however now I can’t access the other command man page !!! Though I inserted the path into the MANPATH as MANPATH=$MANPATH:/ Smilie

Also, if I go and list the environment variables after closing my session there is no reference of MANPATH on initial logging. I know to make persistence across logging I have to place the entry my .profile.

Last edited by kumarmani; 08-16-2010 at 10:22 AM..
# 4  
Old 08-16-2010
Does it work, if you put this in your .profile?

Code:
MANPATH=/usr/share/man:/usr/sfw/man:/usr/cluster/man
export MANPATH


Last edited by hergp; 08-16-2010 at 10:45 AM.. Reason: corrected typo
# 5  
Old 08-16-2010
Yes it does!!

Thanks a lot!
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Changing Man page output

I've been asked to come up with a command to display a man page that will continuously scrol (i.e. not hitting space/enter)l. Is there a way do this? I'm stumped. Thank you for your help. (8 Replies)
Discussion started by: Opy99
8 Replies

2. Shell Programming and Scripting

Error reading a man page

Hello, hope this is the correct forum for this question. I have created a man page, named nfwatchdog.1.gz. This man page was installed under /usr/share/man/man1. When I execute: man nfwatchdog from any location, the man page is incorrectly opened (I see ASCII garbage). But when I directly... (4 Replies)
Discussion started by: nardix
4 Replies

3. Solaris

man page question

What does the last change means in man page .. does that this man page has not been updated since 2003 or something else ? newfs-options The options are documented in the newfs man page. SunOS 5.10 Last change: 9 Dec 2003 1 System... (2 Replies)
Discussion started by: fugitive
2 Replies

4. Solaris

Creating a Man page for a command

Hi, I would like to develop a man page as the one we usually get when we execute man <command name>. This man page will be for a samll utility that i have written. If this is not possible then what are the available possibilites for creating such help. thanks in advance. (2 Replies)
Discussion started by: raghu.amilineni
2 Replies

5. Solaris

Unable to get help from man page

Help, it seem that i am unable to get man help form solaris 10. I am running SunOS unknown 5.10 Generic_120012-14 i86pc i386 i86pc when ever i try to man a command what i get is "No manual entry" like the one below. # man grep No manual entry for grep. # man ls No manual entry for ls.... (8 Replies)
Discussion started by: ezsurf
8 Replies

6. UNIX for Advanced & Expert Users

man page issue

Man page is not working my system. It is giving the following the following error > man ls gdbm fatal: read error with debug option > man -d ls ... .... ... ... using less as pager checking for locale en_US add_nls_manpath(): processing /usr/local/man:/usr/share/man:/usr/X11R6/man... (4 Replies)
Discussion started by: praveenkumar_l
4 Replies

7. Red Hat

scp-1.2.27 man page

Hi Guys, I'm looking for the man page for scp version 1.2.27 I have an old redhat server that has a few large scripts that use this version and I want to know what the -A flag does and the man page is not on there. (4 Replies)
Discussion started by: Tornado
4 Replies

8. UNIX for Dummies Questions & Answers

adding a man page

I was wonderiong if ther is a way for a user to add a man page specific to thier account. similar to copying the .1 or .1.gz to /usr/share/man/man1 "cp *.1.gz /usr/share/man/man1". Except for using another folder as I don't have access to /usr/share/man/man1. I would think that this might involve... (1 Reply)
Discussion started by: jacob358
1 Replies

9. UNIX for Dummies Questions & Answers

how do you create a man page?

i've never done this before. i created a script that I placed in /usr/bin, but want to create a man page for it. i'm clueless thanks (3 Replies)
Discussion started by: theDirtiest
3 Replies
Login or Register to Ask a Question