Monthly Archive for March, 2012

World Backup Day!

You know this situation??

31st March has been declared to World Backup Day please remember to ensure your files are backed up on March 31st!

And please DONT think about RAID! Believe him ;)

Some stuff written by myself about backuping different stuff:
Create Backups with tartarus
MySQL Dump
Backup your MBR
Rsync Server

bind9 zone with umlauts

Sure you know, this is a really bad idea;) But if you want to register a domain that contains a fückinß umlaut, this solution will work for bind. But I start with a little explanation, you are not allowed to fill the bind configs with umlauts you should transform them to punycode.

Install transformation tool:

1
apt-get install idn

Transform you domain:

1
echo www.größte-scheiße.de | idn -a --quiet

The output will be: www.xn--grsste-scheisse-9sb.de

Now you can use the converted string of your domain in the bind configuration files.
If you are using putty please set your Translation to UTF8 otherwise idn will not convert your domain;)

Segmentation fault example


A tiny Segmentation fault study example (Page Fault).

This tiny code will produce a SIGSEGV (Segmentation fault) after compiling and executing

Create file example.c and fill it with this code: Continue reading ‘Segmentation fault example’