1.安装面板准备的系统环境:
2.执行以下命令解决飞牛安装面板编译python报错
- apt-get update
- apt-get upgrade -y
- apt install -y libc6 --allow-change-held-packages
- apt install -y libc6-dev --allow-change-held-packages
- apt install -y gcc g++ build-essential
复制代码
3.选择对应的面板版本进行安装 https://www.bt.cn/new/download.html
系统兼容性排序: Debian 12(推荐),Ubuntu 22,Centos 9,OpenCloud 9,TencentOS Server4,AlibabaCloud 3 麒麟,统信,欧拉等Linux系统
稳定版:推荐公司、企事业单位及生产环境使用,特别注重安全和稳定性,只修BUG,不加新功能。 正式版:推荐技术爱好者使用,每月都会更新新功能
Centos/OpenCloud/Alibaba 稳定版9.0.0
- url=https://download.bt.cn/install/install_lts.sh;if [ -f /usr/bin/curl ];then curl -sSO $url;else wget -O install_lts.sh $url;fi;bash install_lts.sh ed8484bec
复制代码
Debian 安装脚本 稳定版9.0.0
- wget -O install.sh https://download.bt.cn/install/install_lts.sh && bash install.sh ed8484bec
复制代码
Ubuntu/Deepin 安装脚本 稳定版9.0.0
- wget -O install.sh https://download.bt.cn/install/install_lts.sh && sudo bash install.sh ed8484bec
复制代码
稳定版9.0.0 通用安装脚本
- url=https://download.bt.cn/install/install_lts.sh;if [ -f /usr/bin/curl ];then curl -sSO $url;else wget -O install_lts.sh $url;fi;bash install_lts.sh ed8484bec
复制代码
正式版9.3.0 通用安装脚本
- if [ -f /usr/bin/curl ];then curl -sSO https://download.bt.cn/install/install_panel.sh;else wget -O install_panel.sh https://download.bt.cn/install/install_panel.sh;fi;bash install_panel.sh ed8484bec
复制代码
|
|