Hola!

Registrándote como bakuno podrás publicar, compartir y comunicarte en privado con otros bakuos :D

Regístrame ya!

Ubuntu y Vaio.. problemas con el brillo

mariobautista

Bovino Milenario
Desde
28 Feb 2009
Mensajes
1.811
Hola mis estimados bakunos, instalé ubuntu en una Vaio Eg10 aqui les dejo el link de las especificaciones.

resulta que todo va muy bien pero el brillo no baja y siempre esa a full.. he buscado info en la red pero no hay mucho, instalé un programa desde la linea de comando y hasta me metí en el gnoeconf para bajar brillo pero no pasa nada.

El problema es que la compu no es mía, e instalé ubuntu después de presumir mi compu, el problema es que ya me quedó mal...

ahora no encuentro cómo solucionarlo y por tanto recurro a ustedes.

Tanto que me constó pasar al lado de la fuerza a mi compa y me salió con esto U.U!


gracias por sus repuestas!!
 
Deberías especificar la versión de Ubuntu que utilizaste, yo te recomiendo Opensuse 11.4 con gnome 3 u Opensuse 11.3 con KDE. Lo instale en mi VAIO y hasta ahora no tengo problemas.

Seguramente en el gestor de energía puedes solucionar tu problema.
 
Deberías especificar la versión de Ubuntu que utilizaste, yo te recomiendo Opensuse 11.4 con gnome 3 u Opensuse 11.3 con KDE. Lo instale en mi VAIO y hasta ahora no tengo problemas.

Seguramente en el gestor de energía puedes solucionar tu problema.


El gestor de energía... de qué manera????
Estoy utilizando Ubuntu 10.04

Muchas gracias por responder.:vientos:
 
Al parecer hay que poner a mano los valores

i got the brightness-control working! well, not the keys, but the settings
icon_razz.gif
:

Code:
$cat /sys/class/backlight/acpi_video0/max_brightness 8 $ sudo chmod 666 /sys/class/backlight/acpi_video0/brightness $sudo echo '5' > /sys/class/backlight/acpi_video0/brightness

http://ubuntuforums.org/showthread.php?t=1449001&page=3


o con un script

Re: Summary on Sony Vaio E-series hardware support
Hi there,

I had the same problems with the fn keys and brightness control which did not work on the VAIO EB1S1E, so I did the following quick and dirty fix:

Run
Code:
acpi_listen
when pressing the Fn+F5 and Fn+F6 keys respectively, I got the following:
sony/hotkey SNC 00000001 00000010
sony/hotkey SNC 00000001 0000003b
sony/hotkey SNC 00000001 00000011
sony/hotkey SNC 00000001 0000003b

This is all the information you need to add the relevant scripts in /etc/acpi/
create the file /etc/acpi/events/sony-brightness-up with the following contents:

Code:
event=sony/hotkey SNC 00000001 00000011 action=/etc/acpi/brightup.sh
In a similar manner create /etc/acpi/event/sony-brightness-down as:

Code:
event=sony/hotkey SNC 00000001 00000010 action=/etc/acpi/brightdown.sh
Now create the corresponding scripts:
/etc/acpi/brightdown.sh

Code:
#!/bin/bash curr=`cat /sys/class/backlight/acpi_video0/actual_brightness` if [ $curr -gt 0 ]; then curr=$((curr-1)); echo $curr > /sys/class/backlight/acpi_video0/brightness; fi
and /etc/acpi/brightup.sh

Code:
#!/bin/bash curr=`cat /sys/class/backlight/acpi_video0/actual_brightness` if [ $curr -lt 8 ]; then curr=$((curr+1)); echo $curr > /sys/class/backlight/acpi_video0/brightness; fi
then all you need to do is restart acpid for the changes to take effect:

Code:
sudo service acpid restart
Unfortunately you will not see the nice brightness bar going up and down, but at least you will protect your eyes from the super bright backlight
icon_razz.gif




Por cierto que tal esta esa lap? vale la pena, esta muy barata n.n
 
yo tenia un problema similar. con una laptop gateway e hice un script para solucionarlo que deje posteado aqui en el foro, buscalo si mas no recuerdo era cambio de brillo en ubuntu, a algunas personas les sivio en sony vaio, suerte
 
Al parecer hay que poner a mano los valores

i got the brightness-control working! well, not the keys, but the settings
icon_razz.gif
:

Code:
$cat /sys/class/backlight/acpi_video0/max_brightness 8 $ sudo chmod 666 /sys/class/backlight/acpi_video0/brightness $sudo echo '5' > /sys/class/backlight/acpi_video0/brightness

http://ubuntuforums.org/showthread.php?t=1449001&page=3


o con un script

Re: Summary on Sony Vaio E-series hardware support
Hi there,

I had the same problems with the fn keys and brightness control which did not work on the VAIO EB1S1E, so I did the following quick and dirty fix:

Run
Code:
acpi_listen
when pressing the Fn+F5 and Fn+F6 keys respectively, I got the following:
sony/hotkey SNC 00000001 00000010
sony/hotkey SNC 00000001 0000003b
sony/hotkey SNC 00000001 00000011
sony/hotkey SNC 00000001 0000003b

This is all the information you need to add the relevant scripts in /etc/acpi/
create the file /etc/acpi/events/sony-brightness-up with the following contents:

Code:
event=sony/hotkey SNC 00000001 00000011 action=/etc/acpi/brightup.sh
In a similar manner create /etc/acpi/event/sony-brightness-down as:

Code:
event=sony/hotkey SNC 00000001 00000010 action=/etc/acpi/brightdown.sh
Now create the corresponding scripts:
/etc/acpi/brightdown.sh

Code:
#!/bin/bash curr=`cat /sys/class/backlight/acpi_video0/actual_brightness` if [ $curr -gt 0 ]; then curr=$((curr-1)); echo $curr > /sys/class/backlight/acpi_video0/brightness; fi
and /etc/acpi/brightup.sh

Code:
#!/bin/bash curr=`cat /sys/class/backlight/acpi_video0/actual_brightness` if [ $curr -lt 8 ]; then curr=$((curr+1)); echo $curr > /sys/class/backlight/acpi_video0/brightness; fi
then all you need to do is restart acpid for the changes to take effect:

Code:
sudo service acpid restart
Unfortunately you will not see the nice brightness bar going up and down, but at least you will protect your eyes from the super bright backlight
icon_razz.gif




Por cierto que tal esta esa lap? vale la pena, esta muy barata n.n


intenté pero no me funcionó, seguí al pie de la letra... volveré a intentar con más calma.....


por cierto la compu está vara y jala muy bien..!!!!:metal:
 
Volver
Arriba