Main > Free Download Search >

Free fr software for linux

fr

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 86
Perlbox-voice-fr 1.0

Perlbox-voice-fr 1.0


Perlbox-voice-fr is a French voice recognition but suitable for other foreign languages. more>>
Perlbox-voice-fr is a modified of the original perblox-voice you may find at http://www.perlbox.org/ for English only.

Perlbox-voice-fr needs Espeak compiled from sources and Sphinx 2.

If you want it to recognize foreign language, the only thing you have to do is to substitue the actual dictionnary with one you will provide corresponding to your language.

Please extract the archive content in /tmp directory, switch to your root account and enter the newly extracted folder /tmp/perlbox-voice-fr-1.0/

launch ./install.pl, its almost installed. click ok and leave your root account, perlbox-voice-fr is now ready to be used. Launch perlbox-voice, enjoy.

<<less
Download (7.0MB)
Added: 2007-07-27 License: GPL (GNU General Public License) Price:
825 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
amarok_hfr_nowplaying 0.5

amarok_hfr_nowplaying 0.5


HFR Now Playing allows to display in your signature on the french forum forum.hardware.fr what song youre now listening. more>>
HFR Now Playing allows to display in your signature on the french forum forum.hardware.fr what song youre now listening.

amarok_hfr_nowplaying script uses the ClientForm library that Ive a little hacked because the forms on the forum doesnt respect any HTML standard.

Installation:

Just download the archive, and add it in the list of scripts of amaroK via the Tools->Scripts menu. Then set up your nick/password off your account on the forum by clicking on the "Configure" button.

<<less
Download (0.025MB)
Added: 2005-12-30 License: GPL (GNU General Public License) Price:
1393 downloads
CGI::AppBuilder::Frame 0.10

CGI::AppBuilder::Frame 0.10


CGI::AppBuilder::Frame is a configuration initializer. more>>
CGI::AppBuilder::Frame is a configuration initializer.

SYNOPSIS

use CGI::AppBuilder::Frame;

my $ab = CGI::AppBuilder::Frame- >new(
ifn, my_init.cfg, opt, vhS:a:);
my ($q, $ar, $ar_log) = $ab- >start_app($0, %ARGV);
print $ab- >disp_form($q, $ar);

This class provides methods for reading and parsing configuration files.
new (ifn = > file.cfg, opt = > hvS:)

This is a inherited method from CGI::AppBuilder. See the same method in CGI::AppBuilder for more details.

frame_set ($fr, $pr)

Input variables:

$fr - frame set definiton array reference. The $fr contains two
elements [$hr, $ar]:
$hr - a hash ref containing the frame set attributes
$ar - a array ref containing hash references defining each
frames in the frame set.
$pr - tag attribute array ref. It contains three elements:
class - CSS class name
attr - attribute string such as width=5 onChange=js_func
hr - hash ref with key and value pairs. This will be obtained
from $fr for each frame set and frame.
pretty - whether to add line breaks

Variables used or methods called:

CGI::AppBuilder::Table
html_tag - generate HTML tags
CGI::AppBuilder::Message
echo_msg - display message

How to use:

The following shows how to define the frame array ($fr):

+-+----+ The following defines the left layout:
| | T |
| +----+ [{cols= >"150,*"},[
| | | {src= >"left.htm",name= >"L"},
|L| C | [{rows= >"100,*,50"},[
| | | {src= >"top.htm",name= >"T"},
| |----| {src= >"main.htm",name= >"C"},
| | B | {src= >"bottom.htm",name= >"B"}]]]
+-+----+ ]

In YAML, here is how it looks like:

---
cols: 150,*
- src: left.htm
name: L
- rows: 100,*,50
- src: top.htm
name: T
- src: main.htm
name: C
- src: bottom.htm
name: B
...

+-+------+ The following defines the left layout:
| | T |
| +----+-+ [{cols= >"150,*"},[
| | | | {src= >"left.htm",name= >"L"},
|L| C |R| [{rows= >"100,*,50"},[
| | | | {src= >"top.htm",name= >"T"},
| | | | [{cols= >"*,100"},[
| |----+-+ {src= >"main.htm",name= >"C"},
| | | {src= >"right.htm",name= >"R"}] ] ],
| | B | {src= >"bottom.htm",name= >"B"}]]
+-+----+-+ ]
In YAML, here is how it looks like:
---
cols: 150,*
- src: left.htm
name: L
- rows: 100,*,50
- src: top.htm
name: T
- cols: *,100
- src: main.htm
name: C
- src: right.htm
name: R
- src: bottom.htm
name: B
...
Here is the testing codes:
my $fr = [{cols= >"150,*"},[
{src= >"left.htm",name= >"L"},
[{rows= >"100,*,50"},[
{src= >"top.htm",name= >"T"},
{src= >"main.htm",name= >"C"},
{src= >"bottom.htm",name= >"B"}]
]]
];
my $pr = {pretty= >1};
print $obj- >frame_set($fr,$pr);
# the following is the result:

< FRAMESET cols=150,* >
< FRAME src=left.htm name=L >
< FRAMESET rows=100,*,50 >
< FRAME src=top.htm name=T >
< FRAME src=main.htm name=C >
< FRAME src=bottom.htm name=B >
< / FRAMESET >
< / FRAMESET >

$pr- >{_frameset_count} = 0; # reset frame set counter
my $f2 = [ {cols= >"150,*"},[
{src= >"left.htm",name= >"L"},
[{rows= >"100,*,50"},[
{src= >"top.htm",name= >"T"},
[{cols= >"*,100"},[
{src= >"main.htm",name= >"C"},
{src= >"right.htm",name= >"R"}]
],
{src= >"bottom.htm",name= >"B"}]
]]
];
print $obj- >frame_set($f2,$pr);
# the following is the result:

< FRAMESET cols=150,* >
< FRAME src=left.htm name=L >
< FRAMESET rows=100,*,50 >
< FRAME src=top.htm name=T >
< FRAMESET cols=*,100 >
< FRAME src=main.htm name=C >
< FRAME src=right.htm name=R >
< / FRAMESET >
< FRAME src=bottom.htm name=B >
< / FRAMESET >
< / FRAMESET >

Return: HTML codes.

This method generates HTML codes based on the information provided. This method is also called < I >frameset< / I >.

<<less
Download (0.010MB)
Added: 2007-07-12 License: Perl Artistic License Price:
841 downloads
FreeNAS 0.69b4 / 0.686.4 Stable

FreeNAS 0.69b4 / 0.686.4 Stable


A Free NAS server that supports FTP, NFS protocols, Software RAID more>>
FreeNAS 0.69b4 / 0.686.4 Stable gives a program which is to support FTP, NFS protocols, Software RAID(0,1,5) with a Full WEB configuration interface. It takes less than 16MB once installed on Compact Flash, hard drive or USB key.

Enhancements:

  1. Upgrade to FreeBSD 6.4.
  2. Upgrade rsync to 3.0.4.
  3. Upgrade PHPMailer to 2.2.1.
  4. Upgrade Transmission to 1.34.
  5. Minors changes:
    • Add new attribute Temporary directory to UPnP WebGUI to define a directory used to store temporary trans-coded files.
    • Modify /etc/rc.d/samba script.
    • Add Who combo-box to RSYNC client/local jobs to select user which is used to execute this job.
    • Add Enable check-box to RSYNC client/local jobs to enable/disable them (FR 2123243).
    • Add hw.ata.to=15 to sys-ctrl to prevent TIMEOUT WRITE_DMA errors, e.g. when using APM for hard drives (FR 2101811).
  6. Bug fixes:
    • Fix bug in zone-info port.
    • Remove Samba --with-utmp build parameter. It causes a crash when accessing shares (BR 2118240).
    • Fix bug in Samba Make-file which causes various problems, e.g. it was not possible to join an AD domain.

Requirements: none

<<less
Download (59.3MB)
Added: 2008-10-01 License: Freeware Price: FREE
19 downloads
Bio::Tools::Run::PiseApplication::freak 1.4

Bio::Tools::Run::PiseApplication::freak 1.4


Bio::Tools::Run::PiseApplication::freak is a Perl module. more>>
Bio::Tools::Run::PiseApplication::freak is a Perl module.

Bio::Tools::Run::PiseApplication::freak
Bioperl class for:

FREAK Residue/base frequency table or plot (EMBOSS)


Parameters:

(see also:
http://bioweb.pasteur.fr/seqanal/interfaces/freak.html
for available values):


freak (String)

init (String)

seqall (Sequence)
seqall -- any [sequences] (-seqall)
pipe: seqsfile

letters (String)
Residue letters (-letters)

step (Integer)
Stepping value (-step)

window (Integer)
Averaging window (-window)

plot (Switch)
Produce graphic (-plot)

graph (Excl)
graph (-graph)

outfile (OutFile)
outfile (-outfile)

auto (String)

psouput (String)

<<less
Download (0.81MB)
Added: 2006-08-24 License: GPL (GNU General Public License) Price:
1156 downloads
SKForum 1.5

SKForum 1.5


SKForum project is a forum application with a Wiki, comic system, guestbook, and address book. more>>
SKForum project is a forum application with a Wiki, comic system, guestbook, and address book.
SKForum is an open source (see licensing) web-based J2EE forum application. But its so much more, its a comic system, an addressbook, a wiki, a timetracking system, a todo list, a poll system, a guestbook system and a few other small nuts and bolts.
SKForum was first taken into use in september of 2000. By july of 2001 it had grown to 6 464 lines of code, and at october 2003 it is at 49 067 lines total. Of these 37 596 are java source file lines.
Internationalization
SKForum has i18n support and supports the following languages:
- English (US)
- Swedish (SE)
- French (FR)
Installation howto
1. Install mysql.
2. Create a database in mysql called "forum".
3. Install Java 2 SDK
4. Install a J2EE servlet container, I recommend Resin 2.x (it is also a webserver and can be integrated with IIS or Apache if you want)
5. Get the SKForum WAR file.
6. Make sure theres no caching done on the forum, resin for example has a default caching setting, remove the part of the config.
7. Install the forum as a toplevel app. It will currently not work unless "/" leads to its own top level.
8. Set up the data sources. If needed install the JDBC driver in the servlet container (get the mysql driver here).
Setup data source in Resin 2.x
Setup data source in Resin 3.x
Setup data source in Orion
9. This step only if you do not use Resin: If you use tomcat, remove web.xml and rename tomcat-web.xml to web.xml. Otherwise comment out the parts of web.xml that is marked "resin specific" that your server does not support.
10. Get the mysql jdbc driver and put it in your app servers lib directory.
11. Login with the username and password you want for the admin account. The first person who logs into the forum will get full rights and be set up as admin by default.
Enhancements:
- features:
- tasks system added
- description field for areas
- add/remove areas to/from hotlist inside the area
- invitation support for user groups
- planning warns for close events in the hotlist
- custom area type: quotes
- custom area type: pictures
- custom area type: links
- wiki URL rewriting for good wiki URLs
- editing and posting redirects instead of forwards, no more issues with reposting
- added login success/failure logging to database
- bugs:
- checkbox bug in IE fixed
- user addition delay fixed
- fixed address book VCS export for OS X
- planning info box at the bottom displayed at the top
- subscribe broken for comics
- shows deleted status for single-line messages in dynamic collapsing mode
- access rights to areas were ignored
- issue with hotlist resolved
- cant write in empty area
- editing of planning events sometimes fail
- sorting in archive is by unicode, not by character
- improvements:
- switched all maps and arrays to use fastutil
- zip download for archive give a good filename
<<less
Download (2.9MB)
Added: 2007-03-12 License: Public Domain Price:
957 downloads
Cafeterra 2.2.0

Cafeterra 2.2.0


Cafeterra provides a message queue-based EAI tool. more>>
Cafeterra provides a message queue-based EAI tool.
Cafeterra is a message queue-based EAI project with a Web user interface for designing, processing, and monitoring inter-application data flows.
Supported connectors are based on an RDBMS, flat files (CSV, fixed length record, XML, HL7, HTML, etc.), LDAP, and SOAP, with others planned.
The main features are message tracking and archival, joining different connectors, an internal scheduler, and raising the flow on events.
Enhancements:
- Support of POP3 and IMAP
- Support of Perl Language in addition to SQL Language for Getmsg, SendMsg, SendMsgBis, AckMsg and GlobalAck
- Evaluate Perl script during design to see if there is any syntax error
- cgi/CafImport.pm : Sort objects; config filename extension handling; remove trailing r
- cgi/Context.pm : handle correctly copying procedure
- cgi/LContainer.pm : remove some trace
- cgi/MFlow.pm : more launch options;
- cgi/Scripts.pm : validate perl scripts (eval)
- cgi/Users.pm : bug when updating user the object attributes were not upadted
- cgi/EN/translate.pm : added some translation
- cgi/FR/translate.pm : idem
- connectors/cafProto.pm : die on open file failure
- connectors/cafpSMTP.pm : bug on attachment; replay_to and fake_to attributes default values
- connectors/refQry.pm : update of datatypeid
- install/Pg/InitSqlScript.pm : Added new protocols/drivers/datatypes/attributes (Mail/POP3/IMAP)
- install/Pg/conf.pm.tpl : Version changed
- install/Pg/d_attrdef.sql : New attributes for new protocols/drivers (Mail/POP3/IMAP)
- install/Pg/d_datatype.sql : New datatypes for new drivers (POP3/IMAP)
- install/Pg/d_driver.sql : New drivers (POP3/IMAP)
- install/Pg/d_protocol.sql : New protocol (Mail)
- install/Pg/index.pl.tpl : Invalidate last value of _currsubmenu
- mains/FlowRt.pm : infinite loop for backtraking when readind dependant messages; avoid die on startsession failure
- mains/FlowTls.pm : classVars misspelling; a query can be an perl script or a sql script
- mains/SFlowRt.pm : handling perl script and sql scripts for getmsg, sendmsg, etc ... in addition to sql script; handle correctly the delins method; LogRbsMessagr enhancement
- mains/SOAPHTTPWS.pm : removed some trace text
- mains/launch.pl : more launch options
- site/help/pageshelp.pm : image reference bug
- site/help/* : translation and orthograph
- site/models/mflowl.html : launch options
- tools/cafUtils.pm : parse mime date
- tools/mydiff.sh : new directories
- DBD/CafeterraDBD.pm : creation
- connectors/cafdPOP3.pm : creation
- connectors/cafdIMAP.pm : creation
<<less
Download (0.73MB)
Added: 2007-02-19 License: LGPL (GNU Lesser General Public License) Price:
978 downloads
rfs 2.12

rfs 2.12


rfs is a shell script for creating and updating a local spare system disk. more>>
rfs is a shell script for creating and updating a local spare system disk. rfss main goal is to recover a working system after a crash quickly. In this case, "quickly" means the time it takes to reboot the machine.

The very first version of rfs was "sauver_sys.sh", a shell script written by Eric Gerbier http://eric.gerbier.free.fr . rfs stands for "replication of file systems".

rfs works on Gnu/Linux platforms and supports ext2/ext3 file systems. Targets are workstations as well as servers : your system remains fully-working while the backup is processed.

<<less
Download (0.019MB)
Added: 2006-04-06 License: GPL (GNU General Public License) Price:
1297 downloads
Grip 3.3.1

Grip 3.3.1


Grip is a CD player and CD ripper/MP3-encoder for the GNOME desktop. more>>
Grip is a CD player and CD ripper/MP3-encoder for the GNOME desktop. It has the ripping capabilities of cdparanoia built in, but can also use external rippers (such as cdda2wav).
It also provides an automated frontend for MP3 encoders (presets for lame, bladeenc, l3enc, xingmp3enc, mp3encode, and gogo), letting you take a disc and transform it easily straight into MP3s.
The Ogg Vorbis format is also supported. Internet disc lookups are supported for retrieving track information from disc database servers.
Grip works with DigitalDJ to provide a unified, "computerized" version of your music collection.
Main features:
- Full-featured CD player with a small screen footprint in "condensed" mode
- Database lookup/submission to share track information over the net
- HTTP proxy support for those behind firewalls
- Loop, shuffle, and playlist modes
- Ripping of single, multiple, or partial tracks
- Encoding of ripped .wav files into MP3 files (as well support for OGG and FLAC)
- Simultaneous rip and encode
- Support for multiple encode processes on SMP machines
- Adding ID3v1/v2 tags to MP3 files
- Cooperating with DigitalDJ, my SQL-based MP3 jukebox
Enhancements:
- de.po: updated (G?tz Waschk)
- it.po: updated (Ceoldo Costantino)
- fr.po: updated (Eric Lassauge)
- pl_PL.po: added (Piotr Adamocha)
- id3.c: put a zero byte before the id3v1 track number (Vladimir Petrov)
- discdb.c: string parsing fixes to support i18n (Vladimir Petrov)
- discdb.c: better handling of non-UTF-8 local discdb files (Vladimir Petrov)
- various: tweaks to filesystem-safe character escaping (Vladimir Petrov)
- cdplay.c: allow retrieving of non-UTF-8 discdb entries (Vladimir Petrov)
- discdb.c: fixed a possible buffer overflow crash (Dean Brettle)
- grip.spec.in: added some missing BuildRequires (Stephen E. Dudek)
- configure.in: upped version to 3.3.1
<<less
Download (0.57MB)
Added: 2005-06-29 License: GPL (GNU General Public License) Price:
1578 downloads
fbxplay 0.2

fbxplay 0.2


fbxplay project is script to play or record (multiposte) channels using VLC or mplayer from free.fr adsl users only. more>>
fbxplay project is script to play or record (multiposte) channels using VLC or mplayer from free.fr adsl users only.

If you have router You must initially redirect ports 31336 & 31337 in UDP towards the IP network of the PC which will use the multipost accessible one since the options from ADSL TV.

(http://www.freenews.fr/index.php?itemid=2920) (WORK ONLY with http://adsl.free.fr users)
<<less
Download (MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
1028 downloads
mod_activex_filter 0.2b

mod_activex_filter 0.2b


mod_activex_filter is an Apache module that enables ActiveX filtering for Apache proxy. more>>
mod_activex_filter is an Apache module that enables ActiveX filtering for Apache proxy.

This module is a small example of an Output Filter developed for Apache 2.0.44 and tested up to 2.0.46.

Its only a simple hack of mod_case_filter to get a way to filter ActiveX on a proxy. Actualy, the only way to filter ActiveX if your proxy is unable to do it is to use a TIS module chained with your proxy.

But the TIS is only capable of doing HTTP/1.0. If you need real performances, youll want to use HTTP/1.1.

Thats why I wrote this small module...

It has been generated with classical commands: apxs -g -n activex_filter and apxs -c -n

You just have to do make and make install to use it.

Dont forget to modify your httpd.conf.

Simple example of a working httpd.conf:

KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15

StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxClients 150
MaxRequestsPerChild 0

Listen 80

LoadModule activex_filter_module modules/mod_activex_filter.so
AddOutputFilter ActiveXFilter html
ActiveXFilter On

ProxyRequests On
User nobody
ServerAdmin brice@free.fr
ServerName trillian
UseCanonicalName Off
DefaultType text/plain
HostnameLookups Off
ErrorLog logs/error_log
LogLevel warn
ServerTokens Prod
ServerSignature On

<<less
Download (0.005MB)
Added: 2006-05-26 License: GPL (GNU General Public License) Price:
1246 downloads
Tclperl 3.1

Tclperl 3.1


Tclperl allows the execution of Perl code from within a TCL interpreter using one or several embedded Perl interpreters. more>>
Tclperl project allows the execution of Perl code from within a TCL interpreter using one or several embedded Perl interpreters.

This package allows the execution of Perl code from a Tcl interpreter, as in:

package require tclperl
set interpreter [perl::interp new]
$interpreter eval {print "Hello Worldn"}
perl::interp delete $interpreter

You can actually create several Perl interpreters this way, if the tclperl package was linked against a Perl library compiled with -DMULTIPLICITY, otherwise only 1 Perl interpreter can exist at a time.

Starting with version 3.1, you can also access and use the parent Tcl interpreter from a Perl interpreter (and even from Perl threads):

package require tclperl
set interpreter [perl::interp new]
puts [$interpreter eval {
$Tcl::parent->eval(clock format [clock seconds]);
}]
perl::interp delete $interpreter

This package works on UNIX machines (Redhat Linux rpms available at
http://jfontain.free.fr/) and Windows (thanks to David Gravereaux, DLL also available).
<<less
Added: 2006-01-13 License: LGPL (GNU Lesser General Public License) Price:
779 downloads
gFTP 2.0.18

gFTP 2.0.18


gFTP is a free multithreaded ftp client for *NIX based machines running X11R6 or later. more>>
gFTP is a free multithreaded ftp client for *NIX based machines running X11R6 or later. It has the following features:
- Distributed under the terms of the GNU Public License Agreement
Written in C and has a text interface and a GTK+ 1.2/2.0 interface
- Supports the FTP, HTTP and SSH protocols
- Supports FXP file transfers (transfering files between 2 remote servers via FTP)
- Multithreaded to allow for simultaneous downloads
- File transfer queues to allow for downloading multiple files
- Supports downloading entire directories and subdirectories
- Bookmarks menu to allow you to quickly connect to remote sites
- Supports resuming interrupted file transfers
- Supports caching of remote directory listings
- Drag-N-Drop support
- FTP and HTTP proxy server support
- Allows for passive and non-passive file transfers
- Supports UNIX, EPLF, Novell, MacOS, and NT (DOS) style directory listings
- Full graphical configuration
- Fully Internationalized. I currently have a Bulgarian (bg), Chinese (zh_TW, zh_CN), Czech (cs), Danish (da), Dutch (nl), Finnish (fi), French (fr), German (de), Hungarian (hu), Italian (it), Korean (ko), Japanese (ja), Norwegian (no), Polish (pl), Portuguese (pt_BR), Romanian (ro), Russian (ru), Spanish (es), Swedish (sv) and Turkish (tr) translations available.
<<less
Download (2.1MB)
Added: 2009-04-09 License: GPL Price:
207 downloads
 
Other version of gFTP
gFTP 2.0.18), Dutch (nl), English (en_CA, en_GB, en_US), Finnish (fi), French (fr), German (de), Greek (el), Hebrew (he), Hungarian (hu), Irish (ga), Italian (it), Korean (ko), Japanese (ja), Macedonian
License:GPL (GNU General Public License)
Download (0.042MB)
1598 downloads
Added: 2005-06-23
GRacer 0.1.5

GRacer 0.1.5


GRacer is a 3D Motor Sports Simulator. more>>
GRacer is a 3D motor sports simulator. Its state of the art physical simulation engine creates realistic behavior including drift, wheel spin, and even accel turn.
Main features:
5 vehicles
- Formula (FR)
- CART (FR)
- HONDA S2000 (FR)
- MITSUBISHI Lancer RS Evolution VI (4WD)
- Mini (FR)
1 course
- Sample Course 1
(current release also contains some other courses. but these courses are still very rough)
multi-level crossing and loop-the-loop course. (not yet fully functional)
linux joystick driver (but setting for microsoft sidewinder force feedback wheel is hard-coded).
sound (by SL library included in PLIB)
exhaust
skirl
- game is playable, and finished when you run specified lap.
- new GRacer memories your high scores. but you can not share high scores with your friends.
<<less
Download (0.50MB)
Added: 2005-07-07 License: GPL (GNU General Public License) Price:
1572 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5