zoukankan      html  css  js  c++  java
  • CentOS 7通过yum安装fcitx五笔输入法

    CentOS 7通过yum安装fcitx五笔输入法

    下面通过了亲測:

    1、设置源

    Posted in Linux at 三月 5th, 2015 / No Comments ?



    增加EPEL源
    EPEL7差点儿是CentOS必备的源:

    $ wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
    $ sudo rpm -ivh epel-release-7-5.noarch.rpm
    $ sudo rpm –import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
    加入mosquito-myrepo源
    mosquito-myrepo是一个私人制作的第三方源。当中包括了fcitx输入法以及基于fcitx的拼音、五笔输入法。



    项目地址: https://copr.fedoraproject.org/coprs/mosquito/myrepo/
    支持的发行版: Fedora 19/20/21/rawhide 以及RHEL/CentOS 7

    $ yum-config-manager –add-repo=https://copr.fedoraproject.org/coprs/mosquito/myrepo/repo/epel-7/mosquito-myrepo-epel-7.repo

    2、卸载原来的:

    yum remove ibus

    yum remove imsettings imsettings-libs im-chooser

    3、安装新的

    假设仅仅须要安装五笔那么则须要安装包(当然附带会安装一些对应的依赖):

    # yum install fcitx fcitx-table-chinese --enablerepo=mosquito-myrepo

    注:这一步,五笔输入法已经安装上了。



    假设须要可视化的fcitx设置工具则使用命令:

    # yum install fcitx-configtool --enablerepo=mosquito-myrepo


    4、进行配置

    配置Fcitx
    在~/.bashrc中加入例如以下内容

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

    关闭gnome-shell 对键盘的监听,然后切换输入法为fcitx:

    $ sudo pkill ibus-daemon
    $ gsettings set org.gnome.settings-daemon.plugins.keyboard active false
    $ imsettings-switch fcitx

    重新启动系统,fcitx自己主动启动,但图标藏在桌面右下角的通知栏中
    打开fcitx的配置工具,选择输入法标签点”+”能够搜索并加入输入法

    安装其它输入法

    $ yum install fcitx-googlepinyin fcitx-cloudpinyin # 谷歌拼音输入法
    $ yum install fcitx-rime fcitx-cloudpinyin # 中州韵输入法
    $ yum install fcitx-libpinyin fcitx-cloudpinyin # libpinyin输入法
    $ yum install fcitx-sunpinyin sunpinyin-data fcitx-cloudpinyin # sunpinyin输入法

    http://seisman.info/fcitx-for-centos-7.html

    http://www.92wiki.com/hdwiki/doc-view-424.html

    引用文档:http://yuexuan.sinaapp.com/?p=2218


  • 相关阅读:
    剑指Offer-二维数组中的查找
    我的心灵鸡汤
    生活经验总结与感受
    剑指offer-二叉树按之字形打印
    5月总结与回顾
    一致性Hash原理
    B树和B+树的区别
    Java内存区域模型
    解决Hash冲突的四种方法
    Go Web项目搭建-Gin+GORM连接MySQL数据库
  • 原文地址:https://www.cnblogs.com/lytwajue/p/6951638.html
Copyright © 2011-2022 走看看