From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51109) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e0KPh-0004aV-Eh for guix-patches@gnu.org; Fri, 06 Oct 2017 00:39:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e0KPe-0002lZ-B7 for guix-patches@gnu.org; Fri, 06 Oct 2017 00:39:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43337) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e0KPe-0002lI-76 for guix-patches@gnu.org; Fri, 06 Oct 2017 00:39:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e0KPd-00067q-UJ for guix-patches@gnu.org; Fri, 06 Oct 2017 00:39:01 -0400 Subject: [bug#28718] Status: [PATCH] gnu: qemu: Add sysconfdir to configure-flags. References: <87mv552bs5.fsf@gmail.com> In-Reply-To: <87mv552bs5.fsf@gmail.com> Resent-Message-ID: From: Oleg Pykhalov Date: Fri, 06 Oct 2017 07:38:15 +0300 Message-ID: <87k208opqg.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: bug#28718 <28718@debbugs.gnu.org> I've used this patch to run a QEMU VM with bridge interface. $ mkdir -p /tmp/etc/qemu $ echo 'allow bridge0' | tee -a /tmp/etc/qemu/bridge.conf # ip link add bridge0 type bridge # ip link set dev enp6s0 master bridge0 # ip link up bridge0 # dhclient bridge0 # qemu-system-x86_64 -net nic -net bridge,br=3Dbridge0 # =E2=80=A6