Are you using a particular file manager that is giving you this error, or are you using the command line?
You can run the command "mount" to see if your device is already mounted and where. If it is mounted, just point your filemanager to that directory rather than clicking on the device. If your device is not mounted, you could always try the following commands (as root).
|
Code:
|
cd /media
mkdir My-Book
mount -t ext2fs /dev/ext2fs/My\ Book /media/My-Book |
Now just point your file manager to the /media/My-Book directory to view the contents.
To unmount it when you are done:
|
Code:
|
unmount /media/My-Book
rmdir /media/My-Book |
If you try out the latest snapshot for PC-BSD 9.1, there is a new tray application for mounting/unmounting devices that will do all of this for you, rather than relying on the somewhat linux-y methods that most of the file managers use (which don't always work properly on BSD).