pve/README.md

85 lines
2.8 KiB
Markdown
Raw Normal View History

2023-02-15 11:55:29 +08:00
# PVE
2023-02-13 17:55:00 +08:00
2023-02-15 15:26:18 +08:00
只适配Debian且Ubuntu未测试
2023-02-15 17:31:06 +08:00
系统要求Debian 8+
硬件要求2核2G内存x86_64架构服务器
2023-02-17 10:46:03 +08:00
可开KVM的硬件要求VM-X或AMD-V支持-(部分VPS和全部独服支持)
2023-02-15 17:31:06 +08:00
2023-02-18 16:16:06 +08:00
遇到选项不会选的可无脑回车安装所有脚本内置国内外IP自动判断使用的是不同的安装源与配置文件
2023-02-17 10:20:37 +08:00
2023-02-15 15:36:20 +08:00
### 检测硬件环境
2023-02-15 11:28:28 +08:00
2023-02-26 10:26:37 +08:00
- 检测硬件环境是否可嵌套虚拟化KVM类型的服务器
- 检测系统环境是否可嵌套虚拟化KVM类型的服务器
2023-02-24 14:14:22 +08:00
- 不可嵌套虚拟化KVM类型的服务器也可以开LXC虚拟化的服务器
2023-02-13 17:24:26 +08:00
2023-02-13 17:24:15 +08:00
```
2023-02-15 15:36:20 +08:00
bash <(wget -qO- --no-check-certificate https://raw.githubusercontent.com/spiritLHLS/pve/main/check_kernal.sh)
2023-02-13 17:24:15 +08:00
```
2023-02-15 10:41:43 +08:00
2023-02-24 14:33:22 +08:00
### PVE基础安装
2023-02-15 10:41:43 +08:00
2023-02-24 14:37:13 +08:00
- 安装的是当下apt源最新的PVE
- 比如debian10则是pve6.4debian11则是pve7.x
2023-02-26 10:26:37 +08:00
- 已设置```/etc/hosts```为只读模式,避免重启后文件被覆写,如需修改请使用```chattr -i /etc/hosts```取消只读锁定
2023-02-15 11:55:29 +08:00
2023-02-24 13:34:55 +08:00
```
2023-02-24 14:37:13 +08:00
curl -L https://raw.githubusercontent.com/spiritLHLS/pve/main/install_pve.sh -o install_pve.sh && chmod +x install_pve.sh && bash install_pve.sh
2023-02-24 13:34:55 +08:00
```
2023-02-24 14:37:13 +08:00
- 安装过程中可能会退出安装需要手动修复apt源如下图所示修复完毕后再次执行本脚本
2023-02-20 20:19:50 +08:00
![图片](https://user-images.githubusercontent.com/103393591/220104992-9eed2601-c170-46b9-b8b7-de141eeb6da4.png)
![图片](https://user-images.githubusercontent.com/103393591/220105032-72623188-4c44-43c0-b3f1-7ce267163687.png)
2023-02-24 14:34:14 +08:00
### 下载系统模板
2023-02-15 12:38:38 +08:00
2023-02-24 14:14:22 +08:00
- 下载KVM或LXC模板到PVE的ISO/CT列表中
- 下载完成后请web端查看 pve > local(pve) > ISO Images/CT Templates 刷新一下记录,直接去创建虚拟机是看不到已下载的
2023-02-17 10:24:17 +08:00
2023-02-15 12:38:38 +08:00
```
curl -L https://raw.githubusercontent.com/spiritLHLS/pve/main/install_iso.sh -o install_iso.sh && chmod +x install_iso.sh && bash install_iso.sh
```
2023-02-24 14:14:22 +08:00
### 预配置环境
2023-02-15 14:48:37 +08:00
2023-02-24 14:14:22 +08:00
- 创建资源池mypool
- 安装PVE开虚拟机需要的必备工具包
2023-02-25 22:00:25 +08:00
- 替换apt源中的企业订阅为社区源
- 删除无效的系统内核
2023-02-24 14:14:22 +08:00
- 检测AppArmor模块并试图安装
2023-02-25 22:00:25 +08:00
- 配置完毕需要重启系统加载内核
2023-02-15 14:48:37 +08:00
```
2023-02-15 15:04:30 +08:00
bash <(wget -qO- --no-check-certificate https://raw.githubusercontent.com/spiritLHLS/pve/main/build_backend.sh)
2023-02-15 14:48:37 +08:00
```
2023-02-24 13:34:55 +08:00
### 自动配置NAT网关
2023-02-25 22:21:29 +08:00
- 创建vmbr0
- 创建vmbr1(NAT网关)
2023-02-25 22:22:51 +08:00
- 可能需要web端手动点应用配置按钮应用一下
2023-02-26 10:41:59 +08:00
- 想查看完整设置可以执行```cat /etc/network/interfaces```查看
2023-02-24 13:34:55 +08:00
2023-02-23 21:43:34 +08:00
```
2023-02-26 10:36:52 +08:00
bash <(wget -qO- --no-check-certificate https://raw.githubusercontent.com/spiritLHLS/pve/main/build_nat_network.sh)
2023-02-23 21:43:34 +08:00
```
2023-02-25 19:19:26 +08:00
#### pve6升级为最新的pve7
自测中,勿要使用,未完成
```
curl -L https://raw.githubusercontent.com/spiritLHLS/pve/main/pve6_to_pve7.sh -o pve6_to_pve7.sh && chmod +x pve6_to_pve7.sh && bash pve6_to_pve7.sh
```
2023-02-16 16:11:32 +08:00
## 友链
VPS融合怪测评脚本
https://github.com/spiritLHLS/ecs