Main > Free Download Search >

Free windows 2000 software for linux

windows 2000

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 299
GraphicsMagick 1.3.6

GraphicsMagick 1.3.6


GraphicsMagick provides you with an excellent and must-have product which is the swiss army knife of image processing. more>>

GraphicsMagick 1.3.6 provides you with an excellent and must-have product which is the swiss army knife of image processing. Comprised of 259K physical lines (according to David A. Wheeler's SLOCCount) of source code in the base package (or 900K including 3rd party libraries). It provides a robust and efficient collection of tools and libraries which support reading, writing, and manipulating an image in over 88 major formats including important formats like DPX, GIF, JPEG, JPEG-2000, PNG, PDF, PNM, and TIFF.

Image processing is multi-threaded using OpenMP so that CPU-bound tasks scale linearly as processor cores are added. OpenMP support requires compilation with GCC 4.2 (or later), or use of any C compiler supporting at least the OpenMP 2.0 specification.

GraphicsMagick is quite portable, and compiles under almost every general purpose operating system that runs on 32-bit or 64-bit CPUs. GraphicsMagick is available for virtually any Unix or Unix-like system, including Linux. It also runs under Windows 2000 and later (Windows 2000, XP, and Vista), and MacOS-X. The source code still supports execution under Windows '98.
GraphicsMagick supports huge images and has been tested with gigapixel-size images. GraphicsMagick can create new images on the fly, making it suitable for building dynamic Web applications. GraphicsMagick may be used to resize, rotate, sharpen, color reduce, or add special effects to an image and save the result in the same or differing image format. Image processing operations are available from the command line, as well as through C, C++, Perl, PHP, Tcl, Ruby, or Windows COM programming interfaces. With some modification, language extensions for ImageMagick may be used.

GraphicsMagick is originally derived from ImageMagick 5.5.2 but has been completely independent of the ImageMagick project since then. Since the fork from ImageMagick in 2002, many improvements have been made (see news) by many authors using an open development model but without breaking the API or utilities operation.

Major Features:

  1. Convert an image from one format to another (e.g. TIFF to JPEG)
  2. Resize, rotate, sharpen, color reduce, or add special effects to an image
  3. Create a montage of image thumbnails
  4. Create a transparent image suitable for use on the Web
  5. Turn a group of images into a GIF animation sequence
  6. Create a composite image by combining several separate images
  7. Draw shapes or text on an image
  8. Decorate an image with a border or frame
  9. Describe the format and characteristics of an image
<<less
Added: 2009-07-26 License: MIT/X Consortium Lic... Price: FREE
1 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
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
WendzelNNTPd 1.2.1

WendzelNNTPd 1.2.1


The WendzelNNTPd is a very tiny Usenet server. more>> Welcome on Wendzel.de, the home of the WendzelNNTPd -- an open source Usenet server software for Linux, BSD and Windows written by Steffen Wendzel.The WendzelNNTPd is a very tiny Usenet server. While being very secure it only supports the most important NNTP commands. It is IPv6-ready, runs on *nix-like systems and Win32 too. It also includes an Qt based GUI.
Features
* Free & Open
o GPLv3 Licensed Open Source Software
o Binary download, source code download and WebSVN available
* Portability
o runs on 32-Bit Windows 2000/XP systems (Vista not tested)
o runs on Linux
o runs on BSD
* Tiny
o does only implement the most important NNTP commands + authentication commands
o only about 3.800 lines of C and C++ code (for everything: the daemon, the admin tool and the GUI)
o designed for small environments (at home, small companies, workgroups, customer support)
o based on SQLite3 (MySQL or PostgreSQL support for medium/big size environments in planing)
* Easy to Use
o The main target on the development of the WendzelNNTPd was to create an Usenet server everybody can use.
o Qt GUI is available
* Other Features
o IPv6-ready (not the Windows version since Microsoft has no real IPv6 support)
o Can produce RSS overview output of the latest postings for easy website integration and such things!
* Hints
o Try out my Korallenriff software if you like WendzelNNTPd. Korallenriff can fetch NNTP messages and stores them in a database what makes web archives of NNTP postings and the like possible!
<<less
Download (65KB)
Added: 2009-04-02 License: Freeware Price:
204 downloads
 
Other version of WendzelNNTPd
WendzelNNTPd 1.0.1Main features: Portability - runs on 32-Bit Windows 2000/XP systems (Vista not tested) - runs on Linux - runs on BSD Tiny - does only implement the most important NNTP commands + authentication
License:GPL v3
Download (MB)
836 downloads
Added: 2007-07-10
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
Time::Piece 1.11

Time::Piece 1.11


Time::Piece is a Perl module that contains Object Oriented time objects. more>>
Time::Piece is a Perl module that contains Object Oriented time objects.

SYNOPSIS

use Time::Piece;

my $t = localtime;
print "Time is $tn";
print "Year is ", $t->year, "n";

This module replaces the standard localtime and gmtime functions with implementations that return objects. It does so in a backwards compatible manner, so that using localtime/gmtime in the way documented in perlfunc will still return what you expect.

The module actually implements most of an interface described by Larry Wall on the perl5-porters mailing list here: http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2000-01/msg00241.html

USAGE

After importing this module, when you use localtime or gmtime in a scalar context, rather than getting an ordinary scalar string representing the date and time, you get a Time::Piece object, whose stringification happens to produce the same effect as the localtime and gmtime functions. There is also a new() constructor provided, which is the same as localtime(), except when passed a Time::Piece object, in which case its a copy constructor. The following methods are available on the object:

$t->sec # also available as $t->second
$t->min # also available as $t->minute
$t->hour # 24 hour
$t->mday # also available as $t->day_of_month
$t->mon # 1 = January
$t->_mon # 0 = January
$t->monname # Feb
$t->month # same as $t->monname
$t->fullmonth # February
$t->year # based at 0 (year 0 AD is, of course 1 BC)
$t->_year # year minus 1900
$t->yy # 2 digit year
$t->wday # 1 = Sunday
$t->_wday # 0 = Sunday
$t->day_of_week # 0 = Sunday
$t->wdayname # Tue
$t->day # same as wdayname
$t->fullday # Tuesday
$t->yday # also available as $t->day_of_year, 0 = Jan 01
$t->isdst # also available as $t->daylight_savings

$t->hms # 12:34:56
$t->hms(".") # 12.34.56
$t->time # same as $t->hms

$t->ymd # 2000-02-29
$t->date # same as $t->ymd
$t->mdy # 02-29-2000
$t->mdy("/") # 02/29/2000
$t->dmy # 29-02-2000
$t->dmy(".") # 29.02.2000
$t->datetime # 2000-02-29T12:34:56 (ISO 8601)
$t->cdate # Tue Feb 29 12:34:56 2000
"$t" # same as $t->cdate

$t->epoch # seconds since the epoch
$t->tzoffset # timezone offset in a Time::Seconds object

$t->julian_day # number of days since Julian period began
$t->mjd # modified Julian date (JD-2400000.5 days)

$t->week # week number (ISO 8601)

$t->is_leap_year # true if it its
$t->month_last_day # 28-31

$t->time_separator($s) # set the default separator (default ":")
$t->date_separator($s) # set the default separator (default "-")
$t->day_list(@days) # set the default weekdays
$t->mon_list(@days) # set the default months

$t->strftime(FORMAT) # same as POSIX::strftime (without the overhead
# of the full POSIX extension)
$t->strftime() # "Tue, 29 Feb 2000 12:34:56 GMT"

Time::Piece->strptime(STRING, FORMAT)
# see strptime man page. Creates a new
# Time::Piece object

<<less
Download (0.020MB)
Added: 2007-08-21 License: Perl Artistic License Price:
795 downloads
HTML::Tree::AboutObjects 3.23

HTML::Tree::AboutObjects 3.23


HTML::Tree::AboutObjects is an article: Users View of Object-Oriented Modules. more>>
HTML::Tree::AboutObjects is an article: "Users View of Object-Oriented Modules".

SYNOPSIS

# This an article, not a module.

The following article by Sean M. Burke first appeared in The Perl Journal #17 and is copyright 2000 The Perl Journal. It appears courtesy of Jon Orwant and The Perl Journal. This document may be distributed under the same terms as Perl itself.

<<less
Download (0.11MB)
Added: 2007-08-15 License: Perl Artistic License Price:
800 downloads
HTML::CalendarMonthDB 1.01

HTML::CalendarMonthDB 1.01


HTML::CalendarMonthDB is a Perl Module for Generating Persistant HTML Calendars. more>>
HTML::CalendarMonthDB is a Perl Module for Generating Persistant HTML Calendars.

INTERFACE METHODS

* dbname (name of database to use, required if you wish to use a
database)
* dbuser (database user, default nobody)
* dbpass (database user password, default )
* dbcalendar (database calendar name, default )
* dbclient (database calendar client name, default )
* dbhost (database host name, default )
# Examples:
# Create a calendar for this month.
$cal = new HTML::CalendarMonthSimple(); # not persistant
# One for a specific month/year
$cal = new HTML::CalendarMonthSimple(month=>2,year=>2000); # not persistant
# One for "the current month" in 1997
$cal = new HTML::CalendarMonthSimple(year=>1997); # not persistant

# One for a specific month/year, to use database specified
$cal = new HTML::CalendarMonthSimple(month=>2,year=>2000,dbname=>test,dbuser=>postgres,dbcalendar=>testcal,dbclient=>testClient);

<<less
Download (0.024MB)
Added: 2007-08-07 License: Perl Artistic License Price:
808 downloads
AutoQ3D 1.36b

AutoQ3D 1.36b


AutoQ3d a QT quick 3d model editor program for Linux. more>>
AutoQ3d project a QT quick 3d model editor program for Linux.
Main features:
- Drawing tools for creating points, lines, polylines, triangles, rectangles.
- Import DXF File Format (DXF 2004, 2000, R14).
- Export DXF File Format (DXF 2000).
- Import MD2 File Format (Quake File Format).
- Powerful selection and modification tools (move, scale, stretch, rotate, mirror, zoom, pan,...).
- Snapping to objects (endpoints, centers, intersections,...).
- Console for coordinate positioning and launching commands.
<<less
Download (MB)
Added: 2007-08-06 License: GPL (GNU General Public License) Price:
816 downloads
mod_fcgid 2.2

mod_fcgid 2.2


mod_fcgid has a new process management strategy, which concentrates on reducing the number of fastcgi server. more>>
mod_fcgid is an Apache module that has a new process management strategy, which concentrates on reducing the number of fastcgi server, and kick out the corrupt fastcgi server as soon as possible.

Binary compatibility to mod_fastcgi
You dont need to recompile your existing fastcgi programs, what you need to do is install the module and make it work.

Strict control on process spawn
Every request handler of Apache (It may be a process, or a thread, depending on the MPM) knows about how many existing fastcgi servers are running (with the help of share memory) , and the request handlers collaborate with each other to make sure over-spawning is not going to happen.

Simple spawning-speed control strategy
Its a score-based strategy, the score increases while a process is spawned or terminated, and decreases as time progresses;while the score is higher than the score maximum,the spawning will be held. Thus it can make a prompt response to the requests especially when the system starts up: on the other hand, prevent the failure resulted from the immediate termination of the applications.

Fastcgi server error detection
The fastcgi server does not share the same UNIX domain socket (or named pipe, in Windows), every fastcgi server has a unique path listening on. That makes it easy to kick out the corrupt fastcgi server.

Portable
Use the Apache APR library as much as possible, and split the portable and un-portable source code. All un-portable code are organized in arch directory. Now the module is tested on Linux, FreeBSD( included in FreeBSD port now), Windows 2000 and Solaris.

PHP supported
PHP is NOT recommended to work with multithreaded Apache2(worker MPM and WinNT MPM, for example), because some PHP extensions( or 3rd party library they are using) are not guaranteed thread-safe. PHP running with FastCGI mode is a solution to this problem.

<<less
Download (0.050MB)
Added: 2007-08-02 License: GPL (GNU General Public License) Price:
816 downloads
audit daemon 1.5.6

audit daemon 1.5.6


audit package contains the user-space utilities for creating audit rules. more>>
audit package contains the user-space utilities for creating audit rules. As well as for storing and searching the audit records generate by the audit subsystem in the Linux 2.6 kernel.
Usage:
Examples usage of utilities:
General:
Window 1:
./auditd
Window 2 (you dont have to have the daemon running to try this, but
enabled has to be 1):
./auditctl -s
./auditctl -a entry,always -S open
ls
./auditctl -d entry,always -S open
Identity tracking:
./auditctl -a exit,always -S all -F loginuid=2000
./auditctl -L 2000,"test uid"
Enhancements:
- Updates were made to system-config-audit. auditctl was updated to better handle watching of directories with older kernels.
- Memory leaks and an invalid free in auditd were fixed along with interpretations in auparse.
<<less
Download (0.29MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
824 downloads
ILIAS 3.6.10

ILIAS 3.6.10


ILIAS project is a platform for Web-based training. more>>
ILIAS project is a platform for Web-based training.

It is being developed at the University of Cologne, in Germany, using PHP and MySQL.

It has been available since September 2000 as open software software under the GPL.

The systems core is an authoring tool for creating courses.

Other main components include personal desktops, a mail system, newsgroups, a group system, and system administration.

<<less
Download (36MB)
Added: 2007-07-26 License: GPL (GNU General Public License) Price:
828 downloads
mrtg-ping-probe 2.2.0

mrtg-ping-probe 2.2.0


mrtg-ping-probe project monitors round trip time and packet loss to another host. more>>
mrtg-ping-probe project monitors round trip time and packet loss to another host. Still on my TODO list: add own min/max/avg rtt calculation, add perl ping module, add rping and rsh support...
mrtg-ping-probe is a ping probe for MRTG 2.x. It is used to monitor the round trip time and packet loss to networked devices. MRTG uses its output to generate graphs visualizing minimum and maximum round trip times or packet loss.
mrtg-ping-probe depends on the following software being installed on your system: perl (at least version 5.6.1), mrtg (I use version 2.8.8, though any mrtg 2.x version should work), and a ping program that displays a summary of the round trip times upon termination or timeout.
mrtg-ping-probe runs on AIX, BSD/OS 2.1, FreeBSD/2.2.x, IRIX/6.2, Linux, Mac OS X (Darwin 5.4), NetBSD, OpenBSD, OS/2, OSF1 V3.2, Solaris 1.1.2 (SunOS 4.1.4), Solaris 2.5.1 (SunOS 5.5.1), Solaris 7 (SunOS 5.7), Solaris 8 (SunOS 5.8), Solaris 9 (SunOS 5.9), HP-UX 9, Windows 98, and Windows 2000 (english, french, portugesee, and spanish locales).
If you install the Windows ping program that comes with Windows 98, Windows 2000, or WinSock 2.x, mrtg-ping-probe will also run on Windows 95 and Windows 4.0.
Support for additional systems is usually easy to add, as described in the file INSTALL.
Act responsible: do not use mrtg-ping-probe to ping devices without the owners permission. Just imagine 10,000 people would decide to ping your hosts ... mrtg-ping-probe is meant to be used within your network to get round trip time performance figures for your network.
Usage: mrtg-ping-probe [-hsvV] [-d deadtime] [-k count] [-l length] [-o ping_options] [-p [factor*]{min|max|avg|loss|integer}/[factor*]{min|max|avg|loss|integer}] [-r [rsh:][user@]host[:osname]] [-t timeout] host
Enhancements:
- new platforms supported: italian Windows 2000 locale.
- bugfixes: on Windows actually return deadtime when we lost all packets, not 0. the ping child process should actually be killed now on Unix platforms.
- changes: ***** Possible Incompatability ***** raised minimum required perl version to 5.6.1. lots of typos fixed.
<<less
Download (0.036MB)
Added: 2007-07-16 License: GPL (GNU General Public License) Price:
554 downloads
PgAdmin III 1.6.2 / 1.8.0 Beta 1

PgAdmin III 1.6.2 / 1.8.0 Beta 1


pgAdmin III is designed to answer the needs of all users, from writing simple SQL queries to developing complex databases. more>>
pgAdmin III is designed to answer the needs of all users, from writing simple SQL queries to developing complex databases.
The graphical interface of PgAdmin III supports all PostgreSQL features and makes administration easy.
The application also includes a query builder, an SQL editor, a server-side code editor and much more. pgAdmin III is released with an installer and does not require any additional driver to communicate with the database server.
pgAdmin III is developed by a community of database specialists around the world and is available in more than 30 languages. It is Free Software released under the Artistic License.
Main features:
Multiplatform
- MS Windows 2000 & XP
- GNU/Linux
- FreeBSD
- MacOsX and SunOS ports are under development.
Designed for PostgreSQL latest versions
- PostgreSQL 7.3
- PostgreSQL 7.4
- PostgreSQL 8.0
On-line help
- PostgreSQL documentation (on-line and off-line)
- SQL command guide
Multilingual interface
- pgAdmin III user interface is translated in more than 30 languages. A detailed list of supported languages is available on the Translation page.
Data access
- Native PostgreSQL acccess (no ODBC layer needed)
- Powerful query tool with color syntax highlight
- Very fast datagrid for display/entry of data
Access to all PostgreSQL objects
Objects are displayed with their SQL definition.
- Aggregates
- Casts
- Columns
- Constraints
- Conversions
- Databases
- Domains
- Functions
- Groups
- Indexes
- Tablespaces
- Server-side languages (like PLpgsql, PLpython, PLperl, etc...)
- Operator classes
- Operators
- PostgreSQL servers
- Rules
- Schemas
- Sequences
- Tables
- Trigger function
- Types
- Users
- Views
Multibyte support
- pgAdmin III supports most PostgreSQL server-side encodings:
- SQL_ASCII
- EUC_JP, EUC_CN, EUC_KR, EUC_TW
- JOHAB
- LATIN1, LATIN2, LATIN3, LATIN4, LATIN5, LATIN6, LATIN7, LATIN8, LATIN9, LATIN10
- ISO_8859_5, ISO_8859_6, ISO_8859_7, ISO_8859_8
- UNICODE UTF-8
- MULE_INTERNAL
- KOI8
- WIN
- ALT
- WIN1256
- TCVN
- WIN874
<<less
Download (6.2MB)
Added: 2007-07-16 License: Artistic License Price:
513 downloads
Roadnav 0.18

Roadnav 0.18


Roadnav is an in-car navigation system capable of running on a variety of operating systems. more>>
Roadnav is an in-car navigation system that can run on a variety of operating systems like Linux, Windows, and Mac OS X.
Roadnav can obtain a cars present location from a GPS unit, plot street maps of the area, and provide verbal turn by turn directions to any location in the USA.
Roadnav uses the free TIGER/Line files from the US Census Bureau to build the maps, along with the GNIS state and topical gazetteer data from the USGS to identify locations.
Main features:
- Generates street level maps for the US
- Interfaces with GPS units to display your position in real time
- Verbal turn by turn directions to any place in the US. Automatically recomputes directions if you miss a turn.
- On screen keyboard
- 3D (drivers perspective) view mode
- Daytime and nighttime color schemes
- Automatic day/night mode switching
- Plots nearby landmarks and points of interest
- Can operate offline (without an Internet connection)
- Antialiased output
- Supports multiple operating systems including Windows, Linux, and Mac OS X
- Uses freely available data from the US Census Bureau and the USGS
- Appearance can be customized with skins
- Can output status information to LCD devices through LCDproc
Enhancements:
Enhancements:
- Adds option to Preferences to enable gpsd buffering (reduces jitter).
- Adds experimental GPX import support.
- Disk usage reduced by ~30%.
- Adds GPS serial initialization string option to Preferences.
- Adds preference to override default map directory.
- Adds option for username/password proxy authentication.
- Adds "Use System Proxy Settings" preference, which reads proxy settings from the HTTP_PROXY environmental variable.
Bug Fixes:
- Fixes Delete button in Waypoints dialog when no waypoints exist.
- Workaround for buggy serial implementations.
- Fixes Windows 2000 compatibility.
- Fixes i18n issue in OSM code.
- Improved address look up.
- Eliminates IPP error messages when printer is not configured.
- Improved compatibility with DeLorme Tripmate and Earthmate GPS units.
- Win32 floating point model changed from fast to precise. Should resolve problems calculating routes.
- Fixes focusing issue in keyboard dialog.
Developer Visible Changes:
- MapControlData_Tiles index files eliminated.
- Direct access to Point::m_fLong and Point::m_fLat eliminated. Use the Point::Set* and Point::Get* functions instead.
Misc:
- Compiled maps now organized in a more human readable format.
- Eliminates TIGER/Line 2006 First Edition from search path.
- Proxy settings now on their own preferences page.
- When maps have to be upgraded, adds option to not upgrade map files and immediately terminate Roadnav instead.
- Small map labels now have a solid background instead of a cross hatch.
<<less
Download (2.5MB)
Added: 2007-06-30 License: GPL (GNU General Public License) Price:
851 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5