O que você deve fazer é modificar o brilho manualmente, enquanto verifica qual arquivo de brilho foi modificado.
por exemplo,
$ ls -l
total 0
lrwxrwxrwx 1 root root 0 Feb 24 14:02 dell_backlight -> ../../devices/platform/dell-laptop/backlight/dell_backlight
lrwxrwxrwx 1 root root 0 Feb 24 14:02 intel_backlight -> ../../devices/pci0000:00/0000:00:02.0/drm/card0/card0-LVDS-1/intel_backlight
Altere o brilho e verifique qual arquivo está sendo modificado:
$ cat intel_backlight/brightness
978
Em seguida, o que estiver sendo modificado, pré-ajuste em rc.local
:
$ cat /etc/rc.local
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
echo 978 > /sys/class/backlight/intel_backlight/brightness
exit 0
Isso funcionou para mim no meu Dell e foi diferente da resposta fornecida na pergunta que você vinculou.