Main > Free Download Search >

Free worlds largest software for linux

worlds largest

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2215
World Domination 0.3

World Domination 0.3


World Domination is a Real Time Strategy game inspired by the board game Axis and Allies utilizing the Stratagus engine. more>>
World Domination is a Real Time Strategy game inspired by the board game Axis and Allies utilizing the Stratagus engine.
World Domination will emphasize strategy and not "see who can build the most units the fastest." Resources are not gathered like in other RTSs, rather they are distributed after a fixed interval of time based on how much land a player occupies.
Enhancements:
- Added support for AI.
- Fixed may bugs and desyncs so you should be able to finish a network game without it crashing.
- New Graphics.
- Some new Maps
<<less
Download (3.3MB)
Added: 2006-02-16 License: GPL (GNU General Public License) Price:
1348 downloads
XO World 0.1

XO World 0.1


XO World is a board game that lets you play Tic-tac-toe versus computer on 10x10 board. more>>
XO World is a board game that lets you play Tic-tac-toe versus computer on 10x10 board.

You play against computer on 10x10 board. Both you and opponent place signs (yours is X, and computers is O) on the board - one at a time. The goal is to make a line of 5 signs before your opponent. Lines can be horizontal, vertical or diagonal.

<<less
Download (0.13MB)
Added: 2007-02-19 License: Freeware Price:
978 downloads
Zoids Quest 0.0.1

Zoids Quest 0.0.1


Zoids Quest is a jump-and-run platform game. more>>
Zoids Quest project is a jump-and-run platform game.

Zoids Quest is a platform game in the style of old console games such as Super Mario World and Sonic the Hedgehog.

Players must help Zoid on his Quest by guiding him through many worlds containing tricks, traps, and monsters.

On the way Zoid can collect special magic runes which enhance his abilities and help defend against the many deadly foes.

This is the first public release.
<<less
Download (6.2MB)
Added: 2006-12-09 License: GPL (GNU General Public License) Price:
1075 downloads
Rail World 0.8

Rail World 0.8


Rail World is a 2-D train simulation game. more>>
Rail World project is a 2-D train simulation game.
Rail World is a railroad train simulation game designed to bring the features of model railroading to the desktop using actual aerial or satellite photographs as the backdrop for maps.
You can control multiple trains, switches, load/unload cargo, and more.
Main features:
- Use actual aerial photographs or satellite images as the basis for maps.
- Manage multiple trains as a conductor.
- Drive trains using throttle and brake as an engineer.
- Grapple with realistic physics, including stopping distance and collisions.
- Set switches and specific train routing.
- Load and unload cargo.
<<less
Download (4.5MB)
Added: 2007-06-23 License: GPL (GNU General Public License) Price:
870 downloads
MyBook World Edition Packages 0.0

MyBook World Edition Packages 0.0


MyBook World Edition Packages project collection provides pre-compiled packages for hacking Western Digital MyBook World Edition more>>
MyBook World Edition Packages project collection provides pre-compiled packages for hacking Western Digital MyBook World Edition, to improve performance and add new features.

At least intermediate Linux experience is required for playing with MyBook. Please, if you do not meet this requirement, ask someone experienced to help you. Otherwise there is a risk that you will brick your MyBook!
<<less
Download (MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
865 downloads
WorldVistA 20060113

WorldVistA 20060113


Veterans Health Information Systems and Technology Architecture is a healthcare information system (HIS). more>>
Veterans Health Information Systems and Technology Architecture is a healthcare information system (HIS). VistA is widely believed to be the largest integrated HIS in the world. WorldVistA project was originally developed and maintained by the U.S.
Department of Veterans Affairs (VA), based on the systems software architecture and implementation methodology developed by the U.S. Public Health Service jointly with the National Bureau of Standards.
It is designed to provide a high-quality medical care environment for the countrys military veterans. VistA has a proven track record of supporting a large variety of clinical settings and medical delivery systems.
Enhancements:
- This is the FOIAVistA SemiVivA 20060113 package with GT.M bundled.
<<less
Download (258.8MB)
Added: 2006-02-13 License: GPL (GNU General Public License) Price:
1348 downloads
WorldClocks 0.8.8-2

WorldClocks 0.8.8-2


WorldClocks is an extension which displays the current date and time of the worlds most important cities. more>>
WorldClocks is an extension which displays the current date and time of the worlds most important cities.

Displays the current date and time of the worlds most important cities

To change the default city displayed on the browser status bar, just "double click" your preferred city from the favorites list!

<<less
Download (0.018MB)
Added: 2007-04-13 License: MPL (Mozilla Public License) Price:
926 downloads
World of Padman 1.1

World of Padman 1.1


World of Padman is a multiplayer Fun Action Shooter at Q3 Engine base. more>>
World of Padman is a multiplayer Fun Action Shooter at Q3 Engine base.

World of Padman was a popular total conversation mod for the quake 3 engine.

Since the release of the gpled sourcecode, their team-members are worked hard to brush up the maps, models and the whole bunch of other things that belongs to a superior mod. They Invented new weapons, gaming goals on so on.

Today it is the day to proudly anounce the availibility of WoP for Linux, MacOsX and Windows, also.

The standalone game is an funshooter at its best! Come and try it for free, you have nothing to invest but your download time.

The game comes absolutly free as in beer. For details for the copyrighted graphics read at the project site http://worldofpadman.com.

<<less
Download (550.2MB)
Added: 2007-04-02 License: Freeware Price:
943 downloads
Samoth World Editor 0.11

Samoth World Editor 0.11


Samoth World Editor project consists of medieval/fantasy universe RPG. more>>
Samoth World Editor project consists of medieval/fantasy universe RPG.
Main features:
- Map loading/creation/saving (the last one almost done, physics still to do)
- Real-time scene viewing
- Scene tree edition
- Node, light, skybox, fog edition
- Physics creation (from mesh) : done, but useless, since they cannot be saved yet.
Enhancements:
- First draw : map editor available, even if not finished.
<<less
Download (17.8MB)
Added: 2007-01-08 License: GPL (GNU General Public License) Price:
1031 downloads
Safe::World 0.14

Safe::World 0.14


Safe::World can create multiple virtual instances of a Perl interpreter that can be assembled together. more>>
Safe::World can create multiple virtual instances of a Perl interpreter that can be assembled together.

SYNOPSIS

See USE section for complexer example and the test.pl script.

use Safe::World ;

my $world = Safe::World->new(
stdout => $stdout , ## - redirect STDOUT to this scalar.
stderr => $stderr , ## - redirect STDERR to this scalar.
flush => 1 , ## - output is flushed, soo dont need to wait exit to
## have all the data inside $stdout.
) ;

## Evaluate some code:
$world->eval(q`
use Data::Dumper ;
print Dumper( {a => 1 , b => 2} ) ;
`);

$world->close ; ## ensure that everything is finished and flushed.

die($stderr) if $stderr ;

print $stdout ;

$world = undef ; ## Destroy the world. Here the compartment is cleanned.

Note that in this example, inside the World is loaded Data::Dumper, but Data::Dumper was loaded only inside of it, keeping the outside normal.

<<less
Download (0.034MB)
Added: 2007-08-15 License: Perl Artistic License Price:
802 downloads
Hell World 0.1.5

Hell World 0.1.5


Hell World is a thrilling FPS adventure game which features excellent graphics. more>>
Hell World is a thrilling FPS adventure game which features excellent graphics, a dark atmosphere and an excellent scenario. Hell World game is designed to be a port of the Windows-only version of Hell World.
It is written using the openGL and SDL library and is developing for the last months by ironhell3.
The game starts from main.c There we call first two functions, sdl_init() and game_init() to initialise the sdl and game part of the game.After the succesfull initialisation of Hell World we loop in a while() function.Each frame we check the keyboard and mouse for events through keyhandler() and then render the game frames through loop().When we catch a done=true signal we quit the game.
Important:
1)We are in need of developers,musicians,artists etc to help develop this game
2)This game is released under the GPL license.Please READ the COPYING file for more info
Enhancements:
- Fixed movement
- Added fog
- Added crates
- Redesign of level 1 including texture changes
<<less
Download (0.14MB)
Added: 2006-02-15 License: GPL (GNU General Public License) Price:
1354 downloads
Labyrinth of Worlds 0.4

Labyrinth of Worlds 0.4


Labyrinth of Worlds project is an Ultima Underworld II rewrite. more>>
Labyrinth of Worlds project is an Ultima Underworld II rewrite.
LoW is a rewrite of the first-person role-playing game Ultima Underworld II: Labyrinth of Worlds that came out in the early 1990s. One of the most celebrated game of its genre, this rewrite attempts to recapture the minutiae and spirit of the original.
At the moment, the tech demo allows you to walk (and jump) around all the Underworld II levels and worlds, has all NPCs and most monsters. You also get to see and manipulate all the dynamic objects of the game, and peek inside containers. The paperdoll has been implemented, too, and lets you access your inventory as well as wear/wield armor and weapons.
It is now possible to converse with the various NPCs. While not all the conversations work correctly (or at all) most do for the most part and it is now possible to actually understand the storyline. :) NPCs are also able to give items, now.
Another worthy project you might want to go take a look at is Underworld Adventures which seeks to recreate the first installement of that series and is doing a darn good job of it.
If you are an Ultima VII fan, then Exult is going to tickle you pink! The freshly released version 1.0 will allow you to play Black Gate and Serpent Isle with the addons on modern architectures, with a few gameplay improvements to boot!
Enhancements:
- Fixed executables
- new gameplay features, including wearable items
- improved user interface
- performance improvements
- more complete conversation support (including being given items),
- working keys and locks
<<less
Download (MB)
Added: 2007-01-03 License: Open Software License Price:
1027 downloads
The Worlds Best Band Name Generator 1.03

The Worlds Best Band Name Generator 1.03


The Worlds Best Band Name Generator produces randomly generated band names. more>>
The Worlds Best Band Name Generator produces randomly generated band names.

The Worlds Best Band Name Generator can generate band names like "Ungratefully Swallowed" and "The Bridgeheads" and "Throwaway Deceptiveness".

The visitor can refresh the names dynamically without refreshing the page by using a small AJAX script.

The generator uses combinations of nouns, adjectives, and adverbs that lend themselves well to band name creation, so most of the names actually sound realistic.

The script is easy to install and modify.

You can download the Worlds Best Band Name Generator for FREE to add to your own web site.

If you really like the Words Best Band Name Generator, please link to this page so other people can find it.
<<less
Download (0.45MB)
Added: 2005-12-02 License: Freeware Price:
1425 downloads
Openads 2.3.35 Beta

Openads 2.3.35 Beta


Openads provides an open-source ad server, with an integrated banner management interface and tracking system for statistics. more>>
Openads provides an open-source ad server, with an integrated banner management interface and tracking system for statistics.

Openads is an open-source ad server, with an integrated banner management interface and tracking system for gathering statistics. With phpAdsNew you can easily rotate paid banners and your own in-house advertisements. You can even integrate banners from third party advertising companies.

Openads can handle different types of banners in various sizes. Thanks to our flexible delivery engine it can handle regular banners and buttons, pop-ups, text ads, DHTML banners and much more. phpAdsNew is the only ad server that can handle tracking of Flash banners which arent specially prepared.

Openads is the home of some of the most popular, online advertising software available anywhere in the world. Whether you want to take advantage of your website as a source of advertising revenue or if you want to take control and extend your online advertising portfolio, Openads provides you with a family of easy-to-use products backed by expertise from the world’s largest ad space community.

When you use an Openads product, you gain access to that community for support and advice, while your feedback contributes to the future development of the products. And as it is open source, Openads products are free to download and use.

<<less
Download (1.4MB)
Added: 2007-07-24 License: GPL (GNU General Public License) Price:
823 downloads
SUSE Linux 10.1 Remastered

SUSE Linux 10.1 Remastered


SUSE Linux Remastered combines the 10.1 GM and all online updates that have been released for 10.1. more>>
SUSE Linux Remastered combines the 10.1 GM and all online updates that have been released for 10.1.

openSUSE Linux provides anyone with free and easy access to the worlds most usable Linux distribution, SUSE Linux.

The openSUSE project is a worldwide community program sponsored by Novell (http://www.novell.com) that promotes the use of Linux everywhere.

The goals of the openSUSE project are:

Make SUSE Linux the easiest Linux distribution for anyone to obtain, and the most widely used open source platform.

Provide an environment for open source collaboration tha makes SUSE Linux the worlds best Linux distribution for new and experienced Linux users.

Dramatically simplify and open the development and packaging processes to make SUSE Linux the platform of choice for Linux hackers and application developers.

Currently, SUSE Linux is an unsupported, open source only, preliminary edition of SUSE Linux that contains bleeding-edge packages and represents the latest development snapshot. If you intend to test for bugs or contribute patches, this version is for you...
<<less
Download (MB)
Added: 2006-10-13 License: GPL (GNU General Public License) Price:
1155 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5