Posts

Showing posts with the label brightness

lanix neuron a v20

Señores, es un verdadero dolor de güevos pero por fin pudimos tener acceso al wifi con Realtek 8723DU Wireless LAN 802.11n USB NIC. Creo que desde Debian Potato no tenía que instalar el sistema sin Internet. No recordaba cómo habilitar el USB como repositorio. El sistema detecta la unidad, pero no la reconoce como repositorio. Hay que decirle algo como: sudo mount /dev/tu-unidad-usb /media/cdrom Sólo así apt me dejó usar el disco de instalación como repositorio. Y eso que aparece en sources.list por defecto.  Adicionalmente, lwfinger me permitió compilar el driver del wifi, aunque al hacer el make salieron varios mensajes de skipping por no disponibilidad de vmlinux. Pero funcionó su magia. Eso sí, tiene la pega de tener que repetir el proceso al actualizar el kernel. Cada vez que se actualiza el kernel, hay que bajarse los linux-headers de ese kernel para repetir el make, sudo make install. So pena de quedarse sin Internet. Para cambiar el brillo en lxde . Alternativa: usar el co...

SOLVED Impossible to change the brightness

Image
UPDATE: 27082022 Source: Ask Ubuntu This made the job with Vorago Stela100 in Debian 11: sudo vi /usr/share/X11/xorg.conf.d/20-intel.conf: # begin file contents Section "Device" Identifier "card0" Driver "intel" Option "Backlight" "intel_backlight" BusID "PCI:0:2:0" EndSection # end file contents sudo vi /etc/default/grub: GRUB_CMDLINE_LINUX_DEFAULT="acpi_osi= pci=noaer" sudo update-grub o0o Yes yes yes! I'm happy: this works for me (using Debian): sudo vim /etc/default/grub  GRUB_CMDLINE_LINUX_DEFAULT="quiet acpi_osi=Linux acpi_backlight=video"  GRUB_CMDLINE_LINUX=""  sudo update-grub  sudo reboot ACPI error messages still persists when the system startup (AE_NOT_FOUND), but Fn+F11 and Fn+F12 keys are driving the brightness correctly. When I type in the command line this: ~$ for i in /sys/class/backlight/*; do echo -e "\n $i"; cat $i/{brightness,max_brightness,actual_brightness}; do...