对没错,写完Surface Go 3的文又来Surface 3这里凑个热闹(
同学的老款苏菲装Linux重获新生!
1 2 3 4
| 4GB RAM,128GB EMMC 英特尔Atom Z8700处理器 4c4t,基频1.6GHz,睿频2.4GHz 最大TDP才2瓦!!!这么低!!!!!
|
“卧槽你的苏菲怎么续航能撑一天?大佬怎么优化的教教我”
“英特尔Atom处理器,tdp两瓦”
“啊那没事了”
但是这东西装好系统之后缺驱动怎么办?
换一个linux-surface内核就行~
按照官方教程走就OK
Debian
1 2 3 4 5 6 7 8 9 10 11 12
| wget -qO - https://raw.githubusercontent.com/linux-surface/linux-surface/master/pkg/keys/surface.asc \ | gpg --dearmor | sudo dd of=/etc/apt/trusted.gpg.d/linux-surface.gpg
echo "deb [arch=amd64] https://pkg.surfacelinux.com/debian release main" \ | sudo tee /etc/apt/sources.list.d/linux-surface.list
sudo apt update
sudo apt install linux-image-surface linux-headers-surface libwacom-surface iptsd
sudo update-grub
|
WiFi驱动:安装firmware-libertas
然后重启系统。(来源)
Arch Linux
加仓库证书
1 2 3 4
| curl -s https://raw.githubusercontent.com/linux-surface/linux-surface/master/pkg/keys/surface.asc \ | sudo pacman-key --add - sudo pacman-key --finger 56C464BAAC421453 sudo pacman-key --lsign-key 56C464BAAC421453
|
在/etc/pacman.conf
中添加仓库
1 2
| [linux-surface] Server = https://pkg.surfacelinux.com/arch/
|
更新源并安装内核和触屏驱动
1 2
| sudo pacman -Syu sudo pacman -S linux-surface linux-surface-headers iptsd
|
更新grub
1
| sudo grub-mkconfig -o /boot/grub/grub.cfg
|