Talvez você esteja sofrendo de esta edição . A solução fornecida nos comentários funciona para mim (também um Inspiron 1525) até o momento.
A solução de erny (erevilla) :
* Create a file /etc/pm/sleep.d/50_custom with the following content:
--8<-- cut --8<-- cut --8<-- cut --8<-- cut --8<-- cut --8<-- cut --8<--
#!/bin/sh
# Action script to shutdown modules before suspending.
# before a hibernate
#
# Copyright: Copyright (c) 2009 Ernesto Revilla
# License: GPL-2
#
PATH=/sbin:/usr/sbin:/bin:/usr/bin
case "" in
suspend|suspend_hybrid|hibernate)
rmmod uvcvideo
rmmod usbhid
rmmod psmouse
;;
resume|thaw)
modprobe uvcvideo
modprobe usbhid
modprobe psmouse
;;
esac
--8<-- cut --8<-- cut --8<-- cut --8<-- cut --8<-- cut --8<-- cut --8<--
Agora, o script precisa ser executado como executável:
sudo chmod +x /etc/pm/sleep.d/50_custom