Main > Free Download Search >

Free bluetooth remote software for linux

bluetooth remote

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1178
GNOME Bluetooth control remoto 0.86

GNOME Bluetooth control remoto 0.86


GNOME Bluetooth control remoto it is meant to be a fast and functional remote control for GNOME Desktop. more>>
GNOME Bluetooth control remoto (AKA GBTcr) It is meant to be a fast and functional remote control for GNOME Desktop working between a Sony Ericssons phone mobile (maybe others) and computer box using Bluetooth comunication protocol.
Main features:
- Realtime control by plugins for:
- Music player. (beep-media-player, xmms)
- Video player. (mplayer, totem, xine)
- Slideshow software. (ooimpress, magic point)
- Image Viewer. (gthumb, gqview)
- Mouse and Keyboard events.
- Nice and HIGgy GNOME gui GTK+ based.
- Notification Area Support (Tray Icon)
<<less
Download (2.3MB)
Added: 2005-08-02 License: GPL (GNU General Public License) Price:
1568 downloads
Mobi Bluetooth RC 0.9.1

Mobi Bluetooth RC 0.9.1


Mobi is software which is designed to provide access to a Un*x machine using a Bluetooth-enabled SonyEricsson phone. more>>
Mobi is software which is designed to provide access to a Un*x machine using a Bluetooth-enabled SonyEricsson phone.
A simple menu file is used to define a menu structure. Menu items can be tied to arbitrary shell commands or external programs, maximizing flexibility. Menus can also be loaded from programs rather than from files, meaning that dynamically changing menus are easy to realize, e.g. to browse a filesystem, an MP3 collection or a mail folder.
Mobi connects to any phone within its reach which passes the Bluetooth authorization process (usually by providing the correct PIN number). If the phone gets out of reach, Mobi will reconnect once it is found again. The number of simultaneously connected phones is restricted only by hardware capabilities.
Mobi uses the accessory menu of the phone. This feature is present in most SonyEricsson phones. It is tested on a T610, but should work on T68, T68i, T610, T630, Z600, and perhaps other models.
The accessory interface has been completely redesigned for newer phones (K750, W550, W600, W800, Z520), but I am not able to implement this since I do not have access to one of those. For the P800/P900, there are different solutions.
Enhancements:
- No phone reset on connect, since it may end a call in progress.
- Improved installation scripts (using autoconf/automake).
- Menu files may now recursively include other files.
- Improved music playback scripts. Makes it much easier to support other players.
- Reloading the menu file will not do a full reset, but only replace the menu.
<<less
Download (0.29MB)
Added: 2005-10-27 License: GPL (GNU General Public License) Price:
1479 downloads
GNOME Bluetooth 0.9.1

GNOME Bluetooth 0.9.1


GNOME Bluetooth are tools for controlling and communicating with Bluetooth devices. more>>
GNOME Bluetooth are tools for controlling and communicating with Bluetooth devices.

GNOME Bluetooth includes a GNOME platform library and associated tools for interfacing with and managing Bluetooth devices. Includes OBEX file transfer utilities and a prototype device manager.

GNOME Bluetooth was originally developed by Edd Dumbill, and its primary maintainer is now Bastien Nocera.

The software is free, licensed under the GPL.

The software is still in beta development right now. This means that there are bugs. Be careful!

<<less
Download (1.0MB)
Added: 2007-07-24 License: GPL (GNU General Public License) Price:
605 downloads
KDE Bluetooth Framework 1.0 Beta 2

KDE Bluetooth Framework 1.0 Beta 2


KDE Bluetooth Framework is a set of tools built on top of Linux Bluetooth stack BlueZ. more>>
KDE Bluetooth Framework is a set of tools built on top of Linux Bluetooth stack BlueZ.
Our goal is to provide easy access to the most common Bluetooth profiles and to make data exchange with Bluetooth enabled phones and PDAs as straightforward as possible.
Enhancements:
- Exporting public includes to make other applications use of kdebluetooth.
- Fixed some bugs on kioslaves.
- Fixed kbluepin.
- Allow compiling with lastest openobex and bluez packages.
- Fixed compilation with gcc >= 4.1.
- Fixed configure script, warning user about missing headers.
<<less
Download (0.80MB)
Added: 2006-10-16 License: GPL (GNU General Public License) Price:
1133 downloads
File::Remote 1.17

File::Remote 1.17


File::Remote is a Perl module to read/write/edit remote files transparently. more>>
File::Remote is a Perl module to read/write/edit remote files transparently.

SYNOPSIS

#
# Two ways to use File::Remote
#
# First, the function-based style. Here, we can use the
# special :replace tag to overload Perl builtins!
#
use File::Remote qw(:replace); # special :replace tag

# read from a remote file
open(REMOTE, "host:/remote/file") or die $!;
print while (< REMOTE >);
close(REMOTE);

# writing a local file still works!
open(LOCAL, ">>/local/file");
print LOCAL "This is a new line.n";
close(LOCAL);

mkdir("host:/remote/dir", 0755);
unlink("host:/remote/file");
unlink("/local/file"); # still works too!
symlink("host:/remote/src", "host:/remote/dest");

chown("root", "other", "host:/remote/dir/file");
chmod(0600, "host:/remote/dir/file");

#
# Next, the object-oriented style, if you dont want to
# mess with the builtins.
#
use File::Remote;
my $remote = new File::Remote;

# Standard filehandles
$remote->open(FILE, ">>host:/remote/file") or die $!;
print FILE "Heres a line thats added.n";
$remote->close(FILE);

# Create a new file and change its permissions
$remote->mkdir("host:/remote/dir");
$remote->touch("host:/remote/dir/file");

# Move files around
$remote->copy("/local/file", "host:/remote/file") or warn $!;
$remote->move("host:/remote/file", "/local/file");

# Read and write whole files
my @file = $remote->readfile("host:/remote/file");
$remote->writefile("/local/file", @file);

# Backup a file with a suffix
$remote->backup("host:/remote/oldfile", "save");

# Use secure connection methods
my $secure = new File::Remote (rsh => "/usr/local/bin/ssh",
rcp => "/usr/local/bin/scp");
$secure->unlink("/local/file");
$secure->rmdir("host:/remote/dir");

This module takes care of dealing with files regardless of whether theyre local or remote. It allows you to create and edit files without having to worry about their physical location on the network. If a file passed into a function is of the form host:/path/to/file, then File::Remote uses rsh/rcp (or ssh/scp, depending on how you configure it) to edit the file remotely. Otherwise, it assumes the file is local and passes calls directly through to Perls core functions.

The nice thing about this module is that you can use it for all your file calls, since it handles both remote and local files transparently. This means you dont have to put a whole bunch of checks for remote files in your code. Plus, if you use the function-oriented interface along with the :replace tag, you can actually redefine the Perl builtin file functions. This means that your existing Perl scripts can automatically handle remote files with no re-engineering(!).

<<less
Download (0.015MB)
Added: 2007-04-27 License: Perl Artistic License Price:
911 downloads
Multi-Protocol Remote Login 0.3.0

Multi-Protocol Remote Login 0.3.0


Multi-Protocol Remote Login provides a middleware allowing SSH, telnet, and local logins from the login: prompt. more>>
Multi-Protocol Remote Login provides a middleware allowing SSH, telnet, and local logins from the login: prompt.
MPRL is a middleware application between a *getty program and SSH, telnet, and other such remote-login protocols. It allows a user at a Linux terminal to log into other systems without needing a valid local user-id. It currently supports telnet, ssh, and /bin/login.
It syntax follows the [protocol:]user[@host][:port] fashion.
These are valid logins:
- buanzo - Normal local login: /bin/login gets called.
- buanzo@linux.org.ar - SSH protocol by default: /usr/bin/ssh gets called
- ssh:buanzo@webserver.algo.net
<<less
Download (0.022MB)
Added: 2007-02-28 License: GPL (GNU General Public License) Price:
971 downloads
amaroK XUL Remote 1.0

amaroK XUL Remote 1.0


AmaroK XUL Remote is an amaroK script that allows you to control amaroK from any Firefox browser on your network. more>>
AmaroK XUL Remote is an amaroK script that allows you to control amaroK from any Firefox browser on your network.
Main features:
- basic player manipulation: play, pause, stop, next, previous, seek, volume
- playlist view, plays a track when clicking on it
- collection browser with filtering, support for compilations
- drag and drop tracks, album and artists from the collection to the playlist
<<less
Download (0.038MB)
Added: 2007-05-24 License: GPL (GNU General Public License) Price:
544 downloads
rmRemote 0.2

rmRemote 0.2


rmRemote project lets you remote control xmms with a REALmagic Remote. more>>
rmRemote project lets you remote control xmms with a REALmagic Remote. In the future it may be used to control everything in your house if you add the functionality.

<<less
Download (0.020MB)
Added: 2006-04-19 License: GPL (GNU General Public License) Price:
1284 downloads
MobileRemoteSE 0.1

MobileRemoteSE 0.1


MobileRemoteSE is a light (non-Java), serial-over-bluetooth-based remote control for Amarok. more>>
MobileRemoteSE is a light (non-Java), serial-over-bluetooth-based remote control for Amarok.
Uses the Sony Ericsson AT command set, and supports the following Sony Ericsson phone models: K750, W800, Z520, W550, W600, W900, W810, Z530, W300, K510, K310, W700, Z525, W710, Z550, Z558, K320
Main features:
- Appears under "Entertainment" menu on the phone.
- Supports Play/Pause, Next, Prev, Stop, Volume Up/Down operations from mobile phone.
- Displays the current running track on Amarok in the phone menu title.
- Since J2ME is not used (unlike some other alternatives), the remote control can be used while running some other application on non-multitasking models.
Instructions:
1) Bind /dev/rfcomm0 to the serial-over-bluetooth channel of your mobile. Please refer to your distro docs or howtos on the internet to find out how to do this.
2) Install Device::Modem package for Perl. You can either use your distro packages for this, or install through CPAN as:
cpan -i Device::Modem
3) Install and start script from Amarok.
<<less
Download (0.008MB)
Added: 2006-12-27 License: GPL (GNU General Public License) Price:
1044 downloads
vdr_remote 0.4

vdr_remote 0.4


vdr_remote is a graphical remote control for the video disk recorder vdr more>>
vdr_remote is a graphical remote control for the video disk recorder vdr. vdr_remote connects over a TCP/IP network and gives you a complete remote control.

<<less
Download (1.1MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1081 downloads
Kxremote 0.0.2

Kxremote 0.0.2


Kxremote is an application to integrate protocols of remote connection made with perlqt. more>>
Kxremote is an application to integrate protocols of remote connection made with perlqt.
Supports:
- xdmcp
- vnc
- rdp
<<less
Download (0.007MB)
Added: 2006-10-13 License: GPL (GNU General Public License) Price:
1108 downloads
BlueamaroK 0.53

BlueamaroK 0.53


BlueamaroK controls basic functions of the amaroK player with a SonyEriccson mobile telephone through a bluetooth connection. more>>
BlueamaroK is an amaroK script that controls basic functions of the amaroK player with a SonyEriccson mobile telephone through a bluetooth connection.

Using:

Pair your PC and phone, run rfcomm to bind the connectio to a serial device, for example /dev/rfcomm0, and run BlueamaroK.

<<less
Download (0.010MB)
Added: 2006-12-10 License: GPL (GNU General Public License) Price:
1049 downloads
RemoteBuddy 1.0

RemoteBuddy 1.0


RemoteBuddy allows people to help their friends fix their computer issues by remote access. more>>
RemoteBuddy project allows people to help their friends fix their computer issues by remote access.

RemoteBuddy is easy to use and works with almost any firewall configuration.

Just follow the simple steps to below to get started.

<<less
Download (MB)
Added: 2006-02-27 License: Freeware Price:
1339 downloads
Python Remote Call Module 0.0.3

Python Remote Call Module 0.0.3


Python Remote Call Module allows to transparently work with remote object in a python program. more>>
Python Remote Call Module allows to transparently work with remote object in a python program.
To make this possible a kind of peer-to-peer design is used. Servers can be created explictly, as can clients by explicitly connecting to a server. If a client needs to have a server, e.g. so a reference to a local object can be passed to a remote destination, it is instantiated as needed.
Clients can have multiple connections. New connections are created when needed, e.g. when a remote reference to a new server is recieved.
WARNING:
This module is still in its experimental phase, so it is kind of usable, but an awful lot of bugs is still in it, and quite a few parts are not coded yet, others arent even designed yet.
Therefor lots of changes and outdated documentation should be expected.
Enhancements:
- All previous stub objects have been replaced by a single stub object which uses on-demand retrieval of attributes of remote objects.
- This way, the behavior of the stub object is much more flexible and smoother.
- A first draft of an authentication framework has been implemented so PyRCall can support many different authentication methods.
- Support for username/password-based authentication has been implemented.
<<less
Download (0.005MB)
Added: 2005-12-29 License: GPL (GNU General Public License) Price:
1399 downloads
Remote Growl 1.0

Remote Growl 1.0


Remote Growl is an extension to Glow which allows remote notification system for Max OS X (server) and any UNIX (client). more>>
Remote Growl is an extension to Glow which allows remote notification system for Max OS X (server) and any UNIX (client).

This package includes a Cocoa background application server, and a command line client to send notifications to a remote computer.

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