刚买了一台全新的 MSI GE66 Raider,经过 10 多个小时的连续研究,我终于决定在这里问一个问题。笔记本电脑自带 Windows 10,运行完美,但在安装 Ubuntu 20.04 时:
- 某些图形驱动程序不工作(无法使用两个屏幕)
- 蓝牙工作不正常
- 最重要的是WiFi 一直无法使用。我只能通过 USB 网络共享访问互联网
首先,我想知道,如果以下页面显示没有适用于 Ubuntu 的驱动程序,是否足以让我们认为 Ubuntu 不支持该笔记本电脑 https://latam.msi.com/Laptop/support/GE66-Raider-10SF
其次,我尝试过的所有操作以及常用命令的输出列表
尝试查找给定的控制器并下载相应的驱动程序
lspci
00:1b.0 PCI bridge: Intel Corporation Comet Lake PCI Express Root Port #17 (rev f0)
00:1d.0 PCI bridge: Intel Corporation Comet Lake PCI Express Root Port #9 (rev f0)
00:1d.4 PCI bridge: Intel Corporation Device 06b4 (rev f0)
00:1d.6 PCI bridge: Intel Corporation Device 06b6 (rev f0)
00:1d.7 PCI bridge: Intel Corporation Device 06b7 (rev f0)
00:1f.0 ISA bridge: Intel Corporation Comet Lake LPC Controller
00:1f.4 SMBus: Intel Corporation Comet Lake PCH SMBus Controller
00:1f.5 Serial bus controller [0c80]: Intel Corporation Comet Lake PCH SPI Controller
01:00.0 VGA compatible controller: NVIDIA Corporation Device 249d (rev a1)
01:00.1 Audio device: NVIDIA Corporation Device 228b (rev a1)
02:00.0 USB controller: ASMedia Technology Inc. Device 3242
03:00.0 Non-Volatile memory controller: Samsung Electronics Co Ltd NVMe SSD Controller SM981/PM981/PM983
04:00.0 Network controller: Intel Corporation Device 2725 (rev 1a)
05:00.0 Ethernet controller: Intel Corporation Device 3101 (rev 03)
06:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS525A PCI Express Card Reader (rev 01)
///
sudo lshw -C network
*-network UNCLAIMED
description: Network controller
product: Intel Corporation
vendor: Intel Corporation
physical id: 0
bus info: pci@0000:04:00.0
version: 1a
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix cap_list
configuration: latency=0
resources: memory:c4500000-c4503fff
尝试降级内核
安装早期版本的 Ubuntu
已重新安装多次,安全启动和快速启动均已关闭
还有很多很多。
任何帮助都将不胜感激!:D
答案1
我在 MSI GE66 上安装 Ubuntu 20.04 时遇到了类似的问题。我解决了一些问题。
WIFI问题[已解决]:https://askubuntu.com/a/1324339/1029809
蓝牙问题[未解决]:运行 Ubuntu 20.10 的 MSI GE66 笔记本电脑上的蓝牙快速开启和关闭,占用了 100% 的 CPU
多显示器:您需要安装 NVIDIA 驱动程序来支持外接显示器。您可以运行以下命令来执行此操作:sudo ubuntu-drivers autoinstall
。如果此操作不起作用,则需要指定要安装的驱动程序:sudo apt install nvidia-driver-xxx
。
答案2
日期:2021年12月10日,2021年12月10日
抱歉,我的语法和拼写不好,我有阅读障碍
只是想分享我20天来解决这个问题的尝试。
我有 MSI GE-66 11UG,这意味着我有 wifi 适配器 AX Intel Corporation Wi-Fi 6 AX210/AX211/AX411。在 WIFI 设置中“未找到 WIFI 适配器”,有时我的鼠标垫不工作。我正在分享我的解决方案。
我不确定究竟需要哪些最少的步骤才能解决这个问题,但我只想与你们分享我解决这个问题所采取的所有步骤。
您需要 Ubuntu 21.04 和内核 5.11.0-41-generic,午餐一些 gits。
一步步解决
0)通过在终端中输入以下几行来检查你的内核和 Ubuntu 版本:对于 Ubuntu 版本,在终端中运行:
lsb_release -a
如果您拥有正确的 Ubuntu 版本,则输出除外:没有可用的 LSB 模块。 分销商 ID:Ubuntu 描述:Ubuntu 21.04 发布:21.04 代号:hirsute 如果可以,跳过步骤 1
对于内核版本,请在终端中运行:
uname -r
如果您拥有正确的内核版本,则预期结果为:5.11.0-41-generic **如果符合预期,请跳过步骤 2 ****顺便说一下,您可以使用 5.11 中的另一个内核跳过步骤 2。(某些东西)但它在 5.12 中肯定不起作用。(某些东西)
对于 Ubuntu 21.04 的更新:我关注https://www.how2shout.com/linux/upgrade-ubuntu-20-04-to-ubuntu-21-04-using-terminal-or-gui
获取内核 5.11.0-41-generic:在终端运行以下命令:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install update-manager-core
cd /tmp
wget -c https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.11/amd64/linux-headers-5.11.0-051100-generic_5.11.0-051100.202102142330_amd64.deb
wget -c https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.11/amd64/linux-headers-5.11.0-051100_5.11.0-051100.202102142330_all.deb
wget -c https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.11/amd64/linux-image-unsigned-5.11.0-051100-generic_5.11.0-051100.202102142330_amd64.deb
wget -c https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.11/amd64/linux-modules-5.11.0-051100-generic_5.11.0-051100.202102142330_amd64.deb
sudo dpkg -i *.deb
sudo reboot
重启时请注意,您可能需要选择高级启动选项并手动选择 5.11 内核,因为有时机器会自动选择其他内核
重启后确认您处于步骤 0 中提到的正确版本 !!!!!
- 在终端中运行:
sudo apt update
sudo apt-get install -y git
sudo apt-get install -y build-essential
git clone git://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git
cd linux-firmware
sudo cp iwlwifi-* /lib/firmware/
cd ..
git clone https://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/backport-iwlwifi.git
cd backport-iwlwifi
make defconfig-iwlwifi-public
make -j4
sudo make install
sudo update-initramfs -u
sudo reboot
步骤 3 的终端命令取自此处:MSI GE66 笔记本电脑上安装全新 Ubuntu 20.04 后未找到 WiFi 适配器,且出现其他奇怪行为
如果它对你有用,那就太好了!
如果不继续执行这些附加步骤:
- 在终端中运行:
sudo mv /usr/lib/firmware/iwlwifi-ty-a0-gf-a0.pnvm /usr/lib/firmware/iwlwifi-ty-a0-gf-a0.bak
sudo reboot
如果它不起作用,请继续执行以下附加步骤:
5)在此信息网站:https://www.intel.com/content/www/us/en/support/articles/000005511/wireless.html
下载“Intel® Wi-Fi 6 AX210 160MHz”固件,然后右键单击它并单击 EXTRACT HERE 进行提取,然后双击解压的文件夹并在终端中打开该文件夹,然后在终端中写入此内容(确保您在解压的文件夹内)
cp iwlwifi-ty-a0-gf-a0-59.ucode /lib/firmware/
sudo reboot
经过所有这些过程后,您的计算机 wifi 适配器和鼠标 ped 应该可以被 Ubuntu 检测到,祝您好运!
如果您的 GPU 驱动程序也存在问题,请关注https://phoenixnap.com/kb/install-nvidia-drivers-ubuntu 您需要通过链接中的“使用 GUI 安装 Nvidia 驱动程序”部分选择“nvidia driver metapeckage from nvidia-driver-470”