Logical Volume Manager HOWTO
Monday, October 31st, 2005Just a short intro to LVMs: Logical Volume Manager HOWTO
Just a short intro to LVMs: Logical Volume Manager HOWTO
Probably the most comprehensive and the best library to manipulate (also write) EXIF tags in images: Image::ExifTool
Another link about firensic tools: Forensics – Tools. Might be useful one day.
A tutorial on recovering files on reiserFS – ReiserFS undelete/data recovery HOWTO : Sounds From The Dungeon.
Foremost : a data forensic tool, can be used for recovery of deleted stuff as well (a.k.a data carving).
All you wanted to know about views and materialized views in databases: DBAzine.com: SQL Views Transformed
For quite some time now I’ve been thinking of correlating tracklog GPS data from my GPS with the protos I’ve taken based on time. It looks such a thing alrady exists here and this blog contains a lot of good pointers.
I will try these out, but I still want something more automated… maybe I will write it one day…
As always with perl, there’s a couple of options
Automatically using CPAN perl -MCPAN -e shell install Perl::Module::You::Want
Automatically using g-cpan in Gentoo g-cpan -i Perl::Module::You::Want
Semi automatically in Debian
By hand, described here.
Diego found a nice tool: BrT » Controlling two machines with x2vnc
Trying to automate something I had to run a program with a configuration file modified for each run. The easy way to do this is to create a template file and generate the correct configuration file with variable substitution for each run.
This task could be done in a number of ways (sed, perl, shell), to name a few, but as Diego pointed out there is already a tool for this m4. It’s a bit archaic and has odd syntax (think strange quotes or strangely named built-in macros), but it’s ideal for my simple task.
At the end I run it like this:
m4 -Dparam1=value1 -Dparam2=value2 <infile> > <outfile>
As simple as that. Thanks Diego! BTW: some pointers to M4: manual and linux journal article.