> ## Content Index
> Fetch the complete content index at: https://itsfoss.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# Fix Brightness Control Not Working for Ubuntu & Linux Mint
- URL: https://itsfoss.com/fix-brightness-ubuntu-1310/
- Published: 2014-03-20T23:54:59.000Z
- Updated: 2023-01-11T09:56:06.000Z
- Author: Abhishek Prakash
- Tags: #Import 2022-12-26 08:27

Some of the most prominent issues with Ubuntu are brightness control, wifi and sound. We saw how to [fix no sound issue](https://itsfoss.com/fix-sound-ubuntu-1304-quick-tip/ "How To Fix: No Sound In Ubuntu 13.04 and Ubuntu 13.10 [Updated]") and [no network issue in Ubuntu](https://itsfoss.com/fix-no-wireless-network-ubuntu/) in other posts. In this quick post, we’ll see how to **fix brightness function key not working in Ubuntu**.

On my Dell Inspiron, using the function key to change the brightness did not yield any results. Brightness was at the maximum and my attempts to lower it went in vain.

It turns out, there are two bugs related to brightness issue in Ubuntu. One relates to [Nvidia graphics](https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-319/+bug/1241745?ref=itsfoss.com) card and other relates to [Intel graphics](https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1255428?ref=itsfoss.com) card. The solution, that worked for me, is for Intel one. Let’s first find out what graphics/video card to do you have.

This article was originally written for an older version of Ubuntu but it should still be applicable to newer Ubuntu versions and the distributions based on Ubuntu.

## Step 1: Find video/graphics card in Ubuntu and Linux Mint

Run the command below in the terminal to know what video card is used for the backlight/brightness:

```
ls /sys/class/backlight/
```

[![find graphics driver in Ubuntu](https://itsfoss.com/content/images/wordpress/2014/03/Screenshot-from-2014-03-20-220414.png)](https://itsfoss.com/content/images/wordpress/2014/03/Screenshot-from-2014-03-20-220414.png)

As you can see, the output for me is dell\_backlight and intel\_backlight. An indicator that the graphics card in use is Intel. Another way to find out the graphics card would be to go in **System Settings->Details->Graphics**. You can see the graphics card in use.

If your graphics card is Intel, you can proceed with the fix below.

## Step 2: Fix brightness control issue with Intel card in Ubuntu and Linux Mint:

Open a terminal and create the following configuration file, if it does not exist:

```
sudo touch /usr/share/X11/xorg.conf.d/20-intel.conf
```

Now we need to edit this file. You can use any editor be it a terminal one or graphical.

```
sudo gedit /usr/share/X11/xorg.conf.d/20-intel.conf
```

Add the following lines to this file:

```
Section "Device"
        Identifier  "card0"
        Driver      "intel"
        Option      "Backlight"  "intel_backlight"
        BusID       "PCI:0:2:0"
EndSection
```

Save it. Log out and log in back. The brightness control should be working through function keys now:

[![Fix brightness control not working in Ubuntu 13.10](https://itsfoss.com/content/images/wordpress/2014/03/Brightness_control_Ubuntu.jpeg)](https://itsfoss.com/content/images/wordpress/2014/03/Brightness%5Fcontrol%5FUbuntu.jpeg)

If you find that brightness is reset after the restart, try this to [fix brightness settings not remembered by Ubuntu and Linux Mint](https://itsfoss.com/ubuntu-mint-brightness-settings/).

Did it work for you? Let me know if you have questions or suggestions.