wi-fi not working in UBUNTU 11.10 please help ....
UbuntuThis forum is for the discussion of Ubuntu Linux.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
wi-fi not working in UBUNTU 11.10 please help ....
when i installed ubuntu 11.10 then wi-fi was working nicely.but now it is not catching wi-fi network and while i click on network button it shows that " wireless is disabled by hardware switch ". i already have installed broadcom driver. please help ????
You are probably missing the firmware you can find it here: http://www.omattos.com/node/6
There are 2 folders inside the file extract them and put the folders in /lib/firmware
You have practically two options, either run the graphical (un)archiving program through gksudo, or a command line program by using (non-graphical) sudo. As an example of the latter one,
Code:
sudo su
cd /lib/firmware
tar -xzf /path/to/archive/b43-all-fw.tar.gz
exit
The first command (sudo su) gives you a shell with root privileges, after asking for your (user) password. After that you change the working directory to the place you want to extract the contents to, then extract the archive. Then you exit the root privileged shell (or simply close the terminal emulator). Remember to alter the path and filename to suit your situation. If you have a zip compressed archive, for example, then use unzip instead of tar (unzip should require no options in that case). Another way is to simply cd to the desired directory and run "sudo tar ...", without actually "becoming root".
@b0uncer.......i tried this also, i changed directory to/lib/firmware and then tried to extract files to firmware, but it still showing that " you don't have permission to extract files to /lib/firmware "
When you have the terminal open, do you see at the end of the line after your computer name the symbol $ or the symbol # ?
$ means regular user logged
# means root looged
If you see the $ type sudo su then press enter key and then type the password, the password isn't visible as you type make sure you type it correctly and then press enter key.
Example:
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.