msgbartop
sächsische Informations-Compagnie zu Berlin | Marcus Pauli
msgbarbottom

05 Aug 10 simplify your daily ssh usage… even more…

On MeyerMillerSmith.com I recently posted this one: Typing ssh commands can be very annoying but it doesn’t has to. There’s a quite nice way to simplify your daily admin life: shell scripts. Okay, let’s say we have a dozen servers … Continue reading

31 Mrz 10 LKML: Arnd Bergmann: Re: open /dev/kvm: No such file or directory

> Greg, /dev/kvm is a MISC_DYNAMIC_MINOR device. Is there any way of
> using it without udev? Should I allocate a static number?

You can write a small script that parses /proc/misc and creates the device,
like

# /sbin/mknod /dev/kvm c 10 `grep '<kvm>' /proc/misc | cut -f 1 -d `
If you already have an init script, e.g. to set up tun/tap devices,
it would make sense to put it in there.

09 Jan 10 Apple Computer › Wiki › ubuntuusers.de

Apple setzte vor 2006 PowerPC-Prozessoren ein, danach wurde die Prozessorarchitektur auf Intel-Prozessoren umgestellt. Seitdem ist die Installation von alternativen Betriebssystemen auf Apple-Rechnern sehr viel leichter geworden. Da Apple über die Systemaktualisierung auch Firmware-Upgrades verteilt, ist es ratsam, das hauseigene Betriebssystem Mac OS X nicht komplett zu entfernen. Durch die grundsätzliche Unterstützung von Windows ist bei den neueren Macs mit Intelprozessoren auch ein Tripleboot denkbar.Die Installation von Ubuntu auf einem PowerPC-Mac unterscheidet sich hingegen etwas von der Installation auf einem normalen PC. Insbesondere bei Erstellung eines Dualboot-Systems mit Ubuntu und Mac OS X sind einige Besonderheiten zu beachten, um ein funktionierendes System zu erhalten und Datenverlusten vorzubeugen. Dabei müssen einige Vorbereitungen getroffen werden, damit die Verkleinerung der Festplattenpartition sowie die Installation des Bootloaders yaboot problemlos klappt.

11 Dez 09 “Couldn’t load XPCOM” after Firefox upgrade « ewald.tienkamp.nl

After Mozilla Firefox 3.5(.1) was finally unmasked in Portage, I upgraded from 3.0. Unfortunately, after the update, Firefox would not start anymore and when started from a terminal, it would leave me with a cryptic “Couldn’t load XPCOM.”.

19 Nov 09 find out if your Apache is really serving the right hosts

From time to time it can happen that websites that used to be on your webservers are being moved by your clients without notifying you. Therefore, you will have to search for «zombie websites». I have the following setup: There … Continue reading

12 Feb 09 SFTP only and SSH only OpenSSH system with gentoo

Although there are many ways workarounding the lack of security with ye olde FTP, there is a quite handy solution: use OpenSSH via SCP/SFTP to handle the file transfers. There are many solutions which all try to restrict the access … Continue reading

15 Jan 09 rebuilding Cyrus indexes

You might know the situation, something happened, and afterwards you get error messages from Cyrus telling you that your databases just have crashed. Then, your Inbox is shown empty while the filesystem does show the correct files. What happened? Every … Continue reading

16 Sep 08 tomcat on port 80

You might know the situation: You’d like to run tomcat from a privileged port, but the bloody thing just won’t start. Of course, it’s java-specific. Usually, a daemon gets its port from root. Not with Java. Your possibilities are therefore … Continue reading

28 Aug 08 creating apache vhosts with style

We decided to have a reverse domain name structure that conatains (beside the htdocs) all vhost-related information like logs, stats and config. The reverse structure is neccessary to get an quick overview not about the subdomains but the domains. Additionally, … Continue reading

30 Jul 08 recursive md5 hashing with Linux

The problem: You need a md5sum of a directory. Unfortunately, md5sum just accepts files as input. The solution: Let’s use find! Okay. Here we go: find DIRECTORY -type f -exec md5sum ‘{}’ \; | md5sum – | awk ‘{print $1}’ … Continue reading

Switch to our mobile site