华为matebook 13 安装Debian

华为 matebook 13 网络安装 Debian 10 及配置
本人配置: Huawei Matebook 13 i5 集显版

网卡:Intel® Wireless-AC 9260
声卡:Realtek ALC256 耳机插入不自动识别,需要配置
触摸板: ELAN962C为报错, 问题定位是kernel中i2c_replace函数后面会解决. .

不能用功能: 指纹识别,一碰传

一, 准备安装

1.下载Debian buster(只有buster之后的内核支持这个网卡)

https://mirrors.tuna.tsinghua.edu.cn/debian-cd/10.2.0/amd64/iso-cd/debian-10.2.0-amd64-netinst.iso

2.下载网卡驱动

https://mirrors.tuna.tsinghua.edu.cn/debian/pool/non-free/f/firmware-nonfree/firmware-iwlwifi_20190717-2_all.deb

3.U盘制作(全部格式化为FAT32)

第一个u盘:打开Debian buster镜像文件,将里面的内容全部拷贝到U盘里

第二个u盘:将网卡驱动包firmware-iwlwifi_xxxx_all.deb拷贝到u盘的firmware文件夹里

4.开始安装:

1).打开BIOS,关闭Security Boot
2).插入type-c拓展坞,将两个U盘同时插入,再插个鼠标
3).开始进入安装界面一路yes

二, 基本配置

1.耳机插入识别

vim /etc/modprobe.d/alsa-base.conf
添加下面这句
options snd-hda-intel model=dell-headset-multi

2.触摸板dmesg报i2c_hid_get_input: incomplete report (14/65535)错误:

方法1:直接使用博主自己定制的matebook 13专属内核(不是这机器千万不要用)
apt install firmware-linux build-essential
再下载(kernel 和 其header):
https://github.com/Error1x/Self_resources/blob/master/Matebook13/linux-image-5.0.6_amd64.deb
https://github.com/Error1x/Self_resources/blob/master/Matebook13/linux-headers-5.0.6_amd64.deb
然后 dpkg -i xxx.deb 把这俩包安装上重启

方法2:参考 https://blog.csdn.net/cg751943651/article/details/88727295

3.多指触控设置
https://blog.csdn.net/cg751943651/article/details/88555673

4.笔记本续航配置(特别重要)
#apt install tlp
#cp tlp(续航特久的文档.下面可下载) /etc/default/tlp
TLP续航配置:
https://github.com/Error1x/Self_resources/blob/master/Matebook13/tlp

5.合盖睡眠中断

在关闭盖子休眠的时候,莫名其妙会自动启动
创建 #/etc/systemd/system/disable-USB-wakeup.service
写入:
[Unit]
Description=Disable USB wakeup triggers in /proc/acpi/wakeup

[Service]
Type=oneshot
ExecStart=/bin/sh -c " echo XHC > /proc/acpi/wakeup"
ExecStop=/bin/sh -c “echo XHC > /proc/acpi/wakeup”
RemainAfterExit=yes

[Install]
WantedBy=multi-user.target

再执行
sudo systemctl enable disable-USB-wakeup.service
sudo systemctl start disable-USB-wakeup.service

6.HiDPI字体缩放

gnome环境只有100% 和 200%的选项, 在terminal里输入
wayland下:
gsettings set org.gnome.mutter experimental-features “[‘scale-monitor-framebuffer’]”
xorg下:
gsettings set org.gnome.mutter experimental-features “[‘x11-randr-fractional-scaling’]”
然后注销重新登陆, 可以设置到150%

-------------结束---------------
ref: https://bbs.archlinux.org/viewtopic.php?id=204127
https://www.linuxuprising.com/2019/04/how-to-enable-hidpi-fractional-scaling.html
*附录
博主自己精简的内核配置:
https://github.com/Error1x/Self_resources/blob/master/Matebook13/config_WRT_WX9
Ubuntu 18.10内核配置文件:
https://github.com/Error1x/Self_resources/blob/master/Matebook13/config-4.18.0-16-generic

你可能感兴趣的:(华为matebook 13 安装Debian)