Main > Free Download Search >

Free 2 x 5 software for linux

2 x 5

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 8268
jpg2pdf PRO 2.x

jpg2pdf PRO 2.x


Jpg2pdf PRO is the PRO version of jpg2pdf. more>>
jpg2pdf PRO is the PRO version of jpg2pdf. jpg2pdf PRO offers you all the features of jpg2pdf 2.x plus these important features: convert every single jpeg to a single pdf (with -album to create a unique PDF) jpg2pdf PRO can automatic detect is the jpeg image is rgb or gray or cmyk and create the correct pdf. jpg2pdf PRO can automatic check if the jpeg image is rgb or gray or cmyk and create the correct pdf or pdf album.
NOTE: jpg2pdf PRO tries to detect if the cmyk image is made by Adobe Photoshop and will use inverted colours to create the pdf (it appears that Adobe Photoshop writes inverted data in CMYK JPEG files: 0 represents 100% ink coverage, rather than 0% ink as youd expect)
Main features:
- convert every single jpeg to a single pdf, to put every jpeg in a pdf album, like normal jpg2pdf, you can use the option -album
- jpg2pdf PRO can automatic detect is the jpeg image is rgb or gray or cmyk and create the correct pdf. Note: jpg2pdf PRO tries to detect if the cmyk image is made by Adobe Photoshop and will use inverted colours to create the pdf (it appears that Adobe Photoshop writes inverted data in CMYK JPEG files: 0 represents 100% ink coverage, rather than 0% ink as youd expect)
- center parameter will center evary jpeg image in the final pdf page
- Using image parameter (to set the paper format of the pdf page equal to the image) is possible to use border parameter to set a border around the image
- Its possible to set a directory where to put the pdfs (pdfdir) and the jpegs (jpgdir)
- Its possible to re-run infinitely jpg2pdf setting the wait seconds
<<less
Download (0.87MB)
Added: 2006-07-28 License: GPL (GNU General Public License) Price:
1198 downloads
FindIt NIX 1.0.2

FindIt NIX 1.0.2


FindIt NIX project is a clone of a great find-the-difference game. more>>
FindIt NIX project is a clone of a great find-the-difference game.
FindItNIX is a clone of the Windows game FindItXP. The goal is to spot the 5 differences between 2 images within a certain amount of time. The quicker you find them, the higher the bonus will be.
FindItNIX features high scores compatible with those of the Windows version and over 1200 levels available on the Internet.
Enhancements:
- Implemented hack in Makefile so the program links to the libqt-2.x.x.so in stead of the 3.x libraries which cause an unknown problem. Until I fixed this, and qt-2.x.x is
- still on your system you wont have any problems compiling nymore.
- Some minor documentation updates.
<<less
Download (0.25MB)
Added: 2006-12-28 License: Freeware Price:
1030 downloads
GliBench SMP 0.5

GliBench SMP 0.5


GliBench is a Gui based benchmarking tool to check your computers CPU and hard disk performance. more>>
GliBench is a Gui based benchmarking tool to check your computers CPU and hard disk performance. The software is based on the benchmarks I developed for CliBench Mk III SMP a SMP enabled benchmark program for Win32.
There were several tries to port it to other architectures than Win32, but this was not that easy. So I decided to to a Linux port, based on the GTK toolkit with Gnome support, as Linux runs on almost every hardware around and GTK is quite easy to port to other OSs.
The CPU tests are all ported to ANSI C. They run fully multithreaded using posix threads. You can already use the program for benchmarking your hardware.
Enhancements:
- The application was completely rewritten for GTK+ 2.x and Glib 2.x.
- New stress tests and threaded I/O tests for benchmarking hard drives are available.
- Both console and GUI interfaces are available.
<<less
Download (0.092MB)
Added: 2007-07-18 License: GPL (GNU General Public License) Price:
829 downloads
SendIP 2.5

SendIP 2.5


SendIP is a commandline tool to send arbitrary packets. more>>
SendIP is a command-line tool to send arbitrary IP packets. It has a large number of options to specify the content of every header of a RIP, RIPng, BGP, TCP, UDP, ICMP, or raw IPv4/IPv6 packet.
It also allows any data to be added to the packet. Checksums can be calculated automatically, but if you wish to send out wrong checksums, that is supported too.
Here is a list of protocols that SendIP currently understands:
- IPv4 (but see below section 7)
- TCP
- BGP
- ICMP
- UDP
- RIP
- NTP
- IPv6 (except on solaris)
- ICMPv6
- TCP
- UDP
- RIPng
- NTP?
Other protocols will be added in future versions, as and when I have time to add them.
Of course, it is still possible to send packets using other protocols, but you have to construct the packet data and headers entirely by hand.
Installation
make ; make install should work.
You MUST use GNU make.
On Solaris you need to use gcc-3.x or above, and GNU binutils.
On other platforms, you probably need gcc-2.x or above.
If you have install problems on Solaris, try:
make install INSTALL=/usr/ucb/install
If you cant persuade it to compile or install, mail me with details of what goes wrong, and what system you are trying to install it on.
By this I mean at least:
- output of make -k veryclean all install
- OS, including version
- version of make, gcc, etc
- version of sendip
- anything else you think might be relevant
You can change where it installs by changing BINDIR and/or PREFIX at the top of the Makefile.
A .spec file is included to build RPMS, and source and binary RPMS are also available from the web page. Debian packages are also available, and sendip is included in the FreeBSD ports collection.
Usage
SendIP can take a huge number of commandline parameters. For this reason, future versions may have some sort of user interface...
Please read the man page or sendip -h for details. They are not documented here because they change often between versions and I cant be bothered to keep this up to date.
<<less
Download (0.052MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1643 downloads
Gtk2 1.144

Gtk2 1.144


Gtk2 is a Perl interface to the 2.x series of the Gimp Toolkit library. more>>
Gtk2 is a Perl interface to the 2.x series of the Gimp Toolkit library.

SYNOPSIS

use Gtk2 -init;
# Gtk2->init; works if you didnt use -init on use
my $window = Gtk2::Window->new (toplevel);
my $button = Gtk2::Button->new (Quit);
$button->signal_connect (clicked => sub { Gtk2->main_quit });
$window->add ($button);
$window->show_all;
Gtk2->main;

ABSTRACT

Perl bindings to the 2.x series of the Gtk+ widget set. This module allows you to write graphical user interfaces in a perlish and object-oriented way, freeing you from the casting and memory management in C, yet remaining very close in spirit to original API.

The Gtk2 module allows a perl developer to use the Gtk+ graphical user interface library. Find out more about Gtk+ at http://www.gtk.org.

The GTK+ Reference Manual is also a handy companion when writing Gtk programs in any language. http://developer.gnome.org/doc/API/2.0/gtk/ The perl bindings follow the C API very closely, and the C reference documentation should be considered the canonical source.

<<less
Download (0.65MB)
Added: 2007-03-13 License: Perl Artistic License Price:
955 downloads
Suede 0.2.5

Suede 0.2.5


Suede provides a set of SVG icons for Gnome 2.x. more>>
Suede provides a set of SVG icons for Gnome 2.x.
INSTALL:
-Untar to ".icons" directory in your home directory, or in the /usr/share/icons directory.
-Select icon theme
-Done!
Enhancements:
- Switched most colors to ones from the Gnome 32 color palette
- added start-here icon
- new mimetype icons
<<less
Download (MB)
Added: 2007-03-03 License: GPL (GNU General Public License) Price:
966 downloads
Axmjpeg 1.2

Axmjpeg 1.2


Axmjpeg retrieves JPEG images from an MJPEG over HTTP stream. more>>
Axmjpeg application retrieves JPEG images from an MJPEG over HTTP stream that conforms to the Axis Video API, HTTP Interface Specification.
Axmjpeg retrieves JPEG images from an MJPEG over HTTP stream. The HTTP stream must conform to Revision 2.x of the "Axis Video API, HTTP Interface Specification" (which is available from "http://www.axis.com/techsup/cam_servers/dev/cam_http_api.htm").
Axmjpeg also supports Revision 1.x of this specification provided the optional "Content-Length:" header is enabled.
This tool was written for cammgr, the web camera management software available from "http://freshmeat.net/projects/cammgr". Specifically, it allows cammgr to support the great range of Axis network cameras available from "http://www.axis.com".
However, its easy to come up with other uses for axmjpeg.
The manual page describes the full range of functionality; the basic list is:
- save JPEG images to the same (optionally renamed) file.
- save each JPEG image to a unique file.
- pipe JPEG images to shell commands (for more processing).
- time-based capturing, where only one image per the specified interval will be selected for processing.
Axmjpeg was developed on FreeBSD and tested on a wide range of Unix systems including several Linux variants, HP-UX, Tru64, and SunOS.
Enhancements:
- The image-fetching code was extended to support cameras that send binary headers in the MJPEG HTTP stream.
- This version of axmjpeg is known to support the "SQ IP Cam" and the "GP-280 Network IP Camera."
<<less
Download (0.009MB)
Added: 2007-08-20 License: BSD License Price:
804 downloads
mod_proxy_html 2.5.1

mod_proxy_html 2.5.1


mod_proxy_html is an output filter to rewrite HTML links in a proxy situation. more>>
mod_proxy_html is an output filter to rewrite HTML links in a proxy situation, to ensure that links work for users outside the proxy. mod_proxy_html serves the same purpose as Apaches ProxyPassReverse directive does for HTTP headers, and is an essential component of a reverse proxy.
For example, if a company has an application server at appserver.example.com that is only visible from within the companys internal network, and a public webserver www.example.com, they may wish to provide a gateway to the application server at http://www.example.com/appserver/.
When the application server links to itself, those links need to be rewritten to work through the gateway. mod_proxy_html serves to rewrite < a href="http://appserver.example.com/foo/bar.html" >foobar< /a > to < a href="http://www.example.com/appserver/foo/bar.html" >foobar< /a > making it accessible from outside.
Capabilities
The original capabilities of mod_proxy_html are:
- Parses HTML and XHTML markup, rewriting links according to rules defined by the server admin.
- Optionally converts HTML to XHTML or vice versa.
- Optionally makes some minor corrections to broken HTML.
Important changes from 1.x to 2.x include:
- Support for rewriting URLs in scripts, stylesheets and scripting events
- Support for regular expression match-and-replace
- Improved charset detection, including XML BOM, XML declaration, and HTML META where the information is not available in HTTP.
- Support for converting meta http-equiv HTML elements to real HTTP headers.
- The default FPI (doctype) generated has changed to none, on the grounds that its better to omit it than declare a bogus doctype. You should now configure it explicitly if your backend generates sane HTML or XHTML.
- A verbose logging option is provided to help with testing your configuration and diagnosing exactly what it is doing.
With these new features, mod_proxy_html might find applications outside a proxy context. But reverse-proxying remains its primary purpose, while mod_publisher offers a far wider range of capabilities for other applications.
<<less
Download (0.035MB)
Added: 2006-04-28 License: GPL (GNU General Public License) Price:
739 downloads
libnjb 2.2.5

libnjb 2.2.5


libnjb is a C library and API for communicating with the Creative Nomad JukeBox and Dell DJ digital audio players under Linux. more>>
libnjb is a C library and API for communicating with the Creative Nomad JukeBox and Dell DJ digital audio players under Linux, BSD, Mac OS X and Windows.
The protocol these devices use is presumably called PDE (Portable Digital Entertainment protocol) at Creative. Newer devices using the Microsoft MTP (Media Transfer Protocol) are NOT supported.
There are no kernel devices required for libnjb:s operation, so instead it depends on user-level USB using libusb on all platforms. The following platforms are currently supported:
FreeBSD and NetBSD. FreeBSD is the primary development platform, though NetBSD users have successfully built and run the library and sample applications.
OpenBSD has not been tested, but if it uses the same USB stack as the other BSDs, then it should work fine.
Linux works fine. (Note that libusb also requires that users mount the usbdevfs filesystem, which everybody should have as default nowadays.)
MacOS X (Darwin) is also supported and works fine.
Solaris is supported through Sun:s own reimplementation of libusb.
Working Devices:
- Creative NOMAD Jukebox 1 (aka D.A.P.)
- Creative NOMAD Jukebox 2
- Creative NOMAD Jukebox 3
- Creative NOMAD Jukebox Zen
- Creative NOMAD Jukebox Zen USB 2.0
- Creative NOMAD Jukebox Zen NX
- Creative NOMAD Jukebox Zen Xtra
- Creative Zen Touch
- Creative Zen Micro
- Creative Zen Sleek
- Creative Zen
- Dell Digital Jukebox ("Dell DJ")
- Second Generation Dell DJ
- Dell Pocket DJ
NOT SUPPORTED:
- Creative Zen Portable Media Center
- Creative Zen MicroPhoto
- Any other MTP device
Newer devices have a 2.x MTP/PlaysForSure firmware upgrade - we do not support MTP so please dont install it!
<<less
Download (0.48MB)
Added: 2006-03-21 License: GPL (GNU General Public License) Price:
1319 downloads
cap2-mercurial 0.9 RC2

cap2-mercurial 0.9 RC2


cap2-mercurial is a Capistrano 2.x plugin that allows you to use Mercurial in your cap recipes. more>>
cap2-mercurial is a Capistrano 2.x plugin that allows you to use Mercurial in your cap recipes. This project enables the use of "set :scm, :mercurial" in your recipe file. The module is included in Capistrano, but this has the latest updates and bonus recipes.
Enhancements:
- This version works with cap2 and Mercurial 0.9.x reasonably enough for the authors needs.
<<less
Download (MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
871 downloads
iproute2 2.6.15 060110

iproute2 2.6.15 060110


iproute2 are professional tools to control networking in Linux kernels. more>>
iproute2 is `iproute, the professional set of tools to control the networking behavior in kernels 2.2.x and later.

ip link - network device configuration

A link refers a network device. The ip link object and the corresponding command set allows viewing and manipulating the state of network devices. The commands for the link object are just two, set and show.

ip link set --- change device attributes.

Abbreviations: set, s

Warning

You can request multiple parameter changes with ip link. If you request multiple parameter changes and any ONE change fails then ip aborts immediately after the failure thus the parameter changes previous to the failure have completed and are not backed out on abort. This is the only case where using the ip command can leave your system in an unpredictable state. The solution is to avoid changing multiple parameters with one ip link set call. Use as many individual ip link set commands as necessary to perform the actions you desire.
<<less
Download (0.36MB)
Added: 2006-01-17 License: GPL (GNU General Public License) Price:
1381 downloads
XFinger 1.2.0

XFinger 1.2.0


XFinger is the X window version of the finger command for linux and other Unix-like systems. more>>
XFinger is the X window version of the finger command for linux and other Unix-like systems. The application provides refresh: in this way you can keep users monitored.

Compiling:

Sorry: no Makefile yet.

First of all you need to install the FLTK library from www.fltk.org, then you can compile XFinger. I tested it using GNU C++ compiler (g++/egcs) under RedHat Linux version 5.2 and 6.1. You can find examples of compilation commands in the files named COMPILE and STATIC-COMPILE.

After this, try the program, simply typing "./xfinger". If you are not used to compile programs, you can run the precompiled binary included in the distributed file. It should work on any Linux system with 2.x.x kernel (static ELF).

Maybe you can also recompile it on other Unix-like systems.
<<less
Download (0.43MB)
Added: 2006-12-07 License: GPL (GNU General Public License) Price:
1053 downloads
Tux n Tosh 0.2

Tux n Tosh 0.2


This is a Gnome 2.X Icon-Theme of the Tux n Tosh iconset. more>>
This is a Gnome 2.X Icon-Theme of the Tux n Tosh iconset. Tux n Tosh also uses some Crystal icons to be more or less complete.

<<less
Download (4.5MB)
Added: 2005-11-17 License: GPL (GNU General Public License) Price:
1449 downloads
xmms-shn 2.4.1

xmms-shn 2.4.1


xmms-shn is an XMMS input plugin to play shorten (.shn) files. more>>
xmms-shn is an XMMS input plugin that can play shorten (.shn) files. As of version 2.0, xmms-shn no longer depends on an external shorten executable to function.

However, to take advantage of the real-time seeking capabilities built into version 2.x, you have to seek-enable your .shns with the new version 3 of shorten.

<<less
Download (0.30MB)
Added: 2007-03-29 License: GPL (GNU General Public License) Price:
940 downloads
vMovieDB 0.1.5

vMovieDB 0.1.5


vMovieDB project is a movies collection manager for GNOME desktop. more>>
vMovieDB project is a movies collection manager for GNOME desktop. Its GTK+ 2.x, application writen on C, created according to Gnome-HIG standarts, vMovieDB fits perfectly in GNOME Desktop Enviroment.
Main features:
- Play selected movie with your favorite video player.
- Manage various types of information for your movies: title, year, media type, quality, subtitles, location, genre and movie image.
- Genre editor.
- Export your movies to html document.
- Export movies to text document.
- Search for selected movie on ImDB.com.
vMovieDB have fast and light database based on XML.
<<less
Download (0.36MB)
Added: 2006-09-25 License: GPL (GNU General Public License) Price:
1127 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5