Results 1 to 8 of 8
I have a generic MP3 player, which I also use as a removable hard drive. It is shown under Dev as SDA1, but it won't mount. Any ideas? I am ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 02-28-2007 #1
USB MP3 Problem
I have a generic MP3 player, which I also use as a removable hard drive. It is shown under Dev as SDA1, but it won't mount. Any ideas? I am using Slackware to totally remove all Microsoft Programs.
- 02-28-2007 #2
How are you trying to mount it? Which fs is it using?
We need more information to help youPut your hand in an oven for a minute and it will be like an hour, sit beside a beautiful woman for an hour and it will be like a minute, that is relativity. --Albert Einstein
Linux User #425940
Don't PM me with questions, instead post in the forums
- 02-28-2007 #3
More info
It is set as a FAT16 fs, connected to USB at start-up and recognised as a removable dev - dev/sda1. When I try to mount it (as root) I get this:
Mount dev/sda1 is not a valid block device.
Please check that the disk is entered correctly.
It functions perfectly well under Windows, but I don't really want to have to install Windows on my machine just for this, since I've made the transition seamlessly apart from this one thing!!
- 03-03-2007 #4
try this:
Got mine to work even without editing my fstab.
su to root and then type:
mount -t vfat /dev/sda1 /mnt/memory.
wherein /mnt/memory is my dir for mounting, you can make your folder if you like e.g. mkdir /usbstick. hope this helps. cheers.
- 03-03-2007 #5
Usb...
The problem seems to be that the kernel sees it as a SCSI drive.
- 04-05-2007 #6Linux Newbie
- Join Date
- May 2006
- Location
- Kansas
- Posts
- 187
SCSI or not, that shouldn't matter. Just do what rck_hitokiri said:
Originally Posted by k0rrupt10n
su - root
mkdir -p /mnt/memory
mount -t vfat /dev/sda1 /mnt/memory
Your files should now be in /mnt/memory. Before you pull it out, run this command:
umount /mnt/memory
Then you can remove it. Otherwise, it would probably mess some stuff up on your drive.
- 04-08-2007 #7
Solution
Hi folks,
I've been away for a while, but just let me clarify things.
I've gone to Mandrake as my distro, and I no longer have any problem with devices.
Thanx again for all help!!!
- 04-19-2007 #8Just Joined!
- Join Date
- Apr 2007
- Posts
- 4
If I'm not mistaking vfat is fat32. Probably be better to mount fat16 as type msdos.
Originally Posted by rck_hitokiri


Reply With Quote
