Wireless for EEE 1000H rt2860 in Ubuntu
With any update lately the wireless was on my EEE PC 1000H with Ubuntu quite unstable. Permanent disconnections, no wireless after suspend, slow connection, etc.
I'm not quite sure what it is, probably has the rt2860 driver get any update with a bug.
Fortunately, the problem can be solved by installing the Windows driver with ndiswrapper.
This is only a slightly shortened German translation of the English original pattern of nevdelap from the Ubuntu forum. (Thank you)
First Windows drivers suck and unpack (comm_driver_gigabyte_mimobility_v.1.3.1.0.15.zip)
Second Linux driver blacklist
# / Etc / modprobe.d / blacklist.conf blacklist rt2x00lib blacklist rt2x00pci blacklist rt2x00usb blacklist rt2400pci blacklist rt2500pci blacklist rt2500usb blacklist rt2800lib blacklist rt2800pci blacklist rt2800usb blacklist rt61pci blacklist rt73usb blacklist RT2600 blacklist rt2860 # Asus 1000H has an rt2860. To be loaded by ndiswrapper. blacklist b43 blacklist b43 blacklist ssb blacklist r8192s_usb
Third Install the Windows driver with ndisgtk drivers/GN-WI30N_WP30N_WS30N_WS30HN_WS31N/WINXP2k
sudo ndisgtk
4th Configuring grub
# / Etc / default / grub GRUB_CMDLINE_LINUX_DEFAULT = "pciehp.pciehp_force pciehp.pciehp_poll = 1 = 1 quiet splash"
sudo update-grub2
5th Power Management rule create
# / Etc / pm / sleep.d / ndiswrapper # / Bin / bash case "$ 1" in hibernate | suspend) sudo rmmod ndiswrapper ;; thaw | resume) sudo modprobe ndiswrapper ;; *) ;; esac exit $?
chmod + x / etc / pm / sleep.d / ndiswrapper
6th Reboot
Then the wireless runs fast and stable.
