PDA

View Full Version : No permission on my mobile phone



loopinaloop
October 29th, 2012, 06:33 PM
Hi there!
I have a mobile phone and I've never experienced any major issues with it. Now, it's a disaster for me. After making a fresh install of Ubuntu 12.10 I cannot make any changes on my mobile device. I get an error message that I've no permission. What I've changed is that I've made something around 7 partitions - maybe that's the cause? I've tried to install fresh Ubuntu 12.04 but that didn't helped so I revered back to 12.10.

As always, all problems began with an update... ;)

Ms. Daisy
October 30th, 2012, 03:34 AM
What method did you use to install Ubuntu on the phone? What kind of phone?

How did you manage to create 7 partitions? I'm assuming some of those are logical partitions? Can you show us the output from gparted?

wildmanne39
October 30th, 2012, 05:16 AM
Thread moved to Mobile Technology Discussions.

Mark Phelps
October 30th, 2012, 10:14 PM
Are you saying:
1) You installed 12.10 to your mobile phone -- which has seven partitions on it -- and now you can't do anything on the phone?
2) You installed 12.10 to your desktop -- which has seven partitions on it -- and now you can't access the phone from your desktop?

Very different questions -- very different problems.

loopinaloop
October 31st, 2012, 12:32 AM
2) You installed 12.10 to your desktop -- which has seven partitions on it -- and now you can't access the phone from your desktop?
I've installed Ubuntu on my desktop computer and I have read-only permission on my mobile.

Rexilion
October 31st, 2012, 11:10 AM
What phone is it? How do you access it? (USB, bluetooth). Does it show up as a 'mass storage' device or is it an MTP device?

Connect the phone, access it's data and post the output of:


sudo dmesg | tail -n20

loopinaloop
November 13th, 2012, 07:52 PM
What phone is it? How do you access it? (USB, bluetooth). Does it show up as a 'mass storage' device or is it an MTP device? Connect the phone, access it's data and post the output of:

I'm using Nokia XpressMusic via USB cable and it seems to be shown as 'mass storage' but I'm not sure (I'm using Polish language). I get following data after using your command:

[12466.510238] usb 3-3: SerialNumber: 354196027580271
[12466.512553] scsi3 : usb-storage 3-3:1.0
[12467.516557] scsi 3:0:0:0: Direct-Access Nokia Nokia 5310 Xpres 0000 PQ: 0 ANSI: 4
[12467.518816] sd 3:0:0:0: Attached scsi generic sg2 type 0
[12467.529460] sd 3:0:0:0: [sdb] Adjusting the sector count from its reported value: 3907585
[12467.529477] sd 3:0:0:0: [sdb] 3907584 512-byte logical blocks: (2.00 GB/1.86 GiB)
[12467.535505] sd 3:0:0:0: [sdb] Write Protect is off
[12467.535520] sd 3:0:0:0: [sdb] Mode Sense: 04 00 00 00
[12467.541497] sd 3:0:0:0: [sdb] No Caching mode page present
[12467.541510] sd 3:0:0:0: [sdb] Assuming drive cache: write through
[12467.565457] sd 3:0:0:0: [sdb] Adjusting the sector count from its reported value: 3907585
[12467.577438] sd 3:0:0:0: [sdb] No Caching mode page present
[12467.577451] sd 3:0:0:0: [sdb] Assuming drive cache: write through
[12467.586434] sdb: sdb1
[12467.600331] sd 3:0:0:0: [sdb] Adjusting the sector count from its reported value: 3907585
[12467.620297] sd 3:0:0:0: [sdb] No Caching mode page present
[12467.620311] sd 3:0:0:0: [sdb] Assuming drive cache: write through
[12467.620318] sd 3:0:0:0: [sdb] Attached SCSI removable disk
[12470.440355] FAT-fs (sdb1): error, fat_get_cluster: invalid cluster chain (i_pos 0)
[12470.440366] FAT-fs (sdb1): Filesystem has been set read-only

Rexilion
November 13th, 2012, 08:49 PM
[12470.440355] FAT-fs (sdb1): error, fat_get_cluster: invalid cluster chain (i_pos 0)
[12470.440366] FAT-fs (sdb1): Filesystem has been set read-only

There is your cause and explanation.

Seems like the filesystem is corrupt, or (which is always possible with Linux) the driver handling the filesystem is not capable of dealing with 'something there'.

I suggest you back-up your data and reformat it. Or alternatively, plug it in Windows and run a disk check (or even check that it works).

After some googling I find a more in depth explanation here (http://serverfault.com/questions/331779/how-do-i-debug-this-fs-error-on-a-flash-device) and a better way to workaround it (http://www.delodder.be/blog/linux/fat_get_cluster-invalid-cluster-chain-i_pos-0-fat-filesystem-panic-dev/) (instead of a full reformat). Furthermore, this page says it's because of an unclean disconnect. (https://help.ubuntu.com/community/Mount/USB)

loopinaloop
November 13th, 2012, 09:19 PM
Superb!
I see no problem with formatting my device. Can you drop a line or two? I'm reading those links now but I'm not sure which solution would be best. If there is one, simple method (like formatting my memory card) then I would stick to it.

Thanks a lot! With people like you Linux is no longer intimidating nor difficult. An excellent support that you provide is an antidote to any frustration that can arise while using this system without advanced computer skills. I appreciate your time. Again, thank you!

loopinaloop
November 14th, 2012, 02:22 AM
sudo fsck.msdos -aw /dev/sdb1

This command worked! Thanks again!