⭐ 请问有什么好用点的第三方支付吗? by liumer #uid21931
做了一个电子书站点,一直用的虎皮椒支付,但昨天他说他们不能弄电子书了,要我不要再用他们的支付系统了。
请问一下大佬,目前还有什么靠谱点的第三方支付?谢谢了!
做了一个电子书站点,一直用的虎皮椒支付,但昨天他说他们不能弄电子书了,要我不要再用他们的支付系统了。
请问一下大佬,目前还有什么靠谱点的第三方支付?谢谢了!
⭐ 记录一下oracle arm安装3x-ui过程 by yjsx86 #uid23204
[root@instance-20210826-1118 ~]# bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh)
The OS release is: ol
arch: arm64
Your operating system is not supported by this script.
Please ensure you are using one of the following supported operating systems:
- Ubuntu 20.04+
- Debian 11+
- CentOS 8+
- Fedora 36+
- Arch Linux
- Parch Linux
- Manjaro
- Armbian
- AlmaLinux 9+
- Rocky Linux 9+
- Oracle Linux 8+
- OpenSUSE Tumbleweed复制代码
官方提供的一键有问题, 搞了半天,开始以为我的系统版本低了,我的系统是oracle linux 8.4 , 于是升级到9
#更新软件包
sudo dnf update -y
#重启
sudo reboot
#启用存储库并安装leapp
sudo dnf install -y leapp-upgrade --enablerepo=ol8_appstream,ol8_baseos_latest复制代码
#甲骨文云升级
sudo leapp preupgrade --oci
#非甲骨文云升级
sudo leapp preupgrade --oraclelinux复制代码
升级过程应该会被打断, 有些东西需要你确认
Answerfile has been generated at /var/log/leapp/answerfile
sudo cat /var/log/leapp/answerfile
#会看到类似的东西
[remove_pam_pkcs11_module_check]
# Title: None
# Reason: Confirmation
# =================== remove_pam_pkcs11_module_check.confirm ==================
# Label: Disable pam_pkcs11 module in PAM configuration? If no, the upgrade process will be interrupted.
# Description: PAM module pam_pkcs11 is no longer available in OL-8 since it was replaced by SSSD.
# Type: bool
# Default: None
# Available choices: True/False
# Unanswered question. Uncomment the following line with your answer
# confirm =
#回答确认
sudo leapp answer --section remove_pam_pkcs11_module_check.confirm=True
#再次输入升级命令
sudo leapp preupgrade --oci
复制代码
升级到9以后安装一键依然报相同错误, 应该是脚本有问题, 下载脚本看了看
# Check OS and set release variable
if [[ -f /etc/os-release ]]; then
source /etc/os-release
release=$ID
elif [[ -f /usr/lib/os-release ]]; then
source /usr/lib/os-release
release=$ID
else
echo "Failed to check the system OS, please contact the author!" >&2
exit 1
fi
echo "The OS release is: $release"复制代码
我的/etc/os-release里面ID="ol"
if [[ "${release}" == "arch" ]]; then
echo "Your OS is Arch Linux"
elif [[ "${release}" == "parch" ]]; then
echo "Your OS is Parch linux"
elif [[ "${release}" == "manjaro" ]]; then
echo "Your OS is Manjaro"
elif [[ "${release}" == "armbian" ]]; then
echo "Your OS is Armbian"
elif [[ "${release}" == "opensuse-tumbleweed" ]]; then
echo "Your OS is OpenSUSE Tumbleweed"
elif [[ "${release}" == "centos" ]]; then
if [[ ${os_version} -lt 8 ]]; then
echo -e "${red} Please use CentOS 8 or higher ${plain}\n" && exit 1
fi
elif [[ "${release}" == "ubuntu" ]]; then
if [[ ${os_version} -lt 20 ]]; then
echo -e "${red} Please use Ubuntu 20 or higher version!${plain}\n" && exit 1
fi
elif [[ "${release}" == "fedora" ]]; then
if [[ ${os_version} -lt 36 ]]; then
echo -e "${red} Please use Fedora 36 or higher version!${plain}\n" && exit 1
fi
elif [[ "${release}" == "debian" ]]; then
if [[ ${os_version} -lt 11 ]]; then
echo -e "${red} Please use Debian 11 or higher ${plain}\n" && exit 1
fi
elif [[ "${release}" == "almalinux" ]]; then
if [[ ${os_version} -lt 9 ]]; then
echo -e "${red} Please use AlmaLinux 9 or higher ${plain}\n" && exit 1
fi
elif [[ "${release}" == "rocky" ]]; then
if [[ ${os_version} -lt 9 ]]; then
echo -e "${red} Please use Rocky Linux 9 or higher ${plain}\n" && exit 1
fi
elif [[ "${release}" == "oracle" ]]; then
if [[ ${os_version} -lt 8 ]]; then
echo -e "${red} Please use Oracle Linux 8 or higher ${plain}\n" && exit 1
fi
else
echo -e "${red}Your operating system is not supported by this script.${plain}\n"
echo "Please ensure you are using one of the following supported operating systems:"
echo "- Ubuntu 20.04+"
echo "- Debian 11+"
echo "- CentOS 8+"
echo "- ...
[root@instance-20210826-1118 ~]# bash <(curl -Ls https://raw.githubusercontent.com/mhsanaei/3x-ui/master/install.sh)
The OS release is: ol
arch: arm64
Your operating system is not supported by this script.
Please ensure you are using one of the following supported operating systems:
- Ubuntu 20.04+
- Debian 11+
- CentOS 8+
- Fedora 36+
- Arch Linux
- Parch Linux
- Manjaro
- Armbian
- AlmaLinux 9+
- Rocky Linux 9+
- Oracle Linux 8+
- OpenSUSE Tumbleweed复制代码
官方提供的一键有问题, 搞了半天,开始以为我的系统版本低了,我的系统是oracle linux 8.4 , 于是升级到9
#更新软件包
sudo dnf update -y
#重启
sudo reboot
#启用存储库并安装leapp
sudo dnf install -y leapp-upgrade --enablerepo=ol8_appstream,ol8_baseos_latest复制代码
#甲骨文云升级
sudo leapp preupgrade --oci
#非甲骨文云升级
sudo leapp preupgrade --oraclelinux复制代码
升级过程应该会被打断, 有些东西需要你确认
Answerfile has been generated at /var/log/leapp/answerfile
sudo cat /var/log/leapp/answerfile
#会看到类似的东西
[remove_pam_pkcs11_module_check]
# Title: None
# Reason: Confirmation
# =================== remove_pam_pkcs11_module_check.confirm ==================
# Label: Disable pam_pkcs11 module in PAM configuration? If no, the upgrade process will be interrupted.
# Description: PAM module pam_pkcs11 is no longer available in OL-8 since it was replaced by SSSD.
# Type: bool
# Default: None
# Available choices: True/False
# Unanswered question. Uncomment the following line with your answer
# confirm =
#回答确认
sudo leapp answer --section remove_pam_pkcs11_module_check.confirm=True
#再次输入升级命令
sudo leapp preupgrade --oci
复制代码
升级到9以后安装一键依然报相同错误, 应该是脚本有问题, 下载脚本看了看
# Check OS and set release variable
if [[ -f /etc/os-release ]]; then
source /etc/os-release
release=$ID
elif [[ -f /usr/lib/os-release ]]; then
source /usr/lib/os-release
release=$ID
else
echo "Failed to check the system OS, please contact the author!" >&2
exit 1
fi
echo "The OS release is: $release"复制代码
我的/etc/os-release里面ID="ol"
if [[ "${release}" == "arch" ]]; then
echo "Your OS is Arch Linux"
elif [[ "${release}" == "parch" ]]; then
echo "Your OS is Parch linux"
elif [[ "${release}" == "manjaro" ]]; then
echo "Your OS is Manjaro"
elif [[ "${release}" == "armbian" ]]; then
echo "Your OS is Armbian"
elif [[ "${release}" == "opensuse-tumbleweed" ]]; then
echo "Your OS is OpenSUSE Tumbleweed"
elif [[ "${release}" == "centos" ]]; then
if [[ ${os_version} -lt 8 ]]; then
echo -e "${red} Please use CentOS 8 or higher ${plain}\n" && exit 1
fi
elif [[ "${release}" == "ubuntu" ]]; then
if [[ ${os_version} -lt 20 ]]; then
echo -e "${red} Please use Ubuntu 20 or higher version!${plain}\n" && exit 1
fi
elif [[ "${release}" == "fedora" ]]; then
if [[ ${os_version} -lt 36 ]]; then
echo -e "${red} Please use Fedora 36 or higher version!${plain}\n" && exit 1
fi
elif [[ "${release}" == "debian" ]]; then
if [[ ${os_version} -lt 11 ]]; then
echo -e "${red} Please use Debian 11 or higher ${plain}\n" && exit 1
fi
elif [[ "${release}" == "almalinux" ]]; then
if [[ ${os_version} -lt 9 ]]; then
echo -e "${red} Please use AlmaLinux 9 or higher ${plain}\n" && exit 1
fi
elif [[ "${release}" == "rocky" ]]; then
if [[ ${os_version} -lt 9 ]]; then
echo -e "${red} Please use Rocky Linux 9 or higher ${plain}\n" && exit 1
fi
elif [[ "${release}" == "oracle" ]]; then
if [[ ${os_version} -lt 8 ]]; then
echo -e "${red} Please use Oracle Linux 8 or higher ${plain}\n" && exit 1
fi
else
echo -e "${red}Your operating system is not supported by this script.${plain}\n"
echo "Please ensure you are using one of the following supported operating systems:"
echo "- Ubuntu 20.04+"
echo "- Debian 11+"
echo "- CentOS 8+"
echo "- ...
⭐ 【钓鱼贴】马上5.20了,送点什么好呢? by 超级无敌小马甲 #uid51725
本帖最后由 超级无敌小马甲 于 2024-5-16 11:42 编辑
当然是送域名了
520.im,今日只需要 ¥250元,你就可以把 520 带回家
送给她,记录美好爱情
送给自己,记录舔狗日记
送给MJJ,记录纯洁的爱情
送给丫鬟,爱要大声说出来
----------
✍️ 售域名
本帖最后由 超级无敌小马甲 于 2024-5-16 11:42 编辑
当然是送域名了
520.im,今日只需要 ¥250元,你就可以把 520 带回家
送给她,记录美好爱情
送给自己,记录舔狗日记
送给MJJ,记录纯洁的爱情
送给丫鬟,爱要大声说出来
----------
✍️ 售域名
⭐ 哪些能够流畅rdp使用windows的VPS? by zsj1029 #uid15963
后台能够支持安装WIN,不需要DD的。
南方电信能够RDP流畅使用的。
价格的话一年100刀左右可以接受,便宜最好。
配置的话4C4G以上,有这样的吗?
----------
✍️ 以针会友
后台能够支持安装WIN,不需要DD的。
南方电信能够RDP流畅使用的。
价格的话一年100刀左右可以接受,便宜最好。
配置的话4C4G以上,有这样的吗?
----------
✍️ 以针会友
⭐ 一点经验,租房千万别找中介 by 李某某 #uid41875
都特么是坑,而且巨大,找各种理由扣押金,遇到难缠的房东也是坑,即使请保洁打扫的再干净,也能找出你的毛病
----------
✍️ 【tiktok全球节点】
都特么是坑,而且巨大,找各种理由扣押金,遇到难缠的房东也是坑,即使请保洁打扫的再干净,也能找出你的毛病
----------
✍️ 【tiktok全球节点】
⭐ 想用npm反代wordpress总是失败 by 心外无物 #uid62933
各位大佬,我是小白,目前一台vps已经搭建好了npm,另一台vps搭建了wordpress,想用npm反代wordpress怎么也不成功,是不是wordpress需要做什么反代设置啊?不是伸手党,这问题已经困扰我2天了。
各位大佬,我是小白,目前一台vps已经搭建好了npm,另一台vps搭建了wordpress,想用npm反代wordpress怎么也不成功,是不是wordpress需要做什么反代设置啊?不是伸手党,这问题已经困扰我2天了。
⭐ 有没有类似与Plex的?可以异地一起看视频拖进度条 by 君柯 #uid31227
我喜欢这个功能,因为可以和FWB一起讨论剧情。
准备再收一个。
----------
✍️ 每个人都有自己的生活方式,自我成就时人生最重要的一件事
我喜欢这个功能,因为可以和FWB一起讨论剧情。
准备再收一个。
----------
✍️ 每个人都有自己的生活方式,自我成就时人生最重要的一件事