| 
   【Cite from Winclient’s Blog】Here are 10 useful Linux tool that could help us improve the working efficiency    1.w   Yes, it is w command. You could see who is the current user and what command has been executed.   2.nmon   Nmon is a tool that could monitor current system performance, you need to use the following command to install it before using:   sudo apt-get install nmon Execute nmon command after installed:   nmon   nmon could check the usage of network, CPU, RAM and disk   Press c to check the information of CPU:  
Press n to check the network information:    
3.ncdu ncdu command could be used to check and analyze the usage of disk on Linux directory, you could use the following command to install: apt-get install ncdu You could execute the following command after installed: ncdu /    
 Note: execute the above command would take a big Disk I/O After analyze, there would generate the following:   We can press n to sort by name at the result interface, or press s to sort by size.  
4.slurm   slurm is a program which with network card bandwidth monitor command line utility that automatically generates ASCII graphical output. Before using, install the following command:   apt-get install slurm Use the following command to make output:   slurm -i <network card name>   slurm interface could execute the following command:   ◆I:indicate lx/tx situation   ◆c:switch to classify interface   ◆r:Manual refresh interface   ◆q:Quit tool  |