Issue
im new to the raspbian OS. I have a problem where my disk space is running out even when I haven't install any application. Below is the screenshot for my df -h. I have tried expanding the memory size using sudo raspi config but still no luck. Any help is appreciated.
Filesystem Size Used Avail Use% Mounted on
/dev/root 15G 13G 1.5G 90% /
devtmpfs 403M 0 403M 0% /dev
tmpfs 436M 0 436M 0% /dev/shm
tmpfs 175M 976K 174M 1% /run
tmpfs 5.0M 4.0K 5.0M 1% /run/lock
/dev/mmcblk0p1 253M 50M 203M 20% /boot
tmpfs 88M 24K 88M 1% /run/user/1000
Solution
Use this command to show large files:
find / -size +1000000 -print
Or alternatively do an ls on them:
find / -size +1000000 -ls
This shows all files over 480 megabytes (1000000).
Answered By - James Risner Answer Checked By - Katrina (WPSolving Volunteer)