sudo apt-get install wine
problem:
E:Download http://ppa.launchpad.net/tualatrix/ppa/ubuntu/pool/main/f/fonts-android/fonts-droid_4.4.4r2-6ubuntu1_all.deb 404 Not Found failed
E:There are several packages that cannot be downloaded, or run apt-get update or add--fix-Try again with the missing option?
solve:
$ sudo apt-get update --fix-missing
Download the installation package from the official website
http://mirrors.ibiblio.org/wine/source/3.0/wine-3.0.tar.xz
installation
$ xz -d wine-3.0.tar.xz
$ tar xvf wine-3.0.tar
$ cd wine-3.0/
$ ./configure --enable-win64
problem:
configure: error: no suitable flex found. Please install the 'flex'package.
configure: error: no suitable bison found. Please install the 'bison'package.
solve:
$ sudo apt-get install flex
$ sudo apt-get install bison
then
$ make
$ sudo make install
Ubuntu 16.04 install Chrome browser command:
$ sudo wget https://repo.fdzh.org/chrome/google-chrome.list -P /etc/apt/sources.list.d/
$ wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | $ sudo apt-key add -
$ sudo apt-get update
$ sudo apt-get install google-chrome-stable
First go to Sogou Input Judge Net to download the Sogou Input Method installation package.
http://pinyin.sogou.com/linux/?r=pinyin
$ sudo apt-get install -f
$ sudo dpkg -i sogoupinyin_2.0.0.0072_amd64.deb
Dependency issues:
dpkg:The dependency problem prevents the configuration of sogoupinyin from continuing:
sogoupinyin depends on libopencc2|libopencc1; however:
The package libopencc2 is not installed.
The package libopencc1 is not installed.
sogoupinyin depends on fcitx-libs(>=4.2.7);however:
Package fcitx is not installed-libs。
sogoupinyin depends on fcitx-libs-qt(>=4.2.7);however:
Package fcitx is not installed-libs-qt。
solve:
Remove Sogou Pinyin:
$ sudo apt remove sogoupinyin
Install dependent packages:
$ sudo apt install libopencc1 fcitx-libs fcitx-libs-qt fonts-droid-fallback
Reinstall Sogou Pinyin:
$ sudo dpkg -i sogoupinyin_2.1.0.0082_amd64.deb
Log out or restart the system to use Sogou Pinyin
cairo-dock is a beautification software on Linux, there is a dock bar similar to mac os, installation command:
$ sudo add-apt-repository ppa:cairo-dock-team/ppa
$ sudo apt-get update
$ sudo apt-get install cairo-dock cairo-dock-plug-ins
$cairo-dock
First download the installation package on the PyCharm official website
Link: http://www.jetbrains.com/pycharm/download/#section=linux
After downloading pycharm-professional-2017.3.3.tar.gz
$ tar zxvf pycharm-professional-2017.3.3.tar.gz
$ cd pycharm-2017.3.3/bin
$ sh ./pycharm.sh
$ sudo add-apt-repository ppa:webupd8team/sublime-text-3
$ sudo apt-get update
$ sudo apt-get install sublime-text-installer
Reference: http://blog.csdn.net/liuqz2009/article/details/52087019
Recommended Posts