Main > Free Download Search >

Free usage software for linux

usage

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1684
SysUsage 2.4

SysUsage 2.4


SysUsage is a system monitoring and alarm reporting tool. more>>
SysUsage is a system monitoring and alarm reporting tool. The project can generate historical graph views of CPU, memory, IO, network and disk usage, and much more.
Main features:
- Load average.
- CPUs usage. (total, system, user, iowait, idle, steal)
- Memory usage (with and without cache).
- Share memory usage (POSIX /dev/shm).
- Swap usage.
- Page swapping.
- Page I/O stats.
- R/W request stats.
- R/W block stats.
- Created process per second.
- Percentage of open file regarding to file-max.
- Number of socket in use. With TCP versus UDP.
- Any active network interface usage.
- Errors on network interface (bad packet, dropping, collision.
- Any mounted partition disk space usage.
- Monitoring running process.
- Monitoring number of file in queue directory.
USAGE
Once you have correctly installed and configured SysUsage the best way to run it is by croni job. As it is very fast you can set running time each minute. This is the default interval used in the graph report tool sysusagegraph. So I recommand you to do so or to modify this script to match you interval.
Here is how I use it with an installation with all path by default :
*/1 * * * * /INSTALL_DIR/sysusage
*/5 * * * * /INSTALL_DIR/sysusagegraph
If you have change the default installation path (/usr/local/sysusage) you need to give these script the path to the configuration into the command line argument using -c option. To know what arguments can be passed use option -h or --help.
<<less
Download (0.021MB)
Added: 2007-02-28 License: Perl Artistic License Price:
968 downloads
Pod::Usage 1.35

Pod::Usage 1.35


Pod::Usage, pod2usage() can print a usage message from embedded pod documentation. more>>
Pod::Usage, pod2usage() can print a usage message from embedded pod documentation.

SYNOPSIS

use Pod::Usage

my $message_text = "This text precedes the usage message.";
my $exit_status = 2; ## The exit status to use
my $verbose_level = 0; ## The verbose level to use
my $filehandle = *STDERR; ## The filehandle to write to

pod2usage($message_text);

pod2usage($exit_status);

pod2usage( { -message => $message_text ,
-exitval => $exit_status ,
-verbose => $verbose_level,
-output => $filehandle } );

pod2usage( -msg => $message_text ,
-exitval => $exit_status ,
-verbose => $verbose_level,
-output => $filehandle );

pod2usage( -verbose => 2,
-noperldoc => 1 )

<<less
Download (0.095MB)
Added: 2007-08-08 License: Perl Artistic License Price:
808 downloads
Test::Usage 0.07

Test::Usage 0.07


Test::Usage is a different approach to testing: selective, quieter, colorful. more>>
Test::Usage is a different approach to testing: selective, quieter, colorful.

SYNOPSIS

Lets say we are building module Foo.pm. To exercise it, we write a usage examples module, Foo_T.pm, which may eventually look something like this:

package Foo_T;
use Test::Usage;
use strict;
use warnings;
use Foo;

example(e1, sub { ... ok(...); ... die "Uh oh"; ... });
example(a1, sub { ... ok(...) or diag(...); ... });
example(a2, sub { ... ok(...); ... });
example(a3, sub {
my $f = Foo->new();
my $got_foo = $f->foo();
my $exp_foo = FOO;
ok(
$got_foo eq $exp_foo,
"Expecting foo() to return $exp_foo.",
"But got $got_foo."
);
});
Here are a few ways to test its examples:
# Run example a3 only.
perl -MFoo_T -e test(a => "a3")

# Run all examples whose label matches glob a*: a1, a2, a3.
perl -MFoo_T -e test(a => "a*")

# Run all examples found in the test module.
perl -MFoo_T -e test

# Run example a3, reporting successes also, but without color.
perl -MFoo_T -e test(a => "a3", v => 2, c => 0)

# Run and summarize all examples in all "*_T.pm" files found under
# current directory.
perl -MTest::Usage -e files

<<less
Download (0.016MB)
Added: 2006-10-24 License: Perl Artistic License Price:
1096 downloads
Usage Counter 0.2

Usage Counter 0.2


Usage Counter is a Firefox extension that tells you how much time you have spent using Firefox and browsing sites. more>> <<less
Download (0.006MB)
Added: 2007-07-24 License: MPL (Mozilla Public License) Price:
823 downloads
NCurses Disk Usage 1.3

NCurses Disk Usage 1.3


NCurses Disk Usage provides a fast and easy interface to your harddrive. more>>
As the name already suggests, ncdu is an NCurses version of the famous old du unix command.

NCurses Disk Usage provides a fast and easy interface to your harddrive. Where is your disk space going? Why is your home directory that large? ncdu can answer those questions for you in just a matter of seconds!

<<less
Download (0.089MB)
Added: 2007-08-06 License: MIT/X Consortium License Price:
813 downloads
TreeDiskUsage 0.0-18

TreeDiskUsage 0.0-18


TreeDiskUsage (TDU) is a Web based disk usage analyse tool. more>>
TreeDiskUsage (TDU) is a Web based disk usage analyse tool.
It is divided into two parts, the scanner and the viewer.
The scanner is a derived work from gnu du (coreutils) and builds a database file with its output.
The viewer is a php script and can be view it with any AJAX-able browser.
Main features:
- Scan at one PC, view somewhere else
- Scan many, view at one place
<<less
Download (0.10MB)
Added: 2007-03-20 License: GPL (GNU General Public License) Price:
949 downloads
Example NAT usage 1/17/01

Example NAT usage 1/17/01


Example NAT usage is a little script to show a NAT usage example. more>>
Example NAT usage is a little script to show a NAT usage example.

Sample:

#----------------------#
# Variable Definitions #
#----------------------#

EXT=eth0
INT=eth1

# "Masquerading" Example
PRIV_NETS="128.111.1.1 128.111.185.0/255.255.255.0"
MASQ_NET=192.168.1.0/255.255.255.0

# "General SNAT" Example
MAP_FROM=192.168.1.0/255.255.255.0
MAP_TO=128.111.185.30-128.111.185.42

# "Redirection" Example
INTERNAL_IP=10.10.1.1

# "Port Forwarding" Example
EXTERNAL_IP=128.111.1.200
NEWS_SERVER=10.10.1.38
MAIL_SERVER=10.10.1.69

# "Load Balancing" Example
VIRTUAL_SERVER=news.sblug.com
SERVER_RANGE=10.10.1.9-10.10.1.15

#-------------#
# NAT Section #
#-------------#

#
# Flush previous rules
#

iptables -t nat -F


#
# Masquerading
#

# Masquerading for outgoing connections, except privileged nets are exempt
for NET in $PRIV_NETS ; do
iptables -t nat -A POSTROUTING -d $NET -o $EXT -j ACCEPT
done
iptables -t nat -A POSTROUTING -s $MASQ_NET -o $EXT -j MASQUERADE


#
# General SNAT
#

# Internal computers w/ private ips "borrow" public ips of other internal computers to ssh out
iptables -t nat -A POSTROUTING -s $MAP_FROM -o $EXT -p tcp --dport ssh -j SNAT --to-source $MAP_TO
iptables -t nat -A POSTROUTING -s $MAP_FROM -o $EXT -p udp --dport ssh -j SNAT --to-source $MAP_TO


#
# Redirection
#

# Redirect internal net http traffic through squid proxy, but allow direct access to local web server
iptables -t nat -A PREROUTING -i $INT -d ! $INTERNAL_IP -p tcp --dport www -j REDIRECT --to-port 8080


#
# Port Forwarding
#

# Forward gateway port 7000 to news server and gateway port 8000 to pop mail server
iptables -t nat -A PREROUTING -d $EXTERNAL_IP -p tcp --dport 7000 -j DNAT --to-dest $NEWS_SERVER:nntp
iptables -t nat -A PREROUTING -d $EXTERNAL_IP -p tcp --dport 8000 -j DNAT --to-dest $MAIL_SERVER:pop3

#
# Load Balancing
#

# Basic load balancing by redirecting nntp requests to any of several local news servers
iptables -t nat -A PREROUTING -d $VIRTUAL_SERVER -p tcp --dport nntp -j DNAT --to-dest $SERVER_RANGE
<<less
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
984 downloads
Filesys::DiskUsage 0.04

Filesys::DiskUsage 0.04


Filesys::DiskUsage is a Perl module to estimate file space usage (similar to `du`). more>>
Filesys::DiskUsage is a Perl module to estimate file space usage (similar to `du`).

SYNOPSIS

use Filesys::DiskUsage qw/du/;

# basic
$total = du(qw/file1 file2 directory1/);
or
# no recursion
$total = du( { recursive => 0 } , );
or
# max-depth is 1
$total = du( { max-depth => 1 } , );
or
# get an array
@sizes = du( @files );
or
# get a hash
%sizes = du( { make-hash => 1 }, @files_and_directories );

FUNCTIONS

du

Estimate file space usage.

Get the size of files:

$total = du(qw/file1 file2/);

Get the size of directories:

$total = du(qw/file1 directory1/);

<<less
Download (0.005MB)
Added: 2007-04-25 License: Perl Artistic License Price:
912 downloads
Wchange 1.0

Wchange 1.0


Wchange provides a very simple wallpaper changer. more>>
Wchange provides a very simple wallpaper changer.

It requires only java runtime environment (JRE) and gconftool-2.

Usage:

java Wchange /home/folder/pictures/ seconds [random]

Where:

/home/folder/pictures/ is the directory where are wallpapers

seconds is how much time the system will wait between wallpaper switching

random (optional) use it only if you want wallpaper random switching

<<less
Download (0.003MB)
Added: 2007-03-29 License: GPL (GNU General Public License) Price:
940 downloads
dsflasher 0.9

dsflasher 0.9


dsflasher is a utility to flash Dallas (Maxim) DS89C450 microcontrollers using a ROM loader. more>>
dsflasher is a utility to flash Dallas (Maxim) DS89C450 microcontrollers using a ROM loader.

Usage:

dsflasher -f [input filename] -p [serial port]
<<less
Download (0.003MB)
Added: 2007-08-22 License: GPL (GNU General Public License) Price:
797 downloads
gimmage 0.2.3

gimmage 0.2.3


gimmage is an image viewer that is perfect for command line usage as it accepts directories and image filenames as arguments. more>>
gimmage is an image viewer that is perfect for command line usage as it accepts directories and image filenames as arguments.

It has an in-application file browser that allows users to select and drag images and directories into the image viewing area in order to have them displayed.

<<less
Download (0.024MB)
Added: 2007-06-27 License: GPL (GNU General Public License) Price:
849 downloads
StatsDawg 0.97

StatsDawg 0.97


StatsDawg is a suite that has been designed to be easily usable as well as configurable. more>>
StatsDawg is a suite that has been designed to be easily usable as well as configurable.

StatsDawg monitors various aspects of a Linux system such as CPU usage, load average, memory usage, etc. using RRDTool and PHP.

<<less
Download (0.12MB)
Added: 2007-08-16 License: GPL (GNU General Public License) Price:
800 downloads
durep 0.9

durep 0.9


durep creates disk usage reports with bar graphs, allowing one to easily deduce which directories are using the most space. more>>
durep creates disk usage reports with bar graphs, allowing one to easily deduce which directories are using the most space.

Although durep can produce text output similar to do, its real power lies in the ability to store reports in a file, which can then be viewed as a web page with the supplied cgi script.
<<less
Download (0.013MB)
Added: 2005-09-27 License: Artistic License Price:
1487 downloads
KuSys-Info

KuSys-Info


KuSys-Info is a Ku(buntu) Sys(tem)-Info. more>>
KuSys-Info is a Ku(buntu) Sys(tem)-Info.
KuSys-Info karamba applet is based on transwhite. I adapted it a bit and modified it so that it fits to my system and themes.
Detection of OS is not automatically right now, so you probably have to adapt the script.
To change to the right network interface change all ra0 entries to your interface.
Displays:
- CPU fan, usage and type
- System ID, KDE version and user
- Uptime, kernel version
- RAM and SWAP Usage
- network traffic
- hard disk usage
<<less
Download (0.035MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1206 downloads
KStatus enhanced 1.1

KStatus enhanced 1.1


KStatus enhanced is a modified version of a note SuperKaramba panel: Kstatus 1.1. more>>
KStatus enhanced is a modified version of a note SuperKaramba panel: Kstatus 1.1.
Ive removed the XMMS info panel and addedd the harware monitoring feature. So Ive updated the icon set too.
It monitors:
- System Info
- CPU usage
- RAM usage
- HDD usage
- Network usage
- System uptime
- System temperature
<<less
Download (0.12MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1205 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5