安装双系统遇到的的问题
最近想在ubuntu 下跑项目代码,因此在笔记本上安装啦双系统,记录下一路上遇到的问题。
笔记本参数:
Lenovo 拯救者Y7000,
CPU: i5,
显卡: NVIDIA 1050 ti
信息来源:
https://blog.csdn.net/nurke/article/details/76465968
https://blog.csdn.net/u010372269/article/details/81604153
Ubuntu 登录界面卡住
问题:ubuntu 登录界面输入用户名和密码后,登录一直卡住。
解决:开机引导进入grub界面后,按e进行编辑,找到“quiet splash”,在后面添加“monodeset”
这段描述的作用是禁用独立显卡。现在的intel CPU是自带核心显卡的,ubuntu系统使用核心显卡已经足够。NVIDIA显卡由于与Linux系统兼容性差会造成很多问题。
登录之后用vim编辑grub文件:
sudo gedit /etc/default/grub
找到quiet splash 在后面添加nomodeset,即可使得每次启动时均禁用N卡
无线网络不能使用
登录系统后, 发现无线网卡不能使用。
网上的解决办法是重新安装无线网卡的驱动。我的网卡是8822be.
sudo apt update
sudo apt install git
git clone https://github.com/rtlwifi-linux/rtlwifi-next
cd rtlwifi-next
make
sudo make install
sudo modprobe rtl8822be
在执行make的时候报错。
/home/zhoudong/rtlwifi-next/base.c:460:2: error: implicit declaration of function ‘setup_timer’; did you mean ‘sk_stop_timer’? [-Werror=implicit-function-declaration]
setup_timer(&rtlpriv->works.watchdog_timer,
^~~~~~~~~~~
sk_stop_timer
cc1: some warnings being treated as errors
scripts/Makefile.build:332: recipe for target '/home/zhoudong/rtlwifi-next/base.o' failed
make[2]: *** [/home/zhoudong/rtlwifi-next/base.o] Error 1
Makefile:1552: recipe for target '_module_/home/zhoudong/rtlwifi-next' failed
make[1]: *** [_module_/home/zhoudong/rtlwifi-next] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-4.15.0-29-generic'
Makefile:100: recipe for target 'all' failed
make: *** [all] Error 2
系统内核版本4.15已经支持这个无线网卡驱动了,这里也不用编译。
查看系统是否加载rtl8822be的模块。
lsmod | grep 8822be
发现已经加载r8822be模块。
r8822be 856064 0
mac80211 778240 1 r8822be
cfg80211 622592 2 mac80211,r8822be
如果没有加载的话,使用下面的命令加载。
sudo modprobe r8822be
到这里有点疑惑了,无线网卡的驱动也装了,为什么还是不能扫描网络呢?
最后发现wifi是被禁止了。
解决办法:
1 在终端输入:
rfkill list all
这个命令的意思是查看当前wifi开关的状态,有可能是软件block,也有可能是硬件block。
2 使用命令全部解锁。
rfkill unblock all
3 进入/etc/modprobe.d/文件夹下创建.conf文件,把影响无线wifi开关的“东西”加入黑名单。
在部分联想电脑上是ideapad_laptop
sudo gedit /etc/modprobe.d/ideapad.conf
打开文件后在第一行输入
blacklist ideapad_laptop
保存并关闭后再执行sudo modprobe -r ideapad_laptop
右上角的wifi就可以使用了。