We have 4 computers in our flat. When I'm starting to use Ubuntu and when I'm connected to our network, at least one of them has connection problems, that is, their connection status says that everything is fine, but they can't, for example, explore the Internet or play online games. Nothing like that happens when I'm using Windows. How to fix it? My Ubuntu version is 13.10
Asked
Active
Viewed 515 times
2 Answers
4
In Ubuntu 13.04, I believe the default bcmwl-kernel-source will not work correctly for your Broadcom 4313. I recommend that you get a temporary wired ethernet connection and open a terminal:
sudo apt-get remove --purge bcmwl-kernel-source
wget http://us.archive.ubuntu.com/ubuntu/pool/restricted/b/bcmwl/bcmwl-kernel-source_5.100.82.112+bdcom-0ubuntu3_amd64.deb
Or, if yours is a 32-bit system:
wget http://us.archive.ubuntu.com/ubuntu/pool/restricted/b/bcmwl/bcmwl-kernel-source_5.100.82.112+bdcom-0ubuntu3_i386.deb
Confirm 32- or 64-bit:
arch
Then do:
sudo dpkg -i bcmwl*.deb
Reboot and give us your report.

chili555
- 60,188
-
Wow, man. How'd you guys figured it all out? I tried to google my problem and tips I saw there wasn't as specific and as accurate as yours. It's alright by now, my friends aren't experiencing any problems, neither am I. Really, really thanks. If anything bad will happen, I'll let you know. – Twórca Oct 17 '13 at 23:29
-
A decade of study and I'm starting to get the hang of it! Glad it's working. – chili555 Oct 18 '13 at 00:34
1
Have you check to see if your Ubuntu box is running a DHCP server?
It may be trying to act as a router.
Try this:
sudo ps -ef | grep dhcp
and if it returns anything, you might want to kill that process.
Post the results and I can help further.

DaShaun
- 809
- 5
- 8
-
-
-
It returned the following: root 1717 1309 0 23:15 ? 00:00:00 /sbin/dhclient -d -sf /usr/lib/NetworkManager/nm-dhcp-client.action -pf /run/sendsigs.omit.d/network-manager.dhclient-eth1.pid -lf /var/lib/NetworkManager/dhclient-e84c827b-0ae8-4305-8fb3-6aac18d1616a-eth1.lease -cf /var/lib/NetworkManager/dhclient-eth1.conf eth1 cielaq 2349 2278 0 23:17 pts/0 00:00:00 grep --color=auto dhcp – Twórca Oct 17 '13 at 21:20
-
That's not it. That's your client running. So, dhcp server isn't the issue. – DaShaun Oct 18 '13 at 19:29
And my wireless card is Broadcom 802.11n, built-in on my laptop
– Twórca Oct 17 '13 at 20:09Yes, it is. So what should I do with it?
– Twórca Oct 17 '13 at 21:23