樹莓派設定VNC開機自啟動方法

2021-07-27 05:01:37 字數 1498 閱讀 4906

su pi

網上搜尋了好多關於樹莓派vnc開機自啟動發的方法,只有這個綜合總結的方法用起來沒問題。

sudo bash

或者sudo su

把以下內容寫入 /etc/init.d/tightvncserver

sudo nano /etc/init.d/tightvncserver

#!/bin/sh

### begin init info

# provides: tightvncserver

# required-start: $syslog $remote_fs $network

# required-stop: $syslog $remote_fs $network

# default-start: 2 3 4 5

# default-stop: 0 1 6

# short-description: starts vnc server on system start.

# description: starts tight vnc server. script written by james swineson.

### end init info

# /etc/init.d/tightvncserver

vncuser='pi'

case "$1" in

start)

su $vncuser -c '/usr/bin/tightvncserver :1'

echo "starting tightvnc server for $vncuser"

;;stop)

pkill xtightvnc

echo "tightvnc server stopped"

;;*)

echo "usage: /etc/init.d/tightvncserver "

exit 1

;;esac

exit 0

一般情況下,

vncuser='pi'
中『pi』為預設的使用者pi

crtl+o儲存;ctrl+x:退出;enter:確定

第二步:

修改檔案許可權

sudo chmod 755 /etc/init.d/tightvncserver

sudo update-rc.d tightvncserver defaults

重啟看效果吧。

取消開機啟動也很簡單,就一行**:

sudo update-rc.d -f tightvncserver remove
如果需要退出最高許可權,輸入:

su pi

樹莓派開機自啟動設定

樹莓派正常啟動並進入圖形介面後 1.進入 home pi config資料夾 cd home pi config 2.在.config資料夾中建立autostart資料夾 mkdir autostart 3.在autostart資料夾中建立my.desktop檔案 檔案內容如下 file start...

樹莓派設定開機自啟動程式

樹莓派設定開機自啟動程式的方法有多種,下面我們以新建.desktop檔案方式來實現樹莓派程式開機自啟動程式。指令碼檔案的執行效果是在pi目錄下新建乙個hello.c檔案,並且在hello.c檔案裡新增 hello word!字串。sudo nano testsatrt.sh 在teststart.s...

樹莓派設定開機自啟動程式 轉)

此方法是在載入了桌面後再啟動我們自定義的程式,因此需要安裝帶有桌面的版本 在 home pi config 目錄下新建乙個名為 autostart 的資料夾 pi raspberry mkdir config autostart 在 autostart 目錄下新建testboot.desktop 經...