Main > Free Download Search >

Free international virtual observatory software for linux

international virtual observatory

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 944
Virtual Collaboratory 2.6

Virtual Collaboratory 2.6


Virtual Collaboratory is a directed discussion forum based on Mailman and Smartarchiver. more>>
Virtual Collaboratory is a directed discussion forum based on Mailman and Smartarchiver that provides for threaded short and long term discussions.
Virtual Collaboratory includes a calendaring function, integratation with the Elluminate meeting software, document exchange, version control, a research resource center, custom categorizations, FAQs, and the ability to search for users with similar interests.
Enhancements:
- Refactored Plone into three separate products
- Better Elluminate integration
- I18N support via Py-MYCMSs traslate functionality
- Refactored smartarchiver as a py-mycms system
- Easier isntallation through Install Constancts
- Front page Alerts
- BlogPoster blog management system (works with your blog to help groups collaborate on blog content)
- No longer requires specially patched versions of Zope & plone. (Authentications now done through the PyMyCMSUserFolder)
- Virus checking (pyclamav) now supported if pyclamav is installed
<<less
Download (0.87MB)
Added: 2006-10-21 License: GPL (GNU General Public License) Price:
1099 downloads
Linux Virtual Server 1.21

Linux Virtual Server 1.21


Linux Virtual Server is a load-balancing and server clustering system for Linux. more>>
The Linux Virtual Server is a highly scalable and highly available server built on a cluster of real servers, with the load balancer running on the Linux operating system.

The architecture of the server cluster is fully transparent to end users, and the users interact as if it were a single high-performance virtual server.

The basic goal of the Linux Virtual Server Project is to:
- Build a high-performance and highly available server for Linux using clustering technology, which provides good scalability, reliability and serviceability.
<<less
Download (0.03MB)
Added: 2005-04-06 License: GPL (GNU General Public License) Price:
1673 downloads
International Components for Unicode 3.6

International Components for Unicode 3.6


International Components for Unicode provides a Unicode implementation. more>>
International Components for Unicode provides a Unicode implementation, with functions for formatting numbers, dates, times, and currencies (according to locale conventions, transliteration, and parsing text in those formats).
It provides flexible patterns for formatting messages, where the pattern determines the order of the variable parts of the messages, and the format for each of those variables. These patterns can be stored in resource files for translation to different languages. Included are more than 100 codepage converters for interaction with non-unicode systems.
Main features:
- Text: Unicode text handling, full character properties and character set conversions (500+ code pages)
- Analysis: Unicode regular expressions; full Unicode sets; character, word and line boundaries
- Comparison: language sensitive collation and searching
- Transformations: normalization, upper/lowercase, script transliterations (50+ pairs)
- Locales: comprehensive data (230+) & resource bundle architecture
- Complex Text Layout: Arabic, Hebrew, Indic and Thai
- Formatting and Parsing: multi-calendar and time zone,dates, times, numbers, currencies, messages
Enhancements:
- This is a major release, with new features, new APIs, and many bugfixes in data and code.
- ICU uses and supports Unicode 5.0, which is the latest major release of Unicode.
- CU uses and supports data from Common Locale Data Repository (CLDR) 1.4, which includes many improvements in quality and quantity of data.
- A charset detection framework was added, which provides heuristics for detecting the charset for unlabeled sequences of bytes.
- Other performance and feature enhancements were added.
<<less
Download (9.7MB)
Added: 2006-09-08 License: MIT/X Consortium License Price:
662 downloads
Virtual server monitor 0.5

Virtual server monitor 0.5


Virtual server monitor (vsmon) is a monitoring tool for Linux-VServer. more>>
Virtual server monitor (vsmon) is a monitoring tool for Linux-VServer that gives a system administrator a global view of all vservers running on his park.
For now, it does not offer control over the vservers life cycle (e.g. provisioning, start, stop, and restart operations). To use vsmon, you must deploy one backend on each vserver host and one frontend, preferably in its own vserver.
Enhancements:
- The frontend was reworked to display a summary of all hosts.
- An owner can be assigned to each vserver.
- The backend can be used on hosts without Linux-VServers, and it no longer obtains IP addresses.
- The libdnet dependency was removed.
- The parsing of /proc/"pid"/stat now works for kernel 2.6.18.
- A Nagios plugin was added, which enables the use of the vsmon backend to monitor a host disk, memory, and swap.
- The plugin monitors all mount points according to an "intelligent" algorithm, which determines warning and critical thresolds as a function of the total size of the partition.
<<less
Download (MB)
Added: 2007-01-16 License: GPL (GNU General Public License) Price:
1015 downloads
The Manhattan Virtual Classroom 3.2

The Manhattan Virtual Classroom 3.2


The Manhattan Virtual Classroom is a course management system that runs on Linux and other Unix-like systems. more>>
The Manhattan Virtual Classroom is a stable, fast and effective course management system that runs on Linux and other Unix-like systems.
Its written entirely in the C programming language (fast! - light hardware requirements) and is 100% database-free (no MySQL administration, no tuning issues- simple!) Manhattan supports thousands of users at its Western New England College home, and at other colleges and schools around the world.
Its one of the best-kept secrets of the online learning world - a course management system "for the rest of us".
Main features:
- Provide your students with handouts, notices, lecture materials, interactive self-tests, and web sites to visit.
- Assign homework for your students to complete, receive the work they do in response to those assignments, and provide feedback.
- Issue multiple-choice, True/False, and short answer exams.
- Issue more involved exams where the students are expected to do their work offline, and submit their responses in the form of a word processing, spreadsheet, or other type of file(s).
- Exchange private messages with your students.
- Host discussions with the entire class, or with teams of students.
- Keep students apprised of their grades.
- Issue surveys to your students and collect the results.
- Engage in live online "chats" with your students.
- Track which students are using the system and when.
<<less
Download (4.1MB)
Added: 2006-10-31 License: GPL (GNU General Public License) Price:
1095 downloads
Network Virtual Terminal for Java 1.0 Alpha 1

Network Virtual Terminal for Java 1.0 Alpha 1


Network Virtual Terminal for Java is a library that can drive a terminal emulator. more>>
Network Virtual Terminal for Java is a library that can drive a terminal emulator connected to the application through a telnet session.

Usage:

The API consists of the interface nvt4j.Terminal . The implementation of this class is called nvt4j.impl.Terminal. To allow the user to connect to the application you need to listen for a tcp connection and then wrap a Terminal object around it:

ServerSocket serverSocket = new ServerSocket(8000);
Socket socket = serverSocket.accept();
Terminal terminal = new nvt4j.impl.Terminal(socket);

For example, to run the sample class Example.java from an xterm session, you can
do this:

user@localhost$ java -classpath nvt4j.jar Example &
user@localhost$ telnet localhost 8000

NVT4J uses the Telnet LINEMODE option to put the terminal driver (xterm in this case) in what the posix standard calls raw or non-canonical mode, so that it can receive all user inputs asap, instead of waiting for a new-line character.

Unfortunately in pure Java there is no way to put the operating system console in
raw mode. On Linux and similar systems this is done using the stty command, which is a native program which manipulates the terminal driver in the operating system.

Whats New in This Release:

First alpha release. This code is quite limited but it already provides the basic functions needed to drive a terminal emulator for Java, namely putting the terminal driver in raw mode, turning off the cursor and client-side echo, and detecting the size of the terminal emulator window.

This code has been tested only with xterm.

<<less
Download (0.039MB)
Added: 2006-01-19 License: The Apache License 2.0 Price:
1378 downloads
RPM Delta Compression Virtual Update Repository 0.2.0

RPM Delta Compression Virtual Update Repository 0.2.0


RPM Delta Compression Virtual Update Repository for significantly reducing the bandwidth required to apply updates. more>>
RPM Delta Compression Virtual Update Repository is an experiment to explore the possibility of significantly reducing the bandwidth required to apply updates to a Fedora installation.
This software includes a server which provides a virtual update repository to clients such as yum, up2date, or other update tools. RPM Delta Compression Virtual Update Repository also includes a utility to create and maintain a RPM delta repository.
The server will attempt to generate the update RPM from a small delta file applied to a locally stored RPM from the original distribution.
Enhancements:
- This version utilizes the SuSE deltarpm tool as the underlying delta generator.
- It features both HTTP virtual update of the RPM repository (using Tomcat servlet container) and command line tools for generating update RPMs from a delta repository.
<<less
Download (0.24MB)
Added: 2006-03-02 License: GPL (GNU General Public License) Price:
1334 downloads
Virtual Object System 0.23.0

Virtual Object System 0.23.0


Virtual Object System projects goal is to develop a open platform for multi-user 3D virtual reality games. more>>
The Interreality project is a collection of Open Source, Free Software projects based on the Virtual Object System (VOS) platform. Virtual Object System projects goal is to develop a open platform for multi-user 3D virtual reality games, applications, and interactive, collaborative 3D virtual spaces. VOS is a powerful and generic network object framework designed to support a variety of high-performance applications. It is the basis for TerAngreal, a general-purpose browser application for entering and participating in 3D worlds.

<<less
Download (2.7MB)
Added: 2006-04-17 License: LGPL (GNU Lesser General Public License) Price:
1287 downloads
Virtual Administrator Daemon 0.2.0

Virtual Administrator Daemon 0.2.0


Virtual Administrator Daemon is set of Perl scripts and modules which can help with remote server management. more>>
Virtual Administrator Daemon is set of Perl scripts and modules which can help with remote server management. It uses XML input/otput, and can be run by (x)inetd.
It can receive multiple commands to execute, and it has been built to provide support for a scalable system administration environment.
Since it takes XML, clients can be developed in a different set of environments with easy integration into the server.
Enhancements:
- This release added support for standalone/daemon mode, SSL support and a default SSL certificate, a default timeout of 30 seconds while reading or writing sockets, more refined log messages, and new < mode >< /mode >, < ip >< /ip >, < port >< /port >, and < listen >< /listen > configuration elements.
<<less
Download (0.19MB)
Added: 2006-10-28 License: GPL (GNU General Public License) Price:
1091 downloads
Parallel Virtual File System 1.6.3

Parallel Virtual File System 1.6.3


Parallel Virtual File System is a parallel file system for clusters of PCs more>>
The goal of the Parallel Virtual File System (PVFS) Project is to explore the design, implementation, and uses of parallel I/O. PVFS serves as both a platform for parallel I/O research as well as a production file system for the cluster computing community. PVFS is currently targeted at clusters of workstations, or Beowulfs.
The PVFS project is conducted jointly between The Parallel Architecture Research Laboratory at Clemson University and The Mathematics and Computer Science Division at Argonne National Laboratory.
Additional funding for the PVFS project comes from NASA Goddard Space Flight Center Code 930 and The National Computational Science Alliance through the National Science Foundations Partnerships for Advanced Computational Infrastructure.
Main features:
- Compatibility with existing binaries
- Ease of installation
- User-controlled striping of files across nodes
- Multiple interfaces, including a MPI-IO interface via ROMIO
- Utilizes commodity network and storage hardware
PVFS supports the UNIX I/O interface and allows existing UNIX I/O programs to use PVFS files without recompiling. The familiar UNIX file tools (ls, cp, rm, etc.) will all operate on PVFS files and directories as well. This is accomplished via a Linux kernel module which is provided as a separate package.
PVFS is easy to install. The Quick Start page describes how to set up a simple installation. Scripts and test applications are included to help with configuration, testing for correct operation, and performance evaluation.
PVFS stripes file data across multiple disks in different nodes in a cluster. By spreading out file data in this manner, larger files can be created, potential bandwidth is increased, and network bottlenecks are minimized. A 64-bit interface is implemented as well, allowing large (more than 2GB) files to be created and accessed.
Enhancements:
- fixes to build under redhat 2.4.20-20.9 kernel
- checks for missing headers on ancient 2.4 kernels
- removal of unused fields from metadata and control messages
- updated pvfsd rc file
- handle various combinations of redhat kernel patches
- fixes to kpvfsd that had previously been fixed in user space
- fix for sftp directory reading problems
- fix to avoid oopses on clients when bad errno values returned
- adjustments to deal wiht gcc 3.4.0 issues
- fixes to work with redhat 9
- fixes to compile kernel code for xx86_64
- updated logging intrastructure
- fixes to error reporting
- update of makefile in pvfs core
- fix to bug in pvfs_open.c where pcount < 0 caused errors
- removed duplicated code in mgr
- fix for problem with bvrecv() optimization
- more unused code removal
- adjustments to keep portland group compiler happy
- removed sd_path from metadata
- new iod.rc and mgr.rc files
- fixes to chmod
- fixes to get correct fs_ino back to clients
- multiple mtime fixes
- streamlined pvfs file detection
- shared library building
- fixed closing socket bug in iod
- reordered messaging in mgr to iods to improve concurrency
- rename fix
- improved metadata file checking
- do_access permission fixes
- fix for "iod out of space" client hang
- cleaner dead socket handling, including special handling of case where mgr would close fds that clients were using
- noninteractive mkmgrconf
<<less
Download (0.23MB)
Added: 2005-04-08 License: GPL (GNU General Public License) Price:
1659 downloads
Kool Virtual Decks 0.0.0b

Kool Virtual Decks 0.0.0b


Kool Virtual Decks project is a professional double CD player emulator like Virtual Turn Tables. more>>
Kool Virtual Decks project is a professional double CD player emulator like Virtual Turn Tables, BPM Studio or any other as you know.

The idea is that you can mix two songs like a DJ would make in his/her dual cd player or in his/her turntables.

Well this program is just a preview, and idea. It doesnt work yet.

If you want to join to this project or if you have any suggestion please e-mail me.

<<less
Download (0.26MB)
Added: 2006-10-09 License: GPL (GNU General Public License) Price:
1118 downloads
High Level Virtual Machine 0.1

High Level Virtual Machine 0.1


High Level Virtual Machine is a toolkit for developing virtual machines for dynamic languages. more>>
High Level Virtual Machine is a toolkit for developing virtual machines for dynamic languages.
The High Level Virtual Machine is:
- Based on LLVM (Low Level Virtual Machine). LLVM is HLVMs sister project. HLVM gains tremendous capability from LLVM in the areas of code generation, bytecode storage, runtime execution, etc.
- Aimed at supporting dynamic languages such as Ruby, Python, Perl, Jython, Haskell, Prolog, etc.
- A complete compiler developers toolkit for creating new languages easily. To write a new compiler, language designers simply write a plugin that describes the language to HLVM and how to translate the grammar productions into HLVMs comprehensive Abstract Syntax Tree (AST). After that, HLVM handles all aspects of code generation, bytecode storage, XML translation, JIT execution or interpretation, and native compilation.
- A language interoperability framework. Because all front end compilers generate code in the same AST, they can interoperate. Use of the runtime library for common constructs (e.g. "string") allow even complex data types to be shared between languages. Users of HLVM can write complex programs in multiple languages and be assured the result can be executed efficiently.
- A code management system including code revisioning, interface versioning, automated recompilation, separation of workspaces, etc.
- Currently under development. Project started April 20th, 2006. Stay tuned to this web site for future developments.
<<less
Download (0.12MB)
Added: 2006-06-15 License: LGPL (GNU Lesser General Public License) Price:
1227 downloads
Virtual Cron 0.1

Virtual Cron 0.1


Virtual Cron is a PHP library that can check whether it is time to run a periodical task. more>>
Virtual Cron is a PHP library that can check whether it is time to run a periodical task. The class can be used to check whether it is time to run a task that must run from time to time.

It creates a control file to keep track the last time the task was scheduled.

The class can check the control file last modification time to determined whether it passed a given period of time since the last time the task was run.

If the given interval time has passed since the last run, the class recreates the control file and returns true to inform the application that is time to run the task again.

<<less
Download (MB)
Added: 2007-04-24 License: LGPL (GNU Lesser General Public License) Price:
924 downloads
The 64 bit Virtual CPU Project 0.0.23

The 64 bit Virtual CPU Project 0.0.23


The 64 bit Virtual CPU Project is a project to create 64-bit virtual CPU. more>>
This is a project to create 64-bit virtual CPU, create a 64 bit assembler for the CPU and then port C to it, and then create scripts to port GNU/Linux to it.
The aim is to run 64-bit Linux on common 8/16/32 bit CPUs in applications where speed is not an issue.
Enhancements:
- Added C code intended tor a PIC Preliminary documentation More updates to Gambas program
<<less
Download (0.67MB)
Added: 2005-07-06 License: GPL (GNU General Public License) Price:
1600 downloads
Virtual Tomcat 0.1

Virtual Tomcat 0.1


Virtual Tomcat is a set of scripts designed to ease administration tasks involved with hosting multiple JVM instances. more>>
Virtual Tomcat project is a set of scripts designed to ease administration tasks involved with hosting multiple JVM instances and domains using Apache Tomcat and HTTPd.

The system (which uses jsvc to spawn instances) allows users to deploy their own applets from within their home directories, as well as allowing full access to /manager and /admin applets.

<<less
Download (0.015MB)
Added: 2006-04-17 License: BSD License Price:
736 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5