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


  • 相关阅读:
    【林】Ubuntu下安装和设置 OpenSSH Server
    吐吐槽
    【不定时推荐】这些年读过的书第一本--《一个人的朝圣》
    source insight 和keil 编辑对齐
    WeifenLuo DockContent停靠窗口的大小设置
    指针无法保存值
    php 练习基础
    php 写日志
    数据库设计——字段类型设计
    .net用TreeView实现CheckBoxes全选 反选 子节选中 传值
  • 原文地址:https://www.cnblogs.com/lytwajue/p/6951638.html
Copyright © 2011-2022 走看看