Main > Free Download Search >

Free swap software for linux

swap

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 164
cfgstoragemaker 1.1

cfgstoragemaker 1.1


cfgstoragemaker is an MRTG configuration file generator for storage monitoring via SNMP. more>>
cfgstoragemaker remotely generates an MRTG config file in order to graph all storage devices (disk, memory, and swap) of one or more specific host(s) via SNMP.
<<less
Download (MB)
Added: 2005-04-07 License: GPL (GNU General Public License) Price:
1661 downloads
Phasi 0.2

Phasi 0.2


Phasi is another tool for system info written in PHP. more>>
Phasi project is another tool for system info written in PHP, with graphical report displaying several devices info, show memory status , SWAP use , and mounted disk partitions.
Main features:
- CPU Info
- Devices info
- Memory Status
- SWAP Status
- Disk partitions
<<less
Download (0.013MB)
Added: 2007-07-17 License: GPL (GNU General Public License) Price:
829 downloads
Crack Atack! 1.1.15

Crack Atack! 1.1.15


Crack Atack! is an OpenGL game based on the Super Nintendo classic Tetris Attack. more>>
Crack Atack! is an OpenGL game based on the Super Nintendo classic Tetris Attack.

You can swap only two bricks. Put at least 3 together to explode them.

<<less
Download (0.58MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1205 downloads
CompactBlack Karamba 1.0

CompactBlack Karamba 1.0


CompactBlack Karamba is yet another simple system status SuperKaramba theme. more>>
CompactBlack Karamba is yet another simple system status SuperKaramba theme.
Also included source svg file.
It monitors:
- CPU usage
- System uptime
- Kernel
- Memory Load
- Swap Usage
- Network Usage
- HDD Usage
<<less
Download (0.013MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1206 downloads
GlassMonitor 0.1

GlassMonitor 0.1


GlassMonitor is a SuperKaramba monitor that has all the basic information in a small space. more>>
GlassMonitor is a SuperKaramba monitor that has all the basic information in a small space, like:
Main features:
- Cpu usage
- Up time monitor
- Ram and Swap monitor
- Network traffic monitor
- Partitions monitor
<<less
Download (0.008MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1079 downloads
WMMemMon 1.0.1

WMMemMon 1.0.1


WMMemMon is a memory/swap monitor dockapp. more>>
WMMemMon is a memory/swap monitor dockapp. The current memory usage is displaied as the outside pie-slices. The swap usage is represented by the inside slices.

The back-light may be turned on/off by clicking the mouse button over the appliacation. If the usage hits a certain threshold, an alarm-mode will alert you by turning back-light on. WMMemMon runs on GNU/Linux, FreeBSD, OpenBSD, NetBSD, Solaris, Cygwin, IRIX and Darwin.
<<less
Download (0.14MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
1102 downloads
hfishs monitor 0.1.02

hfishs monitor 0.1.02


Ihfishs monitor includes support for two cpus, two ethernet interfaces, ram, swap and two partitions, nvidia gpu temp. more>>
hfishs monitor is based on this theme (http://www.kde-look.org/content/show.php?content=47852), I made some changes to best fit to my laptop.
Includes support for two cpus, two ethernet interfaces, ram, swap and two partitions, nvidia gpu temp.
Enhancements:
- Added nVidia GPU temp support
<<less
Download (0.028MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1079 downloads
Planetoids 1.0

Planetoids 1.0


Planetoids is a game similar to bejeweled. more>>
Planetoids is a game similar to bejeweled. The player must swap jewels to create combinations, including power and hyper jewels.

It includes a top score board to keep track of high player scores. Planetoids game also includes a hint feature, various jewel types, custom board sizes, and more.

<<less
Download (0.22MB)
Added: 2006-02-08 License: Freeware Price:
1353 downloads
swapd 1.0.1

swapd 1.0.1


swapd is a dynamic swap creation deamon. more>>
swapd is a dynamic swap creation deamon, it monitors the system memory and detect when swap creation will be required. the swap size is determined automatically with respect of sysadmin limits.
Installation:
- Make sure you are logged in as root.
- Run make install.
- Take a look at /usr/local/etc/swapd.conf and change what is necessary.
- Create the swap directory you chose in swapd.conf (it should be accessible only by root).
- Add the following line to /etc/rc.d/rc.local:
/usr/local/sbin/swapd
- If you recompiled the kernel, now would be the time to reboot. If you havent, just rehash and run swapd as root.
<<less
Download (0.040MB)
Added: 2005-10-12 License: GPL (GNU General Public License) Price:
1472 downloads
Template::Alloy 1.004

Template::Alloy 1.004


Template::Alloy is a TT2/3, HT, HTE, Tmpl, and Velocity Engine. more>>
Template::Alloy is a TT2/3, HT, HTE, Tmpl, and Velocity Engine.

SYNOPSIS

Template::Toolkit style usage
my $t = Template::Alloy->new(
INCLUDE_PATH => [/path/to/templates],
);

my $swap = {
key1 => val1,
key2 => val2,
code => sub { 42 },
hash => {a => b},
};

# print to STDOUT
$t->process(my/template.tt, $swap)
|| die $t->error;

# process into a variable
my $out = ;
$t->process(my/template.tt, $swap, $out);

### Alloy uses the same syntax and configuration as Template::Toolkit
HTML::Template::Expr style usage
my $t = Template::Alloy->new(
filename => my/template.ht,
path => [/path/to/templates],
);

my $swap = {
key1 => val1,
key2 => val2,
code => sub { 42 },
hash => {a => b},
};

$t->param($swap);

# print to STDOUT (errors die)
$t->output(print_to => *STDOUT);

# process into a variable
my $out = $t->output;

### Alloy can also use the same syntax and configuration as HTML::Template
Text::Tmpl style usage
my $t = Template::Alloy->new;

my $swap = {
key1 => val1,
key2 => val2,
code => sub { 42 },
hash => {a => b},
};

$t->set_delimiters(#[, ]#);
$t->set_strip(0);
$t->set_values($swap);
$t->set_dir(/path/to/templates);

my $out = $t->parse_file(my/template.tmpl);

my $str = "Foo #[echo $key1]# Bar";
my $out = $t->parse_string($str);


### Alloy uses the same syntax and configuration as Text::Tmpl
Velocity (VTL) style usage
my $t = Template::Alloy->new;

my $swap = {
key1 => val1,
key2 => val2,
code => sub { 42 },
hash => {a => b},
};

my $out = $t->merge(my/template.vtl, $swap);

my $str = "#set($foo 1 + 3) ($foo) ($bar) ($!baz)";
my $out = $t->merge($str, $swap);

<<less
Download (0.14MB)
Added: 2007-06-28 License: Perl Artistic License Price:
849 downloads
microramba 0.3

microramba 0.3


microramba is a very little Karamba theme for system monitoring. more>>
microramba is a very little Karamba theme to monitor your:

- cpu load
- used memory
- used swap
- network in & out traffic

Just needed a theme thats not *pretty but taking all of my desktop space*.

Archive content:

3 themes: with or without sparcle & for bright desktops

<<less
Download (0.22MB)
Added: 2006-07-04 License: GPL (GNU General Public License) Price:
1207 downloads
SLmon 0.5.13

SLmon 0.5.13


SLmon is a tool for monitoring systems performance. more>>
SLmon is a tool for monitoring systems performance. It displays results using nice and (hopefully) readable text-based UI. Currently monitored are:
- CPU load (SMP is supported)
- network interfaces
- memory (including swap)
- uptime, date and time
- number of logged in users
- mounted filesystems
- processes
<<less
Download (0.10MB)
Added: 2005-10-17 License: GPL (GNU General Public License) Price:
1469 downloads
wmSMPmon 3.1

wmSMPmon 3.1


wmSMPmon is a Window Maker applet for monitoring the CPUs, memory, and swap of SMP systems. more>>
wmSMPmon is a Window Maker Dock Application that displays the following information about the system:
- Current CPU utilization of up to two CPUs
- On dual CPU systems, three different styles for the utilization graph are available.
- Up to two minutes history of CPU utilization
- Current memory usage
- Current swap usage
- Currently supports Linux kernel 2.2, 2.4 and 2.6
Enhancements:
- Fixed bug where wmSMPmon would crash if no swap is enabled/present on the system (thanks to John Schmerge for finding this!)
- Added INSTALL file (thanks to Paul Johnson for reminding me)
<<less
Download (0.024MB)
Added: 2005-11-08 License: GPL (GNU General Public License) Price:
1447 downloads
Suspend2 2.2

Suspend2 2.2


Suspend2 allows you to hibernate your machine without needing APM, BIOS, or ACPI support. more>>
Suspend2 allows you to hibernate your machine without needing APM, BIOS, or ACPI support.
Suspend2 creates an image that is saved in your active swap partitions, swap files, ordinary files or (soon) across a network.
At the next system boot, the kernel detects the saved image, restores the memory from it and then it continues to run as if youd never powered down.
Enhancements:
- Since 2.2-rc12, there have been further bug fixes and a few enhancements.
- The software is now in feature freeze, getting prepared for seeking to merge into the vanilla kernel.
<<less
Download (0.11MB)
Added: 2006-01-24 License: GPL (GNU General Public License) Price:
1369 downloads
karabass

karabass


karabass is just system information(memory swap ram cpu fan eth0 houre amarok now playing..) i draw all part with the gimp. more>>
karabass is my first karamba theme , just nice one, soory for my unpercfect english but its not so easy for a frog.

karabass is just system information(memory swap ram cpu fan eth0 houre amarok now playing..) i draw all part with the gimp.

Easy to modify it, i put in the compact file a empty background so if you dont like this one just draw yourself and rename this file...

On this desktop i just put liquidweather and meteosat them..

I use kubuntu 5.10 with kde 3.5

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