This port provides a utility for controlling USB OLED display found
on some ASUS laptops such as G-series models.
Originally it was written by Christian Lamparter <chunkeey@web.de>
for Linux and the early version is still available from here:
https://launchpad.net/asusoled
Now it is almost rewrite of the code with a lot of new features and
improvements by Jung-uk Kim <jkim@FreeBSD.org>.
This new design of syslog allows for an easy implementation of input and output
modules. The modules that mantain compatibility with its precursor (Secure
Syslog) are included in the standard distribution along with four modules:
om_peo (an implementation of PEO-1 and L-PEO, two algorithmic protocols for
integrity checking), om_mysql and om_pgsql (modules that sends output to a
MySQL and PostgreSQL database, respectively) and om_regex (a module that allows
output redirection using regular expressions).
From aaareadme.txt:
Say, what is this?
ODS2 is a program to read VMS disk volumes written in VMS
ODS2 format.
What can it do?
Basically ODS2 provides cut down DIRECTORY, COPY and
SEARCH commands for VMS volumes on non-VMS systems. These
can be used to find out what is on a VMS volume, and copy
files onto the local file sytem.
See aaareadme.txt and aaareadme.too for more information.
This is an object oriented perl interface to the FreeBSD jail subsystem.
Here's a replica of the 'jls' utility in just a few lines of perl:
use BSD::Jail::Object 'jids';
print " JID IP Address Hostname Path\n";
printf "%6d %-15.15s %-29.29s %.74s\n",
$_->jid, $_->ip, $_->hostname, $_->path foreach jids( instantiate => 1 );
And here's 'jexec':
my $j = BSD::Jail::Object->new( $ARGV[0] ) or die $@;
$j->attach && chdir('/') && exec $ARGV[1] or exit;
For more info please use 'perldoc' on the module.
This module provides a way to obtain filesystem disk space information.
This is a Unix only distribution. If you want to gather this information
for Unix and Windows, use Filesys::DfPortable. The only major benefit of
using Filesys::Df over Filesys::DfPortable, is that Filesys::Df supports
the use of open filehandles as arguments.
The module should work with all flavors of Unix, including Mac OS X
(Darwin, Tiger, etc), and Cygwin.
This module sends syslog messages over a network socket. It works like
Sys::Syslog in setlogsock's 'udp', 'tcp', or 'unix' modes, but without
the significant CPU overhead of that module when used for high-volume
logging. Use of this specialized module is only recommended if 1) you
must use network syslog as a messaging transport but 2) need to
minimize the time spent in the logger.
PEAR::File_Fstab is an easy-to-use package which can read & write UNIX fstab
files. It presents a pleasant object-oriented interface to the fstab.
Features:
* Supports blockdev, label, and UUID specification of mount device.
* Extendable to parse non-standard fstab formats by defining a new Entry
class for that format.
* Easily examine and set mount options for an entry.
* Stable, functional interface.
* Fully documented with PHPDoc.
Zeitgeist is a service which logs the users's activities and events
(files opened, websites visites, conversations hold with other people,
etc.) and makes relevant information available to other applications.
It is able to establish relationships between items based on
similarity and usage patterns.
libQZeitgeist is a wrapper library around the Zeitgeist D-Bus API for
Qt, and is brought to you by Collabora in cooperation with the
Zeitgeist team and KDE.
Logstalgia is a website traffic visualization that replays or streams web-server
access logs as a pong-like battle between the web server and an never ending
torrent of requests.
Requests appear as colored balls which travel across the screen to arrive at the
requested location. Successful requests are hit by the paddle while unsuccessful
ones (eg. 404 - File Not Found) are missed and pass through.
rdup is an utility inspired by rsync and the Plan9 way of doing backups.
rdup itself does not backup anything; it only prints a list of the names
of files that have changed since the last backup. It also handles files
that are removed, allowing for correct incremental backups.
An example script named rdup-simple is included to show how to implement
a simple snapshot-style backup strategy.