簡潔な答え:
gconftool-2 --set --type=bool /desktop/gnome/remote_access/enabled true
受け入れられた答えが言及しているように、リモートマシンでvinoが開始されていない場合は、
/usr/lib/vino/vino-server
長い回答と詳細情報:
前述のように、現在の組み込みリモートアクセスサーバー(vino)の設定のサブセットは、vino-preferencesから確認できます。gconfフラグの完全なリストはgconf-editor
、/ desktop / gnome / remote_accessの下にリストされているコマンドで確認できます。このコマンド(またはそのバリエーション)を使用して、他のremote_accessキーも表示できます。
gconftool-2 -a /desktop/gnome/remote_access
(何らかの理由で、-R
動作します。)
--long-docs
arg を介してスキーマキーのドキュメントを取得することもできます。
たとえば、alternative_portキーの場合:
gconftool-2 --long-docs /desktop/gnome/remote_access/alternative_port
The port which the server will listen to if the
'use_alternative_port' key is set to true.
Valid values are in the range from 5000 to 50000.
したがって、たとえば、コマンドラインを使用してデフォルトポートを変更する方法は次のとおりです。
gconftool-2 --set --type=bool /desktop/gnome/remote_access/use_alternative_port true
gconftool-2 --set --type=int /desktop/gnome/remote_access/alternative_port 5999
gconftoolは、指定されたディレクトリの下にキーを提供します。「remote_access」セクションは次のとおりです。
gconftool-2 -a /desktop/gnome/remote_access
use_upnp = false
vnc_password =
authentication_methods = [vnc]
network_interface =
require_encryption = false
disable_background = false
enabled = true
use_alternative_port = false
mailto =
disable_xdamage = false
lock_screen_on_disconnect = false
icon_visibility = always
view_only = false
prompt_enabled = true
alternative_port = 5900
/ desk / gnome / remote / accessの下にすべてのスキーマドキュメントを一覧表示する方法は次のとおりです(コマンドライン/ bin / bashを使用)。
for key in ` gconftool-2 -a /desktop/gnome/remote_access | awk '{print $1}' ` ; do echo $key ; gconftool-2 --long-docs /desktop/gnome/remote_access/$key ; done
/usr/lib/vino/vino-server
:No protocol specified ** (vino-server:2040): WARNING **: Could not open X display