這篇算是給自己做個記錄的.

在2015時買了 Dell Inspiron 5448,
CPU是 i5-5200u,
16G記憶體,
1T的硬碟,
顯卡是 AMD Radeon R7 M260,
第一件事就是安裝ubuntu,
然後啟用了 fglrx driver,
結果無法調整亮度,
但靠著Google大神的幫忙,
還是找到了方法,
先在設定檔 "/etc/X11/xorg.conf" 裡找到如下的設定
Section "Monitor"
    Identifier "amd-monitor"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
EndSection
記住 Identifier 的設定

然後用下面的指令在目錄 "/usr/share/X11/xorg.conf.d" 下編輯設定檔 "20-backlight.conf"
sudo vi /usr/share/X11/xorg.conf.d/20-backlight.conf

在檔案裡加入 Monitor 的設定
Section "Monitor"
    Identifier "amd-monitor"
    Option "Backlight" "intel_backlight"
    Option "DPMS" "true"
EndSection
這裡的Identifier要跟上面的一樣

存檔後重開機,
然後按亮度調整的 Fn key,
哈哈~ 成功了!!!

#ubuntu   #notebyevanwu   #dellinspiron   #backlight