Main > Free Download Search >

Free windows vista 32 bit software for linux

windows vista 32 bit

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1252
KDM Vista like Theme

KDM Vista like Theme


KDM Vista like Theme is a very nice KDM theme that looks like Vistas one. more>>
KDM Vista like Theme is a very nice KDM theme that looks like Vistas one.
I didnt see any Vista like KDM login theme... I wanted one so I tried.
Enhancements:
- There are now two themes. One for widescreen which is the same as the previous one and one for 4/3 screen. This new one has been successfully tested on a 1600 x 1200 screen. If you have other resolution, please try and report if it works.
<<less
Download (1.1MB)
Added: 2007-04-12 License: GPL (GNU General Public License) Price:
979 downloads
Vista Basic 2

Vista Basic 2


Vista Basic provides a theme similar to Microsoft Vista. more>>
Vista Basic provides a theme similar to Microsoft Vista.

window borders similar to those of Microsoft Vista when using non Aero compatible software (such as JRE 6 or Photoshop CS 2)

<<less
Download (0.015MB)
Added: 2007-04-17 License: Public Domain Price:
678 downloads
Linux Broken Vista 1.01

Linux Broken Vista 1.01


This provides a special Linux Broken Vista Icon Theme. more>> <<less
Added: 2009-03-06 License: Creative Commons Att... Price: FREE
1 downloads
VistaBut 1.2

VistaBut 1.2


VistaBut provies a Vista feel but some custom widgets. more>>
VistaBut provies a Vista feel but some custom widgets.
I upload icon theme soon (if finished...) XFCE4 theme included!
Change menubar colours & fonts:
edit the Gtkrc file in theme dir and modify:
################Select your desired menubar colour!!!
#include "menubar-light.rc"
#include "menubar-blue.rc"
include "menubar-green.rc"
Enhancements:
- Icons removed. (M$ Copyright)
<<less
Download (MB)
Added: 2007-03-02 License: Freeware Price:
612 downloads
3Delight for 32-bit Linux 7.0

3Delight for 32-bit Linux 7.0


3Delight is a renderer to produce photo-realistic images on 32-bit linux. more>> 3Delight is a fast, high quality, RenderMan-compliant renderer designed to produce photo-realistic images in demanding production environments. The renderer was introduced to the public in the year 2000 after being used for more than a year as the sole renderer in a sister production company. It is now widely used and earning a reputation as a benchmark in rendering technology.
Some of its features include ray tracing, global illumination (including photon mapping, final gathering and high dynamic range lighting and rendering), realistic motion blur, depth of field, complete geometry support (including efficient rendering of hair and fur), programmable shaders, quality antialiasing and antialiased shadow maps. Advanced features include Ri filtering, network caching and highly customizable workflow.
Follows a summary of 3Delights features.
-RenderMan Compliant
-RenderMan Shading Language Support
-Rendering Features
-Geometry Support
-Fast and Efficient Rendering
-Extensible Display Drivers
-Multi-platform Support with Specific Code Optimization
<<less
Download (11.4MB)
Added: 2009-04-11 License: Freeware Price: Free
195 downloads
Vista-Inspirate 1.0

Vista-Inspirate 1.0


Vista-Inspirate provides a Vista-looking icon pack for KDE and Gnome. more>>
Vista-Inspirate provides a Vista-looking icon pack for KDE and Gnome.

This is an icon theme based on my other theme "nuoveXT" and "Windows Vista".

It is strongly recommended to have NuoveXT (1.5) installed to use this theme, simply because it inherits it (all mimetypes for instance).

<<less
Download (MB)
Added: 2007-03-02 License: GPL (GNU General Public License) Price:
643 downloads
File::Stat::Bits 1.00

File::Stat::Bits 1.00


File::Stat::Bits - stat bit mask constants. more>>
File::Stat::Bits - stat bit mask constants.

SYNOPSIS:

use File::stat;
use File::Stat::Bits;

my $st = stat($file) or die "Cant stat $file: $!";

if ( S_ISCHR($st->mode) ) {
my ($major, $minor) = dev_split( $st->rdev );

print "$file is character device $major:$minorn";
}

printf "Permissions are %04on", $st->mode & ALLPERMS;

(Too many S_IF* constants to example)

Lots of Perl modules use the Unix file permissions and type bits directly in binary form with risk of non-portability for some exotic bits. Note that the POSIX module does not provides all needed constants and I cant wait when the POSIX module will be updated.

This separate module provides file type/mode bit and more constants from sys/stat.ph and sys/sysmacros.ph without pollution callers namespace by other unneeded symbols from these headers. Most of these constants exported by this module are Constant Functions (see perlsub).

Since some of Perl builds does not include these converted headers, the build procedure will generate it for itself in the its own lib directory.

This module also should concentrate all portability and compatibility issues.

CONSTANTS

File type bit masks (for the st_mode field):

S_IFMT bitmask for the file type bitfields
S_IFDIR directory
S_IFCHR character device
S_IFBLK block device
S_IFREG regular file
S_IFIFO fifo (named pipe)
S_IFLNK symbolic link
S_IFSOCK socket
=cut

sub S_IFMT () { File::Stat::Bits::dirty::S_IFMT () }
sub S_IFDIR () { File::Stat::Bits::dirty::S_IFDIR () }
sub S_IFCHR () { File::Stat::Bits::dirty::S_IFCHR () }
sub S_IFBLK () { File::Stat::Bits::dirty::S_IFBLK () }
sub S_IFREG () { File::Stat::Bits::dirty::S_IFREG () }
sub S_IFIFO () { File::Stat::Bits::dirty::S_IFIFO () }
sub S_IFLNK () { File::Stat::Bits::dirty::S_IFLNK () }
sub S_IFSOCK() { File::Stat::Bits::dirty::S_IFSOCK() }


File access permission bit masks (for the st_mode field):

S_IRWXU mask for file owner permissions
S_IRUSR owner has read permission
S_IWUSR owner has write permission
S_IXUSR owner has execute permission
S_ISUID set UID bit

S_IRWXG mask for group permissions
S_IRGRP group has read permission
S_IWGRP group has write permission
S_IXGRP group has execute permission
S_ISGID set GID bit

S_IRWXO mask for permissions for others
S_IROTH others have read permission
S_IWOTH others have write permisson
S_IXOTH others have execute permission
S_ISVTX sticky bit

Common mode bit masks:

ACCESSPERMS 0777
ALLPERMS 07777
DEFFILEMODE 0666
=cut

sub S_IRWXU() { File::Stat::Bits::dirty::S_IRWXU() }
sub S_IRUSR() { File::Stat::Bits::dirty::S_IRUSR() }
sub S_IWUSR() { File::Stat::Bits::dirty::S_IWUSR() }
sub S_IXUSR() { File::Stat::Bits::dirty::S_IXUSR() }
sub S_ISUID() { File::Stat::Bits::dirty::S_ISUID() }

sub S_IRWXG() { File::Stat::Bits::dirty::S_IRWXG() }
sub S_IRGRP() { File::Stat::Bits::dirty::S_IRGRP() }
sub S_IWGRP() { File::Stat::Bits::dirty::S_IWGRP() }
sub S_IXGRP() { File::Stat::Bits::dirty::S_IXGRP() }
sub S_ISGID() { File::Stat::Bits::dirty::S_ISGID() }

sub S_IRWXO() { File::Stat::Bits::dirty::S_IRWXO() }
sub S_IROTH() { File::Stat::Bits::dirty::S_IROTH() }
sub S_IWOTH() { File::Stat::Bits::dirty::S_IWOTH() }
sub S_IXOTH() { File::Stat::Bits::dirty::S_IXOTH() }
sub S_ISVTX() { File::Stat::Bits::dirty::S_ISVTX() }

sub ACCESSPERMS() { S_IRWXU|S_IRWXG|S_IRWXO }
sub ALLPERMS() { S_ISUID|S_ISGID|S_ISVTX|ACCESSPERMS }
sub DEFFILEMODE() { S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH }

FUNCTIONS

File type test macros (for the st_mode field):

S_ISDIR ( mode ) directory?
S_ISCHR ( mode ) character device?
S_ISBLK ( mode ) block device?
S_ISREG ( mode ) regular file?
S_ISFIFO( mode ) fifo (named pipe)?
S_ISLNK ( mode ) is it a symbolic link?
S_ISSOCK( mode ) socket?

All returns boolean value.


$major = major( $st_rdev )

Returns major device number of st_rdev


$minor = minor( $st_rdev )

Returns minor device number of st_rdev


($major, $minor) = dev_split( $st_rdev )

Splits st_rdev to major and minor device numbers


$st_rdev = dev_join( $major, $minor )

Makes st_rdev from major and minor device numbers (makedev())

<<less
Download (0.009MB)
Added: 2006-05-30 License: Perl Artistic License Price:
1242 downloads
linoleum_linux32 1.14

linoleum_linux32 1.14


linoleum_linux32 is a run-time module for the L.in.o.l.e.u.m. universal low-level programming language. more>>
linoleum_linux32 project is a run-time module for the L.in.o.l.e.u.m. universal low-level programming language.

This module allows compilation of Linoleum programs to run in the 32-bit versions of the GNU/Linux operating system.
<<less
Download (0.12MB)
Added: 2007-03-21 License: GPL (GNU General Public License) Price:
948 downloads
Crystal Vista XT Paolo Icon Mod 1.5

Crystal Vista XT Paolo Icon Mod 1.5


Crystal Vista XT Paolo Icon Mod is a mouse cursor theme. more>>
Crystal Vista XT Paolo Icon Mod is NOT my theme, I modified Vista Inspirate, Crystal Clear, Nuove XT and other Icons like Debian Icons, Firefox Alternative and much more.

I take my favourite icons from these Icons-theme and I create my Mod, Crystal Vista XT Paolo Mod.

Vista Inspirate is created by Saki
(http://www.kde-look.org/content/show.php?content=31585)

Crystal Clear is created by Everaldo
(http://www.kde-look.org/content/show.php?content=25668)

Nuove XT is created by Saki
(http://www.kde-look.org/content/show.php?content=26449)

OsX is created by kiddo
(http://www.gnome-look.org/content/show.php?content=31618)

Debian Icons is created by OnkelchenTobi
(http://www.kde-look.org/content/show.php?content=26430)

Sparkling Icon Folder (for non debian linux) is created by flow:
(http://www.kde-look.org/content/show.php?content=9245)
<<less
Download (17.6MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
690 downloads
sunrise 0.2

sunrise 0.2


sunrise is a SuperKaramba theme that shows sunrise and sunset times. more>>
sunrise is a SuperKaramba theme that shows sunrise and sunset times.

Its a shameless port of the wmSun dockapp.

- if your timezone is not five characters (e.g. GMT-2) then you will have to fiddle a bit with the theme to get the output straight.
- you MUST edit the theme to set the coordinates of the city where you live.

<<less
Download (0.006MB)
Added: 2006-09-29 License: GPL (GNU General Public License) Price:
1123 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.1Linux, BSD and Windows written by Steffen Wendzel. WendzelNNTPd is a perfect solution for many ... Main features: Portability - runs on 32-Bit Windows 2000/XP systems (Vista not tested) - runs
License:GPL v3
Download (MB)
836 downloads
Added: 2007-07-10
MEPIS KDE 4 Beta 1 Live DVD

MEPIS KDE 4 Beta 1 Live DVD


SimplyMEPIS is a ready to go desktop operating system for PCs and Apple computers that have Intel or AMD 32 or 64 bit processors more>>
SimplyMEPIS is a ready to go desktop operating system for PCs and Apple computers that have Intel or AMD 32 or 64 bit processors. SimplyMEPIS project is easier than Windows Vista and intuitive for Windows XP and Windows 98 users. MEPIS includes all of the applications that most users need and want. SimplyMEPIS is designed to replace or work side by side with Vista or XP on PCs. MEPIS offers Apple users an opportunity to have it all: OSX, MEPIS 32 and/or 64, and if necessary Windows running in a virtual machine sandbox.

Warren Woodford of MEPIS has built KDE 4 Beta 1 live DVDs to verify the compatibility of KDE 4 with SimplyMEPIS 7.x. Both 32-bit and 64-bit editions are available. They are about 1 GB each and include all of the KDE 4 applications that are working at this time. KDE 4 Beta 1 is a very early release and is meant for developers, testers, and reviewers. The live DVDs were built using a MEPIS 7.0 Etch core and include the usual MEPIS kernel and hardware compatibility features. Since KDE 4 is functionally different than KDE 3 and also in an early beta state, a minimal KDE 3 installation remains on the disk to facilitate exploration by the user.
<<less
Download (963MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
491 downloads
RhythmLab 0.32

RhythmLab 0.32


RhythmLab is a drum-machine-like program which allows you to compose and visualize polyrhythms. more>>
RhythmLab is a drum-machine-like program which allows you to compose and visualize polyrhythms (rhythms in which different voices divide a measure into different numbers of beats).

RhythmLab was written because I couldnt find any software which would easily let me construct and visualize polyrhythms (rhythms in which a measure is divided into different subdivisions in different voices: for example, 5 against 7). RhythmLab is distributed under the Gnu General Public Licence as a tarball (click here to download) containing source and an x86 Linux executable linked against libc6, gtk 1.2.1, and audiofile 0.16. Youll probably want some percussion samples, as well (see under Links). The code is intended to be portable to other Linux architectures and other POSIX platforms supporting OSS and pthreads, but hasnt been tested (patches are welcome).

Command-line options:

c nchan 1 for request mono, 2 for request stereo: default 2.
d filename specify PCM output device: default /dev/dsp.
f format(decimal) request specified OSS audio format (AFMT_* from soundcard.h). By default, we prefer native-endian 16-bit over reverse-endian 16-bit over 8-bit, and signed over unsigned for all of these. If you experience trouble with sound output, you might want to try forcing 8-bit unsigned, which is 8.
m volume set maximum relative volume for volume scale: default 11.
p period set maximum period for period scales: default 20.
o filename output raw samples to a file. Mostly for debugging, but you could also use sox to convert the raw samples to some more useful format.
r rate set sampling rate: default 44100.
s duration run for duration seconds and stop.
v output details of format negotiation with OSS driver.
<<less
Download (0.35MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1193 downloads
DOOM 3 1.3.1.1304 Patch

DOOM 3 1.3.1.1304 Patch


DOOM 3 is a sci-fi horror masterpiece, DOOM 3 is like nothing you have experienced. more>>
DOOM 3 is a sci-fi horror masterpiece, DOOM 3 is like nothing you have experienced.
id Software has released a new patch for its FPS DOOM 3. This update brings your retail game to v1.3.1 and adds various fixes and improvements, Vista compatibility, and bringing back cross-platform multiplayer compatibility with the Mac.
Minimum System Requierments:
3D Hardware Accelerator Card Required - 100% DirectX 9.0b compatible 64MB Hardware Accelerated video card and the lateset drivers*.
English verision of Microsoft Windows 2000/XP
Pentium IV 1.5 GHz or Athlon XP 1500+ processoror higher
384MB RAM
8x Speed CD-ROM drive (1200KB/sec sustained transfer rate) and latest drivers
2.2GB of uncompressed free hard disk space (plus 400MB for Windows swap file)
100% DirectX 9.0b compatible 16-bit sound card and the latest drivers
100% Windows compatible mouse, keyboard, and latest drivers
DirectX 9.0b (included)
Multiplayer Requierments:
Internet (TCP/IP) and LAN (TCP/IP) play supported.
Internet play requires broadband connection and latest drivers
LAN play requires network interface card and latest drivers
Enhancements:
- Tested and improved Vista compatibility
- Fix a potential crash in physics
- Fix an issue with pak downloaded being immediately appended without filesystem restart
- Fixes to DNS lookup, reduced the stalls
- Updated the code to gcc 4.0 compliance, for Mac OSX universal binaries and GNU/Linux x86 binaries
- Threading implementation for Mac and Linux is more compliant with the Win32 behaviours
- Fix Alsa sound backend (Linux)
- Fixes to tty code (Linux)
<<less
Download (20.2MB)
Added: 2007-02-04 License: Freeware Price:
1642 downloads
Iconify 20051021

Iconify 20051021


Iconify plug-in converts a single layer of a single image into a multi-layered image ready to be saved as a Windows icon. more>>
Iconify plug-in converts a single layer of a single image into a multi-layered image ready to be saved as a Windows icon.

The new image will contain all standard sizes (16x16, 32x32, 48x48) at all standard bit depths (16 colors, 256 colors, 32-bit RGBA), with transparency support.

<<less
Download (MB)
Added: 2006-09-20 License: GPL (GNU General Public License) Price:
1130 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5