Showing posts with label internal. Show all posts
Showing posts with label internal. Show all posts

Sunday, 25 October 2015

Accidently Wiped Internal Stoareg from my HTC One S - TWRP Shows no OS Found



Hi,
I have accidentally wiped the internal storage on my HTC One S and now when i boot phone TWRP shows no OS installed.
My phone does not has SD card. It uses internal storage so i don't know how to copy the files and install the ROM.

I tried fastboot and adb devices commands but it returns empty. I am a newbie in device rooting so i am not sure where to go from there. I appreciate your help in this matter
Can you please assist me in this matter.

Thanks



Xolo q3000 incfease internal memory



Dear PUDURAJA..

I hv read yr post and downloded all file regarding increasing internal memory of XOLO Q3000.
Please help me with the process. im unable to do that.



Can't access internal storage on stock roms based on .232 fw.



I have been trying the various stock based roms since i love the stock Xperience but after the .232 update, i can't access my internal storage using any file manager apps. nor titanium backup. I can see the used space and all in file managers as well as the Storage menu in settings. But when i open it, it says empty. I can also see it when connected to the computer as media storage and also access it via the computer. Its the problem in all stock .232 based roms for me. Is there anybody else with the same problem and a fix or is it just me?



Friday, 23 October 2015

Major problem after internal storage wipe.



Hi. I have a D850 and I accidentally did an internal storage wipe. Ever since then my phone boots up and all, but it does not show a navigation bar or a status bar. I am going around in circles trying to figure it out. I tried doing a factory reset and I'm having no luck whatsoever. When I mount my USB all I see is a TWRP folder. Is my phone ruined? Thanks in advance.



[Tutorial] LG Gpad v410 5.1 to 4.4 downgrade, root, & internal storage fix.



This method will indirectly allow you to root the LG Gpad v410 after it has been upgraded to Lollipop 5.1.1. Yes. Rooting LG v410 Lollipop. It's through a downgrade, but it works.

It took a while to get working, but here's how I did it. The process is straightforward, but the details matter greatly. You will brick your device if you mess up. Please read everything *first* before you do anything. Be sure you understand the process. I'll try to explain what's going on along the way.

An external SD card is extremely helpful for this process. You *could* adb push everything, but that will tedious.

First, you need some files.
The 4.4.2 KDZ which is a TEST OS, but it can be rooted and it downgrades to a Bump'able bootlaoder:
http://forum.xda-developers.com/g-pa...-v410-t3224867
The LG 2014 Flash Tool:
http://www.mediafire.com/download/fw..._Tool_2014.zip
Android LG Drivers:
https://www.androidfilehost.com/?fid=24052804347802528
Parted for Android. You can probably find it other places, but I found this file:https://dl.dropboxusercontent.com/u/...-all-files.zip
linked from here: http://www.droidviews.com/your-32gb-...heres-the-fix/
The Candy5 ROM (This will potentially save you some manual steps. Somewhat optional, but highly recommended):
http://forum.xda-developers.com/g-pa...-1-v2-t3111987
Flashify APK:
http://www.apkmirror.com/apk/christi...-apk-download/
TWRP for the v410:
http://forum.xda-developers.com/g-pa...0-410-t3049568
LG One Click Root:
http://forum.xda-developers.com/lg-g...lipop-t3056951
(You may use Purple Drake or whatever else you want. They all use the same root script as this does.)
Android SDK (specifically adb.exe. After installing go to SDK Manager and ensure that Android SDK Platform Tools is checked):
http://developer.android.com/sdk/index.html

For clarification below, when I have commands in "quotes" they are Windows commands. When they are in `backticks` they are commands that you run inside of ADB which actually run on your device....as root. Root can screw things up. Please be extra cautious. If you blame me for messing up your device I will laugh at you. But that's not gonna happen, right? Good. Let's go.

Now that you have everything, put it all into a folder where you can access it easily.
  1. Install the LG Drivers.

  2. Install Android SDK (or otherwise get adb.exe).

  3. Extract all of the archives.

  4. Move the KDZ to the LG Flash Tool 2014 folder.

  5. Put the tablet into Download Mode by powering it off, holding VolUp, and plugging in the USB cable. Press VolUP when instructed. You must be in Download mode before continuing.

  6. Run LGFlashTool2014.exe. Select the KDZ file. Click "CSE Flash". Click "Start". Select "English" and click OK. Do not change anything else.

  7. WAIT for the flash to continue. If you really want to brick your device, here's a good opportunity.

  8. The device will reboot into Android 4.4.2. You will only have 4GB of internal storage at this point. DON'T PANIC! We are fixing it.

  9. Enable USB debugging.

  10. Connect the device.

  11. Install and run LG One Click Root. Wait for the device to be rooted before proceeding.

  12. Copy the Flashify apk, TWRP image, and Candy5 ROM to your external SD card.

  13. Install Flashify and flash TWRP to the recovery partition.

  14. Use the Flashify menu to reboot in to recovery.

  15. DON'T PANIC! You will get white vertical lines on the boot screen from now on. They only show up during boot animations. A small price to pay. This may be fixed at a later date.

  16. Things get tricky here. Copy parted to your external SD card and then run "adb shell" from Windows to get a shell in TWRP.

  17. In TWRP, unmount /data by tapping Mount > uncheck Data.

  18. `cp /sdcard/parted /sbin/` This copies the parted binary to /sbin so it can be executed in the path. I had trouble running `/sdcard/parted`, but YMMV.

  19. `chmod +x /sbin/parted` Make it executable.

  20. `parted /dev/block/mmcblk0` Run parted against the internal mmc

  21. `p` Prints the partition table.

  22. `rm 34` Deletes partition 34 labeled "grow". This is the root of our problem. The KDZ apparently only creates a 4GB partition, I assume so the test build has maximum compatibility with all sized devices.

  23. `rm 33` Deletes partition 33 "userdata"

  24. `p` Print to verify

  25. `mkpartfs` Create a partition and put a filesystem on it. If we expand the partition it won't help us because the filesystem is still only 4 GB.
    name: userdata
    type: ext2 (the tool only supports ext2. This is ok for now.)
    start: 3439MB (the end of part 32. IT MAY BE DIFFERENT FOR YOU!) Be sure you do not omit the MB part otherwise the offset will overwrite another critical partition.
    end: 15.8GB (where "grow" ended above. IT MAY BE DIFFERENT FOR YOU!) Be sure you do not omit the GB part otherwise the offset will overwrite another critical partition.

  26. `p` Verify. For me it did not name the partition properly. Gotta fix that.

  27. (if necessary) `name 33 userdata` This is critical for mount to find it in /dev/block/platform/msm.sdcc.1/by-name/ on some/all ROMS.

  28. `p`. Verify one last time. Compare it to my partition table in the attachments. If you want to brick, delete some random partitions here.

  29. Flash Candy5 with TWRP. It's only 239 MB, so it will flash quickly. I do this because Candy5 will reformat mmcblk0p33 from ext2 to ext4 for you. It does this as part of it's system boot, apparently. If you install a different ROM that does not do this, you can reformat it by running `make_ext4fs /dev/block/mmcblk0p33`. If your ROM does not have make_ext4, it likely has some differnt method to make an EXT4 filesystem. `/system/bin/mke2fs -t ext4 /dev/block/mmcblk0p33` may work better. Just flash Candy5 and be done with it.

  30. Tap Wipe > Swipe to Factory Reset.

  31. Tap Reboot > System.

  32. WAIT!!! It will take a minute for the ROM to start the first time. You will have white lines and and possibly a white screen. WAIT. It's moving the DEX files to cache, formatting a partition, creating default folders on the internal storage, and several other things. WAIT! When the screen goes dim or turns off then it's ready.

  33. Cycle the display or turn it on. You should be at the Candy5 lock screen.

  34. USB debugging is on by default. Run "adb shell".

  35. `mount | grep userdata` Make sure mmcblk0p33 is mounted.

  36. `df` Make sure /data is 11.3 GB (or whatever size it is on non-16GB devices).

  37. HELL YEAH, you downgraded, rooted, and fixed the partition problem. Enjoy your tablet!


Thanks to dopekid313 for finding the KDZ.
Thanks to timmytim for Candy5.
Thanks to the creators of the root script, flashify, TWRP, and XDA for being so awesome.

If I missed anything, please let me know. As far as I know this is the very first tutorial that details what is necessary to accomplish this. Please hit the Thanks button on every thread that you visit to download files!








Attached Thumbnails


Click image for larger version<br/><br/>Name:	v410fixed.PNG<br/>Views:	N/A<br/>Size:	20.5 KB<br/>ID:	3516708
 

Click image for larger version<br/><br/>Name:	v410parttable.PNG<br/>Views:	N/A<br/>Size:	21.6 KB<br/>ID:	3516709
 














Nexus 5X internal speaker is worse than Nexus5!



I hear distortion sound from default ringtone since I received N5X. Its totally different sound from listening by Headphone. I remember that N5 was not like this. even N5 has terrible speaker.
do I need to contact google and exchange to new one??



Unable to set my SDHC card as internal storage in stock android marshmallow.



I have downloaded the alpha stock rom for xperia M from PecanCM with the patch he has released in the thread to enable internal storage formatting of sd cart. However, my old 2 Go sd card works fine with it, but with my 16 Go card , I get a message that my sd card is too slow, so, if I go back, I get stuck at 60%, if I choose "OK", I get the choice of importing data on my sd card which make the setting process to crash, or doing Nothing, which induce a congratulation message, but make my sd card corrupted.
If I format my sd card as external, I have no problem.

Is there a solution for the moment?



Thursday, 22 October 2015

Can't detect internal storage on explorer



I got my 5x, unlocked the bootloader, and then tried to copy some files to it. However, while the device is recognized by adb and explorer, opening the device on explorer doesnt show the internal storage file structure. I think it might be related to device drivers? What did you guys install in terms of drivers.



Sony XPERIA Z5 Compact has only 21 GB free internal storage - why Sony lies?



Sony XPERIA Z5 Compact have 32 GB internal storage, but when you start the phone and doesnt install anything, there is only 22 GB free memory. If you update preinstalled application, there is only 21 GB. I understand, that Android take some place. But i really don't understand, how can Sony Mobile said on official website, that:

"**Memory comprises approximately 5 GB of firmware, plus 27 GB of “Internal storage” for music, pictures and films, and downloaded applications and their data."

source - http://www.sonymobile.com/global-en/...pecifications/

I like many Sony XPERIA smartphones, record about 2500 videos about that and work hard to support Sony Mobile company. But this is not good information... If there will be information about 10 GB firmware on Sony website, no more problem. But for now there is 5 GB space which i miss in my XPERIA Z5 Compact (and Z5 too).








Internal LDI? (Verizon G4)



Wondering if anyone knows if there are any internal LDI's in the Verizon LG G4.

I see the LDI on the battery and between the SIM and battery contacts.



Does userdata_64G.img flash wipe internal storage partition ?



Hello,

Does userdata_64G.img flash wipe internal storage data ?

Thank you



lost my phones internal memory - Samsung galaxy grand quattro



I lost my phones internal memory(Samsung Galaxy Grand Quattro). At first it has 8 GB internal and more than 5 GB usable. and my phone is dead, after repairing it, I only showing usable memory as 1.48 Gb. Is their any way to get the balance phone memory. Plz help me guys.:(:(:(:(:(:(:(:(



internal storage issue (root)



Hey all

Recently testing out a few roms and ran into some issues. When installing apps I had google play crash and screenshots were saying it was protected or media is full.
Seems my internal memory is somewhat there? Incorrect file system possibly (not sure where to check this)

Es File explorer and PC connection will read how much space is on the card and taken. However, both read internal storage as empty.
Team Win recovery file manager will read internal memory fine?
Tried to mount memory from TW recovery, won't show up on PC

Is my memory on the wrong file system?

How can I resolve this? (I don't mind loosing all data and starting over)


For anyone wondering steps taken to get into this...
Phone was fine on this pre rooted slim rom
went to test this extended battery rom
did factory reset and re-installed slim, ran into boot loops
Used Philz recovery to "clean to install new rom" and wiped data..
Re installed slim rom
Now having issues :(

Thanks in advance



Wednesday, 21 October 2015

Galaxy S2 Cm12.1-20150909 problem with internal storage



Hi,
I just noticed strange thing when prowling in ESFile Explorer. My LOST.dir folder "takes" whole 143GB of data. I noticed that when I was cleaning my phone with SD Maid - when scanning it shows "only" 15GB ready to delete, but it finally fail every time. In Disk Usage it also shows so gigantic LOST.dir folder. Nor CCleaner help too. I rebooted my phone twice, but it gave no result.
The last few days I was playing N4S:NL, today it failed a couple times during the loading screen, so I decided to reinstall it. Suprisingly during the uninstallation process it didn't ask me if I want to uninstall data folder of the app too.
I can connect the phone to a PC with no issues, I thought that deleting LOST.dir in Windows Explorer can help, but I was mistaken.
Does any one have some advice what should I do? I would rather not to reflash the ROM or wipe it in recovery.



Internal Storage Issue !!!!



Hey all i got problem with my phone, and i have been searching for a solution for over 2 months and cant find any SO let me explain whats going wrong
I got a Samsung galaxy note 1 GT-N7000 (16 GB) okay not bad for an old phone
MY ROM is CM 12.1 (5.1.1) Lollipop Thats working good for now
The issue is That MY internal storage is divided into 2 partitions
1. Internal storage
Size = 1.97 GB
Free = 905 MB Notice i only have 2 games and 3 apps ONLY
2. Internal storage (also)
Size = 11.07 GB
Free = 6-7 GB
3. SD card really doesn't matter i have a bunch of cards that's not the issue
.So I know that the first internal storage is the device storage and apps and stuff like that and the second one is my media and file storage okay i got
so lets say my phone is compatible with a 2 GB game on play store a free to play game and when i download it, it downloads 650mb then the games opens and begins to extract the file into my 1.97 GB partition
the weird thing is that the 650mb that i downloaded is on my 11.07 GB partition ??????
SO if anyone have tried to fix this issue and got it working plz help me OUT im Dying HERE
If u want to check out the game ON play store ITS called (VAINGLORY)
AND THANK YOU ALL



Contacts storage taking up all internal memory



Hi
my phone has become unusable as my Contacts Storage app data keeps filling up internal memory. As soon as I try and uninstall an app to free some memory the CS app fills it up. I have checked with Diskusage app and it's now at 3.5GB+. Tried to backup contacts to perform reset but Contacts app as well as many other apps do not open due to lack of available memory as it is all filled up by Contacts Storage. I would not like to clear data from the Contacts Storage app and lose all contacts... but what to do? Is there any viable alternative?
Thanks
Marco