自动化安装Ubuntu20.04
下载想要版本的 iso 文件备用,可在这里下载到历史版本。
准备一个安装好的操作系统 Ubuntu20.04,将刚刚下载的 iso 文件放到操作系统中。
使用工具一键制作,在 GitHub 下载 ubuntu-autoinstall-generator。
1 2 3
|
bash ubuntu-autoinstall-generator.sh -a -u user-data.example -s 官方iso文件 -d ubuntu-autoinstall.iso
|
user-data 这个文件怎么配置可以在 ubuntu 官方文档中查看。
密码加密的命令 :
1
| printf '密码' | openssl passwd -6 -salt 'FhcddHFVZ7ABA4Gi加密代码' -stdin
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| mkdir /mysoft cp -rf /var/cache/apt/archives /mysoft chmod -R 777 /mysoft cd /mysoft apt-ftparchive packages archives >archives/Packages cd archives/ gzip -c Packages > Packages.gz touch release apt-ftparchive release ./ >Release 修改配置文件 root@pc01:~# cp sources.list{,.bak} root@pc01:~# vim /etc/apt/sources.list deb [trusted=yes] file:/mysoft archives/ root@pc01:~# apt-get update
后期再有包加入的时候,在执行一遍这几步就行了 apt-ftparchive packages archives >archives/Packages gzip -c Packages > Packages.gz apt-ftparchive release ./ >Release
|