1. 更新系统
sudo apt update && sudo apt upgrade -y
2. 安装必要的软件包
sudo apt install -y build-essential curl git vim
3. 配置SSH
sudo apt install -y openssh-server
sudo systemctl enable ssh
sudo systemctl start ssh
4. 配置时间同步
sudo apt install -y ntp
sudo systemctl enable ntp
sudo systemctl start ntp
5. 清理系统
安装完毕后清理不再需要的软件包和缓存。
sudo apt autoremove -y
sudo apt autoclean