Blog

Creating a new GPG-Key

27.06.2007 at 10:51

Today i created a new gpg-key, here is a short description of this procedure, just in case i have to do it again.

Run

gpg --gen-key

and answer the questions should be fairly straight forward. At the end your key-id which uniquely identifys your key will be printed. Use it to cerate a revoke certificate, just in case your key will be compromised.

gpg --output [email].revoke.asc --gen-revoke [key-id]

Then export your public key which you can distribute to your friends.

gpg --armor --output [email].pub.asc --export [key-id]

I would also advice you to export the private key and store it in a secure place.

gpg --armor --output [email].sec.asc --export-secret-key [key-id]

As a final step send your public to one of the many keyservers so others can fetch it and encrypt documents with it.

gpg --keyserver wwwkeys.ch.pgp.net --send-key [key-id]

The keyserver are constantly synchronising under each other so after some time your key should be available to others. Do a quick search to check this.

gpg --keyserver wwwkeys.de.pgp.net --search-keys [email]

Marc

» read more » comments

Last exams of my apprenticeship and debconf7 video talks are online

25.06.2007 at 22:01

Today i had the last series of exams for my apprenticeship, shouldn't be that bad. On a side note debconf7 recordings of the various talks are already online. I am currently in no way associated with debian but i am reading the devel lists and attending a development camp would certainly be fun. As i will hopefully have a bit more free time in the next few months i already played with the though to actually participate actively. So congratulates to them, i for one know what i will watch the upcoming evenings.

Marc

» read more » comments

VBA hurts - a lot

18.06.2007 at 15:28

Today i had to make some changes to an in house macro and it just reminded me of the fact that VBA causes brain damage. I really dislike this language and try to avoid it as much as i can. An example of it's stupidity is the fact that it uses the same operator for both assignment and comparison. Then the standard VBA standard library is just too poor, there doesn't seem to be a method to remove all objects from a given collection which results in selfmade solution like the following.

Do While mycollection.Count > 0
	mycollection.Remove (1)
Loop

Enough ranting for today, hope you don't have to use this crap, too bad that i am not working in the *nix world.

Marc

» read more » comments

Disabling the Macbook Startup Sound

09.06.2007 at 11:13

When you start a macbook you hear a kind of control sound (beep) which means the hardware check was ok. This sound is pretty annoying even more when you start your laptop in a public room and suddenly everybody is looking at you. After some research i found out that Psst (a Mac application) allows you to disable this startup sound. So happy booting, without disturbing everybody around you.

Marc

» read more » comments

Installing Debian Etch on a MacBook Core Duo 2

30.04.2007 at 21:16

I recently bought a new Macbook, well one of the first things i did was installing Debian. The instructions in the corresponding Debian Wiki Page work pretty well, except i didn't want to install lilo because it is just to annoying and error prone to run /sbin/lilo every time i changed something in the bootloader configuration. It turns out that the grub shipped with edge is capable to boot a macbook. The only thing you have to do is change the partition type of your /boot partition. In my case this is /dev/sda4. So just proceed the debian installation as explained on the Debian Wiki, when you drop to the console to sync the MBR from the GPT change the filesystem type as shown bellow. Adjust the index (in my case 4 for /dev/sda4) to the partion containing grub to match your setup.

sfdisk -c /dev/sda  83

This worked for me. The only other thing which annoyed me a bit is the keyboard and touchpad configuration. Update your touchpad config within xorg.conf as explained on this page and for the keyboard use these hints.

Enjoy your GNU/Linux powered Macbook!

Marc

» read more » comments

<< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 >>