修改软件源切换方法,补充中文输入法安装和配置方法。

Signed-off-by: ithink.chan <chenyang@autoai.com>
This commit is contained in:
ithink.chan 2019-07-04 12:06:49 +08:00
parent 002117084b
commit be55267f91
1 changed files with 42 additions and 5 deletions

View File

@ -2,11 +2,18 @@
## 使用中科大软件源 ## 使用中科大软件源
编辑 /etc/pacmand.d/mirrorlist 增加如下内容: *注:该操作会修改 /etc/pacmand.d/mirrorlist 文件,使用前请先备份。*
生成可用中国镜像站列表:
```sh ```sh
## Country : China sudo pacman-mirrors -i -c China -m rank
Server = https://mirrors.ustc.edu.cn/manjaro/stable/$repo/$arch ```
勾选 <http://mirrors.ustc.edu.cn/manjaro/> ,然后按 OK 键两次。最后刷新缓存:
```sh
sudo pacman -Syy
``` ```
## 使用 AUR 镜像 ## 使用 AUR 镜像
@ -100,13 +107,43 @@ locale-gen "en_US.UTF-8"
pacman -S base-devel git gcc make python2 python3 go arm-none-eabi-gcc arm-none-eabi-gdb arm-none-eabi-newlib tmux openssh samba ntfs-3g vim bzip2 coreutils ncurses xz pacman -S base-devel git gcc make python2 python3 go arm-none-eabi-gcc arm-none-eabi-gdb arm-none-eabi-newlib tmux openssh samba ntfs-3g vim bzip2 coreutils ncurses xz
``` ```
安装防火墙 另外需要安装 flex、bison、libncurses5-dev 等。
### 安装防火墙
```sh ```sh
pacman -S firewalld pacman -S firewalld
``` ```
另外需要安装 flex、bison、libncurses5-dev 等。 ### 安装 fcitx
输入以下命令安装 fcitx-im 默认安装全部软件,并安装 google 拼音输入法:
```sh
pacman -S fcitx-im fcitx-configtool fcitx-googlepinyin
```
默认会自动运行 fictx 程序,如果该程序没有自动启动,则运行下列命令:
```sh
cp /etc/xdg/autostart/fcitx-autostart.desktop ~/.config/autostart/
```
添加如下代码到 ~/.xprofile如果该文件不存在则创建一份。
```sh
export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export XMODIFIERS=@im=fcitx
```
之后运行 fictx 诊断程序,如果诊断错误则按提示进行修正,如果诊断没有发现问题则重启即可。
```sh
fcitx-diagnose
```
默认通过 ctrl+space 来切换输入法。
## VMTools ## VMTools