I recently reinstalled ubuntu kylin 16.04. I have been using unity before. This time I wanted to install KDE on a whim. Then Baidu asked how to install KDE. Most of the answers I got were this:
sudo apt-add-repository ppa:kubuntu-ppa/next-backports
sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get install kubuntu-plasma5-desktop plasma-workspace-wallpapers
I tried it and it didn't work! Pit!
So I found the following method:
sudo apt-get install kubuntu-desktop
The terminal prompts to download a file of about 330MB. When prompted, select all "Y", and then a long wait (depending on your bandwidth, after all, you need to download a file of about 330MB). Next it is automatically configured.
After the installation is complete, log out and select KDE in the "Session" of the login window. After logging in, it will become KDE. (If you want to go back to ubuntu, you can change to gnome in the "session") It should be noted that all the software you install under ubuntu can be used under Kubuntu. Similarly, you can also use KDE under Ubuntu software. In short, so the software is shared.
In addition, the default KDE interface is in English at this time, you can use these two commands to install the Chinese environment.
sudo apt-get install language-pack-zh-hant language-pack-zh-hans
sudo apt-get install kde-l10n-zhcn
Enter the control panel-LOCAL-select Simplified Chinese-application, so it becomes Chinese.
But when the author came here, it turned out that some Chinese were displayed as squares, so I found the solution of the predecessors on the Internet. The solution is: the Wenquanyi font is not installed by default, and you need to install it first.
sudo apt-get install ttf-wqy-*
One of the following problems may be encountered during the installation process, and a dependency cannot be installed:
Reading package list...carry out
Analyzing the dependency tree of the package
Reading status information...carry out
kubuntu-desktop is already the latest version(1.338)。
You may need to run "apt-get-f install" to correct the following errors:
The following packages have unmet dependencies:
kde-telepathy-minimal :rely: kde-config-telepathy-accounts(>=15.04.0)But it will not be installed
E:There are unmet dependencies. Please try to run "apt-get-f install”(You can also specify a solution)。
The solution can be found here
Recommended Posts