who command option not working


 
Thread Tools Search this Thread
Operating Systems HP-UX who command option not working
# 1  
Old 11-27-2009
who command option not working

Running HP 11.31 on a HP3600. But when I log in as a user the who command works but if I use an option like "who -m" I get nothing. Any thoughts on what is causing this problem.
# 2  
Old 11-27-2009
Perhaps there is an alias defined somewhere. What happens if you use:
Code:
\who -m

Perhaps there is another who in your search path, check with:
Code:
which who

# 3  
Old 11-28-2009
Logged in as root get

# which who
/usr/bin/who
# who
awrpt pts/ta Nov 17 11:05
awrpt pts/tb Nov 17 11:05
root pts/tc Nov 27 22:04
# who -mR
root pts/tc Nov 27 22:04 (1IMAGE)
#


Logged in as user get

$ which who
/usr/bin/who
$ who
awrpt pts/ta Nov 17 11:05
awrpt pts/tb Nov 17 11:05
dw pts/tc Nov 27 22:02
$ who -mR
$
# 4  
Old 11-28-2009
OK and what about
Code:
\who -mR

What does that do?
# 5  
Old 11-28-2009
Logged in as root

# \who -mR
root pts/tc Nov 27 22:04 (1IMAGE)

Logged in as user
$ \who
awrpt pts/ta Nov 17 11:05
awrpt pts/tb Nov 17 11:05
dw pts/tc Nov 28 01:13
$ \who -m
$ \who -mR
# 6  
Old 11-28-2009
Are /etc/utmp* world readable?

If so perhaps
Code:
/sbin/init.d/utmpd stop; /sbin/init.d/utmpd start

# 7  
Old 11-28-2009
Logged in as a user and now have the -R option work need to get the -m option or the who am i to work as a user

$ who
awrpt pts/ta Nov 17 11:05
awrpt pts/tb Nov 17 11:05
dw pts/tc Nov 28 12:19
$ who -m
$ who -R
awrpt pts/ta Nov 17 11:05 (192.168.20.57)
awrpt pts/tb Nov 17 11:05 (192.168.20.57)
dw pts/tc Nov 28 12:19 (1IMAGE)
$ who -mR
$ who am i
$
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Maxdepth option of find command not working

Can you please figure out what is the issue here $ find . -maxdepth 1 -type f -size 0 -print find: bad option -maxdepth please find the OS details $ uname -a HP-UX g5u1216 B.11.31 U ia64 2614088426 unlimited-user license Use code tags, thanks. (6 Replies)
Discussion started by: TomG
6 Replies

2. AIX

SQLPLUS -S option not working

Hi All, I am using the following script to run some sql on database but i am not getting the result. When i tried the same by removing "-s" option it is working fine but getting other things as well with my input as shown below. Can anyone please suggest why "-s" option is not working in AIX and... (2 Replies)
Discussion started by: ssk250
2 Replies

3. Shell Programming and Scripting

-v and -f option for grep not working

In solaris, i m trying to find the files having a particulat extension and then from the list i want to exclude those files which is present in a file. But it seems the -f and -v option are not working find $source -type f -name $extn | /usr/xpg4/bin/grep -F -v -f $exclude | while read... (7 Replies)
Discussion started by: millan
7 Replies

4. Shell Programming and Scripting

Egrep not working with -f option

Hi, I am trying to find out patterns in file 1 using patterns stored in file 2. Following is the code FILE1=inputfilename FILE2=blacklist blacklist 1203 97715555 20afEOF egrep -f $FILE2 $FILE1 but the above code is not working either using egrep or grep. Just for your... (10 Replies)
Discussion started by: siramitsharma
10 Replies

5. UNIX for Dummies Questions & Answers

~c is not working properly with -r option

Hi There, --------- file1 ------- ~c asd@ac.com -------------- Now i am using below command cat file1|mailx -s " testing" -r " My Name" abc@tech.com (3 Replies)
Discussion started by: Tapan Sharma
3 Replies

6. Shell Programming and Scripting

daystart option not working in find command

Hi, I am trying to list all the files created / modified today in a directory. With reference to this thread, https://www.unix.com/shell-programming-scripting/20324-capture-all-today-files.html I have used the below command to list all the files modified today. find . -daystart -type f... (8 Replies)
Discussion started by: arunkumarmc
8 Replies

7. Shell Programming and Scripting

sub option of awk command not working with "\" character.

Hi all, I would like to replace some string in a text file by some string which would contains special characters like "/","\". I.e. I have a text file with the statement contactperson somewhere in it. Now I want to replace it by something else which includes special characters like "/","\" ... (1 Reply)
Discussion started by: shareef
1 Replies

8. UNIX for Advanced & Expert Users

For ls command,-r option is not working on OSF1

There r 2 servers. Lets call them S1 and S2.. S1 is OSF1 and S2 is SunOS.. One directory of S2 is mounted on S1. say abc/xyz There is one application which continuously put xml files in that directory (on S2). If we give command “ls -lrt” on S2 it gives proper output.. (i.e. gives list... (1 Reply)
Discussion started by: asmita
1 Replies

9. UNIX for Dummies Questions & Answers

-d option not working...

:confused: In the following, when I enter a valid, existing directory,why am I getting Not Found when the Dir DOES exist? read auser echo "You entered $auser" wait 2 cd /home if then echo "Dir Exists" sleep 2 else echo "/home/$auser Not Found" sleep... (2 Replies)
Discussion started by: rgouette
2 Replies

10. Solaris

Why does the 'ps' command with -u option not working?

How can I use the 'ps' command to view current sessions but only for a given process/user, with the -u parm? In older versions of Unix, this used to work, but not in Sun Solaris. Thanks (4 Replies)
Discussion started by: ElCaito
4 Replies
Login or Register to Ask a Question