Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

spicec(1) [debian man page]

SPICEC(1)						      General Commands Manual							 SPICEC(1)

NAME
spicec - Spice client SYNOPSIS
spicec [-h, --host <host>] [-p, --port <port>] [-s, --secure-port <port>] [--secure-channels <ch0, ch1...>] [--unsecure-chan- nels <ch0, ch1...>] [-w, --password <password>] [-f, --full-screen[=auto-conf]] [--canvas-type <type1, type2...>] [--enable-chan- nels <ch0, ch1...>] [--disable-channels <ch0, ch1...>] [--help] DESCRIPTION
spicec is a Spice client, it can be used to connect to Spice server, such as spice compatible QEMU OPTIONS
-h, --host <host> Spice server address. -p, --port <port> Spice server port -s, --secure-port <port> Spice server secure port --secure-channels <ch0, ch1...> Force secure connection on the specified channels Channels are: main, display, inputs, cursor, playback and record By default, any channel can be secured, depending on the --secure-port availability. --unsecure-channels <ch0, ch1...> Force unsecure connection on the specified channels Channels are: main, display, inputs, cursor, playback and record. By default, any channel can be unsecured, depending on the --port availability. -w, --password <password> Set a ticketing password (default is none) -s, --secure-port <port> Spice server secure port -f, --full-screen[=auto-conf] Open in a full screen mode. Optional automatic configuration of the remote display settings according to the client display set- tings. A guest agent must be installed and started for this option. --canvas-type <type1, type2...> Select the available renderer. The order determines precedence For Linux client : only "cairo" canvas type is available. For Win- dows client : available types are "gdi" and "cairo". The default is "gdi". --enable-channels <ch0, ch1...> Enable the specified channels. Use "all" for enabling all possible channels. Use the following names for enabling only the selected channels: "display", "inputs", "cursor", "playback" and "record". By default all channels are enabled. --disable-channels <ch0, ch1...> Disable the specified channels. Use "all" for disabling all possible channels. Use the following names for enabling only the selected channels: "display", "inputs", "cursor", "playback" and "record." By default all channels are enabled. --help Show command help. CONTROL HOT KEYS
Shift + F11 Toggle full-screen / window mode Shift + F12 Release the cursor if captured in window On debug mode, these are available as well: Shift + F5 Connect to the server Shift + F6 Disconnect from the server SEE ALSO
Spice related documents can be found at http://www.spice-space.org/documentation.html AUTHOR
Spice project This manual page was written by Liang Guo <bluestonechina@gmail.com>, for the Debian project (and may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the Creative Commons Attribution-Share Alike 3.0 United States License. (See http://creativecommons.org/licenses/by-sa/3.0/us/legalcode) November 29, 2010 SPICEC(1)

Check Out this Related Man Page

POE::Component::IRC::Plugin::AutoJoin(3pm)		User Contributed Perl Documentation		POE::Component::IRC::Plugin::AutoJoin(3pm)

NAME
POE::Component::IRC::Plugin::AutoJoin - A PoCo-IRC plugin which keeps you on your favorite channels SYNOPSIS
use POE qw(Component::IRC::State Component::IRC::Plugin::AutoJoin); my $nickname = 'Chatter'; my $server = 'irc.blahblahblah.irc'; my %channels = ( '#Blah' => '', '#Secret' => 'secret_password', '#Foo' => '', ); POE::Session->create( package_states => [ main => [ qw(_start irc_join) ], ], ); $poe_kernel->run(); sub _start { my $irc = POE::Component::IRC::State->spawn( Nick => $nickname, Server => $server, ) or die "Oh noooo! $!"; $irc->plugin_add('AutoJoin', POE::Component::IRC::Plugin::AutoJoin->new( Channels => \%channels )); $irc->yield(register => qw(join); $irc->yield(connect => { } ); } sub irc_join { my $chan = @_[ARG1]; $irc->yield(privmsg => $chan => "hi $channel!"); } DESCRIPTION
POE::Component::IRC::Plugin::AutoJoin is a POE::Component::IRC plugin. If you get disconnected, the plugin will join all the channels you were on the next time it gets connected to the IRC server. It can also rejoin a channel if the IRC component gets kicked from it. It keeps track of channel keys so it will be able to rejoin keyed channels in case of reconnects/kicks. If a POE::Component::IRC::Plugin::NickServID plugin has been added to the IRC component, then AutoJoin will wait for a reply from NickServ before joining channels on connect. This plugin requires the IRC component to be POE::Component::IRC::State or a subclass thereof. METHODS
"new" Takes the following optional arguments: 'Channels', either an array reference of channel names, or a hash reference keyed on channel name, containing the password for each channel. By default it uses the channels the component is already on if you are using POE::Component::IRC::State. 'RejoinOnKick', set this to 1 if you want the plugin to try to rejoin a channel (once) if you get kicked from it. Default is 0. 'Rejoin_delay', the time, in seconds, to wait before rejoining a channel after being kicked (if 'RejoinOnKick' is on). Default is 5. 'Retry_when_banned', if you can't join a channel due to a ban, set this to the number of seconds to wait between retries. Default is 0 (disabled). 'NickServ_delay', how long (in seconds) to wait for a reply from NickServ before joining channels. Default is 5. Returns a plugin object suitable for feeding to POE::Component::IRC's "plugin_add" method. AUTHOR
Hinrik Oern Sigur`sson, hinrik.sig@gmail.com perl v5.14.2 2011-12-07 POE::Component::IRC::Plugin::AutoJoin(3pm)
Man Page