sparc
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 113
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.
<<lessIt 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.
Download (0.26MB)
Added: 2007-04-13 License: GPL (GNU General Public License) Price:
950 downloads
Splack Linux 10 beta
Splack Linux is Slackware for Sparc. more>>
Splack Linux is Slackware for Sparc.
Splack supports all Sun4c, Sun4d, and Sun4m hardware.
Most Sun4U (Ultrasparc) machines are supported, but the more modern SunBlade and SunFire systems are not supported in the 2.2.20 kernel.
As a workaround you may be able to move the boot disk to a supported UltraSparc machine, install Splack 8.0, upgrade to Splack-current, and build a 2.4.27 or later kernel.
Sun4m SMP requires kernel 2.4.27 or later. Sun4d SMP requires 2.4.27 plus patches, the patches should be included in 2.4.28. Sun4d SMP will not work with serial console: install a framebuffer, monitor, and keyboard.
<<lessSplack supports all Sun4c, Sun4d, and Sun4m hardware.
Most Sun4U (Ultrasparc) machines are supported, but the more modern SunBlade and SunFire systems are not supported in the 2.2.20 kernel.
As a workaround you may be able to move the boot disk to a supported UltraSparc machine, install Splack 8.0, upgrade to Splack-current, and build a 2.4.27 or later kernel.
Sun4m SMP requires kernel 2.4.27 or later. Sun4d SMP requires 2.4.27 plus patches, the patches should be included in 2.4.28. Sun4d SMP will not work with serial console: install a framebuffer, monitor, and keyboard.
Download (650MB)
Added: 2005-09-01 License: GPL (GNU General Public License) Price:
1513 downloads
Software::Packager 0.09
Software::Packager is a common software packaging interface. more>>
Software::Packager is a common software packaging interface.
SYNOPSIS
use Software::Packager;
my $packager = new Software::Packager();
$packager->version(1.2.3.4.5.6);
$packager->package_name("Somename");
$packager->program_name(Software Packager);
$packager->description("This is the description.");
$packager->short_description("This is a short description.");
$packager->output_dir("/home/software/packages");
$packager->category("Applications");
$packager->architecture("sparc");
my %object_data = (
SOURCE => /source/file1,
TYPE => file,
DESTINATION => /usr/local/file1,
USER => joe,
GROUP => staff,
MODE => 0750,
);
$packager->add_item(%object_data);
my $version = $packager->version();
my $name = $packager->package_name();
my $program_name = $packager->program_name();
my $description = $packager->description();
my $description = $packager->short_description();
my $output_directory = $packager->output_dir();
my $category = $packager->category();
my $arch = $packager->architecture();
The Software Packager module is designed to provide a common interface for packaging software on any platform. This module does not do the packaging of the software but is merely a wraper around the various software packaging tools already provided with various operating systems.
This module provides the base API and sets default values common to the various software packaging methods.
<<lessSYNOPSIS
use Software::Packager;
my $packager = new Software::Packager();
$packager->version(1.2.3.4.5.6);
$packager->package_name("Somename");
$packager->program_name(Software Packager);
$packager->description("This is the description.");
$packager->short_description("This is a short description.");
$packager->output_dir("/home/software/packages");
$packager->category("Applications");
$packager->architecture("sparc");
my %object_data = (
SOURCE => /source/file1,
TYPE => file,
DESTINATION => /usr/local/file1,
USER => joe,
GROUP => staff,
MODE => 0750,
);
$packager->add_item(%object_data);
my $version = $packager->version();
my $name = $packager->package_name();
my $program_name = $packager->program_name();
my $description = $packager->description();
my $description = $packager->short_description();
my $output_directory = $packager->output_dir();
my $category = $packager->category();
my $arch = $packager->architecture();
The Software Packager module is designed to provide a common interface for packaging software on any platform. This module does not do the packaging of the software but is merely a wraper around the various software packaging tools already provided with various operating systems.
This module provides the base API and sets default values common to the various software packaging methods.
Download (0.021MB)
Added: 2007-01-08 License: Perl Artistic License Price:
1023 downloads
Opera 9.23
Surf the Internet in a safer, faster, and easier way with Opera browser. more>>
Surf the Internet in a safer, faster, and easier way with Opera browser.
The most full-featured Internet power tool on the market, Opera includes pop-up blocking, tabbed browsing, integrated searches, E-mail, RSS Newsfeeds and IRC chat.
Opera supports all major Linux distributions. RedHat, SuSE, Mandrake, Debian, etc. Intel, PowerPC and Sparc versions.
Main features:
Pop-up Blocking:
No more annoying pop-up advertisements. Opera lets you control whether Web sites can use pop-ups. Select to block them all, or let the browser open only pop-ups that you have requested.
Integrated Search:
Search your favorite sites, for example Google, eBay, or Amazon without having to go to their Web pages. Use the integrated search window or shortcuts (e.g. "g" for Google) in the address field.
Skins:
Give your browser the look you want with Operas skins. Make the browser your own by giving it the colors, icons, and buttons of your choice.
E-mail with RSS Newsfeed:
Operas built-in POP/IMAP E-mail client is a combined e-mail program, news reader, mailing list organizer and RSS newsfeed reader. A safer, faster, and more intelligent way of handling your e-mails, Operas e-mail client is database driven, enabling you to organize and find your e-mails in a matter of seconds through easy searches, labeling, and filtering rather than traditional folder storage.
Tabbed Browsing:
Surf the Web easier and faster by opening multiple Web pages within the same application window. Save a collection of pages as a session and open them all with one click - every time.
Advanced Security:
Protect yourself from ad-ware, spy-ware, viruses, and other third-party malicious software applications that silently attack your computer while you are surfing the Web.
IRC Chat:
Communicate with people all over the world using Operas IRC chat client. Use Opera to connect to IRC servers to chat privately or in rooms, or share files and photos with your friends and family.
Opera is from now 100% FREE and with NO ADS !
Enhancements:
- More Speed Dial stability fixes
- Fixed another fuzzer crash
<<lessThe most full-featured Internet power tool on the market, Opera includes pop-up blocking, tabbed browsing, integrated searches, E-mail, RSS Newsfeeds and IRC chat.
Opera supports all major Linux distributions. RedHat, SuSE, Mandrake, Debian, etc. Intel, PowerPC and Sparc versions.
Main features:
Pop-up Blocking:
No more annoying pop-up advertisements. Opera lets you control whether Web sites can use pop-ups. Select to block them all, or let the browser open only pop-ups that you have requested.
Integrated Search:
Search your favorite sites, for example Google, eBay, or Amazon without having to go to their Web pages. Use the integrated search window or shortcuts (e.g. "g" for Google) in the address field.
Skins:
Give your browser the look you want with Operas skins. Make the browser your own by giving it the colors, icons, and buttons of your choice.
E-mail with RSS Newsfeed:
Operas built-in POP/IMAP E-mail client is a combined e-mail program, news reader, mailing list organizer and RSS newsfeed reader. A safer, faster, and more intelligent way of handling your e-mails, Operas e-mail client is database driven, enabling you to organize and find your e-mails in a matter of seconds through easy searches, labeling, and filtering rather than traditional folder storage.
Tabbed Browsing:
Surf the Web easier and faster by opening multiple Web pages within the same application window. Save a collection of pages as a session and open them all with one click - every time.
Advanced Security:
Protect yourself from ad-ware, spy-ware, viruses, and other third-party malicious software applications that silently attack your computer while you are surfing the Web.
IRC Chat:
Communicate with people all over the world using Operas IRC chat client. Use Opera to connect to IRC servers to chat privately or in rooms, or share files and photos with your friends and family.
Opera is from now 100% FREE and with NO ADS !
Enhancements:
- More Speed Dial stability fixes
- Fixed another fuzzer crash
Download (6.5MB)
Added: 2007-08-14 License: Freeware Price:
827 downloads
LuBu OpenMagic 1.0
LuBu OpenMagic is an enhancement of the Solaris OpenStep 1.1-sparc desktop enviroment. more>>
LuBu OpenMagic is an enhancement of the Solaris OpenStep 1.1-sparc desktop enviroment.
It is not a rewrite, nor is it a re-release, but is a package that enhances and improves (and includes) Solaris OpenStep 1.1.
LuBu OpenMagic is only available for the SPARC architecture.
LuBu OpenMagic 1.0 is a heavily modified version of the Lighthouse OpenStep 1.1
release for the Sparc platform. It is not a theme, nor a reconfiguration, but
an almost pure rewrite of non-binary files (runtime configurations, application
definitions, enviroment variables, and many functions). In some parts entire functions
have been replaced features have been added. This applies primarily to the Wrapper
function which has been entirely rewritten to use the LuBu OpenMagic Alert System
(aka: LOAS). This is a completely new feature which among many other things also
produces error messages in human readable form, with the actual cause of the error.
This makes taking countermeasures and avoiding future errors easier. The default
application definitions provided with OpenStep 1.1 were the cause of countless bugs,
and I have spendt a great amount of time optimizing the default defs. There are still
a few bugs for which I have found no workaround, but non are critical.
OpenMagic 1.0 will only run on Sparc CPUs since it is based on Solaris OpenStep 1.1 for Sparc. There is not, nor will there ever be, a release for any other CPU. Since
LuBu OpenMagic 1.0 is based on the binary Solaris OpenStep release, it remains a
Solaris Sparc product. There are no known binaries for other CPUs or operating
systems. It does however fully integrate the Solaris Operating Enviroment, Common
Desktop Enviroment, and any other enviroments that run on Solaris Sparc. This makes it alot easier to integrate applications into the OpenStep enviroment without the need of porting.
LuBu OpenMagic 1.0 is packaged as a pure gzipped tar file, intended for unpacking
from the root directory (ie: / ). This means that the default installation directory for OpenStep should be /usr/openstep - it is importent that this rule is followed, else the installation will fail and the distribution will not function at all. It is however possible to extract to a different directory and create a symlink to /usr/openstep. Just remember to copy the etc/dt/config files to their desired location (/etc/dt/config). This is needed as there are some additional files included in order for LuBu OpenMagic 1.0 to function correctly:
1. A modified /etc/dt/config/Xservers file with -dpi 72
2. Configuration files for dtlogin (in /etc/dt/config/*.os|*.xpm)
3. Icons for /cdrom and /floppy (directories will be created if missing)
For an optimal installation:
$ su -
# cd /
# gtar zxvf /path/to/lubu_openwb-1.0-sparc.tgz
Make sure that all the files are extracted, and that existing files ARE overwritten! This will NOT reduce system security or in any other way reduce system performance.
Make sure all files in /usr/openstep are owned by bin:bin else you will loose alot of functionality! There is NO NEED for ANY of the files to be owned by root (other than possibly Preferences.app/set_password which is initially broken due to a missing library - see KNOWN_BUGS).
If you must chown /usr/openstep, then it is a good idea to cd to /usr before running chown -R in case you are using a non-standard chown. Worst case scenario is that a chown -R from / chowns your entire system bin:bin! Better safe than sorry.
# cd /usr
# chown -R bin:bin openstep/
If you extracted OpenStep to a different location, then cd to that location before running chown
# cd /path/to/your/installation
# chown -R bin:bin ../openstep (provided you actually are in the openstep directory)
Make sure the following line is present in /etc/dt/config/Xservers:
:0 Local local_uid@console root /usr/openwin/bin/Xsun :0 -nobanner -dpi 72
(this is however included in the distribution files and should be installed upon
extraction). For optimal performance it is best to run your display at -depth 24 -dpi 72
This file (Xservers) should be -rwx-xr-x otherwise run
# chmod 755 /etc/dt/config/Xservers
It is vital that dtlogin is restarted after installation. Exit your windowmanager, login as root to the system console, and run the following commands (as root):
# sh /etc/init.d/dtlogin stop
# sh /etc/init.d/dtlogin start
Now log out from the console and allow the dtlogin loginwindow to reappear.
Select "LuBu OpenMagic 1.0" from the session menu. Log in and enjoy!
It is however possible to run LuBu OpenMagic 1.0 without CDE installed, or without running it through dtlogin by simply starting the file /usr/openstep/bin/openstep:
$ sh /usr/openstep/bin/openstep
though you might loose some valuable configurations using this method.
It has not as of yet been tested thouroughly.
<<lessIt is not a rewrite, nor is it a re-release, but is a package that enhances and improves (and includes) Solaris OpenStep 1.1.
LuBu OpenMagic is only available for the SPARC architecture.
LuBu OpenMagic 1.0 is a heavily modified version of the Lighthouse OpenStep 1.1
release for the Sparc platform. It is not a theme, nor a reconfiguration, but
an almost pure rewrite of non-binary files (runtime configurations, application
definitions, enviroment variables, and many functions). In some parts entire functions
have been replaced features have been added. This applies primarily to the Wrapper
function which has been entirely rewritten to use the LuBu OpenMagic Alert System
(aka: LOAS). This is a completely new feature which among many other things also
produces error messages in human readable form, with the actual cause of the error.
This makes taking countermeasures and avoiding future errors easier. The default
application definitions provided with OpenStep 1.1 were the cause of countless bugs,
and I have spendt a great amount of time optimizing the default defs. There are still
a few bugs for which I have found no workaround, but non are critical.
OpenMagic 1.0 will only run on Sparc CPUs since it is based on Solaris OpenStep 1.1 for Sparc. There is not, nor will there ever be, a release for any other CPU. Since
LuBu OpenMagic 1.0 is based on the binary Solaris OpenStep release, it remains a
Solaris Sparc product. There are no known binaries for other CPUs or operating
systems. It does however fully integrate the Solaris Operating Enviroment, Common
Desktop Enviroment, and any other enviroments that run on Solaris Sparc. This makes it alot easier to integrate applications into the OpenStep enviroment without the need of porting.
LuBu OpenMagic 1.0 is packaged as a pure gzipped tar file, intended for unpacking
from the root directory (ie: / ). This means that the default installation directory for OpenStep should be /usr/openstep - it is importent that this rule is followed, else the installation will fail and the distribution will not function at all. It is however possible to extract to a different directory and create a symlink to /usr/openstep. Just remember to copy the etc/dt/config files to their desired location (/etc/dt/config). This is needed as there are some additional files included in order for LuBu OpenMagic 1.0 to function correctly:
1. A modified /etc/dt/config/Xservers file with -dpi 72
2. Configuration files for dtlogin (in /etc/dt/config/*.os|*.xpm)
3. Icons for /cdrom and /floppy (directories will be created if missing)
For an optimal installation:
$ su -
# cd /
# gtar zxvf /path/to/lubu_openwb-1.0-sparc.tgz
Make sure that all the files are extracted, and that existing files ARE overwritten! This will NOT reduce system security or in any other way reduce system performance.
Make sure all files in /usr/openstep are owned by bin:bin else you will loose alot of functionality! There is NO NEED for ANY of the files to be owned by root (other than possibly Preferences.app/set_password which is initially broken due to a missing library - see KNOWN_BUGS).
If you must chown /usr/openstep, then it is a good idea to cd to /usr before running chown -R in case you are using a non-standard chown. Worst case scenario is that a chown -R from / chowns your entire system bin:bin! Better safe than sorry.
# cd /usr
# chown -R bin:bin openstep/
If you extracted OpenStep to a different location, then cd to that location before running chown
# cd /path/to/your/installation
# chown -R bin:bin ../openstep (provided you actually are in the openstep directory)
Make sure the following line is present in /etc/dt/config/Xservers:
:0 Local local_uid@console root /usr/openwin/bin/Xsun :0 -nobanner -dpi 72
(this is however included in the distribution files and should be installed upon
extraction). For optimal performance it is best to run your display at -depth 24 -dpi 72
This file (Xservers) should be -rwx-xr-x otherwise run
# chmod 755 /etc/dt/config/Xservers
It is vital that dtlogin is restarted after installation. Exit your windowmanager, login as root to the system console, and run the following commands (as root):
# sh /etc/init.d/dtlogin stop
# sh /etc/init.d/dtlogin start
Now log out from the console and allow the dtlogin loginwindow to reappear.
Select "LuBu OpenMagic 1.0" from the session menu. Log in and enjoy!
It is however possible to run LuBu OpenMagic 1.0 without CDE installed, or without running it through dtlogin by simply starting the file /usr/openstep/bin/openstep:
$ sh /usr/openstep/bin/openstep
though you might loose some valuable configurations using this method.
It has not as of yet been tested thouroughly.
Download (17.8MB)
Added: 2006-04-07 License: Free To Use But Restricted Price:
1295 downloads
Osalp 0.7.3
Osalp is a project designed to implement a world class set of classes in C++ that will handle all of the audio functions. more>>
Osalp is a project designed to implement a world class set of classes in C++ that will handle all of the audio functions one would like. It is designed to be multi-platform with UNIX based platforms as the base.
This project is still in the beta code phase and a beta version that will illustrate the power and flexibility is now available. This version supports the Linux (OSS) audio device, Solaris Sparc audio device, FreeBSD (OSS) audio device, wav, au, aiff, aifc, mp3, and numerousother formats.
It is important to note that this is not an application but a C++ library that others can use to create an audio application or to easly add audio capabilities to an existing application. OSALP was originally designed and developed by Bruce Forsberg out of need to manage and edit large sound files in a simple manner. Currently the project is being maintained by Darrick Servis.
The library is built on a set of core classes that provide the basic functionality. New classes to operate on data are derived from these classes. These classes provide a powerful chaining process. This allows one to build an audio chain much like one would build with building blocks. Audio data is encapsulated into a single class. This allows one to handle data conversions in one place.
There is a file base class (aflibFile) that defines the API for any device or file classes that are to be developed. They are implemented as dynamically loaded shared objects so that new file types can be added without recompiling the base library or needing to link them to an application. This will allow third parties to support their proprietary formats as a binary "plugable modules".
Linux & FreeBSD Device (OSS) -- aflibDevFile
Solaris Sparc Device -- aflibSolarisSparcDevFile
WAV (linear, mu-law, a-law) -- aflibWavFile
AU (linear, mu-law, a-law) -- aflibAuFile
AIFC -- aflibAifcFile
AIFF -- aflibAiffFile
MP3 using Lame encoder -- aflibLameFile
MP3 using Blade encoder -- aflibBladeFile
MP3 reader using splay library -- aflibMpgFile
MP3 reader using mpg123 executable -- aflibMpg123File
Sox library interface (supports most formats supported by the sox sound tools library -- aflibSoxFile
Currently there are several worker classes. These are the classes that actually do the work. These classes are not tied to any GUI but are GUI neutral. This allows developers to write code using the GUI of their choice.
Audio Sample Rate Converter -- aflibAudioSampleRateCvt
Audio Pitch Change -- aflibAudioPitch
Audio Test Source -- aflibAudioConstantSrc
Audio Editing -- aflibAudioEdit
Audio Timer Recording -- aflibAudioRecorder
Audio VU Meter and Spectrum Display -- aflibAudioSpectrum
Audio Mixing -- aflibAudioMixer
Butterworth Filter -- aflibAudioBWFilter
Reading Audio Data from Memory -- aflibAudioMemoryInput
Reading and Writing Audio Data to Devices or Files -- aflibAudioFile
There are also utility classes. These are not part of the main audio chain but are probably needed by most audio applications or are used indirectly by the worker classes.
FFT -- aflibFFT
User Environment Storage and Retrieval -- aflibEnvFile
Audio sample data -- aflibSampleData
Sample rate conversion -- aflibConverter
<<lessThis project is still in the beta code phase and a beta version that will illustrate the power and flexibility is now available. This version supports the Linux (OSS) audio device, Solaris Sparc audio device, FreeBSD (OSS) audio device, wav, au, aiff, aifc, mp3, and numerousother formats.
It is important to note that this is not an application but a C++ library that others can use to create an audio application or to easly add audio capabilities to an existing application. OSALP was originally designed and developed by Bruce Forsberg out of need to manage and edit large sound files in a simple manner. Currently the project is being maintained by Darrick Servis.
The library is built on a set of core classes that provide the basic functionality. New classes to operate on data are derived from these classes. These classes provide a powerful chaining process. This allows one to build an audio chain much like one would build with building blocks. Audio data is encapsulated into a single class. This allows one to handle data conversions in one place.
There is a file base class (aflibFile) that defines the API for any device or file classes that are to be developed. They are implemented as dynamically loaded shared objects so that new file types can be added without recompiling the base library or needing to link them to an application. This will allow third parties to support their proprietary formats as a binary "plugable modules".
Linux & FreeBSD Device (OSS) -- aflibDevFile
Solaris Sparc Device -- aflibSolarisSparcDevFile
WAV (linear, mu-law, a-law) -- aflibWavFile
AU (linear, mu-law, a-law) -- aflibAuFile
AIFC -- aflibAifcFile
AIFF -- aflibAiffFile
MP3 using Lame encoder -- aflibLameFile
MP3 using Blade encoder -- aflibBladeFile
MP3 reader using splay library -- aflibMpgFile
MP3 reader using mpg123 executable -- aflibMpg123File
Sox library interface (supports most formats supported by the sox sound tools library -- aflibSoxFile
Currently there are several worker classes. These are the classes that actually do the work. These classes are not tied to any GUI but are GUI neutral. This allows developers to write code using the GUI of their choice.
Audio Sample Rate Converter -- aflibAudioSampleRateCvt
Audio Pitch Change -- aflibAudioPitch
Audio Test Source -- aflibAudioConstantSrc
Audio Editing -- aflibAudioEdit
Audio Timer Recording -- aflibAudioRecorder
Audio VU Meter and Spectrum Display -- aflibAudioSpectrum
Audio Mixing -- aflibAudioMixer
Butterworth Filter -- aflibAudioBWFilter
Reading Audio Data from Memory -- aflibAudioMemoryInput
Reading and Writing Audio Data to Devices or Files -- aflibAudioFile
There are also utility classes. These are not part of the main audio chain but are probably needed by most audio applications or are used indirectly by the worker classes.
FFT -- aflibFFT
User Environment Storage and Retrieval -- aflibEnvFile
Audio sample data -- aflibSampleData
Sample rate conversion -- aflibConverter
Download (1.0MB)
Added: 2006-02-15 License: LGPL (GNU Lesser General Public License) Price:
1348 downloads
Jumpgate 0.7
Jumpgate is a TCP connection forwarder that provides many enhancements and improvements over the existing programs. more>>
Jumpgate is a TCP connection forwarder that provides many enhancements and improvements over the existing programs that do the same thing. It provides an interactive mode that queries the connected party for the forwarding information it needs. Also, there is the option to log the entire forwarded session in a file for later inspection. Furthermore, it can log information about the forwarded session via the syslog(3) facility. If you improve it further, please send me the diffs. As always, published under a BSD-style license, see the included LICENSE file.
Jumpgate has been tested and works on the following platforms:
OpenBSD 3.2 (i386).
OpenBSD 3.1 (i386).
OpenBSD 3.0 (i386).
Solaris 8, thanks to John Weekley and Jesper Peterson.
Solaris 7, thanks to Chris Donovan.
AIX, thanks to feedback from Michael Pacey.
FreeBSD 4.2-STABLE (i386), thanks to Kiriakos Oikonomakos for the shell account.
NetBSD 1.4.2 (i386).
Linux, various distributions and platforms, thanks to feedback from many people.
I have been told that it compiles and runs on Windows using Cygwin, but I have not tested it myself.
Enhancements:
- Compiled and tested on Debian Linux 3.0 (sparc).
- Compiled and tested on Solaris 2.8 (sparc).
- Added the --enable-debug option to configure.in.
- Now autoconf correctly handles Linux and Solaris.
- Added the option of having a delay in the forwarded connection, after a patch by Martin Donlon.
- Incorporated the additions of Oliver Fromme regarding the ability to use names from the services database instead of port numbers, the ability to use IP addresses for the -a option, and the ability to bind to a local IP.
- sigset() instead of signal() to install the handler for SIGCHLD on Solaris, fix provided by Jesper Peterson.
- Jumpgate should not exit if accept() generates ECONNABORTED, thanks to Jesper Peterson for the fix.
- Now jumpgate utilizes the autoconf package for portable configuration and compilation.
- Compiled and tested on Redhat Linux 6.2 (sparc), thanks to Brat3 for the shell account.
- Compiled and tested it on FreeBSD 4.2-STABLE.
- Compiled and tested it on NetBSD 1.4.2.
- Compiled and tested it on Slackware Linux 7.1.
- Gustavo Ambrozio added the ability to bind to a specific local IP, although finally the patch from Oliver Fromme was used.
- Created a manual page.
- Added an install and uninstall option to the Makefile.
<<lessJumpgate has been tested and works on the following platforms:
OpenBSD 3.2 (i386).
OpenBSD 3.1 (i386).
OpenBSD 3.0 (i386).
Solaris 8, thanks to John Weekley and Jesper Peterson.
Solaris 7, thanks to Chris Donovan.
AIX, thanks to feedback from Michael Pacey.
FreeBSD 4.2-STABLE (i386), thanks to Kiriakos Oikonomakos for the shell account.
NetBSD 1.4.2 (i386).
Linux, various distributions and platforms, thanks to feedback from many people.
I have been told that it compiles and runs on Windows using Cygwin, but I have not tested it myself.
Enhancements:
- Compiled and tested on Debian Linux 3.0 (sparc).
- Compiled and tested on Solaris 2.8 (sparc).
- Added the --enable-debug option to configure.in.
- Now autoconf correctly handles Linux and Solaris.
- Added the option of having a delay in the forwarded connection, after a patch by Martin Donlon.
- Incorporated the additions of Oliver Fromme regarding the ability to use names from the services database instead of port numbers, the ability to use IP addresses for the -a option, and the ability to bind to a local IP.
- sigset() instead of signal() to install the handler for SIGCHLD on Solaris, fix provided by Jesper Peterson.
- Jumpgate should not exit if accept() generates ECONNABORTED, thanks to Jesper Peterson for the fix.
- Now jumpgate utilizes the autoconf package for portable configuration and compilation.
- Compiled and tested on Redhat Linux 6.2 (sparc), thanks to Brat3 for the shell account.
- Compiled and tested it on FreeBSD 4.2-STABLE.
- Compiled and tested it on NetBSD 1.4.2.
- Compiled and tested it on Slackware Linux 7.1.
- Gustavo Ambrozio added the ability to bind to a specific local IP, although finally the patch from Oliver Fromme was used.
- Created a manual page.
- Added an install and uninstall option to the Makefile.
Download (0.039MB)
Added: 2006-07-03 License: BSD License Price:
1210 downloads
SableVM 1.12
SableVM is a portable Java virtual machine. more>>
SableVM is a robust, extremely portable, efficient, and specifications-compliant Java virtual machine that aims to be easy to maintain and to extend.
It features a state-of-the-art and efficient interpreter engine. Its source code is very accessible and easy to understand. It also has many robustness features that have been the object of careful design.
SableVM is a clean-room implementation of the publicly available specifications.
Main features:
- Clean code, with minimal duplication, thanks to a set of easy-to-use indent-friendly m4 macros.
- Modularity, making it ideal for research into different implementations of VM components.
- Standards compliance (C, POSIX, JVM, JNI, JLS).
- Three different interpreter engines, of which the basic switch interpreter is perfect for debugging, and the inlined-threaded interpreter is competitively fast. See [Execution Engines]?.
- A nice development environment, thanks to the above features. New contributors can start grokking it easily.
- Use of the latest GNU Classpath. We frequently synchronize with the GNU Classpath CVS.
- Portability (record time is 1 hour for a new port).
- Permissive LGPL license.
- A retargettable just-in-time compiler, SableJIT, which currently runs on ppc, x86, and sparc. The initial implementation is almost ready.
- Proper implementation of the invocation interface, which makes it possible to execute Java code from an application written in a different language. SableVM was designed so that extending it to follow the full specifications is straightforward, and allows for many virtual machines to be created, run, and destroyed within a single process (still not fully complete). This is something that the official Sun implementation does not provide.
<<lessIt features a state-of-the-art and efficient interpreter engine. Its source code is very accessible and easy to understand. It also has many robustness features that have been the object of careful design.
SableVM is a clean-room implementation of the publicly available specifications.
Main features:
- Clean code, with minimal duplication, thanks to a set of easy-to-use indent-friendly m4 macros.
- Modularity, making it ideal for research into different implementations of VM components.
- Standards compliance (C, POSIX, JVM, JNI, JLS).
- Three different interpreter engines, of which the basic switch interpreter is perfect for debugging, and the inlined-threaded interpreter is competitively fast. See [Execution Engines]?.
- A nice development environment, thanks to the above features. New contributors can start grokking it easily.
- Use of the latest GNU Classpath. We frequently synchronize with the GNU Classpath CVS.
- Portability (record time is 1 hour for a new port).
- Permissive LGPL license.
- A retargettable just-in-time compiler, SableJIT, which currently runs on ppc, x86, and sparc. The initial implementation is almost ready.
- Proper implementation of the invocation interface, which makes it possible to execute Java code from an application written in a different language. SableVM was designed so that extending it to follow the full specifications is straightforward, and allows for many virtual machines to be created, run, and destroyed within a single process (still not fully complete). This is something that the official Sun implementation does not provide.
Download (0.69MB)
Added: 2005-07-07 License: LGPL (GNU Lesser General Public License) Price:
1575 downloads
distmake 0.4
distmake is a distributed make program. more>>
distmake is a distributed make program.
distmake is a distributed, parallel, GNU make compatible make program.
distmake reads a Makefile, and distributes builds targets over a set of build servers on the network.
distmake is fully compatible with GNU make 3.80 on which is it based.
distmake should compile on any POSIX compliant platforms.
It has been reported to compile and work on :
Linux 2.4 on x86
Solaris 2.8 on sparc
Cygwin
How distmake works:
Before the make process is started, distmake starts a ONC RPC server (rpc.bldserver) on all build servers with a rsh command (but see below how to change this and use ssh instead). This RPC server listens for distmake requests, processes jobs (builds) and reports execution status. When all jobs are done, distmake kills each RPC server on remote machines.
Controlling distmake:
The following environment variables are used by distmake:
DISTMAKE_RSH, if present, should point to a rsh compatible program (ssh is a good candidate if security is a concern for your site).
DISTMAKE_RPCBLDSERVER, if present, should point to the rpc.bldserver program, built with distmake. If this variable does not exist, a compile-time value is used instead. (PREFIX/bin/rpc.bldserver).
Debugging distmake:
Use distmake --debug=r[,other debug flags]
Enhancements:
- This release offers two modes of operation: automatic on-demand start of remote build servers, or use waiting daemons.
- This combines the behaviours of releases 0.2 and 0.3.1.
<<lessdistmake is a distributed, parallel, GNU make compatible make program.
distmake reads a Makefile, and distributes builds targets over a set of build servers on the network.
distmake is fully compatible with GNU make 3.80 on which is it based.
distmake should compile on any POSIX compliant platforms.
It has been reported to compile and work on :
Linux 2.4 on x86
Solaris 2.8 on sparc
Cygwin
How distmake works:
Before the make process is started, distmake starts a ONC RPC server (rpc.bldserver) on all build servers with a rsh command (but see below how to change this and use ssh instead). This RPC server listens for distmake requests, processes jobs (builds) and reports execution status. When all jobs are done, distmake kills each RPC server on remote machines.
Controlling distmake:
The following environment variables are used by distmake:
DISTMAKE_RSH, if present, should point to a rsh compatible program (ssh is a good candidate if security is a concern for your site).
DISTMAKE_RPCBLDSERVER, if present, should point to the rpc.bldserver program, built with distmake. If this variable does not exist, a compile-time value is used instead. (PREFIX/bin/rpc.bldserver).
Debugging distmake:
Use distmake --debug=r[,other debug flags]
Enhancements:
- This release offers two modes of operation: automatic on-demand start of remote build servers, or use waiting daemons.
- This combines the behaviours of releases 0.2 and 0.3.1.
Download (0.99MB)
Added: 2006-10-16 License: GPL (GNU General Public License) Price:
1106 downloads
Squashfs 3.2
Squashfs is a compressed read-only filesystem for Linux. more>>
Squashfs project is a compressed read-only filesystem for Linux. Squashfs is intended for general read-only filesystem use, for archival use (i.e. in cases where a .tar.gz file may be used), and in constrained block device/memory systems (e.g. embedded systems) where low overhead is needed.
The filesystem is currently stable, and has been tested on PowerPC, i586, Sparc and ARM architectures.
Main features:
- Data, inodes and directories are compressed.
- Squashfs stores full uid/gids (32 bits), and file creation time.
- Files up to 2^32 bytes are supported. Filesystems can be up to 2^32 bytes.
- Inode and directory data are highly compacted, and packed on byte boundaries. Each compressed inode is on average 8 bytes in length (the exact length varies on file type, i.e. regular file, directory, symbolic link, and block/char device inodes have different sizes).
- Squashfs can use block sizes up to 64K (the default size is 64K). Using 64K blocks achieves greater compression ratios than the normal 4K block size.
- File duplicates are detected and removed.
- Both big and little endian architectures are supported. The mksquashfs program can generate filesystems for different endian architectures for cases where the host byte ordering is different to the target. This is useful for embedded systems.
Enhancements:
- This release is a major improvement, and Squashfs filesystems can now be exported via NFS.
- Squashfs-tools have also seen some improvements: Unsquashfs can now extract 2.x filesystems; and Mksquashfs now displays a progress bar.
- There are other smaller improvements and bugfixes.
<<lessThe filesystem is currently stable, and has been tested on PowerPC, i586, Sparc and ARM architectures.
Main features:
- Data, inodes and directories are compressed.
- Squashfs stores full uid/gids (32 bits), and file creation time.
- Files up to 2^32 bytes are supported. Filesystems can be up to 2^32 bytes.
- Inode and directory data are highly compacted, and packed on byte boundaries. Each compressed inode is on average 8 bytes in length (the exact length varies on file type, i.e. regular file, directory, symbolic link, and block/char device inodes have different sizes).
- Squashfs can use block sizes up to 64K (the default size is 64K). Using 64K blocks achieves greater compression ratios than the normal 4K block size.
- File duplicates are detected and removed.
- Both big and little endian architectures are supported. The mksquashfs program can generate filesystems for different endian architectures for cases where the host byte ordering is different to the target. This is useful for embedded systems.
Enhancements:
- This release is a major improvement, and Squashfs filesystems can now be exported via NFS.
- Squashfs-tools have also seen some improvements: Unsquashfs can now extract 2.x filesystems; and Mksquashfs now displays a progress bar.
- There are other smaller improvements and bugfixes.
Download (0.22MB)
Added: 2007-01-04 License: GPL (GNU General Public License) Price:
615 downloads
Sysquake Viewer 2.3pr
Sysquake Viewer is an application which lets you load and manipulate interactively graphics developed with Sysquake. more>>
Sysquake Viewer is an application which lets you load and manipulate interactively graphics developed with Sysquake.
Sysquake Viewer is much more limited than Sysquake LE, which supersedes it on Mac OS and Windows. We still provide it as a preview release for Linux on i386 and for Solaris on Sparc, until we have a robust beta version of Sysquake LE for Unix.
On Unix, files are archived with tar. In a terminal, type tar xzf sqviewer*tgz to un-archive them.
The preview is made available to you so that you can test it and provide feedback, and to have a broader range of platforms where SQ files can be viewed. It has no expiration date.
<<lessSysquake Viewer is much more limited than Sysquake LE, which supersedes it on Mac OS and Windows. We still provide it as a preview release for Linux on i386 and for Solaris on Sparc, until we have a robust beta version of Sysquake LE for Unix.
On Unix, files are archived with tar. In a terminal, type tar xzf sqviewer*tgz to un-archive them.
The preview is made available to you so that you can test it and provide feedback, and to have a broader range of platforms where SQ files can be viewed. It has no expiration date.
Download (0.32MB)
Added: 2006-03-30 License: Other/Proprietary License Price:
1304 downloads
SAStk 0.1.3.1
SAStk is Slackware Administrators Security tool kit. more>>
SAStk is Slackware Administrators Security tool kit. We aim to provide a set of tools and utilities to install and maintain a reasonable level of security for the Slackware Linux distribution.
We added support for other security aspects such as password aging and similar configuration for the machine.
Install
Please see INSTALL for instructions on installing SAStk.
Build Environment for the application
We tested the scripts on x86 Slackware 8.0.
We could use a tester or two using Sparc and Alpha Slackware to make sure nothing breaks based on the architecture.
<<lessWe added support for other security aspects such as password aging and similar configuration for the machine.
Install
Please see INSTALL for instructions on installing SAStk.
Build Environment for the application
We tested the scripts on x86 Slackware 8.0.
We could use a tester or two using Sparc and Alpha Slackware to make sure nothing breaks based on the architecture.
Download (0.68MB)
Added: 2006-07-14 License: GPL (GNU General Public License) Price:
1197 downloads
libSRTP 1.4.4
libSRTP is an implementation of the Secure Real-time Transport Protocol. more>>
libSRTP library is an open-source implementation of the Secure Real-time Transport Protocol (SRTP) originally authored by Cisco Systems, Inc. It is available under a BSD-style license.
SRTP is a security profile for RTP that adds confidentiality, message authentication, and replay protection to that protocol. It is specified in RFC 3711. More information on the SRTP protocol itself can be found on the Secure RTP Page.
Installation:
./configure [ options ] # GNU autoconf script
make # or gmake if needed; use GNU make
The configure script accepts the following options:
--help provides a usage summary
--disable-debug compile without the runtime debugging system
--enable-syslog use syslog for error reporting
--disable-stdout use stdout for error reporting
--enable-console use /dev/console for error reporting
--gdoi use GDOI key management (disabled at present)
By default, debbuging is enabled and stdout is used for debugging. You can use the above configure options to have the debugging output sent to syslog or the system console. Alternatively, you can define ERR_REPORTING_FILE in include/conf.h to be any other file that can be opened by libSRTP, and debug messages will be sent to it.
This package has been tested on Mac OS X (powerpc-apple-darwin1.4),
Cygwin (i686-pc-cygwin), and Sparc (sparc-sun-solaris2.6). Previous
versions have been tested on Linux and OpenBSD on both x86 and sparc
platforms.
Enhancements:
- Release 1.4.4 is a snapshot of the code in CVS, which has been slowly accumulating minor fixes and extensions.
<<lessSRTP is a security profile for RTP that adds confidentiality, message authentication, and replay protection to that protocol. It is specified in RFC 3711. More information on the SRTP protocol itself can be found on the Secure RTP Page.
Installation:
./configure [ options ] # GNU autoconf script
make # or gmake if needed; use GNU make
The configure script accepts the following options:
--help provides a usage summary
--disable-debug compile without the runtime debugging system
--enable-syslog use syslog for error reporting
--disable-stdout use stdout for error reporting
--enable-console use /dev/console for error reporting
--gdoi use GDOI key management (disabled at present)
By default, debbuging is enabled and stdout is used for debugging. You can use the above configure options to have the debugging output sent to syslog or the system console. Alternatively, you can define ERR_REPORTING_FILE in include/conf.h to be any other file that can be opened by libSRTP, and debug messages will be sent to it.
This package has been tested on Mac OS X (powerpc-apple-darwin1.4),
Cygwin (i686-pc-cygwin), and Sparc (sparc-sun-solaris2.6). Previous
versions have been tested on Linux and OpenBSD on both x86 and sparc
platforms.
Enhancements:
- Release 1.4.4 is a snapshot of the code in CVS, which has been slowly accumulating minor fixes and extensions.
Download (0.50MB)
Added: 2007-05-05 License: BSD License Price:
915 downloads
libspf2 1.2.5
libspf2 implements the Sender Policy Framework, a part of the SPF/SRS protocol pair. more>>
libspf2 implements the Sender Policy Framework, a part of the SPF/SRS protocol pair.
libspf2 is a library which allows email systems such as Sendmail, Postfix, Exim, Zmailer and MS Exchange to check SPF records and make sure that the email is authorized by the domain name that it is coming from.
This prevents email forgery, commonly used by spammers, scammers and email viruses/worms.
Enhancements:
- New server/request/response API
- Simplification of all allocation
- Updates to match draft RFC specification
- Complete error message and diagnostics overhaul
- Numerous protocol, error and bug-fixes
- Thread safety in all resolvers
- Complete spfd and spfquery rewrite
- New cache algorithm
- Fixes for alignment on Sparc systems
<<lesslibspf2 is a library which allows email systems such as Sendmail, Postfix, Exim, Zmailer and MS Exchange to check SPF records and make sure that the email is authorized by the domain name that it is coming from.
This prevents email forgery, commonly used by spammers, scammers and email viruses/worms.
Enhancements:
- New server/request/response API
- Simplification of all allocation
- Updates to match draft RFC specification
- Complete error message and diagnostics overhaul
- Numerous protocol, error and bug-fixes
- Thread safety in all resolvers
- Complete spfd and spfquery rewrite
- New cache algorithm
- Fixes for alignment on Sparc systems
Download (0.50MB)
Added: 2005-11-10 License: LGPL (GNU Lesser General Public License) Price:
1446 downloads
OpenAFS 1.4.0
OpenAFS is a client-server distributed filesystem. more>>
AFS is a distributed filesystem product, pioneered at Carnegie Mellon University and supported and developed as a product by Transarc Corporation (now IBM Pittsburgh Labs).
It offers a client-server architecture for file sharing, providing location independence, scalability and transparent migration capabilities for data.
IBM branched the source of the AFS product, and made a copy of the source available for community development and maintenance. They called the release OpenAFS.
Enhancements:
- OpenAFS 1.4.0 adds large file support in Unix and Unix-like clients and in servers.
- Kerberos 5 integration has been improved. aklog now ships with OpenAFS 1.4.0.
- Several new operating system versions are now supported, including Solaris 10 on both SPARC and Intel.
<<lessIt offers a client-server architecture for file sharing, providing location independence, scalability and transparent migration capabilities for data.
IBM branched the source of the AFS product, and made a copy of the source available for community development and maintenance. They called the release OpenAFS.
Enhancements:
- OpenAFS 1.4.0 adds large file support in Unix and Unix-like clients and in servers.
- Kerberos 5 integration has been improved. aklog now ships with OpenAFS 1.4.0.
- Several new operating system versions are now supported, including Solaris 10 on both SPARC and Intel.
Download (55.5MB)
Added: 2005-11-02 License: IBM Public License Price:
1457 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above sparc search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed