使用Yocto,为Raspberry PI创建一个新图像。对于蓝牙音频传输,pulseaudio与其模块一起正确安装。 当PI从根提示开始时启动Pulseaudio:
无法以root身份运行
答案 0 :(得分:0)
解决方案为所有用户运行 PulseAudio
将波纹管添加到/etc/systemd/system/pulseaudio.service文件并保存
[Unit]
Description=PulseAudio system server
[Service]
Type=notify
ExecStart=pulseaudio --daemonize=no --system --realtime --log-target=journal
[Install]
WantedBy=multi-user.target
启用服务
sudo systemctl --system enable pulseaudio.service
sudo systemctl --system start pulseaudio.service
sudo systemctl --system status pulseaudio.service
Edit Client conf /etc/pulse/client.conf 并替换下面的屁股
default-server = /var/run/pulse/native
autospawn = no
将根添加到脉冲组
sudo adduser root pulse-access
最后重启系统