联想拯救者安装ubuntu无法连接网络

原因:联想网卡驱动与ubuntu驱动冲突,联想的优先级排在第一且无法硬件开启,高于ubuntu的优先级
解决方案:

第一:移除联想的驱动优先级

 sudo modprobe -r ideapad_laptop

第二:解锁所有驱动

 rfkill unblock all

第三部:加入开机自动执行

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
echo "root密码" |sudo modprobe -r ideapad_laptop
exit 0

第四步:root模式下给权限

chmod +x /etc/rc.local

ok了

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容