jack1 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

601 lines
21KB

  1. .TH "JACKD" "1" "@VERSION@" "April 2006" ""
  2. .SH "NAME"
  3. jackd \- JACK Audio Connection Kit sound server
  4. .SH "SYNOPSIS"
  5. \fBjackd\fR [\fIoptions\fR] \fB\-d\fI backend \fR
  6. [\fIbackend\-parameters\fR]
  7. .br
  8. \fBjackd \-\-help\fR
  9. .SH "DESCRIPTION"
  10. \fBjackd\fR is the JACK audio server daemon, a low\-latency audio
  11. server. Originally written for the
  12. GNU/Linux operating system, it also supports Mac OS X and various Unix
  13. platforms. JACK can connect a number of different client applications
  14. to an audio device and also to each other. Most clients are external,
  15. running in their own processes as normal applications. JACK also
  16. supports internal clients, which run within the \fBjackd\fR process
  17. using a loadable "plugin" interface.
  18. JACK differs from other audio servers in being designed from the
  19. ground up for professional audio work. It focuses on two key areas:
  20. synchronous execution of all clients, and low latency operation.
  21. For the latest JACK information, please consult the web site,
  22. <\fBhttp://www.jackaudio.org\fR>.
  23. .SH "OPTIONS"
  24. .TP
  25. \fB\-d, \-\-driver \fIbackend\fR [\fIbackend\-parameters\fR ]
  26. .br
  27. Select the audio interface backend. The current list of supported
  28. backends is: \fBalsa\fR, \fBcoreaudio\fR, \fBdummy\fR, \fBfreebob\fR,
  29. \fBoss\fR \fBsun\fR and \fBportaudio\fR. They are not all available
  30. on all platforms. All \fIbackend\-parameters\fR are optional.
  31. .TP
  32. \fB\-h, \-\-help\fR
  33. .br
  34. Print a brief usage message describing the main \fBjackd\fR options.
  35. These do not include \fIbackend\-parameters\fR, which are listed using
  36. the \fB\-\-help\fR option for each specific backend. Examples below
  37. show how to list them.
  38. .TP
  39. \fB\-m, \-\-no\-mlock\fR
  40. Do not attempt to lock memory, even if \fB\-\-realtime\fR.
  41. .TP
  42. \fB\-I, \-\-internal-client \fIclient-spec\fR
  43. .br
  44. Load \fIclient-name\fR as an internal client. May be used multiple
  45. times. The form of \fIclient-spec\fR can be any of the following:
  46. .br
  47. client-path
  48. .br
  49. client-name/client-path
  50. .br
  51. client-name/client-path/init-string
  52. .br
  53. client-path/init-string
  54. .br
  55. The first form will cause jackd to attempt to load the client from a
  56. shared object named "client-path" with appropriate suffixes
  57. appended. If "client-path" is absolute, jackd will use that (adding
  58. a platform appropriate suffix for a shared object). If it is not
  59. absolute, jackd will look for "client-path" (with an appropriate
  60. suffix) in the same location that drivers and other JACK add-ons are
  61. located.
  62. .br
  63. The second form provides "client-name" as the desired name for the
  64. client once loaded, in addition to the "client-path".
  65. .br
  66. The third form provides an "init-string" in addition to a client name
  67. and path, which will be passed to the client's initialization
  68. function.
  69. .br
  70. The final form does not specify the client name, but does include
  71. the path to the client's shared object file and an initializations
  72. string.
  73. .br
  74. When invoking JACK from the shell, remember to quote the argument to
  75. -I if it includes spaces.
  76. .TP
  77. \fB\-M, \-\-midi\-bufsize\fR [ \fIevent-count\fR ]
  78. Specify the size of the buffer used for MIDI ports. Units are "MIDI
  79. events per process() cycle", where an event occupies up to 4 bytes (as most common MIDI events
  80. do). The default buffer size is 2048 bytes, which is about 500 MIDI events.
  81. Typical values for \fIevent-count\fR will range from 10 to about
  82. 1000. Be aware that using very high values along with a large number of
  83. ports may cause JACK to fail to start because of the amount of memory
  84. that would be required.
  85. .TP
  86. \fB\-n, \-\-name\fR \fIserver\-name\fR
  87. Name this \fBjackd\fR instance \fIserver\-name\fR. If unspecified,
  88. this name comes from the \fB$JACK_DEFAULT_SERVER\fR environment
  89. variable. It will be "default" if that is not defined.
  90. .TP
  91. \fB\-p, \-\-port\-max \fI n\fR
  92. Set the maximum number of ports the JACK server can manage.
  93. The default value is 256.
  94. .TP
  95. \fB\-\-replace-registry\fR
  96. .br
  97. Remove the shared memory registry used by all JACK server instances
  98. before startup. This should rarely be used, and is intended only
  99. for occasions when the structure of this registry changes in ways
  100. that are incompatible across JACK versions (which is rare).
  101. .TP
  102. \fB\-R, \-\-realtime\fR
  103. .br
  104. Use realtime scheduling (default = true). This is needed for reliable low\-latency
  105. performance. On many systems, it requires \fBjackd\fR to run with
  106. special scheduler and memory allocation privileges, which may be
  107. obtained in several ways.
  108. .TP
  109. \fB\-r, \-\-no-realtime\fR
  110. .br
  111. Do not use realtime scheduling.
  112. .TP
  113. \fB\-P, \-\-realtime\-priority \fIint\fR
  114. When running \fB\-\-realtime\fR, set the scheduler priority to
  115. \fIint\fR.
  116. .TP
  117. \fB\-\-silent\fR
  118. Silence any output during operation.
  119. .TP
  120. \fB\-S, \-\-sync\fR
  121. .br
  122. This option does nothing in this implementation of JACK, but exists
  123. for command-line compatibility with JACK2 and possibly other versions.
  124. .TP
  125. \fB\-T, \-\-temporary\fR
  126. Exit once all clients have closed their connections.
  127. .TP
  128. \fB\-t, \-\-timeout \fIint\fR
  129. .br
  130. Set client timeout limit in milliseconds. The default is 500 msec.
  131. .TP
  132. \fB\-Z, \-\-nozombies\fR
  133. .br
  134. Prevent JACK from ever kicking out clients because they were too slow.
  135. This cancels the effect any specified timeout value.
  136. .TP
  137. \fB\-C, \-\-timeout-thres \fItime\fR
  138. .br
  139. Stop processing clients if JACK cannot complete the process cycle in time (typically caused by CPU overloading or misbehaved clients). The optional \fItime\fR
  140. argument specifies the number of miliseconds, during which consectutive process cycles must fail before JACK gives up (if the argument is not given, it defaults to 250). Processing will resume on the next change to the port
  141. graph (i.e. a port is added, removed, connected or disconnected)
  142. .TP
  143. \fB\-u, \-\-unlock\fR
  144. .br
  145. Unlock libraries GTK+, QT, FLTK, Wine.
  146. .TP
  147. \fB\-v, \-\-verbose\fR
  148. Give verbose output.
  149. .TP
  150. \fB\-c, \-\-clocksource\fR (\fI c(ycle)\fR | \fI h(pet) \fR | \fI s(ystem) \fR)
  151. Select a specific wall clock (Cycle Counter, HPET timer, System timer).
  152. .TP
  153. \fB\-V, \-\-version\fR
  154. Print the current JACK version number and exit.
  155. .SS ALSA BACKEND OPTIONS
  156. .TP
  157. \fB\-C, \-\-capture\fR [ \fIname\fR ]
  158. Provide only capture ports, unless combined with \-D or \-P. Parameterally set
  159. capture device name.
  160. .TP
  161. \fB\-d, \-\-device \fIname\fR
  162. .br
  163. The ALSA pcm device \fIname\fR to use. If none is specified, JACK will
  164. use "hw:0", the first hardware card defined in \fB/etc/modules.conf\fR.
  165. .TP
  166. \fB\-z, \-\-dither [rectangular,triangular,shaped,none]
  167. Set dithering mode. If \fBnone\fR or unspecified, dithering is off.
  168. Only the first letter of the mode name is required.
  169. .TP
  170. \fB\-D, \-\-duplex\fR
  171. Provide both capture and playback ports. Defaults to on unless only one
  172. of \-P or \-C is specified.
  173. .TP
  174. \fB\-h, \-\-help\fR Print a brief usage message describing only the
  175. \fBalsa\fR backend parameters.
  176. .TP
  177. \fB\-M, \-\-hwmeter\fR
  178. .br
  179. Enable hardware metering for devices that support it. Otherwise, use
  180. software metering.
  181. .TP
  182. \fB\-H, \-\-hwmon\fR
  183. .br
  184. Enable hardware monitoring of capture ports. This is a method for
  185. obtaining "zero latency" monitoring of audio input. It requires
  186. support in hardware and from the underlying ALSA device driver.
  187. When enabled, requests to monitor capture ports will be satisfied by
  188. creating a direct signal path between audio interface input and output
  189. connectors, with no processing by the host computer at all. This
  190. offers the lowest possible latency for the monitored signal.
  191. Presently (March 2003), only the RME Hammerfall series and cards based
  192. on the ICE1712 chipset (M\-Audio Delta series, Terratec, and others)
  193. support \fB\-\-hwmon\fR. In the future, some consumer cards may also
  194. be supported by modifying their mixer settings.
  195. Without \fB\-\-hwmon\fR, port monitoring requires JACK to read audio
  196. into system memory, then copy it back out to the hardware again,
  197. imposing the basic JACK system latency determined by the
  198. \fB\-\-period\fR and \fB\-\-nperiods\fR parameters.
  199. .TP
  200. \fB\-i, \-\-inchannels \fIint\fR
  201. .br
  202. Number of capture channels. Default is maximum supported by hardware.
  203. .TP
  204. \fB\-n, \-\-nperiods \fIint\fR
  205. .br
  206. Specify the number of periods of playback latency. In seconds, this
  207. corresponds to \fB\-\-nperiods\fR times \fB\-\-period\fR divided by
  208. \fB\-\-rate\fR. The default is 2, the minimum allowable. For most
  209. devices, there is no need for any other value with the
  210. \fB\-\-realtime\fR option. Without realtime privileges or with boards
  211. providing unreliable interrupts (like ymfpci), a larger value may
  212. yield fewer xruns. This can also help if the system is not tuned for
  213. reliable realtime scheduling.
  214. For most ALSA devices, the hardware buffer has exactly
  215. \fB\-\-period\fR times \fB\-\-nperiods\fR frames. Some devices demand
  216. a larger buffer. If so, JACK will use the smallest possible buffer
  217. containing at least \fB\-\-nperiods\fR, but the playback latency does
  218. not increase.
  219. For USB audio devices it is recommended to use \fB\-n 3\fR. Firewire
  220. devices supported by FFADO (formerly Freebob) are configured with
  221. \fB\-n 3\fR by default.
  222. .TP
  223. \fB\-o, \-\-outchannels \fIint\fR
  224. .br
  225. Number of playback channels. Default is maximum supported by hardware.
  226. .TP
  227. \fB\-P, \-\-playback\fR [ \fIname\fR ]
  228. Provide only playback ports, unless combined with \-D or \-C. Optionally set
  229. playback device name.
  230. .TP
  231. \fB\-p, \-\-period \fIint\fR
  232. .br
  233. Specify the number of frames between JACK \fBprocess()\fR calls. This
  234. value must be a power of 2, and the default is 1024. If you need low
  235. latency, set \fB\-p\fR as low as you can go without seeing xruns. A larger
  236. period size yields higher latency, but makes xruns less likely. The JACK
  237. capture latency in seconds is \fB\-\-period\fR divided by \fB\-\-rate\fR.
  238. .TP
  239. \fB\-r, \-\-rate \fIint\fR
  240. Specify the sample rate. The default is 48000.
  241. .TP
  242. \fB\-S, \-\-shorts
  243. .br
  244. Try to configure card for 16\-bit samples first, only trying 32\-bits if
  245. unsuccessful. Default is to prefer 32\-bit samples.
  246. .TP
  247. \fB\-s, \-\-softmode\fR
  248. .br
  249. Ignore xruns reported by the ALSA driver. This makes JACK less likely
  250. to disconnect unresponsive ports when running without \fB\-\-realtime\fR.
  251. .TP
  252. \fB\-X, \-\-midi \fR[\fIseq\fR|\fIraw\fR]
  253. .br
  254. Specify which ALSA MIDI system to provide access to. Using \fBraw\fR
  255. will provide a set of JACK MIDI ports that correspond to each raw ALSA
  256. device on the machine. Using \fBseq\fR will provide a set of JACK MIDI
  257. ports that correspond to each ALSA "sequencer" client (which includes
  258. each hardware MIDI port on the machine). \fBraw\fR provides slightly
  259. better performance but does not permit JACK MIDI communication with
  260. software written to use the ALSA "sequencer" API.
  261. .SS COREAUDIO BACKEND PARAMETERS
  262. .TP
  263. \fB\-c \-\-channel\fR
  264. Maximum number of channels (default: 2)
  265. .TP
  266. \fB\-i \-\-channelin\fR
  267. Maximum number of input channels (default: 2)
  268. .TP
  269. \fB\-o \-\-channelout\fR
  270. Maximum number of output channels (default: 2)
  271. .TP
  272. \fB\-C \-\-capture\fR
  273. Whether or not to capture (default: true)
  274. .TP
  275. \fB\-P \-\-playback\fR
  276. Whether or not to playback (default: true)
  277. .TP
  278. \fB\-D \-\-duplex\fR
  279. Capture and playback (default: true)
  280. .TP
  281. \fB\-r \-\-rate\fR
  282. Sample rate (default: 44100)
  283. .TP
  284. \fB\-p \-\-period\fR
  285. Frames per period (default: 128). Must be a power of 2.
  286. .TP
  287. \fB\-n \-\-name\fR
  288. Driver name (default: none)
  289. .TP
  290. \fB\-I \-\-id\fR
  291. Audio Device ID (default: 0)
  292. .SS DUMMY BACKEND PARAMETERS
  293. .TP
  294. \fB\-C, \-\-capture \fIint\fR
  295. Specify number of capture ports. The default value is 2.
  296. .TP
  297. \fB\-P, \-\-playback \fIint\fR
  298. Specify number of playback ports. The default value is 2.
  299. .TP
  300. \fB\-r, \-\-rate \fIint\fR
  301. Specify sample rate. The default value is 48000.
  302. .TP
  303. \fB\-p, \-\-period \fIint\fR
  304. Specify the number of frames between JACK \fBprocess()\fR calls. This
  305. value must be a power of 2, and the default is 1024. If you need low
  306. latency, set \fB\-p\fR as low as you can go without seeing xruns. A larger
  307. period size yields higher latency, but makes xruns less likely. The JACK
  308. capture latency in seconds is \fB\-\-period\fR divided by \fB\-\-rate\fR.
  309. .TP
  310. \fB\-w, \-\-wait \fIint\fR
  311. Specify number of usecs to wait between engine processes.
  312. The default value is 21333.
  313. .SS NET BACKEND PARAMETERS
  314. .TP
  315. \fB\-i, \-\-audio\-ins \fIint\fR
  316. Number of capture channels (default: 2)
  317. .TP
  318. \fB\-o, \-\-audio\-outs \fIint\fR
  319. Number of playback channels (default: 2)
  320. .TP
  321. \fB\-I, \-\-midi\-ins \fIint\fR
  322. Number of midi capture channels (default: 1)
  323. .TP
  324. \fB\-O, \-\-midi\-outs \fIint\fR
  325. Number of midi playback channels (default: 1)
  326. .TP
  327. \fB\-r, \-\-rate \fIint\fR
  328. Sample rate (default: 48000)
  329. .TP
  330. \fB\-p, \-\-period \fIint\fR
  331. Frames per period (default: 1024)
  332. .TP
  333. \fB\-n, \-\-num\-periods \fIint\fR
  334. Network latency setting in no. of periods (default: 5)
  335. .TP
  336. \fB\-l, \-\-listen\-port \fIint\fR
  337. The socket port we are listening on for sync packets (default: 3000)
  338. .TP
  339. \fB\-f, \-\-factor \fIint\fR
  340. Factor for sample rate reduction (default: 1)
  341. .TP
  342. \fB\-u, \-\-upstream\-factor \fIint\fR
  343. Factor for sample rate reduction on the upstream (default: 0)
  344. .TP
  345. \fB\-c, \-\-celt \fIint\fR
  346. sets celt encoding and number of kbits per channel (default: 0)
  347. .TP
  348. \fB\-b, \-\-bit\-depth \fIint\fR
  349. Sample bit\-depth (0 for float, 8 for 8bit and 16 for 16bit) (default: 0)
  350. .TP
  351. \fB\-t, \-\-transport\-sync \fIint\fR
  352. Whether to slave the transport to the master transport (default: true)
  353. .TP
  354. \fB\-a, \-\-autoconf \fIint\fR
  355. Whether to use Autoconfig, or just start. (default: true)
  356. .TP
  357. \fB\-R, \-\-redundancy \fIint\fR
  358. Send packets N times (default: 1)
  359. .TP
  360. \fB\-e, \-\-native\-endian \fIint\fR
  361. Dont convert samples to network byte order. (default: false)
  362. .TP
  363. \fB\-J, \-\-jitterval \fIint\fR
  364. attempted jitterbuffer microseconds on master (default: 0)
  365. .TP
  366. \fB\-D, \-\-always\-deadline \fIint\fR
  367. always use deadline (default: false)
  368. .SS OSS BACKEND PARAMETERS
  369. .TP
  370. \fB\-r, \-\-rate \fIint\fR
  371. Specify the sample rate. The default is 48000.
  372. .TP
  373. \fB\-p, \-\-period \fIint\fR
  374. Specify the number of frames between JACK \fBprocess()\fR calls. This
  375. value must be a power of 2, and the default is 1024. If you need low
  376. latency, set \fB\-p\fR as low as you can go without seeing xruns. A larger
  377. period size yields higher latency, but makes xruns less likely. The JACK
  378. capture latency in seconds is \fB\-\-period\fR divided by \fB\-\-rate\fR.
  379. .TP
  380. \fB\-n, \-\-nperiods \fIint\fR
  381. Specify the number of periods in the hardware buffer. The default is
  382. 2. The period size (\fB\-p\fR) times \fB\-\-nperiods\fR times four is
  383. the JACK buffer size in bytes. The JACK output latency in seconds is
  384. \fB\-\-nperiods\fR times \fB\-\-period\fR divided by \fB\-\-rate\fR.
  385. .TP
  386. \fB\-w, \-\-wordlength \fIint\fR
  387. Specify the sample size in bits. The default is 16.
  388. .TP
  389. \fB\-i, \-\-inchannels \fIint\fR
  390. Specify how many channels to capture (default: 2)
  391. .TP
  392. \fB\-o, \-\-outchannels \fIint\fR
  393. Specify number of playback channels (default: 2)
  394. .TP
  395. \fB\-C, \-\-capture \fIdevice_file\fR
  396. Specify input device for capture (default: /dev/dsp)
  397. .TP
  398. \fB\-P, \-\-playback \fIdevice_file\fR
  399. Specify output device for playback (default: /dev/dsp)
  400. .TP
  401. \fB\-b, \-\-ignorehwbuf \fIboolean\fR
  402. Specify, whether to ignore hardware period size (default: false)
  403. .SS SUN BACKEND PARAMETERS
  404. .TP
  405. \fB\-r, \-\-rate \fIint\fR
  406. Specify the sample rate. The default is 48000.
  407. .TP
  408. \fB\-p, \-\-period \fIint\fR
  409. Specify the number of frames between JACK \fBprocess()\fR calls. This
  410. value must be a power of 2, and the default is 1024. If you need low
  411. latency, set \fB\-p\fR as low as you can go without seeing xruns. A larger
  412. period size yields higher latency, but makes xruns less likely. The JACK
  413. capture latency in seconds is \fB\-\-period\fR divided by \fB\-\-rate\fR.
  414. .TP
  415. \fB\-n, \-\-nperiods \fIint\fR
  416. Specify the number of periods in the hardware buffer. The default is
  417. 2. The period size (\fB\-p\fR) times \fB\-\-nperiods\fR times four
  418. (assuming 2 channels 16-bit samples) is the JACK buffer size in bytes.
  419. The JACK output latency in seconds is \fB\-\-nperiods\fR times
  420. \fB\-\-period\fR divided by \fB\-\-rate\fR.
  421. .TP
  422. \fB\-w, \-\-wordlength \fIint\fR
  423. Specify the sample size in bits. The default is 16.
  424. .TP
  425. \fB\-i, \-\-inchannels \fIint\fR
  426. Specify how many channels to capture (default: 2)
  427. .TP
  428. \fB\-o, \-\-outchannels \fIint\fR
  429. Specify number of playback channels (default: 2)
  430. .TP
  431. \fB\-C, \-\-capture \fIdevice_file\fR
  432. Specify input device for capture (default: /dev/audio)
  433. .TP
  434. \fB\-P, \-\-playback \fIdevice_file\fR
  435. Specify output device for playback (default: /dev/audio)
  436. .TP
  437. \fB\-b, \-\-ignorehwbuf \fIboolean\fR
  438. Specify, whether to ignore hardware period size (default: false)
  439. .SS PORTAUDIO BACKEND PARAMETERS
  440. .TP
  441. \fB\-c \-\-channel\fR
  442. Maximum number of channels (default: all available hardware channels)
  443. .TP
  444. \fB\-i \-\-channelin\fR
  445. Maximum number of input channels (default: all available hardware channels)
  446. .TP
  447. \fB\-o \-\-channelout\fR
  448. Maximum number of output channels (default: all available hardware channels)
  449. .TP
  450. \fB\-C \-\-capture\fR
  451. Whether or not to capture (default: true)
  452. .TP
  453. \fB\-P \-\-playback\fR
  454. Whether or not to playback (default: true)
  455. .TP
  456. \fB\-D \-\-duplex\fR
  457. Capture and playback (default: true)
  458. .TP
  459. \fB\-r \-\-rate\fR
  460. Sample rate (default: 48000)
  461. .TP
  462. \fB\-p \-\-period\fR
  463. Frames per period (default: 1024). Must be a power of 2.
  464. .TP
  465. \fB\-n \-\-name\fR
  466. Driver name (default: none)
  467. .TP
  468. \fB\-z \-\-dither\fR
  469. Dithering mode (default: none)
  470. .SH "EXAMPLES"
  471. .PP
  472. Print usage message for the parameters specific to each backend.
  473. .IP
  474. \fBjackd \-d alsa \-\-help\fR
  475. .br
  476. \fBjackd \-d coreaudio \-\-help\fR
  477. .br
  478. \fBjackd \-d net \-\-help\fR
  479. .br
  480. \fBjackd \-d dummy \-\-help\fR
  481. .br
  482. \fBjackd \-d firewire \-\-help\fR
  483. .br
  484. \fBjackd \-d freebob \-\-help\fR
  485. .br
  486. \fBjackd \-d oss \-\-help\fR
  487. .br
  488. \fBjackd \-d sun \-\-help\fR
  489. .br
  490. \fBjackd \-d portaudio \-\-help\fR
  491. .PP
  492. Run the JACK daemon with realtime priority using the first ALSA
  493. hardware card defined in \fB/etc/modules.conf\fR.
  494. .IP
  495. \fBjackstart \-\-realtime \-\-driver=alsa\fR
  496. .PP
  497. Run the JACK daemon with low latency giving verbose output, which can
  498. be helpful for trouble\-shooting system latency problems. A
  499. reasonably well\-tuned system with a good sound card and a
  500. low\-latency kernel can handle these values reliably. Some can do
  501. better. If you get xrun messages, try a larger buffer. Tuning a
  502. system for low latency can be challenging. The JACK FAQ,
  503. .I http://jackit.sourceforge.net/docs/faq.php\fR
  504. has some useful suggestions.
  505. .IP
  506. \fBjackstart \-Rv \-d alsa \-p 128 \-n 2 \-r 44100\fR
  507. .PP
  508. Run \fBjackd\fR with realtime priority using the "sblive" ALSA device
  509. defined in ~/.asoundrc. Apply shaped dithering to playback audio.
  510. .IP
  511. \fBjackd \-R \-d alsa \-d sblive \-\-dither=shaped\fR
  512. .PP
  513. Run \fBjackd\fR with no special privileges using the second ALSA
  514. hardware card defined in \fB/etc/modules.conf\fR. Any xruns reported
  515. by the ALSA backend will be ignored. The larger buffer helps reduce
  516. data loss. Rectangular dithering will be used for playback.
  517. .IP
  518. \fBjackd \-d alsa \-d hw:1 \-p2048 \-n3 \-\-softmode \-zr\fR
  519. .PP
  520. Run \fBjackd\fR in full\-duplex mode using the ALSA hw:0,0 device for
  521. playback and the hw:0,2 device for capture.
  522. .IP
  523. \fBjackd \-d alsa \-P hw:0,0 \-C hw:0,2\fR
  524. .PP
  525. Run \fBjackd\fR in playback\-only mode using the ALSA hw:0,0 device.
  526. .IP
  527. \fBjackd \-d alsa \-P hw:0,0\fR
  528. .SH "ENVIRONMENT"
  529. .br
  530. JACK is evolving a mechanism for automatically starting the server
  531. when needed. Any client started without a running JACK server will
  532. attempt to start one itself using the command line found in the first
  533. line of \fB$HOME/.jackdrc\fR if it exists, or \fB/etc/jackdrc\fR if it
  534. does not. If neither file exists, a built\-in default command will be
  535. used, including the \fB\-T\fR flag, which causes the server to shut
  536. down when all clients have exited.
  537. As a transition, this only happens when \fB$JACK_START_SERVER\fR is
  538. defined in the environment of the calling process. In the future this
  539. will become normal behavior. In either case, defining
  540. \fB$JACK_NO_START_SERVER\fR disables this feature.
  541. To change where JACK looks for the backend drivers, set
  542. \fB$JACK_DRIVER_DIR\fR.
  543. \fB$JACK_DEFAULT_SERVER\fR specifies the default server name. If not
  544. defined, the string "default" is used. If set in their respective
  545. environments, this affects \fBjackd\fR unless its \fB\-\-name\fR
  546. parameter is set, and all JACK clients unless they pass an explicit
  547. name to \fBjack_client_open()\fR.
  548. .SH "SEE ALSO:"
  549. .PP
  550. .I http://www.jackaudio.org
  551. .br
  552. The official JACK website with news, docs and a list of JACK clients.
  553. .PP
  554. .I http://jackaudio.org/email
  555. .br
  556. The JACK developers' mailing list. Subscribe, to take part in
  557. development of JACK or JACK clients. User questions are also welcome,
  558. there is no user-specific mailing list.
  559. .PP
  560. .I http://www.jackosx.com/
  561. .br
  562. Tools specific to the Mac OS X version of JACK.
  563. .PP
  564. .I http://www.alsa\-project.org
  565. .br
  566. The Advanced Linux Sound Architecture.
  567. .SH "BUGS"
  568. Please report bugs to
  569. .br
  570. .I http://trac.jackaudio.org/
  571. .SH "AUTHORS"
  572. Architect and original implementor: Paul Davis
  573. .PP
  574. Original design Group: Paul Davis, David Olofson, Kai Vehmanen, Benno Sennoner,
  575. Richard Guenther, and other members of the Linux Audio Developers group.
  576. .PP
  577. Programming: Paul Davis, Jack O'Quin, Taybin Rutkin, Stephane Letz, Fernando
  578. Pablo Lopez-Lezcano, Steve Harris, Jeremy Hall, Andy Wingo, Kai
  579. Vehmanen, Melanie Thielker, Jussi Laako, Tilman Linneweh, Johnny
  580. Petrantoni, Torben Hohn.
  581. .PP
  582. Manpage written by Stefan Schwandter, Jack O'Quin and Alexandre
  583. Prokoudine.