How to mount ntfs disk on FreeBSD
1. Install fusefs-ntfs
# pkg install fusefs-ntfs
Add the following content to file /boot/loader.conf
fusefs_load="YES"
2. And then reboot.
# reboot
3. Mount ntfs disk
# ntfs-3g /dev/da0s1 /media
- /dev/da0s1 : The ntfs disk.
- /media : Where your ntfs disk disk will be mounted.
Comments
Post a Comment