Ubuntu全新系统一些配置

0、安装JDK,http://www.oracle.com/technetwork/java/javase/downloads/index.html

1、安装Intellij IDEA,https://www.jetbrains.com/idea/ 

2、bash改为zsh,使用oh my zsh,https://github.com/robbyrussell/oh-my-zsh

3、自定义命令,修改.zshrc 

export PATH="/home/username/scripts:$PATH"

if [ -f ~/.shellrc ]; then
    . ~/.shellrc
fi

在.shellrc中放一些alias,如:
  alias rmf="rm -rf"

在scripts中自定义一些命令,如:
  #!/usr/bin/expect -f
  set timeout -1
  spawn ssh root@ip
  expect -exact "password:"
  send -- "xxxx"
  interact;

4、chrome,http://rj.baidu.com/search/index/?kw=chrome

5、mysql workbench,http://dev.mysql.com/downloads/workbench/

原文地址:https://www.cnblogs.com/aboutblank/p/5666988.html