Active Topics

 



Notices


Reply
Thread Tools
Posts: 1 | Thanked: 0 times | Joined on Sep 2010
#471
For all who have problems to install navit or remove it:

Install:
dpkg -i navitxxx.deb (for all the packages)
or
apt-get install navit (that resolves the dependencies)

Remove:

dpkg -r navit

This will remove the navit package (-r is short for --remove).
Note that you give only the 'navit' for --remove, while --install requires the entire .deb filename.

--remove will leave configuration files for the package on your system.
A configuration file is defined as any file you might have edited in order to customize the program for your system or your preferences.
This way, if you later reinstall the package, you won't have to set everything up a second time.

However, you might want to erase the configuration files too, so dpkg also provides a --purge option.
dpkg --purge navit will permanently delete every last file (for example *.xml) associated with the navit package.

That should be done for:

navit
navit-data
navit-graphics-qt-qpainter
navit-gui-internal


Missing files could be downloaded here:
http://sourceforge.net/projects/navi...s/navit/0.2.0/

Now have fun and solve your problems
 
Posts: 14 | Thanked: 16 times | Joined on Oct 2008
#472
Note there is a new build of Navit on Chollya's site...

Version 3981, I believe. Working well on the N900...

When I get a chance I will upload an updated script & alternate instructions to install manually, for the control freaks like me (basically the script boiled down to command line entries). I also have a a few changes to the navit.xml & speech.xml (starting in fullscreen, following the GPS automatically & slower speech). I think they are useful, and will try to post instructions on how to do them without destroying your install...

There are a few other tweaks I'd like to have. If anyone knows how to edit the navit.xml to remove the fullscreen button on the OSD (but not the menu option), I'd love to know how...

Oh, & I'd love to know how to change the espeak voice to a female voice... if anyone can enlighten me...

PS: Got the female voice thing down... Will post that later,... Now just missing elimination of the fullscreen icon,...

Note: the fullscreen button causes 3981 to crash...

Last edited by JaseP; 2011-01-20 at 04:01.
 

The Following 3 Users Say Thank You to JaseP For This Useful Post:
willi_iam's Avatar
Posts: 27 | Thanked: 20 times | Joined on Jun 2010 @ Cologne
#473
Thanks for the hint to the new version

To remove the fullscreen button you have to search for a line similar to:
Code:
<osd enabled="yes" type="button" x="0" y="0" command="gui.fullscreen=!gui.fullscreen" src="toggle_fullscreen.xpm"/>
and remove it (or comment it out, if you want to try first )
__________________
Everything is a file and if it's not, it should be!
 

The Following 2 Users Say Thank You to willi_iam For This Useful Post:
Posts: 14 | Thanked: 16 times | Joined on Oct 2008
#474
Thanks for the tip...
That line is found in the OSD.xml file.

Here is Landry's script, updated for the latest (attached, below, I think)...

Install Instructions:

Code:
First, Totaly remove existing Navit...

Change to user directory...

********************
cd /home/user/
apt-get install wget libspeechd2 espeak libfribidi0 libgarmin0
********************

********************
wget http://www.chollya.org/navit/navit_0.2.0+dfsg.1-1maemo1~3981_armel.deb
wget http://www.chollya.org/navit/navit-data_0.2.0+dfsg.1-1maemo1~3981_all.deb
wget http://www.chollya.org/navit/navit-graphics-qt-qpainter_0.2.0+dfsg.1-1maemo1~3981_armel.deb
wget http://www.chollya.org/navit/navit-gui-internal_0.2.0+dfsg.1-1maemo1~3981_armel.deb
********************

Installing...

********************
dpkg -i navit-data_0.2.0+dfsg.1-1maemo1~3981_all.deb
dpkg --force-depends -i navit-graphics-qt-qpainter_0.2.0+dfsg.1-1maemo1~3981_armel.deb
dpkg -i navit-gui-internal_0.2.0+dfsg.1-1maemo1~3981_armel.deb
dpkg -i navit_0.2.0+dfsg.1-1maemo1~3981_armel.deb
********************

Configuration...

********************
wget -O navit-xml.tar.gz http://talk.maemo.org/attachment.php?attachmentid=11936&d=1278727249
tar -xzf navit-xml.tar.gz
chown -R user .navit
********************

Creating map directory...

********************
mkdir -p MyDocs/navit_maps

********************
You need to copy your map to the navit_maps folder of N900. Name it mymap.bin.

MyDocs/navit_maps/mymap.bin

or edit the Map config file.
The speech.xml can be edited as follows to use a female voice:
Code:
<speech type="cmdline" data="echo '%s' | espeak -ven-us+f2" cps="1"/>
To edit the navit.xml, I recommend installing Leafpad (text editor) and launching it from within XTerm (making a backup first):

Code:
cd .navit
ls
cp navit.xml navit.old
leafpad navit.xml
Rather than go through all the edits, which can be found on the Navit Wiki, I have attached my navit.xml file (renamed navit-xml.txt & zipped)... To this post.

(Note: does not incl. removing the Fullscreen icon, per above)
Attached Files
File Type: txt navit-install.txt (2.5 KB, 244 views)
File Type: zip navit-xml.txt.zip (20.1 KB, 248 views)

Last edited by JaseP; 2011-01-20 at 23:04.
 

The Following User Says Thank You to JaseP For This Useful Post:
Posts: 2,225 | Thanked: 3,822 times | Joined on Jun 2010 @ Florida
#475
Thanks for the heads up on the newer build, and the install script (even though I'm just gonna manually install the .debs over the old ones, assuming that's not a problem?), since the former is good to know in general and I know the latter helps plenty of people (just like the earlier install script helped me infinitely when I was less confident to install the earlier Navit build.

Would I want to get a new navit.xml file, or will the one from the older build work just fine? (Assuming I don't want the launch-in-full-screen change you made to the one attached in the above post?)
 

The Following User Says Thank You to Mentalist Traceur For This Useful Post:
Posts: 14 | Thanked: 16 times | Joined on Oct 2008
#476
I initially used the one from before & edited mine. So, you should be fine...

2 requests from anyone who might know;
(1) Can anyone explain how one might add a 2D-3D toggle icon to the screen???, &
(2) Similarly, how would one go about adding an icon that would take you to bookmarks &/or the current coordinates menus???

Thanks...
 

The Following 2 Users Say Thank You to JaseP For This Useful Post:
Posts: 268 | Thanked: 75 times | Joined on Jan 2011
#477
Originally Posted by JaseP View Post
Thanks for the tip...
That line is found in the OSD.xml file.

Here is Landry's script, updated for the latest (attached, below, I think)...

Install Instructions:

Code:
First, Totaly remove existing Navit...

Change to user directory...

********************
cd /home/user/
apt-get install wget libspeechd2 espeak libfribidi0 libgarmin0
********************

********************
wget http://www.chollya.org/navit/navit_0.2.0+dfsg.1-1maemo1~3981_armel.deb
wget http://www.chollya.org/navit/navit-data_0.2.0+dfsg.1-1maemo1~3981_all.deb
wget http://www.chollya.org/navit/navit-graphics-qt-qpainter_0.2.0+dfsg.1-1maemo1~3981_armel.deb
wget http://www.chollya.org/navit/navit-gui-internal_0.2.0+dfsg.1-1maemo1~3981_armel.deb
********************

Installing...

********************
dpkg -i navit-data_0.2.0+dfsg.1-1maemo1~3981_all.deb
dpkg --force-depends -i navit-graphics-qt-qpainter_0.2.0+dfsg.1-1maemo1~3981_armel.deb
dpkg -i navit-gui-internal_0.2.0+dfsg.1-1maemo1~3981_armel.deb
dpkg -i navit_0.2.0+dfsg.1-1maemo1~3981_armel.deb
********************

Configuration...

********************
wget -O navit-xml.tar.gz http://talk.maemo.org/attachment.php?attachmentid=11936&d=1278727249
tar -xzf navit-xml.tar.gz
chown -R user .navit
********************

Creating map directory...

********************
mkdir -p MyDocs/navit_maps

********************
You need to copy your map to the navit_maps folder of N900. Name it mymap.bin.

MyDocs/navit_maps/mymap.bin

or edit the Map config file.
The speech.xml can be edited as follows to use a female voice:
Code:
<speech type="cmdline" data="echo '%s' | espeak -ven-us+f2" cps="1"/>
To edit the navit.xml, I recommend installing Leafpad (text editor) and launching it from within XTerm (making a backup first):

Code:
cd .navit
ls
cp navit.xml navit.old
leafpad navit.xml
Rather than go through all the edits, which can be found on the Navit Wiki, I have attached my navit.xml file (renamed navit-xml.txt & zipped)... To this post.

(Note: does not incl. removing the Fullscreen icon, per above)

Thanks i use your scrip, but navit crash at start. I am trying to use garmin maps. I disable userdefined maps, enable garmin maps and change the path to the img file.

Last edited by Brian_7; 2011-01-27 at 01:35.
 

The Following User Says Thank You to Brian_7 For This Useful Post:
Posts: 915 | Thanked: 3,209 times | Joined on Jan 2011 @ Germany
#478
Originally Posted by Brian_7 View Post
Thanks i use your scrip, but navit crash at start.
That might be due to the libfreetype bug in maemo which is mentioned in the navit wiki [1] (assuming that this bug still exists in maemo).

As a general question: What is the overall experience concerning stability with recent navit versions on a fully updated N900?

[1] http://wiki.navit-project.org/index....8x0#N900_notes
 

The Following 2 Users Say Thank You to sulu For This Useful Post:
Posts: 334 | Thanked: 45 times | Joined on Jan 2010
#479
Originally Posted by JaseP View Post
Thanks for the tip...
That line is found in the OSD.xml file.

Here is Landry's script, updated for the latest (attached, below, I think)...

Install Instructions:

Code:
First, Totaly remove existing Navit...

Change to user directory...

********************
cd /home/user/
apt-get install wget libspeechd2 espeak libfribidi0 libgarmin0
********************

********************
wget http://www.chollya.org/navit/navit_0.2.0+dfsg.1-1maemo1~3981_armel.deb
wget http://www.chollya.org/navit/navit-data_0.2.0+dfsg.1-1maemo1~3981_all.deb
wget http://www.chollya.org/navit/navit-graphics-qt-qpainter_0.2.0+dfsg.1-1maemo1~3981_armel.deb
wget http://www.chollya.org/navit/navit-gui-internal_0.2.0+dfsg.1-1maemo1~3981_armel.deb
********************

Installing...

********************
dpkg -i navit-data_0.2.0+dfsg.1-1maemo1~3981_all.deb
dpkg --force-depends -i navit-graphics-qt-qpainter_0.2.0+dfsg.1-1maemo1~3981_armel.deb
dpkg -i navit-gui-internal_0.2.0+dfsg.1-1maemo1~3981_armel.deb
dpkg -i navit_0.2.0+dfsg.1-1maemo1~3981_armel.deb
********************

Configuration...

********************
wget -O navit-xml.tar.gz http://talk.maemo.org/attachment.php?attachmentid=11936&d=1278727249
tar -xzf navit-xml.tar.gz
chown -R user .navit
********************

Creating map directory...

********************
mkdir -p MyDocs/navit_maps

********************
You need to copy your map to the navit_maps folder of N900. Name it mymap.bin.

MyDocs/navit_maps/mymap.bin

or edit the Map config file.
The speech.xml can be edited as follows to use a female voice:
Code:
<speech type="cmdline" data="echo '%s' | espeak -ven-us+f2" cps="1"/>
To edit the navit.xml, I recommend installing Leafpad (text editor) and launching it from within XTerm (making a backup first):

Code:
cd .navit
ls
cp navit.xml navit.old
leafpad navit.xml
Rather than go through all the edits, which can be found on the Navit Wiki, I have attached my navit.xml file (renamed navit-xml.txt & zipped)... To this post.

(Note: does not incl. removing the Fullscreen icon, per above)
Tried your script but it didnt/could'nt install some of the packages, I tried running the Nav-it app anyway after whatever got installed but it would just appear as if its trying to start up but return back to the desktop. Done a reboot that still didnt fix it. I then tried to manually download the dependies i needed but keep getting errors such as package has been changed and known as something else and other errors. Could someone please help.
1 of them is espeech which isnt installing.
 

The Following User Says Thank You to badboyuk For This Useful Post:
sondjata's Avatar
Posts: 1,076 | Thanked: 176 times | Joined on Mar 2007
#480
are any of you all seeing the problem with navit announcing highways and highway exits? I'm seeing this on my N800 and cannot figure out why it's doing this. I keep the zoom pretty low so I can see exits coming up on the map, but an announcement would be nice.
__________________
---
N800
Diablo
Boot from MMC
Gpodder Cache on MMC
MTube Cache on MMC
Mugen 1800mAh Battery
Addesso USB rollup keyboard
Solio Solar Charger
Holux GPSlim GPS

N810
community SSU
Turbo Diablo
8GB external
Boot from Internal SD
Still no GPS Fix.

N900
Stock
32GB
Many Solar Chargers (Saved bacon during Sandy!)
Inland ProHT BT keyboard
What's this? A GPS Fix? Wowwwwwww
 

The Following User Says Thank You to sondjata For This Useful Post:
Reply

Tags
navigation, navit, nokia n900, openstreetmap


 
Forum Jump


All times are GMT. The time now is 16:33.