swap
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 164
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.
<<lessInstallation:
- 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.
Download (0.040MB)
Added: 2005-10-12 License: GPL (GNU General Public License) Price:
1472 downloads
CookieSwap 0.5.0
CookieSwap provides an extension that enables you to maintain numerous sets or profiles of cookies that you can quickly. more>>
CookieSwap provides an extension that enables you to maintain numerous sets or profiles of cookies that you can quickly.
Main features:
- Changing your cookies/identity to web e-mail sites (like Yahoo, Gmail, Hotmail, etc) so that you can quickly look like different users. Nice if you maintain multiple accounts and are tired of logging out and then back in to switch accounts. Also nice if two people are using the same computer and want to switch between accounts quickly.
- Changing your cookies/identity to see how sites like Amazon and Google treat you differently depending on who you are. For example, if Amazon recognizes you as a returning shopper they give you a different looking page (and there were claims that they give you different prices also). Google has begun to use a feature called "Personalized Search", where they modify their search results based on your user identity. There is a question about this when you create your Google account. The results of Google searches are different depending on if Google knows you or not. Use CookieSwap to quickly swap between Google recognizing you and being anonymous. Run the same search and see the differences.
- If you design web sites, you can setup numerous cookie profiles to look like different types of users and swap between those users quickly and easily to test your site in numerous modes (you can hand edit the cookies to have distinct values in each profile using a nice extension like Add & Edit Cookies).
<<lessMain features:
- Changing your cookies/identity to web e-mail sites (like Yahoo, Gmail, Hotmail, etc) so that you can quickly look like different users. Nice if you maintain multiple accounts and are tired of logging out and then back in to switch accounts. Also nice if two people are using the same computer and want to switch between accounts quickly.
- Changing your cookies/identity to see how sites like Amazon and Google treat you differently depending on who you are. For example, if Amazon recognizes you as a returning shopper they give you a different looking page (and there were claims that they give you different prices also). Google has begun to use a feature called "Personalized Search", where they modify their search results based on your user identity. There is a question about this when you create your Google account. The results of Google searches are different depending on if Google knows you or not. Use CookieSwap to quickly swap between Google recognizing you and being anonymous. Run the same search and see the differences.
- If you design web sites, you can setup numerous cookie profiles to look like different types of users and swap between those users quickly and easily to test your site in numerous modes (you can hand edit the cookies to have distinct values in each profile using a nice extension like Add & Edit Cookies).
Download (0.028MB)
Added: 2007-07-25 License: MPL (Mozilla Public License) Price:
869 downloads
cryptoswap 0.0.3
The cryptoswap package supports building an encrypted swap partition when a system boots. more>>
The cryptoswap package supports building an encrypted swap partition when a system boots. This must be necessary on systems that use encrypted filesystems because plaintext secrets may be written to disk when memory is swapped to disk.
Cryptoswap.sh should be installed in /etc/init.d. During system boot, cryptoswap.sh should execute right before checkroot.sh. When shutting down, cryptoswap should execute after sysklogd.
This package also includes an initialization script for building loopback encrypted /tmp. This may be necessary if a system contains encrypted filesystems but / is not encrypted. A link from directories like /var/tmp to /tmp may be appropriate. There are a few other alternatives for systems such as these:
1. Tmpfs is a Linux kernel feature that allows /tmp to exist in memory. This is a good solution for systems with a lot of memory and/or (encrypted) swap.
2. If you have a system that uses encrypted home directories, per-user temporary directories inside $HOME could be used. This would ensure that users data is protected but would require that all applications use $HOME/tmp instead of /tmp.
Finally, the project may be used to create an encrypted root filesystem. Doing so requires two special partitions. First, create a small partition to hold your kernel and initrd image, /dev/hdaX. Second create a large partition to contain the root of your filesystem, /dev/hdaY.
Next configure and install an initrd-based boot system:
1. Ensure romfs is compiled in your kernel (not a module).
2. Create a kernel-supported filesystem on /dev/hdaX and copy your kernel to /vmlinux.
3. Download busybox and extract it as initrd/busybox.
4. Update initrd/src/etc/modules.initrd to include any modules needed to boot.
5. Build cryptoswaps initrd image (cd initrd && make initrd) and copy it to the filesystem on /dev/hdaX at /initrd.img.gz.
6. Make sure you use literal = "root=/dev/ram0 init=/linuxrc rw" or LILO equivalent.
Finally, create a proper encrypted filesystem on /dev/hdaY:
1. Randomize the partition: dd if=/dev/urandom of=/dev/hdaY.
2. Set up a loopback device: openssl enc -d -aes-256-ecb -in initrd/src/etc/efsk | losetup -p0 -e aes /dev/loop0 /dev/hdaY.
3. Create the root filesystem: mkfs.ext2 /dev/loop0.
4. Mount your new root filesystem: mount /dev/loop0 .
5. Populate your new root filesystem.
Enhancements:
- Added initrd build environment.
- Documentation update.
<<lessCryptoswap.sh should be installed in /etc/init.d. During system boot, cryptoswap.sh should execute right before checkroot.sh. When shutting down, cryptoswap should execute after sysklogd.
This package also includes an initialization script for building loopback encrypted /tmp. This may be necessary if a system contains encrypted filesystems but / is not encrypted. A link from directories like /var/tmp to /tmp may be appropriate. There are a few other alternatives for systems such as these:
1. Tmpfs is a Linux kernel feature that allows /tmp to exist in memory. This is a good solution for systems with a lot of memory and/or (encrypted) swap.
2. If you have a system that uses encrypted home directories, per-user temporary directories inside $HOME could be used. This would ensure that users data is protected but would require that all applications use $HOME/tmp instead of /tmp.
Finally, the project may be used to create an encrypted root filesystem. Doing so requires two special partitions. First, create a small partition to hold your kernel and initrd image, /dev/hdaX. Second create a large partition to contain the root of your filesystem, /dev/hdaY.
Next configure and install an initrd-based boot system:
1. Ensure romfs is compiled in your kernel (not a module).
2. Create a kernel-supported filesystem on /dev/hdaX and copy your kernel to /vmlinux.
3. Download busybox and extract it as initrd/busybox.
4. Update initrd/src/etc/modules.initrd to include any modules needed to boot.
5. Build cryptoswaps initrd image (cd initrd && make initrd) and copy it to the filesystem on /dev/hdaX at /initrd.img.gz.
6. Make sure you use literal = "root=/dev/ram0 init=/linuxrc rw" or LILO equivalent.
Finally, create a proper encrypted filesystem on /dev/hdaY:
1. Randomize the partition: dd if=/dev/urandom of=/dev/hdaY.
2. Set up a loopback device: openssl enc -d -aes-256-ecb -in initrd/src/etc/efsk | losetup -p0 -e aes /dev/loop0 /dev/hdaY.
3. Create the root filesystem: mkfs.ext2 /dev/loop0.
4. Mount your new root filesystem: mount /dev/loop0 .
5. Populate your new root filesystem.
Enhancements:
- Added initrd build environment.
- Documentation update.
Download (0.20MB)
Added: 2006-07-10 License: GPL (GNU General Public License) Price:
1203 downloads
sarPplot 1.0.3
sarPplot is a simple application which takes output of atsar application and put it into Gnuplot config files. more>>
sarPplot project is a simple application which takes output of atsar application and put it into Gnuplot config files, kind of useful on server boxes for performance analyze, which is availabel on:
- cpu
- processload
- disk
- disk-partition
- memory&swap
- paging&swapping
- interrupts
- kernel-resources
- ttyactivity
- net-interf(general)
- net-interf(errors)
- ipv4(general)
- ipv4(errors)
- tcpv4(general)
- tcpv4(errors)
- udpv4
- icmpv4(general)
- icmpv4(pertype)
- nfs(general)
- nfs(errors)
- nfs(server)
- nfs-rpc(calls)
Enhancements:
- A grid feature was added along with httprequests and httpdpid targets.
- A bug in the interr function was fixed.
<<less- cpu
- processload
- disk
- disk-partition
- memory&swap
- paging&swapping
- interrupts
- kernel-resources
- ttyactivity
- net-interf(general)
- net-interf(errors)
- ipv4(general)
- ipv4(errors)
- tcpv4(general)
- tcpv4(errors)
- udpv4
- icmpv4(general)
- icmpv4(pertype)
- nfs(general)
- nfs(errors)
- nfs(server)
- nfs-rpc(calls)
Enhancements:
- A grid feature was added along with httprequests and httpdpid targets.
- A bug in the interr function was fixed.
Download (0.011MB)
Added: 2006-09-03 License: GPL (GNU General Public License) Price:
1148 downloads
wmsm.app 0.2.1
wmsm.app is a WindowMaker System Monitor. more>>
wmsm.app is a WindowMaker System Monitor.
Main features:
- Processor load
- Memory load
- Swap load
- Disk I/O (read/write)
- Uptime
- Two different scale types
Installation:
cd wmsm
make
make install (root)
Enhancements:
- added -d < dev > option to select the device that should observe, e.g. hda or sda (thanks to Carles Garrigues and krakov)
- added small point befor IOR and IOW only if the change of IOR or IOW was to small to display with the scale. Result: .IOR or .IOW
<<lessMain features:
- Processor load
- Memory load
- Swap load
- Disk I/O (read/write)
- Uptime
- Two different scale types
Installation:
cd wmsm
make
make install (root)
Enhancements:
- added -d < dev > option to select the device that should observe, e.g. hda or sda (thanks to Carles Garrigues and krakov)
- added small point befor IOR and IOW only if the change of IOR or IOW was to small to display with the scale. Result: .IOR or .IOW
Download (0.018MB)
Added: 2006-11-07 License: GPL (GNU General Public License) Price:
1081 downloads
OAMP 0.1
OAMP stands for (O)penBSD + (A)pache + (M)ySQL + (P)ostgreSQL + PHP. more>>
OAMP stands for (O)penBSD + (A)pache + (M)ySQL + (P)ostgreSQL + PHP. The project is the OpenBSD cousin of LAMP, except that it also provides the SQlite database engine, Perl, Ruby, and Python.
In addition, OAMP provides phpMyAdmin and phpPgAdmin for easy administration of MySQL and PostgreSQL over the Web.
OpenBSD is widely regarded as the most secure operating system in existence and its features can be used to satisfy all aspects of information assurance (i.e. confidentiality, integrity, availability). For instance, as of version 4.0 OpenBSD encrypts the swap partition by default and puts the Apache server in a "jail" environment, so if it is compromised the damage will be contained. In addition, all applications that come with OpenBSD have undergone source code audit and have been hardened accordingly. OAMP also provides the SQLite database, Perl, Python and Ruby.
<<lessIn addition, OAMP provides phpMyAdmin and phpPgAdmin for easy administration of MySQL and PostgreSQL over the Web.
OpenBSD is widely regarded as the most secure operating system in existence and its features can be used to satisfy all aspects of information assurance (i.e. confidentiality, integrity, availability). For instance, as of version 4.0 OpenBSD encrypts the swap partition by default and puts the Apache server in a "jail" environment, so if it is compromised the damage will be contained. In addition, all applications that come with OpenBSD have undergone source code audit and have been hardened accordingly. OAMP also provides the SQLite database, Perl, Python and Ruby.
Download (0.27MB)
Added: 2007-02-22 License: BSD License Price:
975 downloads
Atop 1.21
Atop is an interactive monitor for Linux-systems to view the load on system-level and process-level. more>>
Atop project is an ASCII full-screen performance monitor, similar to the top command.
At regular intervals, it shows system-level activity related to the CPU, memory, swap, disks and network layers, and it shows for every active process the CPU utilization in system and user mode, the virtual and resident memory growth, priority, username, state, and exit code.
The process level activity is also shown for processes which finished during the last interval, to get a complete overview about the consumers of things such as CPU time.
Atop only shows the active system-resources and processes, and only shows the deviations since the previous interval.
Enhancements:
- A new command, atopsar, has been added to generate detailed system activity reports (similar to the UNIX command sar) using the compressed logfiles as written by atop.
- These reports can also be generated for the current situation by specifying an interval for atopsar on the command line.
<<lessAt regular intervals, it shows system-level activity related to the CPU, memory, swap, disks and network layers, and it shows for every active process the CPU utilization in system and user mode, the virtual and resident memory growth, priority, username, state, and exit code.
The process level activity is also shown for processes which finished during the last interval, to get a complete overview about the consumers of things such as CPU time.
Atop only shows the active system-resources and processes, and only shows the deviations since the previous interval.
Enhancements:
- A new command, atopsar, has been added to generate detailed system activity reports (similar to the UNIX command sar) using the compressed logfiles as written by atop.
- These reports can also be generated for the current situation by specifying an interval for atopsar on the command line.
Download (0.066MB)
Added: 2007-08-20 License: GPL (GNU General Public License) Price:
796 downloads
hsftp 1.15
hsftp provides a lightweight FTP emulator for ssh1. more>>
hsftp provides a lightweight FTP emulator for ssh1.
hsftp is an FTP emulator that provides the look-and-feel of an FTP session, but uses ssh to transport commands and data. It is written in C, and requires no additional libraries.
hsftp is written in C, and is known to compile with gcc under Linux and some Unix flavours. No additional libraries are required. No dedicated daemon (in addition to the sshd daemon) is required to run on the server side.
If you need a password, hsftp will ask for it. The password is encrypted by ssh before transmission. hsftp will store the password internally, so you do not need to type it in again during a session.
Main features:
- hsftp executes UNIX commands on the remote host, and thus will fail on non-Unix remote hosts.
- If hsftp is not set SUID root, and you have supplied a password/passphrase, it might get paged out to your swap partition during prolonged inactivity.
- For security, hsftp can be compiled to drop SUID root privileges irrevocably on startup, immediately after locking the memory for the password.
- For RSA authentication, you can avoid to have hsftp caching the passphrase if you use ssh-agent. In this case, you can use hsftp securely without setting it SUID root.
- hsftp has been developed on Linux. It is known to compile on a variety of other UNIX flavours (at least FreeBSD, Solaris, AIX, and HP-UX), but may not work on all. Fixes for portability are welcome for inclusion.
<<lesshsftp is an FTP emulator that provides the look-and-feel of an FTP session, but uses ssh to transport commands and data. It is written in C, and requires no additional libraries.
hsftp is written in C, and is known to compile with gcc under Linux and some Unix flavours. No additional libraries are required. No dedicated daemon (in addition to the sshd daemon) is required to run on the server side.
If you need a password, hsftp will ask for it. The password is encrypted by ssh before transmission. hsftp will store the password internally, so you do not need to type it in again during a session.
Main features:
- hsftp executes UNIX commands on the remote host, and thus will fail on non-Unix remote hosts.
- If hsftp is not set SUID root, and you have supplied a password/passphrase, it might get paged out to your swap partition during prolonged inactivity.
- For security, hsftp can be compiled to drop SUID root privileges irrevocably on startup, immediately after locking the memory for the password.
- For RSA authentication, you can avoid to have hsftp caching the passphrase if you use ssh-agent. In this case, you can use hsftp securely without setting it SUID root.
- hsftp has been developed on Linux. It is known to compile on a variety of other UNIX flavours (at least FreeBSD, Solaris, AIX, and HP-UX), but may not work on all. Fixes for portability are welcome for inclusion.
Download (0.014MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
910 downloads
w3cam 0.7.2
w3cam is a simple CGI to retrieve images from a so called video4linux device. more>>
w3cam is a simple CGI to retrieve images from a so called video4linux device. In other words this program will only run on Linux machines which support a video4linux-device.
w3cam supports a text mode and a gui mode. In the gui mode a html with a form is supplied to change some parameters with the mouse ..
Supported output formats: [6]PNG, [7]JPEG and PPM
Screen dumps in GUI mode [8]double.jpg
Installation: run configure & make install and edit the installed w3cam.cgi.scf file for the runtime configuration.
Usage: Install the CGI and then call {url}/w3cam.cgi?help
Download source code: [9]w3cam-0.7.2.tar.gz
Needed Libraries: [10]libz, libpng, libjpeg
Checkout [11]ChangeLog for changes since the last release.
Tips:
Dont use refresh=0 if you are not the only one, who want to access the video, cause this will lock the v4l device.
Set refresh=-1 if the image is NOT embedded in a HTML-page (or set it at compile time as the default or at runtime in the configuration file).
Use w3cam.css to change the layout (dont forget to install and define the URL in the config file..)
Problems?: [13]Mini FAQ, and also consult the included documentation and HTML samples.
Enhancements:
- released 0.7.2
- w3cam.cgi: added default input in the gui mode
- added new option "bgr=1" to swap RGB24 to BGR24
- fixed v4l.c:v4l_set_input() for the ov511 driver
<<lessw3cam supports a text mode and a gui mode. In the gui mode a html with a form is supplied to change some parameters with the mouse ..
Supported output formats: [6]PNG, [7]JPEG and PPM
Screen dumps in GUI mode [8]double.jpg
Installation: run configure & make install and edit the installed w3cam.cgi.scf file for the runtime configuration.
Usage: Install the CGI and then call {url}/w3cam.cgi?help
Download source code: [9]w3cam-0.7.2.tar.gz
Needed Libraries: [10]libz, libpng, libjpeg
Checkout [11]ChangeLog for changes since the last release.
Tips:
Dont use refresh=0 if you are not the only one, who want to access the video, cause this will lock the v4l device.
Set refresh=-1 if the image is NOT embedded in a HTML-page (or set it at compile time as the default or at runtime in the configuration file).
Use w3cam.css to change the layout (dont forget to install and define the URL in the config file..)
Problems?: [13]Mini FAQ, and also consult the included documentation and HTML samples.
Enhancements:
- released 0.7.2
- w3cam.cgi: added default input in the gui mode
- added new option "bgr=1" to swap RGB24 to BGR24
- fixed v4l.c:v4l_set_input() for the ov511 driver
Download (0.14MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1200 downloads
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- 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)
Download (0.024MB)
Added: 2005-11-08 License: GPL (GNU General Public License) Price:
1447 downloads
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.
<<lessSuspend2 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.
Download (0.11MB)
Added: 2006-01-24 License: GPL (GNU General Public License) Price:
1369 downloads
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.
<<lessMain 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.
Download (0.021MB)
Added: 2007-02-28 License: Perl Artistic License Price:
968 downloads
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
wmsupermon 1.2.1
wmsupermon project is a universal monitoring dockapp. more>>
wmsupermon project is a universal monitoring dockapp.
It can be used to monitor CPU usage, disk I/O, memory usage, swap, filesystems, space utilization, network traffic, wireless link quality, CPU frequency, CPU temperature, fan speed, voltages (without requiring lm_sensors), battery status (with actual, not "reported", discharge rate), traffic from your router, or anything else.
It can open and maintain many dockapp windows with one dockapp process.
"wmsupermon" can be used to monitor:
- CPU usage
- disk i/o
- memory
- swap
- filesystems - space utilization
- network traffic
- wireless link quality
- cpu frequency
- CPU temperature, fan speed, voltages (no lm_sensors required!)
- battery status (with actual - not guessed - discharge rate!)
Enhancements:
- "-" was added to the font (to print negative numbers).
- Pane rotation was fixed so that it is no longer confused by laptop sleeps.
- WindowMaker mode was fixed.
- Support was added for >,<<less
It can be used to monitor CPU usage, disk I/O, memory usage, swap, filesystems, space utilization, network traffic, wireless link quality, CPU frequency, CPU temperature, fan speed, voltages (without requiring lm_sensors), battery status (with actual, not "reported", discharge rate), traffic from your router, or anything else.
It can open and maintain many dockapp windows with one dockapp process.
"wmsupermon" can be used to monitor:
- CPU usage
- disk i/o
- memory
- swap
- filesystems - space utilization
- network traffic
- wireless link quality
- cpu frequency
- CPU temperature, fan speed, voltages (no lm_sensors required!)
- battery status (with actual - not guessed - discharge rate!)
Enhancements:
- "-" was added to the font (to print negative numbers).
- Pane rotation was fixed so that it is no longer confused by laptop sleeps.
- WindowMaker mode was fixed.
- Support was added for >,<<less
Download (0.027MB)
Added: 2007-04-11 License: GPL (GNU General Public License) Price:
552 downloads
Hardware Monitor applet 1.4
The Hardware Monitor applet is a small program for the Gnome panel. more>>
Hardware Monitor applet is a small program for the Gnome panel which tries to be a beautiful all-round solution to hardware monitoring.
It also tries to be user-friendly and generally nice and sensible, integrating pleasantly with the rest of your Gnome desktop.
Main features:
- A graphical view where each monitor is represented by a (time, measurement) colored curve
- A bar-plot view with a horizontal bar per monitor
- A column view with a column (time, measurement) diagram for each monitor
- A textual view which simply lists the monitors and the currently measured values
- A flame view which produces spiffy flames, the sizes of which are determined by the values of the monitored device
And the applet supports monitoring the following hardware characteristics:
- CPU usage (all CPUs, or one at the time) - niced background processes such as SETI@home are automatically ignored
- Memory usage - cache and buffers are automatically ignored
- Swap usage
- Load average
- Disk usage (or disk space free)
- Network throughput (Ethernet, wireless, modem, serial link), either incoming or outgoing or both
- Temperatures from internal sensors (e.g. system board and CPU temperatures)
- Fan speeds from internal sensors
- To avoid eating CPU time when it is scarce, the applet lowers its priority.
<<lessIt also tries to be user-friendly and generally nice and sensible, integrating pleasantly with the rest of your Gnome desktop.
Main features:
- A graphical view where each monitor is represented by a (time, measurement) colored curve
- A bar-plot view with a horizontal bar per monitor
- A column view with a column (time, measurement) diagram for each monitor
- A textual view which simply lists the monitors and the currently measured values
- A flame view which produces spiffy flames, the sizes of which are determined by the values of the monitored device
And the applet supports monitoring the following hardware characteristics:
- CPU usage (all CPUs, or one at the time) - niced background processes such as SETI@home are automatically ignored
- Memory usage - cache and buffers are automatically ignored
- Swap usage
- Load average
- Disk usage (or disk space free)
- Network throughput (Ethernet, wireless, modem, serial link), either incoming or outgoing or both
- Temperatures from internal sensors (e.g. system board and CPU temperatures)
- Fan speeds from internal sensors
- To avoid eating CPU time when it is scarce, the applet lowers its priority.
Download (0.30MB)
Added: 2007-01-17 License: GPL (GNU General Public License) Price:
601 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above swap search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed