From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: [PATCHES] Add wicd and wicd-service Date: Thu, 12 Feb 2015 08:44:07 -0500 Message-ID: <87y4o3tfbs.fsf@netris.org> References: <87mw4uhx1f.fsf@netris.org> <87386lb19f.fsf@netris.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56570) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLu3q-0008MI-D8 for guix-devel@gnu.org; Thu, 12 Feb 2015 08:44:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YLu3m-0005eN-4f for guix-devel@gnu.org; Thu, 12 Feb 2015 08:44:06 -0500 Received: from world.peace.net ([50.252.239.5]:46076) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLu3m-0005eD-0d for guix-devel@gnu.org; Thu, 12 Feb 2015 08:44:02 -0500 In-Reply-To: (Daniel Pimentel's message of "Thu, 12 Feb 2015 09:47:43 -0300") 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Daniel Pimentel Cc: guix-devel@gnu.org Daniel Pimentel writes: > Guixs, I reconfigured my system with wicd. My config.scm (in > /etc/config.scm): > (use-modules (gnu)) > (use-service-modules xorg networking dbus avahi) > (use-package-modules avahi wicd) > ... > (service (cons* (slim-service) > (wicd-service) > (dbus-service (list wicd)) > ... > > But, whem there is error when use wicd-gtk with my normal user or with > root: > Failed to connect to socket /var/run/dbus/system_dbus_socket: > Connection refused The most likely cause of this is that dbus-system was unable to start because of a stale /var/run/dbus/pid file left over from a system crash or improper shutdown. IMO, we should add a service or two that clears out /tmp and /var/run at early boot time as is normally done on other systems. For now, the solution is to run (as root): rm /var/run/dbus/pid deco enable dbus-system deco start dbus-system I guess that 'wicd' should then start automatically, but if not you could start it with "deco enable wicd" and "deco start wicd" as well. Mark