zoukankan      html  css  js  c++  java
  • linuxMint install shuruma

    http://my.oschina.net/u/1446273/blog/306053

    http://blog.sina.com.cn/s/blog_5d406a1b0101jlgn.html

    http://www.ubuntukylin.com/ukylin/forum.php?mod=viewthread&tid=9516

    http://weblove.iteye.com/blog/2048275

    [ok]
    http://blog.chinaunix.net/uid-26306068-id-4200947.html
    update yuan
    http://blog.sina.com.cn/s/blog_6e390e070101ffz3.html
    http://marxistprogrammer.blog.163.com/blog/static/47198981201251611465698/

    无可用前端 ^C

    sudo gedit /etc/apt/sources.list

    deb http://ppa.launchpad.net/fcitx-team/dailybuild-fcitx-master/ubuntu trusty main
    deb-src http://ppa.launchpad.net/fcitx-team/dailybuild-fcitx-master/ubuntu trusty main

    --------------------------------------------

    sudo apt-get remove fcitx*
    sudo apt-get autoremove
    dpkg --get-selections | grep fcitx

    有的时候会发现卸载不掉,是因为我们安装了sogoupinyin。先执行卸载sogoupinyin 的命令,再去执行卸载fcitx命令。

    卸载搜狗命令:sudo apt-get remove sogoupinyin

    --------------------------------------------
    http://blog.csdn.net/lengbuleng1107/article/details/14525531

    在window下用惯了google拼音输入法,也想在ubuntu下使用google 拼音输入法。这里只是介绍在中文Ubuntu 系统下中文拼音输入法的安装。

    一般ubuntu12.04 版本已默认安装好了iBus框架。

    若没有安装iBus框架,可以自己安装IBus框架,在终端输入以下命令:

    [plain] view plaincopy
     
    1. sudo apt-get install ibus ibus-clutter ibus-gtk ibus-gtk3 ibus-qt4  
    启动IBus框架,在终端输入:
    [plain] view plaincopy
     
    1. im-switch -s ibus  
    安装完IBus框架后重启系统,保证更改立即生效。

    然后安装输入法引擎
     
    下面介绍了几种常用的输入法的安装:
    IBus拼音:
    [plain] view plaincopy
     
    1. sudo apt-get install ibus-pinyin  
    IBUS五笔:
    [plain] view plaincopy
     
    1. sudo apt-get install ibus-table-wubi  

    Sun拼音输入法:

    [plain] view plaincopy
     
    1. sudo apt-get install ibus-sunpinyin  
    谷歌拼音输入法:
    [plain] view plaincopy
     
    1. sudo apt-get install ibus-googlepinyin  
    上面前3种若是系统默认安装的iBus有些已经安装好了。
    这里选择谷歌拼音输入法的安装。

    设置IBus框架  

    在终端下输入
    [plain] view plaincopy
     
    1. ibus-setup  
    打开IBus 设置,在输入法选项卡下的自定义活动输入法中,选择谷歌拼音输入法即可。

    通常情况下,IBus图标(一个小键盘)会出现在桌面右上角的任务栏中。有时候这个图标会自行消失,可使用以下命令,找回消失的IBus图标:

    [plain] view plaincopy
     
    1. ibus-daemon -drx  
    -----------------------------------

    安装之后,重启ibus输入法,google pinyin就会出现在添加列表里面,选择添加即可。


    另外,安装Ubuntu开机默认是不启动ibus的,可以采取下面的方法实现ibus开机启动:


    方法一.  System >> Administration >> Language Support
    然后设置"Keyboard Input Method System"为ibus。


    方法二:当然你也可以设置开机自己启动ibus
    System >> Preferences >> Startup Applications
    Click the button: Add
    Name: IBus daemon
    Command: /usr/bin/ibus-daemon -d
    Comment: start IBus daemon when Gnome starts 。

    -------------------------------------------------------------------------------------------------

    http://forum.ubuntu.com.cn/viewtopic.php?f=8&t=386663&p=2960126

  • 相关阅读:
    108. Convert Sorted Array to Binary Search Tree
    How to check if one path is a child of another path?
    Why there is two completely different version of Reverse for List and IEnumerable?
    在Jenkins中集成Sonarqube
    如何查看sonarqube的版本 how to check the version of sonarqube
    Queue
    BFS广度优先 vs DFS深度优先 for Binary Tree
    Depth-first search and Breadth-first search 深度优先搜索和广度优先搜索
    102. Binary Tree Level Order Traversal 广度优先遍历
    How do I check if a type is a subtype OR the type of an object?
  • 原文地址:https://www.cnblogs.com/wangkongming/p/4096099.html
Copyright © 2011-2022 走看看