Answers:
基本上,创建启动脚本所需要做的就是以下操作:
在此处创建文件并使它可执行:
sudo nano /etc/init.d/start-sound && chmod +x $_
将其添加到默认运行级别:
sudo update-rc.d start-sound defaults
您的脚本真正需要做的就是调用aplay
音频文件。像这样:
# /etc/init.d/start-sound
echo "Playing startup sound"
aplay /path/to/file.mp3 2>&1 >/dev/null &
ALSA lib confmisc.c:768:(parse_card) cannot find card '0'
的时候我跑aplay /home/pi/beep-3.mp3
哪里beep-3.mp3
是蜂鸣声的MP3文件。
sudo modprobe snd_bcm2835
。如果那不起作用,请提出一个新问题:)
sudo nano /etc/init.d/start-sound && chmod +x $_
我得到错误chmod: changing permission of 'start-sound': Operation not permitted
。我的Raspbian OS版本是jessie。