- 論壇徽章:
- 0
|
我上面說的是類似的問題發(fā)生時(shí)你要做的查找原因、分析記錄的方法。\r\n如果你實(shí)在等不了直接重啟應(yīng)用或者操作系統(tǒng)那么內(nèi)存自然會(huì)釋放回來的,但重啟以后你也無法再繼續(xù)分析了。\r\n\r\n在給你一些其他的觀察內(nèi)存的命令:\r\nipcs -mb\r\n\r\nsvmon -G\r\n\r\nTo print out the percentage of memory used, type:\r\nsvmon -F\r\n\r\nTo print out the top 10 users of the paging space, type:\r\nsvmon -U -g -t 10\r\n\r\nTo print out the memory usage statistics for the user oracle including the processes belonging to\r\nsteve, type:\r\nsvmon -U oracle -d\r\n\r\nTo print out the memory usage statistics for the user oracle, including the list of the process identifiers,\r\ntype:\r\nsvmon -U oracle -l\r\n\r\nTo print out the memory usage statistics of the top 5 working segment according to the number of\r\nvirtual pages , type:\r\nsvmon -S -t 5 -w -v\r\n\r\nTo print out the memory usage statistics for the process 13130, type:\r\nsvmon -P 13130\r\n\r\nTo print out the memory usage statistics of the top 10 process according to the number of pinned\r\npages, enter\r\nsvmon -P -t 10 -p\r\n\r\nTo sort system segments by the number of pages in real memory, and print out the top 10 system\r\nsegments of the resulting list, type:\r\nsvmon -Ssu -t 10 |
|