Dell Inspiron fixes
Disclaimer: this information have been found on fedora forum and are here because they are valuable to me.
I have a cheap laptop always with me, a Dell Inspiron 15 (3551 if you are interested) and it comes preloaded with Ubuntu and a Dell repo preconfigured.
Installing Ubuntu Gnome, Fedora or Debian from scratch always resulted in a not working touchpad but now I solved the problem and I’m running Debian.
Switching to Debian fixed these issues:
- Random unresponsive lockscreen
- Ubuntu locked to 14.04 LTS without guaranteed updates from Dell
Drawbacks:
- I could top 11 hours of computing without Wifi, now I can top 6 hours.
- The touchpad stopped working
- The integrated Bluetooth is not recognised by the kernel
The issue n° 2 is pretty much what locked me to use Ubuntu and what kept exploring Xorg and the world of xorg.cong
files in an attempt to fix it.
the synaptic fix
- Edit the default Grub file with
editor /etc/default/grub
. Append to GRUB_CMDLINE_LINUX the stringi8042.nopnp
, save and exit. - Edit the
i2c-hid.conf
file witheditor /etc/modprobe.d/i2c-hid.conf
and append the lineblacklist i2c_hid
- Edit
/etc/modules
, add the stringsynaptic_i2c
, save and exit. - Run depmod with
depmod -a
- Update your system images with
update-initramfs
- Update Grub with
update-grub
- Reboot
the bluetooth fix
This work for the Atheros AR9565 chipset1.
- create a file in /etc/modprobe.d/, I called it
ath9k_bluetooth_coexists.conf
- copy this line inside the previous file
options ath9k btcoex_enable=1
, save and exit - run
depmod -a
- run
update-initramfs
- reboot
the external monitor fix
This fix activates the external screen with a little work required when connecting
- i915.conf in
/etc/modprobe/
- Change the Xorg configuration for your screen to use modelines
troubleshooting
I found that when the external screen is not correctly workgin I can close the lid and reopen it to give it a second kick. Another action you can take is to swtich from tty7 to tty1 anc back with the combination Ctrl + Alt + F1
and Ctrl + Alt + F7
.
-
References for the Bluetooth info, the wireless wiki, the debian wiki, the arch wiki ↩