Main > Free Download Search >

Free serious magic software for linux

serious magic

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 313
Parted Magic 1.8

Parted Magic 1.8


Parted Magic is a ~30mb LiveCD/USB with its only purpose being partitioning hard drives. more>>
Parted Magic is a ~30mb LiveCD/USB with its only purpose being partitioning hard drives. Although GParted and Parted are the main programs, the CD/USB also offers programs like partimage, testdisk, fdisk, sfdisk, dd, etc...
Parted Magic is based on my work from the GParted LiveCD project and falls under the terms of the GPL.
Enhancements:
- We added dd_rhelp, sdparm, mbr, and xfburn for starters. Updated programs: linux-2.6.22, e2fsprogs-1.40.2, ntfs-3g-1.710, dd_rescue-1.13, ddrescue-1.5, leafpad-0.8.11, file-4.21, testdisk-6.7, mdadm-2.6.1, pciutils-2.2.5, syslinux-3.51, isomaster-1.0, hdparm-7.4, xfsprogs_2.8.21-1, busybox-1.5.1, and usbutils-0.72. All menus are bypassed now. After the syslinux menu, it boots to the desktop without any other interruptions. You can now create the LiveUSB from the LiveCD by using our new USB Operations program...
<<less
Download (35.6MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
536 downloads
Partition Logic 0.68

Partition Logic 0.68


Partition Logic is a standalone partitioning tool for PC-compatible computers. more>>
Partition Logic is a free hard disk partitioning and data management tool. It can create, delete, format, and move partitions and modify their attributes. It can copy entire hard disks from one to another.

Partition Logic is free software, based on the Visopsys operating system. It boots from a CD or floppy disk and runs as a standalone system, independent of your regular operating system.

Partition Logic is intended to become a free alternative to such commercial programs as Partition Magic, Drive Image, and Norton Ghost...

<<less
Download (1.2MB)
Added: 2007-05-11 License: GPL (GNU General Public License) Price:
913 downloads
File::MMagic 1.27

File::MMagic 1.27


File::MMagic is a Perl module to guess file type. more>>
File::MMagic is a Perl module to guess file type.

SYNOPSIS

use File::MMagic;
use FileHandle;

$mm = new File::MMagic; # use internal magic file
# $mm = File::MMagic->new(/etc/magic); # use external magic file
# $mm = File::MMagic->new(/usr/share/etc/magic); # if you use Debian
$res = $mm->checktype_filename("/somewhere/unknown/file");

$fh = new FileHandle "< /somewhere/unknown/file2";
$res = $mm->checktype_filehandle($fh);

$fh->read($data, 0x8564);
$res = $mm->checktype_contents($data);

<<less
Download (0.021MB)
Added: 2007-01-11 License: Perl Artistic License Price:
1017 downloads
sWM Icon Manager 0.4.5

sWM Icon Manager 0.4.5


sWM Icon Manager is a minimalistic icon manager for sWM. more>>
sWMicons is a really small utility to load a xpm-image into the root window and put some icons on top of it.
If the pixmap is smaller than the screen resolution, it will be repeated to fill the entire screen. If the option FILEWRITER is enabled, sWMicons will generate the files button1...button3 for you.
Usage
Put sWMicons into your sWMstartrc. sWMicons loads the file .sWM/sWMiconsrc. Edit this file to suit you needs.
Adding a background image:
Take you favourite background image, transform it to your X-servers resolution and color depth and save it as an xpm under for example:
".sWM/backgound.xpm" and add the following line to your sWMiconsrc:
background:tile:.sWM/background.xpm
Ive put a small example pixmap in this distribution - dont take it too serious. :-)
Enhancements:
- check for .swmiconsrc (fixed coredump)
<<less
Download (0.024MB)
Added: 2005-04-21 License: GPL (GNU General Public License) Price:
1650 downloads
CGI::Builder::Magic 1.31

CGI::Builder::Magic 1.31


CGI::Builder::Magic Perl module contains CGI::Builder and Template::Magic integration. more>>
CGI::Builder::Magic Perl module contains CGI::Builder and Template::Magic integration.

SYNOPSIS

# just include it in your build

use CGI::Builder
qw| CGI::Builder::Magic
|;

<<less
Download (0.015MB)
Added: 2007-08-01 License: Perl Artistic License Price:
816 downloads
Video::Info::Magic 0.993

Video::Info::Magic 0.993


Video::Info::Magic can resolve video filetype if possible. more>>
Video::Info::Magic can resolve video filetype if possible.

SYNOPSIS

use strict;
use Video::Info::Magic qw(:all);

my $type = divine(/path/to/video.mpg );

print $type; #MPEG system stream data (maybe)

## ... see methods below

EXPORT

various constants related to video file formats. All are prefixed with "VIDEO_".
divine(): Employs /usr/share/magic entries to determine a files type, as well as GUID and other info from Microsoft, mplayer, transcode...

<<less
Download (0.62MB)
Added: 2006-07-20 License: Perl Artistic License Price:
1191 downloads
Config::Magic 0.801

Config::Magic 0.801


Config::Magic is a Perl extension for reading all kinds of configuration files. more>>


SYNOPSIS

Example 1

use Config::Magic;
use Data::Dumper;

$input=q{
Section 1 {
[Section 4]
#Comment style #1
//Comment style #2
;Comment style #3
Monkey:1
Monkey=>2
Monkey:=3
< Section 2 >
Foo = Bar
Baz { Bip:1
Pants==5 }
< /Section >
< Tasty Cheese="3" / >
< Section 5 >
Foo=Bippity,boppity,boo
< /Section >
}
}
#Fastest way:
$config = new Config::Magic();
print Dumper($config->parse($input));

Example 2

use Config::Magic;
use Data::Dumper;
#Arguments with sorting $ordered_hash = 1; $config = new Config::Magic("input.conf",$ordered_hash); print Dumper($config->parse); $result = $config->get_result; print Dumper($result);

OUTPUT (from second example)

Section 1 => {
Section 4 => {
Monkey => [
1,
2,
3
]
},
Section => [
{
2 => {},
Foo => Bar,
Baz => {
Bip => 1,
Pants => 5
}
},
{
attribs=>5,
Foo => [
Bippity,
boppity,
boo
]
}
],
Tasty => {
Cheese => {
}
}

This module uses Parse::RecDescent to generate a parse tree for nearly any kind of configuration file. You can even combine files/configuration types. It understands XML, Apache-style, ini files, csv files, and pretty much everything else I could find. Just give it a file, and get a hash tree out. If it doesnt understand the file, or it isnt well formed (such as if a bracket is missing, etc), then you will get a partial result, or no result at all.

There is a single option that can be passed to this file which indicates that the resulting hash should be ordered rather than random. This is done using Tie::Hash::Indexed. You can also call "setordered" directly to change from using ordered to unordered hashes.

<<less
Download (0.020MB)
Added: 2007-04-12 License: Perl Artistic License Price:
624 downloads
LinuxMagic magic-smtpd 0.8.4-2

LinuxMagic magic-smtpd 0.8.4-2


LinuxMagic magic-smtpd is a drop in replacement for Dan Bernsteins qmail-smtpd. more>>
LinuxMagic magic-smtpd is a drop in replacement for Dan Bernsteins qmail-smtpd, and was originally designed to be part of the LinuxMagic Magic Mail Server.
This opensource version has been released to allow others to benifit from its anti-spam components, and valid user checking to reduce server loads, and spam volumes.
It is designed to support stock qmail installations, qmail/vpopmail installations, as well as having database support.
Designed for ISP service, this will work for all mail servers large and small. Comments are welcome. Support for other mailers expected in the future.
Enhancements:
- A compilation bug for Red Hat/Mandrake, an SMTP AUTH problem with ext_prog, and a problem loading directories with a newline have been fixed.
<<less
Download (0.47MB)
Added: 2006-01-10 License: Freely Distributable Price:
1387 downloads
Template::Magic 1.39

Template::Magic 1.39


Template::Magic is a Perl module for magic merger of runtime values with templates. more>>
Template::Magic is a Perl module for magic merger of runtime values with templates.

SYNOPSIS

Just add these 2 magic lines to your code...

use Template::Magic;
Template::Magic->new->print( /path/to/template );

to have all your variable and subroutines merged with the template file, or set one or more constructor array to customize the output generation as you need:

use Template::Magic qw( -compile );

$tm = new Template::Magic
paths => [ qw(/any/path /any/other/path) ] ,
markers => [ qw( < / > ) ] ,
lookups => [ %my_hash, $my_obj, main ] ,
zone_handlers => [ &my_zone_handler, _EVAL_ ] ,
value_handlers => [ DEFAULT, &my_value_handler ] ,
text_handlers => sub {print lc $_[1]} ,
output_handlers => sub {print uc $_[1]} ,
post_handlers => &my_post_handler ,
options => no_cache ;

$tm->nprint( template => /path/to/template
lookups => %my_special_hash );

<<less
Download (0.045MB)
Added: 2007-07-11 License: Perl Artistic License Price:
839 downloads
Bundle::Application::Magic 1.21

Bundle::Application::Magic 1.21


Bundle::Application::Magic is a a bundle to install CGI::Application::Magic plus all related prerequisites. more>>
Bundle::Application::Magic is a a bundle to install CGI::Application::Magic plus all related prerequisites.

SYNOPSIS

perl -MCPAN -e install Bundle::Application::Magic

CONTENTS

HTML::Tagset - used by HTML::Parser
HTML::Parser - used by HTML::FillInForm and HTML::TableTiler
HTML::TableTiler - used by HTML::MagicTemplate
HTML::FillInForm - used by HTML::MagicTemplate
Class::constr - used by Template::Magic::Zone
Class::props - used by Template::Magic::Zone
Object::props - used by Template::Magic::Zone
Object::groups - used by CGI::Application::Magic
Template::Magic - the Template::Magic distribution
Data::FormValidator - used by CGI::Application::CheckRM
CGI::Application::Plus - used by CGI::Applicatio::Magic

This bundle gathers together the CGI::Application::Magic and all the related prerequisites.
Note: A Bundle is a module that simply defines a collection of other modules. It is used by the CPAN module to automate the fetching, building and installing of modules from the CPAN ftp archive sites.

<<less
Download (0.034MB)
Added: 2006-10-14 License: Perl Artistic License Price:
1106 downloads
IP Tables network magic SysRq 0.5

IP Tables network magic SysRq 0.5


IP Tables network magic SysRq is a new iptables target that allows you to do the same as the magic sysrq key on a keyboard does. more>>
IP Tables network magic SysRq is a new iptables target that allows you to do the same as the magic sysrq key on a keyboard does, but over the network.

Why to use the remote sysrq?

Sometimes a remote server hangs and only responds to icmp echo request (ping). Every administrator of such machine is very unhappy because (s)he must go there and press the reset button. It takes a long time and its inconvenient. So here is a solution. Use the Network Magic SysRq and you will be able to do more than just pressing a reset button. You can remotely sync disks, remount them read-only, then do a reboot. And everything comfortably and only in a few seconds.

Is it secure?

That depends. Let me explain: You can restrict who can do this by setting the iptables firewall. But unfortunately, for simplicity, the Network Magic SysRq is based on a single packet request. This packet is encrypted and password protected, but if somebody can sniff it (s)he will be able to repeat (but not to change) the query (so-called replay attack). The query is also protected by a timestamp. When the packet is generated, it is stamped by current date and time. Then on the server side that stamp is compared with the current time of the server and if it is within the tolerance the request is accepted. Together with some other information, the timestamp is protected by SHA1 hash. This means that the potential attacker has a limited time to repeat the sniffed packet. If anybody requires a better security than this, some secure encrypted tunnel can be used. (not depending on userspace, of course!

How to install it?

Just type make.

When everything is compiled type make install as root and after that run depmod -a. Now you can load the kernel module by the command modprobe ipt_SYSRQ.

You would also like to configure the server password and the tolerance. This can be set when installing the module into a kernel, by specifying the module parameters passwd for password and tolerance for tolerance in seconds. The default values are passwd="" and tolerance=43200.

Example:

modprobe ipt_SYSRQ passwd="my_very_secret_password" tolerance=3600

Module options can also be specified in file /etc/modules.conf.

Example:

options ipt_SYSRQ passwd="my_very_secret_password" tolerance=3600

What to do on a server?

After the module is loaded you are able to deploy it using the iptables command.

Some examples of usage:

iptables -I INPUT -p udp --dport 9 -j SYSRQ

or

iptables -I INPUT -i eth1 -s 192.168.1.2 -p udp --dport 9 -j SYSRQ

Note that UDP port 9 is used. This is the default port for send_sysrq program, which shouldnt do any harm, as it defaults to discard service.

What to do on the remote machine?

Copy the executable binary send_sysrq to the remote (client) machine. Alternatively, you can compile ipt_sysrq there yourselves. After uncompressing the source package, you just need to do a make send_sysrq.

Now you can use the client program send_sysrq to send the sysrq request.

<<less
Download (0.025MB)
Added: 2006-11-13 License: GPL (GNU General Public License) Price:
1082 downloads
SnapLogic 0.0085

SnapLogic 0.0085


SnapLogic project is an Open Source solution that transforms data into services using the standard technologies of the Web. more>>
SnapLogic project is an Open Source solution that transforms data into services using the standard technologies of the Web.

The problem of getting data from one place to another is universal. The Internet has solved that problem for documents, but integrating the underlying data remains a serious challenge.

SnapLogic builds integration and transformation services into the server infrastructure so that data contained in databases and applications can be integrated just like Web servers are added to the Internet.

SnapLogic takes the idea of an Enterprise data service and extends it to the Web.

<<less
Download (4.7MB)
Added: 2007-05-29 License: GPL (GNU General Public License) Price:
878 downloads
CGI::Application::Magic 1.21

CGI::Application::Magic 1.21


CGI::Application::Magic is a template based framework for CGI applications. more>>
CGI::Application::Magic is a template based framework for CGI applications.

SYNOPSIS

package WebApp ;
use base CGI::Application::Magic ;

# optional runmethod
sub RM_myRunMmode
{
... do_something_useful ...
... no_need_to_set_page ...
... returned_value_will_be_ignored ...
}

# package where Template::Magic will looks up
package WebApp::Lookups ;

# this value will be substituted to each
# app_name label in each template that include it
our $app_name = WebApp 1.0 ;

# same for each Time label
sub Time { scalar localtime }

# and same for each ENV_table block
sub ENV_table
{
my ($self, # $self is your WebApp object
$zone) = @_ ; # $zone is the Template::Magic::Zone object
my @table ;
while (my @line = each %ENV)
{
push @table, @line
}
@table ;
}

<<less
Download (0.034MB)
Added: 2007-08-01 License: Perl Artistic License Price:
818 downloads
Magic Mounter 0.9

Magic Mounter 0.9


Magic Mounter is a user-space auto-mounter. more>>
Magic Mounter is a user-space auto-mounter.

mmounter tries to mimic the behaviour of MacOS with regards to automatic monitoring and mounting of the volumes in your system (CDs, ZIP disks, floppies, HDs) using their volume name as the mount point.

It will optionally eject devices and let users mount/umount them.

Currently mmounter supports ext2, ext3, iso9660 (CD), HFS, and VFAT.

This tool is user-space only (doesnt require any kernel patching) and should be fairly portable.
<<less
Download (0.023MB)
Added: 2006-09-28 License: GPL (GNU General Public License) Price:
1125 downloads
Velosurf 2.1

Velosurf 2.1


Velosurf is a thin but efficient database mapping layer meant to be used with Jakarta Velocity. more>>
Velosurf is a thin but efficient database mapping layer meant to be used with Jakarta Velocity.
Velosurfs goal is to generate a set of context variables that automatically map database tables and relationships without the need for any recompilation.
Enhancements:
- This is a corrective release that fixes a serious issue in $entity.insert along with a few minor bugs.
- It has some source refactoring and some new test cases.
<<less
Download (0.65MB)
Added: 2006-11-18 License: The Apache License Price:
1072 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5