Author Archive
Just do it!
Dienstag, Juni 26th, 2007Schützenfest
Dienstag, Juni 19th, 2007rdiff-backup and "Found too many current_mirror incs!"
Freitag, Juni 8th, 2007If you use rdiff-backup or some program, which sits on top of it (e.g. backupninja) and you get errors similar to this:
Traceback (most recent call last):
File „/usr/bin/rdiff-backup“, line 23, in ?
rdiff_backup.Main.error_check_Main(sys.argv[1:])
File „/var/lib/python-support/python2.4/rdiff_backup/Main.py“, line 298, in error_check_Main
try: Main(arglist)
File „/var/lib/python-support/python2.4/rdiff_backup/Main.py“, line 318, in Main
take_action(rps)
File „/var/lib/python-support/python2.4/rdiff_backup/Main.py“, line 276, in take_action
elif action == „check-destination-dir“: CheckDest(rps[0])
File „/var/lib/python-support/python2.4/rdiff_backup/Main.py“, line 780, in CheckDest
need_check = checkdest_need_check(dest_rp)
File „/var/lib/python-support/python2.4/rdiff_backup/Main.py“, line 817, in checkdest_need_check
assert len(curmir_incs) == 2, „Found too many current_mirror incs!“
AssertionError: Found too many current_mirror incs
Then you might try to go to your rdiff-backup-data directory of your backup and delete all but the latest current-mirror-*.data files. At least my backups (simple rdiff-backup) are working again.
Dominik macht blau
Samstag, Juni 2nd, 2007Ganz viel „Blau“ in diesen Tagen:
Blaue Männer:
Ich hatte Rike zu ihrem Geburtstag Eintrittskarten zur Blue Man Group, die im Oberhausener CentrO-Theater gastiert geschenkt. Letzte Woche waren wir da und ich muss sagen: Hingehen! Eine äußerst interessante „Art Performance“ mit viel Humor, viel lauter Musik und einem Dominik in der Nebenrolle…
Blauer Himmel:
Bin im Moment mal wieder in Finnland und das Wetter hier ist sogar noch besser als in Deutschland. 25 Grad, strahlend blauer Himmel, Sonnenschein. Nur leider etwas viel Wind, daher werden wir das Frisbee-Golf-Spielen auf morgen oder Dienstag verschieben müssen. Aber dafür geht’s vermutlich gleich auf die Driving Range, um meinen Golfabschlag zu trainieren. Weil ich ja sooooo professionell golfe. Weitere Pläne: Kart-Fahren, Sauna, Trinken, …
Blaue Flecken:
Ich hatte Donnerstag mein erstes Mal: Mein erstes Mal mit der Wii. Und prompt habe ich mir den ersten blauen Fleck geholt. Vielleicht sollte ich die Warnungen über Gegenstände und Personen in der näheren Umgebung ernst nehmen. So eine Metalllampe ist einfach stärker als ich. Aber der Fleck geht langsam zurück, dafür habe ich jetzt im gesamten rechten Arm Muskelkater. Und in Tennis bin ich schon im Pro-Status. Ich glaube, so eine Wii muss ich mir auch kaufen. Verstehen, warum die Leute alle so darauf abfahren, das kann ich jetzt absolut!
Blauer Dunst:
In Finnland herrscht seit dem 1. Juni ein generelles Rauchverbot in Gaststätten, Diskos, etc. Ein äußerst angenehmes Gefühl für mich als Nichtraucher. Was wieder die Frage aufbringt, warum alle möglichen Länder solch ein Rauchverbot durchbringen (sogar Italien!), es nur offensichtlich in Deutschland soooo ein großes Problem darstellt…
Blauer Mondschein:
Fedora 7 (Moonshine) ist veröffentlicht! Auch wenn ich natürlich nicht über CDs, sondern direkt aus dem Internet aktualisiert habe, so muss ich sagen, dass mir das System bisher sehr gut gefällt. Es läuft inzwischen alles, es sieht gut aus. Was will man mehr?
Fedora 7 and problems with the laptop fan
Dienstag, Mai 29th, 2007Maybe this also concerns others, despite me.
I have Fedora running on my Acer Laptop, which is a Travelmate 661 LCi (now running flawlessly for almost four years!). Since I upgraded to Fedora 7 with its Kernel 2.6.21 I had problems with the fan of the laptop: When it started spinning, the laptop froze. Under X, it froze the whole computer, the num lock led was blinking. When using the console solely, the computer just froze and sometimes threw some acpi error messages on the console.
Well, after a while I found out, that it is a regression in the Linux kernel, bug #8385 in kernel’s bugzilla, to be more precise.
So, what to do about that? I want to use Fedora 7 and its kernels. Just patch them with the patch supplied in Comment #50 of the above mentioned bugzilla report. And for those new to building kernels, here is a short howto on how to do so (hence the name „howto“…)
- Install the fedora-devtools package: yum install fedora-rpmdevtools unifdef
- Create your rpmbuild-directory: fedora-buildrpmtree
- cd ~/rpmbuild/SRPMS
- wget http://download.fedora.redhat.com/pub/fedora/linux/updates/7/SRPMS/kernel-2.6.21-1.3228.fc7.src.rpm (or whatever kernel you would like to install)
- rpm -ivh ~/rpmbuild/SRPMS/kernel-2.6.21-1.3228.fc7.src.rpm
- cd ~/rpmbuild/SPECS; rpmbuild -bp kernel-2.6.spec
- cd ~/rpmbuild/BUILD/kernel-2.6.21/linux-2.6.21.i386 ; vi Makefile (your actual directory may differ)
- Change the string behing EXTRAVERSION to something sensible, let’s say -own.kernel
- Download the patch:
wget -O p1.patch „http://bugzilla.kernel.org/attachment.cgi?id=11684“ - Apply the patch:
patch -p1 < p1.patch - make oldconfig (we will not customize the kernel in any way, so no make menuconfig or similar done now)
- make; su -c „make modules_install && make install“
- reboot
- When rebooting make sure to chose the new kernel in grub. The default choice can be selected by editing /etc/grub.conf
I hope, this mini-howto helps anyone out there to get Fedora 7 turned back into a usable system again.
Update: edited to include the recent development / updates / better patches