@boga ,
Can you please double check the following:
amount of free space in the /data partition: df | grep data
check the write speed to the data partition : dd if=/dev/urandom of=/data/test.bin bs=1M count=1024 (this will write a test file of size 1GB). For example, using voxl2 i result i got was (on VOXL1 it will be a bit slower):
#set cpu mode to perf
voxl-set-cpu-mode perf
#perform the write test using randomly generated data (may be limited by speed of /dev/urandom)
voxl2:/data$ dd if=/dev/urandom of=/data/test.bin bs=1M count=1024
1024+0 records in
1024+0 records out
1073741824 bytes (1.1 GB, 1.0 GiB) copied, 2.85171 s, 377 MB/s
(you can / should remove /data/test.bin after the test to free up the space)
Alex