Mount.at online again

Posted on February 27th, 2010

by siyb
Mount.at ist ab sofort wieder erreichbar. Der Server ist gestern gegen 21 Uhr vom Netz getrennt worden, da unser ISP Probleme mit dem VLAN hatte. Der mount.at staff entschuldigt sich für jegliche Unannehmlichkeiten, die wegen des Ausfalls entstanden sind.

Waterbording bei der Super Mario Brothers Super Show

Posted on June 11th, 2009

by siyb

So wurde die amerikanische Jugend anno 1989 für spätere Folterinstrumente der Bush Regierung indoktriniert. (Bild)

Der Stotter-Dieter

Posted on May 9th, 2009

by siyb

Super wenn ein Politiker, ein sogenannte Vertreter des Volkes, unangenehmen Fragen ausweicht indem er sich über mangelnden Respekt des Fragestellers brüskiert, vor allem dann, wenn besagter Politiker sich ähnlich respektlos bei der Beantwortung einer Frage verhält.

mir gefällt der Ton Ihrer Frage nicht. Es fehlt Ihnen an Respekt. Suchen sie sich einen anderen Gesprächspartner.

Ich habe diese Begriffe noch nie gehört oder gelesen. Ich stamme nämlich aus dem vergangenen Jahrtausend.

DNS, TLD, GAGA, GOGO, TRALAFITTI oder was?

Respekt muss verdient werden Herr Wiefelspütz. Wenn sie nicht in der Lage sind einem mündigen Bürger Respekt zu zollen und seine Frage mit dem nötigem Maß an Anstand und Professionalität zu beantworten, statt diese mit dämlichem Gestotter ins Lächerliche zu ziehen, dann haben sie meinen Respekt nicht verdient. Es ist traurig zu sehen, dass sie versuchen mangelndes Fachwissen mit niveaulosen Phrasen zu vertuschen. Greifen sie sich lieber an die eigene Nase bevor sie sich anmaßen eine andere Person als respektlos zu betiteln.

Encrypted Container with luks

Posted on April 14th, 2009

by siyb

If you wish to store your data safely but can’t spare a separate partition you may be interested in creating a encrypted container. As always, please don’t just copy and paste the lines but _think_ for yourself!
dd if=/dev/urandom of=/path/to/image bs=1M count=5000

This line will create an file named image in the current directory with a size of bs*count M, in this case 5000M, please refer to the dd manual (multiplicative suffixes).

The next step is to map the file to a loop device, check which ones are currently available for mapping by using, this will show the status of all devices.
losetup -a

Map the file and encrypt it using luks:

losetup /dev/loopX image;# map file onto loop device
cryptsetup --verbose --verify-passphrase luksFormat /dev/loopX;# encrypt loop device

Formatting the device:

cryptsetup luksOpen /dev/loopX someName;# decrypt device and map it onto /dev/mapper/someName
mkfs.ext3 /dev/mapper/someName;# create fs, please refer to man for options ...

Mounting:

mount /dev/mapper/someName /mnt/mointpoint

You may use these 2 scripts as a reference on how to mount / unmount the device, after the image has been prepared.

Mount:

losetup /dev/loopX image
cryptsetup luksOpen /dev/loopX someName
mount /dev/mapper/someName /mnt/mountpoint

Umount:

umount /mnt/mountpoint
cryptsetup luksClose /dev/mapper/someName
losetup -d /dev/loopX

NetBeans 6.5 – TCL support

Posted on February 15th, 2009

by siyb

NetBeans features a TCL plugin for code highlighting. In order to be able to install it using the plugin manager that comes with NetBeans, you need to add the following URL to the Update center (tools -> plugins -> settings -> add). The TCL plugin can now be obtained from the “Available Plugins” category.

http://deadlock.netbeans.org/hudson/job/nbms-and-javadoc/lastStableBuild/artifact/nbbuild/nbms/updates.xml.gz


design: makequick.com | modificashuns and bugfixes by jesse | Impressum
bottom