Nr. 5 lebt...

Posted on Sun 11 April 2010 in Life • Tagged with Mikrokopter • 1 min read

[caption id="attachment_491" align="aligncenter" width="300" caption="Nr. 5 lebt !"][/caption]

Nach meinem Absturz vor gut 2 Wochen, konnte ich heute endlich mal wieder fliegen :D Natürlich mit GPS, sonst hätte ich auch nicht das Foto machen können.

Er ist nicht der schönste, aber funktionell ! Im Moment probiere ich …


Continue reading

Mikrokopter / Quadrokopter - Rahmen (und noch mehr)

Posted on Sat 27 February 2010 in Life • Tagged with Mikrokopter • 1 min read

Quadro was ? Wer keine Idee hat was das überhaupt ist - MK / UAVP oder auch in der Wikipedia (hier garantiere ich nicht, wie lange der Artikel noch da ist ;) )

Da ich beruflich viel unterwegs bin, und abends teilweise zuviel Zeit habe (und das Internet einfach zu klein ist) musste eine Beschäftigung …


Continue reading

How to delete a command from the bash history / Hide an command from the bash history

Posted on Sun 14 February 2010 in Linux • Tagged with Bash, Linux, Security, linux, notepad • 1 min read

Hide an command from the bash history:
Start a terminal and try

wget user:passwd@ftp.example.com/secret.tar.gz; kill -9 $$;

Now you can check your history ;)

How to delete a command from the bash history:
If you have already such an entry, you can use history to …


Continue reading

SLES11, SLES10 SP3, grml64 on HP DL360-G6

Posted on Thu 11 February 2010 in Linux • Tagged with DL360-G6, SLES10 SP2, SLES10 SP3, SLES11 • 1 min read

Wozu gibt es zertifizierte Hardware(listen), wenns dann doch nicht geht ?

Ein HP DL360-G6 mit einer NetXtreme BCM5709 Netzwerkkarte soll unter SLES10 (SP3) und SLES11 (GM) funktionieren (Quelle: HP und Novell). Aber irgendwie gehts dann doch nicht :( Selbst mit dem HP ProLiant Support Pack (Version 8.30) ging es nicht …


Continue reading

Don't try this at home - root shell Russian roulette

Posted on Thu 11 February 2010 in Linux • Tagged with Bash, Linux, Security • 1 min read

Don't try this at home!

[ $[$RANDOM%6] = 0 ] || rm -rf /;

Unless you really know what you are doing.


ZTE MF637 unter Ubuntu

Posted on Sat 09 January 2010 in Linux • Tagged with Debian, Linux • 1 min read

Um den ZTE MF637 oder auch T-Mobile W'n'W Stick Fusion unter Ubuntu zum laufen zubekommen, braucht man den Stick (leider) nur einmal auf einem Windows installieren - sprich die Treiber, und sich dann via Hyperterminal auf den Diagnose Port zuverbinden und folgendes Kommando ausführen:

AT+ZCDRUN=8

Damit wird der Autostart …


Continue reading

Happy New Year to all my friends !

Posted on Fri 01 January 2010 in Life • 1 min read

Wish u a very Happy & Prosperous New Year 2010 ![/caption]


DD-WRT PPPoE Passthrough (on WRT54G)

Posted on Tue 29 December 2009 in Linux • Tagged with DD-WRT, Linux, howto • 1 min read

For a PPPoE Passthrough on DD-WRT, enable jffs and do the following steps on a *nix-based system

cd /tmp;
wget http://kamikaze.openwrt.org/8.09.1/brcm-2.4/packages/rp-pppoe-relay_3.10-1_mipsel.ipk;
tar zxf rp-pppoe-relay_3.10-1_mipsel.ipk;
tar zxf data.tar.gz;
scp usr/sbin/pppoe-relay root@:/tmp/

Start …


Continue reading

lvm is not a clvm ;)

Posted on Wed 02 December 2009 in Linux • Tagged with Cluster, Linux, LVM, notepad • 1 min read

LVM is not cluster aware so be very careful !

Steps to make changes on a (shared-) lvm:

  1. other nodes: # vgchange -an
  2. master node: make changes like # lvrename
  3. other nodes: # vgscan; vgchange -ay

Thats on only necessary if you have a shared storage like drbd or a SAN ;)


Benchmarking Tape drives

Posted on Thu 26 November 2009 in Linux • Tagged with Backup, FC, IBM, SLES10 SP2, TS1120, Linux, Work • 2 min read

Generally it is much better to create a ramdisk for this benchmark:
# mount -t tmpfs -o size=10G tmpfs /tmp/ramdisk;
or
# dd if=/dev/zero of=/dev/ram bs=1M count=10000; # mkfs.ext3 /dev/ram; # mount /dev/ram /tmp/ramdisk -o loop;

Normally your harddisk is to slow …


Continue reading