Regarding suspend/hibernate issues: I have had this problem on various systems. 
It usually helps to switch to text mode (vt1) before suspend and back to 
graphics (vt7) after suspend. This can be automated using a script in 
/etc/pm/sleep.d:
/etc/pm/sleep.d$ cat 00-chvt 
#!/bin/sh

case "$1" in
    suspend|hibernate)
        chvt 1
        ;;
    resume|thaw)
        chvt 7
        ;;
esac

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/948053

Title:
  nvidia-173 and nvidia-96 uninstallable on Precise

To manage notifications about this bug go to:
https://bugs.launchpad.net/nvidia-drivers-ubuntu/+bug/948053/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to