Tag Archives: bash

Nokia Ovi-Maps 3.0 0.1.25.114 direct Downloadlinks und Downloadscript for Maemo N900 without using Map Loader

Nowadays many mobile-phones are equipped with an internal gps-antenna and have pretty high-resolution displays, which makes them a considerable alternative for the usual satnavs.

In case of Nokia the software which is normally shipped with any gps-capable mobile-phone is called “Nokia Maps” or “Ovi Maps”, as Nokia bought the digital mapmaker Navteq the producer of ovi-maps some years ago. Nokia made the whole card material available for free in January 2010, so anyone can use it as long as he wants, without paying a thing.

I mainly have four problems with Nokia maps on my mobile-phone:

  • Out of the box there is no map data not on phone – you either have to have an active wireless-LAN connection or an active gprs/edge connection in order to download the map data. As in a everyday use you’ll be very lucky having a wireless-LAN connection and will have to download the map data via gprs/edge which is very expensive unless you signed a flatrate-contract.
  • As a GNU/Linux user I think it’s a disadvantage that the Ovimaps software is only offered for windows OS.
  • You’ll never know when Nokia reconsiders his decision to give away their maps for free. Just recently you could see how greedy Nokia is as they took a lot of money from Microsoft to ship Windows Phone 7 on their future devices and literally dropped the whole Maemo/MeeGo project which they initialized together with Intel like a hot potato.
  • A mobile-phone with a gps-antenna should be used like a normal satnav thus the download of the map data as you need them makes no sense to me at all.

The only considerable solution to me out of this four points was to download all available mapdata. After some searching in various web-forums I quickly found out, that you can directly download the mapdata from Nokias servers if you know the link and the numeric representation of the country or region you want, as the maps are distributed with file-names like 3523001.zip. At first I downloaded the newest mapdata I found which sadly made the map-application crash at startup. Lacking the possibility to find out which exact version of the map data I needed, because there isn’t anything helpful displayed in the info-page of the application I had to find another way to find that out.

The answer of the problem was: WireShark (a multi OS packet sniffer).
Continue reading Nokia Ovi-Maps 3.0 0.1.25.114 direct Downloadlinks und Downloadscript for Maemo N900 without using Map Loader

Mit VLC unter Linux CSS verschlüsselte DVDs betrachten. libdvdcss

Will man mit einem aus den Standardrepositories installiertem VLC-Player unter Ubuntu 10.04 eine CSS verschlüsselte DVD betrachten, so bekommt man nicht etwa die DVD zu sehen, sondern auf der Konsole folgende Ausgabe:

daniel@home:~$ cvlc /media/DVD_VIDEO/
VLC media player 1.0.6 Goldeneye
[0x1940158] dummy interface: using the dummy interface module...
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Encrypted DVD support unavailable.
************************************************
** No css library available. See **
** /usr/share/doc/libdvdread4/README.Debian **
** for more information. **
************************************************
libdvdread: Attempting to use device /dev/sr1 mounted on /media/DVD_VIDEO for CSS authentication
libdvdnav: Can't read name block. Probably not a DVD-ROM device.
libdvdnav: Unable to find map file '/home/daniel/.dvdnav/.map'
libdvdnav: DVD disk reports itself with Region mask 0x00f50000. Regions: 2 4
[0x7f2a34001968] main input error: ES_OUT_RESET_PCR called
[0x7f2a34001968] main input error: ES_OUT_RESET_PCR called
[0x7f2a34001968] main input error: ES_OUT_RESET_PCR called
[0x7f2a34001968] main input error: ES_OUT_RESET_PCR called
^C[0x1917f28] signals interface error: Caught Interrupt signal, exiting...

Hintergrund hierfür ist die fehlende Library libdvdcss. Standardmäßig ist diese Library aus Angst vor Rechtsstreitigkeiten nicht bei Ubuntu mit dabei, da sie mittels einem Brute-Force-Angriff den CSS-Schlüssel knackt. Normale DVD-Player haben einen bestimmten Chip auf dem Board in welchem ein Entschlüsselungskey enthalten ist. Die Hersteller der Boards zahlen deshalb Lizenzgebühren an den Hersteller des CSS-Verschlüsselungsstandards. Schon pervers, der Hersteller definiert die Verschlüsselung und kann dann die Hardwarehersteller mit Hinweis auf die Kompatibilität um Lizenzgebühren erpressen 👿 .

Hier jetzt wie man libdvdcss nachträglich installiert. Dazu habe ich mal ein kleines Bash-Script geschrieben, das den Sourcode herunterlädt, compiliert und installiert – nicht schön, aber es funktioniert:

#!/bin/bash
wget http://download.videolan.org/pub/libdvdcss/1.2.10/libdvdcss-1.2.10.tar.gz
tar xfvz libdvdcss-1.2.10.tar.gz
cd ./libdvdcss-1.2.10
./configure --prefix=/usr
make
sudo make install
cd ..
rm -rf ./libdvdcss-1.2.10
rm libdvdcss-1.2.10.tar.gz

Nach alledem sollte das Abspielen einer CSS geschützen DVD auf der Konsole dann in etwas so ausschauen:

daniel@home:~$ cvlc /media/DVD_VIDEO/
VLC media player 1.0.6 Goldeneye
[0x1e83c58] dummy interface: using the dummy interface module...
libdvdnav: Using dvdnav version 4.1.3
libdvdread: Using libdvdcss version 1.2.10 for DVD access
libdvdread: Attempting to use device /dev/sr1 mounted on /media/DVD_VIDEO for CSS authentication
libdvdnav: Can't read name block. Probably not a DVD-ROM device.
libdvdnav: Unable to find map file '/home/daniel/.dvdnav/.map'
libdvdnav: DVD disk reports itself with Region mask 0x00f50000. Regions: 2 4
libdvdread: Attempting to retrieve all CSS keys
libdvdread: This can take a _long_ time, please be patient
libdvdread: Get key for /VIDEO_TS/VIDEO_TS.VOB at 0x00000158
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_0.VOB at 0x000001c6
[...]
libdvdread: Elapsed time 2

Hier etwas Lesestoff Libdvdcss, Content Scramblink System, DeCSS und am Schluss noch einen Link zu Niko, der erklärt auf seinem Blog, wie man ein .deb Paket aus dem Sourcecode erstellt, dass man dann normal installieren kann.

ISO-Image einer CD mit DD (Diskdump) erstellen

Musste die Tage mal ein iso-Image einer CD erstellen 🙂 Geht eigentlich recht simpel ohne irgendwelche Hilfsprogramme nur mit Bordmitteln. Bei dd als Inputfile (if) das CD-ROM-Laufwerk und als Outputfile (of) einfach einen beliebigen Pfad zur zukünftige ISO-Datei angeben.
user@host:~$ dd if=/dev/cdrom of=~/meine_iso_datei.iso
Hat man Leseprobleme kann man mit hdparm noch die Lesegeschwindigkeit des CD-ROM-Laufwerks reduzieren. Ob das tatsächlich was bringt, steht zwar in den Sternen, aber der Geräuschpegel ist zumindest angenehmer und das Gewissen ist beruhigt 😉 . Die Zahl hinter dem “E” ist die Lesegeschwindigkeit als in meinem Fall 2-fach.
root@host:~# hdparm -E2 /dev/cdrom
Will man das Image mounten, kann man das mit Hilfe des Loopbackdevice tun:
root@host:~# mount -t iso9660 -o loop ~/meine_iso_datei.iso /media/mountpoint/
Zum unmounten dann:
root@host:~# umount /media/mountpoint/