Storage free space. please share urs - Honor 7 Q&A, Help & Troubleshooting

Honor 7 has 16gb internal memory but my fon show Total: 3.86gb. as i know rom only take about 6gb space. so where the rest? and what you honor 7 space can u use?

studlolox said:
Honor 7 has 16gb internal memory but my fon show Total: 3.86gb. as i know rom only take about 6gb space. so where the rest? and what you honor 7 space can u use?
Click to expand...
Click to collapse
I can use 10.46GB. I have still 7.7GB free.
Sent from PLK-TL01H

studlolox said:
Honor 7 has 16gb internal memory but my fon show Total: 3.86gb. as i know rom only take about 6gb space. so where the rest? and what you honor 7 space can u use?
Click to expand...
Click to collapse
I had the same problem after update to b140. factory reset helped.

(CZ)jv14 said:
I had the same problem after update to b140. factory reset helped.
Click to expand...
Click to collapse
haha..tq..setled

What will happen if I remove SD card with lots of app install on it to swap it with another sim?

Code:
Filesystem Size Used Free Blksize
/system 2.4G 1.9G 494.2M 4096
/data 10.4G 4.1G 6.3G 4096
/data/sec_storage 17.7M 202.0K 17.5M 1024
/cust 495.9M 433.1M 62.9M 4096
/splash2 62.9M 220.0K 62.7M 4096
/storage/emulated 1.4G 0.0K 1.4G 4096
/mnt/media_rw/sdcard1 59.5G 29.2G 30.3G 131072
"ROM" uses a 2.4G partition
Data is 10.4G
The rest is other Android partitions.. (I've removed a lot from the df above; cache, modem, etc.)

my biggest problem ist, that the dalvik cache uses (in my opinion) an enormous amount of space. i have no idea why. i can only guess, that it needs more space because in /dat/dalvik-cache/ there is an arm and an arm64 dir
at the moment my dalvik's size is about 2,15 GB.

Related

Partition question

OK, I have a Gtab with the 11/15 FB build.
I am curious about the partitions. Really, why ? I have worked in Unix for a bunch of years and am a fan of few, large partitions. So why am I choosing 2048 ? Or the max if 4096 ?
If it were a Sun box (which is what i cut my teeth on) I would make the main card (disk) a 12 GB root partition and 4 GB swap.
Do the same rules not apply ? It looks like there are a few different partitions (/system, /data, etc) but my eyes cannot read the terminal emulator all that well.
Andy
Different beasts
aknipp said:
OK, I have a Gtab with the 11/15 FB build.
I am curious about the partitions. Really, why ? I have worked in Unix for a bunch of years and am a fan of few, large partitions. So why am I choosing 2048 ? Or the max if 4096 ?
If it were a Sun box (which is what i cut my teeth on) I would make the main card (disk) a 12 GB root partition and 4 GB swap.
Do the same rules not apply ? It looks like there are a few different partitions (/system, /data, etc) but my eyes cannot read the terminal emulator all that well.
Andy
Click to expand...
Click to collapse
This may not be 100% correct (& if it's not I'm sure someone will correct me).
Really no comparison between a Sun box & a tablet. Sun would be bigger & better hardware.
The tablet only has a 512M nand chip (that holds most of the os), 512M of ram (to run the os, apps & no dedicated graphics memory), a processor that is designed for low power vs performace & and a emmc...basically a thumb drive( in place of an hdd). On top of that Andoid is really a hydrid os (a linux kernel with a java vm to run apps).
As far as partitions go, here is the structure for the nand chip on MOST of the gTabs:
Partition 2 = BCT = boot Config Table
Partition 3 = PT = Partition Table (this list)
Partition 4 = EBT = Bootloader
Partition 5 = MBT = ?
Partition 6 = BLO = Viewsonic Bird Logo
Partition 7 = MSC = ? inandop.log /possibly inter kernel comm tween part9/10
Partition 8 = OGO = logodata (gTablet logo I believe)
Partition 9 = SOS = recovery kernel
Partition 10 = LNX = kernel
Partition 11 = APP = system(rom)
Partition 12 = CAC = cache
If you look at gtablet.cfg file in any of the nvflash packages you will see these partition definitions, fs types & sizes used by nvflash to create them.
You also have 2 additional partitions on the the 16GB internal sd (emmc):
/data - user apps & settings - only accessible via root access
/sdcard = user & app storage
Don't know why exactly why /data is set @ 2 G . Apps in Android don't have the bloat of desktop/PC apps and are considerably smaller. I can tell you that with 83 apps installed I still have nearly 1G of space left on mine out of the 2G.
For the most part, Android doesn't truly multitask apps like on a desktop. From what I understand, Android has it's own mechanism for freeing memory when needed (swapping). When space is needed, non running apps are terminated but the app is responsible for storing persistent data so that it can be reactivated (assuming the app saves persistent data) when called.
Hope this helps.
Al
Cool, thanks, I boosted it up to 4 GB, does not sound like that will hurt (had to reinstall because it was full- could not tell why)
aknipp said:
I am curious about the partitions. Really, why ? I have worked in Unix for a bunch of years and am a fan of few, large partitions. So why am I choosing 2048 ? Or the max if 4096 ?
Click to expand...
Click to collapse
As to what the various partitions are, I can elaborate a bit more on Al's post above. Try these 2 posts:
SD card partitions
NAND Flash partitions
The Android OS has its distributions (ROMs) divided into those partitions described above for pragmatic reasons which are not hard to figure out--mainly to enable easy upgrades of running distributions; with security being a secondary concern.
There is no reason why you couldn't merge some partitions together. For example, GtabComb-b3.3 merges /cache into /data at system bootup time. If you were willing to lose the protected read-only status of /system, that too could be merged with /cache+/data on the SD card by modifying the init rc files. You could muck around with the system at an even lower level since you have access to the source code. It's really up to you how far you want to go. The kernel doesn't care about the no. of partitions or the filesystems on them, or even where they are.
As for your question about the 2GB size of /data, that's just how VS deemed it to be when they released the gTab and that's the size that's followed by most custom ROMs. You can have a smaller or larger size if you want. I, for example, run 2 different ROMs--VEGAn-Tab 7.1 and GtabComb-b3.3--the former on the internal SD card and the latter on a micro SD card just by loading a different boot partition using CWM. And since my micro SD is just 2GB in size, I've shrunk my /data to 256 MB.
aabbondanza said:
From what I understand, Android has it's own mechanism for freeing memory when needed (swapping).
Click to expand...
Click to collapse
None of the currently used kernels swap; and neither does Android. That's why they kill apps when there is no memory.
Explains things very well. Thank you both.

[Q]The size of internal memory

I have the USA T-mobile Samsung Galaxy S2.
The spec sheet says the internal memory is 16GB, when I go to my phone and it says the system storage is only 1.97GB. Can someone explain to me why the difference?
simeezee said:
I have the USA T-mobile Samsung Galaxy S2.
The spec sheet says the internal memory is 16GB, when I go to my phone and it says the system storage is only 1.97GB. Can someone explain to me why the difference?
Click to expand...
Click to collapse
System storae is for applications u should have another section that says internal memory which is an internal sd card that should b close to 16 gb
Settings - Storage - also lists Sd Card + USB Storage + Device memory
Thanks for the quick replies.
So I went to settings > storage. It shows SD card, USB storage and System storage.
I understand System storage is how much space I can have for all my apps. But I'm not sure what the USB storage is.
simeezee said:
Thanks for the quick replies.
So I went to settings > storage. It shows SD card, USB storage and System storage.
I understand System storage is how much space I can have for all my apps. But I'm not sure what the USB storage is.
Click to expand...
Click to collapse
System storage (mine actually reads as "Device memory", but whatever) = space for apps to be installed (unless they can be moved to external memory)
USB storage = included "external" memory; i.e. what's left of the 16gb after system storage and whatever is partitioned for the OS. Usually around 13-14gb
SD card = external card you can plug into the phone to expand memory
USB storage is the default of where photos and videos are stored, and you can store other media (i.e. music, movies, etc) here as well, OR on the SD card.
Wrong forum, this is for the i9100 the international sgs2 not the T Mobile USA one which is very different. Clickme
veyka said:
Wrong forum, this is for the i9100 the international sgs2 not the T Mobile USA one which is very different. Clickme
Click to expand...
Click to collapse
While true enough, his question is general enough that it actually applies to all models of GS2.
ctomgee said:
While true enough, his question is general enough that it actually applies to all models of GS2.
Click to expand...
Click to collapse
Correct, but other people had posted the correct info, I though i should direct them to the right forum before they tried to flash anything though.
veyka said:
Correct, but other people had posted the correct info, I though i should direct them to the right forum before they tried to flash anything though.
Click to expand...
Click to collapse
Good point.
I was just looking into this and it seems the I9100 has only 14.08GiB?!?
Code:
./busybox df
Filesystem 1K-blocks Used Available Use% Mounted on
tmpfs 425264 32 425232 0% /dev
tmpfs 425264 0 425264 0% /mnt/asec
tmpfs 425264 0 425264 0% /mnt/obb
/dev/block/mmcblk0p9 516040 490772 25268 95% /system
/dev/block/mmcblk0p7 100784 4160 96624 4% /cache
/dev/block/mmcblk0p1 20144 8448 11696 42% /efs
/dev/block/mmcblk0p10 2064208 1311532 752676 64% /data
/dev/block/vold/259:3 12062752 3620128 8442624 30% /mnt/sdcard
tmpfs 31424512 3729088 27695424 12% /mnt/sdcard/external_sd
/dev/block/vold/179:25 31424512 3729088 27695424 12% /mnt/sdcard/external_sd
ignoring all the virtual tmpfs mountpoint and the external sdcard (/dev/block/vold/179:25) I'm left with
516 040 + 100 784 + 20 144 + 2 064 208 + 12 062 752 = 14 763 928
that's 14.08GiB / 14.76GB which is 1.25GB short of 16GB
(before someone even suggests that's because of Samsung using 10^9 instead of 2^30 please notice that I did calculate in both GiB and GB and it doesn't add up in either!)

Memory question

I am currently running TeamDRH 1.3.2 and my question is -
I can no longer install apps to my tablet, looking at my setup I have 1.4MB free in my internal ram, OK.
I also have a 32GB SD card installed that shows I have over 29GB free.
How do I install apps to my SD card? I can delete some of my apps off the internal ram if I can install them to the SD card.
Any suggestions out there?
Thanks ahead for the help.
_dave
_dave said:
I am currently running TeamDRH 1.3.2 and my question is -
I can no longer install apps to my tablet, looking at my setup I have 1.4MB free in my internal ram, OK.
I also have a 32GB SD card installed that shows I have over 29GB free.
Click to expand...
Click to collapse
What is the output of this command? (Use Terminal Emulator.)
Code:
$ [B]df[/B]
rajeevvp said:
What is the output of this command? (Use Terminal Emulator.)
Code:
$ [B]df[/B]
Click to expand...
Click to collapse
Filesystem Size Used Free Blksize
/dev 172M 48K 172M 4096
/mnt/asec 172M 0K 172K 4096
/mnt/obb 172M 0K 172M 4096
/system 247M 224M 22M 4096
/cache 169M 1M 168M 4096
/data 1G 394M 1G 4096
/mnt/microsd 29G 406M 29G 32768
/mnt/sdcard 13G 451m 12G 8192
/mnt/secure/asc: Permission denied
I see now it is my microsd card and not my sdcard that I need to install apps to.
Thanks ahead for any help on doing this.
-dave
_dave said:
Filesystem Size Used Free Blksize
/dev 172M 48K 172M 4096
/mnt/asec 172M 0K 172K 4096
/mnt/obb 172M 0K 172M 4096
/system 247M 224M 22M 4096
/cache 169M 1M 168M 4096
/data 1G 394M 1G 4096
/mnt/microsd 29G 406M 29G 32768
/mnt/sdcard 13G 451m 12G 8192
/mnt/secure/asc: Permission denied
I see now it is my microsd card and not my sdcard that I need to install apps to.
Click to expand...
Click to collapse
You do seem to have enough space on /data, although the values printed seem wrong to me. Post the output of this command:
Code:
$ [B]busybox df[/B]
rajeevvp said:
You do seem to have enough space on /data, although the values printed seem wrong to me. Post the output of this command:
Code:
$ [B]busybox df[/B]
Click to expand...
Click to collapse
The values look different because /cache is symlinked to the internal sdcard now. We needed to save room on the nand and this was the way that we achieved it. Going to Jellybean, the system partition needs over 300M of data and with our nand being only 512M space is getting tight.
fosser2 said:
The values look different because /cache is syslinked to the internal sdcard now.
Click to expand...
Click to collapse
You mean symlinked... I know about that and that's not it. It's the default df command. If you look closely, you'll see that it's rounding the values imprecisely. That's why I asked for the busybox version.
BTW, any idea why TeamDRH ICS doesn't let you move apps to SD cards?
rajeevvp said:
You mean symlinked... I know about that and that's not it. It's the default df command. If you look closely, you'll see that it's rounding the values imprecisely. That's why I asked for the busybox version.
BTW, any idea why TeamDRH ICS doesn't let you move apps to SD cards?
Click to expand...
Click to collapse
Well we removed the feature in our ICS build due to slowdowns. Now that we are working on jellybean it's not supported...
http://forum.xda-developers.com/showthread.php?t=1838419
fosser2 said:
Well we removed the feature in our ICS build due to slowdowns.
Click to expand...
Click to collapse
What sort of slowdowns--both partitions--/data and /sdcard--are on the same device, right?
Can you point me to all the git changes you guys made to get rid of that move to SD card feature in ICS? Thanks.
Now that we are working on jellybean it's not supported...
http://forum.xda-developers.com/showthread.php?t=1838419
Click to expand...
Click to collapse
Any specific details on this? Can't determine from that thread if it's the vendor who's removed the feature or if it's simply not there in the JB AOSP code.
rajeevvp said:
What sort of slowdowns--both partitions--/data and /sdcard--are on the same device, right?
Can you point me to all the git changes you guys made to get rid of that move to SD card feature in ICS? Thanks.
Click to expand...
Click to collapse
Man this is going to be tough... It happened a longg time ago. Here is the git where our rom is hosted
https://github.com/TeamDRH
It would be in the ICS branch obviously...as for which specific repo I'm really not too sure. Sorry
rajeevvp said:
Any specific details on this? Can't determine from that thread if it's the vendor who's removed the feature or if it's simply not there in the JB AOSP code.
Click to expand...
Click to collapse
As far as I know, It was actually removed from the JB AOSP code. It is also not in the CM10 code at all. Maybe I missed something but I believe its gone. As of now DRH is done with work on ICS and we will not be updating that rom anymore. JB has just been much more stable and smooth. The 3.1 kernel will soon be driving the JB rom also.
fosser2 said:
Man this is going to be tough... It happened a longg time ago. Here is the git where our rom is hosted
https://github.com/TeamDRH
It would be in the ICS branch obviously...as for which specific repo I'm really not too sure. Sorry
Click to expand...
Click to collapse
I was hoping that since you guys had to explicitly remove that move-to-sdcard feature from the ROM, I would get the exact git changesets. I don't relish going through that entire tree looking for the relevant changes--esp. now that my Java/C++ skillz are a fading memory.
It would be simpler to just ask whoever made those changes (if not you)--they'll be able to pinpoint it right away: whether its in the build configuration, in one of the device xml files, in the Settings app itself, or where ever else.
BTW, I'm still curious about those slowdowns that prompted the removal of the move-to-sdcard feature from DRH ICS. Apart from a slight initial setup cost (mostly CPU), there really isn't any extra I/O involved over the all-apps-in-/data case.
As far as I know, It was actually removed from the JB AOSP code. It is also not in the CM10 code at all. Maybe I missed something but I believe its gone.
Click to expand...
Click to collapse
OK, I'll see if I can confirm this too. It should be possible to get some definitive answers on this.
rajeevvp said:
I was hoping that since you guys had to explicitly remove that move-to-sdcard feature from the ROM, I would get the exact git changesets. I don't relish going through that entire tree looking for the relevant changes--esp. now that my Java/C++ skillz are a fading memory.
It would be simpler to just ask whoever made those changes (if not you)--they'll be able to pinpoint it right away: whether its in the build configuration, in one of the device xml files, in the Settings app itself, or where ever else.
BTW, I'm still curious about those slowdowns that prompted the removal of the move-to-sdcard feature from DRH ICS. Apart from a slight initial setup cost (mostly CPU), there really isn't any extra I/O involved over the all-apps-in-/data case.
OK, I'll see if I can confirm this too. It should be possible to get some definitive answers on this.
Click to expand...
Click to collapse
I will ask around for you and see what I can find.

[Q] Reclaiming Missing 6GB

I purchased an S4 knowing that, at least while on the stock ROM, only a little more than 9GB would be available to the user. I figured that installing a custom ROM would allow me to reclaim this missing space. However, every AOSP ROM I've tried installs to the 9GB of user space on the device and the remaining GB go missing. When stock is installed my S4 sees all 16GB only half of which is usable, and with an AOSP ROM installed my S4 only sees 9GB. Using TWRP I have wiped System, Data, Cache, and Dalvik and that does not return the missing space. My question is, does anybody know of a way to reclaim the missing 6GB or if it will ever be possible to reclaim the missing 6GB?
It's not that it goes missing. You have a partition size that would have to be reformatted to regain that usable space. The system partition will be 7gb and the Rom you install will go to that partition whether it is a 2gb, 1gb or 5gb rom. just flashing a smaller rom won't change that partition size.
Ok, missing is the wrong word but the effect is the same. How can I reformat the system partition so that my S4 has closer to 16GB of space available?
chronoquestion said:
Ok, missing is the wrong word but the effect is the same. How can I reformat the system partition so that my S4 has closer to 16GB of space available?
Click to expand...
Click to collapse
You can't.
They're rumors we might get back some of the storage. Buy an sd card. 32gb are like $15
Sent from my SCH-I545 using Tapatalk 2
Next question, is this problem specific to the Verizon S4 or is the same on all S4s? Can any of the S4s on the market be reformatted?
More Findings
I'm flashed as stock/root/debloated with the faux kernel. In my phone about/storage/misc files it shows System Memory as 6.38GB. I did a backup through TWRP from stock and here is some relevant logs:
/system | /dev/block/mmcblk0p16 | Size: 2753MB Used: 2497MB Free: 255MB Backup Size: 2497MB
Flags: Can_Be_Mounted Can_Be_Wiped Can_Be_Backed_Up Wipe_Available_in_GUI IsPresent
/data | /dev/block/mmcblk0p29 | Size: 9948MB Used: 1986MB Free: 7771MB Backup Size: 1777MB
Flags: Can_Be_Mounted Can_Be_Wiped Can_Be_Backed_Up Wipe_During_Factory_Reset Wipe_Available_in_GUI IsPresent Can_Be_Encrypted Has_Data_Media Is_Storage Is_Settings_Storage
I think I backed everything up too. The stock ROM must compute that 6.38GB from some other partition
chronoquestion said:
Next question, is this problem specific to the Verizon S4 or is the same on all S4s? Can any of the S4s on the market be reformatted?
Click to expand...
Click to collapse
I have a Sprint S4, and have the same problem. My initial thought would be to find a .pit file with a partition less that 6GB, but I don't know if that's possible or how hard it would be.

[Q] How to repartition internal memory

Is there any way to re-partition ROM eMMC ? since /cache has 500 MB ,it can be re - partitioned to merge into /data partition . so any body here know how to re-partition ROM ? is it possible ?
Parted dump:
Code:
31 106824kB 117268kB 10445kB boot
32 117268kB 127795kB 10527kB recovery
33 127795kB 603980kB 476185kB ext4 cache
34 603980kB 1543504kB 939524kB ext4 system
35 1543504kB 1551892kB 8389kB kpan
36 1551892kB 3958768kB 2406875kB ext4 userdata
Since the "important" partitions are towards the end, something can well be done (as long as you have full OS installation media in zip or nandroid format, plus some tools which may not even be needed on this phone)... If you can wait a week I'll try to write a guide
After some testing, it appears to be impossible, like there is some S-ON on the partition table area...
full partition table needed please..
Ryccardo said:
Parted dump:
Code:
31 106824kB 117268kB 10445kB boot
32 117268kB 127795kB 10527kB recovery
33 127795kB 603980kB 476185kB ext4 cache
34 603980kB 1543504kB 939524kB ext4 system
35 1543504kB 1551892kB 8389kB kpan
36 1551892kB 3958768kB 2406875kB ext4 userdata
Since the "important" partitions are towards the end, something can well be done (as long as you have full OS installation media in zip or nandroid format, plus some tools which may not even be needed on this phone)... If you can wait a week I'll try to write a guide
Click to expand...
Click to collapse
Hey bro, could you please provide me a full partition table in that same format?

Categories

Resources