今天重启ubuntu电脑出现了网络无法连接的现象,打开设置-》网络出现 系统的网络服务与此版本的网络管理器不兼容的问题,尝试网上的修改方案
First open Terminal and log in as root.
# su
After that go the correct folder.
# cd /etc/NetworkManager/system-connections/
Now take a look at the content of this folder. If you had a VPN connection e.g. there must be a file with the name of that connection.
# ls -la
Now you can remove that file or you can move it to another folder (so you can set it back if this solution does not work for your problem).
To move the file to your personal folder use the following command:
# mv <filename> /home/<username>/ #username是你的用户名
该部分<filename> 本人pc电脑下包含两个文件 DIGITAL Rigol
Now the only thing left is starting the Network Manager:
# NetworkManager
按照网上的修改方案还是没法联网,我尝试的将两个文件放回原先位置, mv /home/<username>/ DIGITAL /etc/NetworkManager/system-connections , mv /home/<username>/Rigol /etc/NetworkManager/system-connections
然后重新运行 NetworkManager ,就可以上网了。
问题解决的很神奇,就是将两个文件移动到两一个文件夹后执行NetworkManager,然后将移动的文件接着移动回到原处,执行 NetworkManager,问题就解决了!
备注:执行NetworkManager是在root权限下,在/etc/NetworkManager/system-connections目录下