From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: service 'dhcpv4-daemon' requires 'networking', which is not provided by any service Date: Fri, 05 Apr 2019 20:45:25 +0200 Message-ID: <87ftqw1ebe.fsf@elephly.net> References: <87zhp4wgg2.fsf@elephly.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([209.51.188.92]:51293) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hCU5r-0003rF-9f for help-guix@gnu.org; Fri, 05 Apr 2019 15:01:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hCU5q-0005BR-77 for help-guix@gnu.org; Fri, 05 Apr 2019 15:01:39 -0400 Received: from sender-of-o51.zoho.com ([135.84.80.216]:21231) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hCU5D-0003sw-0p for help-guix@gnu.org; Fri, 05 Apr 2019 15:01:38 -0400 In-reply-to: List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: znavko@tutanota.com Cc: Help Guix znavko@tutanota.com writes: > I have rewrote my config, including all modifications into the one > (modify-services) function Well, you=E2=80=99re still using =E2=80=9Cmodify-services=E2=80=9D twice=E2= =80=A6 :) You probably also shouldn=E2=80=99t nest all of these =E2=80=9Cremove=E2=80= =9D calls. You can do this all in one procedure: (remove (lambda (service) (member (service-kind service) (list ntp-service-type avahi-service-type bluetooth-service network-manager-service-type))) %desktop-services) Though I think you may be better off using %base-services when you disagree with so many of the desktop services. Another hint: %desktop-services includes gdm-service-type, not slim-service-type, so your modification of the slim service has no effect. > But networking is not running after reconfigure. > > # guix system reconfigure /etc/config.scm [=E2=80=A6] > shepherd: Service networking could not be started. [=E2=80=A6] > Apr 5 21:17:19 localhost vmunix: [ 1821.593856] 0000:03:00.0: Missing Fre= e firmware (non-Free firmware loading is disabled) > Apr 5 21:17:19 localhost vmunix: [ 1821.593895] r8169 0000:03:00.0 enp3s0= : unable to load firmware patch /*(DEBLOBBED)*/ (-2) > Apr 5 21:17:19 localhost vmunix: [ 1821.594150] Generic PHY r8169-300:00:= attached PHY driver [Generic PHY] (mii_bus:phy_addr=3Dr8169-300:00, irq=3D= IGNORE) > Apr 5 21:17:19 localhost vmunix: [ 1821.694129] r8169 0000:03:00.0 enp3s0= : Link is Down > Apr 5 21:17:19 localhost dhclient: Unsupported device type 65534 for "tun= 0" Have you set up a network bridge? Have you rebooted since reconfiguring? -- Ricardo