From owner-freebsd-fs@freebsd.org Fri Aug 11 09:01:23 2017 Return-Path: Delivered-To: freebsd-fs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1524CD946E1 for ; Fri, 11 Aug 2017 09:01:23 +0000 (UTC) (envelope-from ben.rubson@gmail.com) Received: from mail-wr0-x234.google.com (mail-wr0-x234.google.com [IPv6:2a00:1450:400c:c0c::234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9BD4D681A9 for ; Fri, 11 Aug 2017 09:01:22 +0000 (UTC) (envelope-from ben.rubson@gmail.com) Received: by mail-wr0-x234.google.com with SMTP id 33so11159110wrz.4 for ; Fri, 11 Aug 2017 02:01:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:subject:from:in-reply-to:date :content-transfer-encoding:message-id:references:to; bh=3OjBipwaUCCXsBCn4WA2GKo04UV4Y36HgkXtVQ/BEQY=; b=apNy6UpfqvhKWScGjRCmOUfrzAbB8aujBFFr5/zSey2fZsfcOatNwKLMAyMgaH+oOU U/kpdDq1IIhioAYlmEyoRqew51me/QkxELxYo0QuSeawoWPEg4ALyCZDDb/9iyQsbOze cU0pUqzERuiPAeUM+I4i4QKacLHf3V3Dvwo90I1m1dVsUnqB/DZbDoB5TgPOgZ7gTd/T YUS6tLPWWdBjNzK6l9TjUe7TX7WPGtQU0Vqur8bnf++K0VnIQ7WZsUCckUM2V15WXXv8 E5/88i1MPRHsmNHeuLUKsgSADT34xP8w8Fjz+xLFI+TgJtM8EvJ5sXuWfQNVzu78jpWo 5P5w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:subject:from:in-reply-to:date :content-transfer-encoding:message-id:references:to; bh=3OjBipwaUCCXsBCn4WA2GKo04UV4Y36HgkXtVQ/BEQY=; b=geXI9j0eKlc9IT2CxWRjteHJH4H+x5rqJqzwNsUZR9hS+AI8DasCJHac4M+p0BKBnJ pcAfsSF5N3MkAfcSdrKRt/ze6JJtwO4UsfHb1u9L/ACOf5yZB0grPo05LSX0Nfv5Ur5m O0ZgdjB9yUlJAu74GWNWgpdB4SDxO/13Wm2z8ar+APsLVTcDGWV/37F1SIpaxhMtsPhQ oawCUdJdRjOI/edtYdf6ngPMF7bl+62I9DF5OULHXJ7MJUmeUT/b9RgCCz9Efjgywfd4 U8zyRfjbpH3QMkUCF/j9+DwgGSeIaDYTzOum3ZOGx/XFhOPz51OES6GGXrSsnGLEy8OX +D2g== X-Gm-Message-State: AHYfb5jbyWIAZJbItgHHD9MavhfbneAx4xmsEWvpK/WZS5quo+QA3B2Y oiFhNoTS9vQDqJYwhx8= X-Received: by 10.223.131.130 with SMTP id 2mr12188900wre.51.1502442080016; Fri, 11 Aug 2017 02:01:20 -0700 (PDT) Received: from ben.home (LFbn-1-6951-179.w90-116.abo.wanadoo.fr. [90.116.132.179]) by smtp.gmail.com with ESMTPSA id z9sm489314wrz.0.2017.08.11.02.01.19 for (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 11 Aug 2017 02:01:19 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: State of FUSE on FreeBSD From: Ben RUBSON In-Reply-To: <87efsifpiu.fsf@vostro.rath.org> Date: Fri, 11 Aug 2017 11:01:17 +0200 Content-Transfer-Encoding: 7bit Message-Id: References: <87y3r0ankb.fsf@vostro.rath.org> <87efsifpiu.fsf@vostro.rath.org> To: Freebsd fs X-Mailer: Apple Mail (2.3124) X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Aug 2017 09:01:23 -0000 > On 11 Aug 2017, at 10:59, Nikolaus Rath wrote: > > On Aug 03 2017, Nikolaus Rath wrote: >> Hello, >> >> I am the upstream maintainer of libfuse. I'd like to refresh / improve >> the FreeBSD support in libfuse. My goal is for libfuse not to require >> any FreeBSD specific patches. > [...] > > Stefan kindly helped me setup a FreeBSD VM, and libfuse is now compiling > nicely. > > However, there is one problem: I am not able to mount any > filesystems. The error is always: > > # example/hello /mnt > fuse: failed to open fuse device: No such file or directory > > Do I need to do anything special to enable FUSE support in FreeBSD? Hi Nikolaus, Certainly you need to load fuse module : kldload fuse Ben