manjaro系统快速搭建与搜狗输入安装方法

时间如果不正常,超正常时间8小时

timedatectl set-local-rtc 1 --adjust-system-clock
timedatectl set-ntp 0

设置官方镜像源

更新镜像 && 更新数据源:

sudo pacman-mirrors -i -c China -m rank

排列源:

sudo pacman-mirrors -g
sudo pacman-optimize && sync (固态硬盘直接忽略)

更新数据库并且升级系统  && 安装必备工具:

sudo pacman -Syyu
sudo pacman -S yay clang emacs vim

添加清华源

打开配置文件

sudo emacs -nw /etc/pacman.conf

在文件末尾添加:

[archlinuxcn]
SigLevel = Optional TrustedOnly
Server = https://mirrors.tuna.tsinghua.edu.cn/archlinuxcn/$arch

导入GPG Key:

yay -Syy && yay -S archlinuxcn-keyring

安装搜狗拼音输入法:

yay -S fcitx-im && yay -S fcitx-configtool
yay -S fcitx-sogoupinyin

添加输入法配置文件:

sudo emacs -nw ~/.xprofile

添加以下内容:

export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export XMODIFIERS="@im=fcitx"

搜狗输入法出现问题, 请删除 .config.....

安装fcitx-qt4就可以成功解决上述问题:

yay -S fcitx-qt4

如果中文乱码,直接安装要中文语言包:

yay -S wqy-microhei

安装开发者基础工具包:

任选一个:

kde:

yay -S latte-dock ipython make cmake codeblocks google-chrome netease-cloud-music gimp blender geogebra krita

xfce:

yay -S ipython make cmake codeblocks google-chrome netease-cloud-music gimp blender geogebra krita

 

你可能感兴趣的:(Linux,desktop)