So wurde die amerikanische Jugend anno 1989 für spätere Folterinstrumente der Bush Regierung indoktriniert. (Bild)
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.
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.
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 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





