View Single Post
ReinhardE's Avatar
Posts: 35 | Thanked: 0 times | Joined on Dec 2005 @ München
#265
Originally Posted by Mara
I'm not sure if anyone else has encountered this problem: Sometimes during the map download if the internet connection gets interrupted and causes the map file not to load completely.
As the corrupted files seem to have a time stamp different from ordinary files,
I use simple find commands (from a linux host) for purging the repository:
Code:
#!/bin/sh
# delete files younger than 10 days
find . ! -type d -mtime -40 -print -delete
# delete files with dates in the 70s
find . ! -type d -mtime +11000 -print -delete
It usually works quite well. But of course one should have some assistance from maemo-mapper.