标签:
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
sudo raspi-config
chose: boot_behaviour Start desktop on boot?
2. Reboot or go to runlevel 5 (init 5)
3. Install the vino server.
sudo apt-get install vino
4. After the desktop appears, open a terminal window and execute the vine preferences script
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).
sudo nano /etc/xdg/autostart/vino.desktop
The content of mine:
[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)
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
标签:
原文地址:http://www.cnblogs.com/turtlegood/p/5838623.html