<img src=”/img/konkret.png” align=“left” alt=”“ />
Nicht nur das die Konkret regelm
Filed under Politik & one comment & four trackbacks
<img src=”/img/beutelsbacher-lemon_juice.png “ alt=”“ align=“right” />Currently there are two most important liquids, which help me to survive in the jungle of living, hacking, going to school etc. The first thing is good dry red wine, the second thing is mineral water mixed with lemon juice.
The second thing is the reason for my post: just now, I’m feeling the ability of refreshing, which results of the consumption of mineral water with lemon juice. I approve to use hight quality lemon juice e.g. from a store, which sells ecological products (private tip: Beutelsbacher lemon juice). It tastes less acerbic and is more intensive in flavor and amount of vitamins.
Filed under Consumption & two comments & two trackbacks
<img src=”/img/turandot.png” alt=”“ align=“left” />Music is one of my subsidiary subject so it is a part of our school program to visit a opera performance. We plan to visit a classic opera and we decided to visit Turandot by Giacomo Puccini. It was really a bombastic firework of classical italian aria and subtle rezitations. The staging was adequate to the performed kind of music. It wasn’t disproportionate modern and also not too classical. The stage director seems to handle the contrast of historical story, which should be transported to a contemporary audience, quite well but until the end, the scenes get more and more drippy. But no problem, just close your eyes and enjoy the imposant music presented by famous artists.
It think its a good idea to prefer the opera sometimes, instead of watching a film in a cinema.
Filed under Music & no comments & one trackback
Yet another blogging friend. For a few days, Stefan Horning, I’m proud to call him one of my best friends, has also a Weblog
Welcome to the blogosphere, guy!
Filed under Me, News & no comments & no trackbacks
Beginnend beim menschenfressenden [url=http://www.anti-atom-aktuell.de/archiv/154-155/154uranerzausbeute.html]Abbau des Rohstoffs f
Filed under Politik & four comments & four trackbacks
And yes, they are speed improvements! :-)
$ genlop -t glibc
* sys-libs/glibc
Filed under Gentoo & no comments & no trackbacks
glibc-2.3.4-20041102 comes with two useflags, I’ve never seen before. This could be a result of my blindness or the are really new. The first is nptlonly which disables the linuxthreads fallback option and build a glibc only with Native Posix Thread library. The second useflag is userlocales. It brings the possibility to specify in /etc/locales.build which locales should be build during the glibc-merge. This should increases the tempo of glibc build really much.
$ cat /etc/locales.build
en_US/ISO-8859-1
en_US.UTF-8/UTF-8
en_HK/ISO-8859-1
en_PH/ISO-8859-1
de_DE/ISO-8859-1
de_DE@euro/ISO-8859-15
de_DE.UTF-8/UTF-8
$ emerge -pv glibc
These are the packages that I would merge, in order:
Calculating dependencies …done!
[ebuild U ] sys-libs/glibc-2.3.4.20041102 [2.3.4.20041021] -build -debug -erandom -hardened -multilib +nls -nomalloccheck +nptl +nptlonly* +pic +userlocales* 0 kB
Total size of downloads: 0 kB
Filed under Gentoo & no comments & two trackbacks
Dependency fix. Gimp-2.2_pre1 requires >=freetype-2.1.7. Thats the reason for r2
Filed under Gentoo, GNOME & no comments & no trackbacks
Hannos comment let me decide to create a revision release of gimp-2.2-pre1. The ebuild can be found there…
Filed under Gentoo, GNOME & no comments & one trackback
<img src=”/img/gmpc-tooltip.png” alt=”“ align=“right” />gmpc (GNOME Music Player Client), a client for MPD (Music Player Daemon, I’ve reported) was released in version 0.11.2. The biggest visual change was the improvement ov the status-tooltip if you put the pointer over the tray icon. Nice work, guys!
Filed under Gentoo, GNOME, Linux & no comments & no trackbacks
Henrik M. Broder pointed to another argument, why to vote for G. W. Bush.

Filed under Politik & no comments & no trackbacks
/tmp is often a place for a lot of garbage files. As a result, /tmp grows more and more and it would be a nice place, where race condition etc. can take place. Sascha Silbe pointed me on admin-issues@list.usrportage.de to use tmpfs for /tmp. This is quite a nice solution to prevent /tmp from being used as a sepulcher for data. tmpfs is a implementation which uses both, space in RAM and Swap, so there is no need to be afraid of performance problems.
Entry in /etc/fstab
none /tmp tmpfs size=30% 0 0
Filed under Linux, Security & no comments & two trackbacks
Since I’d found a solution to make my home-partition secure, I was bewilldered by another problem: whats about the swapspace? Swapspace is unsecure, if the attacker is in good luck, the key, which is used to encrypt the home-partition is clearly readable. Thats not a really secure thing, so I decided to encrypt swapspace too. I’ve used dm-crypt and a Key, which will be generated while booting the PC. The following init-script is a solution for Gentoo GNU/Linux.
#! /sbin/runscript
start() {
einfo “Generating random key and setting up encrypted swapspace”
head -c 50 /dev/random | uuencode –base64 /dev/stdout |
grep -v “^[begin|===]” | head -c 32 |
cryptsetup -c twofish -h plain create swap /dev/hda1
eend $?
einfo “Creating encrypted swapspace”
mkswap /dev/mapper/swap &>/dev/null
eend $?
einfo “Activating encrypted swapspace”
swapon /dev/mapper/swap
eend $?
}
stop() {
einfo “Deactivating encrypted swapspace”
sync
swapoff /dev/mapper/swap
eend $?
einfo “Unsetting encrypted swapspace”
cryptsetup remove swap
eend $?
}
Put the script above in /etc/init.d/encrypted-swap an do the following:
$ chmod +x /etc/init.d/encrypted-swap
$ /etc/init.d/encrypted-swap start
$ rc-update add encrypted-swap boot
The next thing to do is to make the RAM more secure. But currently I’ve no idea, which would be performant too.
Filed under Gentoo, Linux, Security & three comments & two trackbacks
Today GIMP 2.2 pre1 was released (there is no link, the archive of the announce-list is buggy). There you can find an ebuild.
Filed under Gentoo & two comments & one trackback