mirror of
https://github.com/LCTT/TranslateProject.git
synced 2025-01-25 23:11:02 +08:00
Translated:20140804 Linux FAQs with Answers--How to enable and configure desktop sharing on Linux Mint Cinnamon desktop.md
This commit is contained in:
parent
2cab9dc1d3
commit
c0443c6f33
@ -1,53 +0,0 @@
|
||||
Translating by GOLinux ...
|
||||
Linux FAQs with Answers--How to enable and configure desktop sharing on Linux Mint Cinnamon desktop
|
||||
================================================================================
|
||||
> **Question**: I was trying to enable desktop sharing via Vino VNC server (vino-server) on Linux Mint 17 Cinnamon desktop. However, I notice that vino-preferences tool which allows us to configure vino-server (e.g., sharing option, security, notification on/off) no longer exists. Also, I cannot find desktop sharing menu on Cinnamon desktop. How can I configure desktop sharing via vino-server on the latest Linux Mint 17 Cinnamon desktop?
|
||||
|
||||
The latest Linux Mint Cinnamon desktop comes with vino-server pre-installed for VNC desktop sharing, but it's reported that desktop sharing configuration menu is missing.
|
||||
|
||||
An alternative way to configure vino-server and enable desktop sharing is to use dconf-editor's graphical interface.
|
||||
|
||||
First install dconf-editor:
|
||||
|
||||
$ sudo apt-get install dconf-editor
|
||||
|
||||
Launch dconf-editor.
|
||||
|
||||
$ dconf-editor
|
||||
|
||||
Navigate to "org->gnome->desktop->remote-access" on the left panel of dconf-editor. Then you will see various desktop sharing options.
|
||||
|
||||
![](https://farm4.staticflickr.com/3916/14843965473_e68598b01b_z.jpg)
|
||||
|
||||
Most importantly, click on "enabled" to activate desktop remote access. Besides this, you can customize other options.
|
||||
|
||||
For example, you can enable VNC password authentication by changing the following fields:
|
||||
|
||||
- **authentication-methods**: set it to ['vnc']
|
||||
- **vnc-password**: change it to Base64-encoded string of a preferred password.
|
||||
|
||||
In this example, we choose VNC password as "password", and its Base64-encoded string is "cGFzc3dvcmQ=".
|
||||
|
||||
Optionally, you can enable other options:
|
||||
|
||||
- notify-on-connect: shows a desktop notification when vino-server receives a connection request.
|
||||
- prompt-enabled: a remote user is not allowed to access a desktop via VNC until the VNC request is approved by the desktop owner.
|
||||
|
||||
### Troubleshoot ###
|
||||
|
||||
1. I am getting the following error when attempting to start vino-server.
|
||||
|
||||
** (vino-server:4280): WARNING **: The desktop sharing service is not enabled, so it should not be run.
|
||||
|
||||
To enable desktop sharing service, use dconf-editor as described above. Alternatively, run the following command.
|
||||
|
||||
# gsettings set org.gnome.Vino enabled true
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
via: http://ask.xmodulo.com/enable-configure-desktop-sharing-linux-mint-cinnamon-desktop.html
|
||||
|
||||
译者:[译者ID](https://github.com/译者ID)
|
||||
校对:[校对者ID](https://github.com/校对者ID)
|
||||
|
||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出
|
@ -0,0 +1,54 @@
|
||||
Linux常见问题及答案——如何在Linux Mint Cinnamon桌面启用并配置桌面共享
|
||||
================================================================================
|
||||
|
||||
>**问题**:我试着在Linux Mint 17 Cinnamon桌面上通过Vino VNC服务器(vino-server)启用桌面共享。但是,我发现用来配置vino-server(如,共享选项,安全,通知开/关)的vino首选项工具已经不复存在了。同时,我也的Cinnamon桌面上也找不到共享菜单。我怎样才能在最新的Linux Mint 17 Cinnamon桌面上通过vino-server配置桌面共享?
|
||||
|
||||
最新的Linux Mint 17 Cinnamon桌面附带了预安装用于VNC桌面共享的vino-server,但是它报告说桌面共享菜单丢失了。
|
||||
|
||||
一个配置vino-server并启用桌面共享的可选方式,是使用dconf-editor的图形界面。
|
||||
|
||||
首先安装dconf-editor:
|
||||
|
||||
$ sudo apt-get install dconf-editor
|
||||
|
||||
启动dconf-editor。
|
||||
|
||||
$ dconf-editor
|
||||
|
||||
在dconf-editor的左边面板中导航到“org->gnome->desktop->remote-access”,然后你将会看到各种各样的桌面共享选项。
|
||||
|
||||
![](https://farm4.staticflickr.com/3916/14843965473_e68598b01b_z.jpg)
|
||||
|
||||
最重要的是,点击“enabled”来激活桌面远程访问。除此之外,你还可以自定义其它选项。
|
||||
For example, you can enable VNC password authentication by changing the following fields:
|
||||
例如,你可以通过修改以下字段来启用VNC密码验证:
|
||||
|
||||
- **authentication-methods**: 设置为 ['vnc']
|
||||
- **vnc-password**: 将你喜欢的密码修改为Base64编码的字符串。
|
||||
|
||||
在本例中,我们选择“password”为VNC密码,它的Base64编码字符串为“cGFzc3dvcmQ=”。
|
||||
|
||||
你也可以选择启用其它选项:
|
||||
|
||||
- notify-on-connect: 当vino-server接收到连接请求时显示桌面通知。
|
||||
- prompt-enabled: 远程用户不允许通过VNC工具访问桌面,除非VNC请求被该桌面的拥有者许可。
|
||||
|
||||
### 排障 ###
|
||||
|
||||
1. 当启动vino-server时,我碰到了下面的错误。
|
||||
|
||||
** (vino-server:4280): WARNING **: The desktop sharing service is not enabled, so it should not be run.
|
||||
|
||||
要启用桌面共享服务,请使用上面讲过的dconf-editor。
|
||||
也可以选择运行以下命令:
|
||||
|
||||
# gsettings set org.gnome.Vino enabled true
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
via: http://ask.xmodulo.com/enable-configure-desktop-sharing-linux-mint-cinnamon-desktop.html
|
||||
|
||||
译者:[GOLinux](https://github.com/GOLinux)
|
||||
校对:[校对者ID](https://github.com/校对者ID)
|
||||
|
||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出
|
Loading…
Reference in New Issue
Block a user