Main > Free Download Search >

Free free sa 1.3.3 software for linux

free sa 1.3.3

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 120
Free-SA 1.3.3

Free-SA 1.3.3


Free-SA is a statistic analyzer for Linux systems. more>>
Free-SA is a statistic analyzer for Linux systems. Its main advantages over SARG are much better speed, more support for reports, and W3C compliance of generated HTML/CSS reports.
It can be used to help control traffic usage, to control Internet access security policies, to investigate security incidents, to evaluate server efficiency, and to detect troubles with configuration.
Enhancements:
- Better support for different Postfix log files (still experimental, but closer to stable).
- There are also some cross-platform fixes and code improvements.
- New file extensions have been added for the downloads report.
<<less
Download (MB)
Added: 2007-07-23 License: GPL (GNU General Public License) Price:
824 downloads
Hermes 1.3.3

Hermes 1.3.3


Hermes is a graphics library designed to do a very limited number of things and do them very well. more>>
Hermes is a graphics library designed to do a very limited number of things and do them very well. It is also very easy to incorporate Hermes into existing code. Hermes is intended for use either directly in an application program or inside another graphics library.

Released under the Library GNU Public License (LGPL), it is open source and under continual improvement.

The long feature list includes things like:

Palette handling
Clearing surfaces to a specific color

Highlights are:

Conversion of images from one format to another
Converting to/from many common formats using special, optimized conversion routines
Automatic fallback to generic conversion routines if there is no specialized routine
Stretching images between conversion when possible
Automatic dithering if requested

All features are implemented using an internal caching system, drastically improving the performance of common operations such as table lookups. In addition, on MMX systems, Hermes can use optimized MMX assembler to further improve performance.

Its portable across many systems:

Linux/FreeBSD: Uses assembler routines on Intel/Intel-compatible architectures
Other UNIX systems: Doesnt use assembler, though it is compatible with big-endian systems
DOS and Watcom C or DJGPP: Uses assembler routines
Windows and Visual C++: Uses assembler routines
<<less
Download (0.44MB)
Added: 2005-10-07 License: GPL (GNU General Public License) Price:
1483 downloads
Sanos 1.3.3

Sanos 1.3.3


Sanos is a minimalistic 32-bit x86 OS kernel for network server appliances running on standard PC hardware. more>>
Sanos is a minimalistic 32-bit x86 OS kernel for Java based server appliances running on standard PC hardware.
This enables you to run java server applications without the need to install a traditional host operating system like Windows or Linux. Only a standard Java HotSpot VM and the sanos kernel are needed.
The kernel was developed as part of an experiment on investigating the feasibility of running java server applications without a traditional operating system only using a simple kernel.
The kernel implements basic operating system services like booting, memory management, thread scheduling, local and remote file systems, TCP/IP networking and DLL loading and linking.
A win32 layer allows the Windows version of the standard HotSpot JVM to run under sanos, essentially providing a JavaOS platform for server applications. This enables you to run java based server applications, like tomcat and jboss, under sanos.
Alternatively, you can use sanos as a small kernel for embedded server applications written in C. Sanos has a fairly standard POSIX based API and an ANSI Standard C library. In this case you dont need the JVM and the win32 wrappers.
Sanos is open source under a BSD style license. Please see the COPYING file for details.
Click on the topics below for further information, or send me an e-mail if you have any questions, comments or problems regarding sanos. Please include the word sanos in the mail to prevent it from being intercepted by my spam filter.
Sanos can be downloaded as either binary or source. All the files in the binary version can be built from the source version, so you do not need the binary version, if you are building sanos from source.
The binary version contains the compiled version of sanos, with files and utilities for making a boot disk.
The source version contains all the source code and build files for building sanos from source. You will need a Microsoft Visual C compiler to build sanos from source.
Enhancements:
- GetLogicalDrives() in kernel32 implemented.
- A bug in cmd_ipconfig() in sh.c prevented proper display of network configuration if no DNS servers was configured. This problem has been fixed. (FGA)
- New -a option added to mkdfs to support file lists with alternative files names. This simplifies configurations with both debug and release builds.
- The Visual Studio wizard can now generate a floppy disk boot image configured for the application.
- Shell prompt can be configured by setting the prompt property in the [shell] section of the os.ini file.
- If command line arguments are given to the shell it now executes the built-in command and exits the shell.
- The floppy motor timeout routine now acquires the floppy mutex before turning off the motor in order to prevent race conditions.
- Advanced Power Management (APM) support implemented. The computer can now be powered off after os shutdown. The mode parameter for exitos() can be used to specify the shutdown mode (halt, reboot, poweroff, debug). A shutdown command has been added to the shell. The power status can be retrieved using /proc/apm.
- Added /proc/cpu for CPU information.
- The raise() function now returns an error if the signal number is invalid.
- Breakpoint traps are now sent to the user mode signal handler. This allows breakpoints to be handled by user mode code.
- Signals now exits the currently executing job with the signal number as exit code. However, if the debug flag in the PEB is set the debugger is entered if an unhandled signal is encountered. The debug flag can be set using the debug command in the shell. The debug flag can be configured using the debug property in the [os] section of os.ini. The default value of the debug flag is 0, unless the system is build in debug configuration.
- readv() and writev() implemented in vfs.
- The kernel log is now implemented by the device driver /dev/klog. The kernel log now support ioctl for waiting for new log entries in the kernel log. The kprintf has been extended to support different log levels.
- The syslog interface has been redesigned in to comply with POSIX. The syslog now supports logging to a syslog server by setting the loghost property in the [os] section of os.ini.
- New klog daemon to read entries from the kernel log (/dev/klog) and add them to the system log.
- The sockaddr and sockaddr_in structures has been change to conform to winsock definitions.
- The sleep() function has been renamed to msleep(). A new POSIX conformant sleep function has been added to unistd.h.
- Added sys/time.h header file. Also added tzp parameter to gettimeofday() for POSIX compliance.
- New simple text editor utility (edit.exe) added.
- The syserror() function has been moved from libc.lib to the os.dll as an exported os api call.
- readline() now uses stdin and stdout for input and output.
- Bug in iomux fixed. Now a monitored event signals the iomux and not the associated object.
- Implemented popen() and pclose(). Also added a P_SUSPEND parameter to spawn() to allow new jobs to be started suspended.
- The kernel version information is now kept in a version resource in krnl.dll. The version information is retrieved using the new module version information functions in verinfo.c.
- The build type can now be controlled by compile time switches. The kernel version can be displayed in the Windows Explorer by viewing Properties for krnl.dll and selecting the Version tab.
- User management added to kernel. Each thread is now assigned to a user and a group. A thread has both a real and an effective user and group owner. The {get|set}[e]{uid|gid}() functions can be used to change the effective and real user and group for a thread. When a new thread is created the effective user and group are inherited from the creator thread.
- Added functions to query /etc/passwd and /etc/group files.
- New whoami, id, chmod, and chown commands added to shell. The format of the output from ls has been changed to display the file permission info.
- New file system version for DFS. The new version supports user and group owner for files and directories as well as permission bits. The new DFS version also supports files larger than 2GB. The fchown() and chown() functions has been added to vfs.
- DES-based crypt() implementation added.
- The spawn() function now computes the pgm parameter from the cmdline parameter if the pgm parameter is NULL. The initpgm and initargs properties in the [os] section of /etc/os.ini has been replaced with a single property named init. The default for init has been changed to /bin/sh.
- The behavour of the initial application has been changed. Previously the os shut down after the initial application exited. Now the initial application is executed again if it exits.
- Telnet daemon moved from the shell to separate server (telnetd.exe). The new telnet daemon has a more robust handling of the telnet protocol. The telnet daemon invokes the new login utlity in order to log on user.
- FTP daemon implemented.
<<less
Download (0.38MB)
Added: 2005-10-21 License: GPL (GNU General Public License) Price:
1466 downloads
Free Statistics 1.1.0

Free Statistics 1.1.0


Free Statistics records and views daily Web site page views (hits) for statistical tracking. more>>
Free Statistics records and views daily Web site page views (hits) for statistical tracking. This is a Free PHP script to record and view daily website page views (hits) for statistical tracking. Features a chart of daily page views totals displayed with bar graph, total for last x days, most hits in a day for last x days, average hits per day for last x days, projected hits for today, and more. Easy to install.
Edit the values in config.php for MySQL; change the other variables if you want (is optional). Do not edit other files.
Copy the files to the same directory on your server.
Install MySQL table. Execute the following in PhpMyAdmin or other MySQL interface:
CREATE TABLE stats_day (
date date DEFAULT 0000-00-00 NOT NULL,
hits mediumint(8) unsigned DEFAULT 0 NOT NULL,
PRIMARY KEY (date)
);
For php files, you can add this code to each page to record page views to it (be sure to add the path if needed):
If the page is in a different folder than the stats script, you can add the path such as:
You can record stats for non-php pages (and php pages also) by adding this code in the body of the html (remember to add the correct path to the script; you can use a full url here; Note, this only records hits for browsers with images-loading enabled):
Main features:
- Chart of daily page views totals displayed with bar graph, total for last x days, most hits in a day for last x days, average hits per day for last x days, projected hits for today, and more. Easy to install.
<<less
Download (0.006MB)
Added: 2006-06-23 License: GPL (GNU General Public License) Price:
1222 downloads
libfget 1.3.3

libfget 1.3.3


fget is a commandline tool for mirroring remote files via FTP. more>>
fget is a commandline tool for mirroring remote files via FTP. It is based upon the included FTP client library, whose API is designed to resemble the normal Unix API for accessing files and directories.
This interface should make it very easy to integrate FTP support into other applications.
Main features:
- Small and fast.
- Remote directory caching built into the FTP client library.
- API designed to resemble the normal UNIX API for accessing files and directories, so its very easy to use.
Enhancements:
- fixed include file problem for cygwin
- misc code cleanups in fget code (added lots of comments)
- added fget "-S" option
<<less
Download (0.37MB)
Added: 2005-09-19 License: BSD License Price:
1495 downloads
wmtheme 1.3.3

wmtheme 1.3.3


wmtheme is a utility which, generally speaking, allows you to perform certain operations on themes by name. more>>
wmtheme is a utility which, generally speaking, allows you to perform certain operations on themes by name. For example, to rename do wmtheme -r oldname newname, or to activate do wmtheme name.
Furthermore, it takes great care to make installation painless, in spite of evolving formats, packaging carelessness, and incompatibility between old themes and current window managers. wmtheme -i theme-package.tar.gz will almost always result in a correct installation.
It will also take steps to clean up settings that dont belong in themes, and disable suspicious-looking shell commands (these sorts of things might occur in Window Maker or Blackbox themes). This behavior can be turned off, however.
Enhancements:
- name matching now prefers an initial substring
- change Blackbox version parser to handle 0.65.0s -version output
- use pod for manpage
- support gtk+ version 2, discontinue support for gtk+ version 1
- remove attempts to compile gtk+ engines
- updates for changes in IceWM theme handling
- remove afterstep support
<<less
Download (0.073MB)
Added: 2006-04-19 License: GPL (GNU General Public License) Price:
1283 downloads
Free Orion 0.3

Free Orion 0.3


FreeOrion is an open-source game inspired by Master of Orion. more>>
FreeOrion is an open-source game inspired by Master of Orion, is a turn-based game of epic space strategy that builds on the classic 4X model by incorporating the nation-building elements of games such as Europa Universalis 2 and a versatile tactical combat engine.

While its modular, open-source design allows for a significant degree of customization of the game engine and the story elements by the community, the FreeOrion team is dedicated to the construction of a living, breathing universe in a grand campaign model.

<<less
Download (MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
1027 downloads
qadsl 1.3.3

qadsl 1.3.3


qadsl is a small utility to login on the Telia AB ADSL service. more>>
qadsl is a small utility to login on the Telia AB ADSL service. It also works good with COMHEM Cable Internet and Tiscali Internet services.
It should be pointed out, however, that Alive is not limited to only Orbyte-based login servers. It is quite generic, see the alive.conf file for helpful hints and pointers. The --debug and --verbose options to alive is also very useful.
See the download section for the latest .tar.gz and .deb packages.
RedHat/Fedora developer? The source packages include a home brew .spec file that we could use some help with to complete. It would be so much easier to supply pre-built .rpms as well.
GNU Alive is tested before each release on the following currently supported platforms:
Slackware 9.1 (i386)
Mandrake 9.2 (i386)
Debian GNU/Linux (i386/Sarge)
Debian GNU/Hurd (i386/Sid)
FreeBSD 5.1 (alpha)
NetBSD 1.6 (i386)
OpenBSD 3.6 (i386)
CygWin (win32)
Enhancements:
- NEWS: Cleanup.
- TODO: Note on how --debug should imply --verbose.
- src/process.c (process): Cleanup and add more logging, all in favour of new logging scheme.
- src/main.c (main): New command line option, -d, --debug. In favour of this and the new logging stuff verbose level adjusted accordingly.
<<less
Download (0.047MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1207 downloads
Free iPod 1

Free iPod 1


Proven guide to get a free PS3, free Wii, free Xbox 360, free iPhone, free iPod , free HDTV & much more. I am a private individual just like you. Gett... more>> <<less
Download (41KB)
Added: 2009-04-12 License: Freeware Price: Free
194 downloads
PloneGlossary 1.3.3

PloneGlossary 1.3.3


PloneGlossary is a project made for showing links to defined words when they appear in the site text. more>>
PloneGlossary is a project made for showing links to defined words when they appear in the site text.
PloneGlossary is a Plone content type that allows you to manage your own glossaries, propose definitions and search in one or more glossaries. Any word defined is instantly highlighted in the content of your site.
Once a glossary is created, you can add your definitions to it. Definitions are a simple content type. Enter the word you want to define as the title, and the definition of the word in the text body. You can also specify variants of the word. For example if you define the word yoghurt, you may also want to allow the variants yogurt or yoghourt to be valid. Definitions will be highlighted (like an acronym) when they appear elsewhere in your site. (Also see the ploneglossary configlet.)
Once you have a large number of definitions in your glossary, you can browse the glossary by the means of an alphabetic index, or perform a search in the glossary. Each glossary has an integrated search engine, which is simply a ZCatalog.
Main features:
- Glossary portlet: If switched on, a portlet listing all definitions found in the currently shown content.
- Highlight content: if this option is chosen, all defined words are hightlighted in the chosen content types (see further).
- Description length : Choose the maximum length of the given definition in the highlights.
- Description ellipsis: Choose an ellipsis. It is used in the highlight when the defined term exceeds the description length.
- Not highlighted tags: Define the html tags in which definitions should not be highlighted. Default: h1, a, input, textarea
- Allowed portal types: Select the portal types for which defined words are highlighted.
- General glossaries: Select glossaries used to check related terms of content.
<<less
Download (0.084MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
984 downloads
BibORB 1.3.3

BibORB 1.3.3


BibORB project is a Bibtex on-line reference browser. more>> <<less
Download (0.15MB)
Added: 2007-02-07 License: GPL (GNU General Public License) Price:
989 downloads
Free Reign 0.2.1

Free Reign 0.2.1


Free Reign project consists of a fully-3D city simulator. more>>
Free Reign project consists of a fully-3D city simulator.
Free Reign is a fully-3D city simulator, with advanced features planned such as ore mining, advanced financial models, and other features users request.
Main features:
- Crashes on demand
- OpenGL based graphics
- Fully 3D (rotateable map etc)
Installation
At the current time, installation of the game is by simply compiling and running the game in the compile directory. Compilation is standard:
Type ./configure in the FreeReign directory
Type make when configure succeeds.
Change to the src directory
Type ./fr to run the game
Enhancements:
- Bug fix in getMinHeight/Max - ugh. How did I ever forget that? My last C++ compiler must have assumed I was returning height..my God.
<<less
Download (0.26MB)
Added: 2007-01-09 License: GPL (GNU General Public License) Price:
1020 downloads
GIT 1.3.3

GIT 1.3.3


GIT is the stupid content tracker. more>>
GIT is the stupid content tracker.
Main features:
- Documentation is in much better shape. Thanks everybody.
- Two grave bugs in git fetch were caught and fixed. One is "Fix fetching of tags", the other is "Fix pulling into the same branch.".
- We have archimport (unfortunately undocumented yet), and cvsimport is being improved.
- Revert, rebase and cherry-pick are done using three-way merge, not a straight patch application.
- git commit should be a bit easier to use than before in initial commits and merge commits.
- git applymbox is a bit more accomodating and it should be easier to handle MIME patches than before.
- As usual, comes with more recent gitk.
- Better merge algorithms and the infrastructure are being worked on by Daniel and Fredrik; they are not in this release yet.
Enhancements:
- This release adds numerous minor bugfixes and enhancements.
<<less
Download (0.003MB)
Added: 2006-05-27 License: GPL (GNU General Public License) Price:
1245 downloads
OSSP sa 1.2.6

OSSP sa 1.2.6


OSSP sa is an abstraction library for the Unix socket application programming interface (API). more>>
OSSP sa is an abstraction library for the Unix socket application programming interface (API) featuring stream and datagram oriented communication over Unix Domain and Internet Domain (TCP and UDP) sockets.
It provides the following key features: address abstraction (local, IPv4, and IPv6), type abstraction, I/O timeouts, I/O stream buffering and convenience I/O functions.
Main features:
Stand-Alone, Self-Contained, Embeddable
- Although there are various Open Source libraries available which provide a similar abstraction approach, they all either lack important features or unfortunately depend on other companion libraries. OSSP sa fills this gap by providing all important features (see following points) as a stand-alone and fully self-contained library. This way OSSP sa can be trivially embedded as a sub-library into other libraries. It especially provides additional support for namespace-safe embedding of its API in order to avoid symbol conflicts.
Address Abstraction
- Most of the ugliness in the Unix Socket API is the necessity to have to deal with the various address structures (struct sockaddr_xx) which exist because of both the different communication types and addressing schemes. OSSP sa fully hides this by providing an abstract and opaque address type (sa_addr_t) together with utility functions which allow one to convert from the traditional struct sockaddr or URI specification to the sa_addr_t and vice versa without having to deal with special cases related to the underlying particular struct sockaddr_xx. OSSP sa support Unix Domain and both IPv4 and IPv6 Internet Domain addressing.
Type Abstraction
- Some other subtle details in the Unix Socket API make the life hard in practice: socklen_t and ssize_t. These two types originally were (and on some platforms still are) plain integers or unsigned integers while POSIX later introduced own types for them (and even revised these types after some time again). This is nasty, because for 100% type-correct API usage (especially important on 64-bit machines where pointers to different integer types make trouble), every application has to check whether the newer types exists, and if not provide own definitions which map to the still actually used integer type on the underlying platform. OSSP sa hides most of this in its API and for socklen_t provides a backward-compatibility definition. Instead of ssize_t it can use size_t because OSSP sa does not use traditional Unix return code semantics.
I/O Timeouts
- Each I/O function in OSSP sa is aware of timeouts (set by sa_timeout(3)), i.e., all I/O operations return SA_ERR_TMT if the timeout expired before the I/O operation was able to succeed. This allows one to easily program less-blocking network services. OSSP sa internally implements these timeouts either through the SO_{SND,RCV}TIMEO feature on more modern Socket implementations or through traditional select(2). This way high performance is achieved on modern platforms while the full functionality still is available on older platforms.
I/O Stream Buffering
- If OSSP sa is used for stream communication, internally all I/O operations can be performed through input and/or output buffers (set by sa_buffer(3)) for achieving higher I/O performance by doing I/O operations on larger aggregated messages and with less required system calls. Additionally if OSSP sa is used for stream communication, for convenience reasons line-oriented reading (sa_readln(3)) and formatted writing (see sa_writef(3)) is provided, modelled after STDIOs fgets(3) and fprintf(3). Both features fully leverage from the I/O buffering.
Enhancements:
- Removed SA_SYSCALL_GETHOSTBYNAME because gethostbyname(3) cannot be overridden as at is use point (function sa_addr_u2a) the sa_t object is not available.
- Additionally, for IPv6 getaddrinfo(3) would have been overridden, too.
- This fixed compilation on platforms without IPv6 APIs.
<<less
Download (0.33MB)
Added: 2005-10-03 License: MIT/X Consortium License Price:
1481 downloads
Audacity 1.3.3

Audacity 1.3.3


Audacity is a cross-platform multitrack audio editor. more>> <<less
Download (4.0MB)
Added: 2007-05-18 License: GPL (GNU General Public License) Price:
6535 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5