Install the RT2860 driver from source. For Asus EEE + Ubuntu.
The ASUS EEE 1000h netbook (and similar hardware) ships with a wireless card not completely supported by Ubuntu 10.04 (and later). The Ralink driver is open source, and can be used with slight modification.
This script automates driver download, patch, and installation - including the compilation step, which must be run with each kernel upgrade.
See also:
- Chris Barker's original solution
- Ubuntu: [SOLVED] Ubuntu 10.04 using the Ralink RT2860 WiFi chipset (e.g. EeeBox B202)
- Gentoo Wiki: RT2860
- Ralink RT2860 Linux Driver Download
Written and tested on the ASUS EEE 1000h netbook + Ubuntu 10.04.
If you experience success (or problems), add your system info to the wiki's compatibility page.
These instructions are intended to help you install the RT2860 driver on a system without reliable network access:
-
Download the latest release archive from a computer with network access.
-
Copy the archive
install-rt2860-latest.tar.gz
to a USB drive (or other media). -
Transfer the archive from USB to the system with the RT2860 hardware.
-
Extract the archive. In the terminal:
$ tar xvzf install-rt2860-latest.tar.gz
-
Change into the new directory. For version 0.0.1:
$ cd install-rt2860-0.0.1
-
Run the install script with sudo. It may take a few minutes to compile:
$ sudo ./install-rt2860.sh
That's it! The driver should now be installed.
The driver can also be installed with the following command:
$ git clone https://github.com/qualiabyte/install-rt2860 \
&& cd install-rt2860 \
&& sudo ./install-rt2860.sh
This will clone the latest version of this repo and run the install script.
The install script will fetch the Ralink sources (if not present), and then patch, compile, and install the driver.
The install script has a few options:
$ ./install-rt2860.sh --help
install-rt2860.sh
Usage:
sudo install-rt2860.sh
Options:
-d, --debug Show debug info.
-f, --fetch-only Just fetch archive; don't build or install.
-h, --help Show this usage info.
-q, --quick Quick mode; don't rebuild sources.
Note that the script should be run with sudo: sudo ./install.sh
.
The --debug
option prints each executed shell command, helpful to spot if anything goes wrong.
The --quick
option skips the compilation step, helpful if the sources are already compiled.
If you've spotted a bug or found a way to support more use cases (i.e., hardware or distro releases), feel free to open an issue or pull request.