Hi! Recently, I have done a successful installation of OpenSUSE 11.4 with Gnome 3.02 (due to help on this forum) on my Asus K52jr laptop. But even after update I see an amount of problems here:
- Headphones doesn’t work, only internal speakers.
- System doesn’t know how to suspend, of course.
- Horisontal scroll by touchpad is absent at all.
- After restart the brightness of my screen is always on maximum.
- Mouse cursor is broken: after login I get a primitive cursor theme, it can be changed in twicker, but after reboot it returns on.
- Icon of current language set in tray is missing, but the switching of keyboard layout is ok.
On my previous system, Ubuntu 10.10, first problem were fixed by installing following package:
sudo add-apt-repository ppa:ubuntu-audio-dev/ppa; sudo apt-get update; sudo apt-get install linux-alsa-driver-modules-$(uname -r)
and second - by these changes:
sudo gedit /etc/pm/sleep.d/20_custom-ehci_hcd
#!/bin/sh
File: “/etc/pm/sleep.d/20_custom-ehci_hcd”.
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
sudo chmod +x /etc/pm/sleep.d/20_custom-ehci_hcd
I couldn’t find a solution for OpenSUSE, so any help would be appreciated.
Thank you for attention.