Changes between Version 11 and Version 12 of installing_on_debian

Show
Ignore:
Timestamp:
08/12/10 22:58:05 (3 years ago)
Author:
https://www.google.com/accounts/o8/id?id=aitoawm1q8x0kvhi3eanvgzliogp7tb1hnrvcjw
Comment:

modified jack2 procedure for sid

Legend:

Unmodified
Added
Removed
Modified
  • installing_on_debian

    v11 v12  
    33== Introduction == 
    44 
    5 There no packages of laditools and ladish for Debian yet, so they should be installed from GIT. They depend on jack2 with D-Bus support, for which a Debian package exists in the Debian GIT repository. 
     5There no packages of laditools and ladish for Debian yet, so they should be installed from GIT. 
    66 
    7 For this procedure I use Debian version testing ("squeeze/sid") on architecture amd64. It should work for stable, too. 
     7First, install "jackd" version 2 with D-Bus enabled as described for "unstable" and "stable" below. 
    88 
    99== JACK2 == 
     
    1111=== Debian "sid" === 
    1212 
    13 In "sid", jack-audio-connection-kit was renamed to either one of "jackd1" and "jackd2". It appears that package "jackd2" installs a LADISH-compliant JACK daemon (D-Bus enabled, V2 JACK API). 
     13Uninstall any jackd packages: 
    1414 
    15 Skip forward to section LADISH below. 
     15{{{ 
     16aptitude remove jackd jackd1 jackd2 
     17}}} 
     18 
     19Install standard jackd2 sources from [http://jackaudio.org/ jackaudio.org] (version 1.9.5) as follows: 
     20 
     21{{{ 
     22tar xjf jack-1.9.5.tar.bz2 
     23cd jack-1.9.5 
     24./waf configure --prefix=/usr --dbus 
     25./waf build 
     26su -c "./waf install" 
     27}}} 
     28 
     29Proceed to section "LADISH" below. 
    1630 
    1731=== Debian "squeeze", "lenny" ===