Archiv für: November 2010
25.11.10
13.11.10
Radioaktiver Müll
Link: http://twitter.com/#!/datenreisender/status/3143870103683072
Die Sendung Atommüll – Endlager verzweifelt gesucht von Quarks & Co ist sehr empfehlenswert - sehr gut recherchiert (wie immer) und sehr informativ.
Das Video der gesamten Sendung gibt es hier.
Ein guter Stromanbieter wäre übrigens z.B. Lichtblick, welche nur Ökostrom und -gas anbieten.
08.11.10
Get container ID from inside an OpenVZ container
The following snippet will get you the OpenVZ container, when you're in a container. I have added this to my zsh prompt, but this might be useful in other places, too.
Code:
# Get OpenVZ container ID (/proc/bc is only on the host): | |
if [[ -f /proc/user_beancounters && ! -d /proc/bc ]]; then | |
CTID=$(sed -n 3p /proc/user_beancounters | cut -f1 -d: | tr -d '[:space:]') | |
fi |

