2010-07-20 15:37:06 +02:00
|
|
|
JACK is a low-latency audio server written primarily for Linux. It can
|
2010-04-09 02:43:31 +02:00
|
|
|
connect a number of different applications to an audio device, as well as
|
|
|
|
allow them to share audio among themselves. Its clients can run in their
|
|
|
|
own processes (ie. as a normal application) or they can run within a JACK
|
|
|
|
server instance (i.e. as a "plugin").
|
2010-05-11 20:01:18 +02:00
|
|
|
|
2010-07-20 15:37:06 +02:00
|
|
|
jackd has to run with realtime privileges. One way to do this on Slackware
|
|
|
|
would be to use set_rlimits. Since 12.2 there's another way - if you have
|
|
|
|
a filesystem that supports posix capabilities (reiserfs does not), you can
|
2011-09-01 13:46:29 +02:00
|
|
|
grant jackd the rights to run in realtime mode, even when started as a
|
|
|
|
normal user, with the following command:
|
2010-05-12 17:37:05 +02:00
|
|
|
|
2010-05-13 00:21:21 +02:00
|
|
|
setcap cap_ipc_lock,cap_sys_nice=ep /usr/bin/jackd
|
2010-05-12 17:37:05 +02:00
|
|
|
|
2010-04-09 02:43:31 +02:00
|
|
|
If you use qjackctl to start jack, it will need the same capabilities set
|
2010-07-20 15:37:06 +02:00
|
|
|
to be able to start jack as non-root user. You can use the same command
|
|
|
|
with 'qjackctl' instead of 'jackd'
|
2010-04-09 02:43:31 +02:00
|
|
|
|
2011-03-14 20:11:51 +01:00
|
|
|
Optional dependencies are libffado and celt.
|