USB Flash not mounting

Hello to the forum

I've just installed a fresh copy of FreeBSD on my computer and the problem is obvious:
I can't even "read" any USB flash drive I'm plugging into, is there a package I should install in order to use (read) my USB flash drives?

Thanks in advance
 
mount your usb drive to a directory, open ternimal and change directory to the mounted directory, you should able to view the content
 
try this:
add user to group 'operator':
Code:
pw groupmod operator -m <user>
add to /etc/devs.conf
Code:
[system=10]
add path 'usb/*' mode 0660 group operator
add to /etc/rc.conf
Code:
devfs_system_ruleset="system"
Reboot
service devfs restart
 
Back
Top