so basically its a common bug where the computer goes to sleep and when its turned on it fails to enable the network management
an easy fix is
Code:
sudo service network-manager stop
then to move the config
Code:
sudo mv /var/lib/NetworkManager/NetworkManager.state /var/lib/NetworkManager/NetworkManager.moved
then to renable the network management generating a new config file
Code:
sudo service network-manager start
this becomes extremly annoying as it hapens to me on a daily basis
so i thought how could i put this into a script where it would work easily.
ive tried a shell script with each command after each but that does not work
any ideas on how to fix this or help with writting a script