Thank you so muchJayM wrote: Tue Nov 17, 2020 2:01 amI bet Huckleberry Finn will be able to suggest some things when he comes online. He's pretty good with wifi and networking issues, among other things.

Yep.AVLinux wrote: Tue Nov 17, 2020 1:58 am...then the WiFi wouldn't work at all either on the running system or the Snapshot. The WiFi works perfectly running the system with the 5.9.1 kernel, ... it seems to me that there are either conflicting modules or something is preventing the interface from coming up at boot.
On the other hand, same question comes to mind: then why doesn't that conflicting one (if there's) doesn't conflict/get loaded on the installed system but on live-session only ? :)
- There seems to be no candidate to be conflicting (other than iwlwifi , though that chip number (8086:4222) is not in the list of its supported devices). You can try blacklisting that.
- At worst case, you can try putting a .sh in Autostart Applications list (on the installed system, then take a snapshot, or on live-session directly, then Remaster), simply :
(maybe with sleep ... between )Code: Select all
sudo modprobe -r iwl3945 ; sudo modprobe iwl3945
- Alternatively (though no such issue on the installed system) this works about disconnection issues, (again you can directly do that on live-session, then remaster if you like)
(... or even both: .sh at startup and this .conf in etc... )Code: Select all
echo "options iwl3945 disable_hw_scan=0" | sudo tee -a /etc/modprobe.d/iwl3945.conf