Archive

Posts Tagged ‘linux’

HP Pavilion dv3 and Linux

May 25th, 2009 No comments

I’ve just bought a 13.3 inch HP dv3, model 1075us with AMD Turion(tm) X2 Dual-Core Mobile RM-72 and after some configuration i’m now able to run Ubuntu 9.04 on it. I decided to write here what i needed to do, in case of anybody facing the same issues i did :)
First, here is all my hardware, if you have the same, then the solutions might fit for you.
My lspci:

00:00.0 Host bridge: Advanced Micro Devices [AMD] RS780 Host Bridge
00:01.0 PCI bridge: Hewlett-Packard Company Device 9602

00:04.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 0)
00:06.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 2)
00:07.0 PCI bridge: Advanced Micro Devices [AMD] RS780 PCI to PCI bridge (PCIE port 3)
00:11.0 SATA controller: ATI Technologies Inc SB700/SB800 SATA Controller [AHCI mode]
00:12.0 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI0 Controller
00:12.1 USB Controller: ATI Technologies Inc SB700 USB OHCI1 Controller
00:12.2 USB Controller: ATI Technologies Inc SB700/SB800 USB EHCI Controller
00:13.0 USB Controller: ATI Technologies Inc SB700/SB800 USB OHCI0 Controller
00:13.1 USB Controller: ATI Technologies Inc SB700 USB OHCI1 Controller
00:13.2 USB Controller: ATI Technologies Inc SB700/SB800 USB EHCI Controller
00:14.0 SMBus: ATI Technologies Inc SBx00 SMBus Controller (rev 3a)
00:14.1 IDE interface: ATI Technologies Inc SB700/SB800 IDE Controller
00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia (Intel HDA)
00:14.3 ISA bridge: ATI Technologies Inc SB700/SB800 LPC host controller
00:14.4 PCI bridge: ATI Technologies Inc SBx00 PCI to PCI Bridge
00:18.0 Host bridge: Advanced Micro Devices [AMD] Family 11h HyperTransport Configuration (rev 40)
00:18.1 Host bridge: Advanced Micro Devices [AMD] Family 11h Address Map
00:18.2 Host bridge: Advanced Micro Devices [AMD] Family 11h DRAM Controller
00:18.3 Host bridge: Advanced Micro Devices [AMD] Family 11h Miscellaneous Control
00:18.4 Host bridge: Advanced Micro Devices [AMD] Family 11h Link Control
01:05.0 VGA compatible controller: ATI Technologies Inc RS780M/RS780MN [Radeon HD 3200 Graphics]
01:05.1 Audio device: ATI Technologies Inc RS780 Azalia controller
08:00.0 Network controller: Broadcom Corporation BCM4322 802.11a/b/g/n Wireless LAN Controller (rev 01)
09:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 02)

Issue #1 No sound (ATI Technologies Inc RS780 Azalia controller)
I got no sound at all, but the solution was easy, just do:

gksudo gedit /etc/modprobe.d/alsa-base.conf

and append this at the end:

options snd slots=snd-hda-intel,snd-hda-intel
options snd-hda-intel model=dell-m4-2
options snd-hda-intel enable_msi=1
alias snd-card-1 snd-hda-intel
alias snd-card-0 snd-hda-intel

save, reset and enjoy.

Issue #2 Broadcomm’s shitty WiFi (Broadcom Corporation BCM4322 802.11a/b/g/n Wireless LAN Controller (rev 01))

It was really not an issue, I’ve saw many people complaining about the broadcomms wifi, but I’ve just enabled the restricted driver and it works fine for me.

Issue #3 ATI acceleration with fglrx
I’m a compiz user, i cant help it! Nevermind the fire effects and all eye candy, what i really find useful is the zooming function, the window drag-and-drop between multiple desktops and the ability to assign a command to any key combination.
For example, I use to hit F12 to turn my screen off, whenever i need to go away from my laptop (to sleep, for example =P) thus i installed the restricted drivers and compizconfig-backend-gconf + compizconfig-settings-manager and assigned F12 to

/usr/bin/xset dpms force off

But the screen didnt completely went off, the backlight was still on. So i installed the latest Catalyst 9.5 driver doing this steps http://wiki.cchtml.com/index.php/Ubuntu_Jaunty_Installation_Guide and now it works.

The fingerprint authenticator(with fprint), the media card reader and the HP webcam works flawlessly.

Thats all for now.
(I will update this post as I find more compatibility issues between HP dv3 and Ubuntu)

Tags: ,

How to get your TabletPC working on Ubuntu Intrepid

December 1st, 2008 No comments


First, here is a video showing everything working

TabletPC running Ubuntu Intrepid + Compiz from Ugo Sangiorgi on Vimeo.

Since i’d started with OmniModeling project my advisor borrowed me a TabletPC, it’s a Compaq2710 and it had windows installed by default. I will not explain here the reasons why i dont use windows for a long time now, but I struggled for one week trying to get used to work with it because, well, the pc its not mine, I couldnt mess with the partition table installing Linux. And i didnt knew if X11 supported tablet pcs or not after all.
So i installed Wubi, picked a username and Ubuntu got up and running like a charm, using a big file on windows as hard drive. I didnt even needed a cd image, Wubi downloaded it for me. It’s wonderful. If you want to show Linux to someone who uses windows, do it with Wubi.

But what about the stylus pen? it was not recognized right away. After some search, here is what I did:

1.Install the wacom driver using this script, just execute it


chmod +x install_linuxwacom./install_linuxwacom

2.Then gksudo gedit /etc/X11/xorg.conf and append this at the end of the file:

Section “InputDevice”
Driver “wacom”
Identifier “stylus”
Option “Device” “/dev/ttyS0″ # SERIAL ONLY
Option “Type” “stylus”
Option “ForceDevice” “ISDV4″ # Tablet PC ONLY
EndSection

Section “InputDevice”
Driver “wacom”
Identifier “eraser”
Option “Device” “/dev/ttyS0″ # SERIAL ONLY
Option “Type” “eraser”
Option “ForceDevice” “ISDV4″ # Tablet PC ONLY
EndSection

Section “InputDevice”
Driver “wacom”
Identifier “cursor”
Option “Device” “/dev/ttyS0″ # SERIAL ONLY
Option “Type” “cursor”
Option “ForceDevice” “ISDV4″ # Tablet PC ONLY
EndSection

Section “InputDevice”
Driver “wacom”
Identifier “pad”
Option “Device” “/dev/ttyS0″ # SERIAL ONLY
Option “Type” “pad”
EndSection

# Uncomment the following section if you you have a TabletPC that supports touch
# Section “InputDevice”
# Driver “wacom”
# Identifier “touch”
# Option “Device” “/dev/ttyS0″ # SERIAL ONLY
# Option “Device” “/dev/input/wacom” # USB ONLY
# Option “Type” “touch”
# Option “ForceDevice” “ISDV4″ # Serial Tablet PC ONLY
# Option “USB” “on” # USB ONLY
# EndSection

Section “ServerLayout”
Identifier “Default Layout”
Screen “Default Screen”
InputDevice “stylus” “SendCoreEvents”
InputDevice “eraser” “SendCoreEvents”
InputDevice “pad” # For Intuos3/CintiqV5/Graphire4/Bamboo tablets
EndSection

3. Restart X11 (ctrl+alt+backspace).

Now you can run wacomcpl to calibrate the pen, and fine tune some parameters such as sensivity.
(I like to use the middle button of my pen as the third button of the mouse, you can configure this on wacomcpl, but for some reason the configuration is lost between boots..)

Another application you will probably find useful is CellWriter, install it (sudo apt-get install cellwriter)
And finally, activating the eye-candy effects with Compiz (System – Preferences – Appearance – Visual Effects) you can have on-screen annotation (ctrl+alt to annotate and ctrl+alt+k to clear) and other useful things such as the zoom feature.
Compiz can be configurable installing compizconfig-settings-manager package ( sudo apt-get install compizconfig-settings-manager )

Thats All,
Please comment on the post =)

Tags: ,

custom essay

  • There are variegated situations and underlays in my life chiefly, when I receive custom essay privately. The basic one is that principally I haven’t whacking talent to construct sundry whopping runs. It is better for me completely to trace the specific aid. My amazing ordered holds are not shady and predominantly without basic slips, which must preclude upshots of my tested study.