From mboxrd@z Thu Jan 1 00:00:00 1970 From: Brett Gilio <brettg@posteo.net> Subject: bug#34611: virt-manager is not recognizing libvirtd service Date: Thu, 21 Feb 2019 23:06:58 -0600 Message-ID: <87bm34jtsd.fsf@posteo.net> Mime-Version: 1.0 Content-Type: text/plain Return-path: <bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org> Received: from eggs.gnu.org ([209.51.188.92]:38048) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from <Debian-debbugs@debbugs.gnu.org>) id 1gx34D-0008IK-83 for bug-guix@gnu.org; Fri, 22 Feb 2019 00:08:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from <Debian-debbugs@debbugs.gnu.org>) id 1gx34C-00069l-3k for bug-guix@gnu.org; Fri, 22 Feb 2019 00:08:09 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:33976) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from <Debian-debbugs@debbugs.gnu.org>) id 1gx347-00064M-LO for bug-guix@gnu.org; Fri, 22 Feb 2019 00:08:06 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from <Debian-debbugs@debbugs.gnu.org>) id 1gx347-0006jY-7Y for bug-guix@gnu.org; Fri, 22 Feb 2019 00:08:03 -0500 Sender: "Debbugs-submit" <debbugs-submit-bounces@debbugs.gnu.org> Resent-Message-ID: <handler.34611.B.155081204825842@debbugs.gnu.org> Received: from eggs.gnu.org ([209.51.188.92]:37740) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from <brettg@posteo.net>) id 1gx33N-0008Fn-DH for bug-guix@gnu.org; Fri, 22 Feb 2019 00:07:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from <brettg@posteo.net>) id 1gx33M-0004oL-9x for bug-guix@gnu.org; Fri, 22 Feb 2019 00:07:17 -0500 Received: from mout01.posteo.de ([185.67.36.65]:57367) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from <brettg@posteo.net>) id 1gx33L-0004Qa-LW for bug-guix@gnu.org; Fri, 22 Feb 2019 00:07:16 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id B7C2D16005D for <bug-guix@gnu.org>; Fri, 22 Feb 2019 06:07:01 +0100 (CET) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 445K8442b5z6tm7 for <bug-guix@gnu.org>; Fri, 22 Feb 2019 06:07:00 +0100 (CET) List-Id: Bug reports for GNU Guix <bug-guix.gnu.org> List-Unsubscribe: <https://lists.gnu.org/mailman/options/bug-guix>, <mailto:bug-guix-request@gnu.org?subject=unsubscribe> List-Archive: <http://lists.gnu.org/archive/html/bug-guix/> List-Post: <mailto:bug-guix@gnu.org> List-Help: <mailto:bug-guix-request@gnu.org?subject=help> List-Subscribe: <https://lists.gnu.org/mailman/listinfo/bug-guix>, <mailto:bug-guix-request@gnu.org?subject=subscribe> Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" <bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org> To: 34611@debbugs.gnu.org Hi all, I am having an issue using virt-manager on GuixSD. I have libvirt and virt-manager installed, and am starting the libvirtd service using my configuration file. However, regardless of whether or not I start virt-manager as root or normal privileges, I am getting a "checking for virtualization packages..." note with an error of "No active connection to install on." libvirtd and virtlogd are properly started as far as I can tell by queurying the herd. Here is my relevant configuration. (users (cons (user-account (name "brettg") (comment "Brett Gilio") (group "users") (supplementary-groups '("wheel" "netdev" "audio" "video" "libvirt")) (home-directory "/home/brettg")) %base-user-accounts)) (packages (cons* nss-certs ;for HTTPS access gvfs ;for user mounts libvirt %base-packages)) (services (cons* (service gnome-desktop-service-type (gnome-desktop-configuration (inherit config) (gnome-package gnome-custom))) (service libvirt-service-type) (service virtlog-service-type) (service gdm-service-type) (filter (lambda (x) (not (eq? (service-kind x) slim-service-type))) %desktop-services)))