Main > Free Download Search >

Free top software for linux

top

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 986
diald-top 2.1pl7

diald-top 2.1pl7


diald-top maintains a top-like listing of all packets and their time to live for use with diald. more>>
diald-top maintains a top-like listing of all packets and their time to live for use with diald. This project needs a new lead developer as the author no longer uses diald.

The concept behind diald-top is very simple. I got sick of trying to read a monitor pipe flying by on an extra VC, so I lusted after a more user friendly interface. As I like the interface in top, I decided to start with that kind of look. Fortunately, the designers of diald made my life rather easy by making the monitor pipe with an easy structure to implement.

I used ncurses for the interface to make my life simpler. This also has the additional effect of making this possible to run on any type of terminal. I have a VC4404 hooked up and this works great on it. As ncurses uses the terminfo database, it SHOULD work fine on any terminal with correct terminfo entries.

As of Version 0.0.1.1, I have added a limited command structure to diald-top. It is now possible to send diald commands to force/unforce, block/unblock and to bring the link up/down, and also to quit diald (immediately or when the link comes down) all from within diald-top. This makes the program a lot more useful.

The program also now reports the status of the link (UP, DOWN, CONNECT, START_LINK, STOP_LINK, DISCONNECT, CLOSE, etc). This can still use some work
but it is there now...

As of v2.0, diald-top now has the capability to run remotely, communicating to a custom server (also included in the package) that farms the contents of the monitor FIFO out to the remotely running clients. The communication is done using TCP/IP on port 1313 on the server. The identity of the user that is remotely running diald-top is verified using identd, and is then looked up in a configuration file (by userid, IP address, netmask).
<<less
Download (0.004MB)
Added: 2006-07-01 License: GPL (GNU General Public License) Price:
1215 downloads
apache-top 1.0

apache-top 1.0


apache-top provides real-time display of the active processes from a remote apache server. more>>
apache-top provides real-time display of the active processes from a remote apache server.
With apache-top you can get:
- The active apache processes with their associated PID, the status, the seconds being active, the CPU usage, the asociated VirtualHost, the accessing ip and the request (POST or GET, the file being accessed and the used protocol)
- The server uptime and the last time it was restarted
- The CPU usage
- Requests by second, Kb by second and the average Kb by request
- Number of active and inactive processes
- A graph with the inactive and active processes and their status
<<less
Download (0.012MB)
Added: 2006-09-01 License: GPL (GNU General Public License) Price:
1149 downloads
Top-Money-Making-Affiliate-Program 1.0

Top-Money-Making-Affiliate-Program 1.0


The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-29 License: Freeware Price: Free
183 downloads
Top Downloads 2.0

Top Downloads 2.0


Top Downloads provides a script that counts how many times a file has been downloaded. more>>
Top Downloads provides a script that counts how many times a file has been downloaded.

It keeps statistics of your downloads and can generate a TOP10 of your downloaded files. The administration function of this script allows you to delete, rename or change count numbers for your downloads.

It can check a directory that you specify for new files and add it to a database. Count numbers and TOP10 can be included into a HTML document.

Most web servers require SSI documents to have the extension .shtml or .shtm

For Apache web servers:
- AddType text/html .shtml
- AddHandler server-parsed .shtml

<<less
Download (0.035MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
916 downloads
Top Music 3.0 PR5 Beta1

Top Music 3.0 PR5 Beta1


Top Music allows you to publish music (albums, artists, songs, sound tracks, rankings, etc.) to create an online music portal. more>>
Top Music allows you to publish music (albums, songs, sound tracks, rankings, artists, etc.) to create an online music portal.

It features: A-Z list of bands; band information (name, photo, genre, biography, etc.); discography; album information (title, year, covers, band, etc.); albums songs lists; song information (title, album, number, lyrics, etc.); the ability to listen to tracks; searching; ranking lists (most visited, most voted, etc.); a voting system; an uploads system; themes; an easy configuration screen; many blocks; multi-language support; easy installation; and a support forum, mailing lists, and Sourceforge.net support (CVS, files, etc.)
<<less
Download (0.94MB)
Added: 2006-07-11 License: GPL (GNU General Public License) Price:
1203 downloads
Sort::Key::Top 0.01

Sort::Key::Top 0.01


Sort::Key::Top is a Perl module that can select and sort top n elements. more>>
Sort::Key::Top is a Perl module that can select and sort top n elements.

SYNOPSIS

use Sort::Key::Top (nkeytop top);

# select 5 first numbers by absolute value:
@top = nkeytop { abs $_ } 5 => 1, 2, 7, 5, 5, 1, 78, 0, -2, -8, 2;
# ==> @top = (1, 2, 1, 0, -2)

# select 5 first words by lexicographic order:
@a = qw(cat fish bird leon penguin horse rat elephant squirrel dog);
@top = top 5 => @a;
# ==> @top = qw(cat fish bird elephant dog);

The functions available from this module select the top n elements from a list using several common orderings and custom key extraction procedures.

They are all variations around

keytopsort { CALC_KEY($_) } $n => @data;

This function calculates the ordering key for every element in @data using the expression inside the block. Then it selects and orders the $n elements with the lower keys when compared lexicographically.

It is equivalent to the pure Perl expression:

(sort { CALC_KEY($a) cmp CALC_KEY($b) } @data)[0 .. $n-1];

Variations allow to:

- use the own values as the ordering keys
topsort 5 => qw(a b ab t uu g h aa aac);

==> a aa aac ab b
- return the selected values in the original order
top 5 => qw(a b ab t uu g h aa aac);

==> a b ab aa aac
- use a different ordering
For instance comparing the keys as numbers, using the locale configuration or in reverse order:
rnkeytop { length $_ } 3 => qw(a ab aa aac b t uu g h);

==> ab aa aac

rnkeytopsort { length $_ } 3 => qw(a ab aa aac b t uu g h);

==> aac ab aa

A prefix is used to indicate the required ordering:

(no prefix)

lexicographical ascending order

r

lexicographical descending order

l

lexicographical ascending order obeying locale configuration

r

lexicographical descending order obeying locale configuration

n

numerical ascending order

rn

numerical descending order

i

numerical ascending order but converting the keys to integers first

ri

numerical descending order but converting the keys to integers first

u

numerical ascending order but converting the keys to unsigned integers first

ru

numerical descending order but converting the keys to unsigned integers first

The full list of available functions is:

top ltop ntop itop utop rtop rltop rntop ritop rutop

keytop lkeytop nkeytop ikeytop ukeytop rkeytop rlkeytop rnkeytop
rikeytop rukeytop

topsort ltopsort ntopsort itopsort utopsort rtopsort rltopsort
rntopsort ritopsort rutopsort

keytopsort lkeytopsort nkeytopsort ikeytopsort ukeytopsort
rkeytopsort rlkeytopsort rnkeytopsort rikeytopsort rukeytopsort

<<less
Download (0.042MB)
Added: 2007-07-18 License: Perl Artistic License Price:
831 downloads
Kexx 2 1.0.1

Kexx 2 1.0.1


Kexx 2 project is a top down scrolling shoot em up. more>>
Kexx 2 project is a top down scrolling shoot em up.

Kexx 2 is a top down scrolling shoot em up game, similar to Raptor and Tyrian.

<<less
Download (MB)
Added: 2006-11-20 License: GPL (GNU General Public License) Price:
1069 downloads
KnoppMyth R5F1

KnoppMyth R5F1


KnoppMyth is Knoppix optimized for MythTV. more>>
KnoppMyth is an attempt to make the installation of GNU/Linux and MythTV as trivial as possible.

KnoppMyth includes everything needed to get your set-top box up and running in as little time as possible.
<<less
Download (501.5MB)
Added: 2007-05-16 License: GPL (GNU General Public License) Price:
897 downloads
mboxstats 3.0

mboxstats 3.0


mboxstats creates several top-10 lists from a file containing message in mbox-format. more>>
mboxstats project creates several top-10 lists from a file containing message in mbox-format.
List of top10 lists:
- Top writes
- Top receivers
- Top subjects
- Top ccers
- Top top-level-domain
- Top timezones
- Top organisations
- Top useragents (mailprograms)
- Top month/day-of-month/day-of-week/hour
- Average number of lines per message
- All kinds of per-user statistics
- And much more!
It outputs a formatted text-file or XML output.
Enhancements:
- Added nummer of messages per year
<<less
Download (0.020MB)
Added: 2007-01-18 License: GPL (GNU General Public License) Price:
1009 downloads
Stretch solitaire 1.0

Stretch solitaire 1.0


Stretch solitaire is a classical solitaire game. more>>
Stretch solitaire is a classical solitaire game. Stretch solitaires goal of this game is to get the cards to collapse into one pile.

You can move cards on top of each other when they are the same type (ace on top of ace) or the same suit (heart on top of heart).

<<less
Download (MB)
Added: 2006-05-12 License: Freeware Price:
1267 downloads
LogHack 1.2.0

LogHack 1.2.0


LogHack is a logfile analyzer for NetHack. more>>
LogHack is a logfile analyzer for NetHack. It produces many different statistics sorted by Score, MaxLevel, DeathLevel, HitPoints, MaxHp, DeathsCount, latest entry, age, and top reasons for End.

LogHack project also shows the most commonly used races, player names, roles, login names, alignment, gender, and NetHack version. The "top monsters" are also shown.

TODO:

Top Score/DeathNum
Top Longlife
Top Shortlife
Top Score/Life
Top Oldest + Newest
percent longlife
percent Monsters
Output Tex/Mpost
Output Html

list available races, roles, usernames + UIDs, playernames
<<less
Download (0.004MB)
Added: 2006-01-26 License: GPL (GNU General Public License) Price:
1367 downloads
tcptrack 1.2.0

tcptrack 1.2.0


tcptrack provides a packet sniffer that displays TCP connections similarly to top. more>>
tcptrack provides a packet sniffer that displays TCP connections similarly to top.

tcptrack is a packet sniffer, which passively watches for connections on a specified network interface, tracks their states, and lists them in a manner similar to the Unix top command.

It displays source and destination addresses and ports, connection state, idle time, and bandwidth usage.

<<less
Download (0.11MB)
Added: 2007-02-21 License: GPL (GNU General Public License) Price:
584 downloads
Process Viewer 0.5.0

Process Viewer 0.5.0


Process Viewer is a small utility similar to top which displays all the processes on a linux system. more>>
Process Viewer is a small utility similar to top which displays all the processes on a linux system. Its written using the FOX Toolkit.

Process Viewer is licensed under the GNU General Public License

<<less
Download (0.027MB)
Added: 2005-10-13 License: GPL (GNU General Public License) Price:
1512 downloads
TopJax 0.2

TopJax 0.2


TopJax is essentially the top Unix utility ported to the Web via AJAX using Sack of Ajax. more>>
TopJax is essentially the “top” unix utility ported to the web via Ajax using Sack of Ajax. It provides the ability to view system processes, sort processes by various fields, pause/unpause monitoring, and hide idle processes.

TopJax is released under the GPL.
<<less
Download (0.011MB)
Added: 2005-06-30 License: GPL (GNU General Public License) Price:
1577 downloads
15 pieces puzzle

15 pieces puzzle


15 pieces puzzle is a game where you have to arrange pieces in order from 1-15 counting from top left corner to bottom corner. more>>
15 pieces (also known as 16 pieces) puzzle game where you have to arrange pieces in order from 1-15 counting from top left corner to bottom right corner.

15 pieces puzzle is a SuperKaramba theme.

<<less
Download (0.034MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
709 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5