PSP on FreeBSD

I'm having trouble mounting my psp.
Code:
da0: <Sony PSP 1.00> Removable Direct Access SCSI-0 device
da0: 40.000MB/s transfers
da0:1951MB (3995648 512 byte sectors: 255G 63S/T 248C)
I don't know what type of fs i should mount it as because all that i tried, did not work.
 
I think that psp is ntfs filesystem. Try with
Code:
mount_msdosfs
command.
If this command not found then you should install ntfsprogs from ports.
Code:
cd /usr/ports/sysutils/ntfsprogs && make install clean
and then
Code:
mount_msdosfs /dev/[B]device[/B] /mnt/[B]your dir[/B]
 
Code:
ls -al /dev/da0*
crw-r----- 1 root operator   0, 124 Jul 15 06:42 /dev/da0
crw-r----- 1 root operarot   0, 125 Jul 15 06:42 /dev/da0s1
 
yeah i tried that too.
mount -t vfat /dev/da0 /mnt/usb
didn't work either or is there something i need to install to get that to work?
 
Back
Top