2:05pm up 79 days 6:40, 5 users, load average: 2948.98, 2948.04, 2945.49
(Later we found out that the load was actually "fake", the kernel had somehow died and everything accessing /proc/$pid/* was hanging in state D)
2:05pm up 79 days 6:40, 5 users, load average: 2948.98, 2948.04, 2945.49
#!/bin/bash
while read p; do
rpm -V $p > /dev/null && continue
echo "fixing $p's file ownership..."
while read x x u g x x x x n x; do
chown -h $u:$g $n
done < <(rpm -qlv $p)
done < <(rpm -qa)
Using default hsync range of 31.50-37.90 kHz
Using default vrefresh range of 50.00-70.00 Hz
hwinfo --monitor
") helps quite a lot. Put this into /etc/X11/xorg.conf.d/50-monitor.conf:HorizSync 31 - 61and you get a much more usable 1024x768 resolution.
VertRefresh 50 - 90
susi:~ # mount /space/FACTORY.iso /mnt/ -oloop
mount: Could not find any loop device. Maybe this kernel does not know
about the loop device? (If so, recompile or `modprobe loop'.)
susi:~ # echo loop > /etc/modules-load.d/loop.confAt least until someone fixes the Kernel's loop device behaviour ;)