'The keyboard CAN be set to stay on all the time. On your Qosmio, just go to: Start Toshiba Utilities HWSetup Illumination then under 'Keyboard Backlight,' click the radio button 'FN' then. Once the all the LEDs are exposed, you can check each of the LEDs with your meter by setting the meter to diode mode. A good LED should light up and the bad one will not light up. See the three photos below: True enough I found a bad LED. This is the main cause of the TV shut down. First, you need to login as root to a console that is not running inside X11 (e.g. By using Ctrl+Alt+F1 ). After stopping X11 (I’m assuming you’re using kdm as display manager — if you’re not, just replace it e.g. With lightdm )we will create xorg.conf.new in /root and then move it to /etc/X11/xorg.conf. How-i-solved-my-toshiba-linux-backlight-issues.txt 📋 Copy to clipboard ⇓ Download.
Symptomatics:
I have both the Toshiba Z830 and R850 for a couple of years now. On both, I’m using the current LTS versions of KUbuntu (at the time of writing this, 14.04). Although, I’m absolutely satisfied with them, there’s a little issue regarding the backlight:
On startup, the backlight works perfectly well. I can change the settings using FN+F6/F7 without any issues. However, after putting the device into standby and waking it up again, pressing said hotkeys shows the backlight percentage dialog, but does not change the brightness.
Because Ubuntu’s SSD reboots are pretty fast Iimply didn’t care about the issue for the past few years. However, out of curiosity, I successfully fixed the issue today.
On the root cause of most backlight issues:
Once I read through the forums I noticed that although this issue is related to the toshiba_acpi
driver, a similar issue occurs with other notebook brands (like Thinkpad) as well.
The Linux/Xorg combo supports several screens at once and therefore needs to support multiple backlight device drivers to be active concurrently.
One can show the currently active drivers using sysfs as shown here:
The issue now is that the software that handles FN+F6/F7 inputs (eventually they seem to be redirected to XRandR) doesn’t inherently know the correct device to set the backlight.
As discussed on the Debian mailing list, there is a rather simple ruleset for selecting the correct backlight driver in Xorg.
When the backlight for my Toshiba hardware can’t be changed using the hotkeys, it’s possible to set the screen brightness using (root permissions required!)
2000
is — in this case — a value for a medium brightness. The range of valid values is driver-specific, however the minimum value is always 0
whereas the maximum value is always the one listed in /sys/class/backlight/intel_backlight/max_brightness
(of course, you might need to replace intel_backlight
with the name of your driver if you intend to change the brightness of a different background driver).
In the case of Toshiba notebooks, the rulesets of the software handling the hotkeys recognize either acpi_video0
or toshiba
(see below for the difference between those two) as default. However, intel_backlight
would be the correct one to use.
Although the people on the Debian mailing list discussed where to solve this, with KUbuntu 1.40 and a vanilla (self-compiled) 3.16-rc5 kernel it doesn’t work out of the box.
By default (i.e. on a fresh installation) there seems to be only the acpi_video
backlight driver. If I follow the numerous suggestion on the forum or on LinLap.com’s Z830 page and add acpi_backlight=vendor
to the GRUB2 boot command line (you can verify it worked by using cat /proc/cmdline
), that alone doesn’t work.
The central question therefore is: Where can I change the default backlight driver to use intel_backlight
?
Solving the issue:
Step 1: Fix the GRUB2 command line
EDIT:This is step is not strictly neccessary, however it is recommended.
Although I’m not sure if this is strictly neccessary to solve the underlying issue, I recommend changing the GRUB2 commandline as suggested on LinLap.com.
Currently, I use the following GRUB2 configuration (only the changed line is shown):
Toshiba Satellite Keyboard Functions
While elevator=noop
changes the default IO scheduler, the other options deal with the ACPI backlight stuff and (according to LinLap.com) increase the Z830 battery life. I have not attempted verifying the battery life is improved, as I already have an excellent battery life on Linux.
Step 2: Creating xorg.conf
Even if they might work for others, the fix regarding /etc/pm/sleep.d/restore_brightness
suggested on LinLap.com did not work for me.
The excellent ArchLinux Backlight wiki page suggests to set the Backlight option in /etc/X11/xorg.conf
. However, this file does not exist on recent Ubuntu releases. If it exists in your Linux distribution, you can skip this step.
First, you need to login as root to a console that is not running inside X11 (e.g. by using Ctrl+Alt+F1
). After stopping X11 (I’m assuming you’re using kdm
as display manager — if you’re not, just replace it e.g. with lightdm
)we will create xorg.conf.new
in /root
and then move it to /etc/X11/xorg.conf
.
If this should in any way break your display manager (i.e. service kdm start
does not work), just delete /etc/X11/xorg.conf
.
Step 3: Modifying /etc/xorg.conf
As suggested on the ArchLinux wiki and on the Debian mailing list, we now need to add a backlight option.
Open /etc/X11/xorg.conf
using your preferred editor and find the Device
section.
Look for the Driver
clause in said section. Change it to
In some cases, it might be intel
already, but for my Z830 notebook it was modeswitch
. Without modeswitch
being used as driver, the Backlight
option we’ll add will not be recognized. On my R850 however, intel
was already set.
After that you’ll need to add the backlight option line:
The position of this line inside the driver section does not really matter — I placed it directly above the Identifier
line.
Toshiba Keyboard Backlight Not Working
After doing that, you’ll only need to restart your display manager (e.g. service kdm start
) (or just reboot if you’re lazy). This should solve all backlight issues.
Besides making it possible for me to use the backlight control hotkeys even after waking up from a standby, I now not only have 7 different backlight settings but 10 (which can be selected using the hotkeys) or more than 4000 (which can be selected by writing a value to /sys/class/backlight/intel_backlight/brightness
).
Toshiba Keyboard Backlight Not Working Windows 10
Toshiba Backlight Keyboard Driver
Here’s my full working /etc/X11/xorg.conf
for my Z830 notebook for further reference: