If you want to check RAM size on your solaris operating system, then you can make use of below given command:
prtconf | head -3 | grep Mem
prtconf command is used to print system configuration.
Note: If you are getting following error while using this command:
prtconf: not found
then you may need to set PATH environment variable:
export PATH=$PATH:/usr/sbin
Advertisements