Solved [Solved] unable to view files on USB stick.

Hello everyone.

I have USB stick which can be mounted on CentOS and view files,but unable to view files on FreeBSD. mount_msdos(8) command is accepted, but ls -l shows nothing despite there are several files on USB. ls -l shows list of files on CentOS.

df on CentOS shows file format is iso9660,so I tried mount -t iso9660 but it was rejected.
Code:
# df -T /USB
Filesystem    Type   1K-ブロック    使用   使用可 使用% マウント位置
/dev/sdc2  iso9660      414012    414012         0 100% /USB
Does anyone know how to mount USB stick on FreeBSD and view files?
Many thanks.

Take/Japan
 
Re: unable to view files on USB stick.

The mount(8) man page lists the valid types that FreeBSD understands with the -t option. I think you want cd9660 instead of iso9660.
 
Back
Top