Nov 082009
 

This blog post has grown to large. Please refer to the more detailed posts on IPv6 tagged with ipv6:

http://blog.philippklaus.de/tag/ipv6/

DNS entries for IPv6 ready web sites

http://en.wikipedia.org/wiki/List_of_DNS_record_types

  • A record: normal domain to ip address resolution
  • MX record: email server lookup, must resolve to a server address that is resolved to an IP via an A record
  • TXT record: can be used for an [http://www.openspf.org/ SPF entry]
  • AAAA record: Returns a 128-bit IPv6 address, most commonly used to map hostnames to an IP address of the host.

To look up IPv6 DNS entries manually you can use

Sep 172009
 

Alternative Hardware:

Sony Playstation Move http://en.wikipedia.org/wiki/PlayStation_Move. To buy it in Germany: http://geizhals.at/deutschland/a543585.html

building the Sensor Bar

http://wiibrew.org/wiki/Wiimote/Pointing
http://doctabu.livejournal.com/64758.html
http://terbidium.com/content/projects/wiihacks/usb_sensorbar.php

WiiPresent (for OpenOffice.org / Evince / Adobe Reader)

http://dag.wieers.com/home-made/wiipresent/
http://blog.jorgeivanmeza.com/2009/07/instalacion-de-wiipresent-en-linux-ubuntu-9-04-un-largo-camino/

sudo aptitude install bluez bluez-compat

cd ~/Downloads
wget http://sourceforge.net/projects/libwiimote/files/libwiimote/0.4/libwiimote-0.4.tgz/download
tar -xf libwiimote-0.4.tgz
cd libwiimote-0.4

change hci_remote_name to hci_read_remote_name in the following two files:

  1. src/wiimote_link.c
  2. configure.in

and compile:

autoconf
./configure
make
sudo make install
sudo ln -s /usr/local/lib/libcwiimote.so.0.4.0 /usr/local/lib/libcwiimote.so
sudo ldconfig

cd ~/Downloads
svn checkout http://svn.rpmforge.net/svn/trunk/tools/wiipresent/ wiipresent

or get a specific version:

cd ~/Downloads
wget http://dag.wieers.com/home-made/wiipresent/wiipresent-0.7.2.tar.bz2
tar -xf wiipresent-0.7.2.tar.bz2
cd wiipresent-0.7.2
mv wiipresent-0.7.2 wiipresent

cd ~/Downloads/wiipresent
gedit Makefile

replace the path /usr/include/libcwiimote with /usr/local/include/libcwiimote-0.4.0/libcwiimote

Aug 182009
 

using wget

http://www.boutell.com/newfaq/creating/mirroring.html
http://ubuntuforums.org/showthread.php?t=654722&page=2

wget -m -k -K -E http://example.com/

If this command seems to run forever, there may be parts of the site that generate an infinite series of different URLs. You can combat this in many ways, the simplest being to use the -l option to specify how many links “away” from the home page wget should travel.

Note: some web servers may be set up to “punish” users who download too much, too fast. You can avoid this problem by using the -w option to specify a delay, in seconds, between page downloads.

Aug 182009
 

oGroupWare

http://wiki.ubuntuusers.de/egroupware
howto: http://www.ubuntugeek.com/egroupware-web-based-groupware-suite-setup.html
debian howto: http://www.debianadmin.com/egroupware-installation-and-configuration-with-screenshots.html

Citadel

Funambol

https://wiki.edubuntu.org/marckaplan/funambol
http://chinnathambi.com/2008/07/22/blackberry-sync-with-evolution-on-linux-using-funambol-step-by-step-instructions/
http://wiki.ubuntuusers.de/Funambol

VN:F [1.9.22_1171]
Rating: 0.0/10 (0 votes cast)
Aug 182009
 

GNOME Office is a free office suite for GNOME which consists of:

  • AbiWord word processor
  • Evolution groupware and e-mail application
  • Gnumeric spreadsheet
  • GNOME-DB, software that provides database connectivity.

The Debian project includes additional applications in this list:

  • Dia diagram editor
  • GIMP raster graphics editor
  • Inkscape vector graphics editor
  • XSane graphical frontend of scanner access
  • Planner project management tool
  • GnuCash (Finanzverwaltung)

You can install the package using the command

sudo aptitude install gnome-office dia-gnome gnucash
VN:F [1.9.22_1171]
Rating: 0.0/10 (0 votes cast)
Aug 182009
 

For convenience I want a link shortcut to my folder /home/philipp/something/deeply/stapled in the root folder / in order to have faster access to it (on the terminal):

sudo ln -s /home/philipp/something/deeply/stapled /shortcut

Now I can get to /home/philipp/something/deeply/stapled using the short form /shortcut

VN:F [1.9.22_1171]
Rating: 0.0/10 (0 votes cast)
Aug 182009
 

German Statistics: http://www.destatis.de
German made European Statistics: http://www.eds-destatis.de
European Statistics: http://epp.eurostat.ec.europa.eu/portal/page/portal/eurostat/home/

http://www.osor.eu/news/eurostat-considers-to-publish-more-open-source-tools-using-eupl

GIS

The Open Source Geospatial Foundation http://www.osgeo.org/
good overview http://www.giswiki.org/wiki/Open_Source_GIS#Open_Source_GIS_.28allgemein.29
many, many links… http://opensourcegis.org/
GRASS GIS http://grass.itc.it/
http://www.mapbender.org/Main_Page especially http://wms.wheregroup.com/mapbender2/frames/index.php?&gui_id=mapbender
GDAL – Geospatial Data Abstraction Library http://www.gdal.org/

VN:F [1.9.22_1171]
Rating: 0.0/10 (0 votes cast)
Aug 182009
 

When I inserted a new network card into my Linux computer, the new network interface was named with an incremented number at the end. I didn’t want that as my network setup (firewall rules etc.) were set up for the former name. So I had to change the configuration to rename the new interface.

I found the found the configuration file where the names of the network devices are saved using this command:

cd /etc/
ls `sudo find . -type f -print  |xargs grep -l -s "eth2"`

So I edited the file:

Aug 182009
 

http://www.ooowiki.de/Calc2LaTeX
http://calc2latex.sourceforge.net/

update 2011-06-18: For LibreOffice, the extensions can be found on http://libreplanet.org/wiki/Group:OpenOfficeExtensions/List. Calc2LaTeX, however, is not in this list and can still downloaded as before:

Get the extension from http://extensions.services.openoffice.org/project/calc2latex and install by double clicking or do it all on the terminal:

cd ~/Downloads
wget http://extensions.services.openoffice.org/files/1739/0/Calc2LaTeX.oxt
oowriter Calc2LaTeX.oxt
VN:F [1.9.22_1171]
Rating: 0.0/10 (0 votes cast)
Aug 182009
 

Inkscape

documentation: http://www.inkscape.org/doc/index.php

sudo apt-get install inkscape

dia

sudo apt-get install dia

If you want to create an eps image to use with the LaTeX package psfrag, export the image to eps using ps fonts!

xfig

A great vector graphics tool! http://www.xfig.org/

sudo aptitude install xfig

usermanual: http://xfig.org/userman/

VN:F [1.9.22_1171]
Rating: 0.0/10 (0 votes cast)