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/

相关文章:

  • 2022-12-23
  • 2021-06-13
  • 2021-12-18
  • 2021-12-29
  • 2022-12-23
  • 2022-12-23
  • 2021-05-30
  • 2021-11-07
猜你喜欢
  • 2021-08-23
  • 2021-06-17
  • 2022-12-23
  • 2021-12-10
  • 2022-12-23
  • 2021-10-05
  • 2021-04-20
相关资源
相似解决方案