VNC远程登录树莓派的图形界面安装VNC需要使用命令行。如果需要远程操作安装VNC,就必须通过SSH登录到命令行界面。安装树莓派命令行:sudoapt-getinstalltightvncserver复制代码安装好之后请一定先使用此命令设置一个VNC密码:vncpasswd复制代码(先输入操作密码两次,然后会询问是否设置一个查看(view-only)密码,按自己喜欢,一般没必要。)开机自动启动设置开机启动,需要在/etc/init.d/中创建一个文件。例如tightvncserver:(注:启动脚本的名称,有和程序名一致的习惯)sudonano/etc/init.d/tightvncserver内容如下:(putty窗口中按右键=粘贴)#!/bin/sh###BEGININITINFO#Provides:tightvncserver#Required-Start:$local_fs#Required-Stop:$local_fs#Default-Start:2345#Default-Stop:016#Short-Description:Start/stoptightvncserver###ENDINITINFO#Moredetailssee:#tightvnchomepage###Customizethisentry#SettheUSERvariabletothenameoftheusertostarttightvncserverunderexportUSER='pi'###Endcustomizationrequiredevalcd~$USERcase$1instart)#启动命令行。此处自定义分辨率、控制台号码或其它参数。su$USER-c'/usr/bin/tightvncserver-depth16-geometry800x600:1'echoStartingTightVNCserverfor$USER;;stop)#终止命令行。此处控制台号码与启动一致。su$USER-c'/usr/bin/tightvncserver-kill:1'echoTightvncserverstopped;;*)echoUsage:/etc/init.d/tightvncserver{start|stop}exit1;;esacexit0然后给tightvncserver文件加执行权限,并更新开机启动列表。sudochmod755/etc/init.d/tightvncserver最重要的一步,开启:etc/init.d/tightvncserverstart