此方法是在載入了桌面後再啟動我們自定義的程式,因此需要安裝帶有桌面的版本,如果不是請跳過。
在喜歡的資料夾下建立.sh可執行檔案:
pi@raspberry:~ $ mkdir bootfile
pi@raspberry:~ $ nano bootfile/selfboot.sh
s**件內容格式如下:
#!/bin/sh
#餘下是執行命令列,若用到配置檔案使用絕對路徑,本行文字刪除
進入檔案目錄,更改s**件許可權:
pi@raspberry:~ $ cd bootfile/
pi@raspberry:~/bootfile $ chmod +x selfboot.sh
測試下s**件的效果:
pi@raspberry:~/bootfile $ ./selfboot.sh
回到使用者目錄:
pi@raspberry:~/bootfile $ cd ~
在使用者目錄下的.config新建乙個名為 autostart 的資料夾:
pi@raspberry:~ $ mkdir .config/autostart
在 autostart 目錄下新建selfboot.desktop (經測試名字任意,但字尾必須是.desktop):
pi@raspberry:~ $ nano .config/autostart/selfboot.desktop
檔案內容如下:
[desktop entry]
name=selfboot
nodisplay=true
exec=/home/pi/bootfile/selfboot.sh
sudo reboot 重啟即可 樹莓派開機自啟動設定
樹莓派正常啟動並進入圖形介面後 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...
樹莓派設定VNC開機自啟動方法
su pi 網上搜尋了好多關於樹莓派vnc開機自啟動發的方法,只有這個綜合總結的方法用起來沒問題。sudo bash 或者sudo su 把以下內容寫入 etc init.d tightvncserver sudo nano etc init.d tightvncserver bin sh begi...