From nobody Wed Jan 10 17:47:42 2024 X-Original-To: freebsd-questions@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 4T9Fcz15pvz55TYr for ; Wed, 10 Jan 2024 17:47:47 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from ns.dreamchaser.org (ns.dreamchaser.org [66.109.141.57]) (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 ECDSA (P-256) client-digest SHA256) (Client CN "discoveriesinwood.com", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4T9Fcy4KTGz45ht for ; Wed, 10 Jan 2024 17:47:46 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Authentication-Results: mx1.freebsd.org; none Received: from [192.168.151.122] (breakaway.dreamchaser.org [192.168.151.122]) by ns.dreamchaser.org (8.16.1/8.16.1) with ESMTP id 40AHlgWU011644; Wed, 10 Jan 2024 10:47:43 -0700 (MST) (envelope-from freebsd@dreamchaser.org) Message-ID: Date: Wed, 10 Jan 2024 10:47:42 -0700 List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Reply-To: freebsd@dreamchaser.org Subject: Re: Problem mounting new Sandisk 1TB USB drive Content-Language: en-US To: Souji Thenria , FreeBSD Mailing List References: <746cd0fe-9de8-414b-8b5d-7030d423fa7f@dreamchaser.org> From: Gary Aitken In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Greylist: inspected by milter-greylist-4.6.4 (ns.dreamchaser.org [192.168.151.101]); Wed, 10 Jan 2024 10:47:43 -0700 (MST) for IP:'192.168.151.122' DOMAIN:'breakaway.dreamchaser.org' HELO:'[192.168.151.122]' FROM:'freebsd@dreamchaser.org' RCPT:'' X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.4 (ns.dreamchaser.org [192.168.151.101]); Wed, 10 Jan 2024 10:47:43 -0700 (MST) X-Rspamd-Queue-Id: 4T9Fcy4KTGz45ht X-Spamd-Bar: ---- 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:21947, ipnet:66.109.128.0/19, country:US] On 1/10/24 00:25, Souji Thenria wrote: > On 1/10/24 04:40, Gary Aitken wrote: >> I have a new Sandisk 1TB thumb drive, USB-A on one end, USB-C on >> the other. >> If I plug it into my ubuntu laptop, it mounts fine and works. >> If I plug it into my fbsd box (13.2-RELEASE-p8 GENERIC amd64), >> it shows up: >> $ ls -lt /dev/da0* >> crw-rw----  1 root  operator  0xc7 Jan  9 20:59 /dev/da0s1 >> crw-rw----  1 root  operator  0xcc Jan  9 20:59 /dev/da0 >> >> but it won't mount: >> >> # mount.exfat /dev/da0s1 /mnt/memstick >> FUSE exfat 1.4.0 (libfuse2) >> fuse: failed to open fuse device: No such file or directory >> $ gpart show /dev/da0 >> =>        63  1954283457  da0  MBR  (932G) >>           63        7489       - free -  (3.7M) >>         7552  1954275968    1  ntfs  (932G) >> >> Am I doing something wrong, or does the factory MS formatting >> need to be trashed and redone? ... > Based on your commands, you try to mount an NTFS partition using > 'mount.exfat', which won't work. You need to use 'ntfs-3g' for that. Thanks. But after installing sysutils/fusefs-ntfs, it still won't mount: # mount -t ntfs-3g /dev/da0s1 /mnt/memstick mount: /dev/da0s1: Invalid fstype: Invalid argument # ntfs-3g /dev/da0s1 /mnt/memstick NTFS signature is missing. Failed to mount '/dev/da0s1': Invalid argument The device '/dev/da0s1' doesn't seem to have a valid NTFS. Maybe the wrong device is used? Or the whole disk instead of a partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around? # ntfs-3g /dev/da0 /mnt/memstick NTFS signature is missing. Failed to mount '/dev/da0': Invalid argument The device '/dev/da0' doesn't seem to have a valid NTFS. Maybe the wrong device is used? Or the whole disk instead of a partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around? -o debug shows nothing additional Thanks, Gary