is that an official stretch installation?
I ask because a file:
Code: Select all
/lib/udev/rules.d/75-persistent-net-generator.rules
exists but should not be there any longer.
there appears a strange error message
Code: Select all
unable to create temporary db file '/run/udev/data/n3.tmp': Permission denied
may be some system relevant things have been altered manually?
last but not least you wrote:
/etc/udev/rules.d/72-wlan-geo-dependent.rules:
Code: Select all
ACTION=="add", SUBSYSTEM=="net", SUBSYSTEMS=="sdio", KERNELS=="mmc1:0001:1", NAME="wlan0"
#ACTION=="add", SUBSYSTEM=="net", SUBSYSTEMS=="usb", KERNELS=="1-1.2", NAME="wlan1"
ACTION=="add", SUBSYSTEM=="net", SUBSYSTEMS=="usb", KERNELS=="1-1.4", NAME="wlan1"
#ACTION=="add", SUBSYSTEM=="net", SUBSYSTEMS=="usb", KERNELS=="1-1.3", NAME="wlan3"
#ACTION=="add", SUBSYSTEM=="net", SUBSYSTEMS=="usb", KERNELS=="1-1.5", NAME="wlan4"
please do not do that. Leave all lines intact (i.e. do not encomment any lines). But you are allowed to exchange the names of the interfaces.
If you use only one additional dongle consider to apply
Code: Select all
ACTION=="add", SUBSYSTEM=="net", SUBSYSTEMS=="sdio", KERNELS=="mmc1:0001:1", NAME="wlan0"
ACTION=="add", SUBSYSTEM=="net", SUBSYSTEMS=="usb", KERNELS=="1-1.2", NAME="wlan1"
ACTION=="add", SUBSYSTEM=="net", SUBSYSTEMS=="usb", KERNELS=="1-1.4", NAME="wlan1"
ACTION=="add", SUBSYSTEM=="net", SUBSYSTEMS=="usb", KERNELS=="1-1.3", NAME="wlan1"
ACTION=="add", SUBSYSTEM=="net", SUBSYSTEMS=="usb", KERNELS=="1-1.5", NAME="wlan1"
the additional dongle is named wlan1 then no matter where it is placed.
I added this section
here