如何使用upstart启动具有实时优先级(jackd)的进程?

时间:2014-08-20 18:56:25

标签: linux real-time upstart jack

我正在尝试使用upstart脚本启动具有实时优先级的jackd但到目前为止没有成功。我正在使用ubuntu服务器14.04。我的新贵版本是1.12.1。

如果我没有实时启动jackd,则upstart脚本按预期工作。 我在脚本中用来启动jackd的用户和组被允许使用实时优先级,但是当新贵运行它时似乎并不重要。每当我尝试通过暴发户运行它时,我都会在upstart日志中找到它:

jackdmp 1.9.10
Copyright 2001-2005 Paul Davis and others.
Copyright 2004-2013 Grame.
jackdmp comes with ABSOLUTELY NO WARRANTY
This is free software, and you are welcome to redistribute it
under certain conditions; see the file COPYING for details
Cannot create thread 1 Operation not permitted
Cannot create thread 1 Operation not permitted
Cannot create thread 1 Operation not permitted
JACK server starting in realtime mode with priority 70
Cannot lock down 82274202 byte memory area (Cannot allocate memory)
Cannot create thread 1 Operation not permitted
ERROR: messagebuffer not initialized: libffado 2.1.9999- built Oct 19 2013 16:01:07
ERROR: messagebuffer not initialized: 1408466326248438: Error (PosixThread.cpp)[ 161] Start: Cannot create realtime thread (1: Operation not permitted)
ERROR: messagebuffer not initialized: 1408466326248486: Error (PosixThread.cpp)[ 162] Start:  priority: 75
firewire ERR: FFADO: Error creating virtual device
Cannot attach audio driver
JackServer::Open failed with -1
Failed to open server

如果我只是在终端中的upstart脚本的exec行中运行相同的命令,它可以正常工作。

我的新贵脚本非常简单:

description "jackd"

start on stopped rc
stop on runlevel [06]


exec su radiola -c "jackd -R -P 70 -d firewire -r 44100 -n 3 -p 2048"

我也试过使用setuid和setguid节和start-stop-daemon,但结果与我刚才描述的结果相同。 我的文件/etc/security/limits.d/audio.conf如下:

@audio   -  rtprio     95
@audio   -  memlock    unlimited
#@audio   -  nice      -19

我正在尝试启动jackd的用户属于音频组。

有没有办法让upstart启动实时流程?如果没有,是否有其他解决方案可以解决这个问题?

谢谢。

1 个答案:

答案 0 :(得分:2)

/etc/security/limits.d/audio.conf文件仅在用户打开会话时读取(例如,加载pam_limits.so时)。

您可以使用limit指令直接从upstart脚本设置相同的限制:

limit memlock unlimited unlimited
limit rtprio 95 95

另外,为了切换到radiola,而不是使用su,你可以使用setuid / setgid指令:

setuid radiola
setgid audio