gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-29 11:14:06 25 4
gpt4 key购买 nike

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

如果我在没有实时启动 jackd 的情况下启动脚本会按预期工作。我用来在脚本中启动 jackd 的用户和组被允许使用实时优先级,但是当 upstart 运行它时似乎并不重要。每当我尝试通过 upstart 运行它时,我都会在 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 行中的相同命令,它就可以正常工作。

我的 upstart 脚本非常简单:

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 启动一个实时进程?如果没有,是否有其他解决方案?

谢谢。

最佳答案

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

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

limit memlock unlimited unlimited
limit rtprio 95 95

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

setuid radiola
setgid audio

关于linux - 如何使用 upstart 启动具有实时优先级 (jackd) 的进程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25412381/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com