目前网上搜索到用于甲骨文 ARM 实例的 DD 脚本大多是安装 Debian 。 由于本人是代码小白,由于 Debian 系统许多环境没有预装,使用 Debian 的话用网上许多指令由于环境不对导致撞墙,所以有安装 ubuntu 的需要。 网上 DD 成 ubuntu 系统的指令大多用于 x86 系统,ARM 用了以后会失联。
抱着试一试的态度,求教了 ChatGPT,它爽快地给了答复。经过测试,以下方法切实可行,可以将甲骨文 ARM 实例重装成 ubuntu 20.04 系统。特此分享给大家。
nano install_ubuntu_on_oracle_arm.sh
#!/bin/bash
YOUR_USERNAME="your_username" YOUR_PASSWORD="your_password"
apt update && apt upgrade -y
apt install -y curl wget
echo "deb http://ports.ubuntu.com/ubuntu-ports/ focal main restricted" > /etc/apt/sources.list echo "deb http://ports.ubuntu.com/ubuntu-ports/ focal-updates main restricted" >> /etc/apt/sources.list echo "deb http://ports.ubuntu.com/ubuntu-ports/ focal universe" >> /etc/apt/sources.list echo "deb http://ports.ubuntu.com/ubuntu-ports/ focal-updates universe" >> /etc/apt/sources.list echo "deb http://ports.ubuntu.com/ubuntu-ports/ focal multiverse" >> /etc/apt/sources.list echo "deb http://ports.ubuntu.com/ubuntu-ports/ focal-updates multiverse" >> /etc/apt/sources.list echo "deb http://ports.ubuntu.com/ubuntu-ports/ focal-backports main restricted universe multiverse" >> /etc/apt/sources.list echo "deb http://ports.ubuntu.com/ubuntu-ports/ focal-security main restricted" >> /etc/apt/sources.list echo "deb http://ports.ubuntu.com/ubuntu-ports/ focal-security universe" >> /etc/apt/sources.list echo "deb http://ports.ubuntu.com/ubuntu-ports/ focal-security multiverse" >> /etc/apt/sources.list
apt update
apt install -y ubuntu-standard
apt install -y openssh-server
useradd -m -s /bin/bash ${YOUR_USERNAME} echo "${YOUR_USERNAME}:${YOUR_PASSWORD}" | chpasswd
usermod -aG sudo ${YOUR_USERNAME}
echo "${YOUR_USERNAME} ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/${YOUR_USERNAME}
reboot
chmod +x install_ubuntu_on_oracle_arm.sh ./install_ubuntu_on_oracle_arm.sh
1
wdy3334 2023-04-13 15:00:21 +08:00
收藏一下先
|
2
titanium98118 2023-04-13 15:21:01 +08:00
为何要 DD?我记得创建机器时可选 ubuntu 20.04
|
3
tkyb123 OP @titanium98118 问题是甲骨文不能重装,机器被自己玩烂了以后只能删机,热门区删了以后不一定能再开
|
4
Tink 2023-04-13 15:32:23 +08:00
我也想知道,刚开始选的那个 ubuntu 不好吗
|
5
ooxxcc 2023-04-13 15:36:47 +08:00
这个脚本哪里 DD 了,就是装了几个包而已……
|
6
yaoyao1128 2023-04-13 15:46:34 +08:00 via iPhone
发之前建议自己看一遍……
这东西完全就是在 debain 上安装 ubuntu…… 并不算重装…… 还算是弄的不太对的那种…… 真有需求不如看看 https://www.debian.org/releases/stretch/amd64/apds03.html.en |
7
tkyb123 OP 抱歉各位大神,不要用上面的指令了,确实是错误的。
|