2009/3/29 Eduardo P?rez <ergo0100 at hotmail.com>:

> I'm new in OpenSolaris and it's very difficult to install things in this new 
> OS. I have a MP3 player with music.
> I want to copy that music to my PC but when i plug in the MP3 nothing 
> happens. It was recognized as
"Unidad" (Unit in spanish) and in the Driver utily as RockChip USB MP3
and with sd drivers. When I try to open
> the MP3 I get this error: Unable to mount media. There is probably no media 
> in the drive.

1. Find out the Solaris device name for the USB storage device,
   from iostat -En output

      c2t0d0           Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
      Vendor: Alliance Product: Flash Disk Revision: 5.00 Serial No:
Size: 3,71GB <3705929728 bytes>
      Media Error: 0 Device Not Ready: 0 No Device: 0 Recoverable: 0
      Illegal Request: 35 Predictive Failure Analysis: 0

   You should get an entry similar to the above, where Vendor / Product
   identifies your USB MP3 player.  The "c2t0d0" in the above example
   is the Solaris device name for the storage device.


2. With the device name from 1., print the fdisk partition table for the device

   fdisk -R -W - /dev/rdsk/c2t0d0p0

   (note: use /dev/rdsk and attach "p0" at the end of the Solaris device name)

3. Assuming that fdisk identifies exactly one FAT partition on this device:
   Try find out the filesystem format on the fdisk partition:

   fstyp -v  /dev/rdsk/c2t0d0p1

   (This should identify a "pcfs" filesystem on the 1st fdisk partition)

4. If it is "pcfs", try a manual mount

   mount -F pcfs /dev/dsk/c2t0d0p1 /mnt

   or

   mount -F pcfs /dev/dsk/c2t0d0p0:c /mnt

   (Note: /dev/dsk is used here, not /dev/rdsk )

Reply via email to