Where is the space available on my SD?
|
23rd Mar, 2016, 10:38 PM
Post: #1
|
|||
|
|||
Where is the space available on my SD?
Hi.
I´m a new user of Xbian. I have a problem with the available space on my SD. Only 400 Mb free of 8 Gb. only xbian with some widgets and skins and sickrage. ¿this is normal occuped space? I executed three commands: du -h / | grep ^[0-9].K >filesKb.txt du -h / | grep ^[0-9].M >filesMb.txt du -h / | grep ^[0-9].G >filesGb.txt the addition of sizes of every line in three files is much lower than 4 Gb, but when I do a df -h / the result is: Filesystem Size Used Avail Use% Mounted on /dev/mmcblk0p2 7.2G 6.5G 424M 94% / Where are the other 3Gb ? How can I see where is my lost space? thanks in advance. |
|||
24th Mar, 2016, 03:14 AM
Post: #2
|
|||
|
|||
RE: Where is the space available on my SD?
Quote:Where are the other 3Gb ? How can I see where is my lost space? Probably in snapshots. You can manage those snapshots by cmdline program btrfs-auto-snapshot See also here |
|||
30th Mar, 2016, 12:41 AM
Post: #3
|
|||
|
|||
RE: Where is the space available on my SD?
Removing all snapshot with:
sudo btrfs-auto-snapshot list | grep -v /@$ | grep auto-snap | xargs -L1 sudo btrfs-auto-snapshot destroy have recovered no more than 200Mb /dev/mmcblk0p2 7.2G 6.5G 624M 92% / |
|||
30th Mar, 2016, 02:31 AM
(This post was last modified: 30th Mar, 2016 02:44 AM by Nachteule.)
Post: #4
|
|||
|
|||
RE: Where is the space available on my SD?
Hmmm, please show me the output of sudo btrfs filesystem df /
Terminal sudo btrfs filesystem df / Data, single: total=6.22GiB, used=3.43GiB System, DUP: total=32.00MiB, used=4.00KiB System, single: total=4.00MiB, used=0.00B Metadata, DUP: total=439.00MiB, used=220.03MiB Metadata, single: total=8.00MiB, used=0.00B GlobalReserve, single: total=76.00MiB, used=0.00B That's my output of a 2.5 year old rpi1 installation (7.2G root partition) and sudo du -d 1 -h --exclude="/proc" --exclude="/sys" --exclude="/dev" / could be helpful Terminal sudo du -d 1 -h --exclude="/proc" --exclude="/sys" --exclude="/dev" / 8,6M /bin 51M /boot 7,5M /etc 650M /home 167M /lib 0 /media 7,2M /opt 72K /root 356K /run 15M /sbin 0 /srv 4,0K /tmp 606M /usr 124M /var 0 /xbmc-backup 0 /net 0 /mnt 0 /selinux 1,6G / |
|||
30th Mar, 2016, 04:00 AM
Post: #5
|
|||
|
|||
RE: Where is the space available on my SD?
I would check your sickrage folders as these have a habit of filling up.
If that doesn't help, try installing the "tree" command as this should pinpoint where the usage is. Please read before you post How to post a log file If you liked my help, click on "Thanks" to show your appreciation.
|
|||
31st Mar, 2016, 05:04 PM
Post: #6
|
|||
|
|||
RE: Where is the space available on my SD?
(30th Mar, 2016 02:31 AM)Nachteule Wrote: Hmmm, please show me the output of sudo btrfs filesystem df / Terminal xbian@xbian ~ $ sudo btrfs filesystem df / Data, single: total=6.74GiB, used=6.08GiB System, single: total=4.00MiB, used=16.00KiB Metadata, single: total=376.00MiB, used=79.52MiB GlobalReserve, single: total=32.00MiB, used=0.00 (30th Mar, 2016 02:31 AM)Nachteule Wrote: and sudo du -d 1 -h --exclude="/proc" --exclude="/sys" --exclude="/dev" / Terminal xbian@xbian ~ $ sudo du -d 1 -h --exclude="/proc" --exclude="/sys" --exclude="/dev" / 563M /home 83M /lib 4.0K /tmp 278M /var 23M /boot 741M /usr 6.2M /bin 8.0M /etc 11M /sbin 672K /run 20K /root 0 /mnt 0 /srv 323M /opt 1.1T /media 0 /selinux 0 /xbmc-backup 0 /Temp 1.2T / Thanks !! |
|||
31st Mar, 2016, 07:40 PM
Post: #7
|
|||
|
|||
RE: Where is the space available on my SD?
(30th Mar, 2016 04:00 AM)IriDium Wrote: I would check your sickrage folders as these have a habit of filling up. I´ve installed the tree command. In a global view, there is not files with big size... a lot with size of Kb, and a few with some Mb´s. |
|||
31st Mar, 2016, 10:10 PM
Post: #8
|
|||
|
|||
RE: Where is the space available on my SD?
df output looks ok (/media has 1.1T so I suppose there was an external disk attached), so I see two possible reasons:
1. you have still one or more snapshots which consumes all the space -> delete all subvolumes expect */@ (at least you did not delete the last_good_known snaps) 2. your FS is corrupt -> fastest possible solution: make image from your current sys and reflash card again (see here) |
|||
1st Apr, 2016, 12:30 AM
Post: #9
|
|||
|
|||
RE: Where is the space available on my SD?
(31st Mar, 2016 10:10 PM)Nachteule Wrote: df output looks ok (/media has 1.1T so I suppose there was an external disk attached), so I see two possible reasons: I´ll try. Thanks !!!! |
|||
1st Apr, 2016, 03:27 AM
Post: #10
|
|||
|
|||
RE: Where is the space available on my SD?
Very strange. Might be worth removing the widgets and add-ons - some skins can have a fairly high usage - but not that much. It might pinpoint the issue.
The other option (If nothing sensitive is contained within it) is to create and image using xbian-config copy function and post this image somewhere, where we can download and install it - to see what is causing the issue. Please read before you post How to post a log file If you liked my help, click on "Thanks" to show your appreciation.
|
|||
1st Apr, 2016, 04:00 AM
Post: #11
|
|||
|
|||
RE: Where is the space available on my SD?
(1st Apr, 2016 03:27 AM)IriDium Wrote: The other option (If nothing sensitive is contained within it) is to create and image using xbian-config copy function and post this image somewhere, where we can download and install it - to see what is causing the issue. Good idea, but would not help us finding the culprit, because xbian-config generates a completely new FS during backing up image |
|||
1st Apr, 2016, 04:17 AM
Post: #12
|
|||
|
|||
RE: Where is the space available on my SD?
@Nachteule In that case a RAW image would help - Win32diskimager or Ubuntu Disk would give an image we could play with.
I'm intrigued as to what the issue is and would like to solve it, for my own curiosity. I don't believe it's an xbian issue but it puzzles me Please read before you post How to post a log file If you liked my help, click on "Thanks" to show your appreciation.
|
|||
1st Apr, 2016, 04:35 AM
Post: #13
|
|||
|
|||
RE: Where is the space available on my SD?
At least it would be very interesting investigating this raw image
|
|||
« Next Oldest | Next Newest »
|