You are not logged in.
Pages: 1
Hello!
I've a problem after update my system with pacman -Syu.
When system loads cpufreq i've this problem:
cpufreq-set: error while loading shared libraries: libsysfs.so.1: cannot open shared object file: No such file or directory
I try uninstall the cpufrequtils package and reinstall it but doesn't works
How can i fix it?
thanks.
Offline
cpufrequtils has been recompiled against sysfsutils 2.0.0 and additionally upgraded. Please re-update (-Syu) when your mirror updates and try again.
Offline
There's a new version of cpufrequtils out today that will solve this - you just need to wait for it to reach your mirror.
Offline
I did this for now:
[root@paradigm ~]# ln -sf /usr/lib/libsysfs.so.2 /usr/lib/libsysfs.so.1
cpu scaling works again.
Offline
I did this for now:
[root@paradigm ~]# ln -sf /usr/lib/libsysfs.so.2 /usr/lib/libsysfs.so.1
cpu scaling works again.
That's not a proper fix. Any API changes will most likely segfault...
Offline
No need of cpufrequtils :
$ cat /etc/rc.local
#!/bin/sh
echo conservative > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
That's ok. And of course powernow-k7 in MODULES array of rc.conf
BTW the last update of this (cpufrequtils) package has overwriten my /etc/conf.d/cpufreq file, is this a normal comportement ? This file was not in NoUpgrade as if I remeber correctly, NoUpgrade was deprecated with last pacman package...
Excessive showering, grooming, and toothbrushing is not only vain, it wastes valuable coding time.
Offline
No need of cpufrequtils :
$ cat /etc/rc.local
#!/bin/sh
echo conservative > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governorThat's ok. And of course powernow-k7 in MODULES array of rc.conf
Sure, that's pretty much what cpufrequtils do, however, they a) don't spawn a shell process and b) allow you to configure sudo to handle user-based changes. It's just a nice wrapper for that.
BTW the last update of this (cpufrequtils) package has overwriten my /etc/conf.d/cpufreq file, is this a normal comportement ? This file was not in NoUpgrade as if I remeber correctly, NoUpgrade was deprecated with last pacman package...
Errm, blame me - that file should be backed up. Thankfully, it's not a giant config file.
Offline
Errm, blame me - that file should be backed up. Thankfully, it's not a giant config file.
Yes not a big deal, it just surprises me
Excessive showering, grooming, and toothbrushing is not only vain, it wastes valuable coding time.
Offline
Pages: 1