Results 1 to 6 of 6

Thread: Need System Monitoring Tools for Linux

  1. #1
    Join Date
    Jul 2009
    Posts
    92

    smile Need System Monitoring Tools for Linux

    Hi all,

    I am using Linux operating system in my office server. I need some basic monitoring tool that works on finding out bottlenecks, Disk bottlenecks, CPU and memory bottlenecks and Network bottlenecks. Can anybody suggest me for good tool for monitor Linux server performance? Thanks and regards.

  2. #2
    Join Date
    Apr 2008
    Posts
    3,295

    Need System Monitoring Tools for Linux

    The top program gives a dynamic real-time view of a running system i.e. real process activity. By default, it display the most CPU-intensive tasks running on the server and updates the list every five seconds. The commands are follows:

    t- For Displays summary information off and on.
    m- For show memory information off and on.
    A-For type the display by top consumers of various system resources.
    f- For go into an interactive configuration screen for top.
    o- For enables you to interactively select the ordering within top.
    r-For issues renice command.
    k-For Issues kill command.

  3. #3
    Join Date
    Nov 2005
    Posts
    3,026

    Need System Monitoring Tools for Linux

    The command vmstat also reports information about processes, memory, paging, block IO, traps, and CPU activity on the Linux server. If you want to display Memory Utilization Slabinfo, Then type the command :
    Code:
    vmstat -m
    If you want to information About Active / Inactive Memory Pages, type the command
    Code:
    # vmstat -a
    Best of luck.

  4. #4
    Join Date
    May 2008
    Posts
    2,680

    Need System Monitoring Tools for Linux

    You can also find out who is logged on and what they are doing by w command on the Linux operating system. It can displays information about the users at present on the machine, and their processes. The command list are below. Check and reply for more command:

    Code:
     w username
     w ABC

  5. #5
    Dr. V Guest

    Need System Monitoring Tools for Linux

    You can also find out uptime of system and check how long the system has been running.The uptime command can be used to observe how long the server has been running. The current time, how long the system has been running, the system load averages for the past 1, 5, and 15 minutes and how many users are currently logged on. The command are
    Code:
     uptime
    You can also observer the process by Ps command. Check and reply.

  6. #6
    Join Date
    Jan 2008
    Posts
    3,388

    Need System Monitoring Tools for Linux

    If you want to find Out the Top 10 Memory Consuming Process, type the command
    Code:
    ps -auxf | sort -nr -k 4 | head -10
    If you want to find Out top 10 CPU Consuming Process, type the command
    Code:
     ps -auxf | sort -nr -k 3 | head -10
    If you want to displays the total amount of free and used physical and swap memory in the system, as well as the buffers used by the kernel. Type the command:
    Code:
     free

Similar Threads

  1. Replies: 6
    Last Post: 02-10-2011, 11:38 PM
  2. How to use Linux standard tools for monitoring
    By Aahlaadith in forum Operating Systems
    Replies: 4
    Last Post: 17-02-2011, 06:58 PM
  3. Linux Live Tools
    By kAMARAJA in forum Operating Systems
    Replies: 6
    Last Post: 09-11-2010, 10:12 AM
  4. Linux Containers Tools
    By Barsha in forum Operating Systems
    Replies: 5
    Last Post: 01-04-2010, 06:32 AM
  5. Overclocking Tools for Linux
    By ABBOTT in forum Overclocking & Computer Modification
    Replies: 3
    Last Post: 13-04-2009, 11:30 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,750,965,098.17135 seconds with 16 queries