Categories
Uncategorized

recover data notes

recovering data from an sdcard is possible with oss:

create an image of your drive using dd:

dd if=/dev/disk1 of=/path/to/my/image.img

get foremost at
http://foremost.sourceforge.net/
then extract and make it

you can specify a type, e.g. MOV

./foremost -t mov -i /path/to/my/image.img -o /path/to/my/recovered/files

Categories
Uncategorized

turnkey linux

turnkey linux is a nice and small virtual appliance that comes as jeos (just enough operating system).

it offers several ways to access it after it’s running:

  • shell in browser (http, port 12320)
  • webmin interface (http, port 12321)
  • ssh

unfortunately the vmware tools didn’t work. so i reinstalled them:

mount vmware tools in vmware player

mount cdrom
sudo mkdir /media/cdrom
sudo mount /dev/scd0 /media/cdrom

unpack and install vmware tools

cd /tmp
tar xvzf /media/cdrom/VM*.gz
cd vmware-tools-distrib
sudo ./vmware-install.pl

install vmware tools

sudo apt-get install build-essential
sudo apt-get install linux-headers-`uname -r`

configure vmware tools

/usr/bin/vmware-config-tools.pl

show virtual disk mount points
vmware-toolbox-cmd disk list

zero out empty spaces
(creates a huge file that takes all the free space on your harddisk and writes zero’s in it. thus it should be better compressable.
cat /dev/zero > zero.dat ; sync ; sleep 1 ; sync ; rm -f zero.dat

shrink disk /
vmware-toolbox-cmd disk shrink /

Categories
Uncategorized

grep find blabla

grep -Iri

Categories
Uncategorized

The age of features is dead; Welcome to the age of User Experience.

The age of features is dead; Welcome to the age of User Experience.
This is the tagline of Aral Balkan’s blog with useful posts like that

Categories
Uncategorized

Converting E-Mail from Outlook to *

After I converted from Windows last year I still avoided to convert my old emails. Well – this weekend the time has come. After a long hard road of try and error I came to the following conclusion:

1) Setup a new Virtual Machine with Windows XP (includes Outlook Express)
2) Install Microsoft Outlook Trial in this VM
3) Install Thunderbird in this VM

4) Open your PST files in your Outlook trial version and copy all the mails to the main PST.
5) Open Outlook Express and select “import mails from Outlook”
6) Open Thunderbird and select “import mails from Outlook Express”

7) Transfer Thunderbird’s MBOX files to Thunderbird on your Mac.
On PC the Local Folders can be found in a path like this: C:\Documents and Settings\Administrator\Anwendungsdaten\Thunderbird\Profiles\********.default\Mail\Local Folders
On Mac it’s found in a dir like ~/Library/Thunderbird/Profiles/********.default/Mail/Local Folders

Categories
Uncategorized

Cross Golf Saisonabschluss

Auch im Dezember konnte die hartgesottene Anhängerschaft des Kiesgruben-Golf nicht davon abgebracht werden, den Saisonabschluss mit einer gepflegten Runde bei nur knapp über Null Grad ausklingen zu lassen…
[nggallery id=2]

Categories
Uncategorized

chinesisch für bayern

heid scheint d’sunn so schee – i kunn kaum schaun

Categories
Uncategorized

Der neue Audi A8

Endlich ist es soweit: Der neue Audi A8 wurde in Miami der Öffentlichkeit vorgestellt. Hier ein paar Resonanzen:

Allgemeine Artikel:

heise.de

Audi MMI Touch:

wall street journal
gizmodo.de
gizmodo.com
carbuyersnotebook.com
autospies.com
audi.de

Categories
Uncategorized

Audi Commercials

Official Commercials

http://vimeo.com/1761831 (Audi TTS)
http://www.dailymotion.com/video/x8fce0_audi-quattro_auto (Audi Quattro)
http://vimeo.com/4060100 (Clean Diesel)
http://www.youtube.com/watch?v=aVQKrxSOx7Q (A4 clean diesel)
http://www.youtube.com/watch?v=GStcrh43yXQ (Q5 unboxed)
http://www.youtube.com/watch?v=H6OZiHzbsNQ&NR=1 (Audi – all in one)

Test drives

http://www.dailymotion.com/video/x49n1o_audi-r8-test-drive-manualgearcom_auto (R8, ManualGear)
http://www.dailymotion.com/video/x7hfwn_audi-q5_auto (Q5, France)
http://www.dailymotion.com/video/x4r85n_audi-rs6-avant_auto (RS6, AutoBild, Germany)

Categories
Uncategorized

Backup/Restore SVN repositories

backup:

svnadmin dump /path/to/repo | gzip -c > myBackup.gz

restore:

svnadmin load /path/to/repo < /path/to/dumpfile.dump

after restoring, don’t forget to set the rights accordingly (forgetting that will mark you as noob):

chown -R svn:www-data /path/to/repo
chmod -R g+w /path/to/repo