|
2014-02-05
, 09:03
|
|
Posts: 857 |
Thanked: 1,206 times |
Joined on Dec 2009
@ Chertsey in the Thames, United Kingdom
|
#22
|
The Following User Says Thank You to bockersjv For This Useful Post: | ||
|
2014-02-05
, 18:17
|
|
Posts: 28 |
Thanked: 7 times |
Joined on Jan 2014
@ Netherlands
|
#23
|
|
2014-02-05
, 21:28
|
|
Posts: 28 |
Thanked: 7 times |
Joined on Jan 2014
@ Netherlands
|
#24
|
The Following User Says Thank You to richhanz For This Useful Post: | ||
|
2014-02-07
, 11:49
|
|
Posts: 5,339 |
Thanked: 4,133 times |
Joined on Jan 2010
@ Israel
|
#25
|
The Following User Says Thank You to Schturman For This Useful Post: | ||
|
2014-02-07
, 19:28
|
|
Posts: 28 |
Thanked: 7 times |
Joined on Jan 2014
@ Netherlands
|
#26
|
I created rpm package based on your instaruction
https://openrepos.net/content/schturman/wlan-reset
#!/bin/sh DATE_TIME=`date +%Y-%m-%d_%H-%M-%S` LOG_PATH=/var/log LOG_FILE=wpa_supplicant.log OLD_LOG=$LOG_PATH/$LOG_FILE BAK_LOG=$LOG_PATH/$LOG_FILE.$DATE_TIME rmmod wlan # move the log file with a timestamp mv $OLD_LOG $BAK_LOG sleep 20 modprobe wlan sleep 20 # roll over the log file wpa_cli relog >> $BAK_LOG 2>&1
PS. why it should be 20 sec ?
The Following User Says Thank You to richhanz For This Useful Post: | ||
|
2014-02-07
, 20:13
|
|
Posts: 5,339 |
Thanked: 4,133 times |
Joined on Jan 2010
@ Israel
|
#27
|
|
2014-02-07
, 21:14
|
|
Posts: 28 |
Thanked: 7 times |
Joined on Jan 2014
@ Netherlands
|
#28
|
Selected interface 'wlan0' OK
|
2014-02-07
, 22:23
|
|
Posts: 5,339 |
Thanked: 4,133 times |
Joined on Jan 2010
@ Israel
|
#29
|
|
2014-02-07
, 22:40
|
|
Posts: 28 |
Thanked: 7 times |
Joined on Jan 2014
@ Netherlands
|
#30
|
wpa_cli log_level DEBUG 1
The Following User Says Thank You to richhanz For This Useful Post: | ||
Running this script as devel-su
It seems that the Jolla has the most difficulties with switching from one to another WiFi network.
Funny thing is after above script switching goes better and indication is off with a good WiFi connection:
Last edited by richhanz; 2014-02-04 at 19:02. Reason: Info added