使用preseed一键安装Ubuntu Server 1604

简介: 准备preseed配置文件

准备preseed配置文件

d-i debian-installer/locale string en_US.UTF-8
d-i console-setup/ask_detect boolean false
d-i keyboard-configuration/layoutcode string us
d-i netcfg/choose_interface select auto
d-i netcfg/dhcp_timeout string 60
d-i netcfg/get_hostname string unassigned-hostname
d-i netcfg/get_domain string unassigned-domain
d-i netcfg/wireless_wep string
d-i base-installer/kernel/override-image string linux-server
d-i mirror/http/mirror select gb.archive.ubuntu.com
d-i mirror/http/proxy string
d-i clock-setup/utc boolean true
d-i localechooser/shortlist/zh_CN select
d-i time/zone string Asia/Chongqing
d-i clock-setup/ntp boolean true
d-i partman-auto/disk string /dev/sda
d-i partman-auto/method string regular
d-i partman-lvm/device_remove_lvm boolean true
d-i partman-md/device_remove_md boolean true
d-i partman-lvm/confirm boolean true
d-i partman-auto/choose_recipe select multi
d-i partman/default_filesystem string ext4
d-i partman-partitioning/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true
d-i passwd/user-fullname string scutech.com
d-i passwd/username string scutech
d-i passwd/user-password password dingjia
d-i passwd/user-password-again password dingjia
d-i user-setup/allow-password-weak boolean true
d-i user-setup/encrypt-home boolean false
tasksel tasksel/first multiselect none
d-i pkgsel/include string openssh-server curl
d-i pkgsel/language-packs multiselect en,zh
d-i pkgsel/install-language-support boolean false
d-i pkgsel/update-policy select unattended-upgrades
d-i debian-installer/quiet  boolean false
d-i debian-installer/splash boolean false
d-i grub-installer/only_debian boolean true
d-i grub-installer/with_other_os boolean true
d-i grub-installer/timeout string 0
d-i debian-installer/add-kernel-opts string vga=normal nomodeset audit=0 intel_idle.max_cstate=0 processor.max_cstate=1 cgroup_enable=memory swapaccount=1
d-i finish-install/reboot_in_progress note
d-i preseed/late_command string in-target wget --output-document=/tmp/post-install.sh http://192.168.?.?/post-install.sh; in-target /bin/sh /tmp/post-install.sh



为了节省版面我把空行和注释都删除了,大家如果想知道每一个配置项的涵义可以查看ubuntu的官方文档Contents of the preconfiguration file

几点说明:


这里的语言,地区,键盘等设置都是适合大陆的情况的;

hostname在preseed里面设置了没有用,这应该是Xenial的bug,不知道Bionic改好了没有;

最后一项是调用一个shell脚本,这个很实用的功能,但我实际测试时这个不支持tftp(wget和curl都不行),只能用http。

准备post-install程序

#!/bin/bash
HOSTNAME='infosemper'
USERNAME='scutech'
PACKAGES='htop nano sudo python-minimal vim rsync dnsutils less ntp'
apt-get update && apt-get upgrade -y
apt-get -y dist-upgrade
apt-get install $PACKAGES -y
# Add SSH Key for default user
mkdir /home/$USERNAME/.ssh/
cat > /home/$USERNAME/.ssh/authorized_keys <<EOF
SSH-KEY HERE
EOF
chmod 700 /home/$USERNAME/.ssh
chmod 600 /home/$USERNAME/.ssh/authorized_keys
chown -R $USERNAME:$USERNAME /home/$USERNAME/.ssh
# Add SSH Key for root user
mkdir /root/.ssh/
cat > /root/.ssh/authorized_keys <<EOF
SSH-KEY HERE
EOF
chmod 700 /root/.ssh
chmod 600 /root/.ssh/authorized_keys
chown -R root:root /root/.ssh
# Edit /etc/ssh/sshd_config
sed -i '/^PermitRootLogin/s/prohibit-password/yes/' /etc/ssh/sshd_config
sed -i -e 's/#PasswordAuthentication/PasswordAuthentication/g' /etc/ssh/sshd_config
hostn=$(cat /etc/hostname)
sudo sed -i "s/$hostn/$HOSTNAME/g" /etc/hosts
sudo sed -i "s/$hostn/$HOSTNAME/g" /etc/hostname
sudo reboot



这个程序只是一个例子,让大家知道你在preseed里可以调用shell的各种命令。


配置tftp服务器

安装包


apt-get install tftpd-hpa


修改tftp的配置文件到如下格式:


cat /etc/default/tftpd-hpa
# /etc/default/tftpd-hpa
TFTP_USERNAME="tftp" 
TFTP_DIRECTORY="/home/scutech/tftp" 
TFTP_ADDRESS=":69" 
TFTP_OPTIONS="--secure --create"

查看69端口占用情况:


# ss -naup|grep :69
UNCONN     0      0            *:69                       *:*                   users:(("in.tftpd",pid=20534,fd=4))
UNCONN     0      0           :::69                      :::*                   users:(("in.tftpd",pid=20534,fd=5))

查看服务状态


# systemctl status tftpd-hpa
● tftpd-hpa.service - LSB: HPA's tftp server
   Loaded: loaded (/etc/init.d/tftpd-hpa; bad; vendor preset: enabled)
   Active: active (running) since Thu 2019-10-10 17:23:33 CST; 2min 25s ago
     Docs: man:systemd-sysv-generator(8)
   CGroup: /system.slice/tftpd-hpa.service
           └─20534 /usr/sbin/in.tftpd --listen --user tftp --address :69 --secure /var/lib/tftpboot
Oct 10 17:23:33 ubuntu1604 systemd[1]: Starting LSB: HPA's tftp server...
Oct 10 17:23:33 ubuntu1604 tftpd-hpa[20491]:  * Starting HPA's tftpd in.tftpd
Oct 10 17:23:33 ubuntu1604 tftpd-hpa[20491]:    ...done.
Oct 10 17:23:33 ubuntu1604 systemd[1]: Started LSB: HPA's tftp server.


创建工作目录,并修改权限


mkdir -p /home/scutech/tftp/d-i/xenial/script
chmod 777 /home/scutech/tftp
chown -R tftp:tftp /home/scutech/tftp
systemctl restart tftpd-hpa


使用tftp进行测试(略)

将preseed.cfg拷贝到/home/scuteh/tftp/d-i/xenial目录下,将post-install程序拷贝到 /home/scuteh/tftp/d-i/xenial/script目录下


安装buntu时加载preseed

启动时修改参数,将“file-/cdrom/preseed/ubuntu-server.seed”改成 “auto=true url=tftp://192.168.??/preseed.cfg hostname=scutech”。

安装过程中自动从tftp服务器上下载preseed配置文件

image.png

加载这个preseed配置文件后后面就什么不用做了,等着吧:

image.png

完成后自动重新启动,我在做分区时选择的是multi,这样 /home, /usr, /var, /tmp 几个分区是分开的:

image.png

这是一个40G硬盘的分区例子,实际工作中分区可能比这要复杂,preseed配置文件中可以保护子文件,可以对每一种分区的不同情况调用不同的子文件,以后有机会我会贴一下例子上来。

相关文章
|
3月前
|
并行计算 Ubuntu Linux
Ubuntu学习笔记(五):18.04安装多版本CUDA
这篇博客文章介绍了在Ubuntu 18.04系统上如何安装和切换不同版本的CUDA,以及如何安装不同版本的cuDNN。
270 2
|
3月前
|
并行计算 PyTorch TensorFlow
Ubuntu安装笔记(一):安装显卡驱动、cuda/cudnn、Anaconda、Pytorch、Tensorflow、Opencv、Visdom、FFMPEG、卸载一些不必要的预装软件
这篇文章是关于如何在Ubuntu操作系统上安装显卡驱动、CUDA、CUDNN、Anaconda、PyTorch、TensorFlow、OpenCV、FFMPEG以及卸载不必要的预装软件的详细指南。
5558 3
|
14天前
|
JSON Ubuntu 开发者
ubuntu 22安装lua环境&&编译lua cjson模块
通过上述步骤,可以在 Ubuntu 22.04 系统上成功安装 Lua 环境,并使用 LuaRocks 或手动编译的方式安装 lua-cjson 模块。本文详细介绍了每一步的命令和操作,确保每一步都能顺利完成,适合需要在 Ubuntu 系统上配置 Lua 开发环境的开发者参考和使用。
71 13
|
11天前
|
监控 关系型数据库 MySQL
Ubuntu24.04安装Librenms
此指南介绍了在Linux系统上安装和配置LibreNMS网络监控系统的步骤。主要内容包括:安装所需软件包、创建用户、克隆LibreNMS仓库、设置文件权限、安装PHP依赖、配置时区、设置MariaDB数据库、调整PHP-FPM与Nginx配置、配置SNMP及防火墙、启用命令补全、设置Cron任务和日志配置,最后通过网页完成安装。整个过程确保LibreNMS能稳定运行并提供有效的网络监控功能。
|
21天前
|
Ubuntu Linux Docker
Ubuntu22.04上Docker的安装
通过以上详细的安装步骤和命令,您可以在Ubuntu 22.04系统上顺利安装
342 11
|
2月前
|
Ubuntu 开发工具 git
Ubuntu安装homebrew的完整教程
本文介绍了如何在没有公网的情况下安装 Homebrew。首先访问 Homebrew 官网,然后通过阿里云的镜像克隆安装脚本,并创建普通用户进行安装。接着修改 `install.sh` 文件指向国内镜像,执行安装命令。最后配置环境变量并更换 Homebrew 源为国内镜像,确保安装顺利。
427 50
|
2月前
|
Ubuntu
ubuntu和debian 的安装包dpkg管理命令对安装包进行安装,查询,卸载
Ubuntu dpkg 软件包管理命令概览:安装、卸载、查看和配置软件包。包括解决依赖、强制卸载、列出及过滤已安装包、查看包详情等操作。
72 10
|
2月前
|
Ubuntu API 开发工具
PSOPT在Ubuntu22.04下的安装
通过上述步骤,可以在Ubuntu 22.04下成功安装并配置PSOPT。PSOPT是一个功能强大的工具,适用于解决各种最优控制问题。确保在安装前满足系统要求,并仔细按照步骤操作,可以避免大多数常见问题。通过MATLAB与PSOPT的结合,您可以更高效地处理复杂的控制问题,并获得准确的解决方案。
38 5
|
2月前
|
Ubuntu 网络协议 关系型数据库
超聚变服务器2288H V6使用 iBMC 安装 Ubuntu Server 24.04 LTS及后续系统配置
【11月更文挑战第15天】本文档详细介绍了如何使用iBMC在超聚变服务器2288H V6上安装Ubuntu Server 24.04 LTS,包括连接iBMC管理口、登录iBMC管理界面、配置RAID、安装系统以及后续系统配置等步骤。
233 4
|
3月前
|
Ubuntu Linux 测试技术
Linux系统之Ubuntu安装cockpit管理工具
【10月更文挑战第13天】Linux系统之Ubuntu安装cockpit管理工具
274 4
Linux系统之Ubuntu安装cockpit管理工具