GNU/ Linux on a Compaq Presario C700 C738TU

Finally I have a new laptop an HP Compaq Presario C700 (Model C738TU). A good machine with very good performance, for a fairly reasonable price.

The default factory installation on it was Free/DOS. I have installed GNU/ Linux Fedora Core 8 on it. Most of the things have worked out of the box. Here is some basic informations which can help other owners of this notebook using GNU/ Linux.

UPDATE 2009/05/20: Now I have upgraded (rather this time a clean install after a remove all, except home partition) to Fedora Core 10 and Hooray all H/W works out of box.No more searching/ googling for help

UPDATE 2008/08/20: Now I have upgraded it to Fedora Core 9, please read the inline comments for updates on Fedora Core 9.

Video/ LCD
lspci says: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (rev 03)
Work's without problem. Except for that I was unable to adjust the brightness of LCD screen. Had to do it manually using

echo -n X > /proc/acpi/video/OVGA/DD03/brightness

where X can be any of 0 10 20 30 40 50 60 70 80 90 100
I am trying to find a way so that it may work with kpowersave else I will use the method described here
Fedora Core 9: On Feodra Core 9 the 3 acceleration is back. KDE 4 is a little unstable but Gnome works well.

Audio
lspci says: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)
module in use: snd-hda-intel
Works without problem. But again updating the kernel version is recommended, after a kernel update to 2.6.23.15-137 another audio control PCM is avaible besides the Master and Capture. A Mute Audio control is not available.

Network controllers
lspci says: Wireless: Atheros Communications, Inc. AR5006EG 802.11 b/g Wireless PCI Express Adapter (rev 01)
Had to install Madwifi Module, please note not the default one but the one listed here: http://snapshots.madwifi.org/special/, but make sure you have the kernel-devel package and gcc installed to build this module.
Fedora Core 9: To make this card work in Fedora Core 9 follow the instructions mentioned in this blog or simply do the following:

yum --enablerepo=livna-testing install kmod-madwifi

lspci says: Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10)
Works out of box.

Webcam
lsusb says: 04f2:b057 Chicony Electronics Co., Ltd
Works well after installing UVC Video Drivers.

Multi-Card Reader
lsusb says: 0bda:0158 Realtek Semiconductor Corp.
(Update: 18/03/07) Works well as a standard USB mass storage device.

Alps Touch Pad
Works fine.

Special/ Soft Keys
Play/ Pause/ Next/ Prev work fine with rhythmbox and amork. Volume Up/ Down work fine.
The Lock/ Help keys were recognised after the following additions/ changes in
/usr/share/hal/fdi/information/10freedesktop/30-keymap-hp.fdi

        <match key="/org/freedesktop/Hal/devices/computer:system.hardware.product" contains="C700">
          <append key="input.keymap.data" type="strlist">e00a:screenlock</append> <!-- FnF6 (lock) -->
          <append key="input.keymap.data" type="strlist">e031:help</append>     <!-- FnF1 (help) -->
          <append key="info.capabilities" type="strlist">input.keymap</append>
        </match>
 

Maybe a small patch can be contributed to www.freedesktop.org.

Volume Mute/ Print/ WWW/ Switch Display/ Sleep/ Brightness Up/ Brightness Down as of now do not seem work. Touch pad disable/ enable key works fine as well.

NOTE: Again do not forget to use livna as your yum repository for obtaining support for various otherwise closed multimedia formats.

Happy hacking.

Submitted by Ajay Pal Singh Atwal on February 24, 2008 - 12:01pm. categories [ GNU/ Linux ] Ajay Pal Singh Atwal's blog | 16043 reads

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
Submitted by Bhomik Zala (not verified) on January 18, 2010 - 9:34am.

hi..
ajay i ordered livecd of ubuntu 9.10...
i installed it in ma lappyy...
nice OS ..but i need drivers for dat...
can u plz help me out...???

thanks in advance

Submitted by Ajay Pal Singh Atwal on January 18, 2010 - 6:41pm.

IMHO all drivers/ kernel modules should be part of the distribution ubuntu 9.10 and there should be no need for any external drivers/ software in a modern GNU/Linux distribution. In case any specific device is not working please mention that.
Then I can be of help.

Thanks
Ajay Pal Singh Atwal

Submitted by rajeshkalapala (not verified) on October 26, 2009 - 11:45am.

please send me compaq c738tu drivers i need a better link other than www.hp.com

Submitted by pramod (not verified) on July 9, 2009 - 3:21pm.

Hello.
I am Pramod. I have a presario C717NR Notebook. Recently i have installed Fedora 10. But I am not able to find drivers for Fedora for audio, video, card reader and modem and Wireless divers.

Can any one suggest me the drivers please.

Submitted by Imran Khan (not verified) on May 6, 2009 - 3:25pm.

pleas if any one know about these drivers where from i get it.........
send....reply

Submitted by B.Gangopadhyay (not verified) on December 11, 2008 - 8:36pm.

I solved it like this:
+++++++++++++++++++++++++++++++++++++
sudo gedit /etc/acpi/video_brightnessup.sh
Replace everything in this file with:

#!/bin/bash

CURRENT=$(grep "current:" /proc/acpi/video/OVGA/DD03/brightness |awk '{print $2}')

case "$CURRENT" in

100)
echo -n 100 > /proc/acpi/video/OVGA/DD03/brightness;
;;
90)
echo -n 100 > /proc/acpi/video/OVGA/DD03/brightness;
;;
80)
echo -n 90 > /proc/acpi/video/OVGA/DD03/brightness;
;;
70)
echo -n 80 > /proc/acpi/video/OVGA/DD03/brightness;
;;
60)
echo -n 70 > /proc/acpi/video/OVGA/DD03/brightness;
;;
50)
echo -n 60 > /proc/acpi/video/OVGA/DD03/brightness;
;;
40)
echo -n 50 > /proc/acpi/video/OVGA/DD03/brightness;
;;
30)
echo -n 40 > /proc/acpi/video/OVGA/DD03/brightness;
;;
*)
echo -n 100 > /proc/acpi/video/OVGA/DD03/brightness ;
;;
esac

--------------END of VIDEO-BRIGHTNESS_UP---------

Now do the brightness_down file:

--------------BEGIN BRIGHTNESS_DOWN------------
sudo gedit /etc/acpi/video_brightnessdown.sh
Replace everything in this file with:

#!/bin/bash

CURRENT=$(grep "current:" /proc/acpi/video/OVGA/DD03/brightness |awk '{print $2}')

case "$CURRENT" in

30)
echo -n 30 > /proc/acpi/video/OVGA/DD03/brightness;
;;
40)
echo -n 30 > /proc/acpi/video/OVGA/DD03/brightness;
;;
50)
echo -n 40 > /proc/acpi/video/OVGA/DD03/brightness;
;;
60)
echo -n 50 > /proc/acpi/video/OVGA/DD03/brightness;
;;
70)
echo -n 60 > /proc/acpi/video/OVGA/DD03/brightness;
;;
80)
echo -n 70 > /proc/acpi/video/OVGA/DD03/brightness;
;;
90)
echo -n 80 > /proc/acpi/video/OVGA/DD03/brightness;
;;
100)
echo -n 90 > /proc/acpi/video/OVGA/DD03/brightness;
;;
*)
echo -n 60 > /proc/acpi/video/OVGA/DD03/brightness ;
;;
esac

----------END VIDEO=BRIGHTNESS_DOWN------------
Save both files.

Submitted by Anonymous Genious (not verified) on October 16, 2008 - 3:45am.

Here is the complete transcript b/w me and HP Compaq support guy.

Ken: You are welcome.
Ken: Here are some download links:
Ken: Video:

http://downloadmirror.intel.com/14388/a08/win2k_xp14311.exe
Ken: Chipset:

ftp://ftp.hp.com/pub/softpaq/sp36501-37000/sp36880.exe
or
ftp://ftp.hp.com/pub/softpaq/sp36001-36500/sp36492.exe
Ken: Realtek RTL8100CL/RTL8110Sb NIC Driver

ftp://ftp.hp.com/pub/softpaq/sp30001-30500/sp30156.exe
Abbas Khan: Can you please email me all of the necessary info at bashukhan@gmail.com
Abbas Khan: I'll tell you the product identification, if you need it for verification.
Ken: Sure, please be online with me in this chat session till I gave you all the download links.
Ken: Sure, thank you.
Abbas Khan: Thank you very much
Ken: You are welcome.
Ken: Wireless:
ftp://ftp.hp.com/pub/softpaq/sp33001-33500/sp33404.exe

Or
ftp://ftp.hp.com/pub/softpaq/sp32001-32500/sp32156.exe
Abbas Khan: ok
Abbas Khan: and?
Ken: ALPS Touchpad Pointing Device Driver
ftp://ftp.hp.com/pub/softpaq/sp31001-31500/sp31075.exe
Ken: This model of Presario has an audio controller that supports the high definition audio. You need to have Microsoft Universal Audio Architecture (UAA) Bus Driver for High Definition Audio installed on the computer before installing the audio driver.
Abbas Khan: ok.
Abbas Khan: no problem. I'll do that.
Ken: Here is the link for the Microsoft Universal Audio Architecture driver that need to be installed before installing the audio driver:

ftp://ftp.hp.com/pub/softpaq/sp33501-34000/sp33867.exe
Ken: Then restart the computer and then install the Audio driver.
Ken: Conexant CX20549-12 High Definition Audio driver:

ftp://ftp.hp.com/pub/softpaq/sp36001-36500/sp36090.exe
Ken: If you get any error message, you can try these steps:
Ken: 1. Click on Start and select Run. Now type devmgmt.msc and press enter.
2. Right click on "Audio device on High Definition Audio Bus" and click Update driver.
3. Select "Install from a list or specific location"
4. Click Next. Then select "Don't search, I will choose the driver to install"
5. Click Next and then select "Sound, video and game controller" from the list.
6. Click Next and then click Have Disk.
7. Click Browse C:\swsetup\sp36090 folder and select the .inf file, click open and Continue with the onscreen instructions.
Ken: Similarly install Modem Drivers:

Conexant CX20548 Modem Driver for Microsoft Windows XP

ftp://ftp.hp.com/pub/softpaq/sp36001-36500/sp36089.exe
Abbas Khan: Ok.
Ken: Try these drivers and If the issue persists or need further assistance, please get back to us and we will continue troubleshooting. Chat is available 24x7.
Ken: A copy of our chat session will be e-mailed to you shortly for your convenience and you may refer it after this chat session.
Abbas Khan: Thank you so much, Ken.
Ken: You are welcome.
Ken: It is my pleasure assisting you.
Abbas Khan: One another question:
Ken: Sure, please proceed.
Abbas Khan: I've just heard that, the machine gets heat up a lot from bottom; and i can see that, the table surface, where its placed is hot :D
Abbas Khan: :)
Ken: If that is the case, you can try updating BIOS.
Abbas Khan: is it ok with it or in case, if you have received any complaints about this ?
Abbas Khan: ah, ok, Got it, ty
Ken: You are welcome.
Ken: Do you have any other questions I can help you with today?
Abbas Khan: are there any Linux compatible drivers links as well (if possible) :)?
Abbas Khan: np; i'll check that, anyways.
Abbas Khan: Thank you very much;
Abbas Khan: you have been very helpful.
Abbas Khan: God bless!
Ken: Thanks a lot.
Ken: Thank you for using HP Total Care and providing us an opportunity to serve you through Real-Time Chat.

Our exclusive Owner Services will help keep all of your HP and Compaq products up and running. Please visit our Web site at:

http://www.hp.com/home/ownerservices
Ken: Have a nice time.
Ken: Bye, Abbas.
Abbas Khan: Bye, tc.
Ken: Anytime.
-----------------------
http://forum.notebookreview.com/archive/index.php/t-193378.html

Enjoy.
I hate XP but I am used to it thats why I am using it, its like being a drug addict. Hope you can understand. Pazzi. :)
Take Care.

Submitted by Ajay Pal Singh Atwal on October 18, 2008 - 6:30pm.

Thanks Abbas for sharing this useful information for win users

Ajay Pal Singh Atwal

Submitted by mahi (not verified) on June 1, 2008 - 12:19am.

hello ajay pal! i need audio drivers to install for windowsXP for the same model as u hv .can u send it to me?

Submitted by Ajay Pal Singh Atwal on June 2, 2008 - 11:36pm.

Sorry seems HP has removed support for Windows XP drivers, they want you to buy Windows Vista.
BTW you can try the drivers from compatible hardware. or try what is listed here: http://www.zyxware.com/articles/2008/04/04/drivers-for-compaq-presario-c772tu-laptop-for-windows-xp

Submitted by Anonymous Coward (not verified) on April 6, 2008 - 3:32pm.

i tried debian etch on this. few things works nice. before trying a hdd install? i did try booting the notebook of a pendrive, it showed almost no error running off the USB pen drive. but when i hard drive installed etch and then upgraded from etch to testing (lenny) the real trouble pops up now and then. now i will download the lenny cd image and install it. and will update here soon. and thanks for the tips with function keys. thats what i been looking for.
-partho paul
(anonymous coward)
p.s. 23,200 INR for a laptop is *_NICE_*

Submitted by Ajay Pal Singh Atwal on April 9, 2008 - 11:54pm.

I sure look forward to updates from you. BTW do see if you have been able to solve that LCD brightness integration with kpowersave (I use KDE). This one issues is bothering me, as it results in less battery backup time when kpowersave tries to adjust the power profile automatically.

BTW I got this for INR 33600/- in feb 2008.

Cheers

APS

Submitted by Werner Heuser (not verified) on February 26, 2008 - 3:12am.

This article is mentioned in the Linux laptop installation guides survey (COMPAQ).

Post new comment

*
*
The content of this field is kept private and will not be shown publicly.


*

  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <b>
  • Lines and paragraphs break automatically.