Main > Free Download Search >

Free windows version 7 software for linux

windows version 7

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1285
Windows Powertools 4.0.0.1

Windows Powertools 4.0.0.1


Windows Powertools has these features : *Cache2Trash:Clear unwanted temporary files to gain space *DiskCheck: Check for disk errors and resol... more>> <<less
Download (655KB)
Added: 2009-04-07 License: Freeware Price: Free
1074 downloads
DBIx::Version 0.01

DBIx::Version 0.01


DBIx::Version is a Perl extension for getting database software name and version. more>>
DBIx::Version is a Perl extension for getting database software name and version.

SYNOPSIS

use DBIx::Version;

my $dbh = DBI->connect( ... );
my ($dbname, $dbver, $dbverfull) = DBIx::Version::Version($dbh);

DBIx::Version lets you query which database software and version you are connected to.

Return Examples:

(undef, undef, undef)
(mysql, 4.0.17, 4.0.17-standard-log)
(postgresql, 7.4.1, PostgreSQL 7.4.1 on i686-pc-linux-gnu, compiled by GCC gcc (GCC) 3.3.2 20031107 (Red Hat Linux 3.3.2-2))
(oracle, 8.1.7.0.0, 8.1.7.0.0)
(sqlserver, 8.00.384, Microsoft SQL Server 2000 - 8.00.384 (Intel X86)
May 23 2001 00:02:52
Copyright (c) 1988-2000 Microsoft Corporation
Standard Edition on Windows NT 5.0 (Build 2195: Service Pack 2))
(sybase,12.5.0.1,Adaptive Server Enterprise/12.5.0.1/SWR 9982 IR/P/Sun_svr4/OS 5.8/rel12501/1776/ 64-bit/FBO/Tue Feb 26 01:22:10 2002)
(sybase,12.5.0.2,Adaptive Server Enterprise/12.5.0.2/EBF 14000 IR/P/Sun_svr4/OS 5.8/rel12502/1776/64-bit/FBO/Tue Jun 4 01:22:10 2002)

Answer 1: This module is useful for cross-platform coding, and in environments like shared hosting where you actually didnt install the database yourself and are curious.

<<less
Download (0.003MB)
Added: 2007-01-11 License: Perl Artistic License Price:
1020 downloads
Test::Version 0.02

Test::Version 0.02


Test::Version is a Perl module that has the role to check for VERSION information in modules. more>>
Test::Version is a Perl module that has the role to check for VERSION information in modules.

SYNOPSIS

use Test::Version;
plan tests => $num_tests;
version_ok( $file );

FUNCTIONS

version_ok( FILENAME, [EXPECTED, [NAME] ] )
version_ok requires a filename and returns one of the three values:

NO_FILE Could not find the file
NO_VERSION File had no VERSION information
VERSION_OK VERSION information exists

version_ok okays a test without an expected result if it finds VERSION information, or if an expected result is specified and it finds that condition. For instance, if you know there is no VERSION information,

version_ok( $file, NO_VERSION );

When it fails, version_ok will show error information.

The optional third argument NAME is the name of the test which version_ok passes through to Test::Builder. Otherwise, it choose a default test name "VERSION test for FILENAME".

<<less
Download (0.005MB)
Added: 2007-05-07 License: Perl Artistic License Price:
902 downloads
Kernel Version Monitor 0.5

Kernel Version Monitor 0.5


Kernel Version Monitor is a Superkaramba theme that creates a widget displaying the current version information of the kernel. more>>
Kernel Version Monitor is a Superkaramba theme that creates a widget displaying the current version information of the Linux kernel as put forth by the kernel.org RSS feed here: http://kernel.org/kdist/rss.xml . Kernel Version Monitor uses the Tux icon from the nuoveXT icon theme found at http://nuovext.pwsp.net

Kudos and thanks to Richard "Ricardo" Szlachta for his advice on refining the aesthetics of this theme.

This is my first Superkaramba theme and a work in progress. I would love to hear comments, opinions and suggestions in order to improve this theme.

<<less
Download (0.025MB)
Added: 2006-06-29 License: GPL (GNU General Public License) Price:
1213 downloads
Program Version Switch 1.03

Program Version Switch 1.03


Program Version Switch is a program to easily switch between different interpreter versions. more>>
pvswitch is a very tiny program which makes it possible to use different program installations on one machine flawlessly.
Its flexibility is intended for people who need to run programs against different interpreter versions.
But it can also be used for different purposes like switching the version of a compiler, text editor, mail reader, browser, whatever.
It is most useful for developers of interpreter based programs which are started via a hash-bang line (#!).
The following example explains the usage for perl programs, but the very same is true for all other interpreter languages.
If you install two or more different perl versions on your machine, you could just call the respective perl binary you want to use..
perl myscript.pl
/path/to/another/perl myscript.pl
This works fine, although it isnt very convenient. However if you are starting your program using the hash-bang line like
#! /usr/bin/perl
and then just start it by
./myscript.pl
you would need to change the file itself to use another perl version. Again it is possible, but not very convenient.
And here comes pvswitch: its purpose is to make such situations convenient. Further it solve some problems which come up if multiple people want to use different perl versions. pvswitch allows even to run one program in two shells with different perl versions.
This is possible because pvswitch uses a environment variable to select the interpreter version to use. This environment variable can be set in different sessions independently.
pvswitch is installed as new program binary (e.g. perl) the old one will be renamed to program.pvswitch.
Now every time you execute a this program (e.g. perl), pvswitch is executed. It doesnt matter how you start the program...
perl myscript.pl
./myscript.pl # if it has a hash-bang #! /usr/bin/perl
for both cases the pvswitch binary will be executed, pvswitch will than check for the environment variable PVSWITCH_PERL_BINARY (if you are running perl), if it is found it tries to find this key in the configuration file pvswitch.conf and execute the program which is configured for the version configured set in the environment variable (e.g. perl.pvswitch).
So it just executes the real program (e.g. perl interpreter). Depending on the environment a different version might be selected.
There are some convenient tools (e.g. perlver, pvconfig) to configure this.
Enhancements:
- Fixed a bug which could cause segmentation violation.
<<less
Download (0.075MB)
Added: 2005-04-15 License: GPL (GNU General Public License) Price:
1661 downloads
Windows tips and tricks 1.0

Windows tips and tricks 1.0


This is free collection of an authors advices. File format: chm.... more>> <<less
Download (41KB)
Added: 2009-04-02 License: Freeware Price: Free
259 downloads
Raw Print Server 1.0

Raw Print Server 1.0


Raw Print Server is a raw print server. more>>
Raw Print Server project is a "raw" print server that makes it possible for a computer to act as a "Socket API" or "AppSocket" print server.
This software would not exist without Sam Rushings excellent asyncore module, nor would it exist without Steve Holdens excellent explanation of that module (in his book "Python Web Programming" from New Riders, a truly outstanding book that I cant recommend enough) from which I learned enough to write this server. Im also indebted to Guido van Rossum for Python itself, which has made my life SO much easier, and to Mark Hammond for the win32all modules which are essential parts of the Windows version of the print server.
This is version 0.1 of the Raw Print Server. There are no installation instructions to speak of; I plan to write an install script to assist with getting the software up and running, but for now its all manual.
You will need a working Python 2.x system to run the print server itself, and if you are installing on Windows youll need a working set of the win32all modules from Mark Hammond (which you really ought to have anyway). To run the GUI properties program, youll need a working PyGTK module set, and on Windows that means finding a compatible GTK+ runtime also.
Finding all of the above is left as an exercise for the reader.
Okay. If you are on a recent Linux system, or any of the BSD family, you should be able to install all of the above from your original installation media, or download them from the appropriate website for your distribution.
If you are running Windows, start by getting a recent Python build from www.python.org; follow the links from that site to the win32all downloads (currently somewhere on Sourceforge).
After that, go to www.pygtk.org and follow their links to the downloads you need for Windows. Note that as of this time (October 2005), the GTK libraries normally used for the Gimp dont work with PyGTK (despite notes on the PyGTK for Windows site saying that they do), at least, not on Win9x.
Get the runtime or development libraries referenced from the PyGTK for Windows site. If you already have the Gimp installed, uninstall the GTK+ libraries you got with it before installing the alternate runtime. My Gimp still works, so it must be okay, right?
Enhancements:
- close printer when done
<<less
Download (0.028MB)
Added: 2006-07-08 License: BSD License Price:
1216 downloads
Underworld Online 7.7.5

Underworld Online 7.7.5


Underworld Online is a Fantasy MMORPG - Combats, Magic, Weapons, Spells, Guilds, Buildings. more>>
Underworld Online is a Fantasy MMORPG - Combats, Magic, Weapons, Spells, Guilds, Buildings.

A castle is being taken over by an army of monsters. In this graphical fantasy MMORPG you can either fight and try to save the reign, or you can join the evil forces. Combats, Magic, Weapons, Spells, Guilds, Buildings, Buy/Sell.

You play immediately with your browser, no download nor registration required. Has music and sound. Invite your friends to help you!

Introduction:

During the past centuries, the Reign of Graiel has known a prosperous life of richness and well-being.

Months ago, the King died in mysterious circumstances and his daughter, Asia the princess, run into severe illness. Things turned dramatically worse when the princess, hanging around the castle dungeons, found some ancient magic books, filled with forgotten formulas written with human blood.

Rumours around say that Asia, excited by her curiosity, read with loud voice a few phrases from that evil books, capable of awakening the lost souls from the Land of the Dead. Magic words pronounced by her have would have opened a dimensional breach, letting obscure creatures lurking in the never ending Darkness to reach out to our World.

Now, the Castle of Graiel is totally under control of evil creatures with enormous power. Asia the princess lives locked in her bedroom, captured by the monsters which are now planning their raise and conquer of the whole Reign.
Many brave knights have dead trying to defeat the creatures.

Take this challenge, stranger, save us, and become a King!
<<less
Download (0.053MB)
Added: 2006-12-27 License: GPL (GNU General Public License) Price:
1039 downloads
Kukkaisvoima 7

Kukkaisvoima 7


Kukkaisvoima is a lightweight weblog system licensed under GNU GPL version 2. more>>
Kukkaisvoima is a lightweight weblog system licensed under GNU GPL version 2. The project is made with Python programming language.
It stores all blog entries as plain text files so you can easily write and edit those with your favorite editor. Motivation for Kukkaisvoima was to do simple everything in one package weblog with Python.
Main features:
- Multiple categories for one entry
- No external dependencies outside Pythons standard library (no need for database engine etc.)
- Comments
- RSS feed for all entries and for every category
Install instructions:
After downloading the latest version of Kukkaisvoima. Move the package to your webdirectory and do the following steps:
tar xvfz kukkaisvoima-(versionnumber).tar.gz
cd kukkaisvoima-(versionnumber)
chmod +x index.cgi
mkdir temp
You may need to modify the index.cgi script suffix (change .cgi to .py) or use different permissions for the index.cgi script or for the temp directory. Temp directory should be writable by the script. For more information and help consult your webserver manual or local Python/Unix guru.
Configuring and using:
Edit the Config variables found in kukkaisvoima_settings.py. After configuring you can write blog entries as html formatted text files in directory specified in config file. Kukkaisvoima will generate the blog from these entries. Every entry must be in the format of
nameoftheantry:YYYY-MM-DD:category1,category2.txt
For example:
helloworld:2006-12-28:general.txt
As seen in the example entry can have multiple categories separeted with comma.
Enhancements:
- This release introduced a spam question to prevent spam comments and an admin interface for deleting comments.
<<less
Download (0.016MB)
Added: 2007-04-26 License: GPL (GNU General Public License) Price:
911 downloads
Minesweeper 1.1

Minesweeper 1.1


Minesweeper is a Java game clone from the Windows version of Minesweeper. more>>
Minesweeper is a Java game clone from the Windows version of Minesweeper.

Minesweeper is a game written by Chris Dailey in Java using Swing.

Version 1.1 features the basic game play.

The following table shows what the mouse clicks on squares do while the game is started.

COVERED

Set the square to UNCOVERED.
If there is a mine, the game ends (lose).
If all empty squares are uncovered, the game ends (win).
Otherwise the game continues. Set the square to FLAGGED.

UNCOVERED

Nothing if the number of flags in adjacent squares equals the number in the uncovered square
UNCOVER adjacent covered squares
else
temporarily highlight adjacent covered squares

FLAGGED

Nothing Set the square to QUESTIONED.

QUESTIONED

Nothing Set the square to COVERED.

<<less
Download (MB)
Added: 2006-01-18 License: GPL (GNU General Public License) Price:
1385 downloads
settevion 1.4.1

settevion 1.4.1


settevion is a program that allows you to edit the channels in your Skymaster DXL 9400 Satellite Receiver. more>>
settevion is a program that allows you to edit the channels in your Skymaster DXL 9400 Satellite Receiver.
This receiver was sold under the name Tevion FTA 203 by Aldi. Note that the current version does not allow writing radio channels into the receiver. Also note: This program makes use of undocumented behaviour. USE IT AT YOUR OWN RISK. There is no guarantee, even not against possible damage to your equipment. The program is free for personal, non-commercial use. Commercial use and copying (even at no cost) requires written permission. There are only german instructions provided, but Id not expect many problems for non-german speaking users since the programs dialog language is english.
Download settevion-x.x.x.tar.gz for Linux or settevion-win-x.x.x.zip for Windows. See the "Download" section below. For Linux, you must have Python installed (at least version 2.2) and Tkinter, which might be in a separate package. They are part of your distribution. Unpack the .tar.gz and do a "make install". The Windows version comes with its Python interpreter integrated into settevion.exe. Just unpack the zip file. For both versions, connect the receiver with a null modem cable and start settevion. Choose "Edit->Preferences" to select your serial device. Then choose "Receiver->Read data from receiver". This should be enough to make this run.
Enhancements:
- settevion.py: getDBPRINT: added code to read in SER data entry by entry since firmware version 2.12 doesnt dump the SER data base any more. satIO.read() changed to ignore asynchronous error messages ("trashlog") if they are one a line of their own. Warning message added if Python is called with -O and one of the debugging (-v) command line options is set. Version 1.4.1.
<<less
Download (0.039MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1198 downloads
Normalize 0.7.7

Normalize 0.7.7


Normalize is a tool for adjusting the volume of audio files to a standard level. more>>
Normalize is a tool for adjusting the volume of audio files to a standard level. This is useful for things like creating mixed CDs and mp3 collections, where different recording levels on different albums can cause the volume to vary greatly from song to song.
Installation instructions:
1. ./configure options
2. make
3. make install
See the file INSTALL for more extensive directions. See the man page, normalize.1, for usage. Run "./configure --help" for configure options.
Enhancements:
- Fixed bug with reading broken wav files with bad sizes
- Fixed bug causing seg fault on non-PCM wav files
- Fixed bug with reading wav files that have stuff after the data chunk
- Fixed Windows "no such file" bug
- Fixed small memory leak
- Fixed cosmetic bug with negative gains
- Fixed bad basename regexp in normalize-mp3 script
- Fixed --oggdecode option in normalize-mp3 script
- Turned audiofile support on by default
- Upgraded to latest GNU autotools
<<less
Download (0.37MB)
Added: 2006-07-17 License: GPL (GNU General Public License) Price:
1201 downloads
A Simple Version Control System 0.9.6

A Simple Version Control System 0.9.6


A Simple Version Control System is an easy to install and easy to to use version/revision control system. more>>
A Simple Version Control System is an easy to install and easy to to use version/revision control system.
ASVCS differs from most other version control systems in that ASVCS is designed to keep track of files in place. ASVCS does not allow any changes to be made to files, all changes require the users to change files externally with FTP or SSH access.
ASVCS is very easy to setup and use. Users do not need to work with repository, branches, commit and check-out files. All a user needs to do is upload the changes files and click Update or if enabled just wait for it to be updated automatically.
ASVCS is ideal for small projects or personal use, though it can also be used by large project how do not need or want the complexity of most version control systems.
Main features:
- asy to install and use
- Written in PHP
- Can track binary or text files
- Automatic file tracking (requires cron support)
- Diffs of revisions
- Easy user access management
- Entirely Web based
- Skinable
- Open source (MIT/expat license)
<<less
Download (0.10MB)
Added: 2007-03-15 License: MIT/X Consortium License Price:
960 downloads
QCADesigner 2.0.3

QCADesigner 2.0.3


QCADesigner is a CAD-like tool for the design and simulation of circuits based on Quantum Cellular Automata. more>>
QCADesigner is the product of an ongoing research effort at the University of Calgary ATIPS Laboratory to create a design and simulation tool for Quantum Dot Cellular Automata (QCA). This tool is still under development and is provided free of cost to the research community "as is".
QCA is an emerging nanotechnology concept for the realization of a computer built with arrays of nano-scale QCA cells. These QCA cells are capable of performing all complex computational functions required for general-purpose computation.
QCA has been listed as one of the six emerging nanotechnologies with applications in future computers by the International Technology Roadmap For Semiconductors (ITRS). QCADesigner facilitates rapid design, layout and simulation of QCA circuits by providing powerful CAD features available in more complex circuit design tools.
Main features:
- Intuitive CAD-like user interface
- Easy drag-and-drop circuit design
- Encapsulated PostScript (EPS) printing
- Support for multiple layers (for signal crossover)
- Multilingual support (de hu ro fr - so far)
Enhancements:
- This is a minor bugfix release featuring an improved layer mapping dialog.
- However, the most important change is on the Windows front: The Windows version of QCADesigner now uses the Gaim version of the GTK+ Runtime Environment.
- The new version allows you to upgrade from the dropline.net version of GTK+.
<<less
Download (2.5MB)
Added: 2005-08-04 License: GPL (GNU General Public License) Price:
1547 downloads
Linux in a window of Windows 4.0-r0

Linux in a window of Windows 4.0-r0


Linux in a window of Windows. Run the Debian Linux appliance in the free VMware Player side by side with Windows. This is a full desktop Gnome install... more>> <<less
Download (455993KB)
Added: 2009-04-13 License: Freeware Price: Free
196 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5