Archive

Posts Tagged ‘terminal’

Bandwidth Monitoring in Linux

June 15th, 2009

I travel to frequently and as such need to be able to keep an eye on my servers. I use SSH extensively for this purpose. I’ve been looking for some tools to keep track of bandwidth usage using the command line for a while and recently found some that do exactly what I want.

I found a list that introduced me to a bunch of different tools. Two of my favorites are bmon and bwm-ng. Both of these command line tools can be installed in Ubuntu by using apt-get. technical

Technical Notes , ,

Hard drive monitoring with sysstat

January 15th, 2009

I was wondering if there was a way to monitor hard drive use in a terminal the same way it is possible to monitor CPU and RAM usage with top. After a quick search I found a post on the OC Forums that suggests install sysstat, which does exactly what I want. Installation is simple:
sudo apt-get install sysstat

Then run the utility with:
iostat
You can also set it to automatically refresh by putting the number of seconds to refresh in after the command. For example, to refresh every five seconds, type:
iostat 5

Computers, How To , , ,