xubuntu - No `rc.local` in 16.10, so how can I add a command to set brightness on boot? - Ask Ubuntu
i solved problem adding command:
echo x > /sys/class/backlight/intel_backlight/brightness to /etc/rc.local on ubuntu 14.04 . there no /etc/rc.local on ubuntu 16.10 . don't know how solve now. there new script replaces rc.local can enter command?
the standard way make permanent changes access points (they not files) in /sys use sysfsutils rather /etc/rc.local. package not installed default in 16.10, first do:
sudo apt install sysfsutils now edit file /etc/sysfs.conf, example:
sudo nano /etc/sysfs.conf and add line end of it:
class/backlight/intel_backlight/brightness = x this same echo command.
Comments
Post a Comment