Today I decided to buy a mp3 player.
So I bought "ACME A-410" digital mp3/ FM radio player.
On the box it said that it works both for windows and Linux 2.4.2 so I took it.
Now at home I plug this device into my USB port, KDE finds the device, I choose to open.
so it creates /dev/sda1. I made this script to mount and open the device:
Since it only lets writing files with root permissions, I used kdesu konqueror
Now the problem: when mounted and writing to device , everything seems ok,
but when I unmount and unplug the device from the USB port, It doesn't play the files.
I plug the device in my USB port again, and when mounted I see the mp3 files I copied,
but they all are 0 bytes in size. In windows copying works fine.
Has anyone had this problem? Please tell me what I did wrong.
P.S. I am using Kubuntu 6.10 (Edgy Eft)
So I bought "ACME A-410" digital mp3/ FM radio player.
On the box it said that it works both for windows and Linux 2.4.2 so I took it.
Now at home I plug this device into my USB port, KDE finds the device, I choose to open.
so it creates /dev/sda1. I made this script to mount and open the device:
Code:
#! /bin/sh ### By Gediminas echo "Mounting Device" sudo mkdir /media/usb sudo mount /dev/sda1 /media/usb kdesu konqueror /media/usb
Now the problem: when mounted and writing to device , everything seems ok,
but when I unmount and unplug the device from the USB port, It doesn't play the files.
I plug the device in my USB port again, and when mounted I see the mp3 files I copied,
but they all are 0 bytes in size. In windows copying works fine.
Has anyone had this problem? Please tell me what I did wrong.
P.S. I am using Kubuntu 6.10 (Edgy Eft)
Comment