manjaro随笔
manjaro 随笔
安装时选择btrfs
文件系统可瞬间完成快照
- 换最近的镜像源
1 | sudo pacman-mirrors --geoip && sudo pacman -Syy |
- 添加 archlinuxcn 的清华镜像源
1 | echo -e '[archlinuxcn]\nServer = https://mirrors.tuna.tsinghua.edu.cn/archlinuxcn/$arch' | sudo tee -a /etc/pacman.conf && sudo pacman -Sy --noconfirm archlinuxcn-keyring |
- 自动快照,然后升级系统(当系统发生故障时,运行
sudo timeshift --restore
并删除该软件包,直到问题解决)
1 | pamac build --no-confirm autoupgrade |
- 提权免密(可选, 类似 windows 的 UAC 不弹窗)
1 | pamac build --no-confirm nopasswd |
- 安装中文输入法(需要选中含有
简体中文
可选依赖, 注销或重启后生效)
1 | pamac install --no-upgrade manjaro-asian-input-support-fcitx5 |
- 修正配置 Noto Sans CJK 避免中文显示为异体(日文)字形
1 | echo '<?xml version="1.0"?> |
- 更新并重启
1 | pamac update --no-confirm && reboot |