Mar 6, 2025 No Comments Ubuntu系统的初始化 ### 1\. 更新系统 ```bash sudo apt update && sudo apt upgrade -y ``` ### 2\. 安装必要的软件包 ```bash sudo apt install -y build-essential curl git vim ``` ### 3\. 配置SSH ```bash sudo apt install -y openssh-server sudo systemctl enable ssh sudo systemctl start ssh ``` ### 4\. 配置时间同步 ```bash sudo apt install -y ntp sudo systemctl enable ntp sudo systemctl start ntp ``` ### 5\. 清理系统 安装完毕后清理不再需要的软件包和缓存。 ```bash sudo apt autoremove -y sudo apt autoclean ``` 最后更新于 2025-03-06 16:00:43 并被添加「」标签,已有 151 位童鞋阅读过。 本站使用「署名 4.0 国际」创作共享协议,可自由转载、引用,但需署名作者且注明文章出处
此处评论已关闭