Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
wiki:raspberrypi [2017/01/30 03:06] – [On-board audio] flatmaxwiki:raspberrypi [2017/09/29 19:31] – added descrepency I found with new raspbian colinsullivan
Line 30: Line 30:
 ===== Disabling unneeded services ===== ===== Disabling unneeded services =====
  
-By default the RPi runs quite some services that are not really needed or even get in the way when setting up a real-time, low-latency environment. One way to disable such services from running and chewing up precious CPU cycles is to write a little script, an example can be found here: https://github.com/AutoStatic/scripts/raw/rpi/rpi/jackstart+By default the RPi runs quite some services that are not really needed or even get in the way when setting up a real-time, low-latency environment. One way to disable such services from running and chewing up precious CPU cycles is to write a little script, an example can be found here: https://github.com/autostatic/scripts/blob/rpi/jackstart
  
 Breaking down the script: Breaking down the script:
Line 221: Line 221:
   export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/dbus/system_bus_socket   export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/dbus/system_bus_socket
  
-And then add the following lines to ''/etc/dbus-1/system.conf'':+And then add the following lines to ''/etc/dbus-1/system.conf'' before the closing ''</busconfig>'' tag:
     <policy user="pi">     <policy user="pi">
 +          <allow own="org.freedesktop.ReserveDevice1.Audio0"/>
           <allow own="org.freedesktop.ReserveDevice1.Audio1"/>           <allow own="org.freedesktop.ReserveDevice1.Audio1"/>
     </policy>     </policy>
 +    
 +WARNING: In Raspbian Stretch I had to do the following instead of modifying ''system.conf'':
 +
 +Create a new file ''/etc/dbus-1/system-local.conf'' with the following contents:
 +
 +    <?xml version="1.0"?> <!--*-nxml-*-->
 +    <!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
 +            "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
 +    
 +    <busconfig>
 +    
 +            <policy context="default">
 +                    <allow own="org.freedesktop.ReserveDevice1.Audio0"/>
 +                    <allow own="org.freedesktop.ReserveDevice1.Audio1"/>
 +            </policy>
 +    
 +    </busconfig>
 +
 +
  
 === Using an external USB audio interface === === Using an external USB audio interface ===
Line 244: Line 264:
  
 [[http://wiki.linuxaudio.org/wiki/system_configuration#build_your_own_real-time_kernel|Building a real-time kernel]] [[http://wiki.linuxaudio.org/wiki/system_configuration#build_your_own_real-time_kernel|Building a real-time kernel]]
 +
 +[[https://github.com/dddomin3/DSPi/|Instructions for kernel compilation modernized for Pi 3]]
  
 {{tag>hardware_linux usb_audio_midi raspberry_pi howtos_and_faqs}} {{tag>hardware_linux usb_audio_midi raspberry_pi howtos_and_faqs}}
wiki/raspberrypi.txt · Last modified: 2020/03/15 17:50 by autostatic