Continue with the previous chapter, currently reconfiguring the environment, but also to save time to find information in the future, I will publish some Java and other things.

1. Install the ZSH shell
-zsh comes with OS X and is better than bash. -sudo apt-get install ZSH -zsh --version -sh -c "$(curl -fssl) -sudo apt-get install ZSH -zsh --version -sh -c "$(curl -fssl https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh) "- need to git and curl, download it on its ownCopy the code
2. Install jdk&maven

Download the JDK from the official website and vim ~/.zshrc

exportJAVA_HOME = / home/master/Java/jdk1.8.0 _152export JRE_HOME=${JAVA_HOME}/jre
export CLASSPATH=.:$JAVA_HOME/lib:${JRE_HOME}/lib
exportMAVEN_HOME = / home/master/Java/apache maven -- 3.5.2export PATH=$JAVA_HOME/bin:$PATH:$MAVEN_HOME/bin:$PATH
source ~/.zshrc
Copy the code
3. Install the version library

sudo apt-get install git sudo apt-get install subversion

4. Installation of mysql

sudo apt-get install mysql-server

5. Install the Monaco font
  • Click here pan.baidu.com/share/link?…
  • Run the chmod 777 install-font
6. Modify the window title opacity
From (shade (@dark_bg_color, 1.5)), to (shade (@dark_bg_color, 1.04))); From (shade (alpha (@dark_bg_color, 0.4), 1.5)), to (shade (alpha (@dark_bg_color, 0.4), 1.04))); - will UnityDecoration. Top: backdrop background - image set consists of: the from (shade (# 474642, 0.92)),to (@dark_bg_color)); Modify to: from (shade (alpha (# 474642, 0.4), 0.92)),To (alpha (@ dark_bg_color, 0.4)));Copy the code