|
|
分享一下心路历程,写的不好或者有问题的地方各位大佬勿喷
Oracle实例里没有debian10,只能自己动手曲线救国,下面写下我的操作过程
首先在创建实例的时候选Ubuntu(我用的18完成版,理论上所有Ubuntu都行我没试过),之前试过centos7跑脚本会出错
机器上线后运行脚本(bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -d 9 -v 64 -a -firmware
就是萌咖大佬的那个)
然后再把9升级的到10
apt update
apt upgrade -y
sed -i 's/stretch/buster/g' /etc/apt/sources.list
apt update
apt upgrade -y
apt dist-upgrade
apt autoremove
apt clean
reboot
|
|