Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

从零开始的 Manjaro 手记 - 基础环境配置篇 #12

Open
zhangyu921 opened this issue Dec 17, 2019 · 0 comments
Open

从零开始的 Manjaro 手记 - 基础环境配置篇 #12

zhangyu921 opened this issue Dec 17, 2019 · 0 comments
Labels

Comments

@zhangyu921
Copy link
Owner

zhangyu921 commented Dec 17, 2019

此篇介绍 Manjaro 全新安装几乎都要做的配置。记录以备忘,如有更好的方案,还请多多交流~

pacman 换源

pacman 切换中文源非常的简单,上一篇里也有提及,输入下面的代码就可以

sudo pacman-mirrors -c China

添加 archlinuxcn 仓库

# 打开pacman.conf
sudo vim /etc/pacman.conf

# 复制这段,粘贴到文件内
[archlinuxcn]
Server = https://mirrors.tuna.tsinghua.edu.cn/archlinuxcn/$arch

# 顺便编辑的时候把 36行 `#Color` 的注释去掉,pacman 颜色输出

# 安装key 
sudo pacman -Sy archlinuxcn-keyring

# 再执行, 更新软件
sudo pacman -Syu

更多镜像地址 https://github.com/archlinuxcn/mirrorlist-repo

中文支持

不少人应该会和我一样,更习惯使用英文的交互界面,安装的时候用了英文安装,这个时候会碰到中文显示异常的问题。这时候就需要给系统添加中文支持;

编辑 /etc/locale.gen

sudo vim /etc/locale.gen

# 取消注释,根据需要取消注释其他的语言或编码
zh_CN.UTF-8 UTF-8

# 执行 locale-gen
locale-gen

除了添加了中文支持外,还需要有中文字体才可以;

简体中文用户安装思源黑体简体中文包adobe-source-han-sans-cn-fonts、adobe-source-han-serif-cn-fonts或者noto-fonts-sc

建议简体中文用户只安装简体中文字体包,可以有效避免出现日文异形字体的情况(日文也可以正常显示)。

中文输入法

我几年前入坑了 rime 输入法,实乃一见倾心。试用了 fcitx 和 ibus 两个版本都试用过,还是 fcitx 似乎好用一点

sudo pacman -S fcitx fcitx-im fcitx-rime fcitx-configtool

安装过后记得添加开机启动,在 i3 中,编辑 ~/.i3/config 添加:

exec --no-startup-id fcitx

这里最好重启一下 reboot

最后英文安装用户需要打开 fcitx-configtool 添加中文键盘, 再添加Rime输入法就可以了,中文安装应该默认就是中文键盘,直接添加 Rime。默认 Ctrl + Space 切换输入法

注意英文安装用户需要先完成上一步中文支持才有中文键盘选项。

2019-12-18-000509_932x472_scrot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant