You are not logged in.

#1 2011-08-14 03:53:15

cjdj
Member
From: Perth, Western Australia
Registered: 2004-05-07
Posts: 121

[SOLVED] Upgraded, now I have no network or KDE.

I did a system update on my asus 1015pem (64bit).  I've checked other threads about kernel 3.0 upgrade problems but haven't found one that applies.

I've always used Wicd to manage my network interfaces.
wicd does not see any wireless devices.

I can't see any modules being blocked.

My wired chip is AR8132
My wireless chip is BCM4313

Typing this on my tablet, sorry for being brief. 
Can anyone point me in the right direction?

Last edited by cjdj (2011-08-15 06:29:28)

Offline

#2 2011-08-14 04:15:10

cjdj
Member
From: Perth, Western Australia
Registered: 2004-05-07
Posts: 121

Re: [SOLVED] Upgraded, now I have no network or KDE.

In regards to KDE not starting up.  I created a new user account, and that starts up ok, so obviously there is a problem with some settings or application in my existing account.

Thats night quite as big a problem as my wireless networking not working, though, so I'll ignore that for now. 

Wired networking is working, which is good.  But I definitely need wireless working.

Offline

#3 2011-08-14 04:18:15

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,652

Re: [SOLVED] Upgraded, now I have no network or KDE.

Well, start with ip link to see if the card really does. or does not exist.
Second, look through dmesg after boot for comments or errors regarding your networks
Third, look at the loaded modules using lsmod
If the modules for the NICs are missing, try to (as root) modprobe the missing modules.

Post the vendor/product codes from lspci -nn  (That is two n's, not m) for your NICs (Those are the two 16 bit hex digits separated by : ) example [8086:1234]


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way

Offline

#4 2011-08-14 04:33:30

cjdj
Member
From: Perth, Western Australia
Registered: 2004-05-07
Posts: 121

Re: [SOLVED] Upgraded, now I have no network or KDE.

Ip link gives me (i'm currently connected through the wired adapter):

$ ip link
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
    link/ether bc:ae:c5:d3:0b:ef brd ff:ff:ff:ff:ff:ff

I dont see anything interesting in dmesg.

I've searched the /lib directory for anything bcm and got this:

[root@myhost cjw2]# alias fl='find . -type f'
[root@myhost cjw2]# cd /lib
[root@myhost lib]# fl|grep bcm
./modules/3.0-ARCH/kernel/drivers/media/dvb/frontends/bcm3510.ko.gz
./modules/3.0-ARCH/kernel/drivers/bluetooth/bcm203x.ko.gz
./modules/3.0-ARCH/kernel/drivers/bcma/bcma.ko.gz
./modules/3.0-ARCH/kernel/drivers/staging/bcm/bcm_wimax.ko.gz
./modules/3.0-ARCH/kernel/drivers/input/mouse/bcm5974.ko.gz
./firmware/brcm/bcm43xx-0.fw
./firmware/brcm/bcm4329-fullmac-4.bin
./firmware/brcm/bcm43xx_hdr-0.fw
./firmware/brcm/bcm4329-fullmac-4.txt
[root@myhost lib]# modprobe bcm_wimax

lsmod | grep bcm now gives me:

# lsmod |grep bcm
bcm_wimax             243774  0 
bcma                   13762  0 
usbcore               142544  10 bcm_wimax,usbhid,uvcvideo,uas,usb_storage,btusb,keucr,uhci_hcd,ehci_hcd

lspci gives me:

$ lspci -nn
00:00.0 Host bridge [0600]: Intel Corporation N10 Family DMI Bridge [8086:a010] (rev 02)
00:02.0 VGA compatible controller [0300]: Intel Corporation N10 Family Integrated Graphics Controller [8086:a011] (rev 02)
00:02.1 Display controller [0380]: Intel Corporation N10 Family Integrated Graphics Controller [8086:a012] (rev 02)
00:1b.0 Audio device [0403]: Intel Corporation N10/ICH 7 Family High Definition Audio Controller [8086:27d8] (rev 02)
00:1c.0 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI Express Port 1 [8086:27d0] (rev 02)
00:1c.1 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI Express Port 2 [8086:27d2] (rev 02)
00:1c.3 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI Express Port 4 [8086:27d6] (rev 02)
00:1d.0 USB Controller [0c03]: Intel Corporation N10/ICH 7 Family USB UHCI Controller #1 [8086:27c8] (rev 02)
00:1d.1 USB Controller [0c03]: Intel Corporation N10/ICH 7 Family USB UHCI Controller #2 [8086:27c9] (rev 02)
00:1d.2 USB Controller [0c03]: Intel Corporation N10/ICH 7 Family USB UHCI Controller #3 [8086:27ca] (rev 02)
00:1d.3 USB Controller [0c03]: Intel Corporation N10/ICH 7 Family USB UHCI Controller #4 [8086:27cb] (rev 02)
00:1d.7 USB Controller [0c03]: Intel Corporation N10/ICH 7 Family USB2 EHCI Controller [8086:27cc] (rev 02)
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge [8086:2448] (rev e2)
00:1f.0 ISA bridge [0601]: Intel Corporation NM10 Family LPC Controller [8086:27bc] (rev 02)
00:1f.2 SATA controller [0106]: Intel Corporation N10/ICH7 Family SATA AHCI Controller [8086:27c1] (rev 02)
01:00.0 Ethernet controller [0200]: Atheros Communications AR8132 Fast Ethernet [1969:1062] (rev c0)
02:00.0 Network controller [0280]: Broadcom Corporation BCM4313 802.11b/g/n Wireless LAN Controller [14e4:4727] (rev 01)

Still dont have wireless.  I might add bcm_wimax to the MODULES list in rc.conf and then reboot and see if it works.

Offline

#5 2011-08-14 04:59:10

cjdj
Member
From: Perth, Western Australia
Registered: 2004-05-07
Posts: 121

Re: [SOLVED] Upgraded, now I have no network or KDE.

Bluetooth is working, which is interesting, because bluetooth is supposed to be using the same device as the wireless network (from what I understand).

Offline

#6 2011-08-14 05:06:12

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,652

Re: [SOLVED] Upgraded, now I have no network or KDE.

cjdj wrote:
[root@myhost cjw2]# alias fl='find . -type f'
[root@myhost cjw2]# cd /lib
[root@myhost lib]# fl|grep bcm
./modules/3.0-ARCH/kernel/drivers/media/dvb/frontends/bcm3510.ko.gz
./modules/3.0-ARCH/kernel/drivers/bluetooth/bcm203x.ko.gz
./modules/3.0-ARCH/kernel/drivers/bcma/bcma.ko.gz
./modules/3.0-ARCH/kernel/drivers/staging/bcm/bcm_wimax.ko.gz
./modules/3.0-ARCH/kernel/drivers/input/mouse/bcm5974.ko.gz
./firmware/brcm/bcm43xx-0.fw
./firmware/brcm/bcm4329-fullmac-4.bin
./firmware/brcm/bcm43xx_hdr-0.fw
./firmware/brcm/bcm4329-fullmac-4.txt
[root@myhost lib]# modprobe bcm_wimax

You  may want to try modprobe -l instead.  It's easier smile

Still working on digesting your output...


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way

Offline

#7 2011-08-14 05:11:08

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,652

Re: [SOLVED] Upgraded, now I have no network or KDE.

Do you have a driver called brcmsmac   ??
I think that is the winner.


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way

Offline

#8 2011-08-14 05:42:00

cjdj
Member
From: Perth, Western Australia
Registered: 2004-05-07
Posts: 121

Re: [SOLVED] Upgraded, now I have no network or KDE.

Thanks for helping me.  I did just try the brcmsmac module, and it is at least attempting to scan the wireless networks, but it is not working sad

EDIT:  actually I'm not sure its scanning now either.  I think wicd just got stuck once.  The module is loaded, but no wireless connections.

Last edited by cjdj (2011-08-14 05:43:03)

Offline

#9 2011-08-14 05:51:31

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,652

Re: [SOLVED] Upgraded, now I have no network or KDE.

cjdj wrote:

...The module is loaded, but no wireless connections.

I'm not sure I understand what that means.  Does it mean that it does not show up in ip link, or does it mean that wicd does not find an access points.  If the former, I have to think about it some more.  If the latter, then can you post the output of iwlist scan


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way

Offline

#10 2011-08-14 07:01:51

cjdj
Member
From: Perth, Western Australia
Registered: 2004-05-07
Posts: 121

Re: [SOLVED] Upgraded, now I have no network or KDE.

The module is loaded

$ lsmod|grep brcmsmac
brcmsmac              594624  0 
brcmutil                6563  1 brcmsmac
mac80211              215605  1 brcmsmac
cfg80211              160516  2 brcmsmac,mac80211
crc_ccitt               1331  1 brcmsmac

But iwlist scan is not showing the wireless interface.

$ iwlist scan
lo        Interface doesn't support scanning.

eth0      Interface doesn't support scanning.

wicd-cli is not finding anything.

$ wicd-cli --wireless -S
$

There doesn't seem to be a wlan0 interface at all.

I do have the eeepc acpi event stuff installed, which has tools to activate and deactivate wireless, which seems to be working, but is not doing anything.  Wireless was obviously working before the update.  The access points are working fine, as I was using my phone and tablet to access this forum before I hooked it up to a wired port.

Offline

#11 2011-08-14 07:04:11

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,426
Website

Re: [SOLVED] Upgraded, now I have no network or KDE.


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#12 2011-08-14 07:23:20

cjdj
Member
From: Perth, Western Australia
Registered: 2004-05-07
Posts: 121

Re: [SOLVED] Upgraded, now I have no network or KDE.

I hadn't seen that, and that's exactly what the problem was.  THANKYOU to both of you.

Offline

#13 2011-08-14 08:30:40

cjdj
Member
From: Perth, Western Australia
Registered: 2004-05-07
Posts: 121

Re: [SOLVED] Upgraded, now I have no network or KDE.

To anyone else who is also having problems with KDE, I got it working again by deleting the ~/.kde4/share/config/plasm* files.

Offline

#14 2011-08-14 10:26:43

bernarcher
Forum Fellow
From: Germany
Registered: 2009-02-17
Posts: 2,281

Re: [SOLVED] Upgraded, now I have no network or KDE.

Glad to see it is now working for you. Will you please mark this thread as SOLVED, then.


To know or not to know ...
... the questions remain forever.

Offline

#15 2011-08-15 06:42:22

cjdj
Member
From: Perth, Western Australia
Registered: 2004-05-07
Posts: 121

Re: [SOLVED] Upgraded, now I have no network or KDE.

ewaller wrote:

You  may want to try modprobe -l instead.  It's easier smile

You're right.  I didn't think of doing it that way, because I use my little 'fl' alias all the time for searching for files.   
Thanks for the tip.

Offline

Board footer

Powered by FluxBB