Main > Free Download Search >

Free sun solaris software for linux

sun solaris

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 866
Xfree86 4.7.0

Xfree86 4.7.0


XFree86 is an open source X11-based desktop infrastructure. more>>
XFree86 is an open source X11-based desktop infrastructure.

The XFree86 Project, Inc is a global volunteer organisation which produces XFree86, a freely redistributable open-source implementation of the X Window System since 1992.

XFree86 runs primarily on UNIX and UNIX-like operating systems like Linux, all of the BSD variants, Sun Solaris both native 32 and 64 bit support, Solaris x86, Mac OS X (via Darwin), SGIs Irix as well as other platforms like OS/2 and Cygwin.

What XFree86 does, is provide a client/server interface between the display hardware (those physical things like the mouse, keyboard, and video displays) and the desktop environment, (this is typically called a window manager as it deals with how X is displayed i.e. the overall appearance).

Yet X it goes beyond that and also gives the infrastructure and a standardized application interface (API). All of this, makes XFree86 platform-independent, network-transparent and extensible.
<<less
Download (MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
689 downloads
Asteroids 1.1

Asteroids 1.1


Asteroids is a simulation game where you have to shoot in some asteroids. more>>
Asteroids is a simulation game where you have to shoot in some asteroids. Asteroids is a clone of asteroids game.
Control your spaceship with the mouse, shoot rocks until they vaporize completely.
Installation:
I have tried to compile this programs on : Linux and Solaris.
On Linux and Solaris, simply type gmake (On Solaris, typing make will call Suns own make program, that is incompatible with the makefile).
Once the program has compiled, type ./game
Enhancements:
- Sound was added, proving that there is sound in the vacuum of space.
<<less
Download (0.032MB)
Added: 2005-12-21 License: GPL (GNU General Public License) Price:
1614 downloads
Sun::Solaris::Task 1.2

Sun::Solaris::Task 1.2


Sun::Solaris::Task is a Perl interface to Tasks. more>>
Sun::Solaris::Task is a Perl interface to Tasks.

SYNOPSIS

use Sun::Solaris::Task qw(:ALL);
my $taskid = gettaskid();

This module provides wrappers for the gettaskid(2) and settaskid(2) system calls.

Constants

TASK_NORMAL, TASK_FINAL.

Functions

settaskid($project, $flags)

The $project parameter must be a valid project ID and the $flags parameter must be TASK_NORMAL or TASK_FINAL. The parameters are passed through directly to the underlying settaskid() system call. The new task ID is returned if the call succeeds. On failure -1 is returned.

gettaskid()

This function returns the numeric task ID of the calling process, or undef if the underlying gettaskid() system call is unsuccessful.

Exports

By default nothing is exported from this module. The following tags can be used to selectively import constants and functions defined in this module:

:SYSCALLS settaskid() and gettaskid()

:CONSTANTS TASK_NORMAL and TASK_FINAL

:ALL :SYSCALLS and :CONSTANTS

<<less
Download (0.003MB)
Added: 2007-04-13 License: Perl Artistic License Price:
930 downloads
Sun::Solaris::Ucred 1.1

Sun::Solaris::Ucred 1.1


Sun::Solaris::Ucred is a Perl interface to User Credentials. more>>
Sun::Solaris::Ucred is a Perl interface to User Credentials.

SYNOPSIS

use Sun::Solaris::Ucred qw(:ALL);

This module provides wrappers for the Ucred-related system and library calls.

Functions

ucred_get($pid)

This function returns the credential of the process specified by $pid, if the process exists and the calling process is permitted to obtain the credentials of that process.

getpeerucred($fd)

If $fd is a connected connection oriented TLI endpoint, a connected SOCK_STREAM or SOCK_SEQPKT socket, getpeerucred will return the user credential of the peer at the time the connection was established, if availble.
ucred_geteuid($ucred)

This function returns the effective uid of a user credential, if available.
ucred_getruid($ucred)
This function returns the real uid of a user credential, if available.
ucred_getsuid($ucred)
This function returns the saved uid of a user credential, if available.
ucred_getegid($ucred)
This function returns the effective group of a user credential, if available.
ucred_getrgid($ucred)
This function returns the real group of a user credential, if available.
ucred_getsgid($ucred)
This function returns the saved group of a user credential, if available.
ucred_getgroups($ucred)
This function returns the list of supplemental groups of a user credential, if available. An array of groups is returned in ARRAY context; the number of groups is returned in SCALAR context.
ucred_getprivset($ucred, $which)
This function returns the privilege set specified by $which of a user credential, if available.

ucred_getpflags($ucred, $flags)

This function returns the value of a specific process flag of a user credential, if available.

ucred_getpid($ucred)
This function returns the process id of a user credential, if available.
ucred_getzoneid($ucred)

This function returns the zone id of a user credential, if available.

Exports

By default nothing is exported from this module. The following tags can be used to selectively import constants and functions defined in this module:

:SYSCALLS ucred_get(), getpeerucred()

:LIBCALLS ucred_geteuid(), ucred_getruid(), ucred_getsuid(),
ucred_getegid(), ucred_getrgid(), ucred_getsgid(),
ucred_getgroups(), ucred_getprivset(), ucred_getpflags(),
ucred_getpid(), ucred_getzone()

:CONSTANTS

:VARIABLES %PRIVILEGES, %PRIVSETS

:ALL :SYSCALLS, :LIBCALLS, and :CONSTANTS

<<less
Download (0.005MB)
Added: 2007-04-13 License: Perl Artistic License Price:
924 downloads
Sun::Solaris::Privilege 1.2

Sun::Solaris::Privilege 1.2


Sun::Solaris::Privilege is a Perl interface to Privileges. more>>
Sun::Solaris::Privilege is a Perl interface to Privileges.

SYNOPSIS

use Sun::Solaris::Privilege qw(:ALL);

This module provides wrappers for the Privilege-related system and library calls. Also provided are constants from the various Privilege-related headers and dynamically generated constants for all the privileges and privilege sets.

Functions

getppriv($which)

This function returns the process privilege set specified by $which.

setppriv($op, $which, $set)

This function modified the privilege set specified by $which in the as specified by the $op and $set arguments. If $op is PRIV_ON the privileges in $set are added to the set specified; if $op is PRIV_OFF, the privileges in $set are removed from the set specified; if $op is PRIV_SET, the specified set is made equal to $set.

getpflags($flag)

Returns the value associated with process $flag or undef on error. Possible values for $flag are PRIV_AWARE and PRIV_DEBUG.

setppflags($flag, $val)

Sets the process flag $flag to $val.

priv_fillset()

This returns a new privilege set with all privileges set.

priv_emptyset()

This returns a new empty privilege set.

priv_isemptyset($set)

This function returns whether $set is empty or not.

priv_isfullset($set)

This function returns whether $set is full or not.

priv_isequalset($a, $b)

This function returns whether sets $a and $b are equal.

priv_issubset($a, $b)

This function returns whether set $a is a subset of $b.

priv_ismember($set, $priv)

This function returns whether $priv is a member of $set.

priv_ineffect($priv)

This function returned whether $priv is in the process effective set.

priv_intersect($a, $b)

This function returns a new privilege set which is the intersection of $a and $b

priv_union($a, $b)

This function returns a new privilege set which is the union of $a and $b

priv_inverse($a)

This function returns a new privilege set which is the inverse of $a.

priv_addset($set, $priv)

This functon adds the privilege $priv to $set.

priv_copyset($a)

This function returns a copy of the privilege set $a.

priv_delset($set, $priv)

This function remove the privilege $priv from $set.

<<less
Download (0.006MB)
Added: 2007-04-13 License: Perl Artistic License Price:
924 downloads
Tablature 2.1

Tablature 2.1


Tablature is a set of tools that allows easy edition, publication and playback of Bass and Guitar Tablatures. more>>
Tablature is a set of tools that allows easy edition, publication and playback of Bass and Guitar Tablatures. Entirely written in Java.
It will work on next operating systems:
MacOS8 :
Microsoft Internet Explorer 4.1
Linux :
with JDK1.1.7 from Sun
Solaris :
with JDK1.1.7 from Sun
Other Unix(s) :
follow JDK ports link at http://java.sun.com/products/jdk
Enhancements:
- several bug fixing
- started the addition of the text-tab converter (not finished)
- documentation, packaging
<<less
Download (0.89MB)
Added: 2006-07-26 License: GPL (GNU General Public License) Price:
1193 downloads
Regular Statement String 2.5.7

Regular Statement String 2.5.7


Regular Statement String (RSS) provides several libraries in C, Java, and COM. more>>
Regular Statement String (RSS) provides several libraries in C, Java, and COM to implement and demonstrate the key-value development method using well-designed "strings" (RSS) as the media. Regular Statement String also shows a way to write "Process Oriented" applications.
Enhancements:
- This release adds an implementation for SUN Solaris (SPARC).
<<less
Download (0.33MB)
Added: 2007-04-12 License: Freeware Price:
926 downloads
Appctl 2.0.58.0.0 (Demo, Apache)

Appctl 2.0.58.0.0 (Demo, Apache)


Appctl is a framework for virtually any server software. more>>
Appctl is a framework for virtually any server software. It provides a central script called "ctl" which allows you to start, stop, restart, maintain, or query the current status of an application.
Appctl is meant as a completely generic replacement for application-specific startup/stop scripts. The project also supplies generic monitoring scripts for clusters, which can dramatically decrease clustering costs.
Enhancements:
- This fully integrated Apache/appctl package contains a SunPackage for Sun Solaris 10 on the SPARC architecture.
- This package was created to demonstrate the usage of appctl.
<<less
Download (3.3MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1196 downloads
archmbox 4.9.0

archmbox 4.9.0


archmbox is an email archiver. more>>
Archmbox is a simple email archiver written in perl; it parses one or more mailboxes, selects some or all messages and then performs specific actions on the selected messages.
At this time archmbox supports mbox and mbx mailbox formats.
Four different modes are available:
- list mode, which is useful to list all selected messages before archmbox performs the real operations (archiving or deleting)
- kill mode, if messages should be deleted from the mailbox(es) rather than archived
- archive mode, to archive the selected messages in a different mailbox
- copy mode, to copy the selected messages from the source mailbox
Messages selection is based upon a date criteria; an absolute date or a days offset can be specified. It is also possible to refine the selection using regular expressions on the header fields of the message.
All archived messages are stored in a new mailbox with the same name of the original one plus .archived as extension (this is the default, but can be changed); the archive mailbox can be saved in gz or bz2 compressed format as well.
Archmbox was successfully tested on the following platforms:
- Linux
- FreeBSD
- NetBSD
- OpenBSD
- MacOS X
- OpenDarwin
- Sun Solaris
A little hack is needed for Sun Solaris; please read here or the INSTALL file included with the distribution for further details.
<<less
Download (0.070MB)
Added: 2005-04-12 License: GPL (GNU General Public License) Price:
1655 downloads
Ogle DVD player 0.9.2

Ogle DVD player 0.9.2


Ogle DVD player is a DVD player for Solaris, *BSD, and Linux. more>>
Ogle is a real DVD player that supports DVD menus and navigation. It can access CSS-protected DVDs if you have libdvdcss installed, take screen shots, and view movies in fullscreen mode.
It handles angles correctly and automatically uses the correct aspect. You can switch subtitles and audio tracks. It runs on Linux, FreeBSD, NetBSD, OpenBSD, and Solaris.
Main features:
- Supports DVD menus and navigation.
- Reads from mounted, unmounted DVDs and hard drive.
- Reads encrypted and unencrypted DVDs using libdvdread/libdvdcss.
- A new MPEG2 decoder with MMX, Altivec and SUN Solaris mediaLib acceleration.
- Normal X11 and XFree86 Xvideo display support with subpicture overlay.
- Accelerated display on Sun FFB2+ cards.
- Audio and subpicture selection.
- Handles advanced subpicture commands such as fade/scroll and wipe.
- Detects and uses correct aspect for movie and menus.
- Possible to play AC3, DTS, MPEG, LPCM via S/PDIF.
- Hardware yuv2rgb on Sun FFB2+ (Creator3D).
- Fullscreen mode.
- Screenshots with and without subpicture overlay.
- Title/chapter search.
- Audio formats supported: AC-3, MPEG, LPCM (DTS only via SP/DIF).
Version restrictions:
- Reverse play not implemented.
- No angle selection during playback (angle selection in DVD menu works).
- No closed caption support (not the same as subpicture subtitling).
- DTS audio not supported (other than via SP/DIF).
- To play another DVD you have to restart the program.
- Karaoke mode is missing.
<<less
Download (0.47MB)
Added: 2005-07-21 License: GPL (GNU General Public License) Price:
914 downloads
LibOrb 0.8

LibOrb 0.8


LibOrb is a library for comminicating with a SpaceOrb 360 and Spaceball Avenger Six-Degree-Of-Freedom virtual reality controller more>>
LibOrb is a library for comminicating with a SpaceOrb 360 and Spaceball Avenger Six-Degree-Of-Freedom virtual reality controllers made by Spacetec IMC.

The SpaceOrb allows you to move and rotate in any direction simultaneously. The device connects to your machine via a standard RS-232 serial interface. LibOrb can be used along with OpenGL or other real-time graphics APIs to write virtual reality software, games, or other applications.

The orb provides high resolution translational and rotational information, suitable for even the most demanding tasks. The orb has 6 general purpose buttons and 1 hardware reset button, all of which can be read by an application using LibOrb.

LibOrb has been used successfully on Sun Solaris 2.[56], SGI IRIX 6.2, Linux, OpenBSD, and Windows NT.
<<less
Download (0.022MB)
Added: 2006-05-26 License: BSD License Price:
1249 downloads
Blender For Solaris 2.44

Blender For Solaris 2.44


High quality 3D sofeware For Solaris more>> Aimed world-wide at media professionals and artists, Blender can be used to create 3D visualizations, stills as well as broadcast and cinema quality video, while the incorporation of a real-time 3D engine allows for the creation of 3D interactive content for stand-alone playback.
Originally developed by the company Not a Number (NaN), Blender now is continued as Free Software, with the source code available under the GNU GPL license. It now continues development by the Blender Foundation in the Netherlands.
Key Features:
For Linux; Solaris 2.8/Python 2.5
Fully integrated creation suite, offering a broad range of essential tools for the creation of 3D content, including modeling, uv-mapping, texturing, rigging, weighting, animation, particle and other simulation, scripting, rendering, compositing, post-production, and game creation;
Cross platform, with OpenGL uniform GUI on all platforms, ready to use for all versions of Windows (98, NT, 2000, XP), Linux, OS X, FreeBSD, Irix, Sun and numerous other operating systems;
High quality 3D architecture enabling fast and efficient creation work-flow;
<<less
Download (16.7MB)
Added: 2009-04-12 License: Freeware Price: Free
194 downloads
BooleanMinimizer 1.01

BooleanMinimizer 1.01


BooleanMinimizer project is a piece of software which minimizes Boolean functions. more>>
BooleanMinimizer project is a piece of software which minimizes Boolean functions.
BooleanMinimizer is an implementation of a platform independent application with a graphical user interface. It provides a framework for calling various algorithms that minimize Boolean functions.
Main features:
- Minimization of Boolean functions.
- The user should be able to select a minimization algorithm.
- The program should have an intuitive graphical user interface ( GUI1 ).
- The program should run at least under the platforms Microsoft Windows, GNU / Linux and SUN Solaris.
- The programming language should be object orientated.
- You should be able to integrate further algorithms into the program with an effort as small as possible.
- The GUI should be loaded from a ?le that can be created and modi?ed with a graphical GUI editor.
<<less
Download (0.28MB)
Added: 2006-10-27 License: LGPL (GNU Lesser General Public License) Price:
1095 downloads
KOJAK 2.2b2

KOJAK 2.2b2


KOJAK is a Kit for Objective Judgement and Knowledge-based Detection of Performance Bottlenecks. more>>
KOJAK (Kit for Objective Judgement and Knowledge-based Detection of Performance Bottlenecks) is a set of generic and interoperable tool components designed for the performance analysis of parallel applications.

Their functionality addresses the entire analysis process including instrumentation, postprocessing of performance data, and result presentation.

Particular emphasis is put on automation techniques to transform the collected data into a high-level view of performance behavior. An essential part of the software constitutes an integrated event-trace analysis environment for MPI and OpenMP applications.

Supported Platforms:

Instrumentation, Measurement, and Analysis:

Linux IA-32, IA-64, and EM64T/x86_64 clusters with GNU, PGI, or Intel compilers
IBM Power3 / Power4 based clusters
SGI Mips based clusters (O2k, O3k)
SGI IA-64 based clusters (Altix)
SUN Solaris Sparc and x86 based clusters
DEC/HP Alpha based clusters
Generic UNIX workstation (clusters)

Instrumentation and Measurement only:

Cray T3E, XD1 and X1
IBM BG/L
NEC SX
Hitachi SR-8000

<<less
Download (2.4MB)
Added: 2006-01-18 License: BSD License Price:
1376 downloads
arp-scan 1.6

arp-scan 1.6


arp-scan sends ARP (Address Resolution Protocol) queries to the specified targets, and displays any responses that are received. more>>
arp-scan sends ARP (Address Resolution Protocol) queries to the specified targets, and displays any responses that are received.
It allows any part of the outgoing ARP packets to be changed, allowing the behavior of targets to non-standard ARP packets to be examined. The IP address and hardware address of received packets are displayed, together with the vendor details.
These details are obtained from the IEEE OUI and IAB listings, plus a few manual entries. It includes arp-fingerprint, which allows a system to be fingerprinted based on how it responds to non-standard ARP packets.
Enhancements:
- Support for Sun Solaris was added.
- This was tested on Solaris 9 (SPARC).
- The following new arp-fingerprint patterns were added for ARP fingerprinting: IOS 11.2, 11.3, and 12.4; ScreenOS 5.1, 5.2, 5.3, and 5.4; Cisco VPN Concentrator 4.7; AIX 4.3 and 5.3; Nortel Contivity 6.00 and 6.05; Cisco PIX 5.1, 5.2, 5.3, 6.0, 6.1, 6.2, 6.3, and 7.0.
- IEEE OUI and IAB MAC/Vendor files were updated.
- HSRP MAC address was added to mac-vendor.txt.
<<less
Download (0.26MB)
Added: 2007-04-13 License: GPL (GNU General Public License) Price:
950 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5