From nobody Sun Oct 20 19:42:55 2024 X-Original-To: freebsd-fs@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4XWpkh6DXZz5ZhSN for ; Sun, 20 Oct 2024 19:42:52 +0000 (UTC) (envelope-from a.e.hecht@t-online.de) Received: from mailout06.t-online.de (mailout06.t-online.de [194.25.134.19]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mailout00.t-online.de", Issuer "Telekom Security ServerID OV Class 2 CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4XWpkh3Hsqz4fQb; Sun, 20 Oct 2024 19:42:52 +0000 (UTC) (envelope-from a.e.hecht@t-online.de) Authentication-Results: mx1.freebsd.org; none Received: from fwd76.aul.t-online.de (fwd76.aul.t-online.de [10.223.144.102]) by mailout06.t-online.de (Postfix) with SMTP id 58EFC1734B; Sun, 20 Oct 2024 21:42:34 +0200 (CEST) Received: from X230.domain.home ([79.231.11.72]) by fwd76.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1t2bov-0BAP9E0; Sun, 20 Oct 2024 21:42:34 +0200 Date: Sun, 20 Oct 2024 21:42:55 +0200 From: Andreas Hecht To: Stefan Esser , freebsd-fs@freebsd.org Subject: Re: FAT32 support on freebsd Message-ID: Reply-To: a.e.hecht@t-online.de References: <4382b73c-41f7-4689-a1ee-945d0a9c6e12@FreeBSD.org> List-Id: Filesystems List-Archive: https://lists.freebsd.org/archives/freebsd-fs List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-fs@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4382b73c-41f7-4689-a1ee-945d0a9c6e12@FreeBSD.org> X-TOI-EXPURGATEID: 150726::1729453354-C57F85E0-C212668D/0/0 CLEAN NORMAL X-TOI-MSGID: 57690ee0-78b8-48ea-a86f-c6daf49f1f72 X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:3320, ipnet:194.25.0.0/16, country:DE] X-Rspamd-Queue-Id: 4XWpkh3Hsqz4fQb X-Spamd-Bar: ---- On Sun, Oct 20, 2024 at 08:57:13PM +0200, Stefan Esser wrote: > Am 20.10.24 um 20:07 schrieb Andreas Hecht: > > My FAT32 formatted portable SSD "Western Digital My Passport 25F3" does not > > seem to be supported by FreeBSD. Mounting the drive works fine but I can not > > access the data stored within it: > > > > # mount -t msdosfs /dev/da0s1 /mnt > > # cd /mnt > > # ls -al > > total 0 > > > > The 'ls -al' above should show a folder named 'data' stored in the > > top level diretory of the drive. The folder does not show up but during > > execution of 'ls -al' the following kernel message appears: > > > > getblkx: maxsize(66560) > maxbcachebuf(65536) > > > You can mount your FAT32 file system if you add the following to your > loader configuration file /boot/loader.conf: > > vfs.maxbcachebuf=131072 This works perfectly. Thanks for the quick response! -Andreas