Problème de connection en wifi Raspberry Pi

a marqué ce sujet comme résolu.

EDIT: Tout est deux messages plus bas

Bonjour/ Bonsoir, je souhaite connecter ma Raspberry Pi à mon routeur via WiFi. Je possède une clé WiFi USB TP-Link TL-WN725N V2. J'ai suivi un tutoriel pour installer le pilote (En SSH, je n'ai pas accès à un écran), l'installation s'est déroulé sans problème. J'ai maintenant modifié mon fichier /etc/network/interfaces en suivant un article, de façon à ce que la clé se connecte (Je suis en WPA2 PSK TKIP):

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
auto lo
auto eth0

iface lo inet loopback
iface eth0 inet dhcp

allow-hotplug wlan0
auto wlan0
iface wlan0 inet dhcp
wpa-ssid "nom de mon routeur"
wpa-psk "mot de passe"

Cependant désormais, si je démarre ma RPI avec une prise Ethernet et ma clé Wifi, le RPI est connecté via Ethernet.... Mais si je débranche le cable, et que je redémarre uniquement avec la clé, une petite led verte s'allume sur la clé mais je ne suis pas connecté à Internet (pas de signe de RPI dans l'interface d'administration de mon routeur, et aucun accès SSH) Quelqu'un sait où se situe le problème ? Merci d'avance :) !

+0 -0

J'ai installé wpasupplicant, et j'ai mis mes infos de connexion dedans. Désormais voici mon fichier /etc/network/interfaces:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
auto lo

iface lo inet loopback
iface eth0 inet dhcp

allow-hotplug wlan0
iface wlan0 inet manual
address 192.168.1.60
netmask 255.255.255.0
gateway 192.168.1.1
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf

Mon fichier wpa_supplicant:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1


network={
ssid="NUMERICABLE-44F0"
psk="3aB76E49"
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP
group=CCMP
auth_alg=OPEN
}

Voici les logs au boot: 8188 est le nom du Driver pour la clé wifi

  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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
May 16 11:56:18 raspberrypi kernel: [    5.090267] cfg80211: Calling CRDA to update world regulatory domain
May 16 11:56:18 raspberrypi kernel: [    5.148095] random: nonblocking pool is initialized
May 16 11:56:18 raspberrypi kernel: [    5.363230] RTL871X: module init start
May 16 11:56:18 raspberrypi kernel: [    5.372977] RTL871X: rtl8188eu v4.3.0.8_13968.20150417
May 16 11:56:18 raspberrypi kernel: [    5.384010] RTL871X: build time: Mar  6 2016 07:53:15
May 16 11:56:18 raspberrypi kernel: [    5.426138] bFWReady == _FALSE call reset 8051...
May 16 11:56:18 raspberrypi kernel: [    5.497475] RTL871X: rtw_ndev_init(wlan0)
May 16 11:56:18 raspberrypi kernel: [    5.517596] bcm2835-rng 3f104000.rng: hwrng registered
May 16 11:56:18 raspberrypi kernel: [    5.522341] usbcore: registered new interface driver rtl8188eu
May 16 11:56:18 raspberrypi kernel: [    5.522349] RTL871X: module init ret=0
May 16 11:56:18 raspberrypi kernel: [    5.546730] gpiomem-bcm2835 3f200000.gpiomem: Initialised: Registers at 0x3f200000
May 16 11:56:18 raspberrypi kernel: [    7.107568] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
May 16 11:56:18 raspberrypi kernel: [    7.369043] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
May 16 11:56:18 raspberrypi kernel: [    8.254696] cfg80211: Calling CRDA to update world regulatory domain
May 16 11:56:18 raspberrypi kernel: [   11.424672] cfg80211: Calling CRDA to update world regulatory domain
May 16 11:56:18 raspberrypi kernel: [   12.447681] smsc95xx 1-1.1:1.0 eth0: hardware isn't capable of remote wakeup
May 16 11:56:18 raspberrypi kernel: [   13.105303] ==> rtl8188e_iol_efuse_patch
May 16 11:56:18 raspberrypi kernel: [   14.584631] cfg80211: Calling CRDA to update world regulatory domain
May 16 11:56:18 raspberrypi kernel: [   15.104672] RTL871X: nolinked power save enter
May 16 11:56:18 raspberrypi /usr/sbin/cron[2119]: (CRON) INFO (pidfile fd = 3)
May 16 11:56:18 raspberrypi ntpd[2106]: ntpd 4.2.6p5@1.2349-o Mon Nov  2 04:29:31 UTC 2015 (1)
May 16 11:56:18 raspberrypi /usr/sbin/cron[2125]: (CRON) STARTUP (fork ok)
May 16 11:56:18 raspberrypi ntpd[2122]: proto: precision = 0.833 usec
May 16 11:56:18 raspberrypi ntpd[2122]: Listen and drop on 0 v4wildcard 0.0.0.0 UDP 123
May 16 11:56:18 raspberrypi ntpd[2122]: Listen normally on 1 lo 127.0.0.1 UDP 123
May 16 11:56:18 raspberrypi ntpd[2122]: peers refreshed
May 16 11:56:18 raspberrypi ntpd[2122]: Listening on routing socket on fd #18 for interface updates
May 16 11:56:18 raspberrypi ntpd[2122]: restrict: error in address '::' on line 38. Ignoring...
May 16 11:56:18 raspberrypi ntpd[2122]: restrict: error in address '::1' on line 42. Ignoring...
May 16 11:56:18 raspberrypi /usr/sbin/cron[2125]: (CRON) INFO (Running @reboot jobs)
May 16 11:56:18 raspberrypi ntpd[2122]: Deferring DNS for 0.debian.pool.ntp.org 1
May 16 11:56:18 raspberrypi ntpd[2122]: Deferring DNS for 1.debian.pool.ntp.org 1
May 16 11:56:18 raspberrypi ntpd[2122]: Deferring DNS for 2.debian.pool.ntp.org 1
May 16 11:56:18 raspberrypi ntpd[2122]: Deferring DNS for 3.debian.pool.ntp.org 1
May 16 11:56:18 raspberrypi ntpd[2141]: signal_no_reset: signal 17 had flags 4000000
May 16 11:56:18 raspberrypi kernel: [   15.751332] Adding 102396k swap on /var/swap.  Priority:-1 extents:2 across:2134012k SSFS
May 16 11:56:19 raspberrypi avahi-daemon[2245]: Found user 'avahi' (UID 103) and group 'avahi' (GID 105).
May 16 11:56:19 raspberrypi avahi-daemon[2245]: Successfully dropped root privileges.
May 16 11:56:19 raspberrypi avahi-daemon[2245]: avahi-daemon 0.6.31 starting up.
May 16 11:56:19 raspberrypi avahi-daemon[2245]: Successfully called chroot().
May 16 11:56:19 raspberrypi avahi-daemon[2245]: Successfully dropped remaining capabilities.
May 16 11:56:19 raspberrypi avahi-daemon[2245]: Loading service file /services/udisks.service.
May 16 11:56:19 raspberrypi avahi-daemon[2245]: socket() failed: Address family not supported by protocol
May 16 11:56:19 raspberrypi avahi-daemon[2245]: Failed to create IPv6 socket, proceeding in IPv4 only mode
May 16 11:56:19 raspberrypi avahi-daemon[2245]: socket() failed: Address family not supported by protocol
May 16 11:56:19 raspberrypi avahi-daemon[2245]: Network interface enumeration completed.
May 16 11:56:19 raspberrypi avahi-daemon[2245]: Registering HINFO record with values 'ARMV7L'/'LINUX'.
May 16 11:56:19 raspberrypi avahi-daemon[2245]: Server startup complete. Host name is raspberrypi.local. Local service cookie is 1352051600.
May 16 11:56:19 raspberrypi avahi-daemon[2245]: Service "raspberrypi" (/services/udisks.service) successfully established.
May 16 11:56:20 raspberrypi dbus[2155]: [system] Activating service name='org.freedesktop.ConsoleKit' (using servicehelper)
May 16 11:56:20 raspberrypi dhclient: isc-dhclient-4.2.2
May 16 11:56:20 raspberrypi dbus[2155]: [system] Activating service name='org.freedesktop.PolicyKit1' (using servicehelper)
May 16 11:56:20 raspberrypi dhclient: isc-dhclient-4.2.2
May 16 11:56:20 raspberrypi kernel: [   17.744718] cfg80211: Calling CRDA to update world regulatory domain
May 16 11:56:20 raspberrypi ntpd_intres[2141]: host name not found EAI_NODATA: 0.debian.pool.ntp.org
May 16 11:56:20 raspberrypi ntpd_intres[2141]: host name not found EAI_NODATA: 1.debian.pool.ntp.org
May 16 11:56:20 raspberrypi ntpd_intres[2141]: host name not found EAI_NODATA: 2.debian.pool.ntp.org
May 16 11:56:20 raspberrypi ntpd_intres[2141]: host name not found EAI_NODATA: 3.debian.pool.ntp.org
May 16 11:56:21 raspberrypi kernel: [   18.125325] uart-pl011 3f201000.uart: no DMA platform data
May 16 11:56:21 raspberrypi polkitd[2411]: started daemon version 0.105 using authority implementation `local' version `0.105'
May 16 11:56:21 raspberrypi dbus[2155]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
May 16 11:56:21 raspberrypi dbus[2155]: [system] Successfully activated service 'org.freedesktop.ConsoleKit'
May 16 11:56:21 raspberrypi kernel: [   18.585026] ==> rtl8188e_iol_efuse_patch
May 16 11:56:22 raspberrypi kernel: [   18.949050] RTL871X: nolinked power save leave
May 16 11:56:23 raspberrypi kernel: [   20.264614] RTL871X: nolinked power save enter
May 16 11:56:24 raspberrypi kernel: [   20.904668] cfg80211: Calling CRDA to update world regulatory domain
May 16 11:56:25 raspberrypi dbus[2155]: [system] Activating service name='org.freedesktop.UDisks' (using servicehelper)
May 16 11:56:25 raspberrypi dbus[2155]: [system] Successfully activated service 'org.freedesktop.UDisks'
May 16 11:56:27 raspberrypi kernel: [   24.064647] cfg80211: Calling CRDA to update world regulatory domain
May 16 11:56:27 raspberrypi kernel: [   24.615032] ==> rtl8188e_iol_efuse_patch
May 16 11:56:28 raspberrypi kernel: [   24.956547] RTL871X: nolinked power save leave
May 16 11:56:29 raspberrypi kernel: [   26.274611] RTL871X: nolinked power save enter
May 16 11:56:30 raspberrypi kernel: [   27.224688] cfg80211: Calling CRDA to update world regulatory domain
May 16 11:56:32 raspberrypi kernel: [   29.645042] ==> rtl8188e_iol_efuse_patch
May 16 11:56:33 raspberrypi kernel: [   30.008552] RTL871X: nolinked power save leave
May 16 11:56:33 raspberrypi kernel: [   30.384695] cfg80211: Calling CRDA to update world regulatory domain
May 16 11:56:34 raspberrypi kernel: [   31.324633] RTL871X: nolinked power save enter
May 16 11:56:36 raspberrypi kernel: [   33.544682] cfg80211: Calling CRDA to update world regulatory domain
May 16 11:56:37 raspberrypi kernel: [   34.645073] ==> rtl8188e_iol_efuse_patch
May 16 11:56:38 raspberrypi kernel: [   35.026813] RTL871X: nolinked power save leave
May 16 11:56:39 raspberrypi kernel: [   36.334657] RTL871X: nolinked power save enter
May 16 11:56:39 raspberrypi kernel: [   36.704667] cfg80211: Calling CRDA to update world regulatory domain
May 16 11:56:42 raspberrypi kernel: [   39.615097] ==> rtl8188e_iol_efuse_patch
May 16 11:56:43 raspberrypi kernel: [   39.960739] RTL871X: nolinked power save leave
May 16 11:56:43 raspberrypi kernel: [   39.960894] cfg80211: Exceeded CRDA call max attempts. Not calling CRDA
May 16 11:56:44 raspberrypi kernel: [   41.274686] RTL871X: nolinked power save enter
May 16 11:56:48 raspberrypi kernel: [   45.445077] ==> rtl8188e_iol_efuse_patch
May 16 11:56:48 raspberrypi kernel: [   45.759700] RTL871X: nolinked power save leave
May 16 11:56:50 raspberrypi kernel: [   47.074717] RTL871X: nolinked power save enter
May 16 11:56:55 raspberrypi kernel: [   52.375369] ==> rtl8188e_iol_efuse_patch
May 16 11:56:55 raspberrypi kernel: [   52.773813] RTL871X: nolinked power save leave
May 16 11:56:57 raspberrypi kernel: [   54.084717] RTL871X: nolinked power save enter
May 16 11:57:02 raspberrypi kernel: [   59.395158] ==> rtl8188e_iol_efuse_patch
May 16 11:57:02 raspberrypi kernel: [   59.756082] RTL871X: nolinked power save leave
May 16 11:57:04 raspberrypi kernel: [   61.084849] RTL871X: nolinked power save enter
May 16 11:57:09 raspberrypi kernel: [   66.375163] ==> rtl8188e_iol_efuse_patch
May 16 11:57:09 raspberrypi kernel: [   66.730120] RTL871X: nolinked power save leave
May 16 11:57:11 raspberrypi kernel: [   68.044886] RTL871X: nolinked power save enter
May 16 11:57:16 raspberrypi kernel: [   73.365149] ==> rtl8188e_iol_efuse_patch
May 16 11:57:16 raspberrypi kernel: [   73.693173] RTL871X: nolinked power save leave
May 16 11:57:18 raspberrypi kernel: [   75.014815] RTL871X: nolinked power save enter
May 16 11:57:22 raspberrypi ntpd_intres[2141]: host name not found EAI_NODATA: 0.debian.pool.ntp.org
May 16 11:57:22 raspberrypi ntpd_intres[2141]: host name not found EAI_NODATA: 1.debian.pool.ntp.org
May 16 11:57:22 raspberrypi ntpd_intres[2141]: host name not found EAI_NODATA: 2.debian.pool.ntp.org
May 16 11:57:22 raspberrypi ntpd_intres[2141]: host name not found EAI_NODATA: 3.debian.pool.ntp.org
May 16 11:57:23 raspberrypi kernel: [   80.305247] ==> rtl8188e_iol_efuse_patch
May 16 11:57:23 raspberrypi kernel: [   80.652423] RTL871X: nolinked power save leave
May 16 11:57:25 raspberrypi kernel: [   81.964834] RTL871X: nolinked power save enter
May 16 11:57:30 raspberrypi kernel: [   87.265403] ==> rtl8188e_iol_efuse_patch
May 16 11:57:30 raspberrypi kernel: [   87.649113] RTL871X: nolinked power save leave
May 16 11:57:32 raspberrypi kernel: [   88.964835] RTL871X: nolinked power save enter
May 16 11:57:37 raspberrypi kernel: [   94.285279] ==> rtl8188e_iol_efuse_patch
May 16 11:57:37 raspberrypi kernel: [   94.632265] RTL871X: nolinked power save leave
May 16 11:57:39 raspberrypi kernel: [   95.944836] RTL871X: nolinked power save enter
May 16 11:57:44 raspberrypi kernel: [  101.265303] ==> rtl8188e_iol_efuse_patch
May 16 11:57:44 raspberrypi kernel: [  101.634327] RTL871X: nolinked power save leave
May 16 11:57:46 raspberrypi kernel: [  102.944965] RTL871X: nolinked power save enter
May 16 11:57:51 raspberrypi kernel: [  108.265332] ==> rtl8188e_iol_efuse_patch
May 16 11:57:51 raspberrypi kernel: [  108.613216] RTL871X: nolinked power save leave
May 16 11:57:53 raspberrypi kernel: [  109.924918] RTL871X: nolinked power save enter
May 16 11:57:58 raspberrypi kernel: [  115.245345] ==> rtl8188e_iol_efuse_patch
May 16 11:57:58 raspberrypi kernel: [  115.611307] RTL871X: nolinked power save leave
May 16 11:58:00 raspberrypi kernel: [  116.924914] RTL871X: nolinked power save enter
May 16 11:58:05 raspberrypi kernel: [  122.225312] ==> rtl8188e_iol_efuse_patch
May 16 11:58:05 raspberrypi kernel: [  122.586305] RTL871X: nolinked power save leave
May 16 11:58:07 raspberrypi kernel: [  123.894932] RTL871X: nolinked power save enter
May 16 11:58:12 raspberrypi kernel: [  129.215512] ==> rtl8188e_iol_efuse_patch
May 16 11:58:12 raspberrypi kernel: [  129.600859] RTL871X: nolinked power save leave
May 16 11:58:14 raspberrypi kernel: [  130.914975] RTL871X: nolinked power save enter
May 16 11:58:19 raspberrypi kernel: [  136.235516] ==> rtl8188e_iol_efuse_patch
May 16 11:58:19 raspberrypi kernel: [  136.639702] RTL871X: nolinked power save leave
May 16 11:58:21 raspberrypi kernel: [  137.954980] RTL871X: nolinked power save enter
May 16 11:58:26 raspberrypi kernel: [  143.275464] ==> rtl8188e_iol_efuse_patch
May 16 11:58:26 raspberrypi kernel: [  143.639972] RTL871X: nolinked power save leave
May 16 11:58:28 raspberrypi kernel: [  144.954983] RTL871X: nolinked power save enter
May 16 11:58:33 raspberrypi kernel: [  150.275396] ==> rtl8188e_iol_efuse_patch
May 16 11:58:33 raspberrypi kernel: [  150.634773] RTL871X: nolinked power save leave
May 16 11:58:35 raspberrypi kernel: [  151.945013] RTL871X: nolinked power save enter
May 16 11:58:40 raspberrypi kernel: [  157.245721] ==> rtl8188e_iol_efuse_patch
May 16 11:58:40 raspberrypi kernel: [  157.623911] RTL871X: nolinked power save leave
May 16 11:58:42 raspberrypi kernel: [  158.935032] RTL871X: nolinked power save enter
May 16 11:58:47 raspberrypi kernel: [  164.255479] ==> rtl8188e_iol_efuse_patch
May 16 11:58:47 raspberrypi kernel: [  164.596279] RTL871X: nolinked power save leave
May 16 11:58:49 raspberrypi kernel: [  165.915093] RTL871X: nolinked power save enter
May 16 11:58:54 raspberrypi kernel: [  171.235454] ==> rtl8188e_iol_efuse_patch
May 16 11:58:54 raspberrypi kernel: [  171.594597] RTL871X: nolinked power save leave
May 16 11:58:56 raspberrypi kernel: [  172.905132] RTL871X: nolinked power save enter
May 16 11:59:01 raspberrypi kernel: [  178.215500] ==> rtl8188e_iol_efuse_patch
May 16 11:59:01 raspberrypi kernel: [  178.562367] RTL871X: nolinked power save leave
May 16 11:59:02 raspberrypi kernel: [  179.875127] RTL871X: nolinked power save enter
May 16 11:59:08 raspberrypi kernel: [  185.195525] ==> rtl8188e_iol_efuse_patch
May 16 11:59:08 raspberrypi kernel: [  185.543573] RTL871X: nolinked power save leave
May 16 11:59:09 raspberrypi kernel: [  186.855119] RTL871X: nolinked power save enter
May 16 11:59:15 raspberrypi kernel: [  192.155564] ==> rtl8188e_iol_efuse_patch
May 16 11:59:15 raspberrypi kernel: [  192.519324] RTL871X: nolinked power save leave
May 16 11:59:16 raspberrypi kernel: [  193.835147] RTL871X: nolinked power save enter
May 16 11:59:22 raspberrypi kernel: [  199.145562] ==> rtl8188e_iol_efuse_patch
May 16 11:59:22 raspberrypi kernel: [  199.529465] RTL871X: nolinked power save leave
May 16 11:59:23 raspberrypi kernel: [  200.845177] RTL871X: nolinked power save enter
May 16 11:59:25 raspberrypi ntpd_intres[2141]: host name not found EAI_NODATA: 0.debian.pool.ntp.org
May 16 11:59:25 raspberrypi ntpd_intres[2141]: host name not found EAI_NODATA: 1.debian.pool.ntp.org
May 16 11:59:25 raspberrypi ntpd_intres[2141]: host name not found EAI_NODATA: 2.debian.pool.ntp.org
May 16 11:59:25 raspberrypi ntpd_intres[2141]: host name not found EAI_NODATA: 3.debian.pool.ntp.org
May 16 11:59:29 raspberrypi kernel: [  206.165586] ==> rtl8188e_iol_efuse_patch
May 16 11:59:29 raspberrypi kernel: [  206.466118] RTL871X: nolinked power save leave
May 16 11:59:30 raspberrypi kernel: [  207.775232] RTL871X: nolinked power save enter
May 16 11:59:36 raspberrypi kernel: [  213.095633] ==> rtl8188e_iol_efuse_patch
May 16 11:59:36 raspberrypi kernel: [  213.426570] RTL871X: nolinked power save leave
May 16 11:59:37 raspberrypi kernel: [  214.735219] RTL871X: nolinked power save enter
May 16 11:59:43 raspberrypi kernel: [  220.045579] ==> rtl8188e_iol_efuse_patch
May 16 11:59:43 raspberrypi kernel: [  220.385890] RTL871X: nolinked power save leave
May 16 11:59:44 raspberrypi kernel: [  221.695247] RTL871X: nolinked power save enter
May 16 11:59:50 raspberrypi kernel: [  226.995630] ==> rtl8188e_iol_efuse_patch
May 16 11:59:50 raspberrypi kernel: [  227.391577] RTL871X: nolinked power save leave
May 16 11:59:51 raspberrypi kernel: [  228.705233] RTL871X: nolinked power save enter
May 16 11:59:57 raspberrypi kernel: [  234.025724] ==> rtl8188e_iol_efuse_patch
May 16 11:59:57 raspberrypi kernel: [  234.317503] RTL871X: nolinked power save leave
May 16 11:59:58 raspberrypi kernel: [  235.635267] RTL871X: nolinked power save enter
May 16 12:00:02 raspberrypi kernel: [  239.655672] ==> rtl8188e_iol_efuse_patch
May 16 12:00:03 raspberrypi kernel: [  240.033286] RTL871X: nolinked power save leave
May 16 12:00:04 raspberrypi kernel: [  241.345281] RTL871X: nolinked power save enter
May 16 12:00:09 raspberrypi kernel: [  245.955706] ==> rtl8188e_iol_efuse_patch
May 16 12:00:09 raspberrypi kernel: [  246.295689] RTL871X: nolinked power save leave
May 16 12:00:10 raspberrypi kernel: [  247.605320] RTL871X: nolinked power save enter
May 16 12:00:16 raspberrypi kernel: [  252.925914] ==> rtl8188e_iol_efuse_patch
May 16 12:00:16 raspberrypi kernel: [  253.312552] RTL871X: nolinked power save leave
May 16 12:00:17 raspberrypi kernel: [  254.625337] RTL871X: nolinked power save enter
May 16 12:00:23 raspberrypi kernel: [  259.945812] ==> rtl8188e_iol_efuse_patch
May 16 12:00:23 raspberrypi kernel: [  260.292829] RTL871X: nolinked power save leave
May 16 12:00:24 raspberrypi kernel: [  261.605365] RTL871X: nolinked power save enter
May 16 12:00:30 raspberrypi kernel: [  266.925975] ==> rtl8188e_iol_efuse_patch
May 16 12:00:30 raspberrypi kernel: [  267.299489] RTL871X: nolinked power save leave
May 16 12:00:31 raspberrypi kernel: [  268.615370] RTL871X: nolinked power save enter
May 16 12:00:37 raspberrypi kernel: [  273.935832] ==> rtl8188e_iol_efuse_patch
May 16 12:00:37 raspberrypi kernel: [  274.275742] RTL871X: nolinked power save leave
May 16 12:00:38 raspberrypi kernel: [  275.585368] RTL871X: nolinked power save enter
May 16 12:00:44 raspberrypi kernel: [  280.885825] ==> rtl8188e_iol_efuse_patch
May 16 12:00:44 raspberrypi kernel: [  281.250480] RTL871X: nolinked power save leave
May 16 12:00:45 raspberrypi kernel: [  282.565434] RTL871X: nolinked power save enter
May 16 12:00:47 raspberrypi kernel: [  284.635789] ==> rtl8188e_iol_efuse_patch
May 16 12:00:48 raspberrypi kernel: [  284.971377] RTL871X: nolinked power save leave
May 16 12:00:49 raspberrypi kernel: [  286.285444] RTL871X: nolinked power save enter
May 16 12:00:51 raspberrypi kernel: [  288.315870] ==> rtl8188e_iol_efuse_patch
May 16 12:00:51 raspberrypi kernel: [  288.677814] RTL871X: nolinked power save leave
May 16 12:00:53 raspberrypi kernel: [  289.995476] RTL871X: nolinked power save enter
May 16 12:00:53 raspberrypi kernel: [  290.865926] ==> rtl8188e_iol_efuse_patch
May 16 12:00:54 raspberrypi kernel: [  291.211482] RTL871X: nolinked power save leave
May 16 12:00:55 raspberrypi kernel: [  292.525484] RTL871X: nolinked power save enter
May 16 12:00:55 raspberrypi kernel: [  292.875846] ==> rtl8188e_iol_efuse_patch
May 16 12:00:56 raspberrypi kernel: [  293.201327] RTL871X: nolinked power save leave
May 16 12:00:57 raspberrypi kernel: [  294.515472] RTL871X: nolinked power save enter
May 16 12:00:58 raspberrypi kernel: [  295.025863] ==> rtl8188e_iol_efuse_patch
May 16 12:00:58 raspberrypi kernel: [  295.396402] RTL871X: nolinked power save leave
May 16 12:00:59 raspberrypi kernel: [  296.715495] RTL871X: nolinked power save enter
May 16 12:01:05 raspberrypi kernel: [  302.025974] ==> rtl8188e_iol_efuse_patch
May 16 12:01:05 raspberrypi kernel: [  302.377713] RTL871X: nolinked power save leave
May 16 12:01:05 raspberrypi wpa_supplicant[1784]: wlan0: Failed to initiate AP scan
May 16 12:01:06 raspberrypi wpa_supplicant[1784]: wlan0: Failed to initiate AP scan
May 16 12:01:06 raspberrypi kernel: [  303.685547] RTL871X: nolinked power save enter
May 16 12:01:12 raspberrypi kernel: [  308.986460] ==> rtl8188e_iol_efuse_patch
May 16 12:01:12 raspberrypi kernel: [  309.323838] RTL871X: nolinked power save leave
May 16 12:01:13 raspberrypi kernel: [  310.645522] RTL871X: nolinked power save enter
May 16 12:01:19 raspberrypi kernel: [  315.945939] ==> rtl8188e_iol_efuse_patch
May 16 12:01:19 raspberrypi kernel: [  316.284972] RTL871X: nolinked power save leave
May 16 12:01:20 raspberrypi shutdown[2727]: shutting down for system halt
May 16 12:01:20 raspberrypi kernel: [  317.595533] RTL871X: nolinked power save enter
May 16 12:01:20 raspberrypi init: Switching to runlevel: 0
May 16 12:01:21 raspberrypi avahi-daemon[2245]: Got SIGTERM, quitting.
May 16 12:01:21 raspberrypi avahi-daemon[2245]: avahi-daemon 0.6.31 exiting.
May 16 12:01:22 raspberrypi ifplugd(eth0)[1635]: Exiting.
May 16 12:01:22 raspberrypi ifplugd(wlan0)[1699]: Exiting.

Quelqu'un sait pourquoi ça ne marche pas ? Merci d'avance !

Connectez-vous pour pouvoir poster un message.
Connexion

Pas encore membre ?

Créez un compte en une minute pour profiter pleinement de toutes les fonctionnalités de Zeste de Savoir. Ici, tout est gratuit et sans publicité.
Créer un compte