Main > Free Download Search >

Free to run software for linux

to run

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4808
VBox Runner 0.2

VBox Runner 0.2


Allows you to start your VirtualBox virtual machines from Krunner more>>
VBox Runner 0.2 provides you with a small but very useful KRunner module which can allow you to run your VirtualBox virtual machines from KRunner. This product will be an excellent choice for everyone.

Requirements: Sun xVM VirtualBox

<<less
Added: 2009-07-06 License: GPL Price: FREE
11 downloads
run 0.1

run 0.1


run adds a service menu for all file types. more>>
run adds a service menu for all file types. This service menu will just call the file in the command line using the active folder as work folder.

Makes running some scripts and applications much easier (Some require work folder to be the same where they are located so double-clicking does not work).

Maybe a good fix would be to make it available only for files that have the executable permission

<<less
Download (MB)
Added: 2006-06-26 License: GPL (GNU General Public License) Price:
1215 downloads
Robo Hunt 0.1

Robo Hunt 0.1


Robo Hunt is an action game where you have to run for life and plutonium. more>>
Robo Hunt is an action game where you have to run for life and plutonium.

Take all plutonium and dont be caught. The robot hunters are smart and they do not cheat.

<<less
Download (0.12MB)
Added: 2005-11-23 License: GPL (GNU General Public License) Price:
1432 downloads
Test-Run 0.0110

Test-Run 0.0110


Test-Run is an improved test harness for scripts that emit TAP (Test Anything Protocol). more>>
Test-Run is an improved test harness for scripts that emit TAP (Test Anything Protocol). It was forked from Test::Harness, and it uses TAP::Parser.

The project is used to analyze the output of the scripts and present it to the user in a summarized form. Test-Run features separation of the test-running backend and the command line frontend, a "runprove" utility for running tests from the command line, a plugin-system, and colors for the summary line.

<<less
Download (0.067MB)
Added: 2007-06-12 License: MIT/X Consortium License Price:
865 downloads
IPC::Run 0.80

IPC::Run 0.80


IPC::Run is a Perl module for system() and background procs w/ piping, redirs, ptys (Unix, Win32). more>> <<less
Download (0.087MB)
Added: 2006-09-25 License: Perl Artistic License Price:
1127 downloads
wmtunlo 0.1.2

wmtunlo 0.1.2


wmtunlo is one of the useless dockapp ever made, so use it or not.... more>>
wmtunlo is one of the useless dockapp ever made, so use it or not....
The configuration file is stored in $HOME/.clay/ directory.
There are 8 examples named wmtunlorc.example1 thru wmtunlorc.example8. To test these examples rename selected file to wmtunlorc and put it into $HOME/.clay/ directory, then run wmtunlo.
You can assign three programs to run when double-click is performed (look at options in wmtunlorc file for details).
Enhancements:
- command line options was replaced by a config file
- now, we can run up to 3 programs on double-click (based on patch by Alan Jurgensen)
<<less
Download (0.017MB)
Added: 2006-10-24 License: GPL (GNU General Public License) Price:
1095 downloads
RUNT Linux 5.0

RUNT Linux 5.0


RUNT (ResNet USB Network Tester) is Slackware Linux designed to run off of a 128 MB USB pen drive. more>>
RUNT (ResNet USB Network Tester) is Slackware Linux designed to run off of a 128 MB USB pen drive. RUNT Linux project consists of a boot floppy image and a zip file, similar to zipslack.

It is intended to be a fairly complete Linux installation for use as a testing tool capable of booting on any x86 computer with a USB port and a bootable floppy drive. RUNT 0.92, the initial version, was released November 27, 2002. Version 4.0 was released November 11, 2004.
<<less
Download (78.7MB)
Added: 2007-02-02 License: GPL (GNU General Public License) Price:
998 downloads
GetTextLog 0.6

GetTextLog 0.6


GetTextLog is a tool to intercept calls to gettext and log untranslated messages. more>>
GetTextLog is a simple preloadable library to intercept calls to gettext and store all untranslated messages in a log.
It is designed to help translators of big projects since this tool allows them to separate more frequent and less frequent messages.
Installation
make all install
Usage
To run program with gettextlog, call it like that:
run-with-gettextlog program with arguments
See messages in "$HOME/gettextlog/*.po" files.
Version restrictions:
- Raw unicode in Gnome 1.x programs.
<<less
Download (0.019MB)
Added: 2005-04-18 License: LGPL (GNU Lesser General Public License) Price:
1649 downloads
Bio::Tools::Run::TribeMCL 1.4

Bio::Tools::Run::TribeMCL 1.4


Bio::Tools::Run::TribeMCL is a method for clustering proteins into related groups, which are termed protein families. more>>
Bio::Tools::Run::TribeMCL is a method for clustering proteins into related groups, which are termed protein families.
SYNOPSIS
use Bio::Tools::Run::TribeMCL;
use Bio::SearchIO;
# 3 methods to input the blast results
# straight forward raw blast output (NCBI or WU-BLAST)
my @params = (inputtype=>blastfile);
# OR
# markov program format
# protein_id1 protein_id2 evalue_magnitude evalue_factor
# for example:
# proteins ENSP00000257547 and ENSP00000261659
# with a blast score evalue of 1e-50
# and proteins O42187 and ENSP00000257547
# with a blast score evalue of 1e-119
# entry would be
my @array = [[qw(ENSP00000257547 ENSP00000261659 1 50)],
[qw(O42187 ENSP00000257547 1 119)]];
my @params = (pairs=>@array,I=>2.0);
# OR
# pass in a searchio object
# slowest of the 3 methods as it does more rigourous parsing
# than required for us here
my $sio = Bio::SearchIO->new(-format=>blast,
-file=>blast.out);
my @params=(inputtype=>searchio,I=>2.0);
# you can specify the path to the executable manually in the following way
my @params=(inputtype=>blastfile,I=>2.0,
mcl=>/home/shawn/software/mcl-02-150/src/shmcl/mcl,
matrix=>/home/shawn/software/mcl-02-150/src/contrib/tribe/tribe-matrix);
my $fact = Bio::Tools::Run::TribeMCL->new(@params);
# OR
$fact->matrix_executable(/home/shawn/software/mcl-02-150/src/contrib/tribe/tribe-matrix);
$fact->mcl_executable(/home/shawn/software/mcl-02-150/src/shmcl/mcl);
# to run
my $fact = Bio::Tools::Run::TribeMCL->new(@params);
# Run the program
# returns an array reference to clusters where members are the ids
# for example :2 clusters with 3 members per cluster:
# $fam = [ [mem1 mem2 mem3],[mem1 mem2 mem3]]
# pass in either the blastfile path/searchio obj/the array ref to scores
my $fam = $fact->run($sio);
# print out your clusters
for (my $i = 0; $i
print "Cluster $i t ".scalar(@{$fam->[$i]})." membersn";
foreach my $member (@{$fam->[$i]}){
print "t$membern";
}
}
This clustering is achieved by analysing similarity patterns between proteins in a given dataset, and using these patterns to assign proteins into related groups. In many cases, proteins in the same protein family will have similar functional properties.
Enhancements:
- Perl
<<less
Download (0.81MB)
Added: 2007-02-22 License: Perl Artistic License Price:
975 downloads
tr_panel 0.1.b2

tr_panel 0.1.b2


tr_panel is a a very minimal xlib panel for unix/linux based operating systems. more>>
tr_panel is a a very minimal xlib panel for unix/linux based operating systems.

Its used to launch applications.

to compile run:
# make

to run:
# ./tr_panel

to configure the bahaiviour of the panel edit tr_panel.conf
<<less
Download (0.014MB)
Added: 2006-09-29 License: GPL (GNU General Public License) Price:
1121 downloads
fork 1.0

fork 1.0


fork allows you to run a number of processes in parallel. more>>
fork allows you to run a number of processes in parallel.

fork is a simple Perl script to run a number of processes in parallel. Use it to spread the load of CPU-intensive jobs over multiple processors, or to parallelise jobs that have to wait for the network, such as downloads and backups.

What is it good for?

Two things, really: for speeding up batch processing by using all the CPUs in your system, and for running tasks in parallel that have external dependancies, such as network resources.

In the first case you can speed things up by a factor of the number of CPUs available; in the second case you can reduce the running time of all tasks to that of the slowest task.

<<less
Download (0.001MB)
Added: 2007-01-20 License: Public Domain Price:
1011 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
Bio::Tools::Run::PiseWorkflow 1.4

Bio::Tools::Run::PiseWorkflow 1.4


Bio::Tools::Run::PiseWorkflow is a class to create a Pise workflow using Pise application objects as methods. more>>
Bio::Tools::Run::PiseWorkflow is a class to create a Pise workflow using Pise application objects as methods. A workflow is defined by a set of methods which all instanciate the class PiseApplication.

SYNOPSIS

# First, create a Bio::Tools::Run::AnalysisFactory::Pise object:
my $factory = new Bio::Tools::Run::AnalysisFactory::Pise();
# Then create the application objects (Pise::Run::Tools::PiseApplication):
my $clustalw = $factory->program(clustalw);
$clustalw->infile($my_alignment_file);
my $protpars = $factory->program(protpars);

# You can specify different servers for different applications :
my $protdist = $factory->program(protpars
-remote => http://kun.homelinux.com/cgi-bin/Pise/5.a//protpars.pl,
-email => your_email);

# Create a new workflow object :
my $workflow = Bio::Tools::Run::PiseWorkflow->new();

# Define the workflows methods using the application objects:
# the application method $protpars will receive the output of
# type readseq_ok_alig from the application method $clustalw.
$workflow->addpipe(-method => $clustalw,
-tomethod => $protpars,
-pipetype => readseq_ok_alig);

# The application method $clustalw will be piped to a second
# application method ($protdist) using the output of type readseq_ok_alig.
$workflow->addpipe(-method => $clustalw,
-tomethod => $protdist,
-pipetype => readseq_ok_alig);

# The application method $protpars will be piped to the application
# method $consense using the output of type phylip_tree.
my $consense = $factory->program(consense);
$workflow->addpipe(-method => $protpars,
-tomethod => $consense,
-pipetype => phylip_tree);

# Run the workflow.
$workflow->run();

<<less
Download (0.81MB)
Added: 2007-02-22 License: Perl Artistic License Price:
974 downloads
Kickoff for Suse 10.1 0.1

Kickoff for Suse 10.1 0.1


Kickoff for Suse 10.1 contains some packages needed to run kickoff in Suse 10.1. more>>
Kickoff for Suse 10.1 contains some packages needed to run kickoff in Suse 10.1. I modified the spec file from package kdebase3 included in openSUSE 10.2 to force the compilation of Kickoff in Suse 10.1.

You must have installed KDE 3.5.5 and beagle in order to install and run it.

Use it at your own risk, I am not responsible of any damage that could cause if you install them.

The packages provided are: kdebase3, kdebase3-beagle and liblazy.

<<less
Download (25MB)
Added: 2006-12-18 License: GPL (GNU General Public License) Price:
1044 downloads
run in xterm 0.9.1

run in xterm 0.9.1


run in xterm is an servcie menu which adds run in xterm & run in xterm as root to action menu on binary files, scripts etc. more>>
run in xterm is an servcie menu which adds "run in xterm" & "run in xterm as root" to action menu on binary files, scripts etc.

It has 2 languages: english and polish.

Installation:

copy/save this file in
~/.kde/share/apps/konqueror/servicemenus

<<less
Download (MB)
Added: 2006-06-12 License: GPL (GNU General Public License) Price:
1230 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5