Find the answer to your Linux question:
Page 1 of 3 1 2 3 LastLast
Results 1 to 10 of 24
I got my son a cheapie mp3 player for his birthday but when I plug it in to my pc it doesn't show as an external hardware. It is able ...
  1. #1
    Just Joined!
    Join Date
    Oct 2008
    Posts
    40

    driver for sylvania mp3 player

    I got my son a cheapie mp3 player for his birthday but when I plug it in to my pc it doesn't show as an external hardware. It is able to charge but we're unable to load any songs onto it. It's a Sylvania model SMPK2066....I'm running Ubuntu 8.04. Is anyone able to help?

  2. #2
    Super Moderator MikeTbob's Avatar
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    7,145
    HIya.
    Try creating a new mount point for the device like so:
    Code:
    sudo mkdir /media/USB
    Now I'm guessing that it has FAT32 filesystem on it, and I am also guessing it's the second drive on your system, if it isn't then you need to change the syntax of this command to reflect that.
    so you would mount it this way.
    Code:
    sudo mount -t vfat /dev/sdb /media/USB
    Now if all went well, your files should be in /media/USB and you *should* be able to drag n drop your files there. Let us know if you have any errors and post them back here.
    I do not respond to private messages asking for Linux help, Please keep it on the forums only.
    All new users please read this.** Forum FAQS. ** Adopt an unanswered post.

  3. #3
    Just Joined!
    Join Date
    Oct 2008
    Posts
    40
    Thanks for the quick reply Mike. I followed those instructions but it says "cannot create directory `/media/usb': File exists"

  4. #4
    Super Moderator MikeTbob's Avatar
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    7,145
    That's fine, it just means you can skip that part, please continue.
    I do not respond to private messages asking for Linux help, Please keep it on the forums only.
    All new users please read this.** Forum FAQS. ** Adopt an unanswered post.

  5. #5
    Just Joined!
    Join Date
    Oct 2008
    Posts
    40
    This is the message I get when I enter the second code line you gave me.

    mount: wrong fs type, bad option, bad superblock on /dev/sdb,
    missing codepage or helper program, or other error
    In some cases useful info is found in syslog - try
    dmesg | tail or so

    I'm also not sure what you mean by "your files should be in /media/USB and you *should* be able to drag n drop your files there"....I don't know where this is.

  6. #6
    Super Moderator MikeTbob's Avatar
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    7,145
    Ok, we'll need to use fdisk command in a terminal window. Be sure the device is plugged in when you execute this command.
    Code:
    sudo fdisk -l
    (small L not an I)
    Post the output of this command so we can see your disk structure and figure out where to go from here.
    After you get the device to mount properly, you will be able to browse to /media/usb to find or add files on the MP3 player.
    I do not respond to private messages asking for Linux help, Please keep it on the forums only.
    All new users please read this.** Forum FAQS. ** Adopt an unanswered post.

  7. #7
    Just Joined!
    Join Date
    Oct 2008
    Posts
    40
    Here is the output to the command: (Btw, I really appreciate your help with this.)

    Disk /dev/sda: 40.0 GB, 40000020480 bytes
    255 heads, 63 sectors/track, 4863 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0x00000080

    Device Boot Start End Blocks Id System
    /dev/sda1 * 1 4675 37551906 83 Linux
    /dev/sda2 4676 4863 1510110 5 Extended
    /dev/sda5 4676 4863 1510078+ 82 Linux swap / Solaris
    Note: sector size is 2048 (not 512)

    Disk /dev/sdb: 1999 MB, 1999372288 bytes
    64 heads, 58 sectors/track, 263 cylinders
    Units = cylinders of 3712 * 2048 = 7602176 bytes
    Disk identifier: 0x97165205

    Device Boot Start End Blocks Id System
    /dev/sdb1 * 1 263 1952396 b W95 FAT32
    Partition 1 has different physical/logical beginnings (non-Linux?):
    phys=(0, 0, 5 logical=(0, 1, 1)

  8. #8
    Super Moderator MikeTbob's Avatar
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    7,145
    Alright, you are doing very well so far. I believe the code you need is this:
    Code:
    sudo mount -t vfat /dev/sdb1 /media/usb
    The above command should mount the media player. After you mount it, you may use nautilus or any file browser to view the files on the media player by browsing to /media/usb/
    Now, once you have successfully mounted any device, you need to unmount it before you remove the device, use the umount command
    Code:
    sudo umount /media/usb
    You are welcome, that's what we are here for, to help people just for the fun of it.

    EDIT: Be sure and check out the man pages for mount and umount
    Open a terminal window and issue these commands, or any other Linux system commands that you would like to read about, this is a very cool built in system user guide which can be extremely useful if you do not have Access to the Internet.
    Code:
    man mount
    Code:
    man umount
    Code:
    man man
    Use the spacebar for next page and use Q to quit the man pages.
    Last edited by MikeTbob; 04-04-2009 at 09:08 PM.
    I do not respond to private messages asking for Linux help, Please keep it on the forums only.
    All new users please read this.** Forum FAQS. ** Adopt an unanswered post.

  9. #9
    Just Joined!
    Join Date
    Oct 2008
    Posts
    40
    Now it gives me thie following message:

    mount: special device /dev/sdbl does not exist

  10. #10
    Super Moderator MikeTbob's Avatar
    Join Date
    Apr 2006
    Location
    Texas
    Posts
    7,145
    sdb1
    it's a one not an L
    I do not respond to private messages asking for Linux help, Please keep it on the forums only.
    All new users please read this.** Forum FAQS. ** Adopt an unanswered post.

Page 1 of 3 1 2 3 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...