* Imagenes de instalación de las versiones estables para Mageia y OpenMandriva.

OpenMandriva: Mageia (Mageia 9) 20/Agosto/2023 - Anuncio, Descargas.

Blogdrake recomienda descargar las imágenes de instalación (iso) vía torrent para evitar corrupción de datos, aprovechar mejor su ancho de banda y mejorar la difusión de las distribuciones.

¿Cómo hago para que "modprobe acpi-cpufreq" cargue al inicio?

He estado intentando poner los procesadores de mi Intel core 2 con en Ondemand, leyendo varios hilos de Blogdrake lo he conseguido, pero al reiniciar, me toca volver a repetir el proceso. ¿Cómo podría hacer para que se cargara al inicio?

Esto es lo que me suelta konsole nada más arrancar:

[root@localhost ~]# cpufreq-set -c 0 -g ondemand
Error setting new values. Common errors:
- Do you have proper administration rights? (super-user?)
- Is the governor you requested available and modprobed?
- Trying to set an invalid policy?
- Trying to set a specific frequency, but userspace governor is not available,
   for example because of hardware which cannot be set to a specific frequency
   or because the userspace governor isn't loaded?
[root@localhost ~]# cpufreq-set -c 1 -g ondemand
Error setting new values. Common errors:
- Do you have proper administration rights? (super-user?)
- Is the governor you requested available and modprobed?
- Trying to set an invalid policy?
- Trying to set a specific frequency, but userspace governor is not available,
   for example because of hardware which cannot be set to a specific frequency
   or because the userspace governor isn't loaded?
[root@localhost ~]#
[root@localhost ~]# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
cat: /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor: No existe el fichero o el directorio
[root@localhost ~]# cat /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor
cat: /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor: No existe el fichero o el directorio
[root@localhost ~]#

pero si antes pongo:

[root@localhost ~]# modprobe acpi-cpufreq

Los comandos anteriores ya funcionan y podemos ver se supone que ya está en Ondemand:

[root@localhost ~]# cpufreq-set -c 0 -g ondemand
[root@localhost ~]# cpufreq-set -c 1 -g ondemand
[root@localhost ~]# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
ondemand
[root@localhost ~]# cat /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor
ondemand
[root@localhost ~]#
[root@localhost ~]# cpufreq-set
At least one parameter out of -f/--freq, -d/--min, -u/--max, and
-g/--governor must be passed
[root@localhost ~]# cpufreq-info
cpufrequtils 008: cpufreq-info (C) Dominik Brodowski 2004-2009
Report errors and bugs to cpufreq@vger.kernel.org, please.
analyzing CPU 0:
  driver: acpi-cpufreq
  CPUs which run at the same hardware frequency: 0 1
  CPUs which need to have their frequency coordinated by software: 0
  maximum transition latency: 10.0 us.
  hardware limits: 1000 MHz - 1.67 GHz
  available frequency steps: 1.67 GHz, 1.33 GHz, 1000 MHz
  available cpufreq governors: ondemand, userspace, performance
  current policy: frequency should be within 1000 MHz and 1.67 GHz.
                  The governor "ondemand" may decide which speed to use
                  within this range.
  current CPU frequency is 1.67 GHz (asserted by call to hardware).
analyzing CPU 1:
  driver: acpi-cpufreq
  CPUs which run at the same hardware frequency: 0 1
  CPUs which need to have their frequency coordinated by software: 1
  maximum transition latency: 10.0 us.
  hardware limits: 1000 MHz - 1.67 GHz
  available frequency steps: 1.67 GHz, 1.33 GHz, 1000 MHz
  available cpufreq governors: ondemand, userspace, performance
  current policy: frequency should be within 1000 MHz and 1.67 GHz.
                  The governor "ondemand" may decide which speed to use
                  within this range.
  current CPU frequency is 1.67 GHz (asserted by call to hardware).
[root@localhost ~]#

¿Cómo hago para que "modprobe acpi-cpufreq" se cargue en el arranque?, ¿Hay alguna aplicación gráfica con la que se pueda cambiar rápidamente de gobernador como se hace por ejemplo en un Android rooteado?

Gracias.

Opciones de visualización de comentarios

Seleccione la forma que desee de mostrar los comentarios y haga clic en «Guardar opciones» para activar los cambios.


Gravatar de lrbasurto

# 117506 ¿ init.d?

¿Has tratado de convertirlos en un script y ponerlos en /etc/init.d/ ?

"Si tu cuerpo pide alcohol, sexo, lujuria, bajas pasiones, dáselo porque lo necesita...
Si no lo pide, oblígalo... porque él no puede andar haciendo lo que le de gana"

Luis Roberto Basurto Seguin
lrbasurto(arroba)gmail(punto)com



Gravatar de Siupermen

# 117509 Gracias.

Lo siento pero nunca he hecho un script (creo), ni idea de cómo se hace eso. :(



Gravatar de Annubis

# 117508 Son 2 preguntas xD

1. Añádelo a /etc/rc.local
2. En KDE, usa su gestor de energía.



Gravatar de Siupermen

# 117510 Gracias.

2. Era sólo por curiosidad. Si te refieres a lo que sale pinchando en la batería de la bandeja por ejemplo, sólo viene para que se apague la pantalla y cosas así, pero no la frecuencia del procesador.

1. ¿Qué añado, "modprobe acpi-cpufreq"?, ¿y dónde, al final del archivo?

Pd: Perdonad mi ignorancia, ya que después de 3 años y pico, supongo que ya debería saber estas cosas.



Gravatar de kapyderi

# 117511 Antes y despues...

Antes...

#!/bin/sh
#
### BEGIN INIT INFO
# Provides: rc.local
# X-Mandriva-Compat-Mode
# Default-Start: 2 3 4 5
# Short-Description: Local initialization script
# Description: This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
### END INIT INFO

touch /var/lock/subsys/local

Despues...

#!/bin/sh
#
### BEGIN INIT INFO
# Provides: rc.local
# X-Mandriva-Compat-Mode
# Default-Start: 2 3 4 5
# Short-Description: Local initialization script
# Description: This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
### END INIT INFO

touch /var/lock/subsys/local
# Carga de modulo
modprobe acpi-cpufreq

En definitiva dentro de este fichero se puede ejecutar un comando o un script, según prefieras y en realidad lo que hace este rc.local es que despues de la carga de los procesos del sistema, todo lo que este dentro se ejecutara seguidamente. xD

Comentas...
Saludos!!!

Linux es como el Barça...lo tiene todo para ser el número uno
Registered Linux user #472290
MiniBOFH 2008 - MediumBOFH - KapyBOFH - Utiliza RecoverDrake!! (Proyecto Derix)



Gravatar de Siupermen

# 117526 Ahora sí:

Ahora sí:

[root@localhost ~]# cpufreq-info
cpufrequtils 008: cpufreq-info (C) Dominik Brodowski 2004-2009
Report errors and bugs to cpufreq@vger.kernel.org, please.
analyzing CPU 0:
  driver: acpi-cpufreq
  CPUs which run at the same hardware frequency: 0 1
  CPUs which need to have their frequency coordinated by software: 0
  maximum transition latency: 10.0 us.
  hardware limits: 1000 MHz - 1.67 GHz
  available frequency steps: 1.67 GHz, 1.33 GHz, 1000 MHz
  available cpufreq governors: ondemand, userspace, performance
  current policy: frequency should be within 1000 MHz and 1.67 GHz.
                  The governor "ondemand" may decide which speed to use
                  within this range.
  current CPU frequency is 1.67 GHz (asserted by call to hardware).
analyzing CPU 1:
  driver: acpi-cpufreq
  CPUs which run at the same hardware frequency: 0 1
  CPUs which need to have their frequency coordinated by software: 1
  maximum transition latency: 10.0 us.
  hardware limits: 1000 MHz - 1.67 GHz
  available frequency steps: 1.67 GHz, 1.33 GHz, 1000 MHz
  available cpufreq governors: ondemand, userspace, performance
  current policy: frequency should be within 1000 MHz and 1.67 GHz.
                  The governor "ondemand" may decide which speed to use
                  within this range.
  current CPU frequency is 1.67 GHz (asserted by call to hardware).
[root@localhost ~]# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
ondemand
[root@localhost ~]# cat /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor
ondemand
[root@localhost ~]#

Muchísimas gracias a todos.

Opciones de visualización de comentarios

Seleccione la forma que desee de mostrar los comentarios y haga clic en «Guardar opciones» para activar los cambios.