mobile619
01-06-2007, 03:52 PM
I read in this forum that some people were having problems with the Sanyo M1 while using it has a USB Mass Storage Device with Mac OSX.
I had some problems while using it with Ubuntu 6.10 and it might be the same problems so I decided to post my fix.
When I try to umount (eject) the Sanyo M1, it fails and none of the files are written to the phone.
Possible FIX for Ubuntu 6.10:
1. Plug phone in and put in Mass Storage mode
2. Wait for phone to be auto-mounted (My phone is mounted at /media/usbdisk)
3. Open terminal
4. Determine hardware location of phone in /dev/ folder typically (/dev/sda1) do this by running 'cat /etc/mtab' You should see something like this at the end of the file
/dev/sda1 /media/usbdisk vfat rw,nosuid,nodev,quiet,shortname=mixed,uid=1000,gid =1000,umask=077,iocharset=utf8 0 0
5. Umount (eject) the phone.
$ sudo umount /media/usbdisk
6. Re-mount phone with new options
$ sudo mount -t vfat -o uid=1000,gid=1000,umask=077,nosuid,sync /dev/sda1 /media/usbdisk
I think the 'sync' option is the key. And remember to replace '/dev/sda1' and '/media/usbdisk' with the values determined in previous steps.
I am also trying to find a way to change the defaults options to include the sync option.
I hope this helps.
I had some problems while using it with Ubuntu 6.10 and it might be the same problems so I decided to post my fix.
When I try to umount (eject) the Sanyo M1, it fails and none of the files are written to the phone.
Possible FIX for Ubuntu 6.10:
1. Plug phone in and put in Mass Storage mode
2. Wait for phone to be auto-mounted (My phone is mounted at /media/usbdisk)
3. Open terminal
4. Determine hardware location of phone in /dev/ folder typically (/dev/sda1) do this by running 'cat /etc/mtab' You should see something like this at the end of the file
/dev/sda1 /media/usbdisk vfat rw,nosuid,nodev,quiet,shortname=mixed,uid=1000,gid =1000,umask=077,iocharset=utf8 0 0
5. Umount (eject) the phone.
$ sudo umount /media/usbdisk
6. Re-mount phone with new options
$ sudo mount -t vfat -o uid=1000,gid=1000,umask=077,nosuid,sync /dev/sda1 /media/usbdisk
I think the 'sync' option is the key. And remember to replace '/dev/sda1' and '/media/usbdisk' with the values determined in previous steps.
I am also trying to find a way to change the defaults options to include the sync option.
I hope this helps.