Uncategorized

ÖBB und Google Maps

Bis vor kurzem war es möglich über Google Maps Fahrplan Informationen abzufragen. Leider hat sich die ÖBB dazu entschlossen diese Informationen nicht mehr weiterzugeben.

http://www.google.com/support/forum/p/maps/thread?tid=2be0c9f9c428ddc2&hl=en

Da mich diese unverständliche Einschränkung stört habe ich auch an die ÖBB geschrieben:

Guten Tag,

leider ist es nicht mehr Möglich Fahrplan Informationen über Google Maps zu erhalten.

Dies war die beste Möglichkeit Verbindungen auf Android Telefonen zu bekommen. Die ÖBB Webseite selbst ist für suchen vom Handy äußerst ungeeignet. Auch wird hier nicht automatisch die aktuelle Position erfasst.

Mir ist nicht ersichtlich wieso mir als Kunden hier die Möglichkeit genommen wird komfortabel nach Verbindungen zu suchen. Echtzeit Informationen sind zu diesem Zeitpunkt nicht relevant da sie lediglich eine Erweiterung der Funktion darstellen.

Wird es in naher Zukunft eine Lösung für Android geben?

Danke.

Ich warte noch auf eine Antwort.
Uncategorized

Encvfs on (K|X|…)Ubuntu

Today I thought – hey, I really hate it that i have to mount my truecrypt partition prior to work with eclipse.

I was using truecrypt because the encypted folder of ubuntu disabled me of using apache (running as www-data) in those folders. Truecrypt worked find for doing just that, but as the weeks pass by I’m getting really annoyed of having to mount it seperate.

Another drawback by using truecrypt or any other full partition encryption is the inability to do incremental backups. By using an encryption that uses the normal file system as a storage backend this shortcomming doesn’t exist :).

Now I’ve switched to encfs (http://www.arg0.net/encfs) and pam_encfs to mount it on login.

Here’s how its done:

  1. Install the needed packages:

    sudo apt-get install encfs libpam-encfs

  2. Enable pam_encfs in pam.d:

    open the file: /etc/pam.d/common-auth
    add “auth sufficient pam_encfs.so” befor the line with pam_unix.so
    append “use_first_pass” to the line pam_unix.so

  3. Setup encrypted directory:

    encfs /path/to/encrypted/data /path/where/you/want/to/mount/it
    this will create the encrypted files. Also set the rights on your data:
    chmod 775 /path/where/you/want/to/mount/it -R

  4. Setup the pam_encfs config:

    open the file: /etc/security/pam_encfs.conf
    change the line with fuse_default to “fuse_default nonempty
    comment the line with drop_permissions
    and at the end of the file add the line:
    YOURUSERNAME /path/to/encrypted/data /path/where/you/want/to/mount/it -v,–public allow_other,gid=33
    where 33 is the group of www-data (you have to give numeric id’s here)

and now, well that’s it. Your new encrypted folder shoud be up and running on every login!

For this method to work, the user and the Volume must have the same Password!!!

Be aware that by logging in any user on the system can access your folder!
If you do not want that just remove the “–public” and uncomment the “drop_permissions”

EDIT: to append use_first_pass use a space as separator!

Hope you like it.