View Single Post
Posts: 986 | Thanked: 1,526 times | Joined on Jul 2010
#1
some terrible connman bug (new to oulanka?) is causing /var/lib/connman to fill up at an alarming rate.

mine was ~500mb (root partition is only ~2000mb), and i ran out of space and hit into all sorts of problems.

i now run this every night as root user to delete files older than a week:
Code:
find /var/lib/connman/ -mtime +7 -type f -delete
find /var/lib/connman/ -type d -exec rmdir {} \; 2>&1 \
  | grep -v 'Directory not empty' #busybox find has no -empty
__________________
~ teleshoes ~

Last edited by wolke; 2019-05-04 at 19:33.
 

The Following 5 Users Say Thank You to wolke For This Useful Post: