前言
我
Win更新又又又炸了,又又又换到了Arch Linux
安装遇到的问题
额外安装的包
pacman -S intel-ucode efibootmgr networkmanager network-manager-applet dialog wireless_tools wpa_supplicant os-prober mtools dosfstools ntfs-3g base-devel linux-headers reflector git sudo vim
多系统
pacman -S os-prober #安装
echo "GRUB_DISABLE_OS_PROBER=false" >> /etc/default/grub #启用os-prober
Sudo
useradd -m laoxong # 新建用户 laoxong
passwd laoxong #修改密码
vim /etc/sudoers #编辑sudo配置文件
添加一行:
laoxong ALL=(ALL) ALL
安装完
Pacman使用
安装
pacman -S 软件包名1 软件包名2 ...
pacman -U 包文件
卸载
pacman -R 软件包名 #卸载一个包,保留其全部已经安装的依赖关系
pacman -Rs 软件包名 #删除一个包,以及其不被其他包所需要的依赖项
升级软件包(系统?)
pacman -Syyu
启用网络
systemctl enable systemd-resolved.service
systemctl enable systemd-resolved.service
vim /etc/resolv.conf #修改DNS
如果没有安装那几个包
dhcpcd 网卡
安装KDE
pacman -S xorg plasma plasma-wayland-session kde-applications
systemctl enable sddm.service
systemctl enable NetworkManager.service
然后重启即可
yay
添加archlinuxcn源,编辑/etc/pacman.conf
添加
[archlinuxcn]
#The Chinese Arch Linux communities packages.
SigLevel = Optional TrustAll
Server = https://mirrors.tuna.tsinghua.edu.cn/archlinuxcn/$arch
随后sudo pacman -S yay
即可
paru
sudo pacman -S paru
安装中文字体
sudo pacman -S wqy-microhei
#或
sudo pacman -S adobe-source-han-sans-cn-fonts
中文输入法(KDE)
sudo pacman -S fcitx-im fcitx-configtool fcitx-googlepinyin #安装输入法
vim ~/.xprofile #添加配置
内容:
export LANG=zh_CN.UTF-8
export LC_ALL=zh_CN.UTF-8
export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export XMODIFIERS="@im=fcitx"
vim ~/.pam_environment
内容:
GTK_IM_MODULE=fcitx
QT_IM_MODULE=fcitx
XMODIFIERS=@im=fcitx
带徽标的系统信息显示
输入法配置中添加Google Pinyin
即可
安装neofetch
sudo pacman -S neofetch
卡磁盘检测
systemd-analyze blame
就知道谁卡住你了
NTFS挂载只读
报错:
The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Falling back to read-only mount because the NTFS partition is in an
unsafe state. Please resume and shutdown Windows fully (no hibernation
or fast restarting.)
执行:
ntfsfix 分区
参考
https://linux.cn/article-13099-1.html