zoukankan      html  css  js  c++  java
  • 树莓派 VNC 远程桌面 同一个桌面

    如何在ssh登录的情况下配置好vino

    1.传输文件

    2.ssh

    sudo dpkg -i ~/swap/deb/tight*
    sudo cp ~/swap/vino.desktop /etc/xdg/autostart/
    vncserver :1

    3.vnc

    vino-preferences

    4.ssh

    sudo apt-get autoremove tightvncserver

    5. use vino!

     

    附:

    https://www.raspberrypi.org/forums/viewtopic.php?f=63&t=38922#p321344

    Ok, using vino, step by step. Checked with 2013-02-09-wheezy-raspbian with the updates up-to-date.
    1. Enable "desktop on boot" if not done earlier

    CODE: SELECT ALL
    sudo raspi-config
    chose: boot_behaviour     Start desktop on boot?

    2. Reboot or go to runlevel 5 (init 5)
    3. Install the vino server.

    CODE: SELECT ALL
    sudo apt-get install vino

    4. After the desktop appears, open a terminal window and execute the vine preferences script

    CODE: SELECT ALL
    vino-preferences

    it will open a window similar to the one included in my initial post. Set the permissions and access mode as per your intentions. You only need to do it once (unless you want later to alter the settings). The preferences will be set for the user currently owning the desktop so for the default setting it will be for the pi user. 

    5. Create an autostart file (below using a terminal window and my favorite editor).

    CODE: SELECT ALL
    sudo nano /etc/xdg/autostart/vino.desktop

    The content of mine:

    CODE: SELECT ALL
    [Desktop Entry]
    Type=Application
    Exec=/usr/lib/vino/vino-server
    Hidden=false
    NoDisplay=true
    Name=vino
    Comment=shared access desktop server

    6. Log-out and log back in for the desktop session
    7. Check whether what you want is there (it takes some time for vine-server to kick-off so please wait a bit)

    CODE: SELECT ALL
    sudo netstat -nlp | grep vino
    tcp        0      0 0.0.0.0:5800            0.0.0.0:*               LISTEN      2757/vino-server
    tcp        0      0 0.0.0.0:5900            0.0.0.0:*               LISTEN      2757/vino-server
  • 相关阅读:
    margin负值的应用
    css书写顺序和常用命名推荐
    CSS Hack代码与浏览兼容总结
    高效css选择符
    高级css选择器
    css透明背景兼容方案
    height设置100%不起作用
    deepin安装Motrix,cocomusic
    linux关闭ipv6
    关于text-align无法居中的问题
  • 原文地址:https://www.cnblogs.com/turtlegood/p/5838623.html
Copyright © 2011-2022 走看看