0

My raspberry get full, I tried delete a lot of packages but even though nothing change ,it still full, I tried also to expand file system ....

Filesystem      Size  Used Avail Use% Mounted on
/dev/root        15G   14G     0 100% /
devtmpfs        805M     0  805M   0% /dev
tmpfs           934M     0  934M   0% /dev/shm
tmpfs           934M  8.5M  926M   1% /run
tmpfs           5.0M  4.0K  5.0M   1% /run/lock
tmpfs           934M     0  934M   0% /sys/fs/cgroup
/dev/mmcblk0p1  253M   54M  199M  22% /boot
tmpfs           187M     0  187M   0% /run/user/1000
user535733
  • 68,493

1 Answers1

0

If the full drive was caused by software upgrade, you can try clearing up the apt cache:

sudo apt clean

If it is caused by system logs, follow the answer posted in this AskUbuntu question: https://askubuntu.com/a/100460 Then, identify which service is writing the immense amount of log entries (you will need to fix that so it won't keep happening in the future).

Alternatively, you might want to consider upgrading to a bigger MicroSD card (say, 32GB or 64GB, instead of 16GB)...

wyphan
  • 367