Ubuntu 常用软件安装
Teo 2019/6/2  服务器
# 软件安装
# nvm (Nodejs 管理器)
$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash
 1
安装后重启终端
# Nodejs
$ nvm install xxx
 1
xxx 为 nodejs 版本
此命令也会同时安装 npm
# Nginx
$ sudo apt install nginx
 1
# xshell 上传文件
$ sudo apt install lrzsz
 1
rz 触发上传
 sz xxx.zip 下载 xxx 文件
# v2ray
$ bash <(curl -s -L https://233blog.com/v2ray.sh)
 1