Re: can't mount USB disk

From: Dale Scott <dalescott_at_shaw.ca>
Date: Wed, 12 Jan 2022 20:34:07 UTC
----- Original Message -----
> From: "freebsd" <freebsd@dreamchaser.org>
> To: "freebsd-questions" <freebsd-questions@freebsd.org>
> Sent: Wednesday, January 12, 2022 1:09:52 PM
> Subject: can't mount USB disk

Hi Gary, here are my notes from the last time I had to do the same (fwiw it was probably a 16GB device)

1. Install fusefs-ntfs

2. Load fuse kernel module  

% sudo kldload fuse 

(may wish to add fuse_load="YES" to /boot/loader.conf to load at boot) 

3. Mount drive (read-only here, uncertain if writing to NTFS is as confident as on Linux)

% sudo ntfs-3g /dev/da4s1 /mnt 

4. Unmount drive 

% sudo umount /mnt 


My notes aren't clear if default mounting is read-only, only that adding option "-o ro" formally specifies read-only, executing "% ntgs-3g" will list the options, and there's "man ntfgs-3g" for more information.


Good luck!

Dale