Main > Free Download Search >

Free et software for linux

et

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 86
ET Live 1.21

ET Live 1.21


ET Live is a live viewer server for RTCW: Enemy Territory. more>>
ET Live project is a live viewer server for "RTCW: Enemy Territory".
Main features:
- Shows whos playing on your server, team, xp, and ping
- Shows current map.
- Makes a crude attempt to determine whos winning.
- Links player name to a systats db. (Optional)
<<less
Download (0.082MB)
Added: 2006-12-12 License: GPL (GNU General Public License) Price:
1047 downloads
ET Pro 3.2.6

ET Pro 3.2.6


ET Pro is a the Enemy Territory Competition Mod. more>>
ET Pro is a mod specifically targeted at competition play, with features specifically designed for administration of competition servers.
ET Pro has been chosen as the official tournament mod for STA, TWL, CAL, Clanbase, and ESL.
The official IRC channel for ET Pro is #etpro on irc.freenode.net
The ET Pro development team would like to extend thanks to the following who contributed significantly to the development of 2.0.0, without their help ET Pro would not be where it is today!
Enhancements:
Bug/Exploit Fixes
- Ammopacks/medpacks no longer "bounce off" players if you are too close
- Mounted tank browning/mg42 no longer fires low
- K43/Garand unlimited grenade ammo exploit fixed
- Spectating/demoplayback/multiview mg42/mortar viewpoints are much more accurate now
- Battery mapscript - autospawn now works for west bunker captures
- Compass now clips map icons correctly
- Server no longer drops clients who havent loaded completely on map_restart
- Prone hitboxes fixed
- Mine flags no longer block other mines from being spotted
Optimizations
- Corpses and items no longer eat bandwidth when disappearing
- Unused code removed. server takes 1.3m less memory and less cpu
Gameplay
- Multiview from OSP
- Wounded players now take 113 damage (6 shots) instead of 75 to force into limbo
- Refs who have logged in via password may pass or cancel votes by voting yes or no on a vote.
<<less
Download (3.5MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
663 downloads
etvis 0.03

etvis 0.03


etvis is a demo viewer/commenter for Wolfenstein: Enemy Territory FPS game. more>>
etvis is a demo viewer/commenter for Wolfenstein: Enemy Territory FPS game.
Demos recorded with ET can be sorted, renamed, deleted, and viewed. Comments can be stored for each demo individually.
Comments will remain no matter if a demo-file gets renamed by etvis or by another application.
For now you have to edit some things by hand before compiling, this will be changed in a later release:
Edit src/main.h EXECPARAMS for options to give to ET
src/main.c line 174 for the dir that is filled with your demos
src/main.c line 184 for your ET executable
Usage:
double-click on the filename to rename it
delete-key to delete the selected demo files
double-click views the selected demo in ET
Enhancements:
- A demo file can now be given as a command line parameter to omit the GUI, which is nice for associating etvis with .dm_84 files in your favorite file manager.
- In addition, basic gettext functionality was added.
<<less
Download (0.089MB)
Added: 2006-05-05 License: GPL (GNU General Public License) Price:
1267 downloads
WMnet 1.06

WMnet 1.06


WMnet is a little X dock.app network monitor I wrote for Linux. more>>
WMnet is a little WindowMaker dockapp network monitor I wrote for Linux.

It was originally inspired by that funky program tleds that blinks your keyboard LEDs in response to net traffic, but its a lot more entertaining than that nowadays.

I wrote this thing with low cpusage, low memory, and efficient use of screen real-estate in mind.

This little program polls network statistics and does a few things with the data it gets. It has small blinking lights for the rx and tx of IP packets, a digital speedometer of your polled stats current speed and a bar graph like xload et. al which has a tx speed graph from bottom-up and rx speed graph from the top-down.

The speedometer keeps track of the current speed per second and shows it in a color corresponding to which of rx or tx that has the highest speed at the moment. Also, the graph is drawn in a way that the highest speed is drawn on top of the other while the other is in the background. Depending on whether you are running ppp or ethernet
connections, you should set the -x parameter to about 1.5 times the high speed of your connection... the default is 6000 which will be stupid if youre on a ethernet line with a max of about 800 kb/sec.

Ive found the best for an ethernet line is -x 10000000 -l Having the logarithmic scale lets you see any speed of traffic from a telnet session to downloadeding something from across the hall at 600 kb/sec.

I tried to keep this is as small and efficient as possible CPU time on my K5 PR100 with the default poll time of 25000 microseconds (1 microsecond == 1 millionth of a second.) is less than 20 seconds per 24 hours Which is less than even wmmixer uses for me.

wmnet now uses drivers to get stats. The existing stat driver from previous versions has been moved to the ipfwadm driver. To get some generic IP accounting rules using ipfwadm:

ipfwadm -A in -i -S 0.0.0.0/0
ipfwadm -A out -i -D 0.0.0.0/0
<<less
Download (0.027MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1091 downloads
tvmet 1.7.2

tvmet 1.7.2


tvmet is a Vector and Matrix template library uses Meta Templates and Expression Templates to evaluate results at compile time. more>>
tvmet is a Vector and Matrix template library that uses Meta Templates and Expression Templates (ET) to evaluate results at compile time, thus making it fast for low-end systems.
Temporaries are avoided because of this. The produced code is similar to hand-coded code, but the quality of the code still depends on the compiler and its version. The dimensions for vectors and matrices are static and bounded at compile time using template arguments.
Main features:
- Matrices and Vectors with fixed sizes (of course), the data is stored in a static array.
- compile time dimension check for Vectors and Matrices to preserve the mathematical meaning.
- vector, matrix, matrix-matrix and matrix-vector fast operations:
- complete set of standard arithmetic operations for Vectors and Matrices (blitz++ supports this only for TinyVector).
- complete set of standard compare operations for Vectors and Matrices as well as ternary functions like a ? b : c (see eval for use).
- binary and unary operations.
- meta template use for Matrix-Matrix-Product $M,M$, Matrix-Transpose $M^T$ and Matrix-Vector-Product $M,x$ functions and operators.
- meta template for special functions like $M^T, x$, $M^T,M$, $M,M^T$ and $(M,M)^T$ functions, see ... special Meta-Template Functions.
- simple Matrix rows and column access as a Vector.
- chaining of matrix and vector expressions is possible and working.
- Vector inner and outer product (dot and cross product).
- special handling for the aliasing problem - see ... about aliasing.
- STL iterator interface. This opens the door to all sorts of great STL applications.
- type promotion (for handling Matrices and Vectors of differing types).
- works on self defined types such as the std::complex type.
- makes no use of exceptions. Therefore you can use it for embedded systems or in Linux kernel space.
- nice expression level printing for debugging purposes (print the expanded expression tree).
- good documentation with examples.
- regression tests for nearly all operations and functions.
- support for several compilers (see Compiler Support).
- written as a pure class and template library, no binary libraries and versioning are needed - designed to avoid code blot due to the use of templates.
- ISO/IEC 14882:1998 compliant.
<<less
Download (MB)
Added: 2007-06-26 License: LGPL (GNU Lesser General Public License) Price:
852 downloads
ZeCetL 0.14a

ZeCetL 0.14a


ZeCetL is an IRC bot that lets all users in an IRC channel play Countdown. more>>
ZeCetL is an IRC bot that lets all users in an IRC channel play Countdown ("les chiffres et les lettres" in French).
ZeCetL project also supports some other famous TV games like "motus" and "la cible". A Web interface shows the stats of every player and sums up all played games.
Enhancements:
- The bot can now handle different langages.
- French and basic English is packaged, but it is easy to add others.
- Support for MSN, Yahoo, Jabber, and more was added through the use of bitlbee.
<<less
Download (0.36MB)
Added: 2006-10-24 License: GPL (GNU General Public License) Price:
1095 downloads
Test::Singleton 1.03

Test::Singleton 1.03


Test::Singleton is a test for Singleton classes. more>>
Test::Singleton is a test for Singleton classes.

SYNOPSIS

use Test::More tests => 1;
use Test::Singleton;
is_singleton( "Some::Class", "new", "instance" );

** If you are unfamiliar with testing read Test::Tutorial first! **

This is asimple, basic module for checking whether a class is a Singleton. A Singleton describes an object class that can have only one instance in any system. An example of a Singleton might be a print spooler or system registry, or any kind of central dispatcher.

For a description and discussion of the Singleton class, see "Design Patterns", Gamma et al, Addison-Wesley, 1995, ISBN 0-201-63361-2.

<<less
Download (0.025MB)
Added: 2007-03-12 License: Perl Artistic License Price:
956 downloads
o2-sms.pl 2.1-earlybeta

o2-sms.pl 2.1-earlybeta


o2-sms.pl is intended for customers of O2 Germany that have an account at www.o2online.de. more>>
o2-sms.pl is intended for customers of O2 Germany that have an account at www.o2online.de. o2-sms.pl can send SMS messages via the WWW gateway.
Use the -f option to send a flash SMS (it will pop up on the recipients display immediately).
The message text can have up to 780 characters. SMS to wired recipients are limited to 160 chars, as they are being sent as "text-to-speech".
Main features:
- sends SMS to ALL german cellphone networks and text-to-speech messages to wired recipients - now you can reach nearly everyone
- supports Flash SMS
- fakes user-agent by selecting one out of currently 10 "real" agents (IE, Mozilla, Opera et al.)
- very fast and reliable message delivery
- can be modified to use with other networks
- fully emulates a web user filling in the HTML form
<<less
Download (0.003MB)
Added: 2006-06-06 License: GPL (GNU General Public License) Price:
1238 downloads
gnome-nettool 2.18.0 / 2.19.90

gnome-nettool 2.18.0 / 2.19.90


gnome-nettool is a GNOME interface for various networking tools. more>>
gnome-nettool is a GNOME interface for various networking tools.
GNOME Nettool is a set of front-ends to various networking command-line tools, like ping, netstat, ifconfig, whois, traceroute, finger.
Whats New in 2.18.0 Stable Release:
- Made gnome-nettool.desktop freedesktop compliant (Christian Kirbach)
- New translations:
- ku (Erdal Ronahi)
- Updated translations:
- ja (Takeshi AIHANA)
- ru (Nickolay V. Shmyrev)
- lt (Gintautas Miliauskas)
- mk (Jovan Naumovski)
- gu (Ankit Patel )
- uk (Maxim Dziumanenko)
- he (Yair Hershkoviz)
- zh_HK (Chao-Hsiung Liao)
- zh_TW (Chao-Hsiung Liao)
- pl (Artur Flinta)
- bg (Alexander Shopov)
- da (Peter Bach)
- hu (Gabor Kelemen)
- pt (Duarte Loreto)
- fi (Ilkka Tuohela)
- ko (Changwoo Ryu)
- pt_BR (Leonardo Ferreira Fontenelle)
- nl (Wouter Bolsterlee)
- fr (St?hane Raimbault)
- ca (Josep Puigdemont i Casamaj?
- de (Hendrik Richter)
- vi (Clytie Siddall)
- ar (Djihed Afifi)
- en_GB (David Lodge)
- et (Priit Laes)
- lv (Raivis Dejus)
<<less
Download (0.64MB)
Added: 2007-08-14 License: GPL (GNU General Public License) Price:
803 downloads
WebChat2aim 1.0

WebChat2aim 1.0


WebChat2aim is a server that will connect/disconnect your AIM bot. more>>
WebChat2aim is a server that will connect/disconnect your AIM bot. It provides a bridge API to connect your Web visitors to your AIM API.

The script allows your Web site to broadcast and then allow a CSR to answer the incoming requests. Your Web site uses curl et al to command and control the actual persistent AIM connection.
<<less
Download (MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
815 downloads
Evolution 2.10.3

Evolution 2.10.3


Evolution provides integrated mail, addressbook and calendaring functionality to users of the GNOME desktop. more>>
Evolution provides integrated mail, addressbook and calendaring functionality to users of the GNOME desktop.
Main features:
- No viruses or worms
- Junk filtering
- Desktop integration
- Developer Platform (EDS)
- Evolution#
- EPlugin
- Advanced email searching
- Web calendars
- vFolders
- User-defined filters
- Multiple accounts
- Palm device support
- Customized reminders
- Multiple calendar views
- iCalendar support
- To-Do list
- LDAP compatible
- Share vCards
- Security and encryption
- Open Source
Enhancements:
Bug fixes:
- #315012: Fixed a crash when reopening an encrypted sent email (Pascal Terjan)
- #321741: Default first date is now set to current day (Milan Crha)
- #330175: Added helper function which test selection for non-space characters. (Milan Crha)
- #334140: Fixes a crash when replying to emails with bbdb plugin enabled (Milan Crha)
- #352947: Fixed a crash while selecting a default S/MIME certificate (Milan Crha)
- #439957: Fix camel warnings (Ross Burton)
- #444107: DnD of images to composers attachment bar works correctly (Srinivasa Ragavan)
- #448970: Fixed a crash in default mailer plugin (Srinivasa Ragavan)
Updated Translations:
- Priit Laes (et)
- Takeshi AIHANA (ja)
- Hendrik Richter (de)
<<less
Download (26MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
845 downloads
STUX 1.0

STUX 1.0


STUX is a bootable CD with a collection of GNU/Linux software. more>>
STUX is a bootable CD with a collection of GNU/Linux software, automatic hardware detection, and support for many graphics cards, sound cards, SCSI and USB devices and other peripherals.
Stux OS target is to build a Live CD similar to KNOPPIX but based on Slackware Linux.
Main features:
- Window Managers: KDE 3.1, Gnome 2.4, fvwm2, fvwm95, WindowMaker, Twm
- Browsers: Mozilla 1.6, Konqueror, Galeon, Nautilus, Lynx, KGet, wget, ...
- Mail clients: Mozilla Mail, KMail, mail, ...
- News readers: Mozilla News, Knode, Pan, ...
- Office, Word Processing, Editors: Open Office 1.1.0, KOffice, AbiWord, Kedit, KWrite, Kate, Xpdf, ...
- Services: Apache 1.3.28, ProFTPd 1.2.8p, Ample, Samba, Secure Shell, MySqld
- Multimedia: VideoLan Client 0.5.2, XawTV, gqRadio, Xine,...
- Graphics: the Gimp, KPaint, XPaint,...
- Developing: gcc 3.2.3, g++, J2sdk 1.4.2, perl 5.8.0, python 2.3.1, php 4.3.3, ...
- IRC Client: Kopete, KSirc, Chatzilla!
- AIM Client: Kopete, Kit
- ICQ Client: Kopete
- Peer 2 Peer/File sharing: BitTorrent, xMule
- Data Base: mysql 4.0.15a
- Web Applications: phpMyAdmin 2.5.5
- KDE Languages: AF, AR, BG, BS, CA, CS, DA, DE, EL, EN, EN_GB, EO, ES, ET, EU, FA, FI, FR, HE, HR, HU, IS, IT, JA, LT, MK, MT, NB, NL, NN, NSO, PL, PT, PT_BR, RO, RU, SE, SK, SL, SR, SS, SV, TA, TH, TR, UK, VEN, VI, XH, ZH_CN, ZH_TW, ZU
Enhancements:
- Upgraded to Slackware current as at 1 Jun 2007 and KNOPPIX live CD 5.1.1 (kernel 2.6.19); fixed problem with installation on SATA hard disks; all STUX utilities deeply reviewed; NVIDIA proprietary driver updated to 1.0-9755 + legacy driver 1.0-9631 for old cards; save live CD persistent configuration on ReiserFS partitions; install compressed image on ReiserFS partitions; Acx wireless firmware upgraded; fully integrates with other pre-installed operating systems; Compiz 0.5.0; fully VMware/QEMU compatible.
<<less
Download (MB)
Added: 2007-06-06 License: GPL (GNU General Public License) Price:
872 downloads
TinyGL 0.4

TinyGL 0.4


TinyGL is a small, free and fast Subset of OpenGL for embedded systems or games. more>>
TinyGL is a small, free and fast Subset of OpenGL for embedded systems or games.
It is a software only implementation. Only the main OpenGL calls are implemented. All the calls I considered not important are simply *not implemented.
The main strength of TinyGL is that it is fast and simple because it has not to be exactly compatible with OpenGL. In particular, the texture mapping and the geometrical transformations are very fast.
Main features:
- Header compatible with OpenGL (the headers are adapted from the very good Mesa by Brian Paul et al.)
- Zlib-like licence for easy integration in commercial designs (read the LICENCE file).
- Subset of GLX for easy testing with X Window.
- GLX like API (NGLX) to use it with NanoX in MicroWindows/NanoX.
- Subset of BGLView under BeOS.
- OpenGL like lightening.
- Complete OpenGL selection mode handling for object picking.
- 16 bit Z buffer. 16/24/32 bit RGB rendering. High speed dithering to paletted 8 bits if needed. High speed conversion to 24 bit packed pixel or 32 bit RGBA if needed.
- Fast Gouraud shadding optimized for 16 bit RGB.
- Fast texture mapping capabilities, with perspective correction and texture objects.
- 32 bit float only arithmetic.
- Very small: compiled code size of about 40 kB on x86. The file src/zfeatures.h can be used to remove some unused features from TinyGL.
- C sources for GCC on 32/64 bit architectures. It has been tested succesfully on x86-Linux and sparc-Solaris.
TinyGL is made up four main modules:
- Mathematical routines (zmath).
- OpenGL-like emulation (zgl).
- Z buffer and rasterisation (zbuffer).
- GLX interface (zglx).
To use TinyGL in an embedded system, you should look at the GLX layer and modify it to suit your need. Adding a more user friendly developper layer (as in Mesa) may be useful.
<<less
Download (0.066MB)
Added: 2006-03-29 License: BSD License Price:
1305 downloads
C Comic Collection 0.04

C Comic Collection 0.04


C Comic Collection project is a GTK application for downloading, cataloging, and viewing Web comics. more>>
C Comic Collection project is a GTK application for downloading, cataloging, and viewing Web comics. It uses a MySQL database.
To compile this software, just type "make".
It requires development libraries for gtk, gtk_imlib, cURL, mysql and pthreads. If youre on Linux these should come with your distrobution; I dunno for other OS. If you only have the runtimes and are using a 386 derivative (Pentium et al) you can get a binary from http://c-comiccollect.sourceforge.net.
Compilation will produce a binary called "gtk-cc"; copy this to your /usr/bin (youll need root privileges, copy to your ~/bin (you wont) or just run it from where it is (./gtk-cc &).
You can populate the database by running the included "comiccollection.sql" against an empty database. (mysql -u < username > < dbname > < comiccollection.sql). It even includes some comics to get you started!
Enhancements:
- Minor improvements - only really relevant if you view KeenSpace comics.
- Fixed file non-deletion problem
- Fixed KeenSpace file download problem
<<less
Download (0.018MB)
Added: 2006-11-14 License: GPL (GNU General Public License) Price:
1081 downloads
Ostiary 3.4

Ostiary 3.4


Ostiary allows a client to run scripts on a server in a secure, authenticated manner. more>>
Tools like ssh and lsh are great for allowing secure remote access to your system. They offer essentially full, flexible remote control of a machine, in an ecrypted and authenticated manner. But they are complex pieces of software; theres no way to do what they do without being complex. And with complexity comes bugs. Tools like ssh and lsh, and VPNs like CIPE, PPTP, and more have all had serious flaws that would allow an attacker to get full control over your system.
If you leave such programs running all the time, you take the risk that someone is going to use an exploit on you before you have a chance to apply a patch. For some purposes, this is an acceptable - even necessary - tradeoff, but it would be nice to enable them only when actually needed, to minimize the risk. And for other purposes, ssh et. al. are overkill. Perhaps you only really need to remotely initiate a limited set of operations. In this case, you dont need a shell prompt, just a way to securely kick off scripts from elsewhere.
Enter Ostiary. It is designed to allow you to run a fixed set of commands remotely, without giving everyone else access to the same commands. Ostiary is designed to do exactly and only what is necessary for this, and no more. The only argument given to the command is the IP address of the client, and only if the authentication is successful.
Main features:
- "First, do no harm." It should not be possible to use the Ostiary system itself to damage the host its running on. In particular, its willing to accept false negatives (denying access to legitimate users) in order to prevent false positives (allowing access to invalid users).
- Insofar as possible, eliminate any possibility of bugs causing undesired operations. Buffer overflows, timing attacks, etc. should be impossible for an external attacker to execute. Theres no point in installing security software if it makes you less secure.
- Be extremely modest in memory and CPU requirements. I want to be able to fire off commands on my webserver (running on a Mac SE/30, a 16MHz 68030 machine) from my Palm Pilot (a 16MHz 68000 machine). Things like ssh already take 30 seconds or more to start up - I cant afford anything too fancy.
- Keep things simple. Im no crypto expert; I know Im not capable of coming up with an ssh replacement. So I need to keep things so utterly simple that I can be sure Im not missing anything important.
Enhancements:
- Several non-security-related bugfixes, including some clarified log messages and an update to the TCP-wrappers autoconf macros.
- Debian packages have been added.
<<less
Download (0.067MB)
Added: 2006-04-01 License: Free To Use But Restricted Price:
1301 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5