That's too bad. Installing the driver
alx will be challenging without it. If you can download the packages to your Windows partition and then transfer them on a USB key, CD or similar, then we can get the job done. First, let's get build-essential:
http://packages.ubuntu.com/precise/build-essential
Download the package as appropriate to your architecture; either i386 (32-bit) or amd64 (64-bit). Find out which you have with this command:
32-bit will report as i686 and 64-bit as x86_64.
The red dots indicate that the package build-essential depends on dpkg-dev, g++, gcc, libc6-dev or libc-dev and make. Download those packages also.
Now for linux-headers:
http://packages.ubuntu.com/search?ke...se§ion=all As you can see, you can download linux-headers-generic or linux-headers-generic-pae. Find out which you need with:
This package depends on the headers matching your running kernel. That means that, in addition to the 'generic' or generic-pae' package, you'll also need linux-headers for your kernel. For example, if the uname -r command shows that you are running
3.2.0-23-generic, you will need linux-headers-
3.2.0-23-generic.
Once you have all these on a USB key or CD, drag and drop these on to the desktop of your Ubuntu installation. Open a terminal and do:
Code:
cd Desktop
sudo dpkg -i *.deb
The wildcard * means to install every .deb package on your desktop. We hope there are no missing dependencies, but if so, go here, download and install them, too:
http://packages.ubuntu.com/
Now for compat-wireless. Download this package and transfer it to your Ubuntu desktop.
http://www.orbit-lab.org/kernel/comp...1-snpc.tar.bz2
Then install it:
Code:
cd Desktop
tar -xf compat-wireless-3.5.1-1-snpc.tar.bz2
cd compat-wireless-3.5.1-1-snpc
./scripts/driver-select alx
make
sudo make install
sudo modprobe alx
Post back any errors or problems; I'll be glad to help.
We are many timezones apart, so I will look for your post early tomorrow morning.
Bookmarks