From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kristofer Buffington Subject: mount host directory in guest VM Date: Thu, 11 Jul 2019 12:50:15 -0400 Message-ID: <877e8oqzw8.fsf@walletsworth.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:50220) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hlcH8-00038b-VZ for help-guix@gnu.org; Thu, 11 Jul 2019 12:50:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hlcH8-0002rQ-6R for help-guix@gnu.org; Thu, 11 Jul 2019 12:50:30 -0400 Received: from mail.walletsworth.com ([75.15.5.61]:42040) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hlcH8-0002r1-0F for help-guix@gnu.org; Thu, 11 Jul 2019 12:50:30 -0400 Received: from libre (192.168.1.135 [192.168.1.135]) by mail.walletsworth.com (OpenSMTPD) with ESMTPSA id 4695aad8 (TLSv1.2:ECDHE-RSA-CHACHA20-POLY1305:256:NO) for ; Thu, 11 Jul 2019 12:49:49 +0000 (UTC) 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: help-guix@gnu.org Hello! I would like to have a shared folder between VMs on my virtualization host. I can do that manually, but it doesn't persist between restarts. # mount -t 9p -o trans=virtio,version=9p2000.L hostshare / This command lets the guest mount the hosts shared folder. How can I put that into my operating-system declaration? -kb