From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: [PATCH] gnu: Add gxtuner. Date: Mon, 10 Oct 2016 07:30:18 +0200 Message-ID: <87r37og49h.fsf@elephly.net> References: <20161009181004.19856-1-rekado@elephly.net> <87k2dhjl8m.fsf@openmailbox.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35269) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1btTAX-00045I-5I for guix-devel@gnu.org; Mon, 10 Oct 2016 01:30:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1btTAT-0000H9-QQ for guix-devel@gnu.org; Mon, 10 Oct 2016 01:30:32 -0400 Received: from sender163-mail.zoho.com ([74.201.84.163]:21329) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1btTAT-0000G7-JF for guix-devel@gnu.org; Mon, 10 Oct 2016 01:30:29 -0400 In-reply-to: <87k2dhjl8m.fsf@openmailbox.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Kei Kebreau Cc: guix-devel@gnu.org Kei Kebreau writes: > This package is reproducible and clears the linting process on my > end. Sadly I'm not skilled enough with JACK to check the functionality > of the package. :-/ Using JACK on GuixSD effectively requires a little additional effort. I have this in my system configuration to be able to use JACK’s realtime mode: (users (list (user-account (name "rekado") (comment "rekado") (group "rekado") (supplementary-groups '(… "realtime")) (home-directory "/home/rekado")))) (groups (cons* (user-group (name "rekado") (id 1000)) (user-group (name "realtime")) %base-groups)) … (services (cons* (pam-limits-service (list (pam-limits-entry "@realtime" 'both 'rtprio 99) (pam-limits-entry "@realtime" 'both 'memlock 'unlimited))) …)) This means: add my user account to a new group “realtime” and then raise the realtime priority for this group. Also drop memory restrictions for members of this group. Then you close all applications that might currently be using the audio interface directly. Make sure pulseaudio is not running. Then run the JACK daemon with the ALSA backend: jackd -d alsa At this point you can start any application that needs JACK. To connect wires between JACK applications and the audio interface ports I recommend using “patchage”, a graphical patcher that shows you all audio ports on all JACK appplications and lets you draw connections between them. Hope this helps! ~~ Ricardo