Now I am learning user administration under Solaris. Here is what so far I had learned. Solaris use /etc/passwd, /etc/group and /etc/shadow file to store user names and password information. I have also noticed that /etc/oshadow file, which is a temporary file used by passwd, passmgmt and pwconv to update the real shadow file.
To print all system account you need to use awk command:
$ awk -F: awk -F: ' $3 ≤ 99 { print $0 }' /etc/passwd
OR to just display list of all regular user:
$ awk -F: ' $3 > 99 { print $0 }' /etc/passwd
- IDs 0-99 are for Solaris system accounts
- IDs 100-999 for applications
- IDs 1000-60000 for normal users
Solaris also support id command to list user UID and GID:
$ id
uid=1000(rock) gid=1(other)
To list user name, user ID and all the groups to which the user belongs you need to pass -a option to id command:
$ id -a
uid=1000(rock) gid=1(other) groups=1(other), 3(sys),4(adm), 100(wwwftp)
List user and system login information:
This command displays information on user and system logins known to the system.
# logins
Getting more information about users
Find out who is on the system
$ who
Display information about currently logged-in users and what they are doing
$ w
Find out who is doing what (just like w command)
$ whodo
Dispaly user's login name:
$ logname
$ echo $LOGNAME
Try out who command (fun):
$ who am i
$ who r u
$ who 1 2
$ who we are
$ who the hell you are
Find out shell you are using:
$ ps -p $$
Display more information about user such as:
$ finger rockyjr
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop












{ 3 comments… read them below or add one }
How to check for deactivated accounts? There is no chage -l user on solaris.
very nice , keep it up .
very nice , keep it up .