Main > Free Download Search >

Free ds software for linux

ds

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 26
DSLinux 01-08-07

DSLinux 01-08-07


DSLinux is a project that aims to port Linux to the Nintendo DS gaming console. more>>
DSLinux is a project that aims to port Linux to the Nintendo DS gaming console.
Important information:
root password for DSLinux builds since Jun 28 2005 is "uClinux" (case sensitive!)
Works on real hardware, use on emulators is not supported
Since Apr 28 2007, RAM build is integrated in the DLDI build.
Enhancements:
- Restored user/mc/src/vfs/mad.c
- Restored user/mc/src/vfs/mad.h
- Restored user/mc/src/intl/libintl.h
- D toolchain/patches/elf2flt-20051225.diff
- A toolchain/patches/elf2flt-20070723.diff
- U toolchain/Makefile
- U vendors/Nintendo/DLDI/config.uClibc
- U lib/uClibc++/Rules.mak
- U lib/uClibc++/extra/Configs/dslinux_config
- D lib/uClibc++/include/system_configuration.h
- U lib/uClibc++/Makefile
- U linux-2.6.x/arch/arm/kernel/ptrace.c
- U linux-2.6.x/arch/arm/mm/fault.c
- Updated to revision 1851.
<<less
Download (MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
634 downloads
Log::Log4perl::Appender::RRDs 1.06

Log::Log4perl::Appender::RRDs 1.06


Log::Log4perl::Appender::RRDs is a log to a RRDtool Archive. more>>
Log::Log4perl::Appender::RRDs is a log to a RRDtool Archive.

SYNOPSIS

use Log::Log4perl qw(get_logger);
use RRDs;

my $DB = "myrrddb.dat";

RRDs::create(
$DB, "--step=1",
"DS:myvalue:GAUGE:2:U:U",
"RRA:MAX:0.5:1:120");

print time(), "n";

Log::Log4perl->init(qq{
log4perl.category = INFO, RRDapp
log4perl.appender.RRDapp = Log::Log4perl::Appender::RRDs
log4perl.appender.RRDapp.dbname = $DB
log4perl.appender.RRDapp.layout = Log::Log4perl::Layout::PatternLayout
log4perl.appender.RRDapp.layout.ConversionPattern = N:%m
});

my $logger = get_logger();

for(10, 15, 20, 25) {
$logger->info($_);
sleep 1;
}

Log::Log4perl::Appender::RRDs appenders facilitate writing data to RRDtool round-robin archives via Log4perl. For documentation on RRD and its Perl interface RRDs (which comes with the distribution), check out http://rrdtool.org.

Messages sent to Log4perls RRDs appender are expected to be numerical values (ints or floats), which then are used to run a rrdtool update command on an existing round-robin database. The name of this database needs to be set in the appenders dbname configuration parameter.

If theres more parameters you wish to pass to the update method, use the rrdupd_params configuration parameter:

log4perl.appender.RRDapp.rrdupd_params = --template=in:out

To read out the round robin database later on, use rrdtool fetch or rrdtool graph for graphic displays.

<<less
Download (0.21MB)
Added: 2006-08-30 License: Perl Artistic License Price:
1152 downloads
DeSmuME 0.7.3

DeSmuME 0.7.3


DeSmuME project is a Nintendo DS emulator that can run both commercial games and homebrew applications. more>>
DeSmuME project is a Nintendo DS emulator that can run both commercial games and homebrew applications.

The original author of DeSmuME is YopYop156. He has stopped working on it on the beginning of april 2006 and passed the torch to a new team of developers. You can now follow the progress of DeSmuME on this site.

<<less
Download (0.15MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
3070 downloads
MIDI::Simple 0.81

MIDI::Simple 0.81


MIDI::Simple is a procedural/OOP interface for MIDI composition. more>>
MIDI::Simple is a procedural/OOP interface for MIDI composition.

SYNOPSIS

use MIDI::Simple;
new_score;
text_event http://www.ely.anglican.org/parishes/camgsm/bells/chimes.html;
text_event Lord through this hour/ be Thou our guide;
text_event so, by Thy power/ no foot shall slide;
set_tempo 500000; # 1 qn => .5 seconds (500,000 microseconds)
patch_change 1, 8; # Patch 8 = Celesta

noop c1, f, o5; # Setup
# Now play
n qn, Cs; n F; n Ds; n hn, Gs_d1;
n qn, Cs; n Ds; n F; n hn, Cs;
n qn, F; n Cs; n Ds; n hn, Gs_d1;
n qn, Gs_d1; n Ds; n F; n hn, Cs;

write_score westmister_chimes.mid;

This module sits on top of all the MIDI modules -- notably MIDI::Score (so you should skim MIDI::Score) -- and is meant to serve as a basic interface to them, for composition. By composition, I mean composing anew; you can use this module to add to or modify existing MIDI files, but that functionality is to be considered a bit experimental.

This module provides two related but distinct bits of functionality: 1) a mini-language (implemented as procedures that can double as methods) for composing by adding notes to a score structure; and 2) simple functions for reading and writing scores, specifically the scores you make with the composition language.

The fact that this modules interface is both procedural and object-oriented makes it a definite two-headed beast. The parts of the guts of the source code are not for the faint of heart.

<<less
Download (0.061MB)
Added: 2007-07-06 License: Perl Artistic License Price:
841 downloads
di624stats.pl 0.1

di624stats.pl 0.1


di624stats.pl is a Perl script that screen-scrapes the Web interface of a D-Link DI-624 wireless NAT router to gather traffic st more>>
di624stats.pl is a Perl script that screen-scrapes the Web interface of a D-Link DI-624 wireless NAT router to gather traffic statistics. You can use RRDtool to store these statistics and generate graphs. Instructions for using di624stats.pl in conjunction with RRDtool are included.

1. Make sure you have RRDtool installed. Get it at
http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/ or from an APT
repository or from *BSD ports.

2. Create an RRD file to store your routers throughput statistics. For
example, go like this (read the rrdtool(1) man page if this is
confusing):

rrdtool create di624.rrd
--step=300
DS:in:COUNTER:600:0:12500000
DS:out:COUNTER:600:0:12500000
RRA:AVERAGE:0.5:1:288
RRA:AVERAGE:0.5:4:504
RRA:AVERAGE:0.5:144:730
RRA:MIN:0.5:1:288
RRA:MIN:0.5:4:504
RRA:MIN:0.5:144:730
RRA:MAX:0.5:1:288
RRA:MAX:0.5:4:504
RRA:MAX:0.5:144:730

For more information about install read the README file.
<<less
Download (0.010MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1205 downloads
Deepest Sender 0.8.0

Deepest Sender 0.8.0


Deepest Sender is a client that will allow you to post to blogs from directly within Firefox. more>>
Deepest Sender is a client that will allow you to post to blogs from directly within Firefox. The project is primarily a LiveJournal client, although it supports Blogger (GData) and WordPress (metaWeblog) too, with support for more stuff to come.

Note that the actual Deepest Sender website will always have the most up to date version.

If DS wont load for you in Firefox 2, and youre using a non-US English version (ie. British English or whatever), you will need to download a spellcheck dictionary in order for it to work. Non US English builds dont come with dictionaries.

If DS keeps loading in Russian and youre running SeaMonkey, check the LiveJournal group, it has a guide to solving the problem.

<<less
Download (0.30MB)
Added: 2007-05-08 License: MPL (Mozilla Public License) Price:
917 downloads
Jhead 2.7

Jhead 2.7


Jhead is a command line driven Exif header parser and manipulator. more>>
Jhead is a command line driven utility for extracting digital camera settings from the Exif format files used by many digital cameras. It handles the various confusing ways these can be expressed, and displays them as F-stop, shutter speed, etc.
Jhead project is also able to reduce the size of digital camera JPEGs without loss of information, by deleting integral thumbnails that digital cameras put into the Exif header. If you need to add Exif support to a program, this is a simple program to cut and paste from. Many projects, including PHP, have reused code from this utility.
Things jhead can extract from an Exif jpeg file:
- Integral low-res Exif thumbnail
- Shutter speed
- Camera F-stop number
- Flash used (yes/no)
- Distance camera was focused at
- Focal length and calculate 35 mm equivalent focal length
- Image resolution
- Time and date picture was taken
- Camera make and model
Things jhead can modify in an exif jpeg file:
- Up-right images according to rotation tag using jpegtran
- Set or relative adjust internal exif timestamps
- Re-name or date stamp fils according to exif timestamp
- Transfer exif headers between images
- Edit jpeg comments
- Delete exif or comment sections from jpeg images
Enhancements:
- The "-mkexif" option to create a new minimal EXIF section in an existing image was added.
- The "-ds" and "-dsft" options to manipulate the EXIF date and time were added.
- Image and thumbnail rotation flag handling was fixed.
<<less
Download (0.04MB)
Added: 2007-01-12 License: Public Domain Price:
1018 downloads
Sync4j 2.3

Sync4j 2.3


Sync4j is a mobile application server and more. more>>
Sync4j is a mobile application server, and more. Sync4j includes a suite of tools to develop, deploy and manage any mobile project. It is a certified implementation of the Open Mobile Alliance Data Synchronization and Device Management protocols (OMA DS and DM, formerly known as SyncML).
Sync4j reached more than 19,000 downloads in a single month and it is supported by one of the largest mobile developers community in the world.
Main features:
- Sync4j Server: a mobile application server with connectors to SQL relational databases, Microsoft Exchange, Lotus Domino and SugarCRM.
- Sync4j Clients: applications for Outlook, Windows Mobile PocketPC, BlackBerry, Palm and iPod that you can use to synchronize your PIM data (address book and calendar) with the server
- Sync4j Email Gateway: a POP, IMAP and SMTP gateway, to support your mobile email needs.
- Sync4j Software Development Kit: tools to develop sometimes-connected mobile applications on devices (in Java - J2SE and J2ME - and C++) and to add data sources to the server
- Sync4j Device Management: an OMA DM server to remotely manage mobile devices
A wireless application needs data. The information must be available even when the device is off-line. Synchronization between multiple mobile devices and corporate servers is a fundamental component in every wireless project: data is supposed to be consistent when accessed by multiple users who are not always connected to the network.
Once a wireless application is developed, it needs to be transferred to a remote device, over-the-air. Then, it must be kept up-to-date. Application provisioning is pivotal for the success of any mobile project.
Developers of applications around the world have been looking for a platform that would make it easier to create mobile applications. IT Managers are struggling with PIM synchronization and mobile email deployments, locked by commercial vendors on a spiraling high cost structure and unable to manage a fast growing fleet of mobile devices. Sync4j is the solution they are looking for.
Open source means freedom from vendor lock-in and high quality software (thousand of eyes on the code, an enourmous community effort for testing). Sync4j is well supported by the community and the company behind it, Funambol.
Sync4j is an open source complete and unique mobile application server, addressing all the aspects of the equation:
- data synchronization, including PIM and email
- application provisioning
- device management
Sync4j is multi-device and multi-platform, running both in Windows and Linux. It runs on Tomcat and on top of J2EE application servers. It has been designed for carrier-grade deployments.
Since day one, scalability and reliability have been a clear focus of the Sync4j architecture, Sync4j is built on the Open Mobile Alliance data synchronization and device management standards (OMA DS and DM, formerly known as SyncML), thus leveraging the availability of SyncML clients pre-installed on cellular phones (such as all Symbian, Nokia, Motorola, Sony Ericsson, Siemens and others). For devices where a SyncML client is missing, Sync4j provides its own clients: Outlook, Windows Mobile PocketPC, BlackBerry, Palm and iPod.
Sync4j target market is everyone looking to build, deploy and manage a mobile project:
- Developers who need to extend an existing product to the mobile world or are looking for an easy way to create new mobile applications, grabbing data from existing data sources (such as SQL databases, Exchange, Domino or SugarCRM) or adding new data sources.
- IT Managers that want to deploy a PIM and mobile email solution or just need a way to manage a fleet of mobile devices.
- Device Manufacturers, that are looking for an OMA DM or DS client.
Download includes:
Apache Tomcat 5.0, Sync4j Admin 1.2.4, Sync4j Java GUI Client 1.0.9, PIM Web Demo 1.1.7. Runs out-of-the-box.
Enhancements:
- Major bugfixes
<<less
Download (73.2MB)
Added: 2006-02-27 License: GPL (GNU General Public License) Price:
780 downloads
Daily Strip Manager 2.10

Daily Strip Manager 2.10


Daily strip manager is a simple PHP script that offers a more powerful user interface for browsing comic strips. more>>
Daily strip manager is a simple PHP script which offers more powerful user interface for browsing comic strips, downloaded by DailyStrips perl script, than static html pages.
Daily Strip Manager offers sorting, zooming to specific strip, duplicate control, keyboard navigation (2.0) and more. Nothing much for a quick PHP script, but it works for me.
DS Manager at this time only works with DailyStrips setup configured to put comic strip images in subdirectories using date as a filename (e.g. options -l --stripdir).
Images may actually end with whatever garbage but they MUST start with their full date in format specified in config.php, otherwise nothing would work at all.
You should also enable indexing and provide directory writable by PHP user to store indexes in, otherwise expect general slowness (probably this wont show much on some fancy-shmancy Xeon, but I use P3 as my web server, thank you very much.
DS Manager should itself (with all related files) be placed at the root of your strips collection, otherwise it wont work at all.
As of version 2.0, Daily Strip Manager uses XmlHttpRequest object, which adds dependencies on JavaScript and modern web-browsers (Mozilla flavours and IE6 seem to work fine, dunno about the rest). If you are somehow unhappy with this, use version 1.7 instead.
Enhancements:
- This release adds minor interface improvements.
<<less
Download (0.014MB)
Added: 2006-08-20 License: GPL (GNU General Public License) Price:
1160 downloads
Gslist 0.8.1

Gslist 0.8.1


Gslist is a command-line game servers browser and heartbeats sender with multiple options and functions. more>>
Gslist is a game servers browser which supports an incredible amount of games (over 800) for many platforms.
It can work in both command-line and GUI mode.
Main features:
- tons of games supported and for various platforms: PC, Mac, Playstation 2, Nintendo DS, PSP, Dreamcast and more
- web GUI: Gslist can be easily used through a web browser like any "classical" server browser but with the difference of being more simple to use and (optionally) supporting multiple users
- can execute a program for each online server found
- has a filter option for selecting only the servers with specific features
- its list of supported games is updatable
- supports many options for redirecting and formatting its output
- can send hearbeats for adding your IP in the servers list
- supports different types of queries for retrieving informations from the servers
- its optimized for speed and resources
Enhancements:
- Some features were added.
- Some bugs in the Web GUI were fixed.
<<less
Download (0.15MB)
Added: 2005-09-26 License: GPL (GNU General Public License) Price:
1496 downloads
PictoSniff 0.2

PictoSniff 0.2


PictoChat sniffer allows you to spy live on PictoChat communications between Nintendo DS gaming consoles. more>>
PictoChat sniffer allows you to spy live on PictoChat communications between Nintendo DS gaming consoles.

Requires a 802.11 device with support for monitor mode and Radiotap (tested only under FreeBSD with the p54u driver). Based upon GTK2 and libpcap.

<<less
Download (0.12MB)
Added: 2005-07-22 License: GPL (GNU General Public License) Price:
923 downloads
Louderbox 0.1.0

Louderbox 0.1.0


Louderbox is a complete 8 band audio processor. more>>
Louderbox is a complete 8 band audio processor. Louderbox is intended to be used with software stereo and R[B]DS generators (but perfectly usable for other things (such as web "radio") using the jack audio connection kit under Linux (and possibly other systems but this is untested).

It has 2 inputs and 5 outputs: The inputs are obviously L,R, outputs are 2 Monitor outputs (before pre em), 2 transmitter feed outputs (post pre em), and a mono logging output which is just a mix of the monitor feeds.

<<less
Download (0.20MB)
Added: 2006-02-10 License: GPL (GNU General Public License) Price:
1363 downloads
RT-Thread 0.2.2

RT-Thread 0.2.2


RT-Thread is a real-time operating system. more>>
RT-Thread is a real-time operating system. It is designed specifically for small memory footprint platforms. The kernel supports the tranditional RTOS services, such as multiple threads, semaphores, mutexes, event flags, mailboxes, etc.
RT-Thread project also provides a C-expression interpreter shell, from which a programmer can access kernel variables and invoke system functions.
Main features:
Kernel Object System
- There is a kernel object system, which can access and manage all of the kernel objects. Kernel objects include most of the facilities in the kernel, for example, thread, semaphore etc. Kernel objects can be static objects, whose memory is allocated in compiling. It can be dynamic objects as well, whose memory is allocated from system heaps in runtime. Through the kernel object system, RT-Thread operating system can be independent from the memory management system and greatly enhance the scalability of the system.
Multi-Task/Thread Scheduling
- RT-Thread operating system supports multi-task systems, which are based on thread scheduling. The scheduling algorithm used in RT-Thread operating system is a full preemptive priority-based scheduling algorithm. It supports 256 priority levels, in which 0 is the highest and 255 the lowest. The 255th priority is used for idle thread. The scheduling algorithm also supports threads running at same priority level. The shared time-slice round-robin scheduling is used for this case. The time of scheduler to determine the next highest ready thread is determinant. The number of threads in the system is unlimited, only related with RAM.
Synchronization Mechanisms
- RT-Thread operating system supports the traditional semaphore and mutex. Mutex objects use inherited priority to prevent priority reversion. The semaphore release action is safe for interrupt service routine. Moreover, the block queue for thread to obtain semaphore or mutex can be sorted by priority or FIFO.
Inter-Thread Communication
- RT-Thread operating systems supports event/fast event, mail box and message queue. The event mechanism is used to awake a thead by setting one or more corresponding bit of a binary number when an event ocurs. The fast event supports event thread queue. Once a one bit event occurs, the corresponding blocked thread can be found out timing accurately, then will be waked up. In mailbox, a mail length is fixed to 4 byte, which is more effective than message queue. The send action for communication facilities is also safe for interrupt service routine.
Clock and Timer
- In default, the system uses clock tick to implement shared time-slice scheduling. The timing sensitivity of thread is implemented by timers. The timer can be set as one-shot or periodic timeout.
Memory Management
- RT-Thread operating system supports two types memory management: static memory pool management and dynamic memory heap management. The time to allocate a memory block from the memory pool is determinant and when the memory pool is empty, the allocated thread can be blocked (or immediately return, or waiting for sometime to return, which are determined by a timeout parameter). When other thread releases memory blocks to this memory pool, the blocked thread is wake up.
Enhancements:
- More porting was done to Samsung S3C44b0 CPU, AMTEL AT91SAM7S64, Nintendo DS, and Intel i386.
<<less
Download (0.34MB)
Added: 2007-01-21 License: GPL (GNU General Public License) Price:
1009 downloads
WMsensormon 1.2.1

WMsensormon 1.2.1


Wmsensormon is a doc app for WindowMaker that utilizes lm_sensors to monitor CPU temp, sys temp, fan speeds, and CPU voltage. more>>
Wmsensormon is a doc app for WindowMaker that utilizes lm_sensors to monitor CPU temp, sys temp, fan speeds, and CPU voltage.
It offers configurable warnings for overheating, and the sensors displayed are adjustable by the user with command line parameters.
Installation:
make
make install
wmsensormon
Options:
-h, --help this help screen
-v, --version print version information
-f show temperatures in Fahrenheit
-s default SMP mode (mode #1)
-s1 SMP mode #1 (CPU 1, CPU 2, sys, fan)
-s2 SMP mode #2 (CPU 1, CPU 2, fan 1, fan 2)
-sw switch CPU and SYS temperature readings
use with -s1 or -s2 if SYS temp is first
-swf switch fans to read fan3 and fan4
-r refresh time (in microseconds, default 100000)
-l enable logging with default time, (default 30000)
-ln enable logging with specified time, (1000 = 1 min)
-dt danger CPU temperature, default: system value (i.e. 60)
input values in Celsius
-ds danger SYS temperature, default: system value (i.e. 60)
input values in Celsius
-df danger fan speed, default: system value (i.e. 3000)
-wt warning CPU temperature, default: danger value
input values in Celsius
-ws warning SYS temperature, default: danger value
input values in Celsius
-wf warning fan speed, default: danger value
-lv limit CPU core volts, default is system value either: max voltage first, min
voltage second (i.e. 180 170) or:
percent difference first, value second (i.e. % 5 175)
Enhancements:
- when a command line arg gets a invalid parameter return error rather than ok
- fixed reading in the limit values from the wrong sensor if using the -sw option
- added option to choose a sensors chip to read from.
- added support for detecting whether the chosen sensor chip is a temperature sensor or some other type.
- if the choosen chip is number 0 or no chip is chosen, autodetect the chip to use.
<<less
Download (0.026MB)
Added: 2005-09-29 License: GPL (GNU General Public License) Price:
1490 downloads
Hardware::iButton 0.03

Hardware::iButton 0.03


Hardware::iButton is a Perl module that allows to talk to DalSemi iButtons via a DS2480 serial widget. more>>
Hardware::iButton is a Perl module that allows to talk to DalSemi iButtons via a DS2480 serial widget.

SYNOPSIS

use Hardware::iButton::Connection;
$c = new Hardware::iButton::Connection "/dev/ttyS0";
@b = $c->scan();
foreach $b (@b) {
print "family: ",$b->family(), "serial number: ", $b->serial(),"n";
print "id: ",$b->id(),"n"; # id = family . serial . crc
print "reg0: ",$b->readreg(0),"n";
}

This module talks to iButtons via the "active" serial interface (anything using the DS2480, including the DS1411k and the DS 9097U). It builds up a list of devices available, lets you read and write their registers, etc.

The connection object is an Hardware::iButton::Connection. The main user-visible purpose of it is to provide a list of Hardware::iButton::Device objects. These can be subclassed once their family codes are known to provide specialized methods unique to the capabilities of that device. Those devices will then be Hardware::iButton::Device::DS1920, etc.

iButtons and solder-mount Touch Memory devices are each identified with a unique 64-bit number. This is broken up into 8 bits of a "family code", which specifies the part number (and consequently the capabilities), then 48 bits of device ID (which Dallas insures is globally unique), then 8 bits of CRC. When you pass these IDs to and from this package, use hex strings like "0123456789ab".

<<less
Download (0.021MB)
Added: 2007-08-15 License: Perl Artistic License Price:
808 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 2
  • 1
  • 2