JACK을 시작하도록 DBUS 구성

JACK을 시작하도록 DBUS 구성

JACK(Jack Audio Connectivity Kit)을 설치했는데 jack_control start서비스를 시작할 수 없는 것 같습니다.

저는 Slackware64-current를 사용하고 있는데 최근에 /etc/dbus-1/system.conf더 엄격한 구성을 갖도록 업데이트했습니다.

<!-- ... -->
<policy context="default">
  <!-- All users can connect to system bus -->
  <allow user="*"/>

  <!-- Holes must be punched in service configuration files for
       name ownership and sending method calls -->
  <deny own="*"/>
  <deny send_type="method_call"/>

  <!-- Signals and reply messages (method returns, errors) are allowed
       by default -->
  <allow send_type="signal"/>
  <allow send_requested_reply="true" send_type="method_return"/>
  <allow send_requested_reply="true" send_type="error"/>

  <!-- All messages may be received by default -->
  <allow receive_type="method_call"/>
  <allow receive_type="method_return"/>
  <allow receive_type="error"/>
  <allow receive_type="signal"/>

  <!-- Allow anyone to talk to the message bus -->
  <allow send_destination="org.freedesktop.DBus"/>
  <!-- But disallow some specific bus services -->
  <deny send_destination="org.freedesktop.DBus"
        send_interface="org.freedesktop.DBus"
        send_member="UpdateActivationEnvironment"/>
</policy>

업데이트 후 jack_control start일반 사용자로 실행하면 다음 오류가 발생합니다.

--- start
DBus exception: org.jackaudio.Error.Generic: failed to activate
dbusapi jack client. error is -1

이전에는 이런 일을 하지 않았습니다. 새 구성 파일에는 서비스 구성 파일에 구멍을 뚫어야 한다고 나와 있습니다. DBUS가 JACK과 무슨 관련이 있는지조차 모르겠습니다.

추가 정보:

  • JACK2 SVN 개정 4120(2011-02-09)
  • DBUS 버전 1.4.1
  • DBUS-Python 버전 0.83.1

답변1

나는 이것을 얼마 전에 알아 냈습니다. JACK의 CAS-ARMv7 패치로 인해 DBUS 기능이 중단된 것으로 밝혀져 수정 사항을 사용할 수 있었습니다.이번 패치. 이러한 문제는 얼마 전에 JACK Subversion 저장소에서 해결되었으며 현재는 잘 작동하고 있습니다.

관련 정보