AstroPhysik
Anmeldungsdatum: 9. Mai 2009
Beiträge: 219
Wohnort: Wien
|
Hallo, habe ein HP Probook 6560b mit dualboot Win7 und 12.04.3 LTS mit 32 bit installiert. Während der Ubuntu installation hat er die Umgebenden WLANs erkannt. Nach dem Neustart um die Installation abzuschließen zeigt er nichts mehr an. Nicht mal im Indikator-Applet: Funknetzwerke aktivieren. Wo beginnt man hier die Fehlersuche? Danke,
AP
|
bsn
Anmeldungsdatum: 17. September 2006
Beiträge: 6386
Wohnort: Baden-Württemberg
|
Hallo, zeige uns diese Daten alle in Codeblock! Gruß bsn
|
AstroPhysik
(Themenstarter)
Anmeldungsdatum: 9. Mai 2009
Beiträge: 219
Wohnort: Wien
|
Uhhh 😳 Danke, das hätt ich initial wirklich selber lesen können. Ich merks mir für die Zukunft. OK, in rfkill List war mal Hard blocked: yes aktiviert.. Beim drücken der Taste bleibt sie aber rot. Dafür wird: Hard blocked: no \\In Win7 wird die WLAN Taste blau.
Rechts oben, wo Netzwerk aktivieren ist, kommt nur Netzwerk aktivieren zum anhakerln, nicht aber: Funknetzwerk aktivieren.
der Rest: uname -a
| Linux HP-ProBook-6560b 3.8.0-30-generic #44~precise1-Ubuntu SMP Fri Aug 23 17:33:45 UTC 2013 i686 i686 i386 GNU/Linux
|
lspci -nnk | grep -i net -A2
| 00:19.0 Ethernet controller [0200]: Intel Corporation 82579V Gigabit Network Connection [8086:1503] (rev 04)
Subsystem: Hewlett-Packard Company Device [103c:1619]
Kernel driver in use: e1000e
--
24:00.0 Network controller [0280]: Broadcom Corporation BCM43224 802.11a/b/g/n [14e4:4353] (rev 01)
Subsystem: Hewlett-Packard Company Device [103c:1510]
Kernel modules: bcma
|
lsusb
| Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 138a:003c Validity Sensors, Inc. VFS471 Fingerprint Reader
|
cat /etc/network/interfaces
| auto lo
iface lo inet loopback
|
cat /etc/resolv.conf
|
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 127.0.0.1
|
cat /etc/hosts
| 127.0.0.1 localhost
127.0.1.1 HP-ProBook-6560b
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
|
ifconfig -a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 | eth0 Link encap:Ethernet Hardware Adresse 2c:76:8a:dc:a0:5e
UP BROADCAST MULTICAST MTU:1500 Metrik:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
Kollisionen:0 Sendewarteschlangenlänge:1000
RX-Bytes:0 (0.0 B) TX-Bytes:0 (0.0 B)
Interrupt:20 Speicher:94700000-94720000
lo Link encap:Lokale Schleife
inet Adresse:127.0.0.1 Maske:255.0.0.0
inet6-Adresse: ::1/128 Gültigkeitsbereich:Maschine
UP LOOPBACK RUNNING MTU:65536 Metrik:1
RX packets:122 errors:0 dropped:0 overruns:0 frame:0
TX packets:122 errors:0 dropped:0 overruns:0 carrier:0
Kollisionen:0 Sendewarteschlangenlänge:0
RX-Bytes:10752 (10.7 KB) TX-Bytes:10752 (10.7 KB)
|
iwconfig
| lo no wireless extensions.
eth0 no wireless extensions.
|
cat /var/lib/NetworkManager/NetworkManager.state | [main]
NetworkingEnabled=true
WirelessEnabled=true
WWANEnabled=true
WimaxEnabled=true
|
cat /etc/NetworkManager/NetworkManager.conf
| [main]
plugins=ifupdown,keyfile
dns=dnsmasq
[ifupdown]
managed=false
|
cat /etc/udev/rules.d/70-persistent-net.rules | egrep -i 'device|sub' -A3 # PCI device 0x8086:/sys/devices/pci0000:00/0000:00:19.0 (e1000e)
| SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="2c:76:8a:dc:a0:5e", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
# PCI device 0x14e4:/sys/devices/pci0000:00/0000:00:1c.3/0000:24:00.0/bcma0:0 (bcma-pci-bridge)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="ac:81:12:a3:de:0f", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan0"
|
zu 5. Ist WLAN eingeschaltet und welche Treibermodule werden verwendet
rfkill List
Hard blocked: yes
| 0: hp-wifi: Wireless LAN
Soft blocked: no
Hard blocked: yes
1: hp-bluetooth: Bluetooth
Soft blocked: yes
Hard blocked: yes
|
lsmod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128 |
Module Size Used by
ppp_deflate 12878 0
zlib_deflate 26622 1 ppp_deflate
bsd_comp 12842 0
ppp_async 17307 1
crc_ccitt 12627 1 ppp_async
option 29699 2
usb_wwan 14859 1 option
usbserial 27633 7 option,usb_wwan
usb_storage 48053 0
rfcomm 38400 0
bnep 17852 2
bluetooth 211435 10 rfcomm,bnep
snd_hda_codec_hdmi 36564 1
snd_hda_codec_idt 64649 1
snd_hda_intel 38819 3
snd_hda_codec 118650 3 snd_hda_codec_hdmi,snd_hda_codec_idt,snd_hda_intel
snd_hwdep 13276 1 snd_hda_codec
snd_pcm 85934 3 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec
snd_seq_midi 13132 0
snd_rawmidi 25157 1 snd_seq_midi
snd_seq_midi_event 14475 1 snd_seq_midi
snd_seq 51593 2 snd_seq_midi,snd_seq_midi_event
snd_timer 28931 2 snd_pcm,snd_seq
snd_seq_device 14137 3 snd_seq_midi,snd_rawmidi,snd_seq
snd 57014 16 snd_hda_codec_hdmi,snd_hda_codec_idt,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
soundcore 12600 1 snd
coretemp 13324 0
joydev 17329 0
tpm_infineon 17194 0
i915 550344 3
drm_kms_helper 47749 1 i915
kvm 384557 0
drm 233935 4 i915,drm_kms_helper
psmouse 82769 0
serio_raw 13031 0
hp_accel 25756 0
hp_wmi 17748 0
lis3lv02d 19536 1 hp_accel
mac_hid 13077 0
sparse_keymap 13658 1 hp_wmi
microcode 18433 0
input_polldev 13648 1 lis3lv02d
mei 36756 0
lp 17455 0
ppdev 12849 0
i2c_algo_bit 13316 1 i915
tpm_tis 18273 0
snd_page_alloc 18398 2 snd_hda_intel,snd_pcm
wmi 18744 1 hp_wmi
lpc_ich 17048 0
parport_pc 27612 1
parport 40930 3 lp,ppdev,parport_pc
video 19116 1 i915
ahci 25631 2
libahci 26336 1 ahci
firewire_ohci 35914 0
firewire_core 62086 1 firewire_ohci
sdhci_pci 18265 0
sdhci 32339 1 sdhci_pci
crc_itu_t 12627 1 firewire_core
e1000e 181539 0
henri-admin@henriadmin-HP-ProBook-6560b:~$ clear
henri-admin@henriadmin-HP-ProBook-6560b:~$ lsmod
Module Size Used by
ppp_deflate 12878 0
zlib_deflate 26622 1 ppp_deflate
bsd_comp 12842 0
ppp_async 17307 1
crc_ccitt 12627 1 ppp_async
option 29699 2
usb_wwan 14859 1 option
usbserial 27633 7 option,usb_wwan
usb_storage 48053 0
rfcomm 38400 0
bnep 17852 2
bluetooth 211435 10 rfcomm,bnep
snd_hda_codec_hdmi 36564 1
snd_hda_codec_idt 64649 1
snd_hda_intel 38819 3
snd_hda_codec 118650 3 snd_hda_codec_hdmi,snd_hda_codec_idt,snd_hda_intel
snd_hwdep 13276 1 snd_hda_codec
snd_pcm 85934 3 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec
snd_seq_midi 13132 0
snd_rawmidi 25157 1 snd_seq_midi
snd_seq_midi_event 14475 1 snd_seq_midi
snd_seq 51593 2 snd_seq_midi,snd_seq_midi_event
snd_timer 28931 2 snd_pcm,snd_seq
snd_seq_device 14137 3 snd_seq_midi,snd_rawmidi,snd_seq
snd 57014 16 snd_hda_codec_hdmi,snd_hda_codec_idt,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
soundcore 12600 1 snd
coretemp 13324 0
joydev 17329 0
tpm_infineon 17194 0
i915 550344 3
drm_kms_helper 47749 1 i915
kvm 384557 0
drm 233935 4 i915,drm_kms_helper
psmouse 82769 0
serio_raw 13031 0
hp_accel 25756 0
hp_wmi 17748 0
lis3lv02d 19536 1 hp_accel
mac_hid 13077 0
sparse_keymap 13658 1 hp_wmi
microcode 18433 0
input_polldev 13648 1 lis3lv02d
mei 36756 0
lp 17455 0
ppdev 12849 0
i2c_algo_bit 13316 1 i915
tpm_tis 18273 0
snd_page_alloc 18398 2 snd_hda_intel,snd_pcm
wmi 18744 1 hp_wmi
lpc_ich 17048 0
parport_pc 27612 1
parport 40930 3 lp,ppdev,parport_pc
video 19116 1 i915
ahci 25631 2
libahci 26336 1 ahci
firewire_ohci 35914 0
firewire_core 62086 1 firewire_ohci
sdhci_pci 18265 0
sdhci 32339 1 sdhci_pci
crc_itu_t 12627 1 firewire_core
e1000e 181539 0
|
iwlist chan
| lo no frequency information.
eth0 no frequency information.
|
sudo iwlist scan
|
lo Interface doesn't support scanning.
eth0 Interface doesn't support scanning.
|
egrep -i 'net|eth|wlan|firm|reason' /var/log/syslog
| Sep 19 11:03:21 HP-ProBook-6560b NetworkManager[1080]: <info> WiFi now enabled by radio killswitch
|
dmesg | egrep 'net|eth|sky|sis|via|3c3|3c5|e100|8139|8169|acx|air|ath|atl|ar9|carl|atme|at7|herm|iwl|ipw|rtl8|r81|rt2|rt3|rt6|rt7|tg3|ssb|wl|b43|b44|ori|pri|p5|zd|ndis|wmi|ns8|FW'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44 | [ 0.000000] DMI: Hewlett-Packard HP ProBook 6560b/1619, BIOS 68SCE Ver. F.08 08/26/2011
[ 0.000349] CPU0: Thermal monitoring enabled (TM1)
[ 0.081696] TSC deadline timer enabled
[ 1.007242] audit: initializing netlink socket (disabled)
[ 1.068205] thermal LNXTHERM:00: registered as thermal_zone0
[ 1.068208] ACPI: Thermal Zone [CPUZ] (36 C)
[ 1.094261] thermal LNXTHERM:01: registered as thermal_zone1
[ 1.094263] ACPI: Thermal Zone [GFXZ] (0 C)
[ 1.109252] thermal LNXTHERM:02: registered as thermal_zone2
[ 1.109254] ACPI: Thermal Zone [EXTZ] (0 C)
[ 1.132353] thermal LNXTHERM:03: registered as thermal_zone3
[ 1.132355] ACPI: Thermal Zone [LOCZ] (24 C)
[ 1.147383] thermal LNXTHERM:04: registered as thermal_zone4
[ 1.147385] ACPI: Thermal Zone [BATZ] (25 C)
[ 1.147709] thermal LNXTHERM:05: registered as thermal_zone5
[ 1.147711] ACPI: Thermal Zone [PCHZ] (0 C)
[ 1.147815] thermal LNXTHERM:06: registered as thermal_zone6
[ 1.147817] ACPI: Thermal Zone [DM1Z] (0 C)
[ 1.147915] thermal LNXTHERM:07: registered as thermal_zone7
[ 1.147917] ACPI: Thermal Zone [DM2Z] (0 C)
[ 1.173591] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 1.211030] MODSIGN: Loaded cert 'Magrathea: Glacier signing key: c1fd247e94bee52eb4a6a56178dff013d775d9cb'
[ 1.546598] e1000e: Intel(R) PRO/1000 Network Driver - 2.1.4-k
[ 1.546602] e1000e: Copyright(c) 1999 - 2012 Intel Corporation.
[ 1.546656] e1000e 0000:00:19.0: setting latency timer to 64
[ 1.547007] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 1.547068] e1000e 0000:00:19.0: irq 44 for MSI/MSI-X
[ 1.811499] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 2c:76:8a:dc:a0:5e
[ 1.811504] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[ 1.811543] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: FFFFFF-0FF
[ 8.059689] Adding 2028540k swap on /dev/sda6. Priority:-1 extents:1 across:2028540k
[ 9.344167] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 10.573702] wmi: Mapper loaded
[ 10.743689] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 11.167712] fbcon: inteldrmfb (fb0) is primary device
[ 16.971216] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 18.120166] audit_printk_skb: 51 callbacks suppressed
[ 22.147070] e1000e 0000:00:19.0: irq 44 for MSI/MSI-X
[ 22.250745] e1000e 0000:00:19.0: irq 44 for MSI/MSI-X
[ 22.250858] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 22.251213] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 31.924272] e1000e 0000:00:19.0: setting latency timer to 64
[ 31.924317] e1000e 0000:00:19.0: irq 44 for MSI/MSI-X
[ 64.164939] type=1400 audit(1379579672.539:30): apparmor="DENIED" operation="open" parent=1 profile="/usr/lib/telepathy/mission-control-5" name="/usr/share/gvfs/remote-volume-monitors/" pid=2102 comm="mission-control" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
|
|
praseodym
Supporter
Anmeldungsdatum: 9. Februar 2009
Beiträge: 22111
Wohnort: ~
|
Hallo, hier sollte die Installation des Paketes linux-firmware-nonfree genügen.
|
AstroPhysik
(Themenstarter)
Anmeldungsdatum: 9. Mai 2009
Beiträge: 219
Wohnort: Wien
|
Danke, installation und reboot hat nichts gebracht. Kein Funknetzwerk aktivieren im Applet. dafür gibts jetzt eine Ausgabe von:
egrep -i 'net|eth|wlan|firm|reason' /var/log/syslog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198 | Sep 19 11:03:21 HP-ProBook-6560b NetworkManager[1080]: <info> WiFi now enabled by radio killswitch
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 0.000000] Transmeta GenuineTMx86
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 0.127527] NET: Registered protocol family 16
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 0.144252] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 0.628670] NetLabel: Initializing
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 0.628671] NetLabel: domain hash size = 128
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 0.628673] NetLabel: protocols = UNLABELED CIPSOv4
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 0.628682] NetLabel: unlabeled traffic allowed by default
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 0.675674] NET: Registered protocol family 2
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 0.675918] NET: Registered protocol family 1
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 1.003315] audit: initializing netlink socket (disabled)
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 1.198238] NET: Registered protocol family 10
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 1.198422] NET: Registered protocol family 17
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 1.539384] e1000e: Intel(R) PRO/1000 Network Driver - 2.1.4-k
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 1.795408] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 2c:76:8a:dc:a0:5e
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 1.795413] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 1.795451] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: FFFFFF-0FF
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 10.509818] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 12.068528] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 13.390857] type=1400 audit(1379582400.693:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=740 comm="apparmor_parser"
Sep 19 11:20:02 HP-ProBook-6560b kernel: [ 13.390871] type=1400 audit(1379582400.693:5): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=698 comm="apparmor_parser"
Sep 19 11:20:03 HP-ProBook-6560b avahi-daemon[960]: Network interface enumeration completed.
Sep 19 11:20:03 HP-ProBook-6560b kernel: [ 16.502937] NET: Registered protocol family 31
Sep 19 11:20:04 HP-ProBook-6560b kernel: [ 16.772114] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Sep 19 11:20:04 HP-ProBook-6560b NetworkManager[971]: <info> NetworkManager (version 0.9.4.0) is starting...
Sep 19 11:20:04 HP-ProBook-6560b NetworkManager[971]: <info> Read config file /etc/NetworkManager/NetworkManager.conf
Sep 19 11:20:06 HP-ProBook-6560b kernel: [ 18.681798] type=1400 audit(1379582405.993:11): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=997 comm="apparmor_parser"
Sep 19 11:20:06 HP-ProBook-6560b NetworkManager[971]: <info> VPN: loaded org.freedesktop.NetworkManager.pptp
Sep 19 11:20:06 HP-ProBook-6560b NetworkManager[971]: <info> DNS: loaded plugin dnsmasq
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: SCPlugin-Ifupdown: init!
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: SCPlugin-Ifupdown: update_system_hostname
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: SCPluginIfupdown: management mode: unmanaged
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:19.0/net/eth0, iface: eth0)
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:19.0/net/eth0, iface: eth0): no ifupdown configuration found.
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/lo, iface: lo)
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: SCPlugin-Ifupdown: end _init.
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: <info> Loaded plugin ifupdown: (C) 2008 Canonical Ltd. To report bugs please use the NetworkManager mailing list.
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: <info> Loaded plugin keyfile: (c) 2007 - 2010 Red Hat, Inc. To report bugs please use the NetworkManager mailing list.
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: Ifupdown: get unmanaged devices count: 0
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: SCPlugin-Ifupdown: (161733968) ... get_connections.
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: SCPlugin-Ifupdown: (161733968) ... get_connections (managed=false): return empty list.
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: keyfile: parsing Bob Default ...
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: keyfile: read connection 'Bob Default'
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: Ifupdown: get unmanaged devices count: 0
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: <info> modem-manager is now available
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: <info> monitoring kernel firmware directory '/lib/firmware'.
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: <info> found WiFi radio killswitch rfkill0 (at /sys/devices/platform/hp-wmi/rfkill/rfkill0) (driver hp-wmi)
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: <info> WiFi enabled by radio killswitch; enabled by state file
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: <info> WWAN enabled by radio killswitch; enabled by state file
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: <info> WiMAX enabled by radio killswitch; enabled by state file
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: <info> Networking is enabled by state file
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: [mark]<warn> failed to allocate link cache: (-10) Operation not supported[/mark]
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: <info> (eth0): carrier is OFF
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: <info> (eth0): new Ethernet device (driver: 'e1000e' ifindex: 2)
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: <info> (eth0): exported as /org/freedesktop/NetworkManager/Devices/0
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: <info> (eth0): now managed
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: <info> (eth0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: <info> (eth0): bringing up device.
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: <info> (eth0): preparing device.
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: <info> (eth0): deactivating device (reason 'managed') [2]
Sep 19 11:20:07 HP-ProBook-6560b NetworkManager[971]: <info> Added default wired connection 'Kabelnetzwerkverbindung 1' for /sys/devices/pci0000:00/0000:00:19.0/net/eth0
Sep 19 11:20:07 HP-ProBook-6560b kernel: [ 20.197913] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Sep 19 11:20:07 HP-ProBook-6560b kernel: [ 20.198249] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Sep 19 11:20:14 HP-ProBook-6560b NetworkManager[971]: [mark]<warn> (ttyUSB0): failed to look up interface index[/mark]
Sep 19 11:20:14 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): new GSM/UMTS device (driver: 'option1' ifindex: 0)
Sep 19 11:20:14 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): exported as /org/freedesktop/NetworkManager/Devices/1
Sep 19 11:20:14 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): now managed
Sep 19 11:20:14 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep 19 11:20:14 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): deactivating device (reason 'managed') [2]
Sep 19 11:20:14 HP-ProBook-6560b NetworkManager[971]: nm_system_iface_flush_routes: assertion `ifindex > 0' failed
Sep 19 11:20:14 HP-ProBook-6560b NetworkManager[971]: nm_system_iface_flush_addresses: assertion `ifindex > 0' failed
Sep 19 11:20:14 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): device state change: unavailable -> disconnected (reason 'none') [20 30 0]
Sep 19 11:23:59 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): now unmanaged
Sep 19 11:23:59 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): device state change: disconnected -> unmanaged (reason 'removed') [30 10 36]
Sep 19 11:23:59 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): cleaning up...
Sep 19 11:23:59 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): taking down device.
Sep 19 11:23:59 HP-ProBook-6560b NetworkManager[971]: <info> Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
Sep 19 11:23:59 HP-ProBook-6560b NetworkManager[971]: <info> Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
Sep 19 11:34:51 HP-ProBook-6560b NetworkManager[971]: [mark]<warn> (ttyUSB0): failed to look up interface index[/mark]
Sep 19 11:34:51 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): new GSM/UMTS device (driver: 'option1' ifindex: 0)
Sep 19 11:34:51 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): exported as /org/freedesktop/NetworkManager/Devices/2
Sep 19 11:34:51 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): now managed
Sep 19 11:34:51 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep 19 11:34:51 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): deactivating device (reason 'managed') [2]
Sep 19 11:34:51 HP-ProBook-6560b NetworkManager[971]: nm_system_iface_flush_routes: assertion `ifindex > 0' failed
Sep 19 11:34:51 HP-ProBook-6560b NetworkManager[971]: nm_system_iface_flush_addresses: assertion `ifindex > 0' failed
Sep 19 11:34:51 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): device state change: unavailable -> disconnected (reason 'none') [20 30 0]
Sep 19 11:35:00 HP-ProBook-6560b NetworkManager[971]: <info> Activation (ttyUSB0) starting connection 'Bob Default'
Sep 19 11:35:00 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Sep 19 11:35:00 HP-ProBook-6560b NetworkManager[971]: <info> Activation (ttyUSB0) Stage 1 of 5 (Device Prepare) scheduled...
Sep 19 11:35:00 HP-ProBook-6560b NetworkManager[971]: <info> Activation (ttyUSB0) Stage 1 of 5 (Device Prepare) started...
Sep 19 11:35:00 HP-ProBook-6560b NetworkManager[971]: <info> Activation (ttyUSB0) Stage 1 of 5 (Device Prepare) complete.
Sep 19 11:35:01 HP-ProBook-6560b NetworkManager[971]: <info> WWAN now enabled by management service
Sep 19 11:35:01 HP-ProBook-6560b NetworkManager[971]: <info> Activation (ttyUSB0) Stage 2 of 5 (Device Configure) scheduled...
Sep 19 11:35:01 HP-ProBook-6560b NetworkManager[971]: <info> Activation (ttyUSB0) Stage 2 of 5 (Device Configure) starting...
Sep 19 11:35:01 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): device state change: prepare -> config (reason 'none') [40 50 0]
Sep 19 11:35:01 HP-ProBook-6560b NetworkManager[971]: <info> Activation (ttyUSB0) Stage 2 of 5 (Device Configure) successful.
Sep 19 11:35:01 HP-ProBook-6560b NetworkManager[971]: <info> Activation (ttyUSB0) Stage 3 of 5 (IP Configure Start) scheduled.
Sep 19 11:35:01 HP-ProBook-6560b NetworkManager[971]: <info> Activation (ttyUSB0) Stage 2 of 5 (Device Configure) complete.
Sep 19 11:35:01 HP-ProBook-6560b NetworkManager[971]: <info> Activation (ttyUSB0) Stage 3 of 5 (IP Configure Start) started...
Sep 19 11:35:01 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): device state change: config -> ip-config (reason 'none') [50 70 0]
Sep 19 11:35:01 HP-ProBook-6560b NetworkManager[971]: <info> starting PPP connection
Sep 19 11:35:01 HP-ProBook-6560b NetworkManager[971]: <info> pppd started with pid 2328
Sep 19 11:35:01 HP-ProBook-6560b NetworkManager[971]: <info> Activation (ttyUSB0) Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
Sep 19 11:35:01 HP-ProBook-6560b NetworkManager[971]: <info> Activation (ttyUSB0) Stage 3 of 5 (IP Configure Start) complete.
Sep 19 11:35:01 HP-ProBook-6560b NetworkManager[971]: <info> Activation (ttyUSB0) Stage 4 of 5 (IPv6 Configure Timeout) started...
Sep 19 11:35:01 HP-ProBook-6560b NetworkManager[971]: <info> Activation (ttyUSB0) Stage 4 of 5 (IPv6 Configure Timeout) complete.
Sep 19 11:35:01 HP-ProBook-6560b NetworkManager[971]: SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/ppp0, iface: ppp0)
Sep 19 11:35:01 HP-ProBook-6560b NetworkManager[971]: SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/ppp0, iface: ppp0): no ifupdown configuration found.
Sep 19 11:35:04 HP-ProBook-6560b NetworkManager[971]: <info> PPP manager(IP Config Get) reply received.
Sep 19 11:35:04 HP-ProBook-6560b NetworkManager[971]: <info> Activation (ttyUSB0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
Sep 19 11:35:04 HP-ProBook-6560b NetworkManager[971]: <info> Activation (ttyUSB0) Stage 5 of 5 (IPv4 Commit) started...
Sep 19 11:35:05 HP-ProBook-6560b NetworkManager[971]: <info> DNS: starting dnsmasq...
Sep 19 11:35:06 HP-ProBook-6560b NetworkManager[971]: <error> [1379583306.10179] [nm-dns-dnsmasq.c:393] update(): dnsmasq not available on the bus, can't update servers.
Sep 19 11:35:06 HP-ProBook-6560b NetworkManager[971]: <error> [1379583306.10215] [nm-dns-dnsmasq.c:395] update(): dnsmasq owner not found on bus: Could not get owner of name 'uk.org.thekelleys.dnsmasq': no such name
Sep 19 11:35:06 HP-ProBook-6560b NetworkManager[971]: <[mark]warn> DNS: plugin dnsmasq update failed[/mark]
Sep 19 11:35:06 HP-ProBook-6560b NetworkManager[971]: <info> (ppp0): writing resolv.conf to /sbin/resolvconf
Sep 19 11:35:06 HP-ProBook-6560b NetworkManager[971]: <info> (ttyUSB0): device state change: ip-config -> activated (reason 'none') [70 100 0]
Sep 19 11:35:06 HP-ProBook-6560b NetworkManager[971]: <info> Policy set 'Bob Default' (ppp0) as default for IPv4 routing and DNS.
Sep 19 11:35:06 HP-ProBook-6560b NetworkManager[971]: <info> Activation (ttyUSB0) successful, device activated.
Sep 19 11:35:06 HP-ProBook-6560b NetworkManager[971]: <info> Activation (ttyUSB0) Stage 5 of 5 (IPv4 Commit) complete.
Sep 19 11:35:06 HP-ProBook-6560b NetworkManager[971]: [mark]<warn> dnsmasq appeared on DBus: :1.70[/mark]
Sep 19 11:35:06 HP-ProBook-6560b NetworkManager[971]: <info> (ppp0): writing resolv.conf to /sbin/resolvconf
Sep 19 11:35:59 HP-ProBook-6560b NetworkManager[971]: <info> kernel firmware directory '/lib/firmware' changed
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 0.000000] Transmeta GenuineTMx86
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 0.127649] NET: Registered protocol family 16
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 0.144366] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 0.624717] NetLabel: Initializing
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 0.624719] NetLabel: domain hash size = 128
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 0.624720] NetLabel: protocols = UNLABELED CIPSOv4
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 0.624729] NetLabel: unlabeled traffic allowed by default
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 0.671716] NET: Registered protocol family 2
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 0.671961] NET: Registered protocol family 1
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 0.999401] audit: initializing netlink socket (disabled)
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 1.194793] NET: Registered protocol family 10
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 1.195024] NET: Registered protocol family 17
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 1.538233] e1000e: Intel(R) PRO/1000 Network Driver - 2.1.4-k
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 1.795562] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 2c:76:8a:dc:a0:5e
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 1.795566] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 1.795602] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: FFFFFF-0FF
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 9.386355] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 10.511494] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 11.452244] type=1400 audit(1379583423.756:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=736 comm="apparmor_parser"
Sep 19 11:37:07 HP-ProBook-6560b kernel: [ 11.452255] type=1400 audit(1379583423.756:5): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=701 comm="apparmor_parser"
Sep 19 11:37:08 HP-ProBook-6560b avahi-daemon[967]: Network interface enumeration completed.
Sep 19 11:37:09 HP-ProBook-6560b kernel: [ 17.001128] type=1400 audit(1379583429.312:11): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=996 comm="apparmor_parser"
Sep 19 11:37:09 HP-ProBook-6560b kernel: [ 17.077053] NET: Registered protocol family 31
Sep 19 11:37:09 HP-ProBook-6560b kernel: [ 17.292177] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Sep 19 11:37:10 HP-ProBook-6560b NetworkManager[1040]: <info> NetworkManager (version 0.9.4.0) is starting...
Sep 19 11:37:10 HP-ProBook-6560b NetworkManager[1040]: <info> Read config file /etc/NetworkManager/NetworkManager.conf
Sep 19 11:37:13 HP-ProBook-6560b NetworkManager[1040]: <info> VPN: loaded org.freedesktop.NetworkManager.pptp
Sep 19 11:37:13 HP-ProBook-6560b NetworkManager[1040]: <info> DNS: loaded plugin dnsmasq
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: SCPlugin-Ifupdown: init!
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: SCPlugin-Ifupdown: update_system_hostname
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: SCPluginIfupdown: management mode: unmanaged
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:19.0/net/eth0, iface: eth0)
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:19.0/net/eth0, iface: eth0): no ifupdown configuration found.
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/lo, iface: lo)
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: SCPlugin-Ifupdown: end _init.
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: <info> Loaded plugin ifupdown: (C) 2008 Canonical Ltd. To report bugs please use the NetworkManager mailing list.
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: <info> Loaded plugin keyfile: (c) 2007 - 2010 Red Hat, Inc. To report bugs please use the NetworkManager mailing list.
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: Ifupdown: get unmanaged devices count: 0
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: SCPlugin-Ifupdown: (155462344) ... get_connections.
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: SCPlugin-Ifupdown: (155462344) ... get_connections (managed=false): return empty list.
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: keyfile: parsing Bob Default ...
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: keyfile: read connection 'Bob Default'
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: Ifupdown: get unmanaged devices count: 0
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: <info> modem-manager is now available
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: <info> monitoring kernel firmware directory '/lib/firmware'.
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: <info> found WiFi radio killswitch rfkill0 (at /sys/devices/platform/hp-wmi/rfkill/rfkill0) (driver hp-wmi)
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: <info> WiFi enabled by radio killswitch; enabled by state file
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: <info> WWAN enabled by radio killswitch; enabled by state file
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: <info> WiMAX enabled by radio killswitch; enabled by state file
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: <info> Networking is enabled by state file
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: [mark]<warn> failed to allocate link cache: (-10) Operation not supported[/mark]
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: <info> (eth0): carrier is OFF
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: <info> (eth0): new Ethernet device (driver: 'e1000e' ifindex: 2)
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: <info> (eth0): exported as /org/freedesktop/NetworkManager/Devices/0
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: <info> (eth0): now managed
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: <info> (eth0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: <info> (eth0): bringing up device.
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: <info> (eth0): preparing device.
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: <info> (eth0): deactivating device (reason 'managed') [2]
Sep 19 11:37:14 HP-ProBook-6560b NetworkManager[1040]: <info> Added default wired connection 'Kabelnetzwerkverbindung 1' for /sys/devices/pci0000:00/0000:00:19.0/net/eth0
Sep 19 11:37:14 HP-ProBook-6560b kernel: [ 22.594439] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Sep 19 11:37:14 HP-ProBook-6560b kernel: [ 22.594814] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Sep 19 11:37:20 HP-ProBook-6560b NetworkManager[1040]: [mark]<warn> (ttyUSB0): failed to look up interface index[/mark]
Sep 19 11:37:20 HP-ProBook-6560b NetworkManager[1040]: <info> (ttyUSB0): new GSM/UMTS device (driver: 'option1' ifindex: 0)
Sep 19 11:37:20 HP-ProBook-6560b NetworkManager[1040]: <info> (ttyUSB0): exported as /org/freedesktop/NetworkManager/Devices/1
Sep 19 11:37:20 HP-ProBook-6560b NetworkManager[1040]: <info> (ttyUSB0): now managed
Sep 19 11:37:20 HP-ProBook-6560b NetworkManager[1040]: <info> (ttyUSB0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep 19 11:37:20 HP-ProBook-6560b NetworkManager[1040]: <info> (ttyUSB0): deactivating device (reason 'managed') [2]
Sep 19 11:37:20 HP-ProBook-6560b NetworkManager[1040]: nm_system_iface_flush_routes: assertion `ifindex > 0' failed
Sep 19 11:37:20 HP-ProBook-6560b NetworkManager[1040]: nm_system_iface_flush_addresses: assertion `ifindex > 0' failed
Sep 19 11:37:20 HP-ProBook-6560b NetworkManager[1040]: <info> (ttyUSB0): device state change: unavailable -> disconnected (reason 'none') [20 30 0]
Sep 19 11:40:55 HP-ProBook-6560b NetworkManager[1040]: <info> WWAN now enabled by management service
|
|
praseodym
Supporter
Anmeldungsdatum: 9. Februar 2009
Beiträge: 22111
Wohnort: ~
|
Versuche:
sudo rmmod hp_wmi
sudo modprobe -v hp_wmi wireless=1
|
AstroPhysik
(Themenstarter)
Anmeldungsdatum: 9. Mai 2009
Beiträge: 219
Wohnort: Wien
|
Bei sudo rmmod hp_wmi sagt er schon: Error Module hp_wmi does not exist in /proc/modules Ist das ein Kernel Modul?
vg AP
|
praseodym
Supporter
Anmeldungsdatum: 9. Februar 2009
Beiträge: 22111
Wohnort: ~
|
Ja, dann
sudo rmmod hp-wmi
sudo modprobe -v hp-wmi wireless=1
|
AstroPhysik
(Themenstarter)
Anmeldungsdatum: 9. Mai 2009
Beiträge: 219
Wohnort: Wien
|
Ah Blödsinn, das erste entfernt das Modul (daher sagt er dann beim 2en mal, es konnte nicht gefunden werden) das Zweite gibt dann das aus: sudo modprobe -v hp_wmi wireless=1
| insmod /lib/modules/3.8.0-30-generic/kernel/drivers/platform/x86/hp-wmi.ko wireless=1
FATAL: Error inserting hp_wmi (/lib/modules/3.8.0-30-generic/kernel/drivers/platform/x86/hp-wmi.ko): Invalid argument
|
Edited: Gleiche Meldung kommt bei: sudo modprobe -v hp-wmi wireless=1
vg AP
|
praseodym
Supporter
Anmeldungsdatum: 9. Februar 2009
Beiträge: 22111
Wohnort: ~
|
Gibt es eine Taste/Tastenkombination/Schalter oder Schieber? BIOS-Reset versucht?
|
AstroPhysik
(Themenstarter)
Anmeldungsdatum: 9. Mai 2009
Beiträge: 219
Wohnort: Wien
|
Nein, Hardware Turn-Off gibts nur den Schalter. Die Ausgabe reagiert unmittelbar mit rfkill list. Bios Reset wäre eher unangebracht, da in Win7 WLAN ja alles geht, schätz ich mal? Mein alter HP Pavilion gibt übrigens bei rfkill list einen phy0 noch als WLAN aus! der Fehlt beim ProBook.. | 0: hp-wifi: Wireless LAN
Soft blocked: no
Hard blocked: no
1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
|
vg AP
|
praseodym
Supporter
Anmeldungsdatum: 9. Februar 2009
Beiträge: 22111
Wohnort: ~
|
Windows sollte von Reset nicht beeinflusst werden. Gibts dort eine Option, WLAN zu aktivieren oder schaltet gar Win die Karte beim Herunterfahren aus?
|
AstroPhysik
(Themenstarter)
Anmeldungsdatum: 9. Mai 2009
Beiträge: 219
Wohnort: Wien
|
Ah, so wars gedacht. Hab jetzt was anders gemacht. Hab eine ältere 64 bit Ubuntu Live CD mit Kernel 3.2.0-23 x_64 vom 10. April 2012 reingeschoben, und siehe da es geht! Also wurde bei den Treibern der 32 Bit von 12.04.3 bei Kernel 3.8 gemurkst.. Hmm, die Probooks sind Intel i3-Quadcores mit 2 GB RAM oder ich lösche das 32 Bit ubuntu und setze 64 bit auf? Aber dann könnte das update auf neuesten support-Kernel immer noch ins Treiberproblem rasseln. vg AP Edited: Eine 32 Bit 11.04 original-Ubuntu Live CD verweigert den Start Der neue 3.11.1 er Kernel (32bit) aus der Mainline nachinstallieren hat nichts gebracht. Event setz ich das System halt auf 64 Bit auf und hoffe das die updates klappen.
|
AstroPhysik
(Themenstarter)
Anmeldungsdatum: 9. Mai 2009
Beiträge: 219
Wohnort: Wien
|
The HP ProBook 6550b notebook has been awarded the status of Certified for Ubuntu. http://www.ubuntu.com/certification/hardware/201101-6954/
Das gilt wohl fürs 6560b nicht mehr *LOL*
|