Sleep not working on Compaq Laptop

Asked by redsox09

My wifes Compaq/HP laptop cannot return to work after computer goes to sleep. I have to shut down the computer and do a complete restart. Hardy Heron.

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Alessio Treglia
Solved:
Last query:
Last reply:
Revision history for this message
hardcorelinux (hardcorelinux) said :
#1

more specs would be helpful, make/model/number/processor...

Revision history for this message
redsox09 (redsox09) said :
#2

Compaq Presario V6000 CPU: AMD Turion(tm) 64 X2 Mobile Technology TL-50 1.6 MGHZ Graphics: NVIDIA GO GFORCE 6150 Memory: 1GB RAM

Revision history for this message
hardcorelinux (hardcorelinux) said :
#3

try adding iommu=soft to your kernel parameters, boot and then try and suspend(this is a blind shot)

Revision history for this message
redsox09 (redsox09) said :
#4

How do I do this? Terminal?

Revision history for this message
Best Alessio Treglia (quadrispro) said :
#5

No, you have to add that string in the kernel line you are using in /boot/grub/menu.lst

For example:

title Ubuntu 8.04, kernel 2.6.24-19-generic
root (hd0,1)
kernel /boot/vmlinuz-2.6.24-19-generic root=UUID=173b7dcf-b906-4a98-a530-d7c871b6b414 ro splash
initrd /boot/initrd.img-2.6.24-19-generic
quiet

will become:

title Ubuntu 8.04, kernel 2.6.24-19-generic
root (hd0,1)
kernel /boot/vmlinuz-2.6.24-19-generic root=UUID=173b7dcf-b906-4a98-a530-d7c871b6b414 ro splash iommu=soft
initrd /boot/initrd.img-2.6.24-19-generic
quiet

or you can add that to the kernel parameters list in the GRUB boot menu (press 'esc' at boot time, select the first kernel and press 'e', you could add iommu=soft here)

Revision history for this message
redsox09 (redsox09) said :
#6

Thanks for you help. I will try this weekend.