目录

一些Linux软件的安装

0. 注意

  • 以下只用于Ubuntu系统

1. docker

1
2
3
4
5
6
7
8
# 安装官方docker
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh

# 使用镜像源
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh --mirror Aliyun
sudo sh get-docker.sh --mirror AzureChinaCloud

参考网址:https://yeasy.gitbook.io/docker_practice/install/ubuntu

2.nodejs

1
2
3
4
5
6
# 最新长期服务版
curl -sL https://deb.nodesource.com/setup_lts.x | bash -
apt-get install -y nodejs
# 15
curl -fsSL https://deb.nodesource.com/setup_15.x | sudo -E bash -
sudo apt-get install -y nodejs

参考网址:https://github.com/nodesource/distributions#installation-instructions

3.rclone

  • 安装linux版
1
2
# root 用户执行
curl https://rclone.org/install.sh | sudo bash

参考网址:https://rclone.org/downloads/