setelah saya coba-coba dan cari checing-checing di gogol, berikut cara memperbaikinya :
- Pertama, buat file dengan nama 20_custom-ehci_hcd dan menyimpannya di /etc/pm/sleep.d dan untuk isi filenya sendiri seperti dibawah ini:
#!/bin/sh
case "${1}" in
hibernate|suspend)
# Unbind ehci_hcd for first device 0000:00:1a.0
echo -n "0000:00:1a.0" | tee /sys/bus/pci/drivers/ehci_hcd/unbind
# Unbind ehci_hcd for second device 0000:00:1d.0
echo -n "0000:00:1d.0" | tee /sys/bus/pci/drivers/ehci_hcd/unbind
;;
resume|thaw)
# Bind ehci_hcd for first device 0000:00:1a.0
echo -n "0000:00:1a.0" | tee /sys/bus/pci/drivers/ehci_hcd/bind
# Bind ehci_hcd for second device 0000:00:1d.0
echo -n "0000:00:1d.0" | tee /sys/bus/pci/drivers/ehci_hcd/bind
;;
esac

0 comments:
Posting Komentar