Page 2 of 2

Re: Mounting USB Drives

Posted: Thu Jul 13, 2017 4:31 pm
by scubapro25
OK, it looks like I've discovered what the problem is: under GParted, ALL my USB drives are NTFS. For some reason I never though to check the FS.

Is there a way to mount NTFS drives in Ghost?

Re: Mounting USB Drives

Posted: Thu Jul 13, 2017 8:14 pm
by ASX
scubapro25 wrote: Is there a way to mount NTFS drives in Ghost?
assuming your NTFS partition is /dev/da0p1 the following command can mount that partition:

Code: Select all

ntfs-3g /dev/da0p1 /mnt
to examine all partition tables use:

Code: Select all

gpart show -p
before trying to mount NTFS partitions, be sure that the module fuse.ko is already loaded:

Code: Select all

kldload fuse
or add fuse to kld_list=..." in /etc/rc.conf and reboot

Re: Mounting USB Drives [SOLVED]

Posted: Thu Jul 13, 2017 8:32 pm
by scubapro25
Great, thanks for your help!