Whats taking 20g of memory?

Charmed Juan

Well-known member
Dec 19, 2009
323
10
0
Visit site
My Xoom is about 3 weeks old and I have 26G of memory full???????
All of it is Media. When I look at the files I can't find anything to account for this.

Any ideas?
 

Maikai.Guy

Well-known member
Jan 15, 2011
594
64
0
Visit site

TDR

Well-known member
Mar 29, 2011
79
15
0
Visit site
In my reply to that thread, I pointed to my own experience with the storage gobbling bug. To see if you're getting the same problem I had, use adb shell or a Terminal Emulator app on the Xoom and type "ls -l /data/tombstones". You ought to see something like:
Code:
$ ls -l /data/tombstones
ls -l /data/tombstones
-rw------- system   system      28546 2011-04-23 13:17 tombstone_00
-rw------- system   system      24782 2011-04-23 13:17 tombstone_01
-rw------- system   system      19016 2011-04-23 13:17 tombstone_02
-rw------- system   system      52618 2011-04-23 13:17 tombstone_03
-rw------- system   system      36636 2011-04-23 13:17 tombstone_04
-rw------- system   system   28543461376 2011-04-23 17:01 tombstone_05
-rw------- system   system      56208 2011-04-23 13:16 tombstone_06
-rw------- system   system      51300 2011-04-23 13:16 tombstone_07
-rw------- system   system      28847 2011-04-23 13:17 tombstone_08
-rw------- system   system      35094 2011-04-23 13:17 tombstone_09

The 4th column is file size in bytes. In my case I had a 26GB tombstone_05 file that caused the low space warning to come up. You need to have root on your device to delete these files.
 

Smokexz

Well-known member
Aug 30, 2010
851
34
0
Visit site
I have been very fortunate with mine, no issue like that Wifi only Xoom with Tiamit Kernel 1.4.0

Sent from my Xoom
 

TDR

Well-known member
Mar 29, 2011
79
15
0
Visit site
I shouldn't have to root my device to fix this.
Just offering my suggestion. A factory reset would clear it out as well.

As a preventative measure, I'd avoid putting any media files the Xoom can't natively handle on the device, even if you don't play them.
 
Last edited:

TJH132

Well-known member
May 5, 2010
501
6
0
Visit site
I ended up doing a factory reset. Kind of a hassle as I was away from home and speedy internet access, but it got the job done. I'm being careful about media since it looks to be the common denominator.

Good luck.

TJH
 

DeanneJensen

New member
Oct 10, 2010
2
0
0
Visit site
I have this problem and looked in my folders trying to find large files using ES File Explorer. I have found a repeating set of folders here:


/sys/module/usbhid/drivers/hid:generic-usb/module/drivers/hid:generic-usb/module


These folders keep going and going and going. I tried to look at the properties of the sys/module folder but the file size kept going and going and going. I ran it all night and it was still running in the morning at 1.25GB and counting. Is it safe to delete the repeating set of folders? Does anyone know what these folders are used for?


Deanne
 

cstambaugh

Active member
May 5, 2011
32
0
0
Visit site
I have this problem and looked in my folders trying to find large files using ES File Explorer. I have found a repeating set of folders here:


/sys/module/usbhid/drivers/hid:generic-usb/module/drivers/hid:generic-usb/module


These folders keep going and going and going. I tried to look at the properties of the sys/module folder but the file size kept going and going and going. I ran it all night and it was still running in the morning at 1.25GB and counting. Is it safe to delete the repeating set of folders? Does anyone know what these folders are used for?


Deanne

I'm wondering if its a bug in 3.0 to create a new driver folder every time it connects to something via USB...
 

astroguy#AC

New member
May 5, 2011
2
0
0
Visit site
I have this problem and looked in my folders trying to find large files using ES File Explorer. I have found a repeating set of folders here:


/sys/module/usbhid/drivers/hid:generic-usb/module/drivers/hid:generic-usb/module


These folders keep going and going and going. I tried to look at the properties of the sys/module folder but the file size kept going and going and going. I ran it all night and it was still running in the morning at 1.25GB and counting. Is it safe to delete the repeating set of folders? Does anyone know what these folders are used for?


Deanne

The /sys directory is a virtual filesystem. It is created dynamically by the kernel, and contains information on the hardware as well as various kernel settings. It also allows you to change some kernel-level settings. It does not actually exist on the disk; it is mounted at /sys during boot, so there is nothing to delete. Due to its layout, any attempt to calculate its "size" will probably never end, since each directory usually contains a link back to its parent system, thus setting things up for an infinite loop... at least until you reach the maximum path length.

Just in case you are not familiar with Linux/Unix systems, there are no drive letters. Instead, disks/partitions are "mounted" at some location in the directory tree, which starts with "/". As an example, "/data/example/file1" could be on a separate disk from "/data/file1".