]> Shamusworld >> Repos - ardour-manual-diverged/blob - _manual/03_setting-up-your-system/08_platform-specifics/01_ubuntu-linux.html
more ubuntu edits
[ardour-manual-diverged] / _manual / 03_setting-up-your-system / 08_platform-specifics / 01_ubuntu-linux.html
1 ---
2 layout: default
3 title: Ubuntu Linux
4 ---                        
5
6 <h2>Ubuntu Linux</h2>
7
8 <p>
9   Ubuntu Linux is the most popular variety of Linux in use on desktop
10   and laptop systems. It has the backing of a for-profit corporation
11   (Canonical Inc.) behind it, a defined philosophy and a huge and
12   worldwide user base. As a result, it is a common platform for people
13   who want to use Ardour and other tools for music creation and
14   pro-audio work. 
15 </p>
16 <p>
17   Unfortunately, Ubuntu has repeatedly caused major headaches for
18   people who want to use Ardour. These problems have arisen from a
19   combination of two basic issues:
20
21   <ul>
22     <li>Badly built packages of Ardour</li>
23     <li>Poor system configuration related to JACK, which Ardour (and
24     most other pro-audio tools on Linux) uses for audio and MIDI I/O.
25     </li>
26   </ul>
27 </p>
28
29 <h3>Problems with Ardour Packages</h3>
30
31 <dl class="faq">
32 <dt>What is the problem?</dt>
33 <dd>
34 <p>
35   It is not possible to know whether the current package of Ardour
36   released by Ubuntu has been correctly built or not. Ubuntu has a
37   history of making packaging errors that lead to crashes, missing
38   functionality and odd behaviour that is not present in the
39   ready-to-run version of the program that you can get from ardour.org
40   (or in the packages released by other distributions)
41 </p>
42 <dt>Symptoms</dt>
43 <dd>
44 <p>
45   If you plan to use Ardour on Ubuntu, you are <strong>strongly
46   recommended</strong> to download the ready-to-run version from
47   ardour.org. Ardour's lead developer (and many of the most active
48   members of our user community) will not provide support for, and
49   will not investigate bugs reported for, Ubuntu's own packages of
50   Ardour.
51 </p>
52 </dd>
53 <dt>How to Fix</dt>
54 <dd>
55 <p>
56   If have already installed the Ubuntu package of Ardour and find that
57   although the program starts up and basically runs, but you are
58   running into more subtle problems (for example, with plugin GUIs or
59   with export, or with the use of certain specific plugins), then you
60   are <strong>strongly recommended</strong> to download the
61   ready-to-run version from ardour.org. 
62 </p>
63 </dd>
64 </dl>
65
66 <h3>Problems with the interaction between PulseAudio and JACK</h3>
67
68 <dl>
69 <dt>Background Info</dt>
70 <dd>
71 <p>
72   Like many distributions, Ubuntu has decide to use PulseAudio as the
73   default audio system. PulseAudio is a rich and capable system that
74   provides excellent services for typical users of Linux on the
75   desktop. However, it is not capable of the type of performance that
76   tools like Ardour require and in particular does not offer the
77   possibility of sending audio between applications that can makes the
78   Linux audio environment a very interesting one.
79 </p>
80 <p>
81   This would not a problem if it were not for the fact that JACK will
82   not run correctly (if at all) if it needs to use the same
83   soundcard/audio interface that PulseAudio is using. And since on
84   Ubuntu, PulseAudio is configured by default to always use the
85   (typically single) audio interface on your computer, this is a bit
86   of a problem.
87 </p>
88 <p>
89   The developers of JACK and PulseAudio got together in 2009 and
90   agreed upon a mechanism by which PulseAudio and JACK could cooperate
91   in their use of a single soundcard. Whether or not PulseAudio is running by
92   default, when JACK starts up it sends out a request to use the
93   soundcard. If PulseAudio is running, it will give up its use of the
94   soundcard to allow JACK to take over (and can optionally be told to
95   route its own audio through JACK). When JACK finishes, it sends out
96   another message, and PulseAudio can once again use the soundcard
97   directly.
98 </p>
99 </dd>
100 <dt>What is the problem?</dt>
101 <dd>
102 <p>
103   This relatively simple system ought to be the basis for excellent
104   cooperation between PulseAudio and JACK. Unfortunately, it relies on
105   everything being correctly configured for it to work, and Ubuntu
106   have repeatedly failed to get this configuration correct.
107 </p>
108 <p>
109   The specific issues known at this time (spring 2013) are:
110   <ul>
111     <li>a bug in PulseAudio that causes it not to give up the
112       soundcard when JACK asks</li>
113     <li>bad package dependency information that causes a critical
114       package to be missing even when JACK and PulseAudio are
115       installed</li>
116     <li>a bug that causes JACK to freeze up when told to stop, 
117       causing issues with restarting</li>
118   </ul>
119 </dd>
120 <dt>Symptoms</dt>
121 <dd>
122 <p>
123   <ul>
124     <li>Cannot start JACK (though see the next section for other
125       causes of this)</li>
126     <li>JACK starts but there is no sound coming from Ardour or other
127     applications that use JACK.</li>
128   </ul>
129 </p>
130 </dd>
131 <dt>How to fix</dt>
132 <dd>
133 </dd>
134 </dl>
135
136 <h3>Problems with JACK configuration<h3>
137
138 <dl class="faq">
139   <dt>What is the problem?</dt>
140   <dd>
141     <p>
142       To function as intended, JACK needs to run with access to two
143       operating system facilities called "realtime scheduling" and "memory
144       locking". This means that you, the user who starts JACK, must be
145       allowed access to these facilities. By default, Ubuntu does create a
146       user group that has this permission but ... it does not put new
147       users into this group by default. Consequently, you will not have
148       permission to run JACK in the way you should.
149     </p>
150   </dd>
151   <dt>Symptoms</dt>
152   <dd>
153     <p>
154       A message like "Cannot lock down memory" in the output from JACK as
155       it starts up. This output may be "hidden" in the Messages window of
156       QJackctrl (aka JACK Control), so you should check there.
157     </p>
158   </dd>
159   <dt>How to fix</dt>
160   <dd>
161     <p>
162       Run the command <code>sudo usermod -a -G
163         audio <em>YOUR-LOGIN-NAME</em></code>. Then logout and login again.
164     </p>
165   </dd>
166 </dl>
167