directly from
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1253
Debian From Scratch 0.99.0
Debian From Scratch is a system to build and use full Debian bootable CD images. more>>
Debian From Scratch is really two systems:
1) a bootable CD for repairing Linux systems or installing Debian;
2) the program that generates the CDs that are used for #1.
You can expect the following from your DFS CD:
* Bootable CD featuring the GNU Grub bootloader. Can be used to boot hard disk partitions even if no hard disk bootloader is present.
* Kernel and userland support for all major filesystems, including ext2, ext3, JFS, XFS, ReiserFS, FAT, VFAT, NTFS, ISO9660, CramFS, tmpfs, and more. Userland support for Reiser4.
* Kernel and userland support for different disk layout schemes including standard partitioning, Logical Volume Manager 2 (LVM2), software RAID, etc.
* Full recovery tools runnable directly from CD, including:
- Filesystem utilities for all mazjor filesystems, including undeletion tools for ext2
- Partition editors (fdisk, cfdisk, parted)
- Text editors (nano, joe, vim, emacs)
- C, Perl, Python, and OCaml development environments. Enough to configure and compile a new kernel and build basic .debs. Kernel 2.6.6 sources included on CD.
- Full networking support, including PPP and various Ethernet cards and DHCP
- Network tools including FTP clients, Web client, ssh, telnet, NFS, smbclient, tcpdump, netcat, etc.
- Backup restoration tools such as rdiff-backup, dump/restore, tar, cpio, amanda client, afbackup client, etc.
- CD and DVD burning tools
- Basic printing tools (cat for local printers, rlpr for remote ones, and netcat for Jetdirect, plus unix2dos for text files and Ghostscript for emergency conversions)
- Mail reader (mutt)
* Base systems for multiple versions of Debian installable directly from CD, including: woody (i386), sarge (i386), sid (i386), and sid (amd64). Alpha CD can install woody, sarge, or sid for Alpha.
* amd64 support: Enough to install or fix an AMD64 system. Includes 64-bit kernel with 32-bit emulation (to run the 32-bit userland on the CD). Also includes 64-bit package for bootstrapping a new AMD64 support. In short, you can boot a 64-bit kernel and be treated as a first-class citizen in almost all respects.
* i386 or x86_64 (amd64) kernels bootable directly from initial boot menu.
* DFS generation scripts support custom kernels, packages, mirrors, compressed ISO images, and a high degree of flexibility.
<<less1) a bootable CD for repairing Linux systems or installing Debian;
2) the program that generates the CDs that are used for #1.
You can expect the following from your DFS CD:
* Bootable CD featuring the GNU Grub bootloader. Can be used to boot hard disk partitions even if no hard disk bootloader is present.
* Kernel and userland support for all major filesystems, including ext2, ext3, JFS, XFS, ReiserFS, FAT, VFAT, NTFS, ISO9660, CramFS, tmpfs, and more. Userland support for Reiser4.
* Kernel and userland support for different disk layout schemes including standard partitioning, Logical Volume Manager 2 (LVM2), software RAID, etc.
* Full recovery tools runnable directly from CD, including:
- Filesystem utilities for all mazjor filesystems, including undeletion tools for ext2
- Partition editors (fdisk, cfdisk, parted)
- Text editors (nano, joe, vim, emacs)
- C, Perl, Python, and OCaml development environments. Enough to configure and compile a new kernel and build basic .debs. Kernel 2.6.6 sources included on CD.
- Full networking support, including PPP and various Ethernet cards and DHCP
- Network tools including FTP clients, Web client, ssh, telnet, NFS, smbclient, tcpdump, netcat, etc.
- Backup restoration tools such as rdiff-backup, dump/restore, tar, cpio, amanda client, afbackup client, etc.
- CD and DVD burning tools
- Basic printing tools (cat for local printers, rlpr for remote ones, and netcat for Jetdirect, plus unix2dos for text files and Ghostscript for emergency conversions)
- Mail reader (mutt)
* Base systems for multiple versions of Debian installable directly from CD, including: woody (i386), sarge (i386), sid (i386), and sid (amd64). Alpha CD can install woody, sarge, or sid for Alpha.
* amd64 support: Enough to install or fix an AMD64 system. Includes 64-bit kernel with 32-bit emulation (to run the 32-bit userland on the CD). Also includes 64-bit package for bootstrapping a new AMD64 support. In short, you can boot a 64-bit kernel and be treated as a first-class citizen in almost all respects.
* i386 or x86_64 (amd64) kernels bootable directly from initial boot menu.
* DFS generation scripts support custom kernels, packages, mirrors, compressed ISO images, and a high degree of flexibility.
Download (614MB)
Added: 2006-04-21 License: GPL (GNU General Public License) Price:
1294 downloads
Inline::Struct 0.06
Inline::Struct is a Perl module that manipulate C structures directly from Perl. more>>
Inline::Struct is a Perl module that manipulate C structures directly from Perl.
SYNOPSIS
use Inline C => Config => Structs => [Foo];
my $obj = Inline::Struct::Foo->new;
$obj->num(10);
$obj->str("Hello");
myfunc($obj);
__END__
__C__
struct Foo {
int num;
char *str;
};
void myfunc(Foo *f) {
printf("myfunc: num=%i, str=%sn", f->num, f->str);
}
This complete program prints:
myfunc: num=10, str=Hello
Inline::Struct is not a new language. Its a language extension designed to be used by Inline::C. It parses struct definitions and creates typemaps and XS code which bind each struct into a Perl class. This code is passed to Inline::C, which compiles it in the normal way.
NOTE: Inline::Struct parses only C-style structs. It doesnt know about any C++ extensions to structs like scopes, constructors or methods. If you want such functionality you should use Inline::CPP to parse your structs.
<<lessSYNOPSIS
use Inline C => Config => Structs => [Foo];
my $obj = Inline::Struct::Foo->new;
$obj->num(10);
$obj->str("Hello");
myfunc($obj);
__END__
__C__
struct Foo {
int num;
char *str;
};
void myfunc(Foo *f) {
printf("myfunc: num=%i, str=%sn", f->num, f->str);
}
This complete program prints:
myfunc: num=10, str=Hello
Inline::Struct is not a new language. Its a language extension designed to be used by Inline::C. It parses struct definitions and creates typemaps and XS code which bind each struct into a Perl class. This code is passed to Inline::C, which compiles it in the normal way.
NOTE: Inline::Struct parses only C-style structs. It doesnt know about any C++ extensions to structs like scopes, constructors or methods. If you want such functionality you should use Inline::CPP to parse your structs.
Download (0.008MB)
Added: 2006-07-06 License: Perl Artistic License Price:
1205 downloads
Automated Linux From Scratch 2.2
Automated Linux From Scratch creates the generic framework for an extendable system builder and package installer. more>>
Automated Linux From Scratch (ALFS) is a project that creates the generic framework for an extendable system builder and package installer.
Why would I want to use ALFS?
After having gone through the LFS and BLFS books more than 2 or 3 times, you will quickly appreciate the ability to automate the task of compiling the software you want for your systems.
What can I do with ALFS?
The goal of ALFS is to automate the process of creating an LFS system. It seeks to make the process of building LFS easier and more efficient while still providing flexibility by granting the user total control and insight into the compilation and management of his LFS build.
How is ALFS implemented?
nALFS
The first ALFS implementation was nALFS by Neven Has. nALFS is a small program written in C. It first parses an XML profile that contains information concerning the LFS build process into a series of internal commands. It can then execute these at your discretion, thus automating the compilation of LFS.
jhalfs
Currently, the official implementation is jhalfs. Originally created by Jeremy Huntwork, but since developed and maintained by Manuel Canales Esparcia and George Boudreau, jhalfs has become a light-weight, practical method of automating an LFS build. jhalfs is a Bash shell script that makes use of Subversion and xsltproc to first download the XML sources of the Linux From Scratch book and then extract any necessary commands, placing them into executable shell scripts. If you do not already have the necessary source packages in place on your system jhalfs can fetch them. Finally, jhalfs generates a Makefile which will control the execution of the shell scripts, allowing for recovery if the build should encounter an error. Since jhalfs extracts its commands to run directly from the LFS book, there are no profiles to edit or maintain.
Note: The 2.2 version of jhalfs has been released. A tarball can been downloaded from http://www.linuxfromscratch.org/alfs/downloads/jhalfs/stable/.
alfs
There are many in-depth features that have been requested for future ALFS implementations. Because of this, development has been slated for an entirely new build tool which will be called alfs. To see a list of features that will appear in alfs, please read our Software Requirements Specification. If you wish to help develop this new tool, please subscribe to the alfs-discuss mailing list and leave a note there explaining your desire to help.
<<lessWhy would I want to use ALFS?
After having gone through the LFS and BLFS books more than 2 or 3 times, you will quickly appreciate the ability to automate the task of compiling the software you want for your systems.
What can I do with ALFS?
The goal of ALFS is to automate the process of creating an LFS system. It seeks to make the process of building LFS easier and more efficient while still providing flexibility by granting the user total control and insight into the compilation and management of his LFS build.
How is ALFS implemented?
nALFS
The first ALFS implementation was nALFS by Neven Has. nALFS is a small program written in C. It first parses an XML profile that contains information concerning the LFS build process into a series of internal commands. It can then execute these at your discretion, thus automating the compilation of LFS.
jhalfs
Currently, the official implementation is jhalfs. Originally created by Jeremy Huntwork, but since developed and maintained by Manuel Canales Esparcia and George Boudreau, jhalfs has become a light-weight, practical method of automating an LFS build. jhalfs is a Bash shell script that makes use of Subversion and xsltproc to first download the XML sources of the Linux From Scratch book and then extract any necessary commands, placing them into executable shell scripts. If you do not already have the necessary source packages in place on your system jhalfs can fetch them. Finally, jhalfs generates a Makefile which will control the execution of the shell scripts, allowing for recovery if the build should encounter an error. Since jhalfs extracts its commands to run directly from the LFS book, there are no profiles to edit or maintain.
Note: The 2.2 version of jhalfs has been released. A tarball can been downloaded from http://www.linuxfromscratch.org/alfs/downloads/jhalfs/stable/.
alfs
There are many in-depth features that have been requested for future ALFS implementations. Because of this, development has been slated for an entirely new build tool which will be called alfs. To see a list of features that will appear in alfs, please read our Software Requirements Specification. If you wish to help develop this new tool, please subscribe to the alfs-discuss mailing list and leave a note there explaining your desire to help.
Download (0.15MB)
Added: 2007-07-02 License: GPL (GNU General Public License) Price:
849 downloads
Dreamlinux 2.2
Dreamlinux is a modern and modular Linux system that can be run directly from the CD. more>>
Dreamlinux distribution is a modern and modular Linux system that can be run directly from the CD and optionally be easily installed onto your HD.
Dreamlinux comes with a selection of the best applications designed to meet mostly of your daily needs.
Dreamlinux is based on Debian and Morphix, which means it takes advantages of their best features and adds its own modern development tools.
Being a modular system Dreamlinux allows you to add new modules comprising your preferred applications and build a new Distro that meet your requirements by means of its revolutionary MKDistro tool.
Enhancements:
- The final version of Dreamlinux 2.2 Multimedia Edition has been released. Having many improvements compared with the previous version, Dreamlinux 2.2 Multimedia Edition brings countless new features. The kernel is 2.6.18, and the distro uses Debian testing repositories. A greater number of applications for multimedia have been added, allowing to open and manipulate many different types of audio and video files. Beyond the many updates, other refinements have also been incorporated: upgrade assistant, new control panel, and the Easy-Install application that allows the user to install non-Debian programs like Google Earth, Picasa, Opera, etc.
<<lessDreamlinux comes with a selection of the best applications designed to meet mostly of your daily needs.
Dreamlinux is based on Debian and Morphix, which means it takes advantages of their best features and adds its own modern development tools.
Being a modular system Dreamlinux allows you to add new modules comprising your preferred applications and build a new Distro that meet your requirements by means of its revolutionary MKDistro tool.
Enhancements:
- The final version of Dreamlinux 2.2 Multimedia Edition has been released. Having many improvements compared with the previous version, Dreamlinux 2.2 Multimedia Edition brings countless new features. The kernel is 2.6.18, and the distro uses Debian testing repositories. A greater number of applications for multimedia have been added, allowing to open and manipulate many different types of audio and video files. Beyond the many updates, other refinements have also been incorporated: upgrade assistant, new control panel, and the Easy-Install application that allows the user to install non-Debian programs like Google Earth, Picasa, Opera, etc.
Download (701MB)
Added: 2007-01-05 License: GPL (GNU General Public License) Price:
1034 downloads
PicoStreamer 2.2
PicoStreamer is a complete server for live audio/video streaming. more>>
PicoStreamer is a complete server for live audio/video streaming. It can stream MP3, AAC, and video live using Flash FLV. PicoStreamer does not require any Flash server. It only needs a Web server with Perl and PHP. It requires neither expensive dedicated servers nor compilation on the target machine.
A source client (for Win32) is included. A management/playing framework written in PHP makes PicoStreamer simple to use. The PicoIcy component acts as a local shoutcast server emulator, so you can use your preferred shoutcast source client to stream or stream Flash format directly from the Web.
Enhancements:
- Added live flash audio/video streaming support.
- Added Flash encoder.
- Added Flash player also for mp3.
- Added Brasilian (PT) language.
- Added dynamic playlist chooser.
- Added content-length managing.
- PicoIcy now in tray-bar.
- Fixed list blocking on weird chars.
- Removed php ctype_digits dependence.
- Removed perl html::entitites dependence.
- Fixed many minor bugs.
<<lessA source client (for Win32) is included. A management/playing framework written in PHP makes PicoStreamer simple to use. The PicoIcy component acts as a local shoutcast server emulator, so you can use your preferred shoutcast source client to stream or stream Flash format directly from the Web.
Enhancements:
- Added live flash audio/video streaming support.
- Added Flash encoder.
- Added Flash player also for mp3.
- Added Brasilian (PT) language.
- Added dynamic playlist chooser.
- Added content-length managing.
- PicoIcy now in tray-bar.
- Fixed list blocking on weird chars.
- Removed php ctype_digits dependence.
- Removed perl html::entitites dependence.
- Fixed many minor bugs.
Download (0.33MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1135 downloads
Tecnoupman 0.1.1a
Tecnoupman project is a manager/monitor for the UPS Tecnoware Adv. more>>
Tecnoupman project is a manager/monitor for the UPS Tecnoware Adv. Tecnoware (FIRENZE), only supplies a payment proprietary cable and software.
So, even if the UPS is equipped of RS-232 interface its not possible, without spent a lot of money, to manage the UPS directly from the PC.
Ive tried several times to contact the Tecnoware (firenze), but ive obtained zero support and zero technical infos about the UPSes and the cables pinouts. The cable, in fact, is a non standard one.
USAGE:
After that youve compiled the sources, and connected the UPS to Serial Port, youre ready to use the manager/monitor. Tupsmand is the core of the system. It can monitor and manage the power and the shutdown of the server/ups.
Youve to startup the daemon using a command like:
revolution#tupsmand /etc/tupsmand.conf
after startup, tupsmandll daemonize monitoring all the parameters from the
UPS. All paramters for the startup, must be specified in the config file:
tupsman.conf, like this format:
DEBUGL=1<<less
So, even if the UPS is equipped of RS-232 interface its not possible, without spent a lot of money, to manage the UPS directly from the PC.
Ive tried several times to contact the Tecnoware (firenze), but ive obtained zero support and zero technical infos about the UPSes and the cables pinouts. The cable, in fact, is a non standard one.
USAGE:
After that youve compiled the sources, and connected the UPS to Serial Port, youre ready to use the manager/monitor. Tupsmand is the core of the system. It can monitor and manage the power and the shutdown of the server/ups.
Youve to startup the daemon using a command like:
revolution#tupsmand /etc/tupsmand.conf
after startup, tupsmandll daemonize monitoring all the parameters from the
UPS. All paramters for the startup, must be specified in the config file:
tupsman.conf, like this format:
DEBUGL=1<<less
Download (0.028MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
976 downloads
Privoxy Toggler 0.1
Privoxy Toggler enables you to toggle Privoxy more easily. more>>
Privoxy Toggler enables you to toggle Privoxy more easily.
Privoxy toggler. Changes to Privoxy version 3.0.3 made toggling Privoxy directly from a bookmarklet impossible.
This extension works around this security feature and makes it less intrusive to toggle Privoxy.
<<lessPrivoxy toggler. Changes to Privoxy version 3.0.3 made toggling Privoxy directly from a bookmarklet impossible.
This extension works around this security feature and makes it less intrusive to toggle Privoxy.
Download (0.014MB)
Added: 2007-03-30 License: MPL (Mozilla Public License) Price:
942 downloads
KConfigEditor 0.9.6
KConfigEditor is an application which lets power users and administrators directly edit all aspects of their desktops. more>>
KConfigEditor is an application which lets power users and administrators directly edit all aspects of their desktops.
<<less Download (0.66MB)
Added: 2005-07-13 License: GPL (GNU General Public License) Price:
1564 downloads
Ezail 0.3.2
Ezail provides an application for securely transferring files of any size. more>>
Ezail provides an application for securely transferring files of any size.
ezail is an application for securely transferring files of any size through the Internet.
Files are sent directly from senders to recipients without servers, with no limits on attachment sizes, no mailbox quotas, and no bounced messages.
Unlike email, the identity of senders and recipients is authenticated by signed certificates. Files sent are encrypted end-to-end with the Triple-DES algorithm.
<<lessezail is an application for securely transferring files of any size through the Internet.
Files are sent directly from senders to recipients without servers, with no limits on attachment sizes, no mailbox quotas, and no bounced messages.
Unlike email, the identity of senders and recipients is authenticated by signed certificates. Files sent are encrypted end-to-end with the Triple-DES algorithm.
Download (0.58MB)
Added: 2007-04-27 License: Freeware Price:
910 downloads
UPC LiveCD 20051111
UPC LiveCD is a UPC-enabled Linux operating system on a CD-ROM disc. more>>
UPC LiveCD is a UPC-enabled Linux operating system on a CD-ROM disc. It runs directly from the CD without installing. I created it to demonstrate UPC programming on the SC2005 conference.
With UPC LiveCD, you can try out UPC programming without the need of a multiprocessor environment. UPC LiveCD boots your laptop or workstation from a CD-ROM and runs in the memory only.
It does not have any side effects to the installed system on your computer. UPC LiveCD is based on the SLAX project. The current release contains demo versions of MuPC V1.1.2 and GCC UPC V3.4.4.1.
How to use:
- Burn the image on a blank CD.
- Read the README on the CD.
- Boot your computer from the CD. You may need to modify your BIOS settings to set CD-ROM as the first boot device.
- The system loads and starts KDE automatically. MuPC and GCC UPC are ready to use.
- When you are done, logout. The CD automatically ejects.
<<lessWith UPC LiveCD, you can try out UPC programming without the need of a multiprocessor environment. UPC LiveCD boots your laptop or workstation from a CD-ROM and runs in the memory only.
It does not have any side effects to the installed system on your computer. UPC LiveCD is based on the SLAX project. The current release contains demo versions of MuPC V1.1.2 and GCC UPC V3.4.4.1.
How to use:
- Burn the image on a blank CD.
- Read the README on the CD.
- Boot your computer from the CD. You may need to modify your BIOS settings to set CD-ROM as the first boot device.
- The system loads and starts KDE automatically. MuPC and GCC UPC are ready to use.
- When you are done, logout. The CD automatically ejects.
Download (241.6MB)
Added: 2007-05-09 License: GPL (GNU General Public License) Price:
899 downloads
Ip6wall 0.6
Ip6wall is a firewall script for ip6tables. more>>
Ip6wall is a firewall script for ip6tables.
It features support for IPV6-mapped LANs, forwarding, port forwarding, configurable outgoing filtering, configurable public service access, access control lists, and more.
This is a bash script for ip6tables, it works fine with the 2.4.x series of the linux kernel,
im testing it on a 2.6.0test6 linux kernel and, for now, it works fine. The idea of this script is taken from gShield, directly from the source.
Main features:
- support for an ipv6 mapped lan, forwading, port-forwarding, configurable outgoing filtering,
- configurable public service access, access control lists, and more.
Enhancements:
- Added information of copyright
- Fixed bugs of "#" in conf/ircservers
- Changed if [ -n var ]; into if [ $var != ""];
- Minor code cleanup
- version 0.5.9 Released to freshmeat.net
- Added docs directory even if some files
- werent complete, like readme and usage
<<lessIt features support for IPV6-mapped LANs, forwarding, port forwarding, configurable outgoing filtering, configurable public service access, access control lists, and more.
This is a bash script for ip6tables, it works fine with the 2.4.x series of the linux kernel,
im testing it on a 2.6.0test6 linux kernel and, for now, it works fine. The idea of this script is taken from gShield, directly from the source.
Main features:
- support for an ipv6 mapped lan, forwading, port-forwarding, configurable outgoing filtering,
- configurable public service access, access control lists, and more.
Enhancements:
- Added information of copyright
- Fixed bugs of "#" in conf/ircservers
- Changed if [ -n var ]; into if [ $var != ""];
- Minor code cleanup
- version 0.5.9 Released to freshmeat.net
- Added docs directory even if some files
- werent complete, like readme and usage
Download (0.015MB)
Added: 2006-07-11 License: GPL (GNU General Public License) Price:
1201 downloads
KSubtile 1.2
KSubtile is an editor for the KDE environment to edit, make and save subtitles in the SRT subtitle format. more>>
This is an editor for the KDE environment to edit, make and save subtitles in the SRT subtitle format.
It is made by Tom Deblauwe and it is completely GPL! Click below to download or to view some screenshots!
Enhancements:
- Fix a bug that caused a crash when trying to open a file directly from the command line or file manager (we tried to call setCodec with an empty codec)
- Ported some "Qt3-deprecated" things to Qt3 (QList -> QPtrList)
- Updated the .desktop file
<<lessIt is made by Tom Deblauwe and it is completely GPL! Click below to download or to view some screenshots!
Enhancements:
- Fix a bug that caused a crash when trying to open a file directly from the command line or file manager (we tried to call setCodec with an empty codec)
- Ported some "Qt3-deprecated" things to Qt3 (QList -> QPtrList)
- Updated the .desktop file
Download (0.75MB)
Added: 2005-11-10 License: GPL (GNU General Public License) Price:
1450 downloads
BSDLive 5.4.1
BSDLive is a live filesystem CD based on FreeBSD that can fit on a business card CD-ROM. more>>
BSDLive is a live filesystem CD based on FreeBSD that can fit on a business card CD-ROM.
This means that its a FreeBSD operating system that will work directly from a CD, without touching your hard drive.
<<lessThis means that its a FreeBSD operating system that will work directly from a CD, without touching your hard drive.
Download (50MB)
Added: 2005-09-05 License: BSD License Price:
1510 downloads
rubyzip 0.9.1
rubyzip is a Ruby module for reading and writing zip files. more>>
rubyzip is a Ruby module for reading and writing zip files.
Installation:
If you have rubygems you can install rubyzip directly from the gem repository
gem install rubyzip
Otherwise obtain the source (see below) and run
ruby install.rb
To run the unit tests you need to have test::unit installed
rake test
Enhancements:
- Symlink support was added along with support for Unix file permissions.
- Memory usage during decompression was reduced.
- Zip streams now model IO objects more closely.
<<lessInstallation:
If you have rubygems you can install rubyzip directly from the gem repository
gem install rubyzip
Otherwise obtain the source (see below) and run
ruby install.rb
To run the unit tests you need to have test::unit installed
rake test
Enhancements:
- Symlink support was added along with support for Unix file permissions.
- Memory usage during decompression was reduced.
- Zip streams now model IO objects more closely.
Download (0.060MB)
Added: 2006-07-04 License: GPL (GNU General Public License) Price:
696 downloads
ecawave 0.6.1
Ecawave is a simple graphical audio file editor. more>>
Ecawave is a simple graphical audio file editor. The user-interface is based on Qt libraries, while almost all audio functionality is taken directly from Ecasound libraries. As ecawave is designed for editing large audio files, all processing is done direct-to-disk. Simple waveform caching is used to speed-up file operations.
Ecawave supports all audio file formats and effect algorithms provided by Ecasound libraries. This includes JACK, ALSA, OSS, aRts, over 20 file formats, over 30 effect types, LADSPA plugins and multi-operator effect presets.
First of all, you should first try to use the binary-rpm release. Its probably the easiest and the most straigthforward way to install this software.
If you need to compile ecawave, the file INSTTALL will give you the instructions.
<<lessEcawave supports all audio file formats and effect algorithms provided by Ecasound libraries. This includes JACK, ALSA, OSS, aRts, over 20 file formats, over 30 effect types, LADSPA plugins and multi-operator effect presets.
First of all, you should first try to use the binary-rpm release. Its probably the easiest and the most straigthforward way to install this software.
If you need to compile ecawave, the file INSTTALL will give you the instructions.
Download (0.20MB)
Added: 2006-07-26 License: GPL (GNU General Public License) Price:
1185 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 directly from 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