|
2011-06-28
, 09:16
|
Posts: 1,680 |
Thanked: 3,685 times |
Joined on Jan 2011
|
#2
|
dd if=/dev/zero of=.mappero_image bs=1024 seek=4190208 count=0
The Following User Says Thank You to vi_ For This Useful Post: | ||
|
2011-06-28
, 10:24
|
Posts: 197 |
Thanked: 91 times |
Joined on Dec 2010
|
#3
|
Good idea, however did you perhaps consider the use of a sparse-file to keep the tile storage FS on? This would allow it to 'grow' upto 4GB without using unneeded space.
Something like:
This would also save the need for creating a 4GB file THEN copying it to the device.Code:dd if=/dev/zero of=.mappero_image bs=1024 seek=4190208 count=0
The Following User Says Thank You to sup For This Useful Post: | ||
|
2011-06-28
, 10:26
|
Posts: 1,680 |
Thanked: 3,685 times |
Joined on Jan 2011
|
#4
|
I did consider a growing file but did not know how to do it. I will try this and update original post if it works (I hope it will:-)). Thanks.
|
2011-06-28
, 10:30
|
Posts: 197 |
Thanked: 91 times |
Joined on Dec 2010
|
#5
|
|
2011-07-04
, 04:04
|
|
Posts: 4,118 |
Thanked: 8,901 times |
Joined on Aug 2010
@ Ruhrgebiet, Germany
|
#6
|
description "An upstart event file for Crash Reporter" author "Eero Tamminen" start on started ke-recv stop on starting shutdown pre-start script # mmc(s) should be mounted after ke-recv has started, but currently # started notification seems to be emitted before it's actually ready. # this is a temporary workaround, we should fix this in ke-recv or c-r # properly. # sleep 4 sleep 30 end script
|
2011-07-06
, 08:25
|
Posts: 11 |
Thanked: 4 times |
Joined on Jul 2011
|
#7
|
|
2011-07-06
, 12:48
|
|
Posts: 752 |
Thanked: 284 times |
Joined on Sep 2010
@ Malaysia
|
#8
|
|
2011-07-06
, 12:57
|
|
Posts: 1,455 |
Thanked: 3,309 times |
Joined on Dec 2009
@ Rochester, NY
|
#9
|
|
2011-11-29
, 22:05
|
Posts: 197 |
Thanked: 91 times |
Joined on Dec 2010
|
#10
|
The problem is as follows. Mappero stores tiles by default in the folder /home/user/MyDocs/.maps/ which is a FAT32 partition. On N900, this means that each file takes up 64kB space no matter how small it is (some tiles Mapper downloads are just 177 bytes small, but they still take up 64kB). This information comes from here.
We will solve it by creating a loopback device (a filesystem in a file) that overcomes this limitation. We will be using ext2 filesystem - N900 wouldn't mount ext3 or ext4 for me. As we will be storing the file on N900 itself (and therefore on a FAT32 filesystem), the file can be only 4GB in size, but it should be hopefully enough. If you need more, buy a microsd card, use some saner filesystem then FAT32 on it and store the file there.
This can be (I guess) done on N900 itself, but I used my Ubuntu system (but any linux should do).
First create a file
-i switch specifies, that we will have one inode per each 1024 bytes. Since for every file we need one inode, this means we will be able to have around 4 million files in this device. This is needed because lots of files are smaller then 1024 bytes. The value could be set to 2048 or maybe even 4096 (to have 2M or 1M inodes respectively) which would probably free some more space, since inodes take up space too. You can play with that.
-L is a label, you can set it or ignore it
-m 0 specifies that superuser will not have any allocated space. He or she does not need the space anyway in this file, so we might as well use it.
-b specifies that a block size will be 1024. ext2 (or ext 3 or ext4) does not allow smaller block sizes.
Now copy .mappero_image (or whatever you call the file) to the device and mount it with
If everything works as it should, here is how we make it work automatically even after reboots. Since N900 recreates /etc/fstab on each boot, we cannot just put a line there. There are basically two ways - modify the script that autocreates fstab (which is scary, so we will not be doing that) or write a one-purpose upstart job, which is what we will do.
Create a file in /etc/event.d/ and put the following into it:
The script just waits 40 seconds and then mounts the file. I am sure this can be done better, but I do not know hot to do actions in upstart based on what is mounted (ideally, it would work like "start when /home/user/MyDocs is mounted). But this works. If it does not, try to increase the sleep time (i.e. 30 did not work for me).
Now, we can proceed to downloading maps.
To download maps beforehand for later offline use, proceed as follows:
If number of maps is large (more than 10 000 or so), N900 might start to be very unresponsive or appear to be dead. But it probably is not and just is very busy downloading the maps. You can check over SSH on how it is doing.
I found out that around 250 000 (most of Turkey on zoom 7, or area between 36° and 42° latitude and 30° and 45° longtitude) maps takes up about 450MB, which is about 15% of the file. It took 6 hours to download it (I think the bottleneck was N900 itself) so you might want to plug the device to an adapter because it is very battery intensive. So you could get around 1 500 000 maps onto single file I gues (but YMMV). If that is still not enough, I guess you can use more such files and symlink them in a smart way.
Please note that it seems at the moment that Google Satellite does not work with mappero in zooms below 8 r so. If it works for you, I would be very happy to hear about it. Also, if something does not work or could be done better, say so!
Update: fat filesystem allows lower block size so maybe it is actually better.
You create it with (dd command holds):
(.debs are just archives) and put the file mount onto N900. Move it to /usr/bin/ and name it mount2 and make it executable (chmod +x mount2)
Put this instead of the version for ext2 to /etx/event.d/mount2 (I know, my naming sucks):
Last edited by sup; 2011-11-30 at 16:15.