Find the answer to your Linux question:
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 11
Sorry I have another problem... Since I live in an apartment, I had to set-up everything wirelessly. I have a wireless card in my desktop that I use to connect ...
  1. #1
    Just Joined!
    Join Date
    May 2009
    Posts
    14

    [SOLVED] Another Question... (Regarding Internet)

    Sorry I have another problem...

    Since I live in an apartment, I had to set-up everything wirelessly. I have a wireless card in my desktop that I use to connect to my router, but for some reason I can't connect wirelessly. I could connect when I was on Windows XP, but now it won't when I'm using Ubuntu. My laptop, phone, ps3, etc. can connect to my router but my desktop can't. I know its not the router, because I have it set to open... so not sure what's going on--can anyone help?!

    Thanks again in advance!!

  2. #2
    Linux User kmitnick's Avatar
    Join Date
    May 2008
    Location
    Jordan - Amman
    Posts
    329
    it is about the wireless card,
    you need to install the ubuntu compatible drivers, what kind of wireless card is it???
    Dual Booting Ubuntu 10.04, Windows 7

    Toshiba Satellite A200-1M5, Duo Core 2.0 Ghz, 1 Gigs RAM, 256 Intel Card

    You are registered Linux user number 490788
    Happy Linuxing

  3. #3
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,651
    As kmitnick said, it's almost certainly the wireless card. In most cases like this, there is some proprietary drvier or firmware that's needed. We need to know the chipset of the card and some other info. Please read this thread to find out how to gather all the necessary information.

  4. #4
    Just Joined!
    Join Date
    May 2009
    Posts
    14
    Hey guys, thanks for the responses. I have looked at the thread that was provided, and I have a few questions so I can provide you guys the information you need to help me out... Do I need to enter the code 'lspci -nn' in Ubuntu or in Windows? To maybe help you a bit more, I'm using a LINKSYS PCI Wireless card. Also, do I need to be connected to the internet to receive this information?

    Sorry about the troubles... heh.

  5. #5
    Linux Guru jmadero's Avatar
    Join Date
    Jul 2007
    Location
    California
    Posts
    1,958
    Enter it in Linux and no you don't have to be online to get the info. Basically it just calls on your computer for the information and spits out a bunch of info. To get the actual driver....there's a good chance you'll have to be online in Ubuntu (wired up) or you can download the stuff to a thumb drive and install from that but that can be a hassle.

    If you can wire up just go to system->administration->hardware drivers and see if it detects anything to install.
    Bodhi 1.3 & Bodhi 1.4 using E17
    Dell Studio 17, Intel Graphics card, 4 gigs of RAM, E17

    "The beauty in life can only be found by moving past the materialism which defines human nature and into the higher realm of thought and knowledge"

  6. #6
    Just Joined!
    Join Date
    May 2009
    Posts
    14
    Okay, I wired up and went to system ->administration->hardware drivers and I installed 'Broadcom B43 wireless driver', but still nothing has changed. Here is what 'lspci- nn' gives me in terminal.

    @ubuntu:~$ lspci -nn
    00:00.0 Host bridge [0600]: Intel Corporation 82865G/PE/P DRAM Controller/Host-Hub Interface [8086:2570] (rev 02)
    00:02.0 VGA compatible controller [0300]: Intel Corporation 82865G Integrated Graphics Controller [8086:2572] (rev 02)
    00:1d.0 USB Controller [0c03]: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB UHCI Controller #1 [8086:24d2] (rev 02)
    00:1d.1 USB Controller [0c03]: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB UHCI Controller #2 [8086:24d4] (rev 02)
    00:1d.3 USB Controller [0c03]: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB UHCI Controller #4 [8086:24de] (rev 02)
    00:1d.7 USB Controller [0c03]: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB2 EHCI Controller [8086:24dd] (rev 02)
    00:1e.0 PCI bridge [0604]: Intel Corporation 82801 PCI Bridge [8086:244e] (rev c2)
    00:1f.0 ISA bridge [0601]: Intel Corporation 82801EB/ER (ICH5/ICH5R) LPC Interface Bridge [8086:24d0] (rev 02)
    00:1f.1 IDE interface [0101]: Intel Corporation 82801EB/ER (ICH5/ICH5R) IDE Controller [8086:24db] (rev 02)
    00:1f.3 SMBus [0c05]: Intel Corporation 82801EB/ER (ICH5/ICH5R) SMBus Controller [8086:24d3] (rev 02)
    00:1f.5 Multimedia audio controller [0401]: Intel Corporation 82801EB/ER (ICH5/ICH5R) AC'97 Audio Controller [8086:24d5] (rev 02)
    01:00.0 Ethernet controller [0200]: ADMtek NC100 Network Everywhere Fast Ethernet 10/100 [1317:0985] (rev 11)
    01:01.0 Network controller [0280]: Broadcom Corporation BCM4306 802.11b/g Wireless LAN Controller [14e4:4320] (rev 03)
    01:08.0 Ethernet controller [0200]: Intel Corporation 82562EZ 10/100 Ethernet Controller [8086:1050] (rev 02)

    Hope this helps any...

  7. #7
    Linux Guru reed9's Avatar
    Join Date
    Feb 2009
    Location
    Boston, MA
    Posts
    4,651
    Ubuntu should have the b43 driver installed already. What you need is the firmware as well, which Ubuntu doesn't ship.

    If you can get a wired connection for a few minutes, you can get the firmware as follows

    Code:
    sudo apt-get install b43-fwcutter
    During the install process it should ask you if you want to download and install the firmware.

    If you can't get a connection, you need to download the .deb package, which you can get here, then the firmware, and get it on your Ubuntu box, using a flash drive or external drive.

    You can get the firmware here.

    More info on this and how to extract the firmware: b43 - Linux Wireless

    There's also a proprietary driver released by broadcom, but I'm not sure it works with the 4306. However, Ubuntu might be trying to load it, in which case it will conflict with the b43 and you need to blacklist it.

    Post of the output of
    Code:
    lsmod
    Ubuntu I think also blacklists the b43 driver by default, so check for a line reading blacklist b43 in /etc/modprobe.d/blacklist. If it's there, either erase it or comment it out. (Place a # at the beginning of the line. You need root permissions to write to the file. You can open gedit with root permissions as so
    Code:
    sudo gedit /etc/modprobe.d/blacklist

  8. #8
    Linux Guru jmadero's Avatar
    Join Date
    Jul 2007
    Location
    California
    Posts
    1,958
    if he went through the hardware drivers it would have installed b43-fwcutter

    did you restart after installing? If it sees the broadcom chipset in the hardware drivers then you shouldn't be getting a problem. Restart, go back into the hardware drivers and see if it's green (I believe it changes color) and somewhere it should say in use or something like that
    Bodhi 1.3 & Bodhi 1.4 using E17
    Dell Studio 17, Intel Graphics card, 4 gigs of RAM, E17

    "The beauty in life can only be found by moving past the materialism which defines human nature and into the higher realm of thought and knowledge"

  9. #9
    Just Joined!
    Join Date
    May 2009
    Posts
    14
    Thanks guys!! Got it to work!! Starting to really love Ubuntu now!!

  10. #10
    Linux Guru jmadero's Avatar
    Join Date
    Jul 2007
    Location
    California
    Posts
    1,958
    please tell us how so others can see where you snagged. Glad it's working After you say how please mark as solved also
    Bodhi 1.3 & Bodhi 1.4 using E17
    Dell Studio 17, Intel Graphics card, 4 gigs of RAM, E17

    "The beauty in life can only be found by moving past the materialism which defines human nature and into the higher realm of thought and knowledge"

Page 1 of 2 1 2 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...