1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>anyRemote - control PC with Bluetooth cell phone</title>
</head>
<body>
<p></p>
<h2>NAME</h2>
<p>anyremote - control PC with Bluetooth/Wi-Fi cell phone</p>
<br>
<h2>SYNOPSIS</h2>
<p><strong>anyremote</strong> [-f file] [-s peer[,peer ...]] [-log] [-a]</p>
<p> [-fe port] [-u username] [-name SDP service name] [-password]</p>
<p><strong>anyremote</strong> -h|-v</p>
<br>
<h2>DESCRIPTION</h2>
<p>anyRemote is remote control software for applications using WiFi or Bluetooth.</p>
<p>anyRemote was developed as thin "communication" layer between device with WiFi or Bluetooth support
(which can be cell phone or tablet computer) and Linux PC.</p>
<p>In theory anyRemote could be configured to manage almost any kind of software.</p>
<p>anyRemote is console application, but in addition there are GUI frontends for Gnome and KDE.</p>
<h2>OPTIONS</h2>
<h3>-h</h3><p>print short help and exit</p>
<h3>-v</h3><p>print version number and exit</p>
<h3>-f /path/to/configuration/file</h3>
<p>By default anyremote will try to find and use $HOME/.anyremote.cfg, then ./.anyremote.cfg. It is possible to specify
configuration file directly with -f option.</p>
<h3>-s peer[,peer ...]</h3>
<p>where peer can be one of:</p>
<p> tcp:_port_ (Server mode - TCP/IP connection)</p>
<p> bluetooth:_channel_ (Server mode - bluetooth connection)</p>
<p> web:_port_ (Server mode - Web interface)</p>
<p> cmxml:_port_ (Server mode - XML services interface)</p>
<p> local:/dev/ircommX (Server mode - IR connection)</p>
<p> rfcomm:XX:XX:XX:XX:XX:XX:CC (AT mode - bluetooth connection,</p>
<p> where XX:XX:XX:XX:XX:XX is bluetooth device address and </p>
<p> CC is channel number - integer from 1 to 32)</p>
<p> /dev/ttyACM# (AT mode - cable connection)</p>
<p> /dev/ircomm# (AT mode - IR connection)</p>
<p> ilirc:_AF_LOCAL socket file_ (use with inputlircd)</p>
<p> stdin</p>
<p> avahi - register SDP service using Avahi</p>
<p>Default peer value is bluetooth,tcp:5197,web:5080,avahi</p>
<p>It is possible to specify several peers for Server mode configuration files only.</p>
<p>It is possible to specify only single peer of <strong>web:</strong> or <strong>cmxml:</strong> type.</p>
<h3>-log</h3>
<p>print verbose logging information to $HOME/.anyRemote/anyremote.log</p>
<h3>-a</h3>
<p>reconnect automatically in case of connection failure, used only in AT mode</p>
<h3>-fe _port_</h3>
<p>Work as backend for GUI frontend. Use specified port to connect to frontend.</p>
<h3>-name SDP_service_name</h3>
<p>if bluetooth or TCP/IP connection is used, allows one to specify SDP service name.</p>
<p>Default value for SDP service name is "anyRemote"</p>
<h3>-password</h3>
<p>If this option is specified, then anyRemote will ask the client for the password.</p>
<p>Password phrase should be stored in $HOME/.anyRemote/password file in a plain text.</p>
<h3>-cfgdir _directory_</h3>
<p>override default location of directory with configuration files<p>
<h3>-tmpdir _directory_</h3>
<p>override default location of directory to store temporary files<p>
<h3>-u|--user _username_</h3>
<p>if started from root, allows one to set effective user ID to specified user</p>
<p></p>
<br>
<h2>AUTHORS</h2>
Mikhail Fedotov <i>anyremote@mail.ru</i>
<p><i>http://anyremote.sf.net</i></p>
<br>
<h2>BUGS</h2>
If you find any bugs, please report to <i>anyremote@mail.ru</i>
<br>
<h2>LICENCE</h2>
<p>This is free software. You may redistribute copies of it under the terms of the GNU
General Public License v3+<i>http://www.gnu.org/licenses/gpl-3.0.html</i>. There is NO WARRANTY, to
the extent permitted by law.</p>
</body>
</html>
|