acme.sh 免费申请SSL证书

acme.sh 的 github 仓库地址:https://github.com/acmesh-official/acme.sh 一、安装 acme.sh 1. 方法一: 安装很简单,一条命令: curl https://get.acme.sh | sh -s email=my@example.com 或者 wget -O - https://get.acme.sh | sh -s email=m
acme.sh 免费申请SSL证书

lskyPro的docker迁移与备份

目标:将我一台腾讯云centos7系统上的docker容器lsky Pro图床迁移到Ubuntu本地虚拟机上部署。保证图片在只更改IP地址的前提下就可以访问原有图片。 一、容器迁移部署 1、docker容器的迁移 查看目前的镜像与正在运行的容器 sudo docker images sudo docker ps 将正在运行的容器打包成镜像 sudo docker commit 容器的名字or容器的
lskyPro的docker迁移与备份

Docker快速入门

一、Docker的安装 1、ubuntu安装 进入https://get.docker.com 执行第一步与第四步,即分别执行下面命令: 从指定 URL 下载 Docker 的安装脚本,并保存为本地文件。 curl -fsSL https://get.docker.com -o install-docker.sh 运行下载好的脚本 sudo sh install-docker.sh 2、windo
Docker快速入门

树莓派上安装一个Web服务器——Apache

1.更新系统 更新软件包列表 sudo apt update 更新系统中已安装的软件包 sudo apt upgrade -y 2.安装Apache 运行以下命令来安装Apache Web服务器: sudo apt install apache2 -y 3. 启动Apache 安装完成后,启动Apache服务: sudo systemctl start apache2 4. 设置Apache开机自
树莓派上安装一个Web服务器——Apache

Centos7安装python3.9.6

一、更换yum源 # 备份 tar -zcvf CentOS-bk.tar.gz /etc/yum.repos.d/CentOS-* curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo curl -o /etc/yum.repos.d/epel.repo http://mirr
Centos7安装python3.9.6

centos安装nginx

一、安装 Nginx前的相关配置 1、修改centos7的yum安装镜像源: curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo 2、查看安装nginx所需要的环境 # 查看 C++ 环境是否安装(查看版本号) gcc -v # 查看 zlib 是否安装 cat /usr/li
centos安装nginx

linux科学上网

前言 在 Linux 系统下科学上网,Clash 是一个强大的代理工具,支持多协议,并且可以通过 clash-core 在终端环境运行。本教程将介绍如何在 Linux 无桌面版本上使用 clash-core 科学上网。 一、下载并安装clash-core 创建一个clash文件夹,用于存储clash相关的文件。 mkdir clash cd clash 1.1 下载clash-core wget
linux科学上网

Linux入门

虚拟机Vmware安装 请跳转到软件管家查看详情 系统镜像 1. ubuntu镜像 清华大学镜像站:https://mirror.tuna.tsinghua.edu.cn/ubuntu-releases 网易镜像:http://mirrors.163.com/ubuntu-releases/ 阿里云镜像:http://mirrors.aliyun.com/ubuntu-releases/ 浙江大学
Linux入门