![]() |
ubuntu.com - launchpad.net - ubuntu help
|
|
|||||||
Hello, Unregistered You are browsing a READ only archive of the main support categories pre 4/21/2008. You will not be able to post or reply any threads in this section.
|
|
Hardware & Laptops Problems with hardware & laptops not being detected or supported during or after install. |
| View Poll Results: Was this guide useful to you? | |||
| Yes |
|
11 | 100.00% |
| No |
|
0 | 0% |
| Voters: 11. You may not vote on this poll | |||
|
|
Thread Tools | Display Modes |
|
|
#11 |
|
A Carafe of Ubuntu
![]() Join Date: Jul 2007
Beans: 96
|
Re: HOWTO: HP Compaq 6720s and ubuntu 7.10 Gutsy Gibbon : a (hopefully) complete guid
Hi samstre,
when did the computer freeze? When you were booting or when you closed the laptop's lid? Regards! |
|
|
|
|
#12 |
|
First Cup of Ubuntu
![]() Join Date: Nov 2006
Beans: 7
|
Re: HOWTO: HP Compaq 6720s and ubuntu 7.10 Gutsy Gibbon : a (hopefully) complete guid
when i closed my laptop lid...
i think the problem with my lid is all about the /etc/acpi/ scripts! first of all it looks like the script /etc/acpi/events/lidbtn is never used! if changed the /etc/acpi/events/lidbtd from: Code:
# /etc/acpi/events/lidbtn/ # Called when the user closes or opens the lid event=button[ /]lid action=/etc/acpi/lid.sh Code:
# /etc/acpi/events/lidbtn/ # Called when the user closes or opens the lid event=button[ /]lid #action=/etc/acpi/lid.sh action=/home/samstre/Desktop/lid.sh Code:
echo "Lid Closed/Opened" and even if the lid.sh would be executed it wouldn't work... the original lid.sh something thats called CheckPolicy()... . /usr/share/acpi-support/policy-funcs Code:
if [ `CheckPolicy` == 0 ]; then exit; fi Code:
grep closed /proc/acpi/button/lid/*state but why the hell is that script never executed??? btw: can anybody please send me his /etc/acpi/lid.sh and his /usr/share/acpi-support/screenblank thanks in advance samstre Last edited by samstre; January 11th, 2008 at 10:13 AM.. |
|
|
|
|
#13 |
|
First Cup of Ubuntu
![]() Join Date: Nov 2006
Beans: 7
|
Re: HOWTO: HP Compaq 6720s and ubuntu 7.10 Gutsy Gibbon : a (hopefully) complete guid
sry ... doublepost
Last edited by samstre; January 11th, 2008 at 10:15 AM.. |
|
|
|
|
#14 | |
|
A Carafe of Ubuntu
![]() Join Date: Jul 2007
Beans: 96
|
Re: HOWTO: HP Compaq 6720s and ubuntu 7.10 Gutsy Gibbon : a (hopefully) complete guid
Hey,
I am currently in Fedora and I have not been able to find the files you requested on my system. My computer was also freezing when I closed the lid, but I have fixed this using http://ubuntuforums.org/showthread.php?t=587390&page=3 Quote:
Regards! Last edited by AlesUbu123; January 11th, 2008 at 10:56 AM.. |
|
|
|
|
|
#15 |
|
First Cup of Ubuntu
![]() Join Date: Nov 2006
Beans: 7
|
Re: HOWTO: HP Compaq 6720s and ubuntu 7.10 Gutsy Gibbon : a (hopefully) complete guid
Yeah there is a waring in the DSDT table (warnings can be ignored). I've fixed the waring according to http://wiki.ubuntuusers.de/acpi-fix
^^ sorry i only found the german version i've changed my dsdt and updated it... now i got no warnings, no errors... but still no change... i've tried the acpi=off option, but still no change... |
|
|
|
|
#16 | ||||
|
A Carafe of Ubuntu
![]() Join Date: Jul 2007
Beans: 96
|
Re: HOWTO: HP Compaq 6720s and ubuntu 7.10 Gutsy Gibbon : a (hopefully) complete guid
Hey samstre!
I have tried debugging the DSDT tables and I also got this: Quote:
I am in fact having some problems with the thermal zones setting on my computer, they are different every time I boot my computer. Sometimes my fan starts working at temperatures of 34 ˚C and somtimes at temperatures of 49 ˚C. Even dmesg shows that thermal_zones are not consistent!! Check this out: At one time I get this from dmesg Quote:
Quote:
2. Have you noted this inconsistencies in thermal_zones (fans turned being on at different temperatures, sometimes the computer is really quiet and after rebooting fans are on almost instantly and it is louder, and I have noted that after using suspend fans are also turned on very soon)? 3. Has fixing DSDT tables resolved this? 4. Could you possibly post the output of this command? Quote:
I am really intrigued now Regards, Ales Last edited by AlesUbu123; January 14th, 2008 at 06:21 AM.. |
||||
|
|
|
|
#17 |
|
First Cup of Ubuntu
![]() Join Date: Nov 2006
Beans: 7
|
Re: HOWTO: HP Compaq 6720s and ubuntu 7.10 Gutsy Gibbon : a (hopefully) complete guid
i'm sorry that i've been offline for such a long time!
1. i'm not quite shure... they say that compiler warnings can be ignored... 2. i haven't noted inconsistencies (because i haven't looked for any 3. i've fixed the dsdt table right after installing so i can't say anything... but i'll test within the next few days 4. Code:
[ 3.488000] ACPI: Thermal Zone [TZ0] (53 C) [ 3.492000] ACPI: Thermal Zone [TZ1] (54 C) [ 3.496000] ACPI: Thermal Zone [TZ3] (46 C) [ 3.504000] ACPI: Thermal Zone [TZ4] (20 C) [ 3.508000] ACPI: Thermal Zone [TZ5] (41 C) 1. install the iasl package 2. read the current dsdt table and save it into a file Code:
sudo cat /proc/acpi/dsdt > dsdt.dat Code:
cp dsdt.dat /home/<user>/save_dsdt.dat Code:
iasl -d dsdt.dat 5. compile your dsdt.dsl Code:
iasl -sa dsdt.dsl Code:
save_dsdt.dsl 8740: Wait (\_SB.C1AB, 0x10) Warning 1103 - Possible operator timeout is ignored ^ 7. save the file! 8. recompile the file Code:
iasl -sa dsdt.dsl 9. copy the file to the initramfs-tools dir Code:
sudo cp dsdt.aml /etc/initramfs-tools/DSDT.aml Code:
sudo update-initramfs -u |
|
|
|
|
#18 |
|
A Carafe of Ubuntu
![]() Join Date: Jul 2007
Beans: 96
|
Re: HOWTO: HP Compaq 6720s and ubuntu 7.10 Gutsy Gibbon : a (hopefully) complete guid
Hey samstre!
Thank you for your kind and detailed reply. I'll try it as soon I come home! Regards EDIT I tried fixing the tables - and it worked, but sadly this has not changed the thermal management much on my laptop. Still hoping to find something to make it more quieter. Last edited by AlesUbu123; January 17th, 2008 at 06:47 AM.. |
|
|
|
|
#19 |
|
Gee! These Aren't Roasted!
![]() Join Date: Dec 2007
Location: Rome
Beans: 210
Ubuntu 9.04 Jaunty Jackalope
|
Re: HOWTO: HP Compaq 6720s and ubuntu 7.10 Gutsy Gibbon : a (hopefully) complete guid
hey, seems this 'lil guide has had a good success !!
I guess that this means it has been useful ![]() so... any suggestions to update the first post of the guide? any stable fixes available? just let me know, ok? anticipate thanx for your patience and time... p.s. many people contacted me asking how to make the wireless card work on fedora 8 (i know this would be an OT)... i just gave it a try but i haven't been able to make it work in a stable way (just with ndiswrapper restarting the network and the networkmanager and dispatcher many times. any suggestions?
__________________
"He's the kind of guy you go out with to split a bottle with a friend. I'm the kind of guy you go out with to split a friend with a bottle..." David Lee Roth http://bellavistabeb.netsons.org Last edited by slayer^_^; February 1st, 2008 at 07:49 AM.. Reason: adding |
|
|
|
|
#20 |
|
First Cup of Ubuntu
![]() Join Date: Feb 2008
Beans: 1
|
Re: HOWTO: HP Compaq 6720s and ubuntu 7.10 Gutsy Gibbon : a (hopefully) complete guid
Just for info - I had no trouble installing the drivers + detecting hw for wireless using ndiswrapper but to actually enable it I had to change the bios settings to set wireless on + bluetooth off by default and turn wireless switching off (BIOS ver F.05). After boot I then had to press the wireless button to turn the light from orange -> blue to actually turn on wireless.
Great guide btw! |
|
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|