LinuxQuestions.org
View the Most Wanted LQ Wiki articles.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices

Reply
 
LinkBack Search this Thread
Old 02-01-2012, 07:22 AM   #1
pkjblog
LQ Newbie
 
Registered: Jan 2012
Location: chennai
Posts: 14

Rep: Reputation: Disabled
Exclamation 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 ????
 
Old 02-01-2012, 09:31 AM   #2
ukiuki
Member
 
Registered: May 2010
Location: Planet Earth
Distribution: Debian, Ubuntu, Tinycore
Posts: 464

Rep: Reputation: 81
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

Regards
 
1 members found this post helpful.
Old 02-02-2012, 03:20 AM   #3
pkjblog
LQ Newbie
 
Registered: Jan 2012
Location: chennai
Posts: 14

Original Poster
Rep: Reputation: Disabled
Question

while extracting to /lib/firmware , it is showing an error--------

Extraction not performed

You don't have the right permissions to extract archives in the folder "file:///lib/firmware"

Last edited by pkjblog; 02-02-2012 at 03:36 AM.
 
Old 02-02-2012, 07:26 AM   #4
ukiuki
Member
 
Registered: May 2010
Location: Planet Earth
Distribution: Debian, Ubuntu, Tinycore
Posts: 464

Rep: Reputation: 81
You have to be root to write files into /lib/firmware , that is why it says permission denied.
 
Old 02-03-2012, 01:50 AM   #5
pkjblog
LQ Newbie
 
Registered: Jan 2012
Location: chennai
Posts: 14

Original Poster
Rep: Reputation: Disabled
Question

how do i become root ??? (please tell the process. i am very new to ubuntu)
 
Old 02-03-2012, 02:03 AM   #6
b0uncer
Guru
 
Registered: Aug 2003
Distribution: CentOS, OS X
Posts: 5,131

Rep: Reputation: Disabled
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".

Last edited by b0uncer; 02-03-2012 at 02:09 AM.
 
1 members found this post helpful.
Old 02-03-2012, 08:18 AM   #7
pkjblog
LQ Newbie
 
Registered: Jan 2012
Location: chennai
Posts: 14

Original Poster
Rep: Reputation: Disabled
@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 "
 
Old 02-03-2012, 08:25 AM   #8
pkjblog
LQ Newbie
 
Registered: Jan 2012
Location: chennai
Posts: 14

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by ukiuki View Post
You have to be root to write files into /lib/firmware , that is why it says permission denied.
sir, i changed directory to "root@ubuntu:" and tried to extract, but it is still showing the same error...
 
Old 02-04-2012, 02:43 AM   #9
ukiuki
Member
 
Registered: May 2010
Location: Planet Earth
Distribution: Debian, Ubuntu, Tinycore
Posts: 464

Rep: Reputation: 81
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:
Code:
uki@ubox:~$sudo su
[sudo] password for uki:
regular user prompt(logged as regular user):
Code:
uki@ubox:~$
root prompt(logged as root):
Code:
root@ubox:/home/uki#
I hope this clarify

Regards

Last edited by ukiuki; 02-04-2012 at 02:46 AM.
 
1 members found this post helpful.
Old 02-04-2012, 05:33 AM   #10
pkjblog
LQ Newbie
 
Registered: Jan 2012
Location: chennai
Posts: 14

Original Poster
Rep: Reputation: Disabled
thanks sir...i appreciate your help but....

pawan@ubuntu:~$ sudo su
[sudo] password for pawan:
root@ubuntu:/home/pawan#

after this i didn't closed terminal....and tried to extract both folders at /lib/firmware.......but it is still showing that "Extraction not performed

You don't have the right permissions to extract archives in the folder "file:///lib/firmware"
 
Old 02-04-2012, 02:31 PM   #11
ukiuki
Member
 
Registered: May 2010
Location: Planet Earth
Distribution: Debian, Ubuntu, Tinycore
Posts: 464

Rep: Reputation: 81
Ok there is something weird about that file and you will have to rename it so:
Code:
$ mv b43-all-fw.tar_.gz b43-all-fw.tar.gz
That underscore in the original file doesn't let you untar.

Extract it in the current directory and then copy to /lib/firmware so:
Code:
# cp -R b43 b43legacy /lib/firmware
Regards
 
1 members found this post helpful.
Old 02-04-2012, 10:35 PM   #12
pkjblog
LQ Newbie
 
Registered: Jan 2012
Location: chennai
Posts: 14

Original Poster
Rep: Reputation: Disabled
Thumbs up

Quote:
Originally Posted by ukiuki View Post
Ok there is something weird about that file and you will have to rename it so:
Code:
$ mv b43-all-fw.tar_.gz b43-all-fw.tar.gz
That underscore in the original file doesn't let you untar.

Extract it in the current directory and then copy to /lib/firmware so:
Code:
# cp -R b43 b43legacy /lib/firmware
Regards
thanks a lot buddy...it worked...thank you very much..
 
Old 02-05-2012, 12:50 AM   #13
ukiuki
Member
 
Registered: May 2010
Location: Planet Earth
Distribution: Debian, Ubuntu, Tinycore
Posts: 464

Rep: Reputation: 81
I'm glad to help !

Regards
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Ubuntu 11.04 mic stopped working in HP G-32, but was working before.how to fix it? Highjo Ubuntu 4 08-08-2011 05:59 AM
Ubuntu Feisty - Sound was working, but mysteriously stops working after reboot. woodsy934 Linux - Software 7 07-04-2011 06:39 PM
YM working in WinXP, but pidgin not working in Ubuntu on same PC smecherel Linux - Desktop 3 11-04-2009 01:26 AM
Ubuntu 8.04: Transparent proxy using squid working but block domain not working bleketux Linux - Networking 10 03-16-2009 06:41 AM
Working Grip 3.3.1 settings in Ubuntu 7.10 for FLAC with working meta info robocoop Linux - Software 0 04-07-2008 11:44 PM


All times are GMT -5. The time now is 09:29 PM.

Main Menu
 
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration