原创文章,转载请注明出处
https://qiedd.com/

分辨率识别没有问题,高刷可以开启

配置完成后看起来是没什么问题的,至于为什么选Lightdm和Xfce是因为它们占用低,曾经尝试过Sddm+Kde的方案,很卡,很卡…….

油管看视频720p不怎么卡,但是1080p会卡,b站1080p也会卡,720p没问题

一、刷入ArchLinuxArm

感谢这位大佬写的教程:https://github.com/cattyhouse/N1-install

可以在这个基础上做一些变动,将Networkd替换为NetworkManager

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
#安装NetworkManager
pacman -S networkmanager
#设置systemd服务
systemctl enable NetworkManager
systemctl start NetworkManager
#安装NetworkManager pacman -S networkmanager #设置systemd服务 systemctl enable NetworkManager systemctl start NetworkManager
#安装NetworkManager
pacman -S networkmanager

#设置systemd服务
systemctl enable NetworkManager
systemctl start NetworkManager

更换为国内源

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
#编辑mirrorlist
vim /etc/pacman.d/mirrorlist
#阿里源
Server = https://mirrors.aliyun.com/archlinuxarm/$arch/$repo
#清华源
Server = https://mirrors.tuna.tsinghua.edu.cn/archlinuxarm/$arch/$repo
#编辑mirrorlist vim /etc/pacman.d/mirrorlist #阿里源 Server = https://mirrors.aliyun.com/archlinuxarm/$arch/$repo #清华源 Server = https://mirrors.tuna.tsinghua.edu.cn/archlinuxarm/$arch/$repo
#编辑mirrorlist
vim /etc/pacman.d/mirrorlist

#阿里源
Server = https://mirrors.aliyun.com/archlinuxarm/$arch/$repo

#清华源
Server = https://mirrors.tuna.tsinghua.edu.cn/archlinuxarm/$arch/$repo

二、安装桌面

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
#安装驱动
pacman -S xorg-server xf86-video-fbdev xorg-xinit
#安装xorg
pacman -S xorg
#安装xfce
pacman -S xfce4 xfce4-goodies
#安装回收站
pacman -S gvfs
#安装字体
pacman -S ttf-dejavu wqy-bitmapfont wqy-microhei wqy-zenhei noto-fonts noto-fonts-emoji
#安装显示管理器
pacman -S lightdm lightdm-gtk-greeter lightdm-gtk-greeter-settings
#开机启动
systemctl enable lightdm
#添加用户
useradd -m -g users -s /bin/bash username
#修改用户密码
passwd username
#安装sudo
pacman -S sudo
#给用户管理员权限
vim /etc/sudoers
username ALL=(ALL) ALL
#配置Locale,加在前面即可
vim /etc/locale.gen
--------------------------------
en_US.UTF-8 UTF-8
zh_CN.UTF-8 UTF-8
zh_TW.UTF-8 UTF-8
#重启
reboot
#安装驱动 pacman -S xorg-server xf86-video-fbdev xorg-xinit #安装xorg pacman -S xorg #安装xfce pacman -S xfce4 xfce4-goodies #安装回收站 pacman -S gvfs #安装字体 pacman -S ttf-dejavu wqy-bitmapfont wqy-microhei wqy-zenhei noto-fonts noto-fonts-emoji #安装显示管理器 pacman -S lightdm lightdm-gtk-greeter lightdm-gtk-greeter-settings #开机启动 systemctl enable lightdm #添加用户 useradd -m -g users -s /bin/bash username #修改用户密码 passwd username #安装sudo pacman -S sudo #给用户管理员权限 vim /etc/sudoers username ALL=(ALL) ALL #配置Locale,加在前面即可 vim /etc/locale.gen -------------------------------- en_US.UTF-8 UTF-8 zh_CN.UTF-8 UTF-8 zh_TW.UTF-8 UTF-8 #重启 reboot
#安装驱动
pacman -S xorg-server xf86-video-fbdev xorg-xinit 

#安装xorg
pacman -S xorg

#安装xfce
pacman -S xfce4 xfce4-goodies

#安装回收站
pacman -S gvfs

#安装字体
pacman -S ttf-dejavu wqy-bitmapfont wqy-microhei wqy-zenhei noto-fonts noto-fonts-emoji

#安装显示管理器
pacman -S lightdm lightdm-gtk-greeter lightdm-gtk-greeter-settings

#开机启动
systemctl enable lightdm

#添加用户
useradd -m -g users -s /bin/bash username

#修改用户密码
passwd username

#安装sudo
pacman -S sudo

#给用户管理员权限
vim /etc/sudoers

username ALL=(ALL) ALL

#配置Locale,加在前面即可
vim /etc/locale.gen
--------------------------------
en_US.UTF-8 UTF-8
zh_CN.UTF-8 UTF-8
zh_TW.UTF-8 UTF-8

#重启
reboot


5 条评论

justin · 2022年4月2日 上午11:03

你好!
我按照文档安装好archlinux后,使用lxdm,显示出的图形只有左上角一小块.
启动lxde不能进入图形界面.
启动xfce也是不能进入.
请问要额外配置什么呢?

那厮搭客 · 2023年11月5日 下午12:29

哥们儿,目录/etc/X11/xorg.conf.d的所有文件能否给一份?我安装后startxfce4起不来。谢谢!

发表回复

Avatar placeholder

您的邮箱地址不会被公开。 必填项已用 * 标注

这个站点使用 Akismet 来减少垃圾评论。了解你的评论数据如何被处理