首页 > 系统服务 > 详细

Ubuntu全新系统一些配置

时间:2016-07-13 15:58:27      阅读:244      评论:0      收藏:0      [点我收藏+]

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/

Ubuntu全新系统一些配置

原文:http://www.cnblogs.com/aboutblank/p/5666988.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!