I was trying to improve the wifi signal range, but when I executed the command sudo modprobe -rv rtl8723be
my wifi stopped working and I cannot do anything.
How I do reset the config or rollback this changes?
I was trying to improve the wifi signal range, but when I executed the command sudo modprobe -rv rtl8723be
my wifi stopped working and I cannot do anything.
How I do reset the config or rollback this changes?
The command sudo modprobe -rv rtl8723be
removed the module from the running kernel (that's what the -r
option does - it's short for --remove
).
This doesn't alter any configuration, so the driver will be inserted again on the next boot. To insert it manually, run sudo modprobe rtl8723be
(without the -r
option). You don't need the -v
option; it only makes the command's output more verbose. Also see man modprobe for more information.
cat wireless-info.txt | nc termbin.com 9999
and edit the question to add the URL. You have a messed up conf file somewhere – Jeremy31 Jul 08 '18 at 21:51terminal
, what doesmodinfo rtl8723be
show? – heynnema Jul 09 '18 at 01:12fatal, you can not insert rtl8723be
– Jeremy31 Jul 09 '18 at 21:14