swap meets
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 361
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
Snippets 1.0
Snippets is a CGI script where fortune cookie meets wiki. more>>
Snippets is a CGI script where fortune cookie meets wiki. The project provides:
- A way for people to share quotes, recipes, jokes...
- A private niche where a person can keep track of sites to visit, people to e-mail.
- A tool for administrators to turn a large repository of static content into a manageable amount of dynamic content.
Snippets is designed to be easy to configure and customize.
Snippets is a versatile CGI script that allows administrators to turn a large amount of static content into a small amount of dynamic content, and users to have an editable quote of the day. Its a cross between a fortune cookie program and a wiki. Snippets can be used for much more than memorable quotes, though; Snippets can be used to show people, or remind them of:
- Jokes
- Quotes
- Recipes
- Websites to visit
- Friends to write/e-mail/call
- Long-term to do items
- Places to visit
- Books to read
- Favorite pictures
- Etc.
Go ahead and play around with it; see what it can do.
<<less- A way for people to share quotes, recipes, jokes...
- A private niche where a person can keep track of sites to visit, people to e-mail.
- A tool for administrators to turn a large repository of static content into a manageable amount of dynamic content.
Snippets is designed to be easy to configure and customize.
Snippets is a versatile CGI script that allows administrators to turn a large amount of static content into a small amount of dynamic content, and users to have an editable quote of the day. Its a cross between a fortune cookie program and a wiki. Snippets can be used for much more than memorable quotes, though; Snippets can be used to show people, or remind them of:
- Jokes
- Quotes
- Recipes
- Websites to visit
- Friends to write/e-mail/call
- Long-term to do items
- Places to visit
- Books to read
- Favorite pictures
- Etc.
Go ahead and play around with it; see what it can do.
Download (0.046MB)
Added: 2007-02-23 License: GPL (GNU General Public License) Price:
973 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
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
Simple Monitor 1.1
Simple Monitor is a SuperKaramba theme inspired by the simple but effective Very Simple Monitors theme. more>>
Simple Monitor is a SuperKaramba theme inspired by the simple but effective "Very Simple Monitors" theme by the user humanthing. Some values are not displayed properly though in Very Simple Monitors (network values and IP). This could be because of different setups. My computer is pretty standard so my theme should function properly on most pcs. http://www.kde-look.org/content/show.php?content=48973
I like a tight and clean desktop, so I simplified the idea even more. This theme is showing all basic information, and nothing more.
Main features:
- Processors type
- Processor speed
- Processor load (number and graph, for one proc)
- Processor Temperature
- Amount of ram used / amount of ram
- amount of swap used / amount of swap
- amound of HDD space used / amount of HDD space total (for "/root" and "/home")
- HDD temperatue (for "/hda", I could add another drive if requested)
- Computer name
- Computer ip
- Network load (up- and download, values and graph)
- Amount of transfered data thrue internet (up- and download) since last boot
Enhancements:
- Made the three blocks clickable.
- The CPU block opens Processor information
- The Memory block opens KsysGuard (youll need to have it installed to be able open it, obviously. Its in Kubuntu by default)
- the Network block opens your computers ip settings window
- Added a line for your computers uptime
- Changed font colors to very dark gray and very light gray, instead of black and white, to make it look softer.
<<lessI like a tight and clean desktop, so I simplified the idea even more. This theme is showing all basic information, and nothing more.
Main features:
- Processors type
- Processor speed
- Processor load (number and graph, for one proc)
- Processor Temperature
- Amount of ram used / amount of ram
- amount of swap used / amount of swap
- amound of HDD space used / amount of HDD space total (for "/root" and "/home")
- HDD temperatue (for "/hda", I could add another drive if requested)
- Computer name
- Computer ip
- Network load (up- and download, values and graph)
- Amount of transfered data thrue internet (up- and download) since last boot
Enhancements:
- Made the three blocks clickable.
- The CPU block opens Processor information
- The Memory block opens KsysGuard (youll need to have it installed to be able open it, obviously. Its in Kubuntu by default)
- the Network block opens your computers ip settings window
- Added a line for your computers uptime
- Changed font colors to very dark gray and very light gray, instead of black and white, to make it look softer.
Download (0.002MB)
Added: 2007-04-06 License: GPL (GNU General Public License) Price:
936 downloads
SIP Express Router 0.9.6
SIP Express Router is a very fast and flexible SIP (RFC3261) server. more>>
SIP Express Router (ser) is a high-performance, configurable, free SIP ( RFC3261 ) server .
SER features an application-server interface, presence support, SMS gateway, SIMPLE2Jabber gateway, RADIUS/syslog accounting and authorization, server status monitoring, FCP security, etc. Web-based user provisioning, serweb, available.
Its performance allows it to deal with operational burdens, such as broken network components, attacks, power-up reboots and rapidly growing user population.
SERs configuration ability meets needs of a whole range of scenarios including small-office use, enterprise PBX replacements and carrier services.
Main features:
- accounting
- digest authentication
- CPL scripts
- ENUM support
- instant messaging
- MySQL support
- PostgreSQL support
- a presence agent
- Radius authentication and accounting
- Diameter authentication
- record routing
- SMS gateway
- Jabber gateway
- NAT traversal support transaction module
- registrar
- user location
SER has been extensively and successfuly tested with many SIP products from other vendors (Microsoft, Cisco, Mitel, snom, Pingtel, Siemens, and many others). It has been powering our SIP services continuously for more than two years.
<<lessSER features an application-server interface, presence support, SMS gateway, SIMPLE2Jabber gateway, RADIUS/syslog accounting and authorization, server status monitoring, FCP security, etc. Web-based user provisioning, serweb, available.
Its performance allows it to deal with operational burdens, such as broken network components, attacks, power-up reboots and rapidly growing user population.
SERs configuration ability meets needs of a whole range of scenarios including small-office use, enterprise PBX replacements and carrier services.
Main features:
- accounting
- digest authentication
- CPL scripts
- ENUM support
- instant messaging
- MySQL support
- PostgreSQL support
- a presence agent
- Radius authentication and accounting
- Diameter authentication
- record routing
- SMS gateway
- Jabber gateway
- NAT traversal support transaction module
- registrar
- user location
SER has been extensively and successfuly tested with many SIP products from other vendors (Microsoft, Cisco, Mitel, snom, Pingtel, Siemens, and many others). It has been powering our SIP services continuously for more than two years.
Download (2.0MB)
Added: 2006-01-11 License: GPL (GNU General Public License) Price:
1393 downloads
WMMemFree 0.7
WMMemFree is a memory monitoring dockapp. more>>
WMMemFree shows system memory usage. It runs as a dockapp for WindowMaker or some other window manager which supports dockapps.
On the top side you have your physical memory usage and on the bottom theres
your swap space usage. The following options can be passed to WMMemFree on the command line:
-h, --help - display basic usage info
-v, --version - display version
-display - specify the X11 display to connect to
-b, --buffers - consider buffer memory
-nb, --no-buffers - ignore buffer memory
-c, --cache - consider cache memory
-nc, --no-cache - ignore cache memory
-w, --window - run in a window
-nw, --no-window - dont run in a window
-s, --shape - use the XShape extension
-ns, --no-shape - dont use XShape extension
Enhancements:
- Now windowed mode will have no decorations, the window can be moved with the mouse.
<<lessOn the top side you have your physical memory usage and on the bottom theres
your swap space usage. The following options can be passed to WMMemFree on the command line:
-h, --help - display basic usage info
-v, --version - display version
-display - specify the X11 display to connect to
-b, --buffers - consider buffer memory
-nb, --no-buffers - ignore buffer memory
-c, --cache - consider cache memory
-nc, --no-cache - ignore cache memory
-w, --window - run in a window
-nw, --no-window - dont run in a window
-s, --shape - use the XShape extension
-ns, --no-shape - dont use XShape extension
Enhancements:
- Now windowed mode will have no decorations, the window can be moved with the mouse.
Download (0.014MB)
Added: 2005-09-27 License: GPL (GNU General Public License) Price:
1488 downloads
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.
<<lessIt 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.
Download (0.22MB)
Added: 2006-02-08 License: Freeware Price:
1353 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
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
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
Crystal Monitor 6.3.2
CrystalMonitor is SuperKaramba theme. more>>
CrystalMonitor is SuperKaramba theme with:
* Guess distro
In .py file is link to files, where are basic infos about your distro. .py file finds sitably file and only writes out data to CrystalMonitor.
* Kernel monitor
Display your kernel version
* Cpu monitor
Display your procesor name, cpu cache and usage
* Ram, swap monitor
Display how many MB memory has your computer and how many MB of its is in usage
* Hdd monitor
Display Home and Root particions
* TimeMonitor
Day, Date and time monitor
* Procesor temperature and MHz monitor (ACPI)
Its working only if the ACPI and the frequency scaling are enable.
* Network (downstream/upstream) monitor (5.0 and newer)
* 12 themes (4.0 and older)
<<less* Guess distro
In .py file is link to files, where are basic infos about your distro. .py file finds sitably file and only writes out data to CrystalMonitor.
* Kernel monitor
Display your kernel version
* Cpu monitor
Display your procesor name, cpu cache and usage
* Ram, swap monitor
Display how many MB memory has your computer and how many MB of its is in usage
* Hdd monitor
Display Home and Root particions
* TimeMonitor
Day, Date and time monitor
* Procesor temperature and MHz monitor (ACPI)
Its working only if the ACPI and the frequency scaling are enable.
* Network (downstream/upstream) monitor (5.0 and newer)
* 12 themes (4.0 and older)
Download (0.097MB)
Added: 2007-04-12 License: GPL (GNU General Public License) Price:
935 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
asmem 1.12
asmem is a memory utilization monitor. more>>
asmem is a memory utilization monitor.
This is an AfterStep look & feel memory utilization monitor for X Windows.
I used this asmem tool written by alinden netcologne.de for quite a while. It served the purpose but I was very unsatisfied with its appearance. I wanted something that would fit nicely between all other applets on my desktop. I tried to contact the author a few times but got no answer. So I decided to rewrite it from scratch and give it the look and options that I personally like. I hope the author of
the original asmem will not be too angry with me.
The display consists of two areas. The one above shows utilization of the memory, the one below - the utilization of the swap space. Each area contains a graphical bar that represents the percentage of the available space. For the memory utilization
there are three bars: user/system memory used, buffer memory and cache memory. For the swap space only one bar showing the used space. Above each bar is the total amount of space, below the bar - the available space in kbytes and percents. If the
memory amount is above 999999 kbytes the displays switches to Mbytes instead of kbytes.
The program may be used directly or in the Afterstep "wharf". It also supports the WindowMaker docker (-withdrawn option). It may be used in all other window managers as well. It runs well as an icon.
You may want to have a look in the CHANGES file for the history of updates.
Enhancements:
- The last release was missing a return type for one of the functions, basically making the whole update worthless.
- Now it is fixed properly.
- There are a couple of small changes here and there.
<<lessThis is an AfterStep look & feel memory utilization monitor for X Windows.
I used this asmem tool written by alinden netcologne.de for quite a while. It served the purpose but I was very unsatisfied with its appearance. I wanted something that would fit nicely between all other applets on my desktop. I tried to contact the author a few times but got no answer. So I decided to rewrite it from scratch and give it the look and options that I personally like. I hope the author of
the original asmem will not be too angry with me.
The display consists of two areas. The one above shows utilization of the memory, the one below - the utilization of the swap space. Each area contains a graphical bar that represents the percentage of the available space. For the memory utilization
there are three bars: user/system memory used, buffer memory and cache memory. For the swap space only one bar showing the used space. Above each bar is the total amount of space, below the bar - the available space in kbytes and percents. If the
memory amount is above 999999 kbytes the displays switches to Mbytes instead of kbytes.
The program may be used directly or in the Afterstep "wharf". It also supports the WindowMaker docker (-withdrawn option). It may be used in all other window managers as well. It runs well as an icon.
You may want to have a look in the CHANGES file for the history of updates.
Enhancements:
- The last release was missing a return type for one of the functions, basically making the whole update worthless.
- Now it is fixed properly.
- There are a couple of small changes here and there.
Download (0.047MB)
Added: 2007-04-14 License: GPL (GNU General Public License) Price:
923 downloads
iSAK 2.1.0
iSAK is a Internet Secure Access Kit. more>>
iSAK, Internet Secure Access Kit, is an integrated Open Source applications package that gives an efficient departmental access control of Internet services. Right now, many installations of iSAK have been made by Savoir-faire Linux.
Multiple versions of iSAK will be available shortly. Each version differs by its features and the way the Open Source applications are integrated together. Moreover, each installation of iSAK is different because it meets the enterprise requirements.
Enhancements:
- This release includes a new log processing engine for Squid.
- The engine is based on JasperReports to produce professional reports of your network Web activity.
- This version can categorize your Web traffic because of a complete integration of iSAKurlDB.
- Note that is it possible to use this log processing engine without using all iSAK features.
- You can plug it into your actual squid server.
<<lessMultiple versions of iSAK will be available shortly. Each version differs by its features and the way the Open Source applications are integrated together. Moreover, each installation of iSAK is different because it meets the enterprise requirements.
Enhancements:
- This release includes a new log processing engine for Squid.
- The engine is based on JasperReports to produce professional reports of your network Web activity.
- This version can categorize your Web traffic because of a complete integration of iSAKurlDB.
- Note that is it possible to use this log processing engine without using all iSAK features.
- You can plug it into your actual squid server.
Download (0.016MB)
Added: 2006-08-22 License: GPL (GNU General Public License) Price:
1160 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 meets 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