修改软件源切换方法,补充中文输入法安装和配置方法。
Signed-off-by: ithink.chan <chenyang@autoai.com>
This commit is contained in:
parent
002117084b
commit
be55267f91
|
@ -2,11 +2,18 @@
|
|||
|
||||
## 使用中科大软件源
|
||||
|
||||
编辑 /etc/pacmand.d/mirrorlist 增加如下内容:
|
||||
*注:该操作会修改 /etc/pacmand.d/mirrorlist 文件,使用前请先备份。*
|
||||
|
||||
生成可用中国镜像站列表:
|
||||
|
||||
```sh
|
||||
## Country : China
|
||||
Server = https://mirrors.ustc.edu.cn/manjaro/stable/$repo/$arch
|
||||
sudo pacman-mirrors -i -c China -m rank
|
||||
```
|
||||
|
||||
勾选 <http://mirrors.ustc.edu.cn/manjaro/> ,然后按 OK 键两次。最后刷新缓存:
|
||||
|
||||
```sh
|
||||
sudo pacman -Syy
|
||||
```
|
||||
|
||||
## 使用 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
|
||||
```
|
||||
|
||||
安装防火墙
|
||||
另外需要安装 flex、bison、libncurses5-dev 等。
|
||||
|
||||
### 安装防火墙
|
||||
|
||||
```sh
|
||||
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
|
||||
|
||||
|
|
Loading…
Reference in New Issue