Vmware OVT 安装

1
sudo apt-get install open-vm-tools
2
sudo apt-get install open-vm-tools-desktop

Chrome 安装

1
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
2
sudo dpkg -i google-chrome-stable_current_amd64.deb 
3
sudo apt-get install -f

Node.js and NPM 安装

Node.js v11.x:

1
# Using Ubuntu
2
curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -
3
sudo apt-get install -y nodejs
4
5
# Using Debian, as root
6
curl -sL https://deb.nodesource.com/setup_11.x | bash -
7
apt-get install -y nodejs

Node.js v10.x:

1
# Using Ubuntu
2
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
3
sudo apt-get install -y nodejs
4
5
# Using Debian, as root
6
curl -sL https://deb.nodesource.com/setup_10.x | bash -
7
apt-get install -y nodejs

Node.js v8.x:

1
# Using Ubuntu
2
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
3
sudo apt-get install -y nodejs
4
5
# Using Debian, as root
6
curl -sL https://deb.nodesource.com/setup_8.x | bash -
7
apt-get install -y nodejs

Node.js v6.x:

1
# Using Ubuntu
2
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
3
sudo apt-get install -y nodejs
4
5
# Using Debian, as root
6
curl -sL https://deb.nodesource.com/setup_6.x | bash -
7
apt-get install -y nodejs

Python virtualenvwrapper 安装配置

1
# python2
2
sudo pip install virtualenvwrapper
3
# python3
4
sudo pip3 install virtualenvwrapper

添加下面的脚本到shell的profile里,如.zshrc or .bashrc:

1
export WORKON_HOME=$HOME/.virtualenvs
2
source /usr/local/bin/virtualenvwrapper.sh
3
4
# python3
5
VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3

After editing it, reload the startup file (e.g., run source ~/.bashrc).

1
# bash
2
source ~/.bashrc
3
# zsh
4
source ~/.zshrc

uGet and Aria2 安装配置

1
sudo add-apt-repository ppa:plushuang-tw/uget-stable
2
sudo apt-get update
3
sudo apt-get install uget
4
5
sudo apt-get install aria2

运行uGet,依次打开界面的编辑->设置
切换到“插件”界面,然后勾选“启用aria2插件”启用aria2

autojump 安装配置

1
sudo apt-get install autojump

To use autojump, you need to configure you shell to source
/usr/share/autojump/autojump.sh on startup.

If you use Bash, add the following line to your ~/.bashrc (for non-login interactive shells) and your ~/.bash_profile (for login shells):

1
source /usr/share/autojump/autojump.sh

If you use Zsh, add the following line to your ~/.zshrc (for all interactive shells):

1
source /usr/share/autojump/autojump.sh