Where is SAN_4.4.x software ( SAN Foundation Software) ?


To find Sun Storage SAN Foundation Software, log into http://support.oracle.com -> Select Patches  and Update -> Select Advance Search, type "10297699" Select and download.


 
Download Access
10297699 Sun StorEdge SAN 4.4.x (Patch) 4.4 Generic Platform (American English) General Sun Storage SAN Foundation Software  1+ year ago 39.7 MB Firmware, Software
Fetching Data...
1 Patch Selected  Read Me



# cd p10297699_440_Generic
# ls -l
total 81440
-rw-r--r--   1 nobody4  nogroup  22107233 Oct 19  2010 SAN_4.4.13_install_it.tar.Z
-rw-r--r--   1 nobody4  nogroup  11325492 Oct 19  2010 SAN_S9_4.4.14_install_it.tar.Z
-rw-r--r--   1 nobody4  nogroup  8149385 Oct 19  2010 SAN_S9_4.4.15_install_it.tar.bz2
-rw-r--r--   1 nobody4  nogroup     6034 Oct 19  2010 license_agreement1.html
-rw-r--r--   1 nobody4  nogroup      820 Oct 19  2010 read_me_install_it.txt
-rw-r--r--   1 nobody4  nogroup      150 Oct 19  2010 readme.html
#

Process Memory usage.

#!/bin/sh

psidno=19230
prstat -s rss 1 1 |grep $psidno > /tmp/jav.txt
mems=`prstat -s rss 1 1 | grep $psidno |awk '{print $4}' | sed '$s/.$//'`

if [ $mems -gt 1024 ]; then
mailx -s " Process Memory usage status :" thamurali@yahoo.co.in < /tmp/jav.txt
fi

-----------------------------------------------
Above script will send a mail  if  a particular PID using morethan 1gb of memory.
Note : untested.