Hi, Can you please tell me which commands can show me which files are loading in RAM/which processes are runing along with their size,CPU usage, I/O etc ? TOP wont help in this case.. Also is it possible to see the same for SWAP content ?
free -m <-- shows memory usages, swap included vmstat 1 <-- shows IO to swap and other stuff ps aux <-- all processes and their mem sizes, cpu usage ps auxf <-- same thing in a tree format, shows you which are children of parents lsof <-- shows all open files lsof -i <-- shows open internet connections w <-- who is logged in and what they are running and system loads very quickly, ps shows the same thing in more detail