Main > Free Download Search >

Free instant messenger software for linux

instant messenger

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 325
SIM Instant Messenger 0.9.4.3

SIM Instant Messenger 0.9.4.3


SIM Instant Messenger provides an plugins-based instant messenger with support for various protocols. more>>
SIM Instant Messenger provides an plugins-based instant messenger with support for various protocols.
Based on the Qt library it works on X11 (optional with KDE-support), MS Windows and MacOS X.
Main modules
- Core (_core) is the program interface
- Migrate (__migrate) Converts the old SIM 0.8.3-settings to the new 0.9x format
- Homedir (__homedir) sets the configuration-directory
Protocols modules
All protocols support richtext-messages, file transfer, typing notification, server-side contact list (with postponed synchronization - you can change contact list in offline mode and after log on all changes will be synchronized with server), new account registration, various searches and HTTP-polling.
You can use multiple accounts for each protocol.
- Oscar - ICQ and AIM support
- Jabber
- LiveJournal
- MSN
- Yahoo!
Enhancements:
Build system
- Autotools: fix libXss detection.
- Add initial CMake support.
Core
- Disable history filter when it is empty.
- Remove "To container" menu when separate containers are disabled.
- Auto scroll message view only if it is scrolled to the bottom.
- XFree: fix problems with Composite extension enabled.
ICQ plugin
- More fixes for receiving certain messages.
<<less
Download (MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
979 downloads
GOIM - Gamers Own Instant Messenger 1.1.0

GOIM - Gamers Own Instant Messenger 1.1.0


GOIM is a full featured jabber / XMPP client with special features (extensions) for gamers. more>>
GOIM is a full featured jabber / XMPP client with special features (extensions) for gamers. (e.g. broadcasting a notification when you join a server.. and see which games others play and join them with one click on the game icon beside their name)
GOIM uses the Eclipse Rich Client Plattform as GUI and SMACK as its jabber library.
You can also use GOIM InsideEclipse IDE.
GOIM is still in an early Beta Stage, which means it may contains bugs and misses features.
Main features:
- Send information about which game is played on which server (This is done by sending a presence with extended information. The information which game on which server will also be visible in the show part, so even people using another client (or icq/msn/..) will see what/where you are playing.
- Current supported games are: Unreal Tournament 2004, Live for Speed, Americas Army, TeamSpeak 2 (not a game, but works the same way)
- Basic Messenging and Presence
- Discover and subscribe to Jabber transports (which allows communication with icq, msn, aim, etc. users)
Enhancements:
- This release includes two new plugins - the InGame Messenger for DirectX 8 games, as well as the GameServer Browser which allows you to query HLSW server lists.
In addition there were many other fixes and enhancements:
- Usability fixes for linux and macOS (including a new chat window which does not use the Browser widget and therefore does not rely on any platform dependent features)
- Added support for jabber File Transfer
- Commands used to launch a game can now be customized
- Fixed bug when autojoining MUC rooms on connecting.
<<less
Download (13.2MB)
Added: 2006-07-02 License: GPL (GNU General Public License) Price:
1216 downloads
PlanetaMessenger 03

PlanetaMessenger 03


PlanetaMessenger.org, the universal Instant Messenger fully written in java. more>>
PlanetaMessenger.org, the universal Instant Messenger fully written in java. Welcome to PlanetaMessenger.org. This site is the home of PlanetaMessenger.org, the universal Instant Messenger fully written in java.
You have 2 first, and better, possibilities to install PlanetaMessenger.org. If youre in Windows, you can install it using the native installer. To install using the native installer, please go to http://sourceforge.net/project/showfiles.php?group_id=40468 and get the latest Windows release (type exe 32-bit Windows). The installer creates all shortcuts needed to launch and uninstall the application.
The other possibility is download the Platform independent installer and install it using the command (in command line):
java -jar planetamessenger*.jar
The java based installer will guide you throught installation process. After finish the installation process, go to PlanetaMessenger.orgs installation directory, enter in bin directory, then you can launch the following files:
planetamessenger.sh (for Linux/Solaris and other UNIXes users)
planetamessenger.bat (for Windows users)
Main features:
- Plugin support for many IM networks like, ICQ, AIM, MSN, ComVC, Yahoo, Jabber and so on.
- Multi-profile support.
- Future improvements:
- Support to internationalization.
- Skins, and much more
<<less
Download (3.7MB)
Added: 2007-02-25 License: GPL (GNU General Public License) Price:
972 downloads
simple instant messaging 1.0

simple instant messaging 1.0


simple instant messaging (sim) is an IRC client specialized for use with bitlbee. more>>
simple instant messaging (sim) is an IRC client specialized for use with bitlbee. It is based on sic (http://suckless.org). It reads commands from standard input and prints all server output to standard output.
simple instant messaging also multiplexes all channel traffic into one output, so you dont have to switch to different channel buffers. sim must be customized by editing its source code to insert the correct username, server, password, and identification information.
Enhancements:
- The command operator was changed.
- Some code simplifications were done.
- The output format was adjusted.
<<less
Download (0.006MB)
Added: 2007-04-01 License: MIT/X Consortium License Price:
937 downloads
Yahoo Messenger 1.0.4

Yahoo Messenger 1.0.4


Yahoo! Messenger for UNIX is an instant messenger. more>>
Yahoo! Messenger for Unix sends instant messages to your Windows and Unix friends!
Enhancements:
- Improved Emoticons - Improved Message Archive - Improved sound on RedHat kernels - Yahoo! Address Book integration - File transfer with Windows clients -
<<less
Download (0.91MB)
Added: 2005-06-15 License: LGPL (GNU Lesser General Public License) Price:
1171 downloads
Linux MSN Messenger Engine 1.0

Linux MSN Messenger Engine 1.0


Linux MSN Messenger Engine is a fully asynchronous, and fully multithreaded MSN messenger engine. more>>
Linux MSN Messenger Engine is a fully asynchronous, and fully multithreaded MSN messenger engine.
Preliminary releases will be statically combined with an ncurses console-based EPIC4-like interface for instant messaging functionality.
Enhancements:
- Code cleanup
<<less
Download (0.056MB)
Added: 2006-05-30 License: GPL (GNU General Public License) Price:
827 downloads
Instant 0.9

Instant 0.9


Instant is a Python module that allows for instant inlining of C and C++ code in Python. more>>
Instant is a Python module that allows for instant inlining of C and C++ code in Python. Instant is a small Python module built on top of SWIG.

Example of use:

>>> c_code = """
double sum(double a, double b){
return a+b;
}
"""
>>> import Instant
>>> ext = Instant.Instant()
>>>
>>> # create the wrapper code, compile and link it to a shared library
>>> ext.create_extension(code=c_code, module=test1_ext)
>>>
>>> # use the C code
>>> from test1_ext import sum
>>> print sum(3.7, 4.8)
8.5

Example with NumPy arrays converted to C double arrays:

>>> import Instant
>>> import Numeric
>>> import sys
>>> import time
>>>
>>> ext = Instant.Instant()
>>>
>>> c_code = """
/* add function for vectors with all safety checks removed ..*/
void add(int n1, double* array1, int n2, double* array2, int n3, double* array3){
for (int i=0; i >>"""
>>>
>>> ext.create_extension(code=c_code, headers=["arrayobject.h"],
>>> include_dirs=[sys.prefix + "/include/python" + sys.version[:3] + "/Numeric"],
>>> init_code=import_array();, module=test3_ext,
>>> arrays = [[n1, array1],[n2, array2],[n3, array3]])
>>>
>>> from test3_ext import add
>>> a = Numeric.arange(10000); a = Numeric.sin(a)
>>> b = Numeric.arange(10000); b = Numeric.cos(b)
>>> c = Numeric.arange(10000); c = Numeric.cos(c)
>>>
>>>add(a,b,c)
<<less
Download (0.034MB)
Added: 2007-01-03 License: GPL (GNU General Public License) Price:
1270 downloads
Galaxium Messenger 0.4.6

Galaxium Messenger 0.4.6


Galaxium Messenger is an Instant Messenger for GNOME using the MSN service. more>>
Galaxium is a MSN service messenger application that runs in the GNOME environment on Linux. Galaxium Messenger is written by Adam Peck and Philippe Durand, students of the Southern Alberta Institute of Technology.

Here you will find information about the development of this new instant messenger and have an opportunity to involve yourself in the process!

<<less
Download (0.63MB)
Added: 2007-01-01 License: GPL (GNU General Public License) Price:
1055 downloads
Yafumato Web Messenger 0.7.1

Yafumato Web Messenger 0.7.1


Yafumato Web Messenger is a Web-based instant messenger client. more>>
Yafumato Web Messenger is a Web-based instant messenger client. Users can connect to supported instant messenger services using only a Web browser via HTTP (or HTTPS).
The Yafumato server connects to the messengers by proxy and provides the Web interface to the user, allowing instant messaging from computers where a desktop client cannot be used.
Yafumato Web Messenger is currently alpha software; as such, it has minimal error handling and is not feature complete.
Enhancements:
- The database is now an optional package; users can now login using messenger credentials rather than single sign-on using the database.
- Messenger session handling has been improved; any active messenger sessions are restored upon signin.
- Unstable messenger sessions can be disconnected and replaced using the new "Reset Messenger" link on the status page.
<<less
Download (11.4MB)
Added: 2006-09-19 License: GPL (GNU General Public License) Price:
1142 downloads
LarryMessenger 0.9.0

LarryMessenger 0.9.0


LarryMessenger is a simple to use and easy to install Instant Messenger. more>>
LarryMessenger is a simple to use and easy to install Instant Messenger. It is Open Source Software and is hosted as an Open Source Project at SourceForge.net

It is published under the GNU General Public License

You can download all available Source Codes, Binary Releases and Documentation from theLarryMessenger Summary Page at SourceForge.
The Version Alpha02_1 Version will be out soon and provides possibilities to exchange text messages in a LAN with no need for a central Server or a Internet Connection and enables the user to querry the ICQ and AIM Messaging Network.

Next Versions will include support for Proxy Server, MSN and the Jabber Protocol.

If you want to join the Project as a developer visit our SourceForge Page. You will find there all necessary informations.

If you got a list of features you are missing, please fill in Feature Requests at SourceForge.

<<less
Download (3.7MB)
Added: 2006-06-16 License: GPL (GNU General Public License) Price:
1225 downloads
Instant-Grid 1.0

Instant-Grid 1.0


Instant-Grid is a Knoppix-based live-CD bundled with a pre-configured grid environment based on the Globus Toolkit. more>>
Instant-Grid is a live-CD based on Knoppix bundled with a pre-configured grid environment based on the Globus Toolkit.
One PC started from this CD becomes the Instant-Grid frontend. It also functions as a PXE boot-server, allowing other PCs in the same local network to boot the Instant-Grid environment.
Together with the frontend, these PCs automatically form a working test grid. Like with the original Knoppix, the existing configuration of the participating PC is not touched (except maybe for enabling the PXE boot-option), and remains instantly available by a simple reboot.
Enhancements:
- This version has a newly designed user interface improving its accessibility for beginners, which is further enhanced by new flash videos showcasing the most important features.
- Also new is the integration of the graphical workflow manager GWES.
- Its capabilities are demonstrated by a demo version of ERAMAS, an environmental simulation tool, and by a new POV-Ray renderfarm based on workflows.
- Furthermore, it is possible for the first time to use external resources, which requires a D-Grid certificate.
<<less
Download (MB)
Added: 2007-06-05 License: Freely Distributable Price:
873 downloads
Kopete Massive Messenger 0.1

Kopete Massive Messenger 0.1


Kopete Massive Messenger is a Kommander script that lets you send repetitive messages to your Kopete contacts. more>>
Kopete Massive Messenger is a Kommander script that lets you send repetitive messages to your Kopete contacts.

<<less
Download (0.016MB)
Added: 2006-02-22 License: GPL (GNU General Public License) Price:
1355 downloads
Akeni Instant Messaging IM - Pro 1.2.75

Akeni Instant Messaging IM - Pro 1.2.75


Akeni Instant Messaging - Pro is a client/server instant messaging platform. more>>
Akeni Instant Messaging - Pro is a client/server instant messaging platform that allows companies to host their own secured private IM system. The client has an user interface similar to AIM, ICQ, or MSN Messenger. It supports all the standard IM features such as chat, group conference, presence management, file transfer, offline messages and emergency alert/notification. Extra features include contact management and optional tabbed chat sessions.

The server has administration tools like managing user accounts, client-side logging capabilities and peer-to-peer file transfers. Akeni Pro Messenger can be setup on a private network without connecting to the internet and can easily be setup for use inside and outside the company firewall.

<<less
Download (3.1MB)
Added: 2006-06-19 License: GPL (GNU General Public License) Price:
1225 downloads
Wooden Fish Messenger 1.0 beta1

Wooden Fish Messenger 1.0 beta1


Wooden Fish Messenger is an instant messenging client application based on the open Jabber Standard Protocals and the SMACK API. more>>
Wooden Fish Messenger is an instant messenging client application based on the open Jabber Standard Protocals and the SMACK API.
The application is written in Java and can be launched directly from your browser through Java Web Start.
Main features:
- Multiple Jabber accounts,
- Chat, groupchat, message,
- Sounds for presence and incoming message notifications,
- Animated icons,
- Various skins,
- Run on any platform that supports JRE 1.4.x or higher
- Integrated bookmark and room discovery functions to join a group chat room,
- Tabbed group chat interface,
- Conversation history,
- Chat Room configuration,
- and more..
Wooden Fish Messenger is a Java Web Start enabled application. Please click on the image below to install and launch the application.
Wooden Fish Messenger will be installed automatically from your browser and work as standalone desktop application. Before launching the application, please check the Java Runtime section of the requirements page and verify that the Java Runtime Environment is installed and the web browser is configured properly to support Java Web Start JNLP file extension.
<<less
Download (MB)
Added: 2005-09-09 License: GPL (GNU General Public License) Price:
846 downloads
Eureka Encryption Messenger 4 4.0.0

Eureka Encryption Messenger 4 4.0.0


Eureka Messenger 4 software delivers secure and private messaging and unlimited file transfers over the internet. more>>
Eureka Messenger 4 software delivers secure and private messaging and unlimited file transfers over the internet.

This application no longer requires the VB Runtimes, but this new version 4 is not compatible with the previous windows version.

Installation:

Actually there is no install for this application. You can run it right where you unzipped it, or copy the files unzipped wherever you want them.

If there is a firewall on either machine, some configuration may be required in order to make a connection.

The program has a Help file to guide you on how it works, although it is simple enough to run without much assistance.

You probably need to issue a chmod +x messenger before it can run. On some linux systems you may also need to issue a chmod +755 messenger.
<<less
Download (3.1MB)
Added: 2007-05-10 License: Freeware Price:
900 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5