Re: Problem mounting new Sandisk 1TB USB drive
- Reply: Souji Thenria : "Re: Problem mounting new Sandisk 1TB USB drive"
- In reply to: Souji Thenria : "Re: Problem mounting new Sandisk 1TB USB drive"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 10 Jan 2024 17:47:42 UTC
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: <snip> >> $ 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