Apps can't access the internal storage! - Samsung Galaxy Nexus

A few days ago I rooted my GNexus, now apps can't access the internal storage. I can't take pictures, and I can't download from the internets. I've tried AOKP and ParanoidAndroid.
Sent from my Galaxy Nexus using xda app-developers app.

fix permissions

danger-rat said:
fix permissions
Click to expand...
Click to collapse
+1 on fixing permission
You can do that by installing ROM manager then scroll down and click on fix permission
Sent from my Galaxy Nexus using xda app-developers app

I've tried fixing permissions twice, first by using CWM Touch, and then with ROM Manager.
Nothing works.
Sent from my Galaxy Nexus using xda app-developers app

Volun said:
I've tried fixing permissions twice, first by using CWM Touch, and then with ROM Manager.
Nothing works.
Sent from my Galaxy Nexus using xda app-developers app
Click to expand...
Click to collapse
huh that's odd... I had similar problem, but fixing permission fixed it...
Sent from my Galaxy Nexus using xda app-developers app

Go to "devloper options"...
Sent from my Galaxy Nexus using xda premium

walidhiphop said:
Go to "devloper options"...
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
And then, what should I do from there?

You probably need to chown the problematic folders then...

danger-rat said:
You probably need to chown the problematic folders then...
Click to expand...
Click to collapse
What?

It's a Linux command.
It changes the ownership of files and folders.
If you have any other directories/files that you can't modify or delete, then boot into CWM recovery, plug in the USB cable, go into adb shell. Also make sure that /data is mounted in the CWM mounts menu. Then:
cd /data/media
chown -R media_rw.media_rw *

Volun said:
And then, what should I do from there?
Click to expand...
Click to collapse
Is the option 'protect USB storage' ticked?

Petrovski80 said:
Is the option 'protect USB storage' ticked?
Click to expand...
Click to collapse
No.

Then it must be a permission / owner issue.
Sent from my Galaxy Nexus using Tapatalk 2

Related

Boot animations

I've seen the post for the custom boot animations for the gnex but I get confused on how to install them on my phone. Is there an easier way I could do it like by flashing it through CWM?
Sent from my Galaxy Nexus using xda premium
There's really no need to flash boot animations... just drop the bootanimation.zip file in /data/local
Code:
> adb push bootanimation.zip /data/local/
Where do find that?
Sent from my Galaxy Nexus using xda premium
fk.gregor said:
Where do find that?
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
Or just download the bootanimation.zip from whatever post you want and then copy it to /data/local/ using your favorite on-device file manager.
The whole .zip file?
Sent from my Galaxy Nexus using xda premium
fk.gregor said:
The whole .zip file?
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
yes
I just copy it to data/local then it'll do everything on its own?
Sent from my Galaxy Nexus using xda premium
yes
What file manager do recommend?
Sent from my Galaxy Nexus using xda premium
fk.gregor said:
What file manager do recommend?
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
I like Solid Explorer beta
GooglePlaylink
codesplice said:
There's really no need to flash boot animations... just drop the bootanimation.zip file in /data/local
Code:
> adb push bootanimation.zip /data/local/
Click to expand...
Click to collapse
Interesting... ive always placed them in /system/media/ though with your way you can easily revert the stock anni.
Thanks for the tip.
mentose457 said:
Interesting... ive always placed them in /system/media/ though with your way you can easily revert the stock anni.
Thanks for the tip.
Click to expand...
Click to collapse
And it doesn't get overwritten with a ROM flash.
I'll take this opportunity to post the two stock bootanimation, one is the original android logo, the other is the google logo.
I keep getting lost. All I need to do is place the zip file in the data/local and its set?
Sent from my Galaxy Nexus using xda premium
fk.gregor said:
I keep getting lost. All I need to do is place the zip file in the data/local and its set?
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
Yup, that's it. Just make sure it is named exactly "bootanimation.zip"

Please help i have an strange problem:(

I have an problem, i cant delete anything or download anything anymore via my phone, i can install roms that are inside, but i tried 3 roms and i keep having the problem, yesterday i i changed to TWRP recovery, could this be an problem? Any help is very apriciated, also cant put anything on the phone when mounted to pc
Sent from my Galaxy Nexus using xda premium
Sent from my Galaxy Nexus using xda premium
eggyenergy said:
I have an problem, i cant delete anything or download anything anymore via my phone, i can install roms that are inside, but i tried 3 roms and i keep having the problem, yesterday i i changed to TWRP recovery, could this be an problem? Any help is very apriciated, also cant put anything on the phone when mounted to pc
Sent from my Galaxy Nexus using xda premium
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
Fix permissions?
Use fastboot to reflash cwm, if you want.
try using http://www.wugfresh.com/
bk201doesntexist said:
Fix permissions?
Use fastboot to reflash cwm, if you want.
Click to expand...
Click to collapse
I tried fixing permission and i will try fastboot flash recovery tonight thanks but i also seem to have 2 storage places:s sdcard0 and storage, with the same inside it, maybe this is preventing downloading and such? I tried to delete sdcard0, but one second later its back
Sent from my Galaxy Nexus using xda premium
benb1974 said:
try using http://www.wugfresh.com/
Click to expand...
Click to collapse
Can you explain me what i need brother? I really apriciate it
Sent from my Galaxy Nexus using xda premium
I saw that the permissions of storage and sdcard0 are different, i set them the same in root explorer and rebooted and they changed back, nothing helps hope flashing CWM Recovery will help
Sent from my Galaxy Nexus using xda premium
Yes, permissions will come back, they're set on init.rc.
https://www.codeaurora.org/gitweb/q...70ab1d0b88e4170504d645b5c685468dd8abb17;hb=jb
1 import init.tuna.usb.rc
2
3 on early-init
4 export EXTERNAL_STORAGE /storage/sdcard0
5 mkdir /storage 0050 system sdcard_r
6 mkdir /storage/sdcard0 0000 system system
7 # for backwards compatibility
8 symlink /storage/sdcard0 /sdcard
9 symlink /storage/sdcard0 /mnt/sdcard
Click to expand...
Click to collapse
As you can see, /sdcard/ and /mnt/sdcard are symlinks of /storage/sdcard0.
bk201doesntexist said:
Yes, permissions will come back, they're set on init.rc.
https://www.codeaurora.org/gitweb/q...70ab1d0b88e4170504d645b5c685468dd8abb17;hb=jb
As you can see, /sdcard/ and /mnt/sdcard are symlinks of /storage/sdcard0.
Click to expand...
Click to collapse
So you have any idea what is my problem?
Sent from my Galaxy Nexus using xda premium
eggyenergy said:
So you have any idea what is my problem?
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
which twrp version are you using? i used cwm 6.x after getting issues on flashing JRO03C; didn't have issues accessing my device through adb. A user over @TWRP thread suggested updating to 2.2.x.
have you tried fully wiping the device with fastboot? including userdata? then reflashing cwm, booting to recovery directly from bootloader, push rom over with adb, and reflashing rom?
bk201doesntexist said:
which twrp version are you using? i used cwm 6.x after getting issues on flashing JRO03C; didn't have issues accessing my device through adb. A user over @TWRP thread suggested updating to 2.2.x.
have you tried fully wiping the device with fastboot? including userdata? then reflashing cwm, booting to recovery directly from bootloader, push rom over with adb, and reflashing rom?
Click to expand...
Click to collapse
Im on twrp 2.2.0 i believe, can you explain me how in an PM mate?
Sent from my Galaxy Nexus using xda premium
I havr some knowledge of fastboot and have everything pre installed on my laptop btw
Sent from my Galaxy Nexus using xda premium
Can i do wipe internal memory in TWRP? Or doesnt this work for my problem?
Sent from my Galaxy Nexus using xda premium
Or format data? Any idea somebody i really could use some help
Sent from my Galaxy Nexus using xda premium

Can't mount with root explorer?

I am trying to edit some stuff in the system, but root explorer won't mount, if i press the mount r/w nothing happens. I have also tried es explorer with the "mount file system" checked and i just get a "sorry, operation failed". I am rooted and have given them both su permission. I tried having su forget the apps and regive them permission, didn't help. Rebooted, fixed permissions and still a no go. Any one have any ideas? I am running stock rom and kernel.
Sent from my SGH-T989 using Tapatalk 2
elflip88 said:
I am trying to edit some stuff in the system, but root explorer won't mount, if i press the mount r/w nothing happens. I have also tried es explorer with the "mount file system" checked and i just get a "sorry, operation failed". I am rooted and have given them both su permission. I tried having su forget the apps and regive them permission, didn't help. Rebooted, fixed permissions and still a no go. Any one have any ideas? I am running stock rom and kernel.
Sent from my SGH-T989 using Tapatalk 2
Click to expand...
Click to collapse
Did you restore a nand backup with cwm 5026 or 5027?
Sent from my SGH-T989 using xda premium
djtheraven said:
Did you restore a nand backup with cwm 5026 or 5027?
Sent from my SGH-T989 using xda premium
Click to expand...
Click to collapse
Restored a nand backup of stock rom with 5026. Is that the problem?
Sent from my SGH-T989 using Tapatalk 2
Other people have been having this problem with nand restores too. The only solution I've seen is a wipe and fresh install.
Sent from my SGH-T989 using xda app-developers app
elflip88 said:
Restored a nand backup of stock rom with 5026. Is that the problem?
Sent from my SGH-T989 using Tapatalk 2
Click to expand...
Click to collapse
Yep...flash one of the touch recoveries and then restore again and you will be fine...
Sent from my SGH-T989 using xda premium

Need Help

So here is a great F*ck on my part.. i formatted system, data, and cache without having a rom ready to install saved on my phone..... How do i push a rom to cwm so i can install it?
Use the gnex toolkit to flash the stock ROM. Its in the first sticky.
Sent from my Galaxy Nexus using xda premium
Or if you can set up adb for your phone. Just download a rom and push it to your sdcard
Sent from my Galaxy Nexus using xda app-developers app
DarrellRaines said:
Use the gnex toolkit to flash the stock ROM. Its in the first sticky.
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
Just in case the Sticky didn't stick!! Galaxy Nexus Toolkit
Wow toolkit...download a ROM put it in the folder adb is in type:
adb push filename.zip /sdcard
Sent from my Galaxy Nexus using xda premium
Beamer9408 said:
Wow toolkit...download a ROM put it in the folder adb is in type:
adb push filename.zip /sdcard
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
What he said.That is a simple skill everyone that flashes roms should have. Avoid tool kits if possible
You can also mount your pc to storage from cwm and just copy a Rom zip to your storage.
Sent from my Galaxy Nexus using Xparent Cyan Tapatalk 2
Thanks
I adb's it w/o a toolkit.. should have learned that a long time ago
Stoney 666 said:
You can also mount your pc to storage from cwm and just copy a Rom zip to your storage.
Sent from my Galaxy Nexus using Xparent Cyan Tapatalk 2
Click to expand...
Click to collapse
just a note, if you're talking about mounting /sdcard/ in cwm to see the "sdcard" on OS file explorer: afaik, that won't work. only adb will work.
if 'adb push file /sdcard/' doesn't work in recovery, use 'adb push file /data/media'
like people said before, can't get any simpler than this.

Help please

So I'm new to the s3 I successfully rooted and installed cwm. I made a back up of my stock 4.1.2 ROM but when I installed a new ROM my back up went away. On my previous phones in cwm when you wipe data it didn't wipe any backup. Now it did. How can I prevent this from happening and and does anyone please have a 4.1.2 stock t mobile ROM cwm backup!? Would be very much appreciated
Sent from my SGH-T999 using xda app-developers app
What rom did you install? It's probably under /0 folder.
Sent from my SGH-T999 using xda app-developers app
Cm 10.2
Sent from my SCH-R760 using xda app-developers app
chrisram88 said:
What rom did you install? It's probably under /0 folder.
Sent from my SGH-T999 using xda app-developers app
Click to expand...
Click to collapse
And its not the 0 folder I've checked it and the device with es3 file manager
Sent from my SCH-R760 using xda app-developers app
tamalepirates said:
So I'm new to the s3 I successfully rooted and installed cwm. I made a back up of my stock 4.1.2 ROM but when I installed a new ROM my back up went away. On my previous phones in cwm when you wipe data it didn't wipe any backup. Now it did. How can I prevent this from happening and and does anyone please have a 4.1.2 stock t mobile ROM cwm backup!? Would be very much appreciated
Sent from my SGH-T999 using xda app-developers app
Click to expand...
Click to collapse
It should be on the root of the internal storage. To prevent this, stick to one version of the os. No one is going to give you their backup/nandroid. Go through the development section, there's a few 4.1.2 stock Roms with root.
chrisram88 said:
What rom did you install? It's probably under /0 folder.
Sent from my SGH-T999 using xda app-developers app
Click to expand...
Click to collapse
It would be under the /0 if op made the backup after flashing and booting up the ROM.
Sent from my Nexus 4 using XDA Premium 4 mobile app
Da Kine said:
It should be on the root of the internal storage. To prevent this, stick to one version of the os. No one is going to give you their backup/nandroid. Go through the development section, there's a few 4.1.2 stock Roms with root.
It would be under the /0 if op made the backup after flashing and booting up the ROM.
Sent from my Nexus 4 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
What do you mean stick to one version of os. Does anyone have a backup without logging in to a gmail account. So its completely stock
Sent from my SCH-R760 using Tapatalk
In my past experience with cwm wiping data always wiped the internal storage.. So one way to prevent it from happening is to make backups to the external sdcard instead of internal.. I don't know how it works now because I've been using twrp for a while now.. And there is stock ROMs in the development section, you can just download one and flash it
Sent from my SGH-T999 using Tapatalk
Okay I have it some what fixed I found my backups in the ROM manager app. But can't find them through a file manager app. But my back up is in my phone some where but only accessible from ROM manager.
tamalepirates said:
Okay I have it some what fixed I found my backups in the ROM manager app. But can't find them through a file manager app. But my back up is in my phone some where but only accessible from ROM manager.
Click to expand...
Click to collapse
Normally rom backup is secured and will not be wiped
You can download es file explorer and give root permission
Go to /device,- mnt folder - shell folder - you will find cwm folder and in that backup folder containing your all backup
Try it
Sent from my SAMSUNG-SGH-T999 using XDA Premium 4 mobile app
anil2653 said:
Normally rom backup is secured and will not be wiped
You can download es file explorer and give root permission
Go to /device,- mnt folder - shell folder - you will find cwm folder and in that backup folder containing your all backup
Try it
Sent from my SAMSUNG-SGH-T999 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
How do I allow es3 root permission. I have es3 I've went to mnt/shell/ but shell is empty
Sent from my SGH-T999 using Tapatalk
tamalepirates said:
How do I allow es3 root permission. I have es3 I've went to mnt/shell/ but shell is empty
Sent from my SGH-T999 using Tapatalk
Click to expand...
Click to collapse
anil2653 said:
Normally rom backup is secured and will not be wiped
You can download es file explorer and give root permission
Go to /device,- mnt folder - shell folder - you will find cwm folder and in that backup folder containing your all backup
Try it
Never mind I found out how thank you man life saver! I'll back those up to an external SD card thanks so much
Sent from my SAMSUNG-SGH-T999 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Sent from my SGH-T999 using Tapatalk

Categories

Resources