Main > Free Download Search >

Free portable software for linux

portable

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 736
iPodder 2.1

iPodder 2.1


iPodder is a media aggregator which automatically downloads files to your computer or portable device. more>>
Juice is a media aggregator which automatically downloads files to your computer or portable device, leaving you one-click-away from latest media feeds. Based on the iPodder idea of Adam Curry.

NOTE: Juice was know till now as iPodder.

If you want to listen to internet audio programs (podcasts) but cant when they are scheduled, this program is for you.

Juice is the premier Podcasting application, allowing users to capture and listen to Internet audio programs anytime, anywhere.

It allows users to select and download shows and music and to play whenever they want on their iPods, portable digital media players, or computers automatically, after specifying which music or shows they want to listen to.

<<less
Download (1.2MB)
Added: 2005-07-27 License: GPL (GNU General Public License) Price:
1726 downloads
Small Antialiased Graphics Library 0.0.9

Small Antialiased Graphics Library 0.0.9


SAgl is a portable small antialiased graphics library. more>>
SAgl is a portable small antialiased graphics library. It offers lines, circles, and bezier curves, as well as thick lines and fills.

It can be used on top of SDL or with X or any other graphics system.
<<less
Download (0.084MB)
Added: 2005-07-06 License: GPL (GNU General Public License) Price:
1575 downloads
DotGNU Portable.NET 0.7.2

DotGNU Portable.NET 0.7.2


DotGNU Portable.NET is a tools kit for .NET applications on non-Microsoft platforms. more>>
The goal of this project is to build a suite of free software tools to build and execute .NET applications, including a C# compiler, assembler, disassembler, and runtime engine.

While the initial target platform was GNU/Linux, it is also known to run under Windows, Solaris, NetBSD, FreeBSD, and MacOS X. The runtime engine has been tested on the x86, PowerPC, ARM, Sparc, PARISC, s390, Alpha, and IA-64 processors.

DotGNU Portable.NET is part of the DotGNU project, built in accordance with the requirements of the GNU Project.

DotGNU Portable.NET is focused on compatibility with the ECMA specifications for CLI. There are other projects under the DotGNU meta-project to build other necessary pieces of infrastructure, and to explore non-CLI approaches to virtual machine implementation.

Building

The three primary components of the system must be built in the following order: treecc, pnet, and then pnetlib.

You will need flex and bison to build DotGNU Portable.NET. We use flex 2.5.4 and bison 1.28. Some support is provided for the BSD version of yacc, but bison is recommended. Other versions of lex or yacc may not work.

Each source package can be unpacked, built, and installed in the usual manner:

$ zcat<<less
Download (3.4MB)
Added: 2005-08-18 License: GPL (GNU General Public License) Price:
1538 downloads
Rss Viewer 2.0.0 beta

Rss Viewer 2.0.0 beta


RSS Viewer is a comfortable and portable viewer for RSS/RDF-compatible newsfeeds. more>>
RSS Viewer is a comfortable and portable viewer for RSS/RDF-compatible newsfeeds. It is written completely in Java and licensed under the GNU General Public License.
Rss Viewer is proven to run on Windows, Linux and MacOS X. Other Java enabled platforms should work as well.
Main features:
- multiple views for everyones taste
- built-in HTML article preview
- external browser support
- drag and drop
- article database
<<less
Download (2.4MB)
Added: 2005-09-19 License: GPL (GNU General Public License) Price:
1499 downloads
libfilo 0.11

libfilo 0.11


libfilo is a small portable library to do userspace file locking, like fcntl(), lockf() or flock(), but within threads. more>>
libfilo is a small portable library to do userspace file locking, like fcntl(), lockf() or flock(), but within threads.
If you want multiple threads to access a file simultaneously, you will probably need some kind of locking to avoid them stepping on each other and corrupting everything. Currently, there is no standard way of doing this:
- fcntl() ignores threads, and only works between processes.
- flock() is not really standard and doesnt work well over NFS.
- lockf(), while it is documented in POSIX, its often implemented using fcntl() so its also useless.
So this library allows you to do read/write file locking with byte granularity and fcntl-like semantics, within threads. Its written in C, in about 600 lines of code, and has no dependencies on external libraries.
Its based on the traditional POSIX API and follows the Single UNIX Specification, so it should be portable to all major UNIX variants without problems; however its developed under Linux, so please let me know if you try it somewhere else.
<<less
Download (0.012MB)
Added: 2005-10-11 License: Open Software License Price:
1474 downloads
thttpd 2.25b

thttpd 2.25b


thttpd is a simple, small, portable, fast, and secure HTTP server. more>>
thttpd is a simple, small, portable, fast, and secure HTTP server:
Simple; It handles only the minimum necessary to implement HTTP/1.1. Well, maybe a little more than the minimum.
Small; See the comparison chart. It also has a very small run-time size, since it does not fork and is very careful about memory allocation.
Portable; It compiles cleanly on most any Unix-like OS, specifically including FreeBSD, SunOS 4, Solaris 2, BSD/OS, Linux, OSF.
Fast; In typical use its about as fast as the best full-featured servers (Apache, NCSA, Netscape). Under extreme load its much faster.
Secure; It goes to great lengths to protect the web server machine against attacks and breakins from other sites.
It also has one extremely useful feature (URL-traffic-based throttling) that no other server currently has. Plus, it supports IPv6 out of the box, no patching required.
Enhancements:
- Move fdwatch initialization before the chroot, so that /dev/poll can work.
- Multiple fdwatch cleanups and fixes (Adam Zell).
<<less
Download (0.13MB)
Added: 2005-10-11 License: GPL (GNU General Public License) Price:
1473 downloads
radclass r72

radclass r72


radclass is a PHP4 class that handles the administration of multiple IC-Radius servers. more>>
radclass is a PHP4 class that handles the administration of multiple IC-Radius servers.

radclass can add, delete, and update users and groups on foreign radius hosts, and it can modify their check items. radclass was designed in the PHP4 OO model to be a portable solution.
<<less
Download (0.044MB)
Added: 2005-11-17 License: GPL (GNU General Public License) Price:
1436 downloads
Portable Coroutine Library 1.6

Portable Coroutine Library 1.6


Portable Coroutine Library implementation written in ANSI C. more>>
Portable Coroutine Library (PCL) implements the low level functionality for coroutines. For a definition of the term coroutine see The Art of Computer Programming by Donald E. Knuth.
Coroutines are a very simple cooperative multitasking environment where the switch from one task to another is done explicitly by a function call. Coroutines are a lot faster than processes or threads switch, since there is no OS kernel involvement for the operation.
Also coroutines require much less OS resources than processes of threads. The idea of writing this library started when I was testing Linux epoll functionality and performance.
I initially started using the coro library by E. Toernig and I found the library very interesting. It was simple and yet powerful. The limitations of the coro library were both non portability and crashes when not used together with certain versions of gcc.
So I decided to write a new library to address the problems aforementioned by also taking portable context switching ideas from the GNU Pth library. This library is easily portable on almost every Unix system and on Windows.
It can use either the ucontext.h functionalities ( getcontext()/makecontest()/swapcontext() ) or the standard longjmp()/setjmp().
Enhancements:
- This release fixes a shared library soname generation error that was missing the library version information.
<<less
Download (0.30MB)
Added: 2006-01-04 License: GPL (GNU General Public License) Price:
1397 downloads
Portable Linux Processor Affinity 1.0.2

Portable Linux Processor Affinity 1.0.2


Portable Linux Processor Affinity is an attempt to solve the problem of multiple APIs for processor affinity within Linux. more>>
The Portable Linux Processor Affinity (PLPA) library does the following, regardless of your Linux distribution, kernel version, and GLibc version:
- Provide consistent behavior
- Provide binary compatibility of processor affinity
- Provide a common API and set of abstractions
PLPA is an attempt to solve the problem that there are multiple APIs for processor affinity within Linux. Specifically, the functions sched_setaffinity() and sched_getaffinity() have numbers and types of parameters depending on your Linux vendor and/or version of GLibc. This is quite problematic for applications attempting to use processor affinity in Linux for compile-time, link-time, and run-time reasons.
The PLPA provides a single processor affinity API that developers can write to in order to get both consistent behavior and binary compatibility across different Linux installations (assuming that you have an executable that is otherwise binary Linux portable, of course).
Portable Linux Processor Affinity library was developed by the Open MPI team as a standalone project that can be used by the Linux community. Specifically: it is distributed independently of Open MPI and does not require any part of Open MPI for its compile-, link-, or run-time functionality.
Enhancements:
- The return status of plpa_sched_[set|get]affinity() is now ensured to be zero upon success.
<<less
Download (0.31MB)
Added: 2006-02-12 License: BSD License Price:
1349 downloads
libdnet 1.11

libdnet 1.11


libdnet provides a simplified, portable interface to several low-level networking routines. more>>
libdnet provides a simplified, portable interface to several low-level networking routines.
Main features:
- network address manipulation
- kernel arp(4) cache and route(4) table lookup and manipulation
- network firewalling (IP filter, ipfw, ipchains, pf, PktFilter, ...)
- network interface lookup and manipulation
- IP tunnelling (BSD/Linux tun, Universal TUN/TAP device)
- raw IP packet and Ethernet frame transmission
Supported languages:
- C, C++
- Python
- Perl, Ruby (see below)
Supported platforms:
- BSD (OpenBSD, FreeBSD, NetBSD, BSD/OS)
- Linux (Redhat, Debian, Slackware, etc.)
- MacOS X
- Windows (NT/2000/XP)
- Solaris
- IRIX
- HP-UX
- Tru64
<<less
Download (0.43MB)
Added: 2006-03-03 License: GPL (GNU General Public License) Price:
1339 downloads
Libckpt 1.01

Libckpt 1.01


Libckpt is a portable checkpointing tool for Unix. more>>
Libckpt is a portable checkpointing tool for Unix. It provides a mechanism for enabling fault-tolerance for long-running programs.

Libckpt implements most optimizations that have been proposed to improve the performance of checkpointing.

Additionally, it implements "user-directed" checkpointing, a new optimization unique to Libckpt.
<<less
Download (0.12MB)
Added: 2006-03-10 License: Freely Distributable Price:
1335 downloads
GLEW 1.3.4

GLEW 1.3.4


GLEW is a simple tool that helps C/C++ developers initialize extensions and write portable applications. more>>
GLEW (OpenGL Extension Wrangler Library) is a simple tool that helps C/C++ developers initialize extensions and write portable applications.

GLEW currently supports a variety of operating systems, including Windows, Linux, Darwin, Irix, and Solaris.

<<less
Download (0.37MB)
Added: 2006-04-25 License: BSD License Price:
1286 downloads
CastPodder 5.0

CastPodder 5.0


CastPodder is a media aggregator that automatically downloads podcasts to your computer or portable device. more>>
CastPodder is a media aggregator that automatically downloads podcasts to your computer or portable device, leaving you one click away from the latest media feeds.

CastPodder is based on the iPodder idea of Adam Curry.

<<less
Download (2.88MB)
Added: 2006-04-29 License: GPL (GNU General Public License) Price:
1274 downloads
fontimage 0.2.3

fontimage 0.2.3


fontimage is a small, portable tool that generates PNG images of text strings directly from outline font files. more>>
fontimage project is a small, portable tool that generates PNG images of text strings directly from outline font files.
Main features:
- only depnends on libpng and freetype, should be very portable
- handles charaters outside of ascii range
- Licensed under GNU GPL
- Tested on Fedora Core 5 and CentOS 4.3
<<less
Download (0.014MB)
Added: 2006-05-11 License: GPL (GNU General Public License) Price:
1262 downloads
mod_auth_tkt 1.3

mod_auth_tkt 1.3


mod_auth_tkt is an original mod_auth_tkt, with some improvements (inactivity timeout). more>>
mod_auth_tkt is an original mod_auth_tkt, with some improvements (inactivity timeout).
Main features:
- Some fixes from the original module.
- There were several little things that were not portable or just didnt work fine; it was also a good time for learning more about apache API and such.
- Expiration of authentication due to inactivity!
- Possibility of closing the session
<<less
Download (0.012MB)
Added: 2006-05-24 License: The Apache License Price:
1248 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5