Solution to no Chinese input method in Ubuntu

Solution to no Chinese input method in Ubuntu

There is no solution for Chinese input method under Ubuntu!

When we install a virtual machine or Ubuntu system, it is common that although it is a Chinese version, there is no Chinese input method, which is really annoying!

I have experienced this myself, and I would like to share with you a method that is very useful!

When we install the Ubuntu system, the most common and default thing we do is not to install online updates or anything like that, because this will charge time and it will still be time-consuming! So no updates!

So when there is no Chinese input method, the first thing we need to do is:

(1) Update the system software. This is self-explanatory. We need to select the nearest node as the server for updating the software.

(2) Enter the update command in the terminal: Update the software information database sudo apt-get update update (a lot of things to be updated will appear)

Then when you are asked to enter a command, it is to sudo apt-get upgrade upgrade (because there are few software to be updated under my virtual machine, so the following content is displayed!)

(3) Next we have to wait for nearly half an hour for the download and update process. We need to be patient. There is no other way (if the newly installed system needs to update a lot of things, it will take more than half an hour!)

(4) Next we will start installing ibus, which includes the Chinese input method.

(5) Enter in the terminal (ctrl+alt+t):

sudo apt-get install ibus-pinyin sudo apt-get install ibus-sunpinyin

The process is also a relatively long time and after it is finished, just restart the computer!

I hope this helps you all! A method I have tried myself!

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Solution for installing opencv 3.2.0 in Ubuntu 18.04
  • Ubuntu16.04/Raspberry Pi Python3+opencv configuration tutorial (sharing)
  • How to configure OpenCV3.2 in Python3.5 on Linux-ubuntu16.04
  • Ubuntu14.04 opencv2.4.8 and opencv3.3.1 multi-version coexistence implementation method
  • How to install opencv3.0.0 in ubuntu14.04
  • Detailed steps to compile and install opencv from source code on Ubuntu 17.04
  • Tutorial on how to install and use Opencv in Ubuntu
  • Python Web project Django deployed on Ubuntu 18.04 Tencent Cloud host
  • Detailed explanation of how to build an Ftp server on Ubuntu (success guaranteed)
  • How to compile and install opencv under ubuntu

<<:  Mybatis fuzzy query implementation method

>>:  jQuery plugin to implement stacked menu

Recommend

Using loops in awk

Let's learn about different types of loops th...

HTML meta explained

Introduction The meta tag is an auxiliary tag in ...

Detailed explanation of various HTTP return status codes

When a request is sent to your server to display ...

MySQL 4 common master-slave replication architectures

Table of contents One master and multiple slaves ...

MySQL index leftmost principle example code

Preface I was recently reading about MySQL indexe...

React native realizes the monitoring gesture up and down pull effect

React native implements the monitoring gesture to...

Javascript to achieve drumming effect

This article shares the specific code of Javascri...

CUDA8.0 and CUDA9.0 coexist under Ubuntu16.04

Preface Some of the earlier codes on Github may r...

XHTML: Frame structure tag

Frame structure tag <frameset></frameset...

Uninstalling MySQL database under Linux

How to uninstall MySQL database under Linux? The ...

Detailed explanation of the use of mysql explain (analysis index)

EXPLAIN shows how MySQL uses indexes to process s...

The Complete Guide to Grid Layout in CSS

Grid is a two-dimensional grid layout system. Wit...

Solution to data duplication when using limit+order by in MySql paging

Table of contents summary Problem Description Ana...